.full-cta {
    background-color: var(--color-primary-lighter);
    position: relative;
    padding: 50px 0;
}

@media (min-width: 768px) {
    .full-cta {
        padding: 80px 0;
    }

    .full-cta:last-child {
        padding-bottom: calc(80px + 60px);
    }
}

@media (min-width: 1025px) {
    .full-cta {
        padding: 130px 0;
    }

    .full-cta:last-child {
        padding-bottom: calc(130px + 60px);
    }
}

.full-cta .container {
    position: relative;
    z-index: 2;
}

.full-cta__container {
    background-color: var(--color-white);
    box-shadow: 0 3px 30px rgba(186, 186, 171, 0.16);
    padding: 30px 24px 45px;
    border-radius: 30px;
}

@media (min-width: 768px) {
    .full-cta__container {
        display: flex;
        padding: 40px 32px;
    }
}

@media (min-width: 1025px) {
    .full-cta__container {
        border-radius: 50px;
        padding: 76px 116px;
    }
}

.full-cta__content {
    flex: 1;
    text-align: center;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .full-cta__content {
        text-align: left;
        margin: 0;
    }
}

.full-cta__content h3 {
    margin: 0 0 20px;
}

.full-cta__content p {
    margin: 0 0 30px;
}

@media (min-width: 1025px) {
    .full-cta__content h3,
    .full-cta__content p {
        margin: 0 0 25px;
    }
}

.full-cta__image {
    width: 100%;
    margin: 0 auto;
    height: 200px;
}

@media (min-width: 768px) {
    .full-cta__image {
        width: 125px;
        margin-right: 32px;
        height: auto;
        max-height: 200px;
    }
}

@media (min-width: 1025px) {
    .full-cta__image {
        width: 169px;
        margin-right: 62px;
        height: auto;

    }
}

.full-cta__image img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    -o-object-fit: cover;
}