.ffcitc__container--inner {
    display: grid;
    grid-template-rows: 1fr;
    /* gap: 0 6%; */
}

@media screen and (max-width: 991px) {
    .ffcitc__container--inner {
        gap: 0 6%;
    }
}

.ffcitc__container--inner.image-left {
    grid-template-columns: 13fr 12fr;
    grid-template-areas: "image content";
}

@media screen and (max-width: 767px) {
    .ffcitc__container--inner.image-left {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, auto);
        gap: 50px 0;
        grid-template-areas: "image" "content";
    }
}

.ffcitc__container--inner.image-right {
    grid-template-columns: 12fr 13fr;
    grid-template-areas: "content image";
}

@media screen and (max-width: 767px) {
    .ffcitc__container--inner.image-right {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, auto);
        gap: 50px 0;
        grid-template-areas: "image" "content";
    }
}

.ffcitc__image {
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 100%;
    max-width: 100%;
}

.ffcitc__image--side {
    grid-area: image;
    display: flex;
    position: relative;
    width: 100%;
    min-height: 497px;
    align-items: center;
    /* justify-content: flex-end; */
}

@media screen and (max-width: 767px) {
    .ffcitc__image--side {
        min-height: unset;
        max-height: 400px;
    }
}

@media screen and (max-width: 450px) {
    .ffcitc__image--side {
        max-height: 300px;
    }
}

.ffcitc__image--side.image-left {
    justify-content: flex-start;
}

@media screen and (max-width: 767px) {
    .ffcitc__image--side.image-left {
        justify-content: center;
    }
}

.ffcitc__image--side.image-right {
    justify-content: flex-end;
}

@media screen and (max-width: 767px) {
    .ffcitc__image--side.image-right {
        justify-content: center;
    }
}

.ffcitc__image--container {
    position: relative;
    z-index: 2;
    display: flex;
}

.ffcitc__image--container.image-large {
    max-height: 652px;
    max-width: 493px;
}

@media screen and (max-width: 767px) {
    .ffcitc__image--container.image-large {
        max-width: unset;
        max-height: inherit;
    }
}

.ffcitc__image--container.image-small {
    max-height: 432px;
    max-width: 413px;
    width: 80%;
}

@media screen and (max-width: 767px) {
    .ffcitc__image--container.image-small {
        max-width: unset;
        max-height: inherit;
        width: 100%;
    }
}

.ffcitc__image--container.image-left {
    justify-content: flex-end;
}

@media screen and (max-width: 767px) {
    .ffcitc__image--container.image-left {
        justify-content: center;
    }
}

.ffcitc__image--container.image-right {
    justify-content: flex-start;
}

@media screen and (max-width: 767px) {
    .ffcitc__image--container.image-right {
        justify-content: center;
    }
}

.ffcitc__image--background {
    height: 409px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 35px;
}

@media screen and (max-width: 767px) {
    .ffcitc__image--background {
        height: 400px;
    }
}

@media screen and (max-width: 450px) {
    .ffcitc__image--background {
        height: 300px;
    }
}

.ffcitc__image--circle {
    position: absolute;
    bottom: 0;
    width: 63%;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

@media screen and (max-width: 991px) {
    .ffcitc__image--circle {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .ffcitc__image--circle {
        display: none;
    }
}

.ffcitc__image--circle.image-left {
    left: 0;
}

.ffcitc__image--circle.image-right {
    right: 0;
}

.ffcitc__content--side {
    grid-area: content;
    display: flex;
    flex-direction: column;
}

.ffcitc__content--heading {
    margin-bottom: 20px;
}

.ffcitc__content--heading-container {
    margin-bottom: 25px;
}

.ffcitc__content--heading-large {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 4.375rem;
    line-height: 1;
    margin-bottom: 5px;
}

@media screen and (max-width: 991px) {
    .ffcitc__content--heading-large {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 767px) {
    .ffcitc__content--heading-large {
        font-size: 3rem;
    }
}

@media screen and (max-width: 450px) {
    .ffcitc__content--heading-large {
        font-size: 2.5rem;
    }
}

.ffcitc__content--heading-small {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 2.8125rem;
    line-height: 1.53;
}

@media screen and (max-width: 991px) {
    .ffcitc__content--heading-small {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 767px) {
    .ffcitc__content--heading-small {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 450px) {
    .ffcitc__content--heading-small {
        font-size: 1.75rem;
    }
}

.ffcitc__content--buttons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 15px;
}

@media screen and (max-width: 767px) {
    .ffcitc__content--buttons {
        flex-direction: column;
    }
}