* {
}
._container {
  width: 100%;
  max-width: 1448px;
  padding: 0 16px;
  margin: 0 auto;
}

.btn {
  text-decoration: none;
  cursor: pointer;
  outline: none;
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 40px;
  border: 2px solid transparent;
}
.btn.btnPrimary {
  background: #00b5ad;
  color: #fff;
}
.btn.btnIco {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 12px;
  background: #4dc3d0;
}
.btn.btnIco.btnIcoRed {
  background: #f85077;
}
.btn.btnOutline {
  border: 2px solid #00b5ad;
  color: #00b5ad;
}
.btn.btnOutline span {
  color: #00b5ad;
}

.title {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}

section {
  padding: 40px 0px;
}

a {
  color: #1b1b26;
}

.newHeader {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0px 2px 6px 0px #7a9da426;
  background: #fff;
  z-index: 100;
  width: 100%;
}
.newHeader .headerTop {
  background: #f0f5f6;
}
.newHeader.scrolled .headerTop {
  display: none;
}
.newHeader .headerTop .headerTopWrap {
  display: flex;
  padding: 8px 0;
  align-items: center;
  gap: 88px;
}
.newHeader .headerTop .headerTopPhone {
  display: flex;
  align-items: center;
  gap: 8px;
}
.newHeader .headerTop .headerTopPhone .headerPhoneLink {
  display: flex;
  gap: 6px;
  align-items: center;
}
.newHeader .headerTop .headerTopPhone .headerPhoneLink svg {
}
.newHeader .headerTop .headerTopPhone .headerPhoneLink span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.newHeader .headerTop .headerTopPhone .headerOrderLink {
  color: #00b5ad;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
}
.newHeader .headerTop .headerTopLinks {
  display: flex;
  gap: 32px;
  align-items: center;
}
.newHeader .headerTop .headerTopLinks a {
  display: flex;
  gap: 4px;
  align-items: center;
}
.newHeader .headerTop .headerTopLinks a svg {
}
.newHeader .headerTop .headerTopLinks a span {
  font-family: Mulish;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
}
.newHeader .headerTop .headerTopButtons {
  margin-left: auto;
  display: flex;
  gap: 40px;
  align-items: flex-end;
}
.newHeader .headerTop .headerTopButtons .searchBtnIco {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 40px;
  box-shadow: 0px 1px 8px 0px #185d6e33;
  background: #fff;
}
.newHeader .headerTop .headerTopButtons .searchBtnIco svg {
}

.newHeader .headerBottom {
}
.newHeader .headerBottom .headerBottomWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 16px;
}
.newHeader .headerBottom .headerBottomLogo {
}
.newHeader .headerBottom .headerBottomLogo img {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
}

.newHeader .headerBottom .headerBottomMenu > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.newHeader .headerBottom .headerBottomMenu > ul li {
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  position: relative;
}
.newHeader .headerBottom .headerBottomMenu > ul li:hover .menu__list_wrapper {
  display: block;
  left: -20px;
}
.newHeader .headerBottom .headerBottomMenu .menu__link {
  transition: All 0.3s ease 0s;
}
.newHeader .headerBottom .headerBottomMenu .menu__link svg {
  display: none;
}
.newHeader .headerBottom .headerBottomMenu .menu__link:hover {
  color: var(--color-primary);
}
.newHeader .headerBottom .headerBottomMenu .menu__button {
  cursor: pointer;
  padding-right: 15px;
  transition: All 0.3s ease 0s;
}
.newHeader .headerBottom .headerBottomMenu .menu__button::after,
.newHeader .headerBottom .headerBottomMenu .menu__button::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 2px;
  top: 8px;
  right: 0;
  background-color: var(--color-black-text);
  transition: transform 0.2s ease-out;
  border-radius: 5px;
}
.newHeader .headerBottom .headerBottomMenu .menu__button::after {
  transform: rotate(45deg);
  right: 4px;
}
.newHeader .headerBottom .headerBottomMenu .menu__button::before {
  transform: rotate(-45deg);
}
.newHeader .headerBottom .headerBottomMenu .menu__button:hover {
  color: var(--color-primary);
}
.newHeader .headerBottom .headerBottomMenu .menu__button:hover::after {
  transform: rotate(-45deg);
  background-color: var(--color-primary);
}
.newHeader .headerBottom .headerBottomMenu .menu__button:hover::before {
  transform: rotate(45deg);
  background-color: var(--color-primary);
}
.newHeader .headerBottom .headerBottomMenu .menu__button:hover li {
  color: var(--color-black-text);
}
.newHeader .headerBottom .headerBottomMenu .menu__list {
  background-color: var(--color-white);
  box-shadow: 0 0 16px 0 rgba(17, 31, 57, 0.1);
  border-radius: 24px;
  width: 320px;
  padding: 16px;
  margin-top: 20px;
}
.newHeader .headerBottom .headerBottomMenu .menu__list_wrapper {
  position: absolute;
  display: none;
}
.newHeader .headerBottom .headerBottomMenu .menu__list li {
  font-family: Mulish;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
}
.newHeader .headerBottom .headerBottomMenu .menu__list li a {
  font-family: Mulish;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
}
.newHeader .headerBottom .headerBottomMenu .menu__list li:not(:last-child) {
  margin-bottom: 10px;
}
.newHeader .headerBottom .headerBottomMenu .menu__list li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 35%;
  left: 10px;
  border-radius: 50%;
  background-color: #63d7df;
}
.newHeader .headerBottom .headerBottomMenu .menu__list li img {
  width: 15px;
  opacity: 0;
  transition: all 0.3s;
}
.newHeader .headerBottom .headerBottomMenu .menu__list li:hover img {
  opacity: 1;
}
.newHeader .headerBottom .headerBottomMenu .headerBottomMenuMobile {
  display: none;
}
.newHeader .headerBottom .headerBottomButtons {
  display: flex;
  gap: 8px;
}
.newHeader .headerBottom .headerBottomMobileButtons {
  display: none;
}

.wrapper {
  padding-top: 136px;
}

.mainAdmantages {
  padding-top: 64px;
  padding-bottom: 64px;
}

.includeBlock {
}
.includeBlock .includeBlockExpert {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 380px;
  background: linear-gradient(99.23deg, #a7e7e2 3.82%, #0da6b4 97.03%);
  color: #fff;
  height: 356px;
  justify-content: center;
  border-radius: 48px;
  overflow: hidden;
  padding-right: 80px;
  gap: 32px;
}
.includeBlock .includeBlockExpert:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("images/includeBlockExpertBg.png");
  background-position: left top;
  background-repeat: no-repeat;
  border-radius: 48px;
}
.includeBlock .includeBlockExpert .includeBlockExpertImage {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 278px;
}
.includeBlock .includeBlockExpert .includeBlockTitle {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  position: relative;
}
.includeBlock .includeBlockExpert .includeBlockDescription {
  font-family: Mulish;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  position: relative;
}
.includeBlock .includeBlockExpert .includeBlockButtons {
  position: relative;
}
.includeBlock .includeBlockExpert .includeBlockButtons .includeBlockButton {
  max-width: 289px;
  width: 289px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
}
.includeBlock
  .includeBlockExpert
  .includeBlockButtons
  .includeBlockButton
  span {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}
.includeBlock .includeBlockExpert .includeBlockButtons .includeBlockButton svg {
}
.includeBlock .includeBlockQuestion {
  margin-top: 64px;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 380px;
  background: linear-gradient(124.24deg, #45b7cd 20.51%, #d5f9ff 80.07%);
  color: #fff;
  height: 336px;
  border-radius: 60px;
  padding-left: 160px;
  padding-top: 64px;
  gap: 24px;
}
.includeBlock .includeBlockQuestion:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("images/includeBlockQuestionBg.png");
  background-position: left top;
  background-repeat: no-repeat;
  border-radius: 30px;
}
.includeBlock .includeBlockQuestion .includeBlockQuestionImage {
  position: absolute;
  right: 154px;
  bottom: 0;
}
.includeBlock .includeBlockQuestion .includeBlockQuestionTitle {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  position: relative;
  max-width: 664px;
}
.includeBlock .includeBlockQuestion .includeBlockQuestionDescription {
  max-width: 664px;
  font-family: Mulish;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  position: relative;
}
.includeBlock .includeBlockQuestion .includeBlockQuestionButtons {
  position: relative;
}
.includeBlock
  .includeBlockQuestion
  .includeBlockQuestionButtons
  .includeBlockQuestionButton {
  max-width: 289px;
  width: 289px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
}
.includeBlock
  .includeBlockQuestion
  .includeBlockQuestionButtons
  .includeBlockQuestionButton
  span {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}
.includeBlock
  .includeBlockQuestion
  .includeBlockQuestionButtons
  .includeBlockQuestionButton
  svg {
}
.includeBlock .includeBlockLicense {
  margin-top: 64px;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: linear-gradient(124.24deg, #45b7cd 20.51%, #d5f9ff 80.07%);
  color: #fff;
  height: 304px;
  border-radius: 48px;
  padding-left: 160px;
  gap: 24px;
}
.includeBlock .includeBlockLicense:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("images/includeBlockLicenseBg.png");
  background-position: left top;
  background-repeat: no-repeat;
  border-radius: 48px;
}
.includeBlock .includeBlockLicense .includeBlockLicenseImage {
  position: absolute;
  right: 160px;
  bottom: 0;
  width: 30%;
}
.includeBlock .includeBlockLicense .includeBlockLicenseTitle {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  position: relative;
  max-width: 532px;
}
.includeBlock .includeBlockLicense .includeBlockLicenseDescription {
  max-width: 532px;
  font-family: Mulish;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  position: relative;
}
.includeBlock .includeBlockLicense .includeBlockLicenseButtons {
  position: relative;
}
.includeBlock
  .includeBlockLicense
  .includeBlockLicenseButtons
  .includeBlockLicenseButton {
  max-width: 509px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
}
.includeBlock
  .includeBlockLicense
  .includeBlockLicenseButtons
  .includeBlockLicenseButton
  span {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}
.includeBlock
  .includeBlockLicense
  .includeBlockLicenseButtons
  .includeBlockLicenseButton
  svg {
}

.mainReviews {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #f0f5f6;
}
.mainReviews .mainReviewsTitle {
}
.mainReviews .mainReviewsWrap {
}
.mainReviews .mainReviewsWrap iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}
.mainContacts {
  position: relative;
}
.mainContacts .contacts__block .mainContactsPhone {
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
}
.mainContacts .contacts__block h3 {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}
.mainContacts .contacts__block address,
.mainContacts .contacts__block p {
  font-family: Mulish;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}

footer.footer .footer__wrapper {
  padding: 24px 0px 40px;
}
footer.footer .footer__wrapper .footer__logo {
  margin-bottom: 16px;
  width: 200px;
}
/* MOBILE */
@media (max-width: 768px) {
  footer.footer .footer__wrapper .footer__logo {
    width: 100%;       /* можно 140–180 */
    margin-bottom: 16px;
  }
  footer.footer .footer__wrapper .footer__logo img {
    width: 100%;
    height: auto;
    display: block;
  }
}

footer.footer .footer__wrapper .footer__body {
  gap: 64px;
}
footer.footer .footer__wrapper .footer__body .footer__block {
  padding: 24px;
}
footer.footer .footer__wrapper .footer__body .footer__block.footerMenu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerMenu
  .footer__title {
  margin: 0;
  width: 100%;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerMenu
  .footer__title
  h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerMenu
  ul.footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerMenu
  ul.footer__list
  li {
  margin: 0;
  font-family: Mulish;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
footer.footer .footer__wrapper .footer__body .footer__block.footerContacts {
  padding: 24px 16px;
  width: 514px;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  display: flex;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerContacts
  .footer__tel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerContacts
  .footer__tel
  p {
  font-family: Mulish;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerContacts
  .footer__tel
  a {
  font-weight: 700;
  font-size: 23px;
  line-height: 32px;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerContacts
  .footerDoubleLine {
  margin-bottom: 0;
  justify-content: flex-start;
  gap: 30px;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerContacts
  .footerDoubleLine
  address {
  display: flex;
  width: 50%;
  gap: 10px;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerContacts
  .footerDoubleLine
  address
  span {
  font-family: Mulish;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerContacts
  .footerPay {
  gap: 0;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerContacts
  .footerPay
  .footer__box {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 8px;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerContacts
  .footerPay
  .footer__box
  p {
  margin-bottom: 0;
}
footer.footer
  .footer__wrapper
  .footer__body
  .footer__block.footerContacts
  .footerPay
  .footer__box
  .footer__links {
  gap: 16px;
}
footer.footer .footer__bottom {
  margin: 40px auto;
}
footer.footer .footer__bottom .footer__requisites {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-basis: unset;
  width: 340px;
}
footer.footer .footer__bottom .footer__requisites h3 {
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
}
footer.footer .footer__bottom .footer__requisites p,
footer.footer .footer__bottom .footer__requisites address {
  font-family: Mulish;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
footer.footer .footer__bottom .footer__requisites a {
  transition: All 0.3s ease 0s;
}
footer.footer .footer__bottom .footer__requisites a:hover {
  color: rgba(0, 167, 170, 1);
}
footer.footer .footer__bottom .footer__requisites .footer__requisites_info {
  display: flex;
  margin-top: 8px;
}
footer.footer .footer__bottom .footer__license {
  flex-basis: unset;
  width: calc(100% - 340px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer.footer .footer__bottom .footer__license p {
  margin-bottom: 0;
  font-family: Mulish;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
footer.footer .footerCopy {
  padding: 8px 0;
}
footer.footer .footerCopy .footer__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
footer.footer .footerCopy .footer__info p {
  font-family: Mulish;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #1b1b26;
}
footer.footer .footerCopy .footer__info p:last-child {
  font-family: Mulish;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}
.mobilePanel {
  display: none;
}

.breadcrumbs__list {
  padding: 16px 0;
}
.breadcrumbs__item {
  font-family: Mulish;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: var(--color-black-text);
}
.breadcrumbs__item:last-child {
}

.ajaxDirections {
  padding-top: 64px;
  padding-bottom: 64px;
}
.ajaxDirections .ajaxDirectionsTop {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ajaxDirections .ajaxDirectionsTop .ajaxDirectionsTitle {
}
.ajaxDirections .ajaxDirectionsTop .ajaxDirectionsControls {
  display: flex;
  gap: 8px;
}
.ajaxDirections .ajaxDirectionsTop .ajaxDirectionsControls a {
  padding: 10px 10px 22px 10px;
  border-radius: 16px;
  background: #fff;
  align-items: center;
  justify-content: center;
  font-family: HeliosExt;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  position: relative;
  transition: All 0.3s ease 0s;
}
.ajaxDirections .ajaxDirectionsTop .ajaxDirectionsControls a.active {
  background: #effafb;
  font-weight: 700;
}
.ajaxDirections .ajaxDirectionsTop .ajaxDirectionsControls a.active:after {
  transition: All 0.3s ease 0s;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #00a7aa;
  left: 50%;
  margin-left: -4px;
  bottom: 10px;
  display: block;
  position: absolute;
}
.ajaxDirections .ajaxDirectionsTop .ajaxDirectionsSearch {
  width: 100%;
  position: relative;
  height: 44px;
  border-radius: 40px;
  border: 1.5px solid #96cfd0;
  padding-left: 24px;
  padding-right: 24px;
  gap: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ajaxDirections
  .ajaxDirectionsTop
  .ajaxDirectionsSearch
  .ajaxDirectionsSearchInput {
  width: calc(100% - 48px);
  height: 100%;
  background: none;
  border: none;
  font-family: Mulish;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.ajaxDirections .ajaxDirectionsTop .ajaxDirectionsSearch .clearAjaxSearchInput {
  width: 24px;
  height: 24px;
  transition: All 0.3s ease 0s;
  opacity: 0;
}
.ajaxDirections
  .ajaxDirectionsTop
  .ajaxDirectionsSearch.focused
  .clearAjaxSearchInput {
  opacity: 1;
}
.ajaxDirections .ajaxDirectionsItems {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  max-height: 500px;
  overflow: hidden;
  transition: All 0.3s ease 0s;
}
.ajaxDirections .ajaxDirectionsItems.fullHeight {
  height: auto;
  max-height: unset;
  overflow: visible;
}
.ajaxDirections .showAllDirections {
  width: 100%;
  height: 48px;
  border-radius: 40px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f5f6;
  gap: 4px;
  color: #00b5ad;
}
.ajaxDirections .ajaxDirectionsItems .ajaxDirectionsItemsColumn {
  display: flex;
  flex-direction: column;
  height: auto;
  padding-right: 24px;
  border-right: 1px solid #96cfd0;
  width: calc(25% - 18px);
  gap: 8px;
}
.ajaxDirections .ajaxDirectionsItems .ajaxDirectionsItemsColumn:last-child {
  border-right: 1px solid transparent;
}
.ajaxDirections
  .ajaxDirectionsItems
  .ajaxDirectionsItemsColumn
  .ajaxDirectionsChunk {
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;
  border-bottom: 1px solid #96cfd0;
  gap: 8px;
  padding-top: 16px;
}
.ajaxDirections
  .ajaxDirectionsItems
  .ajaxDirectionsItemsColumn
  .ajaxDirectionsChunk:last-child {
  border-bottom: 1px solid transparent;
}
.ajaxDirections
  .ajaxDirectionsItems
  .ajaxDirectionsItemsColumn
  .ajaxDirectionsChunk
  .ajaxDirectionsChunkTitle {
  font-weight: 700;
  font-size: 23px;
  line-height: 32px;
  color: #00b5ad;
}
.ajaxDirections
  .ajaxDirectionsItems
  .ajaxDirectionsItemsColumn
  .ajaxDirectionsChunk
  .ajaxDirectionsChunkItems {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ajaxDirections
  .ajaxDirectionsItems
  .ajaxDirectionsItemsColumn
  .ajaxDirectionsChunk
  .ajaxDirectionsChunkItems
  a {
  font-family: Mulish;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.searchPopup {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: All 0.3s ease 0s;
}
.searchPopup.opened {
  visibility: visible;
  opacity: 1;
}
.searchPopup .searchPopupWrapper {
  padding: 60px 0px;
  background: #fff;
}
.searchPopup .searchPopupFormWrap {
  display: flex;
  gap: 32px;
  align-items: center;
}
.searchPopup .searchPopupFormWrap .searchLogo {
  width: 150px;
  object-fit: contain;
}

@media (max-width: 1480px) {
  .mainDirections .mainDirectionsItems .mainDirectionsItem.mainDirectionsItem0,
  .mainDirections .mainDirectionsItems .mainDirectionsItem.mainDirectionsItem4 {
    width: 40%;
  }
  .mainDirections .mainDirectionsItems .mainDirectionsItem.mainDirectionsItem1,
  .mainDirections .mainDirectionsItems .mainDirectionsItem.mainDirectionsItem2,
  .mainDirections .mainDirectionsItems .mainDirectionsItem.mainDirectionsItem3,
  .mainDirections .mainDirectionsItems .mainDirectionsItem.mainDirectionsItem5 {
    width: calc(30% - 24px);
  }
}
@media (max-width: 1080px) {
  .newHeader .headerBottom .headerBottomMenu .menu__button {
    padding-right: 30px;
  }
  .newHeader
    .headerBottom
    .headerBottomMenu
    > ul
    li:hover
    .menu__list_wrapper:not(.open) {
    display: none;
  }
  .newHeader .headerBottom .headerBottomMenu .menu__list_wrapper.open {
    display: block;
    position: static;
  }
  .newHeader .headerBottom .headerBottomMenu .menu__list {
    position: static;
    width: 100%;
    padding: 10px;
    border-radius: 16px;
    margin-top: 10px;
  }
  .ajaxDirections .ajaxDirectionsItems {
    flex-wrap: wrap;
  }
  .ajaxDirections .ajaxDirectionsItems .ajaxDirectionsItemsColumn {
    width: calc(50% - 12px);
  }
}
@media (max-width: 810px) {
  .wrapper {
    padding-top: 64px;
  }
  .title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  .newHeader .headerTop {
    display: none;
  }
  .newHeader .headerBottom .headerBottomWrap {
    padding: 10px 0;
  }
  .newHeader .headerBottom .headerBottomLogo img {
    max-height: 44px;
    max-width: 133px;
    object-fit: contain;
  }
  .newHeader .headerBottom .headerBottomButtons {
    display: none;
  }
  .newHeader .headerBottom .headerBottomMenu {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    padding: 25px 20px;
    transition: All 0.5s ease 0s;
    overflow: auto;
    z-index: 9;
  }
  .newHeader .headerBottom .headerBottomMenu._active {
    top: 0;
  }
  .newHeader .headerBottom .headerBottomMenu .menu__list-item:not(:last-child) {
    margin-bottom: 32px;
  }
  .newHeader .headerBottom .headerBottomMenu > ul {
    display: block;
    position: relative;
    margin-bottom: 0px;
    margin-top: 24px;
  }
  .newHeader .headerBottom .headerBottomMenu ul li {
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
  }
  .newHeader .headerBottom .headerBottomMenu ul li:not(:last-child) {
    margin-bottom: 24px;
  }
  .newHeader .headerBottom .headerBottomMobileButtons {
    display: flex;
  }
  .newHeader .headerBottom .headerBottomMobileButtons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .newHeader .headerBottom .headerBottomMobileButtons a.showMenu {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }
  .newHeader .headerBottom .headerBottomMobileButtons .burger {
    width: 24px;
    height: 24px;
    position: relative;
  }
  .newHeader .headerBottom .headerBottomMobileButtons .burger .burger__line {
    height: 2px;
    width: 24px;
    position: absolute;
    transition: all 0.3s ease 0s;
    background: #000;
    transform: translate(-50%, -50%);
    border-radius: 1px;
  }
  .newHeader
    .headerBottom
    .headerBottomMobileButtons
    .burger
    .burger__line:first-child {
    left: 50%;
    top: 25%;
  }
  .newHeader
    .headerBottom
    .headerBottomMobileButtons
    .burger
    .burger__line:nth-child(2) {
    left: 50%;
    top: 50%;
  }
  .newHeader
    .headerBottom
    .headerBottomMobileButtons
    .burger
    .burger__line:last-child {
    left: 75%;
    top: 75%;
    width: 12px;
  }
  .newHeader
    .headerBottom
    .headerBottomMobileButtons
    .burger._active
    .burger__line:nth-child(2) {
    opacity: 0;
  }
  .newHeader
    .headerBottom
    .headerBottomMobileButtons
    .burger._active
    .burger__line:first-child {
    transform: rotate(-45deg);
    left: 30%;
    top: 50%;
  }
  .newHeader
    .headerBottom
    .headerBottomMobileButtons
    .burger._active
    .burger__line:last-child {
    transform: rotate(45deg);
    left: 30%;
    top: 50%;
    width: 24px;
  }
  .newHeader .headerBottom .headerBottomMenu .menu__button::after,
  .newHeader .headerBottom .headerBottomMenu .menu__button::before {
    display: none;
  }
  .newHeader .headerBottom .headerBottomMenu .menu__button::after {
    right: 9px;
  }
  .newHeader .headerBottom .headerBottomMenu .menu__button.open {
    color: var(--color-primary);
  }
  .newHeader .headerBottom .headerBottomMenu .menu__button.open::after {
    transform: rotate(-45deg);
    background-color: var(--color-primary);
  }
  .newHeader .headerBottom .headerBottomMenu .menu__button.open::before {
    transform: rotate(45deg);
    background-color: var(--color-primary);
  }
  .newHeader .headerBottom .headerBottomMenu .menu__button.open li {
    color: var(--color-black-text);
  }
  .newHeader .headerBottom .headerBottomMenu .menu__list {
    box-shadow: none;
    padding: 0px;
  }
  .newHeader .headerBottom .headerBottomMenu .menu__link {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .newHeader .headerBottom .headerBottomMenu .menu__link svg {
    display: inline-block;
    transition: All 0.3s ease 0s;
  }
  .newHeader .headerBottom .headerBottomMenu .menu__button.open .menu__link {
    color: #00b5ad;
  }
  .newHeader
    .headerBottom
    .headerBottomMenu
    .menu__button.open
    .menu__link
    svg {
    transform: rotate(180deg);
  }
  .newHeader
    .headerBottom
    .headerBottomMenu
    .menu__button.open
    .menu__link
    svg
    path {
    fill: #00b5ad;
  }
  .newHeader .headerBottom .headerBottomMenu .headerBottomMenuMobile {
    display: flex;
    flex-direction: column;
    margin-top: 48px;
    gap: 24px;
  }
  .newHeader
    .headerBottom
    .headerBottomMenu
    .headerBottomMenuMobile
    .personalLink {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .newHeader
    .headerBottom
    .headerBottomMenu
    .headerBottomMenuMobile
    .personalLink
    span {
    font-family: Mulish;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #373f41;
  }
  .newHeader
    .headerBottom
    .headerBottomMenu
    .headerBottomMenuMobile
    .headerBottomMenuMobileButtons {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .newHeader
    .headerBottom
    .headerBottomMenu
    .headerBottomMenuMobile
    .headerBottomMenuMobileButtons
    .btnPrimary {
  }
  .newHeader
    .headerBottom
    .headerBottomMenu
    .headerBottomMenuMobile
    .headerBottomMenuMobileButtons
    .btnIco.btnIcoGray {
    width: 44px;
    height: 44px;
    background: #effafb;
    border-radius: 44px;
  }
  .mobilePanel {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 6px 10px;
    background: #fff;
    box-shadow: 0px -1px 3px 0px #7a9da426;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
  }
  .mobilePanel a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    gap: 4px;
    border-radius: 16px;
  }
  .mobilePanel a.active {
    background: #00b5ad;
  }
  .mobilePanel a span {
    font-family: Mulish;
    font-weight: 700;
    font-size: 10px;
    line-height: 12px;
    color: #00b5ad;
  }
  .mobilePanel a.active span {
    color: #fff;
  }
  .mobilePanel a.active svg path {
    fill: #fff;
  }
  .mobilePanel a.onlineOrder {
    box-shadow: 0px -1px 3px 0px #7a9da426;
  }
  .mobilePanel a.onlineOrder.activeOnlineOrder {
    background: #f85077;
  }
  .mobilePanel a.onlineOrder span {
    color: #f85077;
  }
  .mobilePanel a.onlineOrder.activeOnlineOrder span {
    color: #fff;
  }
  .mobilePanel a.onlineOrder.activeOnlineOrder svg path {
    fill: #fff;
  }
  footer.footer {
    margin-bottom: 68px;
  }
  .ajaxDirections .ajaxDirectionsTop .ajaxDirectionsControls {
    flex-wrap: wrap;
  }
  .mainAdmantages {
    padding-top: 48px;
    padding-bottom: 90px;
  }
  .includeBlock .includeBlockExpert {
    padding: 24px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 244px;
    height: auto;
    justify-content: flex-start;
    border-radius: 48px;
    overflow: hidden;
    gap: 16px;
    width: 100%;
    background: linear-gradient(99.23deg, #0da6b4 3.82%, #a7e7e2 97.03%);
  }
  .includeBlock .includeBlockExpert::before {
    background-image: url("images/includeBlockExpertBgMobile.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    border-radius: 48px;
  }
  .includeBlock .includeBlockExpert .includeBlockExpertImage {
    max-width: 215px;
  }
  .includeBlock .includeBlockExpert .includeBlockTitle {
    font-size: 16px;
    line-height: 22px;
  }
  .includeBlock .includeBlockExpert .includeBlockDescription {
    font-size: 14px;
    line-height: 18px;
  }
  .includeBlock .includeBlockExpert .includeBlockButtons .includeBlockButton {
    max-width: 203px;
    width: 203px;
    height: 44px;
    border-radius: 16px;
  }
  .includeBlock
    .includeBlockExpert
    .includeBlockButtons
    .includeBlockButton
    span {
    font-size: 13px;
    line-height: 18px;
  }
  .includeBlock
    .includeBlockExpert
    .includeBlockButtons
    .includeBlockButton
    svg {
    width: 20px;
    height: 20px;
  }
  .includeBlock .includeBlockQuestion {
    margin-top: 48px;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 32px 24px;
    padding-left: 24px;
    padding-bottom: 224px;
    background: linear-gradient(135.49deg, #45b7cd 27.37%, #d5f9ff 83.39%);
    color: #fff;
    height: auto;
    border-radius: 32px;
    padding-top: 32px;
    gap: 8px;
    overflow: hidden;
  }
  .includeBlock .includeBlockQuestion::before {
    background-image: url("images/includeBlockQuestionBgMobile.png");
    background-position: bottom center;
  }
  .includeBlock .includeBlockQuestion .includeBlockQuestionImage {
    position: absolute;
    right: -80px;
    bottom: 0;
    max-height: 267px;
  }
  .includeBlock .includeBlockQuestion .includeBlockQuestionTitle {
    font-size: 23px;
    line-height: 32px;
  }
  .includeBlock .includeBlockQuestion .includeBlockQuestionDescription {
    font-size: 17px;
    line-height: 24px;
  }
  .includeBlock .includeBlockQuestion .includeBlockQuestionDescription br {
    display: none;
  }
  .includeBlock .includeBlockQuestion .includeBlockQuestionButtons {
    margin-top: 16px;
  }
  .includeBlock
    .includeBlockQuestion
    .includeBlockQuestionButtons
    .includeBlockQuestionButton {
    max-width: 214px;
    width: 214px;
    height: 44px;
  }
  .includeBlock
    .includeBlockQuestion
    .includeBlockQuestionButtons
    .includeBlockQuestionButton
    span {
    font-size: 12px;
    line-height: 18px;
  }
  .includeBlock
    .includeBlockQuestion
    .includeBlockQuestionButtons
    .includeBlockQuestionButton
    svg {
    width: 20px;
    height: 20px;
  }
  .mainReviews {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .includeBlock .includeBlockLicense {
    margin-top: 48px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(
      170.1deg,
      #009caa 17.4%,
      #a9dcde 102.14%,
      #73becd 128.97%
    );
    color: #fff;
    height: auto;
    border-radius: 32px;
    padding: 24px;
    padding-left: 24px;
    padding-bottom: 210px;
    gap: 8px;
  }
  .includeBlock .includeBlockLicense::before {
    background-position: bottom center;
    border-radius: 30px;
    background-size: cover;
  }
  .includeBlock .includeBlockLicense .includeBlockLicenseTitle {
    font-size: 23px;
    line-height: 32px;
  }
  .includeBlock .includeBlockLicense .includeBlockLicenseDescription {
    line-height: 22px;
  }
  .includeBlock .includeBlockLicense .includeBlockLicenseButtons {
    margin-top: 10px;
  }
  .includeBlock
    .includeBlockLicense
    .includeBlockLicenseButtons
    .includeBlockLicenseButton {
    height: 44px;
  }
  .includeBlock
    .includeBlockLicense
    .includeBlockLicenseButtons
    .includeBlockLicenseButton
    span {
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
  }
  .includeBlock
    .includeBlockLicense
    .includeBlockLicenseButtons
    .includeBlockLicenseButton
    svg {
    width: 20px;
    height: 20px;
  }
  .includeBlock .includeBlockLicense .includeBlockLicenseImage {
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 252px;
    margin-right: -126px;
  }
  .contacts__block {
    border-radius: 32px 16px 32px 32px;
    box-shadow: 0px 0px 16px 0px #111f391a;
  }
  footer.footer .footer__wrapper {
    padding: 24px 0px 24px;
  }
  footer.footer .footer__wrapper .footer__body .footer__block.footerMenu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin-bottom: 24px;
  }
  footer.footer
    .footer__wrapper
    .footer__body
    .footer__block.footerMenu
    .footer__title
    h3 {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    display: inline-block;
    position: relative;
  }
  footer.footer
    .footer__wrapper
    .footer__body
    .footer__block.footerMenu
    .footer__title
    h3:after {
    position: absolute;
    top: 2px;
    right: -16px;
    width: 16px;
    height: 16px;
    display: block;
    content: "";
    background: url("images/chevron-down.svg") center no-repeat;
  }
  .footer__title:before,
  .footer__title:after {
    display: none;
  }
  footer.footer
    .footer__wrapper
    .footer__body
    .footer__block.footerMenu
    ul.footer__list {
    display: none;
  }
  footer.footer
    .footer__wrapper
    .footer__body
    .footer__block.footerMenu.open
    ul.footer__list {
    display: flex;
  }
  footer.footer .footer__wrapper .footer__body .footer__block.footerMenu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin-bottom: 24px;
  }
  footer.footer .footer__wrapper .footer__body .footer__block.footerContacts {
    padding: 0px;
    width: 100%;
  }
  footer.footer
    .footer__wrapper
    .footer__body
    .footer__block.footerContacts
    .footer__tel {
    gap: 4px;
  }
  footer.footer
    .footer__wrapper
    .footer__body
    .footer__block.footerContacts
    .footer__tel
    p {
    line-height: 18px;
  }
  footer.footer
    .footer__wrapper
    .footer__body
    .footer__block.footerContacts
    .footer__tel
    a {
    font-size: 13px;
    line-height: 18px;
    color: #f85077;
  }
  footer.footer
    .footer__wrapper
    .footer__body
    .footer__block.footerContacts
    .footerDoubleLine {
    gap: 16px;
    flex-direction: column;
  }
  footer.footer
    .footer__wrapper
    .footer__body
    .footer__block.footerContacts
    .footerDoubleLine
    address {
    display: flex;
    width: 100%;
    gap: 4px;
  }
  footer.footer
    .footer__wrapper
    .footer__body
    .footer__block.footerContacts
    .footerDoubleLine
    a {
    gap: 4px;
    font-family: Mulish;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
  }
  footer.footer
    .footer__wrapper
    .footer__body
    .footer__block.footerContacts
    .footerPay {
    gap: 16px;
    flex-direction: column;
  }
  footer.footer .footer__bottom {
    margin: 16px auto;
  }
  footer.footer .footer__bottom .footer__requisites {
    width: 100%;
  }
  footer.footer .footer__bottom .footer__requisites .footer__requisites_info {
    display: flex;
    margin-top: 8px;
    flex-direction: row;
    gap: 12px;
  }
  footer.footer .footer__bottom .footer__requisites p,
  footer.footer .footer__bottom .footer__requisites address {
    font-family: Mulish;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
  }
  footer.footer .footer__bottom .footer__requisites p {
    width: calc(100% - 80px);
  }
  footer.footer .footer__bottom .footer__license {
    flex-basis: unset;
    width: 100%;
    gap: 8px;
  }
  footer.footer .footer__bottom .footer__license p {
    line-height: 18px;
  }
  footer.footer .footerCopy {
    padding: 16px 0;
  }
  footer.footer .footerCopy .footer__info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    flex-direction: column;
  }
  footer.footer .footerCopy .footer__info p {
    line-height: 18px;
  }
  .ajaxDirections .ajaxDirectionsItems {
    flex-wrap: unset;
    flex-direction: column;
    gap: 0;
  }
  .ajaxDirections .ajaxDirectionsItems .ajaxDirectionsItemsColumn {
    width: 100%;
    padding-right: 0;
    border: none;
  }
  .ajaxDirections
    .ajaxDirectionsItems
    .ajaxDirectionsItemsColumn
    .ajaxDirectionsChunk:last-child {
    border-bottom: 1px solid #96cfd0;
  }
  .innerServices
    .innerServicesWrap
    .innerServicesItem
    .innerServicesItemInfo
    .innerServicesTileItemBtn {
    font-weight: 500;
  }
  .searchPopup .searchPopupWrapper {
    padding: 20px 0px;
  }
  .searchPopup .searchPopupFormWrap {
    gap: 8px;
  }
  .searchPopup .searchPopupFormWrap .searchLogo {
    width: 70px;
  }
  .searchPopupFormTitle {
    width: calc(100% - 78px);
  }
  .searchPopupForm {
    height: 40px;
    gap: 8px;
  }
  .searchPopupForm .searchPopupInput {
    width: calc(100% - 36px);
  }
  .searchPopupForm .searchPopupBtn {
    width: 24px;
    height: 24px;
  }
  .searchPopupForm .searchPopupBtn svg {
    max-width: 20px;
    max-height: 20px;
  }
}
@media (max-width: 736px) {
}
@media (max-width: 680px) {
}
@media (max-width: 568px) {
}
@media (max-width: 440px) {
}
@media (max-width: 380px) {
}
@media (max-width: 320px) {
}
