@font-face {
    font-family: 'Helvetica'; /* Название шрифта */
    src: url('../fonts/helvetica_regular.woff2') format('woff2');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'Helvetica_light';
    src: url('../fonts/helvetica_light.woff2') format('woff2');
    font-style: normal;
    font-weight: lighter;
}
@font-face {
    font-family: 'Helvetica_bold';
    src: url('../fonts/helvetica_bold.woff2') format('woff2');
    font-style: normal;
    font-weight: bold;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    margin: 0px;
    position: relative;
    font-family: 'Helvetica', sans-serif;
    
}
h1 {
    font-family: 'Helvetica_bold', sans-serif;
    font-weight: bold;
    font-size: 70px;
	text-transform: uppercase;
}
h2 {
    margin: 0;
    font-family: 'Helvetica_bold', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 36.8px;
    text-align: center;
}
h3 {
    font-family: 'Helvetica_bold', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 27.6px;
    text-align: left;
}
h2 > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 18.4px;
    text-align: center;
}

a{
    text-decoration: none;
}
/*Переменные*/
:root {
	--width_doc: 1200px; /* Задаём переменную */
}
/*------------------------------------------------------------------
    [Header]
------------------------------------------------------------------*/
/* Стили для навигационного меню */
header{
    width: 100%;
}
.navbar {
    position: fixed; /* Фиксация меню сверху экрана */
    /*top: 0;
    left: 0;*/
    /*padding: 44px 100px;*/
    /*width: 100%; /* Меню на всю ширину экрана */
	height: 95px; /* Высота меню */
	background-color: transparent;
    /*display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-self: center;
	align-items:center;*/
    z-index: 1000; /* Меню всегда сверху */
    transition: background-color 0.3s ease; /* Плавное изменение фона */
}
.navbar-content{
	width: var(--width_doc);
	height:100%;
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-self: center;
	margin: 0 auto;
}
.navbar.scrolled {
    /*background-color: #fff;  Белый фон при прокрутке */
    background-color: rgba(0,0,0,0.4);
}
.navbar-logo{
    /*padding-left: 80px;*/
    display: flex;
    align-items: center;
    justify-content: start;
}
.navbar-logo img {    
    height: 30px; /* Уменьшение размера логотипа */
}
.logo{
    padding: 0px;
}
.navbar-menu{
    /*padding-right: 80px;*/
    display: flex;
    align-items: center;  /*Центрирование по вертикали */
    justify-content: end;
}
.navbar-menu ul {
    list-style: none; /* Убираем маркеры списка */
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px; /* Расстояние между пунктами меню */
}

.navbar-menu ul li {
    display: inline-block;
}

.navbar-menu ul li a  {
    text-decoration: none; /* Убираем подчеркивание ссылок */
    color: #fff; /* Белый цвет текста */
    font-family:'Helvetica_light'; 
    font-size: 15px; /* Размер шрифта */
    font-weight: lighter; 
    /*text-transform: uppercase;  Заглавные буквы */
    padding: 10px 15px; /* Внутренние отступы */
    transition: color 0.3s ease; /* Плавное изменение цвета текста */
}

.navbar-menu ul li a:hover {
    color: #64AB62; /* Цвет текста при наведении */
}

.navbar-menu ul li a.active {
    border-bottom: 2px solid #64AB62; /* Подчеркнуть активный пункт */
}
.ru-ua{
    margin-left: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family:'Helvetica_light'; 
    font-size: 15px;
    font-weight: lighter;
    transition: color 0.3s ease; /* Плавное изменение цвета текста */
}
.ru-ua a{
    text-decoration: none;
    color: #fff; /* Белый цвет текста */
    transition: color 0.3s ease; /* Плавное изменение цвета текста */
}
.ru-ua a:hover{
    color: #64AB62;
}
.ru-ua a.active-lg{
    color: #64AB62;   
}
.ru-ua p{
    color: #fff;
}
@media (orientation:portrait){
    .navbar-logo{
        padding-left: 6.4vw;
    }
    .navbar-menu{
        display:none; 
    }
}
/* 1 экран */
.screen-1 {
    width: 100%;
    height: 766px;
}
.home-screen{
	 background-image: url(/img/fon-screen1.png);
     background-size: cover;
}
.screen-1-content,
.screen-2-content,
.screen-3-content,
.screen-4-content,
.screen-5-content,
.screen-6-content,
.content-footer{
	width: var(--width_doc);
	margin: 0 auto;
}
.screen-1-content-box{
	display: flex;
    
}
.block-left,
.block-right {
    flex: 1;
    align-items: center;
}
.block-left {
    /*min-height: 766px;
    padding: 20% 0 0 5%;*/
    padding-top: 15%;
    text-align: left;
    vertical-align: baseline;
}
.block-left-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;    
}
.block-right {
    /*padding: 5px 30px;*/
    flex: 1;
    display: flex;
    flex-direction: column;
    /*justify-content: space-around;
    align-items: flex-start;*/
	justify-content: end;
    align-items: flex-end;
}

.block-left h1{
    margin: 0px;
    font-size: 70px;
    font-weight: 700;
    line-height: 90px;
    text-align: left;
    color: #FFFFFF;
}
.block-left p{
    margin-top: 20px;
    font-family: 'Helvetica_light';
    font-size: 28px;
    font-style: normal;
    font-weight: lighter;
    line-height: 36.8px;
    letter-spacing: 0.04em;
    text-align: left;
    color: #FFFFFF;
}
@media (orientation:portrait){
    .block-left-content h1{
        font-size: 46px;
        line-height: 53px;
    }
    .block-left{
        margin: 0;
    }
    .block-right{
        display: none;
    }
    .block-left-content{
        padding-top: 150px;
        padding-left: 6.4vw;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        /*height: 100vh;*/
        justify-content: center;
    }
    .block-left-content p{
        margin-bottom: 90px;
    }
    
}

/* 2 экран */
.screen-2{
    
    background-color: #161616;
}
.work {
    margin: auto;
    height: auto;
    padding: 4vw 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	overflow: auto;
}
.work::after {
    content: "";
    display: block;
    clear: both;
}
.work h2 {
    margin: 0;
    color: #F5F5F5;
}
.work p {
    width: 70%;
    color: #F5F5F5;
    text-align: center;
}
.pressbutton, .btn, .btn-1,
.pressbutton-0 {
    margin-top: 60px;
    border-radius: 35px;
    border: 1px solid white;
    width: 320px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}
/*.btn-text {
    flex-basis: auto;
    /* Текст занимает минимум места по умолчанию 
    transition: all 0.3s ease;
     Плавный переход для текста */
}*/

.btn-arrow {
    margin-left: 10px;
    /* Расстояние между текстом и стрелкой */
    transition: opacity 0.3s ease;
    /* Плавный переход для прозрачности */
}

/* При наведении на кнопку */
.pressbutton:hover,
.pressbutton-0:hover{    
    background-color: #FFFFFF;
    color: #161616;
}
.btn-1:hover .btn-text {
    flex-basis: 100%;
    /* Текст занимает всю ширину кнопки */
    text-align: center;
    /* Центрируем текст */
}
.btn-arrow:hover{
    display: none;
    /* Скрываем стрелку */
}
/* Центрирование текста при наведении */


/* 3 экран */
.screen-3{
    background-color: #768262;
}

.slider {
    margin-top: 0;
    background-color: #768262;
    /*width: auto;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.slider h2 {
    margin: 0;
    padding-top: 4vw;
    color: #FFFFFF;
}
.product {
    display: flex;
    flex-direction: row;
    padding: 4vw 0vw;
}
.block-left-product,
.block-right-product {
    width: 50%;
    align-items: center;
}
.block-left-product {
    padding: 0.4vw 2.4vw;
    /*display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;*/
    
    height: auto; /* Фиксированная высота контейнера */
    overflow: hidden; /* Обрезка изображения, если оно выходит за границы */
}
.block-left-product img{
    width: 100%; /* Изображение подстраивается под ширину контейнера */
    height: auto; /* Сохраняет пропорции */
    object-fit: cover; /* Заполняет контейнер, обрезая лишнее */
}
.block-right-product {
    padding: 0.4vw 2.4vw;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.block-right-product h3,
p {
    color: #FFFFFF;
}

.block-right-product h3 {
    margin-top: 0px;
}

.block-right-product p {
    padding: 0;
    font-size: 16px;
    line-height: 20px;
}

.btn-1 {
    padding-bottom: 0px;
}
/* Общий контейнер кнопки */
.button-container {
    margin: 25px 0px;
    position: relative;
    height: 55px;
    width: 180px;
    border: 1px solid #fff;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    /*display: inline-flex;  Горизонтальное размещение текста и стрелки */
    display: flex;
    align-items: center; /* Вертикальное выравнивание */
    justify-content: center;
    font-size: 16px;
    color: #fff;
    /*transition: width 0.5s ease-in-out;  Плавное расширение блока */
    transition: all 0.3s ease; /* Плавное изменение размеров */
    /* overflow: hidden; Обрезаем лишние элементы */
}

/* Стили текста */
.button-text {
    position: relative;
    margin-right: 5px;
    /*left: 0;
    transition: transform 0.5s ease;  Плавный сдвиг текста */
    text-transform: uppercase;
    font-size: 14px;
}

/* Стили стрелки */
.button-arrow {
    position: relative;
    width: 30px;
    height: 20px;
    filter: invert(1);
    background-image: url(../img/arrow.png);
    background-position:center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease-in-out; /* Плавный переход */
  /*transform-origin: right;  Точка масштабирования — справа */
}

/* Эффект при наведении */
.button-container:hover{
    /*width: 210px; */
     padding-right: 12px; /* Расширение блока вправо */
    display: flex;
    align-items: center; /* Вертикальное выравнивание */
    justify-content: center;
       
}

.button-container:hover .button-arrow{
    margin-left: 5px;
    transform: scaleX(2); /* Увеличение по горизонтали */
}
.numb {
    margin-bottom: 4vw;
    height: 30px;
    width: 30px;
    border: 1px solid #768262;
    color: #DEE4D3;
    cursor: pointer;
    display: flex;
    align-items: center;
    /* Выравнивание по вертикали */
    justify-content: center;
    /* Выравнивание по горизонтали */
}
.numb:hover {
    border: 1px solid #DEE4D3;
    border-radius: 6px;
}
@media (orientation: portrait){
    .product{
        display: block;
    }
    .block-left-product,
    .block-right-product{
        width: 100%;
    }
    .service-icon img{
        width: 20vw;
        max-width: 81px;
        height: auto;
    }
}
/* 4 экран Наши услуги */
.screen-4{
    background-color: #EEEEEE;
    margin: 0 auto;
}
.service {
    margin: 0 auto;
    height: auto;
    /*width: auto;*/
}

.service h2 {
    padding-top: 4vw;
}
.service-content {
    padding: 4vw 0;
    display: grid;
    gap: 1.6vw;
    grid-template-columns: repeat(3, 1fr);
}
/* Адаптивное поведение*/
@media (max-width: 990px) {
    .service-content {
        /*padding: 4vw 3.4vw;*/
        grid-template-columns: repeat(2, 1fr);
    }
    .service-info{
        padding-bottom: 30px;
    }
    .service-info p{
        width: 85%;
    }
    
}
@media (orientation:portrait) {
    .service-content {
        padding: 4vw 6.4vw;
        grid-template-columns: repeat(1, 1fr);
    }
}
.service-element {
    /*height: inherit;*/
   /* margin-bottom: 1.5vw;*/
    position: relative;
    background-color: #F5F5F5;
    color: #000000;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /*height: 95%;*/
}
.service-info{
    
}
.service-info p {
    color: #000000;
    /*height: 6.4vw;*/
    /*padding-bottom: 1.6vw;*/
}
.service-link-a{
    display: flex;
    justify-content: flex-end;
    
}
.service-link {
    /*position: absolute;*/
    width: 60px;
    height: 42px;
    border: 1px solid #000000;
    border-radius: 21px;
    cursor: pointer;
    background-image: url(/img/arrow.png);
    background-position: center center;
    background-repeat: no-repeat;
    /* Избегаем повторения изображения */
    transition: transform 0.5s ease; /* Плавный переход */
    transform-origin: right; /* Точка масштабирования — справа */
}
.service-link:hover {
    background-image: url(/img/arrow-big.png);
    transform: scaleX(1.2);  /*Увеличение по горизонтали */
}
/* 5 экран */
.screen-5{
    background-color: #161616;
}
.reviews{
    height: auto;
	display: flow-root;
}
.reviews h2{
    padding-top: 4vw;
    color: #F5F5F5;
}
.reviews-info{
    margin: 4vw 0;
    /*height: 220px;*/
    /*display: grid;
    gap: 1.6vw;*/
    /* Отступы между блоками */
    /*grid-template-columns: repeat(3, 1fr);*/
    /* 3 колонки по умолчанию */
}
@media (orientation: portrait){
    .reviews-info{
        grid-template-columns: repeat(1, 1fr);
    }
    .reviews-element{
    margin: 10px;
    }
}
/*
.reviews-element{
    padding: 30px;
    background-color: #272727;
}
.reviews-element h3{
    color: #F5F5F5;
    text-transform: uppercase;
}
*/
.arrows{
    padding: 5vh 0 10vh;
    display: flex;
    justify-content: center;
 }
.arrows-container{
    margin: 0 0.4vw;
    height: 38px;
    width: 38px;
    line-height: 38px;
    background-color: #272727;
    display: flex;
    align-items: center;
    /* Выравнивание по вертикали */
    justify-content: center;
    /* Выравнивание по горизонтали */ 
    cursor: pointer;
}
.arrows-1{
    font-size: 38px;
    color: #FFFFFF;
    opacity: 0.5;
}
.arrows-1:hover {
    opacity: 1; 
}

/* 6 экран */
.screen-6{
    background-color: #EEEEEE;
}
.advantages {
    height: auto;
}

.advantages h2 {
    padding-top: 4vw;
    border-top: 1px solid #A1A7B3;
}

.advantages-content {
    padding: 3.4vw 0;
    display: grid;
    gap: 10px;
    /* Отступы между блоками */
    grid-template-columns: repeat(2, 1fr);
    /* 2 колонки по умолчанию */
}
@media (orientation: portrait){
    .advantages h2{
     padding: 4vw 0;   
    }
    .advantages-content{
        padding: 4vw 0;
        grid-template-columns: repeat(1, 1fr);
    }
}

.advantages-element {
    display: grid;
    grid-template-columns: 10px auto;
    gap: 20px;
    color: #000000;
    padding: 20px;
    text-align: left;
}

.advantages-icon {
    padding: 10px;
    width: 100%;
    aspect-ratio: 1 / 1; 
    border: 2px #8AA793;
    border-radius: 35px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8AA793;
}

.advantages-info {
    padding-left: 20px;
}

.advantages-info h3 {
    margin: 0;
    font-size: 22px;
}

.advantages-info p {
    color: #000000;
    font-size: 15px;
    font-family: Helvetica;
    font-weight: 400;
    line-height: 18.4px;
    text-align: left;
}


/* 6 экран Форма обратной связи */

.form-box {
    background-color: #161616;
    color: #FFFFFF;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    height: 750px;
    display: flex;
    justify-content: center;
    /* Центрирует по горизонтали */
    align-items: center;
    /* Центрирует по вертикали */
    flex-direction: column;
    /*background-color: #F5F5F5;*/
    padding: 30px;
    text-align: center;
}

.form-container h2 {
    color: #FFFFFF;
	
}

.form-container p {
    color: #C2C2C2;
}

.my-form {
    width: 80%;
    padding-top: 50px;
}

/* Когда плейсхолдер активен (то есть поле пустое) */
input:placeholder-shown + label {
    opacity: 0;
    /* Label невидим */
}

/* Когда пользователь вводит текст, плейсхолдер исчезает */
input:not(:placeholder-shown) + label {
    opacity: 1;
    /* Label становится видимым */
}

textarea:placeholder-shown + label {
    opacity: 0;
    /* Label невидим */
}

/* Когда пользователь вводит текст, плейсхолдер исчезает */
textarea:not(:placeholder-shown) + label {
    opacity: 1;
    /* Label становится видимым */
}

.my-input-group {
    margin-bottom: 30px;
    position: relative;
}

label {
    display: block;
    color: #FFFFFF;
    font-family: Inter;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
    margin-bottom: 5px;
    /*text-transform: uppercase;*/
    opacity: 0;
    /* Невидимый label по умолчанию */
    transition: opacity 0.3s ease;
    position: absolute;
    top: -30px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #8D8D8D;
    font-size: 16px;
    background-color: transparent;
    color: #FFFFFF;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-bottom: 1px solid #FFFFFF;
}

textarea {
    height: 100px;
    resize: none;
}

.submit-container {
    display: flex;
    justify-content: center;
}

.btn-2 {
    margin: auto;
    font-size: 16px;
    width: 198px;
}

/* Footer */
.footer{
    padding: 0;
    /*height: 92px;*/
    background-color: #161616;
    border-top: 1px solid #727272;
}
.content-footer{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.logo-wrap img{
    height: 30px;
    line-height: 30px;
    /*width: 166px;*/
    filter: invert(1);
}

.footer-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.col-logo img{
    display: flex;
    line-height: 30px;
    justify-content: center;
    align-items: center;
}
.row-icon{
    display: flex;
    line-height: 30px;
    justify-content: center;
    align-items: center;
}
.footer-list-item {
    display: flex;
    line-height: 27px;
    align-items: center;
    justify-content: center;
}
.footer-list-item a{
    padding: 0px 5px;
    display: flex;
    line-height: 30px;
    justify-content: center;
    align-items: center;
    color: #B0B0B0;
    text-decoration: none;
    text-align: center;
    font: 16px Helvetica;
}
.footer-list-item img{
    height: 27px;
    width: 27px;
    padding-right: 5px;
    filter: invert(1) brightness(2); /* Инвертирует цвет иконки */
    
}
@media (orientation: portrait){
    .footer{
        padding: 5vw 0;
    }
    .content-footer{
    height: 100%;
    display: flex;
    flex-direction: column;    
    align-items: center;
    justify-content: center;    
    }
    .row-icon ul{
    flex-direction: column; 
    justify-content: center;    
    align-items: center;    
    }
    .footer-list{
        padding: 0;
    }
    .footer-list-item{
        padding-bottom: 3vw;
    }
    
}
/* медиа запросы (max-width: 1250px)
@media orientation: portrait{
    .content-footer{
    height: 100%;
    display: flex;
    flex-direction: column;    
    align-items: center;
    justify-content: center;
    
}
    .footer-list-item li{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
}
@media (max-width: 1020px){
    
}*/