.special-features-grid{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;

}
.special-features-grid-row{
    display: flex;
    gap: 20px;
}
.special-features-grid-item{
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.special-features-grid-item__image{
    width: 45%;
}
.special-features-grid-item__content{
    padding: 60px;
    background: #f5f6fb;
}
.special-features-grid-item img{
    display: block;
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.special-features-grid-item h2{
}
.special-features-grid-item p{}


/*comfort*/
.comfort {
}

.comfort-container {
    margin: 0 auto;
    display: flex;
    /* flex-wrap: wrap; */
    gap: 40px;
    padding: 40px 0;
}

.comfort-header {
    padding-bottom: 0;
}

.comfort-slider {
    /* margin: 60px 0; */
    /* height: 100%; */
    display: flex;
    padding-left: 0;
    padding-right: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    max-height: 500px;
}

.comfort-slider img {
    width: 100%;
}


.comfort-left {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 0;
}

.comfort-right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 0;
}


.comfort-text {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #1b2b43;
    padding: 0 0px;
    padding-top: 20px;
}

.comfort-action {
    padding: 0 0px 60px;
    margin-top: auto;
}

.section-kicker {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
}

.toggle-right {
    display: flex;
}

@media (max-width: 768px) {


    .special-features-grid-item h2{}
    .special-features-grid-row{
        flex-direction:column;
    }
    .special-features-grid-item{
        width: 100%;

    }
    .special-features-grid-item__content{padding: 30px;padding-bottom: 20px;}
    .special-features-grid-item__image{
        width: 100%;
    }
    .special-features-grid-row__reverse{flex-direction: column-reverse}

    .comfort-header {
        padding: 10px 24px 0;
    }

    .comfort-text {
        padding: 0px 24px 0;
    }

    .comfort-slider {
        border-radius: 0; /* height: 320px; */
    }

    .comfort-action {
        padding: 0px 24px 40px;
    }


}


