/* Загальні стилі */
.container {
    max-width: 82%; /* Оптимальна максимальна ширина */
    margin: 0 auto; /* Центрування контейнера */
    padding: 0 20px; /* Відступи всередині контейнера */
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Стилі для заголовка (header) */
header {
    background-color: #fff;
    border-bottom: 2px solid #e0e0e0;
    padding: 15px 20px;
    border-radius: 10px;
}

/* Лого */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo__image {
    margin-right: 10px;
    max-width: 70px;
}

/* Навігаційне меню */
.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.menu__item {
    margin: 0;
}

.menu__link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 12px;
    transition: background-color 0.3s, color 0.3s;
}

.menu__link:hover {
    background-color: #4CAF50;
    color: #fff;
    border-radius: 5px;
}

.burder{
    display: none;
    background-color: rgba(0, 0, 0, 0.2);
	position: relative;
	width: 40px;
	height: 30px;
    z-index: 2;

	flex-direction: column;
	justify-content: space-around;
    padding: 2px 2px 2px 3px;
	border-radius: 5px;
	cursor: pointer;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.burder__line{
    width: 100%;
	height: 3px;
	border-radius: 5px;
	background-color: #fff;
	transition: transform 0.2s ease-out;
	-webkit-transition: transform 0.2s ease-out;
	-moz-transition: transform 0.2s ease-out;
	-ms-transition: transform 0.2s ease-out;
	-o-transition: transform 0.2s ease-out;
}

.burder.active .burder__line:nth-child(1){
    background-color: #000000;
	transform: scale(0.9) rotateZ(-45deg) translate(-6px, 4px);
}

.burder.active .burder__line:nth-child(2){
    display: none;
}

.burder.active .burder__line:nth-child(3){
    background-color: #000000;
	transform: scale(0.9) rotateZ(45deg) translate(-6px, -4px);
}

@media (max-width: 768px) {

    .burder{
        display: flex;
    }

    .header__nav {
        align-items: center;
        gap: 10px;
    }


    .menu {
        flex-direction: column;
        width: 100%;
        position: absolute;
        left: -200%;
        background-color: #ffffff;
        height: 100vh;
        transition: all .3s ease;
        top: 0;
        padding: 100px 20px 20px 20px;
        z-index: 1;

    }

    .menu.open{
        left: 0;
    }

    .menu__item {
        margin-left: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .menu__link {
        display: block;
        padding: 10px 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }
}



/* Секція Hero */
.hero__section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 50px;
    box-sizing: border-box;
}

.hero__sectionimg {
    margin-top: 30px;
    background-image: url('/img/img.jpg'); /* Підстав свій шлях до зображення */
    background-size: cover;
    background-position: right; /* За замовчуванням позиція зображення справа */
}

/* Для мобільних пристроїв */
@media (max-width: 768px) {
    .hero__section {
        flex-direction: column; /* Вертикальне вирівнювання елементів */
        padding: 0 20px; /* Зменшені відступи */
    }

    .hero__sectionimg {
        background-position: center; /* Права сторона по центру */
    }
}


/* Блок з текстом */
.hero__block {
    background-color: rgba(0, 0, 0, 0.3); /* Прозорий темний фон */
    padding: 20px; /* Відступи всередині блоку */
    border-radius: 10px;
    max-width: 50%; /* Обмежуємо ширину блоку тексту */
    color: #fff; /* Білий текст */
}

.hero__title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero__sub-title {

    font-size: 24px;
    margin-bottom: 30px;
}

.hero__text {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Форма */
.hero__form {
    max-width: 320px; /* Обмежуємо ширину форми */
    background-color: rgba(255, 255, 255, 0.9); /* Білий фон з прозорістю */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.form__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.form__sub-title {
    font-size: 18px;
    margin-bottom: 20px;
}

.form__field {
    margin-bottom: 15px;
}

.form__input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form__button {
    width: 100%;
    padding: 15px;
    background-color: #4CAF50; /* Зелена кнопка */
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form__button:hover {
    background-color: #45a049;
}

/* Політика конфіденційності */
.privacy-policy {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.privacy-policy__check {
    margin-right: 10px;
}

.privacy-policy__text {
    font-size: 14px;
}

.privacy-policy__link {
    font-size: 14px;
    color: #4CAF50;
    text-decoration: none;
}

.privacy-policy__link:hover {
    text-decoration: underline;
}

/* Стилі для мобільних пристроїв */
@media (max-width: 768px) {
    .hero__section {
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        height: auto;
    }

    .hero__block, .hero__form {
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
    }

    .hero__form {
        padding: 20px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__sub-title {
        font-size: 16px;
    }

    .form__button {
        font-size: 16px;
    }
}

.aboutus__section {
    padding-top: 300px;
    padding: 50px 20px;
    background-color: #f5f5f5; /* Легкий сірий фон для виділення секції */
}

.aboutus__block {
    display: flex;
    flex-wrap: wrap; /* Забезпечує гарний вигляд на мобільних пристроях */
    align-items: center;
    max-width: 1200px; /* Обмежуємо ширину секції */
    margin: 0 auto;
}

.aboutus__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.aboutus__text-content {
    padding-top: 35px;
    flex: 1;
    padding-right: 20px;
    color: #333; /* Колір тексту */
}

.aboutus__title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}

.aboutus__title::after {
    content: "";
    display: block;
    width: 60px; /* Довжина зеленої лінії */
    height: 4px; /* Висота зеленої лінії */
    background-color: #4CAF50; /* Зелений колір */
    margin-top: 8px;
}

.aboutus__text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.aboutus__image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.aboutus__image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Стилі для мобільних пристроїв */
@media (max-width: 768px) {
    .aboutus__content {
        flex-direction: column;
    }

    .aboutus__text-content {
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .aboutus__title {
        font-size: 24px;
    }

    .aboutus__image {
        margin-bottom: 20px;
    }
}


.questionanswer__section {
    padding: 100px 20px;
    background-color: #f5f5f5; /* Легкий сірий фон для виділення секції */
}

.questionanswer {
    display: flex;
    align-items: center; /* Вирівнює контент по вертикалі */
    justify-content: center; /* Центрує контент по горизонталі */
    /* max-width: 1200px;  */
    /* Обмежуємо ширину секції */
    margin: 0 auto;
    gap: 40px; /* Відстань між блоками */
}

.questionanswer-header {

    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.questionanswer-header::after {
    content: "";
    display: block;
    width: 60px; /* Довжина зеленої лінії */
    height: 4px; /* Висота зеленої лінії */
    background-color: #4CAF50; /* Зелений колір */
    margin-top: 8px;
}

.questionanswer-header h2 {
    font-size: 1.5em;
    color: #333; /* Колір тексту */
}

.questionanswer-item {
    flex: 1;
}

.hw__items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hw__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: #333; /* Колір тексту */
}

.hw__item svg {
    width: 100px;
    height: 100px;
    fill: #4CAF50; /* Зелений колір */
    margin-right: 15px;
}

.hw__item p {
    margin: 0;
}

/* Стилі для мобільних пристроїв */
@media (max-width: 768px) {
    .questionanswer {
        flex-direction: column;
        text-align: center;
    }

    .questionanswer-header {
        margin-bottom: 30px;
    }

    .hw__item {
        flex-direction: column;
        align-items: center;
    }

    .hw__item svg {
        margin-bottom: 10px;
    }
}

.advantages__section {
padding-top: 30px;
}

.advantages__section .row {
    justify-content: space-between;
    align-items: flex-start;
}


.advantages__section .icon {
    width: 64px; 
    height: 32px;
    margin-right: 1px; 
    vertical-align: middle;

}

.advantages__section .f-17 {
    display: flex;
    align-items: center;
    font-size: 18px; 
}

.advantages__section .f-17 svg {
    flex-shrink: 0;
}

.text-primary {
    color: #4CAF50; 
}


.font-weight-normal::after {
    content: "";
    display: block;
    width: 60px; /* Довжина зеленої лінії */
    height: 4px; /* Висота зеленої лінії */
    background-color: #4CAF50; /* Зелений колір */
    margin-top: 8px;
}


/* Основний стиль для секції */
.questionanswer__section {
    /* padding: 20px 0; */
}

.questionanswer {
    text-align: center;
}

.questionanswer-header {
    margin-bottom: 20px;
}

.hw__items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Відстань між елементами */
    list-style: none;
    padding: 0;
    margin: 0;
}

.hw__item {
    flex: 1 1 calc(33.333% - 20px); /* Три елементи в ряд з урахуванням відстані */
    max-width: calc(33.333% - 20px);
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.hw__item svg {
    margin-bottom: 10px;
}

.hw__item p {
    margin: 0;
}

/* Адаптивний дизайн для екранів менше 768px */
@media (max-width: 768px) {
    .hw__item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}











.whyus__section {
    padding-top: 80px;
    /* padding: 20px; */
    text-align: left;
}

.section-header h2 {
    margin-bottom: 20px;
}
.section-header::after {
    content: "";
    display: block;
    width: 60px; /* Довжина зеленої лінії */
    height: 4px; /* Висота зеленої лінії */
    background-color: #4CAF50; /* Зелений колір */
    margin-top: 8px;
}

.stats-section {
    padding-top: 50px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    margin-bottom: 20px;
    flex: 1;
    min-width: 200px; /* Мінімальна ширина для адаптації на мобільних пристроях */
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
}

.stat-line {
    height: 2px;
    background-color: #009926;
    width: 100%;
    max-width: 100px;
    margin: 10px auto;
    opacity: 0.5;
}

.stat-description {
    
    /*font-size: 14px;*/
    color: #555;
}



.questionanswer {
    margin-bottom: 20px; /* Відступ між блоками */
}

.questionanswer-header {
    position: relative; /* Необхідно для позиціонування псевдоелемента */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Вирівнює текст по лівому краю */
}

.questionanswer-header h2 {
    margin: 0; /* Прибрати стандартні відступи заголовка */
}

.questionanswer-header::after {
    content: "";
    display: block;
    width: 60px; /* Довжина зеленої лінії */
    height: 4px; /* Висота зеленої лінії */
    background-color: #4CAF50; /* Зелений колір */
    position: absolute;
    bottom: -10px; /* Відстань між текстом і лінією */
    left: 0; /* Лінія вирівнюється по лівому краю тексту */
}


.form-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 20px;
}

.form-section__image {
    flex: 1;
    text-align: center;
}

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

.form-section__form {
    flex: 1;
    padding: 20px;
}

@media (max-width: 768px) {
    .form-section {
        flex-direction: column;
        text-align: center;
    }

    .form-section__image,
    .form-section__form {
        width: 100%;
    }


}

.flex-wrap{
    flex-wrap: wrap;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-1 { flex: 0 0 8.33333%; max-width: 8.33333%; }
.col-2 { flex: 0 0 16.66667%; max-width: 16.66667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.33333%; max-width: 33.33333%; }
.col-5 { flex: 0 0 41.66667%; max-width: 41.66667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.33333%; max-width: 58.33333%; }
.col-8 { flex: 0 0 66.66667%; max-width: 66.66667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.33333%; max-width: 83.33333%; }
.col-11 { flex: 0 0 91.66667%; max-width: 91.66667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 576px) {
    .col-sm-1 { flex: 0 0 8.33333%; max-width: 8.33333%; }
    .col-sm-2 { flex: 0 0 16.66667%; max-width: 16.66667%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.33333%; max-width: 33.33333%; }
    .col-sm-5 { flex: 0 0 41.66667%; max-width: 41.66667%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-7 { flex: 0 0 58.33333%; max-width: 58.33333%; }
    .col-sm-8 { flex: 0 0 66.66667%; max-width: 66.66667%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.33333%; max-width: 83.33333%; }
    .col-sm-11 { flex: 0 0 91.66667%; max-width: 91.66667%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
    .col-md-1 { flex: 0 0 8.33333%; max-width: 8.33333%; }
    .col-md-2 { flex: 0 0 16.66667%; max-width: 16.66667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.33333%; max-width: 33.33333%; }
    .col-md-5 { flex: 0 0 41.66667%; max-width: 41.66667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.33333%; max-width: 58.33333%; }
    .col-md-8 { flex: 0 0 66.66667%; max-width: 66.66667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.33333%; max-width: 83.33333%; }
    .col-md-11 { flex: 0 0 91.66667%; max-width: 91.66667%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 8.33333%; max-width: 8.33333%; }
    .col-lg-2 { flex: 0 0 16.66667%; max-width: 16.66667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.33333%; max-width: 33.33333%; }
    .col-lg-5 { flex: 0 0 41.66667%; max-width: 41.66667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.33333%; max-width: 58.33333%; }
    .col-lg-8 { flex: 0 0 66.66667%; max-width: 66.66667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.33333%; max-width: 83.33333%; }
    .col-lg-11 { flex: 0 0 91.66667%; max-width: 91.66667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
    .col-xl-1 { flex: 0 0 8.33333%; max-width: 8.33333%; }
    .col-xl-2 { flex: 0 0 16.66667%; max-width: 16.66667%; }
    .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xl-4 { flex: 0 0 33.33333%; max-width: 33.33333%; }
    .col-xl-5 { flex: 0 0 41.66667%; max-width: 41.66667%; }
    .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xl-7 { flex: 0 0 58.33333%; max-width: 58.33333%; }
    .col-xl-8 { flex: 0 0 66.66667%; max-width: 66.66667%; }
    .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xl-10 { flex: 0 0 83.33333%; max-width: 83.33333%; }
    .col-xl-11 { flex: 0 0 91.66667%; max-width: 91.66667%; }
    .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1400px) {
    .col-xxl-1 { flex: 0 0 8.33333%; max-width: 8.33333%; }
    .col-xxl-2 { flex: 0 0 16.66667%; max-width: 16.66667%; }
    .col-xxl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xxl-4 { flex: 0 0 33.33333%; max-width: 33.33333%; }
    .col-xxl-5 { flex: 0 0 41.66667%; max-width: 41.66667%; }
    .col-xxl-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xxl-7 { flex: 0 0 58.33333%; max-width: 58.33333%; }
    .col-xxl-8 { flex: 0 0 66.66667%; max-width: 66.66667%; }
    .col-xxl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xxl-10 { flex: 0 0 83.33333%; max-width: 83.33333%; }
    .col-xxl-11 { flex: 0 0 91.66667%; max-width: 91.66667%; }
    .col-xxl-12 { flex: 0 0 100%; max-width: 100%; }
}
.pr-20{
    padding-right: 20px;
}