 body {
  margin: 0;
  font-family: 'Golos Text', sans-serif;
}

.header {
  background-color: #f4f6f7;
}

.top-bar {
  max-width: 1636px;
  width: 100%;
  margin: 0 auto;
}

.top-bar__container {
 max-width: 1636px;
 margin: 0 auto;
 padding: 16px 0px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.text-top-bar {
  font-weight: 500;
  color: #747474;
  font-size: 20px;
}

a.text-top-bar {
  font-weight: 500;
  color: #747474;
  font-size: 20px;
  text-decoration: none;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #333;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon {
  width: 20px;
  height: auto;
}

.social-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.main-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  background-color: #FEFBFB;
  text-align: center;
}

.logo {
  max-height: 200px;
  height: auto;
}

/* Меню */
.nav {
  background-color: #FEFBFB;
  margin: 0 auto;
  padding-bottom: 30px;
}
        
.nav-container {
  max-width: 1636px;
  margin: 0 auto;
}
        
.nav-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
}
        
.nav-menu li {
  position: relative;
  padding: 0px 56px 0px 0px;
}

.li-right {
  padding: 0px 40px 0px 0px !important;
}

/* Стили выпадающего списка */
.nav-item-has-submenu {
  position: relative;
}

.nav-item-has-submenu > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.submenu-arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}

.nav-item-has-submenu:hover .submenu-arrow {
  transform: rotate(180deg);
}

.nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  z-index: 1000;
  min-width: 280px;
  border-radius: 6px;
}

.nav-item-has-submenu:hover .nav-submenu {
  display: block;
}

.nav-submenu li {
  padding: 8px 20px;
}

.nav-submenu li a {
  display: block;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-submenu li a:hover {
  color: #00998E;
}

.nav-menu li a {
  color: #333;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
}      

.nav-menu a:hover {
  color: #00998E;
}

.nav-button-left {
  background-color: #BBBAE2;
  color: #ffffff;
  font-size: 20px;
  padding: 16px 24px;
  border: 0px;
  border-radius: 10px;
  font-family: 'Golos Text', sans-serif;
  margin-right: 24px;
  cursor: pointer;
}

.nav-button-left:hover {
  background-color: #8382A8;
}

.nav-button-right {
  background-color: #00998E;
  color: #ffffff;
  font-size: 20px;
  padding: 16px 24px;
  border: 0px;
  border-radius: 10px;
  font-family: 'Golos Text', sans-serif;
  cursor: pointer;
}

.nav-button-right:hover {
  background-color: #026961;
}

/* Стили для sticky header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FEFBFB;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 16px 0px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  font-family: sans-serif;
}

.sticky-header.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-header__container {
  max-width: 1636px;
  margin: 0 auto;
}

.sticky-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.sticky-header__left {
  display: flex;
  align-items: center;
}

.sticky-header__map {
  display: flex;
  justify-content: center;
  align-items: center;     
  gap: 8px; 
}

.sticky-header__phone {
  display: flex;
  justify-content: center;
  align-items: center;     
  gap: 8px;                
}

.sticky-header__social {
  display: flex;
  justify-content: center;
  align-items: center;     
  gap: 8px;
}

.sticky-header__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  text-align: right;
}

.sticky-header__logo img {
  height: 88px;
}

.sticky-header__icon {
  height: 20px;
}

.sticky-header__text {
  font-family: 'Golos Text', sans-serif;
  font-size: 18px;
  color: #747474;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.sticky-header__social-icon {
  height: 28px;
}

.sticky-header__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}

.sticky-header__menu {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.sticky-header__menu a {
  font-family: 'Golos Text', sans-serif;
  text-decoration: none;
  font-size: 20px;
  color: #333;
  font-weight: 400;
}

.sticky-header__menu a:hover {
  color: #00998E;
}

.sticky-header__actions {
  display: flex;
  gap: 24px;
}

.sticky-header__btn {
  font-family: 'Golos Text', sans-serif;
  padding: 16px 24px;
  border: none;
  font-weight: 400;
  cursor: pointer;
  border-radius: 10px;
  font-size: 20px;
}

.sticky-header__btn--call {
  background: #BBBAE2;
  color: #ffffff;
}

.sticky-header__btn--call:hover {
  background: #8382A8;
}

.sticky-header__btn--appointment {
  background: #00998E;
  color: #ffffff;
}

.sticky-header__btn--appointment:hover {
  background: #026961;
}

@media (min-width: 1025px) {
  .mobile-header {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .header, #stickyHeader {
    display: none;
  }

  .mobile-header {
    display: block;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }

  .mobile-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-header__logo img {
    height: 70px;
  }

  .mobile-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1100;
  }

  .mobile-nav.show {
    right: 0;
    z-index: 1000;
  }

  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0s ease 0s;
  }

  .mobile-overlay.show {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 2s ease;
  }
  
  .mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 10px 20px 0px 20px;
  }

  .mobile-nav ul li {
    margin-bottom: 16px;
  }

  .mobile-nav ul li a {
    font-size: 20px;
    color: #333;
    display: block;
    text-decoration: none;
  }

  .mobile-submenu {
    display: none;
    padding-left: 16px;
    margin-top: 10px;
  }

  .mobile-has-submenu.open .mobile-submenu {
    display: block;
  }

  .mobile-submenu-toggle {
    font-size: 20px;
    font-family: 'Golos Text', sans-serif;
    background: none;
    border: none;
    color: #00998E;
    text-align: left;
    width: 100%;
    padding: 0px 0;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .mobile-submenu-li a {
    color: #00998E !important;
  }

  .submenu-arrow {
    width: 30px;
    padding-left: 10px;
    transition: transform 0.2s ease;
  }

  .mobile-has-submenu.open .submenu-arrow {
    transform: rotate(180deg);
  }

  .mobile-down-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 20px 16px 20px;
  }

  .mobile-contact {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-header__btn {
    background-color: #00998E;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 18px;
    white-space: nowrap;
    text-decoration: none;
  }

  .burger {
    width: 28px;
    height: 20px;
    position: relative;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .burger span {
    display: block;
    height: 3px;
    background: #00998E;
    border-radius: 2px;
    margin-bottom: 6px;
  }

  .mobile-header__text {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    font-family: 'Golos Text', sans-serif;
  }

  .mobile-header__icon img {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
  }

  .mobile-number-header {
    color: #747474;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
  }

  .mobile-contact img {
    width: 30px;
    height: 30px;
  }

  .nav-button-left {
    margin-right: 0px;
    font-size: 20px;
    width: 100%;
    border-radius: 5px;
    margin-top: 16px;
  }

  .nav-button-right {
    font-size: 20px;
    width: 100%;
    border-radius: 5px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }
}
/* Footer */
@media (min-width: 769px) and (max-width: 1512px) {

  .footer .footer-container {
    margin: 30px auto;
    flex-wrap: nowrap;
    column-gap: 40px;
  }

  .footer .footer-left {
    width: 25%;
    flex: unset;
    min-width: unset;
    max-width: unset;
  }

  .footer .footer-right {
    flex: unset;
    width: 75%;
    column-gap: unset;
    flex-wrap: nowrap;
  }

  .footer .footer-logo {
    width: 100%;
    height: auto;
  }

  .footer .app-text {
  font-size: 14px;
  margin-bottom: 12px;
}

  .footer .app-links {
   margin-top: 24px;
  }

.footer .app-links img {
  width: auto;
  height: auto;
}

.footer .app-links-container {
  column-gap: unset;
  flex-wrap: nowrap;
}

.footer .app-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 12px;
}

.footer .footer-section h3 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
  margin-top: unset;
}

.footer .footer-section ul li a {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 8px;
}

.footer .footer-section ul li {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 8px;
}

.footer .footer-contact a {
  font-size: 14px;
  line-height: 17px;
}

.footer .footer-contact-container {
  row-gap: 16px;
}

.footer .footer-text {
  font-size: 14px;
  line-height: 17px;
}

.footer .footer-contact {
  column-gap: 2px;
}

.footer .footer-section img {
  width: 12px;
}

.footer .footer-social-icon {
  width: 20px !important;
  height: 20px !important;
}

.footer .footer-section {
  min-width: unset;
  flex: 1;
}

.footer .footer-bottom {
  column-gap: 30px;
}

.footer .footer-bottom p {
  font-size: 12px;
  line-height: 14px;
}

.footer .footer-bottom a {
  font-size: 12px;
  line-height: 14px;
}
}

@media (max-width: 768px) {
  .header {
    display: none;
  }

  #stickyHeader {
    display: none;
  }

  .mobile-number-header-container {
    display: block !important;
  }

  .mobile-number-header-container a {
    font-size: 14px;
    color: #747474;
    text-decoration: none;
  }
  
  .mobile-header {
    display: block;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .mobile-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-header__logo img {
    height: 21px;
  }

  .mobile-header__actions {
    display: flex;
    align-items: center;
    column-gap: 4px;
  }

  .mobile-header__icon img {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
  }

  .mobile-header__btn {
    background-color: #00998E;
    color: #fff;
    padding: 8px 14px;
    border-radius: 2px;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
  }

  .burger {
    width: 28px;
    height: 20px;
    position: relative;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .burger span {
    display: block;
    height: 3px;
    background: #00998E;
    border-radius: 2px;
    margin-bottom: 6px;
  }

  .mobile-nav {
    display: none;
    background: #fff;
    position: fixed;
    top: 53px; 
    left: 0;
    right: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-height: 90%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 10px 20px 0px 20px;
  }

  .mobile-nav ul li {
    margin-bottom: 16px;
  }

  .mobile-nav ul li a {
    font-size: 16px;
    color: #333;
    display: block;
    text-decoration: none;
  }

  .mobile-nav.show {
    display: block;
  }

  .mobile-submenu {
    display: none;
    padding-left: 16px;
    margin-top: 10px;
  }

  .mobile-has-submenu.open .mobile-submenu {
    display: block;
  }

  .mobile-submenu-toggle {
    font-size: 16px;
    background: none;
    border: none;
    color: #00998E;
    text-align: left;
    width: 100%;
    padding: 0px 0;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .submenu-arrow {
    width: 30px;
    padding-left: 10px;
    transition: transform 0.2s ease;
  }

  .mobile-has-submenu.open .submenu-arrow {
    transform: rotate(180deg);
  }

  .mobile-down-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 20px 16px 20px;
  }

  .mobile-contact {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-header__text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    font-family: 'Golos Text', sans-serif;
  }

  .mobile-contact img {
    width: 20px;
    height: 20px;
  }

  .mobile-submenu-li a {
    color: #00998E !important;
  }

  .btn-mobile-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
  }

  .nav-button-left {
    margin-right: 0px;
    font-size: 16px;
    width: 100%;
  }

  .nav-button-right {
    font-size: 16px;
    width: 100%;
  }

  /* Footer */
  .footer .footer-container {
    margin: 24px 12px;
  }

  .footer .footer-left {
    width: 100%;
    flex: unset;
    min-width: unset;
    max-width: unset;
  }

  .footer .footer-right {
    flex: unset;
    width: 100%;
    column-gap: unset;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .footer .footer-logo {
    width: 100%;
    height: auto;
  }

  .footer .app-text {
  font-size: 16px;
  margin-bottom: 19px;
  text-align: start;
}

  .footer .app-links {
   margin-top: 24px;
   justify-content: flex-start;
  }

.footer .app-links img {
  width: auto;
  height: 40px;
}

.footer .app-links-container {
  column-gap: unset;
  flex-wrap: nowrap;
}

.footer .app-link {
  display: flex;
  column-gap: 24px;
}

.footer .footer-section h3 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
  margin-top: unset;
}

.footer .footer-section ul li a {
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 8px;
}

.footer .footer-section ul li {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 8px;
}

.footer .footer-contact a {
  font-size: 14px;
  line-height: 17px;
}

.footer .footer-contact-container {
  row-gap: 16px;
}

.footer .footer-text {
  font-size: 14px;
  line-height: 17px;
}

.footer .footer-contact {
  column-gap: 2px;
}

.footer .footer-section img {
  width: 16px;
}

.footer .footer-social-icon {
  width: 40px !important;
  height: 40px !important;
}

.footer .footer-section {
  min-width: unset;
  flex: 1;
  margin-top: 24px;
}

.footer .footer-bottom {
  column-gap: unset;
  padding: 24px 13px;
  flex-wrap: wrap;
  row-gap: 8px;
}

.footer .footer-bottom-left {
  width: 100%;
}

.footer .footer-bottom-center {
  width: 100%;
  text-align: start;
}

.footer .footer-bottom-right {
  width: 100%;
  text-align: start;
}

.footer .footer-bottom p {
  font-size: 12px;
  line-height: 14px;
}

.footer .footer-bottom a {
  font-size: 12px;
  line-height: 14px;
}

.footer #footer-contacts {
  order: 1;
}

.footer #footer-work {
  order: 2;
}

.footer #footer-info {
  order: 3;
}

}

@media (max-width: 830px) {
  .mobile-number-header-container {
    display: none;
  }
}

@media (max-width: 480px) {
  .mobile-number-header-container {
    display: none !important;
  }
}

/* СТИЛИ FOOTER */

.footer {
  background: #ffffff;
}

.footer-container {
  max-width: 1636px;
  margin: 65px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  min-width: 500px;
  max-width: 500px;
}

.footer-logo {
  height: 97px;
  width: auto;
}

.app-text {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #119b8b;
  width: 100%;
  text-align: center;
}

.app-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 64px;
}


.app-links img {
  height: 53px;
  width: auto;
  cursor: pointer;
}

.app-links-container {
  display: flex;
  justify-content: center;
  column-gap: 32px;
}

.footer-right {
  flex: 2;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  column-gap: 60px;
}

.footer-section {
  min-width: 180px;
}

.footer-section h3 {
  color: #00998E;
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
  margin-top: 15px;
  margin-bottom: 32px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 16px;
}

.footer-section ul li a {
  font-size: 24px;
  font-weight: 400;
  color: #333;
  line-height: 29px;
  text-decoration: none;
}

.footer-section img {
  width: 24px;
  margin-right: 5px;
  vertical-align: middle;
}

.footer-contact-container {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.footer-contact {
  display: flex;
  column-gap: 8px;
  align-items: center;
}

.footer-contact a {
  color: #333;
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  text-decoration: none;
}

.footer-text {
  color: #333;
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
}

.footer-social-icon {
  width: 40px !important;
  height: 40px;
  margin-right: 8px !important;
}

.footer-section ul li {
  color: #333;
  font-size: 24px;
  line-height: 29px;
  font-weight: 400;
  margin-bottom: 29px;
}

.footer-text-grey {
  color: #747474;
}

/* Нижняя полоса футера */

.footer-bottom-conteiner {
  display: flex;
  background: #BBBAE2;
  justify-content: center;
}


.footer-bottom {
  max-width: 1636px;
  display: flex;
  column-gap: 64px;
  padding: 40px 0px;
  color: #ffffff;
}

.footer-bottom a {
  color: #ffffff;
  font-size: 20px;
  width: 100%;
}

.footer-bottom p {
  margin: 0 auto;
  font-size: 20px;
}

.footer-bottom-left {
width: 50%;
}

.footer-bottom-left a {
  text-decoration: none;
}

.footer-bottom-center {
width: 29%;
text-align: end;
}

.footer-bottom-right {
width: 21%;
text-align: end;
}

/* ---------- Главная страница ---------- */
.primary-medium {
  color: #00998E;
  font-weight: 500;
}

.primary {
  color: #00998E;
  font-weight: 400;
}

.secondary-dark {
  color: #8382A8;
  font-weight: 500;
}

.secondary-dark-regular {
  color: #8382A8;
  font-weight: 400;
}


/* Стили меню навигации на страницах */
.page-nav {
  background: #ffffff;
  width: fit-content;
  border-radius: 100px
}

.page-nav ul li {
  padding: 16px 32px;
}

.page-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}

.page-nav a {
  text-decoration: none;
  color: #333333;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  transition: color 0.3s;
}

.page-nav a:hover {
  color: #00998E;
}

/* Скрыть стрелки на FLipBox если нет ссылки*/
.elementor-flip-box:not(:has(a)) .icon-card {
    display: none !important;
}

.text-low-card {
	margin-bottom: 24px !important;
}

/* Убрать отступы с тега ul в акордеонах*/
  .accordion-text ul {
    margin: 0px;
}

/* Подчеркивание заголовка при состоянии open в аккордеоне */
.elementor-widget-n-accordion .e-n-accordion-item[open]>.e-n-accordion-item-title {
    text-decoration: underline;
}