.section-article {
    padding-top: 96px;
    padding-bottom: 0;
}

.article_header {
    padding-bottom: 96px;
}

.article_thumbnail {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    margin-top: 96px;
}

.article_thumbnail img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article_wrap-main {
    width: 100%;
    max-width: 588px;
    margin-right: auto;
}

.ar .article_wrap-main{
    margin-right: 0;
    margin-left: auto;
}

.article_wrap {
    width: 100%;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.article_title_h1 {
    margin-bottom: 16px;
}

.article_subtitle,
.article_text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.section-article a:not(.btn, .article_menu a) {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition);
}

.section-article a:not(.btn, .article_menu a):hover {
    color: var(--black);
}

.article_text p:not(:last-child) {
    margin-bottom: 24px;
}

.article_img {
    width: 100%;
    max-width: 100%;
    /*height: 440px;*/
    object-fit: cover;
    border-radius: 12px;
}

figure {
    margin-top: 40px;
    margin-bottom: 96px;
}

figcaption {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.25px;
    text-align: center;
    margin-top: 16px;
}

.article_list-title {
    margin-bottom: 16px;
}

.article_list-circle {
    list-style: disc;
    margin-left: 24px;
}
.ar .article_list-circle{
    margin-left: 0;
    margin-right: 24px;
}

.article_list-circle li {
    /*margin-bottom: 16px;*/
}

.article_quote {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.25px;
    background: var(--neutrals-50);
    border-left: 2px solid var(--primary);
    padding: 24px;
}

.mt-8 {
    margin-top: 8px;
}
.mb-8 {
    margin-bottom: 8px;
}
.mt-16 {
    margin-top: 16px;
}
.mb-16 {
    margin-bottom: 16px;
}
.mt-20 {
    margin-top: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mt-24 {
    margin-top: 24px;
}
.mb-24 {
    margin-bottom: 24px;
}
.mt-48 {
    margin-top: 48px;
}
.mb-48 {
    margin-bottom: 48px;
}
.mt-64 {
    margin-top: 64px;
}
.mb-64 {
    margin-bottom: 64px;
}
.mt-96 {
    margin-top: 96px;
}
.mb-96 {
    margin-bottom: 96px;
}

@media (max-width: 1199px) {

    .section-article {
        padding-top: 88px;
    }
    .article_header .container{
        padding-right: 0;
        padding-left: 0;
    }
    .article_wrap-main{
        padding-right: 20px;
        padding-left: 20px;
        max-width: 100%;
    }

    .article_header {
        padding-bottom: 88px;
    }

    .article_thumbnail {
        margin-top: 88px;
        height: 384px;
    }
    .article_thumbnail img{
        border-radius: 0;
    }
    figure {
        margin-top: 36px;
        margin-bottom: 88px;
    }
}

@media (max-width: 640px) {
    .section-article {
        padding-top: 64px;
    }
    .article_wrap-main{
        padding-right: 16px;
        padding-left: 16px;
    }

    .article_header {
        padding-bottom: 64px;
    }

    .article_thumbnail {
        margin-top: 64px;
        height: 235px;
    }

    figure {
        margin-top: 32px;
        margin-bottom: 64px;
    }
}


