a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Наследует цвет текста от родительского элемента */
}
.responsive-br2{
  display: none;
}
.responsive-br{
  display: none;
}

.numbers_headers{
  display: flex;
  flex-direction: column;
}
.phones_footer{
  display: flex;
  flex-direction: column;
  margin-right: 100px;
}

.appear{
  opacity: 1 !important;
  transform: translateX(0) !important;
  transform: translateY(0) !important;
}

.tabs {
  margin-top: 73px;
}

.language-selector {
  position: relative;
  display: flex;
  cursor: pointer;
  font-family: Inter, sans-serif; /* Шрифт для текста */
}

.language-text {
  padding: 10px;
  border-radius: 4px;
  background-color: #fff;
}

.language-icon {
  width: 20px;
  height: auto;
}

.language-options {
  position: absolute;
  top: calc(100% + 5px); /* Расположение под текстом языкового селектора */
  left: 0;
  display: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  background-color: #fff;
  z-index: 1000; /* Чтобы выпадающий список был выше других элементов */
}

.language-options.active {
  display: block;
}

.language-options li {
  padding: 10px;
  cursor: pointer;
}

.language-options li:hover {
  background-color: #f0f0f0;
}



ul {
  list-style-type: disc; /* или circle, square и т.д. */
}


.active {
  background: linear-gradient(90deg, rgba(51, 224, 236, 0.3) 0%, rgba(10, 120, 250, 0.3) 100%);
  border: none !important;
}

.disable {
    display: none !important;
}

.hidden {
  display: none;
}
.hidden_button {
  opacity: 0;
}
.visible {
  display: block;
}


.hero-section {
    background-color: #fff;
    display: flex;
    flex-direction: column;
  }
  .hero-person {
    position: absolute;
    opacity: 0;
    z-index: 1;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
  }
  .hero-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    min-height: 1027px;
    width: 100%;
    justify-content: center;
    padding: 1px 0;
  }

  .background{
    z-index: 0;
    background-repeat:no-repeat;
  }
  .hero-background {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    max-width: 100%;

  }
  
  .hero-overlay {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 1026px;
    width: 100%;
    justify-content: center;
    user-select: none;
    max-width: 100%;
  }
  
  
  .hero-content {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 1026px;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 68px 60px;
    max-width: 100%;
  }
  
  
  .header-wrapper {
    z-index: 2;
    margin-bottom: 450px;
    display: flex;
    width: 100%;
    max-width: 1596px;
    flex-direction: column;
    padding-top: 1px;
    overflow: hidden;
  }
  
  
  .header {
    margin-bottom: 300px;
    height: 77px;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    width: 100%;
    gap: 20px;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    justify-content: space-between;
    max-width: 100%;
    
  }
  
  
  .logo {
    aspect-ratio: 3.57;
    object-fit: auto;
    object-position: center;
    width: 144px;
    height: 40px;
    align-self: center;
    margin-left: 50px;
  }
  
  .header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: auto 0;
  }
  
  
  .language-selector {
    align-self: stretch;
    display: flex;
    white-space: nowrap;
    margin: auto 0;
  }
  
  @keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes swing {
  0%, 100% {
      transform: translateX(0);
  }
  25% {
      transform: translateX(-20px);
  }
  75% {
      transform: translateX(20px);
  }
}

  .language-text {
    font-family: Inter, sans-serif;
  }
  
  .language-icon {
    aspect-ratio: 1.67;
    object-fit: auto;
    object-position: center;
    width: 15px;
    margin: auto 0;
    margin-right: 107px;
  }
  
  .phone-number {
    animation: bounce 2s infinite;
    font-family: Inter, sans-serif;
    align-self: stretch;
    flex-grow: 1;
    flex-basis: auto;
    margin: auto 0;
    margin-right: 107px;
  }
  
  .email-wrapper {
    align-self: stretch;
    display: flex;
    gap: 10px;
    white-space: nowrap;
  }
  
  
  .email-icon {
    aspect-ratio: 1.37;
    object-fit: auto;
    object-position: center;
    width: 41px;
  }
  
  .email-address {
    font-family: Inter, sans-serif;
    flex-grow: 1;
    flex-basis: auto;
    margin: auto 0;
    margin-right: 82px;
  }
  .hero-title {
    opacity: 0;
    transition: transform 2s ease-in-out, opacity 2s ease-in-out;
    margin-left: 730px;
    color: #fff;
    text-transform: uppercase;
    align-self:center;
    font: 700 80px Inter, sans-serif;
    user-select: none;
    transform: translateX(100%);
  }
  
  
  
  .services-section {
    align-self: center;
    display: flex;
    margin-top: 168px;
    width: 100%;
    max-width: 1596px;
    flex-direction: column;
    padding: 0 20px;
  }
  
  
  .services-title {
    opacity: 0;
    color: #000;
    text-transform: uppercase;
    font: 700 40px Inter, sans-serif;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateX(-100%);
  }
  

  
  .services-content {
    max-width: 100%;
    margin-top: 94px;
  }
  
  
  .services-grid {
    gap: 20px;
    display: flex;
  }
  
  
  .services-column {
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 50%;
    margin-left: 0px;
  }
  
  
  .services-list {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    color: #000;
  }
  
  
  .service-item {
    border-radius: 40px;
    border: 5px solid #a8a8a8;
    display: flex;
    align-items: start;
    gap: 20px;
    text-transform: uppercase;
    padding: 29px 31px;
    cursor: pointer;
    width: 706px;
  }
  
  
  .service-number {
    font: 700 40px Inter, sans-serif;
  }
  
  .service-description {
    text-transform: lowercase;
    align-self: stretch;
    flex-grow: 1;
    flex-basis: auto;
    font: 400 32px Inter, sans-serif;
  }
  
  
  .service-expand {
    color: #a8a8a8;
    font: 200 80px Inter, sans-serif;
  }
  

  
  .service-item-highlight {
    border-radius: 40px;
    background: linear-gradient(90deg, rgba(51, 224, 236, 0.3) 0%, rgba(10, 120, 250, 0.3) 100%);
    display: flex;
    margin-top: 46px;
    gap: 20px;
    padding: 30px 31px;
  }
  
  
  .services-image-column {
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 50%;
    margin-left: 64px;
    max-width: 778px;
  }
  
  
  .services-image-wrapper {
    display: flex;
    align-items: center;
    border-radius: 40px;
    border: 5px solid #8ec3ff;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    font-size: 32px;
    color: #000;
    font-weight: 400;
    width: 100%;
    max-width: 766px;
    
  }
  

  
  .services-image {
    user-select: none;
    aspect-ratio: 1.23;
    object-fit: auto;
    object-position: center;
    width: 626px;
    margin-top: 64px;
  }
  
  
  .services-image-caption {
    align-self: start;
    margin-left: 70px;
    font-family: Inter, sans-serif;
    margin-top: 48px;
  }
  
  .footer {
    background-color: #45bcb5;
    display: flex;
    margin-top: 218px;
    max-width: 100%;
    align-items: center;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    justify-content: center;
    padding: 48px 60px;
  }
  
  
  .footer-content {
    display: flex;
    width: 100%;
    max-width: 1597px;
    gap: 20px;
    justify-content: space-between;
  }
  
  
  .footer-info {
    display: flex;
    align-items: end;
    gap: 20px;
  }
  
  
  .footer-logo {
    aspect-ratio: 3.85;
    object-fit: auto;
    object-position: center;
    width: 265px;
    align-self: stretch;
    max-width: 100%;
  }
  
  .footer-address {
    font-family: Inter, sans-serif;
    margin-left: 100px;
    
    flex-grow: 1;
    flex-basis: auto;
    margin-left: 380px;
  }
  
  .footer-phone {
    font-family: Inter, sans-serif;
    margin-bottom: 20px;
    flex-grow: 1;
    flex-basis: auto;
    margin-left: 230px;
  }
  
  .footer-email {
    align-self: end;
    display: flex;
    margin-top: 28px;
    gap: 10px;
    white-space: nowrap;
    margin-bottom: 20px;
  }
  
  @media (max-width: 991px) {
    .footer-email {
      white-space: initial;
    }
  }
  
  .footer-email-icon {
    aspect-ratio: 1.37;
    object-fit: auto;
    object-position: center;
    width: 41px;
  }
  
  .footer-email-address {
    font-family: Inter, sans-serif;
    flex-grow: 1;
    flex-basis: auto;
    margin: auto 0;
  }



  @media (max-width: 1800px){
    .header {
      width: 1500px;
    }
  }



  @media (max-width: 1641px){
    .services-section{
      padding: 0;
    }
    .services-grid{
      margin-left: 50px;
      margin-right: 50px;
    }
    .footer-phone{
      margin-left: 100px;
    }
    .services-title{
      margin-left: 50px;
    }
  }

  @media (max-width: 1531px){
    .header{
      margin-left: 60px;
      width: 1300px;
    }
    .services-grid{
      margin: 0;
      max-width: 1400px;
    }
    .services-content{
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .services-column{

    }
    .service-item{
      max-width: 500px;
    }
    .services-image{
      width: 500px;
    }
  }

  @media (max-width: 1439px) {
    .language-icon{
      width: 20px;
      padding:0;
      margin:0;
    }
    .language-selector{
      width: 50px;
      margin-right: 40px;
    }
    .header{
      width: 1000px;
      align-self: center;
      margin-right: 60px;
    }
    .hero-title{
      margin-left: 450px;
    }
  .footer-address{
    margin-left: 100px;
  }
  .footer-phone{
    margin-left: 100px;
  }
  .services-title{
    margin-left: 0px;
  }
  }
@media (max-width: 1235px){
  .header{
    margin-left: 0px;
  }
  .services-grid{
    margin: 0;
    max-width: 1000px;
  }
  .services-image{
    width: 400px;
  }
  .service-description{
    font-size: 28px;
  }
  .services-title{
    margin-left: 100px;
  }
  .tabs{
    margin-top: 25px;
  }
}

@media (max-width:1275px){
  .footer-email-address{
    
  }
  .footer-address{
    margin-bottom: 20px;
    font-size: 10px;
  }
}

@media (max-width:1090px){
  .services-image-wrapper{
    max-width: 400px;
    width: 400px;
  }
  .phone-number{
    padding: 0;
    margin-right: 20px;
  }
  .header{
    width: 900px;
  }
  .hero-title{
    margin-left: 360px;
    font-size: 70px;
  }
  .services-image{
    width: 350px;
  }
  .service-item{
    width: 400px;
  }
  .services-image-caption{
    margin-left: 30px;
    font-size: 20px;
  }
  .service-description{
    font-size: 20px;
  }
  .header{
    margin-bottom: 350px;
  }
  .services-image-column{
    margin-left: 10px;
  }
}

@media (max-width:1090px){
  .footer-address{
    margin-left: 0px;
  }
  .footer-phone{
    margin-left: 0px;
  }
  .header{
    width: 800px;
  }
}

@media (max-width:958px){
  .hero-title{
    font-size: 60px;
  }
  .services-title{
    margin-left: 10px;
  }
  .service-expand{
    font-size: 40px;
  }
  .footer-email{
    margin-left: 180px;
    
  }
  .responsive-br2{
    display: block;
  }
}

@media(max-width:928px){
  .responsive-br{
    display: block;
  }
  .header{
    width: 700px;
  }
  .services-image{
    width: 300px;
  }
  .service-item{
    width: 300px;
  }
  .services-image-wrapper{
    width: 350px;
  }
  .services-image-column{
    width: 350px;
  }
  .hero-title{
    font-size: 55px;
  }
}

@media(max-width:818px){
  .header{
    margin-right: 110px;
  }
  .hero-title{
    margin-left: 230px;
  }
  .footer-logo{
    width: 200px;
  }
  .footer-email{
    margin-left: 0px;
    
  }
}

@media(max-width:774px){
  .hero-title{
    margin-left: 120px;
    font-size: 45px;
  }
  .service-description{
    font-size: 16px;
  }
  .service-item{
    margin-left: 0px;
    padding-left: 10px;
    width: 250px;
  }
  .services-image-wrapper{
    width: 350px;
  }
  .services-image-column{
    width: 350px;
  }
  .service-expand{
    font-size: 30px;
  }
  .services-title{
    font-size: 30px;
    margin-left: 50px;
  }
}

@media(max-width:730px){
  .logo{
    width: 100px;
    margin-left: 10px;
  }
  .header{
    width: 500px;
  }
  .phone-number{
    font-size: 13px;
  }
  .email-address{
    font-size: 13px;
  }
  .language-selector{
    margin-right: 10px;
  }
  .footer-logo{
    width: 150px;
  }
  .services-image-wrapper{
    width: 300px;
  }
  .services-image{
    width: 250px;
  }
  .hero-person{
    max-width: 900px;
    width: 730px;
    height: 1135px;
  }
  .service-item{
    margin-left: 40px;
    width: 200px;
  }
  .service-description{
    font-size: 12px;
  }
  .services-image{
    width: 200px;
    margin-top: 20px;
  }
  .services-image-wrapper{
    width: 250px;
  }
  .services-image-column{
    width: 300px;
  }
  .services-image-caption{
    font-size: 16px;
  }
  .hero-title{
    font-size: 30px;
  }
  .footer-content{
    font-size: 15px;
  }
}


@media(max-width:628px){
  .header{
    width: 400px;
    margin-bottom: 440px;
  }
  .services-image-column{
    width: 250px;
  }
  .service-item{
    margin-left: 0px;
  }
  .footer-logo{
    display: none;
  }
  .logo{
    display: none;
  }
  .footer-email{
    margin-left: 0px;
  }
  .footer-info{
    width: 100px;
  }
  .language-selector{
    margin-left: 25px;
  }
  .footer-info{
    margin-bottom: 4px;
  }
  .hero-title{
    margin-right: 200px;
    font-size: 35px;
    position: absolute;
    bottom: 700px;
  }
}

@media(max-width:561px){
  .services-title{
    margin-left: 15px;
  }
  .services-content{
    width: 540px;
  }
  .hero-person{
   height: 1120px;
  }
  .services-image-wrapper{
    width: 200px;
  }
  .services-image-column{
    width: 200px;
  }
  .services-image{
    width: 150px;
  }
}

@media(max-width:491px){
  .header{
    margin-bottom: 480px;
  }
  .service-item{
    width: 160px;
  }
  .service-number{
    font-size: 14px;
  }
  .service-expand{
    display: none;
  }
  .services-image-caption{
    font-size: 12px;
  }
  .service-description{
    font-size: 12px;
  }
  .services-image-column{
    margin-left: 0px;
  }
  .hero-person{
    height: 1110px;
   }
   .footer-email{
    margin-left: 150px;
    justify-content: center;
    justify-content: center;
    align-self: center;
    flex-direction: column;
   }
   .footer-email-icon{
    margin-left: 20px;
   }
}

@media(max-width:451px){
  .header{
    width: 370px;
    margin-right: 130px;
    margin-bottom: 500px;
  }
  .hero-title{
    bottom: 750px;
    margin-right: 100px;
  }
  .phone-number{
    margin: 0;
    padding: 0;
    margin-top: 6px;
  }
  .service-item{
    width: 130px;
  }
  .service-description{
    font-size: 10px;
  }
  .footer-content{
    padding-right: 50px;
  }
}

@media(max-width:429px){
  .footer-email{
    margin-left: 120px;
  }
  .header{
    width: 300px;
  }
  .services-image-wrapper{
    width: 170px;
  }
  .hero-person{
    height: 1100px;
   }
   .phone-number{
    margin-top: 11px;
    font-size: 10px;
   }
   .email-icon{
    width: 20px;
   }
   .email-address{
    font-size: 10px;
   }
}

@media(max-width:401px){
  .hero-title{
    font-size: 27px;
  }
  .footer-content{
    padding-right: 50px;
  }
  .footer-content{
    margin-right: 50px;
  }
  .services-image-wrapper{
    width: 157px;
  }
  .services-image-column{
    width: 140px;
  }
  .services-image-caption{
    margin-left: 15px;
    font-size: 10px;
  }
  .services-grid{
    margin-right: 15px;
  }
  .hero-person{
    height: 1095px;
   }
   .email-wrapper{
    margin-left: 10px;
   }
   .header-nav{
    gap: 0;
   }
   .phone-number{
    margin-left: 10px;
   }
}
