.Why_us {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(4.3px);
    background: rgb(56, 56, 56);
}

.Why_us_title_nad {
    color: rgb(37, 89, 146);
    font-size: 16px;
    font-weight: 250;
    line-height: 20px;
    text-align: left;
    text-transform: uppercase;
    padding-top: 60px;
}

.Why_us_title {
    color: rgb(255, 255, 255);
    font-size: 54px;
    font-weight: 600;
    line-height: 66px;
    text-align: left;
    text-transform: uppercase;
    padding-top: 60px;
}

.Why_us_block {
    margin-top: 100px;
}

.Why_us_block_too {
    display: flex;
    margin: 0 180px 50px 180px;
    align-items: center;
}

.Why_us_block_text {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    margin-right: 50px;
    margin-left: 50px;
}

.Why_us_block_right img,
.Why_us_block_left img {
    width: 100%;
    max-width: 600px;
    border-radius: 25px;
}

.Why_us_block_text_count {
    color: rgb(226, 180, 59);
    font-size: 54px;
    font-weight: 900;
    line-height: 66px;
    text-align: left;
    margin-right: 24px;
}

.Why_us_block_left {
    width: 50%;
}

.Why_us_block_right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Why_us_block_text_right_block_title {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-size: 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    margin-bottom: 12px;
}

.Why_us_block_text_right_block_text {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

@media (max-width: 1700px) {
    .Why_us_block_too {
        margin: 0 90px 50px 90px;
    }
}

@media (max-width: 1550px) {
    .Why_us_block_too {
        margin: 0 90px 50px 90px;
    }

    .Why_us {
        margin: 0;
    }
}

@media (max-width: 1200px) {
    .Why_us_block_too {
        margin: 0 15px 50px 15px;
    }
}

@media (max-width: 1100px) {
    .Why_us_block_too {
        margin: 0 15px 50px 15px;
    }

    .error_dispay_img {
        flex-direction: column;
    }

    .error_dispay_img_2 {
        flex-direction: column-reverse;
    }

    .Why_us_block_left,
    .Why_us_block_right {
        width: 70%;
    }
}

@media (max-width: 700px) {
    .Why_us_block_left,
    .Why_us_block_right {
        width: 85%;
    }
}

@media (max-width: 700px) {
    .Why_us_title {
        font-size: 40px;
        text-align: center;
    }

    .Why_us_block_text {
        margin-right: 0;
        margin-left: 0;
    }
}

.Why_us_block_text {
    opacity: 0; /* Початкова непрозорість */
    transform: translateX(-100px); /* Зсув вліво */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Анімаційні переходи */
}

.Why_us_block_text.visible {
    opacity: 1; /* Фінальна непрозорість */
    transform: translateX(0); /* Скінчений зсув */
}

/* Додаткові стилі для кращого вигляду */
.Why_us_block_text_count {
    font-weight: bold;
    font-size: 54px;
}