/* Базові стилі для header */
*{
    font-family: 'Montserrat';
}

body{
        margin: 0;
}

html {
    scroll-behavior: smooth;
}

.site-header {
    
    width: 100%;
        /* на всю ширину */
/*         height: 100vh; */
        display: flex;
        /* для центрування контенту */
        align-items: center;
        /* вертикальне вирівнювання */
        justify-content: center;
        box-sizing: border-box;
}

.about_container, .chomu_container,.cifry_container, .footer_container {
    box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.08);
    /* тінь тільки вгорі */
}

.site-header {
    text-align: center;
    padding: 60px 20px;
	padding-bottom: 0;
	flex-direction: column;
    /* background: linear-gradient(to right, #ffffff 50%, #d3f65b 150%); */
    
    padding-top: 0;

}

.site-header .container {
    max-width: 1100px;
    margin: 0 auto;
}

.header-logo img {
    max-width: 180px;
    height: auto;
  
}

.header-text .site-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0f254d;
    margin-bottom: 10px;
    font-family: 'Montserrat';
}

.header-text .site-description {
    font-size: 16px;
    color: #0f254d;
    line-height: 1.6;
}



.site-header {
    position: relative;
    /* Це дозволить позиціонувати псевдоелемент відносно заголовка */
    overflow: hidden;
    /* Обрізає частину клякси, яка виходить за межі заголовка */
}

.site-header:after {
    content: "";
    /* Обов'язковий параметр для псевдоелемента */
    position: absolute;
        top: -250px;
            right: -250px;
            width: 700px;
            height: 700px;
    /* Розмір клякси по висоті */
    border-radius: 50%;
    /* Створює ідеальну круглу форму */
    background: radial-gradient(circle, #ade302 0%, rgba(173, 227, 2, 0) 70%);
    /* Створює градієнт від заданого кольору до прозорого */
    z-index: -99;
    /* Гарантує, що клякса знаходиться під іншим вмістом, якщо потрібно */
    filter: blur(25px);
    /* Додає ефект "клякси" */
}


/* Галузі */
.galuzi_container{
display: flex;
justify-content: center;


}

.galuzi_block{
    display: flex;
    max-width: 1100px;
    column-gap: 100px;
}

.galuzi_block img{
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    height: 180px;
}

.galuzi_block .block_title{
    background-color: #78be20;
        border-radius: 50px;
}

.galuzi_block h2{
    text-transform: uppercase;
        text-align: center;
        color: #fff;
        padding: 5px 0;
        font-size: 22px;
}

.block_desc_text{
    background-color: #fff;
        border-radius: 20px;
        position: relative;
        top: -20px;
        z-index: 999;
        box-shadow: 0px 3px 12px #00000038;
        padding: 10px 24px;
        text-align: center;
            padding-bottom: 25px;
}

.block_desc_text p{
    margin-bottom: 20px;
	font-size: 15px;
}

 .btn{
    background-color: #78be20;
        padding: 10px 30px;
        color: #fff;
        border-radius: 50px;
        text-decoration: none;
}

.btn{
    transition: all 0.3s ease;
    border: 2px solid #78be20;
    text-transform: uppercase;
    font-size: 14px;
}
.btn:hover{
    color: #78be20;
    border: 2px solid #78be20;
        background-color: #ffffff;
}

.btn_div{
    
    display: flex;
    justify-content: center;
    margin-top: 10px;

        padding-bottom: 70px;
}

.btn_detal{
    font-weight: 700;

    
    width: 100px;
    height: 100px;
    text-align: center;
    padding: 0;
font-size: 70px;
    border-radius: 50%;
}

/* Про нас */



.about_block{
    display: flex;
        column-gap: 20px;
}

.block_big{
    padding-left: 70px;
    flex: 2;
}



.block_small{
    flex: 1;
}

/* .block_small img{
    max-width: 470px;
} */



.number span{
    font-weight: 600;
    font-size: 16px;
}



.about_numbers {
    display: flex;
    flex-direction: column;
    gap: 80px;
    /* відстань між рядами */
}

.numbers_top,
.numbers_bottom {
    display: flex;
    gap: 80px;
    /* відстань між блоками в ряду */
}

.number {
    flex: 1;
    /* щоб усі мали однакову ширину */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
        padding-right: 60px;
    box-sizing: border-box;
    padding-left: 0;
}

/* Однакова висота в межах ряду */
.numbers_top,
.numbers_bottom {
    align-items: stretch;
}

.about_container .block_title{
    margin-top: 70px;
}

.h2{
    background-color: #78be20;
        padding: 10px 30px;
        color: #fff;
        border-radius: 50px;
        text-decoration: none;
        width: fit-content;
}


.block_small {
    position: relative;
    display: inline-block;
}

.block_small img {
    display: block;
    width: 100%;
    height: auto;
}

.block_small::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    /* ширина тіні */
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    
    pointer-events: none;
    /* щоб не перекривати клік по зображенню */
}


/* Чому ми */

.chomu_container{
    padding-top: 70px;
}

.chomu_container .blocks{
    display: flex;
        column-gap: 80px;

}

.chomu_container .block{
    text-align: center;
}

.chomu_container .block img{
    max-width: 120px;
}

.chomu_container .block_title{
    padding-left: 70px;
    margin-bottom: 100px;
}

.block .h3{
    color: #78be20;
    text-transform: uppercase;
    font-weight: 600;
}

.blocks{
    max-width: 1200px;
}

.blocks_chomu{
    display: flex;
        justify-content: center;
        padding-bottom: 100px;
}

.chomu_container,.cifry_container, .addres_container, .footer_container{
    position: relative;
    overflow: hidden;
    z-index: 99;
}
.chomu_container:after {
    content: "";
    /* Обов'язковий параметр для псевдоелемента */
    position: absolute;
    top: -250px;
    right: -250px;
    width: 700px;
    height: 700px;
    /* Розмір клякси по висоті */
    border-radius: 50%;
    /* Створює ідеальну круглу форму */
    background: radial-gradient(circle, #ade302 0%, rgba(173, 227, 2, 0) 70%);
    /* Створює градієнт від заданого кольору до прозорого */
    z-index: -99;
    /* Гарантує, що клякса знаходиться під іншим вмістом, якщо потрібно */
    filter: blur(25px);
    /* Додає ефект "клякси" */
}



/* Цифри */
.cifry .block span{
    font-size: 120px;
        font-weight: 900;
}

.cifry .block p{
    font-size: 32px;
        text-transform: uppercase;
}

.cifry{
    display: flex;
        column-gap: 200px;
        justify-content: center;
}
.cifry .block{
width: 370px;
text-align: center;

}

.cifry_block{
    padding: 180px 100px;
}


.cifry_container:after {
    content: "";
    /* Обов'язковий параметр для псевдоелемента */
    position: absolute;
    top: -250px;
    right: -250px;
    width: 700px;
    height: 700px;
    /* Розмір клякси по висоті */
    border-radius: 50%;
    /* Створює ідеальну круглу форму */
    background: radial-gradient(circle, #ade302 0%, rgba(173, 227, 2, 0) 70%);
    /* Створює градієнт від заданого кольору до прозорого */
    z-index: -99;
    /* Гарантує, що клякса знаходиться під іншим вмістом, якщо потрібно */
    filter: blur(25px);
    /* Додає ефект "клякси" */
}

.cifry_container:before {
    content: "";
    /* Обов'язковий параметр для псевдоелемента */
    position: absolute;
    bottom: -350px;
    left: -250px;
    width: 700px;
    height: 700px;
    /* Розмір клякси по висоті */
    border-radius: 50%;
    /* Створює ідеальну круглу форму */
    background: radial-gradient(circle, #ade302 0%, rgba(173, 227, 2, 0) 70%);
    /* Створює градієнт від заданого кольору до прозорого */
    z-index: -99;
    /* Гарантує, що клякса знаходиться під іншим вмістом, якщо потрібно */
    filter: blur(25px);
    /* Додає ефект "клякси" */
}

/* Галерея */

.gallery_block {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 колонок рівної ширини */
    gap: 10px;
    padding: 10px;
    /* відстань між зображеннями */
}

.gallery_block img {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* робить квадратне зображення незалежно від ширини */
    object-fit: cover;
    /* обрізає, щоб не спотворювати */
    border-radius: 4px;
    /* необов'язково */
}


/* Адреси */

.li_adress ul {
    list-style: none;
    /* прибираємо стандартну крапку */
    margin: 0;
    padding: 0;
    position: relative;
}

.li_adress ul li {
    position: relative;
    padding-left: 25px;
    /* відступ під кружечок */
    margin-bottom: 20px;
    /* відстань між пунктами */
}

.li_adress ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    /* щоб кружечок був по центру тексту */
    width: 14px;
    height: 14px;
    background-color: #78be20;
    border-radius: 50%;
    z-index: 2;
}

.li_adress ul li::after {
    content: "";
    position: absolute;
    left: 6px;
    /* по центру кружечка */
    top: 16px;
    /* від нижнього краю кружечка */
    width: 2px;
    height: 30px;
    background-color: #78be20;
    z-index: -99;
}

/* щоб останній li не мав лінії вниз */
.li_adress ul li:last-child::after {
    display: none;
}

.adresy_block{
    display: flex;
}
.addreses{
    flex: 1;
    z-index: 99;
}

.addres_container{
    padding-top: 70px;
}

.addres_container:after {
    content: "";
    /* Обов'язковий параметр для псевдоелемента */
    position: absolute;
    top: -250px;
    right: -250px;
    width: 700px;
    height: 700px;
    /* Розмір клякси по висоті */
    border-radius: 50%;
    /* Створює ідеальну круглу форму */
    background: radial-gradient(circle, #ade302 0%, rgba(173, 227, 2, 0) 70%);
    /* Створює градієнт від заданого кольору до прозорого */
    z-index: -99;
    /* Гарантує, що клякса знаходиться під іншим вмістом, якщо потрібно */
    filter: blur(25px);
    /* Додає ефект "клякси" */
}

.addres_block{
padding: 0 50px;
}

.addreses p{
    margin: 0;
    margin-bottom: 5px;
    font-weight: 600;
}

.adres_title{
    font-weight: 600;
    color: #041e42;
}

.addreses a, .addreses p{
color: #041e42;
text-decoration: none;
}

.addres_containerб {
    padding-top: 70px;
}


/* Футер */

.social_icons {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.social_icons a svg {
    width: 24px;
    height: 24px;
    color: #fff;
    /* білий колір, можна змінити */
    transition: color 0.3s;
}



.footer_container{
    margin-top: 70px;
    padding: 0 50px;
}

.footer_info{
    display: flex;
        justify-content: end;
        padding-top: 50px;
        padding-bottom: 100px;
        padding-right: 200px;
}


.footer_container:before {
    content: "";
    /* Обов'язковий параметр для псевдоелемента */
    position: absolute;
    bottom: -250px;
    left: -250px;
    width: 700px;
    height: 700px;
    /* Розмір клякси по висоті */
    border-radius: 50%;
    /* Створює ідеальну круглу форму */
    background: radial-gradient(circle, #ade302 0%, rgba(173, 227, 2, 0) 70%);
    /* Створює градієнт від заданого кольору до прозорого */
    z-index: -99;
    /* Гарантує, що клякса знаходиться під іншим вмістом, якщо потрібно */
    filter: blur(25px);
    /* Додає ефект "клякси" */
}

.footer_text p{
    font-size: 18px;
    font-weight: 600;
}

.footer_text a{
    color: #0f254d;
    text-decoration: none;
}

.footer_text p, .cifry span, .cifry p, .blocks_chomu p, .number span, .number p, .block_desc_text p, .site-description{
    color: #0f254d;
}


.block_desc_text p{
    height: 100px;
}

.footer_container{
    padding-top: 70px;
}


.li_adress a,
.footer_text a {
    transition: color 0.3s ease;
    position: relative;
    text-decoration: none;
    /* Прибираємо стандартне підкреслення */
}

.li_adress a::after,
.footer_text a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #78be20;
    transition: width 0.3s ease;
}

.li_adress a:hover::after,
.footer_text a:hover::after {
    width: 100%;
}

.social_icons i{
    color: #0f254d;
    transition: color 0.3s ease;
}

.social_icons i:hover {
    color: #78be20;
   
}

/* Мобільні стилі */

@media (max-width: 900px) {

.galuzi_block{
    flex-direction: column;
        padding: 0 20px;
}

.btn_div{
    padding-left: 0;
        text-align: center;
}

.block_big {
    padding: 0 20px;
}

.about_numbers {
    gap: 30px;
}

.numbers_top {
    flex-direction: column;
    gap: 30px;
}



.numbers_top .number:first-child {
    padding-right: 0;
}

.numbers_bottom {
    flex-direction: column;
    gap: 30px;
}

.block_small {
    display: none;
}

.chomu_container {
    padding: 0 20px;
}

.chomu_block .block_title {
    padding: 0;
    display: flex;
    justify-content: center;
    /* text-align: center;  — закоментовано у твоєму коді */
}

.blocks_chomu .blocks {
    flex-direction: column;
}

.cifry_block {
    padding: 0 20px;
}

.cifry {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cifry .block span {
    font-size: 80px;
}

.cifry .block p {
    font-size: 25px;
}

.gallery_block{
    grid-template-columns: repeat(2, 1fr);
}

.adresy_block{
    flex-direction: column;
}
.addres_block, .footer_container{
    padding: 0 20px;
}

.footer_info{
    padding: 0;
        justify-content: left;
}
.footer_container{
    padding: 20px;
}
.cifry_container{
    padding: 40px 20px;
}

}





/* Початковий стан */
.galuzi_block .block {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    flex: 1;
}

/* Коли додається клас active */
.galuzi_block .block.active {
    opacity: 1;
    transform: translateY(0);
    
}