.fguarantee {
    position: relative;
    z-index: 1;
    padding: clamp(36px, 6vw, 100px) 0 0;
    background: #EAEAEA;
}

.fguarantee:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 274px;
    background: #fff;
    width: 100%;
}

.fguarantee__top {
    display: grid;
    grid-template-columns: minmax(0, 42fr) minmax(0, 57fr);
    gap: clamp(24px, 3vw, 64px);
    align-items: start;
}

.fguarantee__title {
    margin: 0;
    text-wrap: balance;
}

.fguarantee__title .accent,
.fguarantee__title b,
.fguarantee__title strong {
    color: var(--gold);
    font-weight: inherit;
}

.fguarantee__features {
    margin-top: 24px;
    display: grid;
    gap: clamp(20px, 2.5vw, 28px);
}

.fguarantee__feature-icon {
    display: inline-flex;
    height: clamp(36px,3vw,40px);
    margin-bottom: clamp(8px, 1vw, 12px);
}

.fguarantee__feature-icon img {
    width: 100%;
    height: auto;
}

.fguarantee__feature-text {
    font-size: 20px;
    max-width: 404px;
}

.fguarantee__media {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}

.fguarantee__photo {
    grid-area: 1 / 1;
}

.fguarantee__photo--1 {
    justify-self: start;
    width: 77%;
}

.fguarantee__photo--2 {
    justify-self: end;
    width: 75%;
    margin-top: 26.5%;
}

.fguarantee__photo-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.fguarantee__photo--1 .fguarantee__photo-img {
    aspect-ratio: 330 / 220;
}

.fguarantee__photo--2 .fguarantee__photo-img {
    aspect-ratio: 318 / 182;
}

.fguarantee__cards {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    position: relative;
    z-index: 1;
}

.fguarantee__card:nth-child(even) {
    margin-top: clamp(60px, 6vw, 110px);
}

.fguarantee__card {
    padding: clamp(28px, 4vw, 64px);
    min-height: 541px;
}

.fguarantee__card--accent {
    background: #bf8540;
    color: var(--white);
}

.fguarantee__card--light {
    background: #f4f4f4;
}

.fguarantee__card-icon {
    display: inline-flex;
    width: clamp(40px, 3vw, 44px);
    margin-bottom: 20px;
}

.fguarantee__card-icon img {
    width: 100%;
    height: auto;
}


.fguarantee__card--light .fguarantee__card-title {
    max-width: 524px;
}

.fguarantee__card-text {
    margin-top: clamp(14px, 1.75vw, 27px);
    font-family: 'Futura PT Book', system-ui;
    font-size: 17px;
    line-height: 1.3;
    max-width: 360px;
}

.fguarantee__card--accent .fguarantee__card-text {
    color: #fff;
}

.fguarantee__card--light .fguarantee__card-text {
    color: var(--grey);
    max-width: 440px;
}

.fguarantee__card-link {
    margin-top: clamp(16px, 2vw, 30px);
    font-family: 'Futura PT Book', system-ui;
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--light-grey);
}

.fguarantee__card--accent .fguarantee__card-link {
    color: rgba(255, 255, 255, .8);
}

.fguarantee__card-link:hover {
    color: var(--gold);
}

.fguarantee__card--accent .fguarantee__card-link:hover {
    color: var(--white);
}

@media (width <= 1280px) {
    .fguarantee__card {
        min-height: 350px;
    }
}

@media (width <= 992px) {
    
    .fguarantee__top {
        grid-template-columns: minmax(0, 1fr);
    }

    .fguarantee__media {
        display: none;
    }

    .fguarantee__cards {
        margin-top: 40px;
        grid-template-columns: minmax(0, 1fr);
        margin-left: calc(-1 * var(--container-pad));
        margin-right: calc(-1 * var(--container-pad));
    }

    .fguarantee__card:nth-child(even) {
        margin-top: 0;
    }

    .fguarantee__card {
        padding: 36px var(--container-pad);
        min-height: unset;
    }

    .fguarantee__card-title {
        text-wrap: balance;
    }

    .fguarantee__feature-text,
    .fguarantee__card-text {
        max-width: 640px;
    }

    .fguarantee + .landing-team .landing-team__title br {
        display: none;
    }
}


.fguarantee + .landing-team {
    margin-top: clamp(36px,4vw,56px);
    margin-bottom: 40px;
}