
.section--gift {
    margin: 90px 0 0 0;
}

.section--gift::after {
    content: '';
    width: 50vw;
    height: 100%;
    background: var(--color-primary);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.section--gift .container {
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 20px 20px 0;
}

.section--gift .section__column {
    width: calc(50% - 35px);
}

.section--gift .section__column:nth-child(1) {
}

.section--gift .section__column:nth-child(2) {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 55px calc(55px - clamp(14px, 5%, 25px)) 55px 0;
}

.section--gift .section__image {
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.section--gift .section__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section--gift .section__header .section__title {
    margin: 0 0 45px 0;
    text-transform: uppercase;

}

.section--gift .section__text {
    color: var(--color-white);
}

.section--gift .button--primary {
}








@media all and (max-width: 1340px){
    .section--gift .container {
        border-radius: 0;
    }
}

@media all and (max-width: 1000px){
    .section--gift {
        margin: 50px 0 0 0;
    }
    .section--gift .container {
        flex-direction: column-reverse;
    }
    .section--gift .section__column{
        width: 100%;
    }
    .section--gift .section__column:nth-child(2){
        padding:clamp(14px, 5%, 25px) 0 55px 0
    }
    .section--gift .section__column:nth-child(1){
        padding:0 0 clamp(14px, 5%, 25px) 0;
    }
    .section--gift .section__header .section__title{
        width: 100%;
        text-align: center;
        margin: 0 0 clamp(14px, 5%, 25px)  0;
    }
    .section--gift .section__text{
        width: 100%;
        text-align: center;
    }
    .section--gift .section__controls{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .section--gift .section__controls .button {
        margin: clamp(14px, 5%, 25px)  0 0 0;
    }
}



