/* 
// <weight>: Use a value from 100 to 1000
// <uniquifier>: Use a unique and descriptive class name */

.body {
  font-family: "Inter", "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


/* ХЭДЭР */
.header__index {
  margin: 0 auto 50px;
  height: 100vh;
    padding-top: 100px;
}
@media screen and (max-width: 1080px) {
  .header__index {
    margin: 50px auto 40px;
  }
}
.header__navigation {
  margin: 0 auto 10px;
  z-index: 10;
}
@media screen and (max-width: 1080px) {
  .header__navigation {
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 780px) {
  .header__navigation {
    display: none;
  }
}
.header__navigation-list {
  gap: 65px;
}
@media screen and (max-width: 1080px) {
  .header__navigation-list {
    gap: 40px;
  }
}
.header__navigation-item {
  font-size: 20px;
  color: white;
}
@media screen and (max-width: 1080px) {
  .header__navigation-item  {
    font-size: 16px;  
  }
}
.header__navigation-item:hover {
  background-image: linear-gradient(to right, #D81696 0%, #4995BC 100%);
  /* обрезаем фон по тексту */
  -webkit-background-clip: text;
  /* меняет цвет текста заголовка на прозрачный что бы можно было увидеть градиент*/
  -webkit-text-fill-color: transparent;
}
.header__main-title {
  width: 1000px;
  margin: 300px auto 90px;
  font-size: 70px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .header__main-title  {
    width: 700px;
    font-size: 50px;
  }
}
@media screen and (max-width: 780px) {
  .header__main-title  {
    width: 400px;
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .header__main-title  {
    width: 200px;
    margin: 150px auto 30px;
  }
}
.header__under-title__english {
  text-align: center;
  margin-bottom: 150px;
}
@media screen and (max-width: 480px) {
  .header__under-title__english {
    font-size: 18px;
    margin-bottom: 100px;
  }
}
.header__phrase {
  text-align: center;
  margin-bottom: 20px;
}



        
  /* Шапка */
  .header {
      position: relative;
      height: 100vh;
      background: #000;
      color: white;
      /* padding: 30px; */
      display: flex;
      flex-direction: column;
  }
  
  
  /* Бургер-меню - мобильная версия */
  .burger-btn {
      display: none;
      position: fixed;
      top: 30px;
      right: 30px;
      width: 40px;
      height: 30px;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      z-index: 1001;
      background: transparent;
      border: none;
  }
  
  .burger-line {
      width: 100%;
      height: 4px;
      background: white;
      transition: all 0.3s;
  }
  
  .mobile-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
  }
  
  .mobile-nav.active {
      opacity: 1;
      visibility: visible;
  }
  
  .mobile-nav-list {
      list-style: none;
      text-align: center;
  }
  
  .mobile-nav-item {
      margin: 25px 0;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.3s;
  }
  
  .mobile-nav.active .mobile-nav-item {
      transform: translateY(0);
      opacity: 1;
  }
  
  .mobile-nav-item a {
      color: white;
      text-decoration: none;
      font-size: 24px;
      transition: color 0.3s;
      padding: 10px 20px;
      display: inline-block;
  }
  
  .mobile-nav-item a:hover {
      color: #D81696;
  }
  
  /* Анимация бургера */
  .burger-btn.active .burger-line:nth-child(1) {
      transform: translateY(13px) rotate(45deg);
  }
  
  .burger-btn.active .burger-line:nth-child(2) {
      opacity: 0;
  }
  
  .burger-btn.active .burger-line:nth-child(3) {
      transform: translateY(-13px) rotate(-45deg);
  }
  
  /* Медиазапросы */
  @media (max-width: 780px) {
      /* .header__navigation {
          display: none;
      } */
      
      .burger-btn {
          display: flex;
      }
      
      /* Задержка для анимации пунктов меню */
      .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
      .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
      .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
      .mobile-nav-item:nth-child(4) { transition-delay: 0.4s; }
      .mobile-nav-item:nth-child(5) { transition-delay: 0.5s; }
      
  }
  
  @media (max-width: 480px) {
    .burger-btn {
        top: 20px;
        right: 20px;
        width: 35px;
        height: 25px;
    }

    .mobile-nav-item a {
        font-size: 20px;
    }
  }


.main:before {
    background: url(../img/logo-300.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: -1;
}


@media screen and (max-width: 1400px) {
    .main:before {
        background-size: 75%;
    }
}
@media screen and (max-width: 1080px) {
    .main:before {
        background-size: 90%;
    }
}
@media screen and (max-width: 780px) {
    .main:before {
        background-size: 110%;
    }
}
@media screen and (max-width: 480px) {
    .main:before {
        background-size: 110%;
    }
}

/* О КОМПАНИИ */

.section__about {
  margin: 0 auto 200px;
}
@media screen and (max-width: 1400px) {
  .section__about {
    padding: 0 40px;
  }
}
@media screen and (max-width: 780px) {
  .section__about {
  margin-bottom: 100px;  
  }
}

.about__information {
  max-width: 1300px;
  flex-wrap: wrap;
  margin: 0 auto 200px;
  gap: 100px;
}
@media screen and (max-width: 1400px) {
  .about__information {
    gap: 60px;
  }
}
@media screen and (max-width: 1080px) {
  .about__information {
    gap: 50px;
  }
}
@media screen and (max-width: 780px) {
  .about__information {
    margin-bottom: 50px;
  }
}
.about__information-frame {
  width: 600px;
  margin: 0 auto;
  height: 200px;
  padding: 0 90px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  border-radius: 300px;
  display: flex; justify-content: center; align-items: center;
}
@media screen and (max-width: 1400px) {
  .about__information-frame {
    height: 150px;
  }
}
@media screen and (max-width: 1080px) {
  .about__information-frame {
    width: 500px;
    height: 120px;
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .about__information-frame {
    width: 300px;
    height: 100px;
    padding: 0 15px;
    font-size: 14px;
  }
}
.about__information-frame:hover {
  border: 2px solid white;
}
.about-frame-1 {
  background-image: linear-gradient(90deg, #D81696, #E1A6CD);
}
.about-frame-2 {
  background-image: linear-gradient(90deg, #D81696, #4995BC);
}
.about-frame-3 {
  width: 1300px;
  background-image: linear-gradient(90deg, #D81696, #20E7D9);
}


/* ПРОЕКТЫ */
.section__projects {
  margin: 0 auto;
  padding: 20px;
}
.projects__information {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1300px;
}
@media screen and (max-width: 1080px) {
  .projects__information {
    /* width: 700px; */
    gap: 40px;

  }
}
@media screen and (max-width: 780px) {
  .projects__information {
    width: 400px;  
    gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  .projects__information {
    width: 280px;
    gap: 10px;
  }
}
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltiptext {
  visibility: hidden;
  background-color: #000000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 110%; /* Расположение тултипа над элементом */
  left: 50%;
  margin-left: -60px;
  opacity: 0; /* Скрыть тултип */
  transition: opacity 0.3s;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.project-circle {
  width: 250px;
  height: 250px;
  border-radius: 150px;
  background-color:rgb(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  /* background-image: linear-gradient(90deg, #D81696, #20E7D9);; */
}
@media screen and (max-width: 1080px) {
  .project-circle {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 780px) {
  .project-circle {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 480px) {
  .project-circle {
    width: 90px;
    height: 90px;
  }
}
.project-circle:hover {
  border: 2px solid white;
}

/* ПРЕИМУЩЕСТВА */
.section__advantages {
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .section__advantages {
    margin-bottom: 70px;
  }
}

.advantages__information {
  margin: 0 auto -500px;
  width: 1140px;
  flex-wrap: wrap;
  gap: 100px;
}
@media screen and (max-width: 1400px) {
  .advantages__information {
    width: 1040px;
    gap: 50px;
    margin: 0 auto 50px;
  }
}
@media screen and (max-width: 1080px) {
  .advantages__information {
    width: 740px;
    gap: 30px;
    margin: 0 auto 40px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 780px) {
  .advantages__information {
    width: 400px;
    gap: 20px;
    margin: 0 auto 20px;
    padding: 0 20px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .advantages__information {
    width: 280px;
  }
}
.advantages__information-frame {
  width: 500px;
  height: 150px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  border-radius: 300px;
  display: flex; justify-content: center; align-items: center;
}
@media screen and (max-width: 1400px) {
  .advantages__information-frame {
    height: 120px;
    width: 400px;
  }
}
@media screen and (max-width: 1080px) {
  .advantages__information-frame {
    height: 100px;
    width: 300px;
    font-size: 22px;
  }
}
@media screen and (max-width: 780px) {
  .advantages__information-frame {
    margin: 0 auto;
    height: 80px;
    width: 300px;
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .advantages__information-frame {
    margin: 0 auto;
    height: 60px;
    width: 200px;
    font-size: 14px;
  }
}
.advantages__information-frame:hover {
  border: 2px solid white;
}
.information-frame-1 {
  background-image: linear-gradient(90deg, #20E7D9, #77359A);
}
.information-frame-2 {
  background-image: linear-gradient(90deg, #D81696, #A805FF);
}
.information-frame-3 {
  background-image: linear-gradient(90deg, #D81696, #77359A);
}
.information-frame-4 {
  background-image: linear-gradient(90deg, #D81696, #E1A6CD);
}
.information-frame-5 {
  background-image: linear-gradient(90deg, #D81696, #20E7D9);
}
.information-frame-6 {
  background-image: linear-gradient(#D81696, #4995BC);
}

.advantages__information-line {
  width: 5px;
  height: 650px;
  background-color: var(--main-color);
  transform: translate(0px, -750px);
}
@media screen and (max-width: 1400px) {
  .advantages__information-line {
    display: none;
  }
}

/* ИССКУСТВЕННЫЙ ИНТЕЛЛЕКТ */
.section__ai {
  margin: 0 auto 70px;
}
@media screen and (max-width: 1400px) {
  .section__ai {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1080px) {
  .section__ai {
    padding: 0 20px;
  }
}
.ai__information {
  max-width: 1220px;
  height: 240px;
  margin: 0 auto 100px;
  padding: 0 200px;
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  border-radius: 300px;
  display: flex; justify-content: center; align-items: center;
  background-image: linear-gradient(90deg, #20E7D9, #D81696);
  text-transform: uppercase;
  line-height: 1.5em;

}
@media screen and (max-width: 1400px) {
  .ai__information {
    padding: 0 100px;
  }
}
@media screen and (max-width: 1080px) {
  .ai__information {
    height: 200px;
    font-size: 20px;
    padding: 0 60px;
  }
}
@media screen and (max-width: 780px) {
  .ai__information {
    height: 160px;
    font-size: 15px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 480px) {
  .ai__information {
    height: auto;
    font-size: 12px;
    padding: 20px 25px;
    margin-bottom: 40px;
  }
}
.ai__information:hover {
  border: 2px solid white;
}
.ai__information__back {
  backdrop-filter: blur(7px);
}

.ai__information__title-advantages {
  width: 1050px;
  margin: 0 auto 50px;
  font-size: 40px;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .ai__information__title-advantages {
    width: 900px;
    font-size: 35px;
  }
}
@media screen and (max-width: 1080px) {
  .ai__information__title-advantages {
    width: 700px;
    margin: 0 auto 40px;
    font-size: 28px;
  }
}
@media screen and (max-width: 780px) {
  .ai__information__title-advantages {
    width: 400px;
    margin: 0 auto 30px;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .ai__information__title-advantages {
    width: 200px;
    margin: 0 auto 20px;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.information-advantages__list {
  margin: 0 auto;
}
.information-advantages__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  gap: 80px;
}
@media screen and (max-width: 1400px) {
  .information-advantages__item {
    gap: 40px;
  }
}
@media screen and (max-width: 1080px) {
  .information-advantages__item {
    gap: 20px;
  }
}
@media screen and (max-width: 1080px) {
  .information-advantages__item {
    gap: 10px;
  }
}
.information-advantages__circle-number {
  width: 200px;
  height: 200px;
  display: flex; justify-content: center; align-items: center;
  text-align: center;
  border-radius: 50%;
  font-size: 40px;
}
.information-advantages__circle-number:hover {
  border: 1px solid white;
}
@media screen and (max-width: 1080px) {
  .information-advantages__circle-number {
    width: 110px;
    height: 110px;
    font-size: 30px;
  }
}
@media screen and (max-width: 780px) {
  .information-advantages__circle-number {
    width: 90px;
    height: 90px;
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .information-advantages__circle-number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
.circle-number-1 {
  background-image: linear-gradient(90deg, #20E7D9, #D81696);
}
.circle-number-2 {
  background-image: linear-gradient(90deg, #77359A, #4995BC);
}
.circle-number-3 {
  background-image: linear-gradient(#D81696, #20E7D9);
}
.circle-number-4 {
  background-image: linear-gradient(90deg, #4995BC, #D81696);
}
.circle-number-5 {
  background-image: linear-gradient(90deg, #20E7D9, #4995BC);
}
.information-advantages__description {
  width: 780px;
  height: 100px;
  padding: 0 20px;  
  font-size: 28px;
  text-align: center;
  display: flex; justify-content: center; align-items: center;
  background-color: rgb(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 50px;
}
@media screen and (max-width: 1400px) {
  .information-advantages__description {
    width: 700px;
    height: 90px;
  }
}
@media screen and (max-width: 1080px) {
  .information-advantages__description {
    width: 500px;
    height: 80px;
    padding: 0 10px;  
    font-size: 20px;
  }
}
@media screen and (max-width: 780px) {
  .information-advantages__description {
    width: 300px;
    height: 60px;
    padding: 0 10px;  
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .information-advantages__description {
    width: 200px;
    height: 50px;
    padding: 0 10px;  
    font-size: 12px;
  }
}
.information-advantages__description:hover {
  border: 2px solid var(--main-color)
}

/* АККРЕДИТАЦИЯ */
.section__accreditation {
  margin: 0 auto 70px;
}
.accreditation__information {
  display: flex;
  margin: 0 auto 50px;
  gap: 100px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 1400px) {
  .accreditation__information {
    gap: 50px;
  }
}
@media screen and (max-width: 1080px) {
  .accreditation__information {
    gap: 40px;   
  }
}
@media screen and (max-width: 780px) {
  .accreditation__information {
    flex-wrap: wrap;
  }
}
.accreditation__information-frame {
}
.accreditation-frame__img {
  width: 300px;  
}
@media screen and (max-width: 1080px) {
  .accreditation-frame__img {
    width: 300px;  
  }
}
@media screen and (max-width: 480px) {
  .accreditation-frame__img {
    width: 250px;  
  }
}
.accreditation__decision {
  width: 1050px;
  margin: 0 auto;
  background-image: linear-gradient(90deg, #D81696, #E1A6CD);
  font-size: 20px;
  border-radius: 500px;
  text-align: center;
  display: flex; justify-content: center; align-items: center;
  padding: 10px;
}
.accreditation__decision:hover {
  border: 1px solid white;
}
@media screen and (max-width: 1400px) {
  .accreditation__decision {
    width: 900px;
  }
}
@media screen and (max-width: 1080px) {
  .accreditation__decision {
    width: 700px;
    font-size: 14px;
  }
}
@media screen and (max-width: 780px) {
  .accreditation__decision {
    width: 440px;
    height: 100px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  .accreditation__decision {
    width: 280px;
    height: 120px;
    padding: 0 20px;
    font-size: 10px;

  }
}

/* Стили для модального окна */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 800px;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform: scale(0.1)} 
  to {transform: scale(1)}
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

/* Добавляем курсор-указатель для изображений */
.accreditation-frame__img {
  cursor: pointer;
  transition: 0.3s;
}

.accreditation-frame__img:hover {
  opacity: 0.7;
}


/* РЕЕСТР */
.section__reest {
  margin: 0 auto 80px;
}
.reestr__information {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding: 0 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1400px) {
  .reestr__information {
    gap: 50px;
  }
}
@media screen and (max-width: 1080px) {
  .reestr__information {
    gap: 30px;
  }
}
@media screen and (max-width: 780px) {
  .reestr__information {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
}
.reestr__doc {
  width: 400px;
  border: 15px solid rgba(0, 0, 0, 0.3)
}
/* .reestr__doc:hover {
  border: 1px solid white;
} */
@media screen and (max-width: 1080px) {
  .reestr__doc {
    width: 300px;
  }
}
@media screen and (max-width: 780px) {
  .reestr__doc {
    width: 220px;
  }
}
.reestr__information-link {
  width: 400px;
  height: 560px;
  padding: 0 20px;  
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  backdrop-filter: blur(10px);
}
.reestr__information-link:hover {
  border: 1px solid white;
}
@media screen and (max-width: 1400px) {
  .reestr__information-link {
    width: 400px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1080px) {
  .reestr__information-link {
    height: 410px;
    font-size: 16px;
  }
}
@media screen and (max-width: 780px) {
  .reestr__information-link {
    width: 220px;
    height: 300px;
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .reestr__information-link {
    font-size: 11px;
  }
}
.reestr__information-link-name {
  padding-bottom: 10px;
}


/* КОНТАКТЫ */
.section__contacts {
  margin: 0 auto 30px;
  font-weight: 500;
  background-color: black;
}
.contacts__title {
  font-weight: 400;
  margin-bottom: 50px;
}
.contacts__navigation {
  margin: 0 auto 20px;
}
.contacts__navigation-list {
  margin: 0 auto 40px;
  gap: 200px;
}
@media screen and (max-width: 1080px) {
  .contacts__navigation-list {
    gap: 100px;
  }
}
@media screen and (max-width: 780px) {
  .contacts__navigation-list {
    gap: 15px;
    padding: 0 50px;
  }
}

.flex-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 780px) {
  .flex-footer {
    flex-wrap: wrap;
  }
}
.contacts__navigation-items {
  text-align: center;
  width: 210px;
  height: 50px;
  font-size: 16px;
  background-image: linear-gradient(90deg, #D81696, #77359A);
  color: #FFF;
  border-radius: 500px;
  display: flex; justify-content: center; align-items: center;
}

.contacts__navigation-items a {
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
}

@media screen and (max-width: 1080px) {
  .contacts__navigation-items {
    font-size: 14px;
  }
}
.footer__item-num {
  background-image: linear-gradient(90deg, #D81696, #77359A);
}
.footer__item-mail {
  background-image: linear-gradient(90deg, #20E7D9, #D81696);
}
.footer__item-message {
  background-image: linear-gradient(90deg, #77359A, #20E7D9);
}
.contacts__navigation-list__llc {
  margin: 0 auto;
}
.navigation-list__llc-name {
  background-image: linear-gradient(90deg, #D81696, #20E7D9);
  color: #FFF;
  width: 770px;
  height: 50px;
  font-size: 16px;
  margin: 0 auto 20px;
  text-align: center;
  border-radius: 100px;
  display: flex; justify-content: center; align-items: center;
}

.navigation-list__llc-name p {
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
}

@media screen and (max-width: 1080px) {
  .navigation-list__llc-name {
    width: 500px;
    font-size: 14px;
  }
}
@media screen and (max-width: 780px) {
  .navigation-list__llc-name {
    width: 400px;
    font-size: 14px;
    height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .navigation-list__llc-name {
    width: 280px;
    font-size: 14px;
  }
}
.navigation-list__llc-address {
  background-image: linear-gradient(90deg, #20E7D9, #D81696);
  color: #FFF;
  font-size: 16px;
  width: 770px;
  height: 50px;
  margin: 0 auto;
  text-align: center;
  border-radius: 200px;
  display: flex; justify-content: center; align-items: center;
}

.navigation-list__llc-address p {
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
}

@media screen and (max-width: 1080px) {
  .navigation-list__llc-address {
    width: 500px;
    font-size: 14px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 780px) {
  .navigation-list__llc-address {
    width: 400px;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .navigation-list__llc-address {
    width: 280px;
    font-size: 12px;
  }
}
.contacts__inn {
  color: #FFF;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .contacts__inn {
    font-size: 14px;
  }
}

.contacts__kpp {
  color: #FFF;
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1080px) {
  .contacts__kpp {
    font-size: 14px;
  }
}
.contacts__rights {
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .contacts__rights {
    font-size: 10px;
  }
}

/* .go-up {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #E1A6CD;
  bottom: 50px;
  right: 50px;
  opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
} */

#backToTopBtn {
  display: none; /* Скрываем кнопку по умолчанию */
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #000000;
  cursor: pointer;
  z-index: 99;
  transition: opacity 0.3s, background-color 0.3s;
}
#backToTopBtn:hover {
  background-color: #ffffff;
}

@media screen and (max-width: 1080px) {
  #backToTopBtn {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 780px) {
  #backToTopBtn {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 480px) {
  #backToTopBtn {
    width: 50px;
    height: 50px;
  }
}

.g-recaptcha {
    display: flex;
    justify-content: center;
}
