.hero {
    position: relative;
}

.hero::after {
    content: '';
    width: 100%;
    height: 48px;
    z-index: -1;
    position: absolute;
    bottom: 106px;
    left: 0;
    background: url(../Imgs/Decoration-large-hero.svg);
}

.hero__container {
    display: flex;
    gap: 28px;
}

.hero__title h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 62px;
    line-height: 1.15;
    text-transform: uppercase;
    color: #2c332f;
    padding-bottom: 40px;
}

.hero__title-text {
    line-height: 1.3;
    color: #535755;
    padding-bottom: 140px;
    max-width: 439px;
    width: 100%;
}

.hero__title h1 strong {
    font-weight: 600;
    color: #3596ed;
}

.hero__imgs {
    display: flex;
    position: relative;
}

.imgs-choose {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 22px;
    border: 1px solid #535755;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    color: #2c332f;
    background: #ffffffe6;
    max-width: 161px;
}

.news-article {
    display: flex;
    flex-direction: column;
    max-width: 284px;
    background-color: #fff;
    border: 1px solid #d3cbd9;
    overflow: hidden;
}

.news-article img {
    display: block;
}

.news-info {
    padding: 20px 20px 0;
    margin-bottom: 12px;
}

.news-date {
    display: inline-block;
    margin-bottom: 8px;
}

.article-text-color {
    color: #2c332f;
}

.news-container {
    display: flex;
    gap: 28px;
}

.news-article footer {
    padding: 0 20px 20px;
    margin-top: auto;
}

.article-link {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #3596ed;
}


.article-link::after {
    content: "";
    display: inline-flex;
    width: 22px;
    height: 9px;
    background-image: url(../Imgs/Arrow_right.svg);
    transition: transform 0.2s;
}

.article-link:hover::after {
    transform: translateX(5px);
}

.FAQ {
    position: relative;
}

.FAQ::before {
    content: '';
    width: calc(50% - 250px);
    height: 48px;
    z-index: -1;
    position: absolute;
    top: 215px;
    background: url(../Imgs/Decoration-large-hero.svg);
}

.FAQ__container {
    display: flex;
    gap: 28px;
}

details {
    margin-bottom: 20px;
    border-block: 1px solid #d3cbd9;
    transition-property: all 0.7s;
}

details[open] summary::after {
    transform: rotate(180deg);
    transition: all 0.7s;
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    list-style: none;
    cursor: pointer;
    padding: 20px;
}

summary::after {
    content: '';
    display: inline-block;
    width: 17px;
    height: 23px;
    background: url(../Imgs/Arrow_top.svg) no-repeat center / cover;
    transform: rotate(0deg);
    transition: all 0.7s;
}

summary::-webkit-details-marker {
    /*для того, чтобы стили summary не были ввидны в браузерах */
    display: none;
}

details>p {
    padding: 0 20px;
}











