/* Общие стили для всех элементов */

.montserrat-title {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500; /* Вы можете выбрать значение в диапазоне от 100 до 900 */
    font-style: normal;
  }
  


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: white;
}

.headerlogo a {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-left: 20px;
    text-decoration: none;
    color: inherit;
}

.logo_icon {
    width: 50px; /* задайте нужную ширину */
    height: auto; /* чтобы сохранить пропорции */
    margin-right: 10px; /* задайте нужный отступ между изображением и заголовком */
}

.logo_title {
    margin: 0; /* убираем внутренние отступы заголовка */
}


.headerlogo img.logo_icon {
    width: 50px; /* задайте нужную ширину */
    height: auto; /* чтобы сохранить пропорции */
}

.headerLink .link_container {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.link_container_element {
    display: inline-block;
    margin-right: 40px; /* задайте нужный отступ между элементами */
}

.number_element {
    display: inline-block;
}

.number_element img {
    width: 20px;
    height: auto;
    margin-right: 7px;
    animation: phoneTube 2s infinite linear; /* Постоянная анимация */
}

@keyframes phoneTube {
    0% {
        transform: scale(1) rotate(0deg); /* Начальные значения */
    }
    50% {
        transform: scale(1.1) rotate(15deg); /* Увеличение и поворот на полпути */
    }
    100% {
        transform: scale(1) rotate(0deg); /* Возврат к начальным значениям */
    }
}


.link_container_element_number {
    display: inline-block;
    font-size: 25px;
    margin-right: 20px;
}

.link_container_element a {
    display: inline-block;
    padding: 10px 20px;
    color: black; /* задайте цвет текста */
    text-decoration: none;
    border-radius: 5px; /* задайте скругление углов */
    margin-right: 10px; /* задайте отступ между кнопками */
    font-size: 20px;
    position: relative; /* Для полосы подчеркивания */
}

.link_container_element a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent; /* Цвет полосы подчеркивания */
    transition: background-color 0.3s ease-in-out; /* Анимация полосы подчеркивания */
}



.link_container_element a:hover::after {
    background-color: #398af5; /* Цвет полосы подчеркивания при наведении */
}

.link_container_element a:active {
    transform: translateY(2px); /* Эффект нажатия */
}

/* Main */

/* CSS стили для секции */
/* CSS стили для секции */


.basic_info_section {
    margin-top: 80px;
}

.section_title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
    color: #333;
    font-family: "Montserrat", sans-serif;
}


.basic_info_container {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff, #a0d8ef); /* Градиентный фон */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    margin: 50px 40px;
    transition: transform 0.3s ease-in-out; /* Анимация */
}

.basic_info_container:hover {
    transform: scale(1.02); /* Увеличение при наведении */
}

.basic_info_item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 40px;
    margin-bottom: 25px;
    transition: background-color 0.3s ease-in-out; /* Анимация при наведении */

}

.basic_info_item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent; /* Цвет полоски подчеркивания */
    transition: background-color 0.3s ease-in-out; /* Анимация полоски подчеркивания */
}

.basic_info_item:hover::after {
    background-color: #a0d8ef; /* Цвет полоски подчеркивания при наведении */
}

.info_label {
    flex: 1;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 15px;
    font-family: "Arial", sans-serif; /* Разнообразие шрифтов */
}

.info_value {
    flex: 2;
    font-size: 18px;
    font-family: "Helvetica", sans-serif; /* Разнообразие шрифтов */
}

.basic_info_title_container {
    text-align: center;
    margin-bottom: 20px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 28px;
    color: #555;
    transition: transform 0.3s ease-in-out; /* Анимация */
}

.basic_info_title_container:hover {
    transform: scale(1.02); /* Увеличение при наведении */
}

/* Bassic section end */

/* Document section */

.document {
    margin-top: 70px;
}

.pdf_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Два столбика равной ширины */
    gap: 10px; /* Расстояние между элементами */
    background: linear-gradient(135deg, #ffffff, #a0d8ef); /* Градиентный фон */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 40px 60px;
    margin: 50px 40px;
    transition: transform 0.3s ease-in-out; /* Анимация */
}


.pdf_container:hover {
    transform: scale(1.02); /* Увеличение при наведении */
}

.pdf_wrapper {
    margin-top: 30px;
    margin-bottom: 30px;

}

.pdf_wrapper svg {
    width: 56px;
    height: 56px;

}

.pdf_title {
    color: black; /* Устанавливаем черный цвет для текста */
    text-decoration: none; /* Убираем стандартное подчеркивание ссылки */
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

.pdf_title:hover {
    text-decoration: underline; /* Добавляем подчеркивание при наведении */
}

/* Footer Style */

.footer_container {
    display: flex;
    justify-content: space-between;
    padding: 50px; /* Подберите подходящий отступ */
}

.footer_logo_container,
.footer_nav_container,
.fooner_contact_container {
    flex-basis: 30%; /* Ширина каждой колонки */
}

.footer_element_contr,
.footer_link_container {
    margin-top: 20px;
    list-style: none; /* Убираем маркеры списка */
    padding: 0; /* Убираем отступы у списка */
}

.footer_elements_list {
    margin-bottom: 10px; /* Дополнительный отступ между элементами списка */
}

.footer_link_container_element {
    margin-bottom: 15px; /* Дополнительный отступ между ссылками */
}

.logo_title,
.footer_link_title,
.footer_contact_title {
    font-size: 1.1em; /* Размер текста */
    margin-bottom: 10px; /* Отступ снизу заголовков */
}

.footer_contact_container {
    display: flex;
    align-items: center; /* Выравнивание контактов по вертикали */
}

.footer_whatsapp_icon {
    margin-left: 10px; /* Отступ между иконкой WhatsApp и контактами */
}

.link_container_element_number {
    margin-left: 8px; /* Отступ между иконкой телефона и номером */
}

.footer_link_container_element a {
    color: inherit; /* Унаследовать цвет текста от родительского элемента */
    text-decoration: none; /* Убрать подчеркивание по умолчанию */
    border-bottom: 1px solid transparent; /* Добавить невидимую черту */
    transition: border-bottom 0.3s ease; /* Плавное изменение черты */
    font-size: 20px;
}

.footer_link_container_element a:hover {
    border-bottom-color:  #398af5; /* Изменить цвет черты при наведении */
}

.footer_contact_title {
    font-size: 23px;
    margin-bottom: 20px;
}

.footer_link_title {
    font-size: 23px;
    margin-bottom: 20px;

}

 .footer_logo a {
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: black;
 }




@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1050px;
  width: 100%;
  margin: auto;
}

.navbar {
    display: none;
  width: 100%;
  box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.navbar .menu-items {
  display: flex;
  flex-direction: column;
}

.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #0e2431;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}

.navbar .nav-container a:hover{
    font-weight: bolder;
}

.nav-container {
  display: block;
  position: relative;
  height: 60px;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  left: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
  
    :root {
      --hamburger-color: #0e2431; /* Задаем переменную */
    }
    
    .nav-container .hamburger-lines .line {
      display: block;
      height: 4px;
      width: 100%;
      border-radius: 10px;
      background: var(--hamburger-color); /* Используем переменную */
    }
    
  
  
  
  .nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }
  
  
  
  
  
  

.navbar .menu-items {
    padding-top: 120px;
    background-color: white; /* Задаем цвет фона */
    height: 100vh;
    width: 100%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    text-align: center;
    box-shadow: none; /* Удаляем box-shadow */
}

  
  

.navbar .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.logo {
display: flex;
justify-content: flex-end;
align-items: center;
position: absolute;
top: 5px;
right: 15px;
font-size: 1.2rem;
color: #0e2431;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked ~ .logo{
  display: none;
}

.special_button_container {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    margin-right: 40px;
}






  @media only screen and (max-width: 1100px) {


    .headerLink{
        display: none;
    }
    .navbar {
        display: block; /* показываем меню для мобильной версии */
    }



  }

  @media only screen and (max-width: 1332px) {

    .link_container_element {
        margin-right: 5px; /* задайте нужный отступ между элементами */
    }

    .link_container_element a {
        font-size: 17px;

    }

    .number_element img {
        width: 15px;
    }

    .number_element p {
        font-size: 15px;
    }

  }

 
    @media only screen and (max-width: 1230px) {

       .info_value {
        margin-left: 40px;
       }

    }

    @media only screen and (max-width: 922px) {

        .info_label {
            font-size: 20px;
        }

        .info_value {
            font-size: 17px;
        }

        .pdf_container {
            gap: 30px;
        }

        .pdf_wrapper svg {
            width: 46px;
            height: 46px;
        }

        .pdf_title {
            color: black; /* Устанавливаем черный цвет для текста */
            text-decoration: none; /* Убираем стандартное подчеркивание ссылки */
            font-size: 17px;
            font-family: "Montserrat", sans-serif;
        }
        


    }

    @media only screen and (max-width: 757px) {
        .headerlogo a {
            display: flex;
            align-items: center;
        }

        .info_label {
            font-size: 17px;
        }

        .info_value {
            font-size: 14px;
        }

        .pdf_container {
            gap: 25px;
        }

        .pdf_wrapper svg {
            width: 40px;
            height: 40px;
        
        }

        .pdf_title {
            color: black; /* Устанавливаем черный цвет для текста */
            text-decoration: none; /* Убираем стандартное подчеркивание ссылки */
            font-size: 15px;
            font-family: "Montserrat", sans-serif;
        }
    }


    @media only screen and (max-width: 678px) {

        .headerlogo a {
            display: flex;
            align-items: center;
        }

        .footer_container {
            display: flex;
            flex-direction: column;
        }

        .basic_info_container { 
            padding: 20;
        }


        .basic_info_item {
            display: flex;
            flex-direction: column;
            padding: 0;
        }

        .info_value {
            margin-left: 0;
        }

        .pdf_container {
            padding: 20;
            display: flex;
            flex-direction: column;
        }

        .section_title {
            font-size: 30px;
        }

        .headerlogo {
            font-size: 20px;
        }


        .logo img {
            width: 30px;
        }
    }





