.hero {
    position: relative;
    padding-top: 80px;
}

.hero::before {
    width: 100%;
    bottom: 106px;
}


.hero__container {
    display: flex;
    gap: 28px;
}


.hero h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 62px;
    line-height: 115%;
    text-transform: uppercase;
    color: #2c332f;
    margin-bottom: 40px;
}

.hero h1 strong {
    color: #3596ed;
    font-weight: 600;
}

.hero__info .text {
    margin-bottom: 140px;
    max-width: 440px;
}

.hero__info {
    max-width: 492px;
}

.hero__img {
    position: relative;
    display: flex;
}

.hero__ch {
    position: absolute;
    border: 1px solid #535755;
    top: 40px;
    left: 50%;
    transform: translate(-50%);
    max-width: 161px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.news__article {
    display: flex;
    flex: 1 1 25%;
    flex-direction: column;
    max-width: 284px;
    background: #fff;
    border: 1px solid #d3cbd9;
    overflow: hidden;
}

.news__container {
    display: flex;
    gap: 28px;
}

.news__article img {
    display: block;
}


.news__info {
    max-width: 100%;
    padding: 20px 20px 0;
    margin-bottom: 12px;
}

.news__article footer {
    margin-top: auto;
    padding: 0 20px 20px;
}

.news__date {
    display: inline-block;
    margin-bottom: 8px;
}

.news__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #3596ed;
}

.news__link::after {
    display: inline-block;
    content: "";
    width: 22px;
    height: 9px;
    background: url(../img/arro-right-icon.svg);
    transition: transform 0.2s;
}

.news__link:hover::after {
    transform: translateX(5px);
}

.faq {
    position: relative;
}

.faq::before {
    top: 215px;
}

.faq__container {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

details {
    margin-bottom: 20px;
    border-block: 1px solid #d3cbd9;
}

details:last-child {
    margin-bottom: 0;
}

details[open] summary::after {
    transform: rotate(180deg);
}

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    list-style: none;
    padding: 20px;
    cursor: pointer;
    user-select: none;
}

summary::after {
    content: "";
    flex-shrink: 0;
    display: inline-block;
    width: 17px;
    height: 22px;
    background: url(../img/arro-bottom.svg) no-repeat center;
}

summary::-webkit-details-marker {
    display: none;
}

details>p {
    padding: 0 20px 20px;
}



@media (width <=1440px) {
    .hero__img img {
        width: 50%;
    }
}

@media (width <=992px) {
    .hero__container {
        flex-direction: column;
        align-items: center;
    }

    .hero::after {
        display: none;
    }

    .hero__info {
        text-align: center;
        max-width: initial;
    }

    .hero h1 {
        font-size: 52px;
        margin-bottom: 30px;
    }

    .hero__info .text {
        max-width: initial;
        margin-bottom: 30px;
    }


    .news__container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .news__article {
        max-width: 350px;
        flex-basis: 50%;
    }

    .news__article img {
        width: 100%;
    }
    .faq::before {
        display: none;
    }

    .faq__container {
        flex-direction: column-reverse;
        align-items: center;
    }
}

@media (width <=768px) {
    .hero h1 {
        font-size: 50px;
    }

    .news__article {
        max-width: 400px;
    }

}

@media (width <=576px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero__ch {
        max-width: 125px;
        padding: 10px;
        font-size: 14px;
    }

    .hero {
        padding-top: 60px;
    }

    .hero__info {
        max-width: 410px;
    }
    .le-article {
        font-size: 32px;
    }
}
