* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
a {
  text-decoration: none;
  color: white;
}
body {
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #f9f9f9;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-header {
  background: transparent !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgb(255, 255, 255);
  padding: 15px 0 0 0;
  position: absolute;
  left:0;
  right: 0;
  width: 100%;
  top: 0;
  z-index: 1000;
  opacity: 0.6;
}

.top-header-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  max-width: none; 
  padding: 0 20px;
  margin: 0 auto;
}

.logo {
  width: 80px;
  height: 80px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: #65e7d9;
}

.vision-icon {
  color: white;
  font-size: 1.7rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.vision-icon:hover {
  animation: blink 2s infinite;
  color: #65e7d9;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.header-btn {
  background-color: #65e7d9;
  color: #333;
  border: 1px solid #2c3e50;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  overflow: hidden;
}

.header-btn:hover {
  background-color: #4fd1c5;
  transform: translateY(-2px);
}

header {
  position: absolute;
  top: 120px;
  left: 23%;
  z-index: 999;
}

nav {
  display: flex;
  justify-content: center;
  padding: 0;
}

.nav-bubble {
  background-color: rgba(0, 0, 0, 0.537);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 13px 20px;
  width: 70%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  justify-content: space-between;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #65e7d9;
  transition: width 0.3s;
}

.nav-links li a:hover {
  color: #65e7d9;
}

.nav-links li a:hover:after {
  width: 100%;
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #65e7d9;
  transition: all 0.3s ease;
}

.banner {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://pohcdn.com/sites/default/files/styles/node__blog_post__bp_banner/public/2021-04/Annapurna-South-Nepal.jpg")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: zoom 30s infinite;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.banner-content {
  text-align: center;
  color: #fff;
  z-index: 1;
}

.banner h1 {
  font-size: 56px;
  margin-bottom: 15px;
  font-style: italic;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner p {
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-btn {
  background-color: #65e7d9;
  color: #333;
  border: none;
  padding: 15px 30px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.banner-btn:hover {
  background-color: #4fd1c5;
  transform: translateY(-3px);
}

.advantages {
  background-color: transparent;
  padding: 80px 0;
  margin: 0 auto;
  margin-top: -300px;
  position: relative;
  z-index: 2;
  border-radius: 20px 20px 0 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.advantage-card {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.advantage-card:hover {
  transform: translateY(-10px);
}

.advantage-card i {
  font-size: 48px;
  color: #2c7da0;
  margin-bottom: 20px;
}

.advantage-card h3 {
  color: #2c7da0;
  margin-bottom: 15px;
  font-size: 22px;
}

.specialists {
  padding: 80px 0;
  background-color: #f5f5f5;
  margin-top: 0px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #2c7da0;
  font-size: 36px;
  position: relative;
}
.banner-title {
  color: white;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #2c7da0;
  margin: 15px auto 0;
}
.banner-title:after {
  background: #ffffff;
  width: 80%;
}

.specialists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.specialist-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.specialist-card:hover {
  transform: translateY(-10px);
}

.specialist-img {
  height: 250px;
  background-color: #e6f2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c7da0;
  font-size: 20px;
  overflow: hidden;
}

.specialist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.specialist-card:hover .specialist-img img {
  transform: scale(1.1);
}

.specialist-info {
  padding: 20px;
}

.specialist-info h3 {
  color: #2c7da0;
  margin-bottom: 10px;
  font-size: 20px;
}

.specialist-info .specialty {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.specialist-info .experience {
  margin-bottom: 15px;
  color: #666;
}

.more-link {
  color: #2c7da0;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s;
}

.more-link:hover {
  color: #1a5d7a;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.modal-title {
  margin-bottom: 20px;
  color: #2c7da0;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.submit-btn {
  background-color: #65e7d9;
  color: #333;
  border: none;
  padding: 12px 30px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #4fd1c5;
}

.fullscreen-slider {
  width: 100%;
  padding: 80px 0;
  margin-top: 35px;
  background: linear-gradient(135deg, #e6f2f8 0%, #b3d9f2 100%);
  position: relative;
}

.slider-title {
  text-align: center;
  margin-bottom: 40px;
  color: #2c7da0;
  font-size: 36px;
  position: relative;
}

.slider-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #2c7da0;
  margin: 15px auto 0;
}

.slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 1400px;
  width: 95%;
}

.slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 70vh;
  min-height: 500px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.slider-btn {
  background-color: #2c7da0;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  font-size: 18px;
}

.slider-btn:hover {
  background-color: #1a5d7a;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
  background-color: #2c7da0;
  transform: scale(1.2);
}

.slider-action {
  text-align: center;
}

.action-btn {
  background-color: #65e7d9;
  color: #333;
  border: none;
  padding: 15px 40px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.action-btn:hover {
  background-color: #4fd1c5;
  transform: translateY(-3px);
}

.news {
  padding: 80px 0;
  background-color: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.news-card {
  background-color: #f9f9f9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.news-card:hover {
  transform: translateY(-10px);
}

.news-img {
  height: 200px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-card:hover .news-img img {
  transform: scale(1.1);
}

.news-info {
  padding: 20px;
}

.news-date {
  color: #2c7da0;
  font-size: 14px;
  margin-bottom: 10px;
}

.news-title {
  color: #2c7da0;
  margin-bottom: 15px;
  font-size: 20px;
}

footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-map {
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

.footer-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.contact-item i {
  margin-right: 15px;
  font-size: 20px;
  color: #65e7d9;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  color: white;
  font-size: 24px;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: #65e7d9;
}

.sitemap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sitemap-column h3 {
  margin-bottom: 20px;
  color: #65e7d9;
}

.sitemap-links {
  list-style: none;
}

.sitemap-links li {
  margin-bottom: 10px;
}

.sitemap-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.sitemap-links a:hover {
  color: #65e7d9;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.room-search {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(196, 129, 107, 0.3);
  padding: 25px 30px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  z-index: 10;
  width: 100%;
  max-width: 1000px;
}

.search-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.search-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.search-group label {
  color: white;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.input-banner {
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  width: 100%;
}

.search-btn {
  background-color: #65e7d9;
  color: #333;
  border: none;
  padding: 14px 25px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
  margin-top: 24px;
  height: 44px;
}

.search-btn:hover {
  background-color: #4fd1c5;
}

.indications {
  padding: 80px 0;
  background-color: white;
}

.indications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.indication-item {
  background-color: #49fff6;
  padding: 20px;
  border-radius: 10px;
  color: rgb(28, 139, 156);
  opacity: 1;
  transition: opacity 0.3s;
}

.indication-item:hover {
  opacity: 0.3;
  cursor: pointer;
}

.footer-contacts .contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.footer-contacts .contact-item i {
    margin-right: 15px;
    font-size: 20px;
    color: #65e7d9;
    min-width: 25px;
    text-align: center;
    padding-top: 3px;
}

.footer-contacts .contact-item div {
    flex: 1;
}

.footer-contacts .contact-item p {
    color: white;
    margin: 0;
    line-height: 1.4;
}

.instagram-warning {
    margin-top: 10px;
    font-size: 12px;
    color: #ccc;
    line-height: 1.3;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  color: white;
  font-size: 24px;
  transition: transform 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: #65e7d9;
}

.footer-social span.text {
  font-size: 16px;
  font-weight: 500;
}

.footer-social span.instagram-warning-symbol {
  font-size: 12px;
  vertical-align: super;
}

.vision-icon {
    position: relative;
}

.vision-icon i#custom-vision-toggle {
    color: #65e7d9;
    font-size: 1.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.vision-icon i#custom-vision-toggle:hover {
    color: #65e7d9;
    background-color: rgba(101, 231, 217, 0.1);
    transform: scale(1.1);
}

.vision-icon i#custom-vision-toggle.active {
    color: #65e7d9;
    background-color: rgba(101, 231, 217, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(101, 231, 217, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(101, 231, 217, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(101, 231, 217, 0);
    }
}

.visually-impaired-toggle {
    display: none !important;
}

body.visually-impaired-active .vision-icon i#custom-vision-toggle {
    color: #ff6b6b;
}

body.visually-impaired-active .vision-icon i#custom-vision-toggle:hover {
    color: #ff5252;
}

.developer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.developer-info img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.developer-info span {
    color: white;
    font-size: 14px;
}

.developer-info a {
    color: #65e7d9;
    text-decoration: none;
    transition: color 0.3s;
}

.developer-info a:hover {
    color: #4fd1c5;
}

.footer-whatsapp {
    padding: 5px;
    background-color: #25D366;
    border-radius: 10px;
    text-align: center;
    width: 125px;
}
.footer-whatsapp:hover {
    color: white !important;
}

.phone-number{
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.telephone{
  font-weight: 500;
  font-size: 16px;
  color: #65e7d9  !important;
}
.header-contacts{
  display: flex;
  flex-direction: row;
  width: 60%;

  justify-content: space-between;
}
.header-icons{
  display: flex;

  justify-content: center;
}
.header-contacts a,
.vision-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon {
    font-size: 1.7rem; 
    width: 1.7rem;
    height: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.contact-link {
    color: #65e7d9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 40px;
    min-width: 40px;
    transition: all 0.3s ease;
}

.header-icon {
    font-size: 1.7rem;
    width: 1.7rem;
    height: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
}

.telephone {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-left: 10px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.contact-link:hover .header-icon {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-link .header-icon {
    color: #25D366 !important;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: scale(1.1);
}

.whatsapp-link:hover .header-icon {
    transform: rotate(15deg) scale(1.2);
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.main-content,
.content,
.site-content,
.container:not(.top-header-content) {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.entry-content,
.post-content,
.page-content {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.fixed-header {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: none;
    z-index: 999;
    transition: top 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.fixed-header.active {
    top: 0;
}
.nav-bubble-fixed li{
  color:#1a5d7a;
}
.nav-bubble-fixed{
    background-color: rgba(255, 255, 255, 0.614);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 13px 20px;
    width: 100%;
}
.fixed-header-content {
    position:relative
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 10px 40px;
    height: 60px;
    overflow: hidden;
}

.fixed-header-left {
    position: absolute;
    display: flex;
    align-items: left;
    left:5%;
    gap: 15px;
    flex: 1;

}
.fixed-header-nav{
  width:75%;
}
.fixed-header-contacts {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.fixed-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
    overflow: hidden;
}

.fixed-burger {
    cursor: pointer;
    display: none;
    order: -1;
}

.fixed-burger div {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

.fixed-burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.fixed-burger.toggle .line2 {
    opacity: 0;
}

.fixed-burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.fixed-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
}

.fixed-nav-bubble {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 0 0 15px 15px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    border-top: none;
}

.fixed-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.fixed-nav-links li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.fixed-nav-links li a:hover {
    background: #f0f0f0;
    color: #2c7da0;
}

.fixed-nav.active {
    display: block;
}

.top-header,
.top-header * {
    opacity: 1 !important;

}



.top-header .contact-link,
.top-header .header-icon,
.top-header .telephone,
.top-header .header-btn,
.top-header .burger div {
    opacity: 1 !important;
}

.top-header .header-btn {
    color: black !important;
    background-color: #65e7d9 !important;
}

.top-header .burger div {
    background: #333 !important;
}

@media screen and (max-width: 992px) {
  .advantages-grid,
  .specialists-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide {
    height: 60vh;
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .header-right {
    gap: 15px;
  }

  .social-icons {
    display: none;
  }

  .nav-bubble {
    display: none;
    position: fixed;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 999;
  }

  .nav-active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
  }

  .nav-links li {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .burger {
    display: flex;
  }

  .banner h1 {
    font-size: 36px;
  }

  .banner p {
    font-size: 18px;
  }

  .slide {
    height: 50vh;
    min-height: 400px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }

  .sitemap {
    grid-template-columns: 1fr;
  }
  
  .top-header {
    padding: 10px 0 0 0;
    opacity: 0.9;
  }
  
  .top-header-content {
    width: auto !important;
    padding: 0 15px;
    height: 70px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  
  .header-mobile-left {
    display: flex;
    align-items: center;
  }
  
  .logo {
    width: 80px;
    height: 80px;
  }
  
  .header-contacts {
    display: none;
  }
  
  .header-right {
    gap: 10px;
  }
  
  .header-btn {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 15px;
    white-space: nowrap;
  }
  
  .burger {
    margin-left: 5px;
  }
  
  .burger div {
    background: #333;
  }
  
  .nav-bubble {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 10px 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .nav-active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-links li {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links li:last-child {
    border-bottom: none;
  }
  
  .nav-links li a {
    display: block;
    font-size: 16px;
  }
  
  .search-form {
    flex-wrap: wrap;
    gap: 15px;
  }

  .room-search {
    top: 120px;
    max-width: 90%;
  }

  .search-btn {
    flex: 1 0 100%;
    margin-top: 0;
  }
  
  .fixed-burger {
    display: block;
  }
  
  .fixed-header-contacts {
    display: none;
  }
  
  .fixed-header-right .header-btn {
    display: none;
  }
  
  .developer-info {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .developer-info span {
    font-size: 13px;
  }
}

@media screen and (max-width: 576px) {
  .advantages-grid,
  .specialists-grid {
    grid-template-columns: 1fr;
  }

  .logo h1 {
    font-size: 20px;
  }

  .logo p {
    font-size: 12px;
  }

  .header-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .slide {
    height: 40vh;
    min-height: 300px;
  }

  .slider-title {
    font-size: 28px;
  }

  .action-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
  
  .room-search {
    padding: 10px;
    top: 100px;
    max-width: 90%;
  }

  .search-btn {
    margin-top: 10px;
  }
  
  .top-header-content {
    padding: 0 10px;
  }
  
  .logo {
    width: 45px;
    height: 45px;
  }
  
  .header-btn {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .burger {
    width: 25px;
  }
  
  .burger div {
    width: 22px;
    height: 2px;
  }
}

@media (min-width: 769px) {
  .fixed-burger {
    display: flex !important;
  }
  
  .fixed-nav {
    display: none !important;
  }
}

.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-phone {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-phone {
        display: flex;
        order: -1;
    }
}
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

.nav-bubble {
  background-color: black;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 13px 20px;
  width: 70%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  justify-content: space-between;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #65e7d9;
  transition: width 0.3s;
}

.nav-links li a:hover {
  color: #65e7d9;
}

.nav-links li a:hover:after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-bubble {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 10px 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-active {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li a {
    display: block;
    font-size: 16px;
    width: 100%;
  }

  .nav-links li a:after {
    display: none;
  }
}

.burger.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
  opacity: 0;
}

.burger.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}


.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #65e7d9;
  transition: all 0.3s ease;
}

.fixed-burger {
  cursor: pointer;
  display: none;
  order: -1;
}

.fixed-burger div {
  width: 25px;
  height: 3px;
  background-color: #65e7d9;
  margin: 5px;
  transition: all 0.3s ease;
}

.nav-bubble {
  background-color: black;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 13px 20px;
  width: 70%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  justify-content: space-between;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #65e7d9;
  transition: width 0.3s;
}

.nav-links li a:hover {
  color: #65e7d9;
}

.nav-links li a:hover:after {
  width: 100%;
}

.fixed-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
}

.fixed-nav-bubble {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 0 0 15px 15px;
  padding: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  border-top: none;
}

.fixed-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.fixed-nav-links li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}

.fixed-nav-links li a:hover {
  background: #f0f0f0;
  color: #2c7da0;
}

.fixed-nav.active {
  display: block;
}

.burger.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
  opacity: 0;
}

.burger.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.fixed-burger.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.fixed-burger.toggle .line2 {
  opacity: 0;
}

.fixed-burger.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-bubble {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 10px 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-active {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li a {
    display: block;
    font-size: 16px;
    width: 100%;
  }

  .nav-links li a:after {
    display: none;
  }

  .fixed-burger {
    display: block;
  }
}

@media (min-width: 769px) {
  .fixed-burger {
    display: flex !important;
  }

  .burger {
    display: flex;
  }

  .nav-bubble {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 10px 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    background-color: black;
  }

  .nav-active {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li a {
    display: block;
    font-size: 16px;
    width: 100%;
  }

  .nav-links li a:after {
    display: none;
  }
}

.top-header .burger {
  display: none;
}


.top-header .nav-bubble {
  display: block;
  position: static;
  transform: none;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 13px 20px;
  width: 70%;
  margin: 0 auto;
}

.top-header .nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  justify-content: space-between;
  flex-direction: row;
}

.top-header .nav-links li {
  padding: 0;
  border-bottom: none;
  text-align: center;
  width: auto;
}

.top-header .nav-links li a {
  display: inline;
  font-size: 16px;
  width: auto;
  padding: 0;
}

.top-header .nav-links li a:after {
  display: block;
}


.fixed-header .nav-bubble {
  display: none;
}


.fixed-header .fixed-burger {
  display: flex !important;
}

@media screen and (max-width: 768px) {
  .top-header .nav-bubble {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 10px 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .top-header .nav-active {
    position: fixed;
    display: block;
    transform: translateY(0);
    opacity: 1;
  }
  
  .top-header .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .top-header .nav-links li {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }
  
  .top-header .nav-links li:last-child {
    border-bottom: none;
  }
  
  .top-header .nav-links li a {
    display: block;
    font-size: 16px;
    width: 100%;
  }
  
  .top-header .nav-links li a:after {
    display: none;
  }
  
  .top-header .burger {
    display: flex;
  }

  .fixed-header .fixed-burger {
    display: flex;
  }
  
  .fixed-header .nav-bubble {
    display: none;
  }
  
  .fixed-nav.active {
    display: block;
  }
}


@media (min-width: 769px) {
  .fixed-header .fixed-burger {
    display: flex !important;
  }
  
  .fixed-header .nav-bubble {
    display: none;
  }
  
  .fixed-nav.active {
    display: block;
  }
}

.fixed-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 0 0 15px 15px;
    padding: 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    z-index: 999;
}

.fixed-nav-bubble {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 10px 0;
    box-shadow: none;
    border: none;
}

.fixed-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    width: 100%;
}

.fixed-nav-links li {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.fixed-nav-links li:last-child {
    border-bottom: none;
}

.fixed-nav-links li a {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0;
    border-radius: 0;
    transition: color 0.3s;
    display: block;
    font-size: 16px;
    width: 100%;
    position: relative;
}

.fixed-nav-links li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #65e7d9;
    transition: width 0.3s;
}

.fixed-nav-links li a:hover {
    color: #65e7d9 !important;
    background: transparent !important;
}

.fixed-nav-links li a:hover:after {
    width: 100%;
}

.fixed-nav.active {
    display: block;
}

.fixed-nav {
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.fixed-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.fixed-burger {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    margin-right: 15px;
}

.fixed-burger div {
    width: 25px;
    height: 3px;
    background-color: #65e7d9;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.fixed-burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.fixed-burger.toggle .line2 {
    opacity: 0;
}

.fixed-burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


@media (min-width: 769px) {
    .fixed-burger {
        display: flex !important;
    }
    
    .fixed-nav {
        display: none;
    }
    
    .fixed-nav.active {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .fixed-burger {
        display: flex;
    }
    
    .fixed-nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
    }
}

.fixed-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 0 0 15px 15px;
    padding: 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    z-index: 999;
}

.fixed-nav-bubble {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 10px 0;
    box-shadow: none;
    border: none;
}

.fixed-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    width: 100%;
}

.fixed-nav-links li {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.fixed-nav-links li:last-child {
    border-bottom: none;
}

.fixed-nav-links li a {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0;
    border-radius: 0;
    transition: color 0.3s;
    display: block;
    font-size: 16px;
    width: 100%;
    position: relative;
}

.fixed-nav-links li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #65e7d9;
    transition: width 0.3s;
}

.fixed-nav-links li a:hover {
    color: #65e7d9 !important;
    background: transparent !important;
}

.fixed-nav-links li a:hover:after {
    width: 100%;
}

.fixed-nav.active {
    display: block;
}


.fixed-nav {
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.fixed-nav.active {
    transform: translateY(0);
    opacity: 1;
}


.fixed-burger {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    margin-right: 15px;
}

.fixed-burger div {
    width: 25px;
    height: 3px;
    background-color: #65e7d9;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.fixed-burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.fixed-burger.toggle .line2 {
    opacity: 0;
}

.fixed-burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


@media (min-width: 769px) {
    .fixed-burger {
        display: flex !important;
    }
    
    .fixed-nav {
        display: none;
    }
    
    .fixed-nav.active {
        display: block;
    }
}


@media screen and (max-width: 768px) {
    .fixed-burger {
        display: flex;
    }
    
    .fixed-nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
    }
}


.fixed-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 0 0 15px 15px;
    padding: 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    z-index: 999;
}

.fixed-nav.active {
    display: block;
}


.fixed-nav-bubble {
    display: block !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 10px 0 !important;
    box-shadow: none !important;
    border: none !important;
}


.fixed-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    width: 100%;
}

.fixed-nav-links li {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.fixed-nav-links li:last-child {
    border-bottom: none;
}

.fixed-nav-links li a {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0;
    border-radius: 0;
    transition: color 0.3s;
    display: block;
    font-size: 16px;
    width: 100%;
    position: relative;
}

.fixed-nav-links li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #65e7d9;
    transition: width 0.3s;
}

.fixed-nav-links li a:hover {
    color: #65e7d9 !important;
    background: transparent !important;
}

.fixed-nav-links li a:hover:after {
    width: 100%;
}


.fixed-nav {
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.fixed-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.fixed-nav.active {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.container {
    max-width: none;
    overflow-x: hidden;
}


* {
    box-sizing: border-box;
}


.main-container {
    max-width: 100vw;
    overflow-x: hidden;
}


@media (max-width: 768px) {
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


.slider,
.reviews-slider,
.indications-slider,
.specialists-slider {
    max-width: 100%;
    overflow: hidden;
}


img {
    max-width: 100%;
    height: auto;
}


table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}


html, body {
    max-width: 100%;
    overflow-x: hidden;
}


.fixed-header,
.modal,
.other-fixed-elements {
    max-width: 100vw;
}

.fixed-header .fixed-burger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 30px !important;
    height: 30px !important;
    cursor: pointer !important;
    margin-right: 15px !important;
}

.fixed-header .fixed-burger div {
    width: 25px !important;
    height: 3px !important;
    min-height: 3px !important;
    background-color: #333333 !important;
    margin: 2px 0 !important;
    transition: all 0.3s ease !important;
    border-radius: 2px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.fixed-header .fixed-burger div[style] {
    height: 3px !important;
    min-height: 3px !important;
}



@media screen and (max-width: 768px) {
  .fixed-header .fixed-header-right {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
  }
  
  .fixed-header .header-btn {
    display: block !important;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 15px;
    white-space: nowrap;
    background-color: #65e7d9;
    color: #333;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .fixed-header .header-btn:hover {
    background-color: #4fd1c5;
    transform: translateY(-2px);
  }
  
  .fixed-header-contacts {
    display: none !important;
  }
  
  .fixed-header-left {
    flex: 1;
    justify-content: flex-start;
  }
  
  .fixed-header-right {
    flex: 1;
    justify-content: flex-end;
  }
  
  .fixed-header-content {
    padding: 5px 15px;
    height: 50px;
  }
  
  .fixed-burger {
    margin-right: 10px;
    order: -1;
  }
}

@media screen and (max-width: 576px) {
  .fixed-header .header-btn {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .fixed-header-content {
    padding: 5px 10px;
  }
}


@media (min-width: 769px) {
  .fixed-header .fixed-burger {
    display: none !important;
  }
  
  .fixed-nav {
    display: none !important;
  }
  
  .fixed-header .nav-bubble {
    display: block !important;
    position: static;
    transform: none;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 20px;
    width: auto;
    margin: 0;
    flex: 1;
    max-width: 600px;
  }
  
  .fixed-header .nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    justify-content: space-between;
    flex-direction: row;
    margin: 0;
    padding: 0;
  }
  
  .fixed-header .nav-links li {
    padding: 0;
    border-bottom: none;
    text-align: center;
    width: auto;
  }
  
  .fixed-header .nav-links li a {
    display: inline;
    font-size: 14px;
    width: auto;
    padding: 0;
    color: white !important;
  }
  
  .fixed-header .nav-links li a:after {
    display: block;
  }
  
  .fixed-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  .fixed-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
  }
  
  .fixed-header-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-left: 25px;
    flex: 1;
  }
  
  .fixed-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
  }
  
  .fixed-header .logo {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 768px) {
  .fixed-header .nav-bubble {
    display: none !important;
  }
  
  .fixed-header .fixed-burger {
    display: flex !important;
  }
  
  .fixed-nav.active {
    display: block !important;
  }
  
  .fixed-header-left {
    flex: 1;
  }
  
  .fixed-header-center {
    display: none;
  }
  
  .fixed-header-right {
    flex: 1;
    justify-content: flex-end;
  }
}

.burger, .fixed-burger {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  z-index: 1001;
}

.burger div, .fixed-burger div {
  width: 25px;
  height: 3px;
  background-color: #65e7d9;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger.toggle .line1,
.fixed-burger.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2,
.fixed-burger.toggle .line2 {
  opacity: 0;
}

.burger.toggle .line3,
.fixed-burger.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}


.fixed-burger div[style] {
  height: 3px !important;
  min-height: 3px !important;
}

.nav-bubble-fixed .nav-links li {
    color: #000000 !important;
}

.nav-bubble-fixed .nav-links li a {
    color: #000000 !important;
}

.nav-bubble-fixed .nav-links li a:hover {
    color: #65e7d9 !important;
}



@media screen and (max-width: 768px) {
  .top-header {
    position: fixed !important;
    top: 0 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 5px 0 0 0 !important;
    opacity: 1 !important;
    z-index: 1000;
  }
  
  .top-header .header-contacts a,
  .top-header .header-icon,
  .top-header .telephone {
    color: #333 !important;
  }
  
  .top-header .burger div {
    background-color: #333 !important;
  }
  
  .top-header .header-btn {
    color: #333 !important;
    background-color: #65e7d9 !important;
  }
  

  .fixed-header {
    display: none !important;
  }

  body {
    padding-top: 70px;
  }
  
  .banner {
    margin-top: -70px;
  }
}

@media screen and (min-width: 769px) {
  .top-header {
    position: absolute !important;
    background: transparent !important;
  }
  
  .fixed-header {
    display: block !important;
  }
  
  body {
    padding-top: 0;
  }
  
  .banner {
    margin-top: 0;
  }
}
.mobile-phone{
  font-size: 1.5rem;
}