* {
    background-repeat: no-repeat;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.swiper-pagination-lock {
    display: none;
}

.wrapper {
    width: 100%;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.wrapper--large {
    max-width: 1016px;
}

.responsive-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: var(--responsive-wrapper-max-width, unset);
}

.responsive-wrapper--centered {
    margin-left: auto;
    margin-right: auto;
}

.responsive-wrapper--rounded {
    border-radius: 51%;
    overflow: hidden;
}

.responsive-wrapper--branded-rounding {
    border-radius: 12px;
    overflow: hidden;
}

.responsive-wrapper__image-wrapper {
    position: relative;
    padding-top: calc(var(--aspect-ratio, 1) * 100%);
}

.responsive-wrapper__image-wrapper--fluid {
    min-height: 100%;
}

.responsive-wrapper__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.responsive-wrapper__image.lazyload, .responsive-wrapper__image.lazyloading {
    visibility: hidden;
    opacity: 0;
}

.responsive-wrapper__image.lazyloaded {
    visibility: visible;
    opacity: 1;
}

.responsive-wrapper__image--contain {
    -o-object-fit: contain;
    object-fit: contain;
}

.responsive-wrapper__image--rounded {
    border-radius: 51%;
}

.header__wrapper {
    display: flex;
    justify-content: center;
    padding-top: 2px;
    padding-bottom: 2px;
}

.header__logo {
    width: 250px;
}

@media only screen and (min-width: 1024px) {
    .header__wrapper {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .header__logo {
        width: 352px;
    }
}

body {
    font-family: "PT Serif", serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

h1 {
    font-family: "PT Serif", serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h2 {
    font-family: "PT Serif", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1875;
    margin-top: 28px;
    margin-bottom: 16px;
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
}

p:last-child {
    margin-bottom: 0;
}

ul, ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

ul:last-child, ol:last-child {
    margin-bottom: 0;
}

li {
    padding-bottom: 12px;
}

li:last-child {
    padding-bottom: 0;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

@media only screen and (min-width: 768px) {
    body {
        font-size: 20px;
    }

    h1 {
        font-size: 36px;
        margin-bottom: 24px;
    }

    h2 {
        font-size: 32px;
        margin-top: 32px;
        margin-bottom: 20px;
    }

    p {
        margin-bottom: 16px;
        line-height: 1.6;
    }

    ul, ol {
        margin-bottom: 16px;
    }
}

.article-intro {
    margin-bottom: 24px;
    color: #fff;
    background-color: #4064A5;
}

.article-intro__wrapper {
    padding-top: 32px;
    padding-bottom: 32px;
}

.article-intro__publish-title {
    font-size: 16px;
    font-weight: 700;
}

.article-intro__publish-date {
    font-size: 14px;
    line-height: 1.428571428571429;
}

.article-intro__author-title {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 700;
}

.article-intro__author-wrapper {
    margin-top: 24px;
}

.article-intro__author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.article-intro__author-image {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.article-intro__author-details h3 {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.article-intro__author-details p {
    font-size: 14px;
    margin: 0;
}

.article-intro__image {
    margin-top: 24px;
}

.article-intro__image img {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .article-intro__wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .article-intro__author {
        margin-top: 10px;
    }

    .article-intro__image {
        margin-top: 28px;
    }

    .article-intro__author-wrapper {
        margin-top: 28px;
    }
}

@media only screen and (min-width: 1024px) {
    .article-intro {
        margin-bottom: 48px;
    }
}

.article-content {
    padding: 0;
    margin-top: 16px;
    overflow: hidden;
}

.article-content__image {
    margin: 12px 0;
}

.article-content__image img {
    width: 100%;
}

.article-content__study {
    position: relative;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 20px 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    background: rgba(64, 100, 165, 0.20);
}

.article-content__study-content {
    font-weight: 400;
}

.article-content__study-content p {
    line-height: inherit;
}

.article-content__study-icon {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 40px;
    height: 40px;
    z-index: 1;
}

.article-content__blocks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.article-content__block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 12px;
    background: #4064A5;
    color: #fff;
}

.article-content__block:nth-child(even) {
    background: rgba(64, 100, 165, 0.20);
    color: #000;
}

.article-content__block-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 51%;
    overflow: hidden;
}

.article-content__block-icon img {
    width: 100%;
    height: 100%;
}

.article-content__block-content {
    font-size: 15px;
}

.article-content__block-content h3 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

@media only screen and (min-width: 768px) {
    .article-content {
        margin-top: 20px;
    }

    .article-content__image {
        margin: 16px 0;
    }

    .article-content__block {
        gap: 24px;
        padding: 24px 20px;
    }

    .article-content__block-icon {
        width: 100px;
        height: 100px;
    }

    .article-content__block-content {
        font-size: 18px;
    }

    .article-content__block-content h3 {
        margin-bottom: 20px;
        font-size: 20px;
    }
}

@media only screen and (min-width: 1024px) {
    .article-content__study {
        margin-top: 60px;
        padding: 27px 40px;
        font-size: 20px;
    }

    .article-content__study-icon {
        top: -40px;
        right: 27px;
        width: 60px;
        height: 60px;
    }
}

.cta-button {
    display: block;
    background-color: #4064A5;
    color:  #fff;
    text-align: center;
    padding: 18px 12px;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    border-radius: 4px;
    font-weight: 700;
    line-height: 1;
    margin: 28px auto;
    box-shadow: 0 0 18px -11px #333;
    transition: opacity 0.25s;
}

.cta-button:hover {
    opacity: 0.9;
}

@media only screen and (min-width: 768px) {
    .cta-button {
        padding: 22px 40px;
        font-size: 20px;
        margin: 36px auto;
        max-width: 399px;
    }
}

.product-offer {
    position: relative;
    margin-top: 58px;
    margin-bottom: 24px;
}

.product-offer__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 32px;
    background: #FCF8F7;
    z-index: 1;
}

.product-offer::before {
    content: "";
    position: absolute;
    top: -34px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% - 78px);
    background: #D9E0ED;
    z-index: 1;
}

.product-offer__image {
    display: block;
    width: 100%;
    max-width: 256px;
    align-self: center;
}

.product-offer__title {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.product-offer__button {
    margin: 24px 0 0;
    max-width: unset;
}

@media only screen and (min-width: 768px) {
    .product-offer__wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 20px 32px;
        background: #FCF8F7;
        z-index: 1;
    }

    .product-offer::before {
        left: -35px;
        width: calc(100% + 70px);
    }

    .product-offer__image {
        order: 1;
    }

    .product-offer__title {
        font-size: 24px;
    }

    .product-offer__button {
        max-width: 340px;
        margin: 32px 0 0;
    }
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.reviews__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 16px;
    margin-top: 30px;
    background: rgba(64, 100, 165, 0.20);
}

.reviews__item-quote-icon {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 40px;
    height: 40px;
    z-index: 1;
}

.reviews__item-image {
    width: 100%;
}

.reviews__item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-self: center;
}

.reviews__item-quote {
    font-size: 17px;
    line-height: 1.4;
    hyphens: auto;
    word-break: break-word;
    font-style: italic;
    font-weight: 400;
}

.reviews__item-quote p {
    line-height: inherit;
}

.reviews__item-author-name {
    margin-top: 12px;
    font-weight: 700;
    font-size: 16px;
}

@media only screen and (min-width: 768px) {
    .reviews__item {
        flex-direction: row;
        align-items: flex-start;
    }

    .reviews__item-image {
        max-width: 286px;
    }

    .reviews__item-content {
        padding: 24px 0;
    }
}

@media only screen and (min-width: 1024px) {
    .reviews__item-quote-icon {
        right: 45px;
        width: 60px;
        height: 60px;
    }

    .reviews__item-quote {
        font-size: 20px;
    }

    .reviews__item-author-name {
        margin-top: 24px;
        font-size: 18px;
    }
}

@media only screen and (min-width: 1200px) {
    .reviews__item {
        gap: 32px;
        padding: 30px;
    }
}

.custom-slider {
    position: relative;
}

.custom-slider__arrow {
    position: absolute;
    top: 50%;
    display: flex;
    z-index: 1;
    transform: translateY(-50%);
    padding: 2px 7px;
    cursor: pointer;
}

.custom-slider__arrow svg {
    width: 15px;
    height: auto;
}

.custom-slider__arrow.swiper-button-disabled {
    display: none;
}

.custom-slider__arrow--next {
    right: 13px;
}

.custom-slider__arrow--previous {
    left: 13px;
}

.custom-slider__arrow--rebranding-plain {
    position: absolute;
    top: 50%;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 51%;
    background-color: #BF9983;
    transition-property: background-color;
    transition-duration: .25s;
}

.custom-slider__arrow--rebranding-plain:hover {
    background-color: #DAC3B7;
}

.custom-slider__arrow--rebranding-plain svg {
    width: 40px;
}

.custom-slider__arrow--rebranding-plain.custom-slider__arrow--next {
    right: 0;
    transform: translate(50%, -50%);
}

.custom-slider__arrow--rebranding-plain.custom-slider__arrow--previous {
    left: 0;
    transform: translate(-50%, -50%);
}

.custom-slider__static-pagination {
    width: 100%;
    margin-top: 10px;
    text-align: center;
}

.custom-slider__static-pagination:empty {
    display: none;
}

.custom-slider__static-pagination .swiper-pagination-bullet {
    margin-left: 4px;
    margin-right: 4px;
}

.custom-slider__static-pagination .swiper-pagination-bullet-active {
    background-color: #484847;
}

.custom-slider__static-pagination--rebranding {
    margin-top: 16px;
    min-height: 7px;
    line-height: 0;
}

.custom-slider__static-pagination--rebranding:empty {
    display: none;
}

.custom-slider__static-pagination--rebranding .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    border: 1px solid var(--pagination-bullet-color, #BF9983);
    margin-left: 3.5px;
    margin-right: 3.5px;
    background-color: transparent;
    opacity: 1;
}

.custom-slider__static-pagination--rebranding .swiper-pagination-bullet-active {
    background-color: var(--pagination-bullet-color, #BF9983);
}

.custom-slider__static-pagination--rebranding-medium {
    min-height: 10px;
}

.custom-slider__static-pagination--rebranding-medium .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin-left: 5px;
    margin-right: 5px;
}

@media only screen and (min-width: 1024px) {
    .custom-slider__static-pagination--rebranding {
        margin-top: 32px;
        min-height: 10px;
    }

    .custom-slider__static-pagination--rebranding.swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin-left: 5px;
        margin-right: 5px;
    }
}

@media only screen and (min-width: 1200px) {
    .custom-slider__arrow--next {
        right: -37px;
    }

    .custom-slider__arrow--previous {
        left: -37px;
    }

    .custom-slider__arrow svg {
        width: 21px;
    }

    .custom-slider__arrow--rebranding-plain svg {
        width: 40px;
    }
}

@media only screen and (min-width: 1440px) {
    .custom-slider__arrow--next {
        right: -67px;
    }

    .custom-slider__arrow--previous {
        left: -67px;
    }
}

.image-link {
    display: block;
}

.footer-note {
    color: #5C6673;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.78643;
}

/* Footer */
.footer {
    background-color: #4064A5;
    color:  #fff;
    padding: 20px 0;
    margin-top: 50px;
    font-family: Inter, sans-serif;
    text-align: center;
}

.footer__wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer__link {
    color:  #fff;
    text-decoration: none;
}

.footer__desktop-line {
    display: none;
}

@media only screen and (min-width: 768px) {
    .footer__desktop-line {
        display: inline;
    }

    .footer__wrapper {
        display: block;
    }
}