a.get-started-link {
    position: absolute;
    right: 32px;
    top: 108px;
    z-index: 999;
    opacity: .8;
    text-decoration: none;
}

@media screen and (max-width: 750px) {
    a.get-started-link {
        right: 0;
        max-width: 480px;
        width: 100%;
    }
}

a.get-started-link:hover {
    opacity: 1;
}

.get-started-idezign {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    font-size: 21px;
}

@media screen and (max-width: 750px) {
    .get-started-idezign {
        flex-direction: column;
        font-size: 16px;
    }
}

#youre-designer,
#get-started {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 24px;
}

@media screen and (max-width: 750px) {

    #youre-designer,
    #get-started {
        align-items: center;
        justify-content: center;
        padding: 6px 24px !important;
    }
}

#youre-designer {
    background: white;
}

#youre-designer strong {
    padding-right: 8px;
}

@media screen and (max-width: 750px) {
    #youre-designer strong {
        padding-right: 6px;
    }
}

#youre-designer img {
    height: 42px;
    width: auto;
    padding-left: 12px;
}

@media screen and (max-width: 750px) {
    #youre-designer img {
        height: 32px;
        width: auto;
        padding-left: 8px;
    }
}

#get-started {
    background: #6caedf;
    color: white;
}

@media screen and (max-width: 750px) {
    .banner {
        padding-top: 80px;
    }
}

.banner-bottom {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .banner-bottom {
        height: auto;
        padding: unset;
        bottom: 0;
    }
}

.banner-headline {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    padding: 24px;
    gap: 64px;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .banner-headline {
        padding: 8px 16px;
    }
}

.banner-headline img.anniversary-logo {
    width: 200px;
    height: auto;
}

@media screen and (max-width: 750px) {
    .banner-headline img.anniversary-logo {
        display: none;
    }
}

div.banner-text {
    text-align: center;
}

@media screen and (max-width: 750px) {
    .banner-text {
        font-size: 21px;
        line-height: 1.2;
    }

}

a.find-sofa {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
}

@media screen and (max-width: 750px) {
    a.find-sofa {
        display: none;
    }
}

div.find-btn {
    position: relative;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

img.find-img {
    position: absolute;
    width: 55%;
}

img.sofa-img {
    width: 100%;
}

span.find-text {
    font-size: 21px;
    width: 100%;
    display: block;
    text-align: center;
}

.swiper-slide img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.welcome-footer {
    background: white;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 64px;
    height: 320px;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    .welcome-footer {
        flex-direction: row;
        gap: unset;
        flex-wrap: wrap;
        height: auto;
    }
}

.welcome-footer img {
    min-width: 30%;
    width: 30%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    .welcome-footer img {
        width: 50%;
        min-width: 240px;
        order: 2;
        flex-grow: 1;
        aspect-ratio: 16/9;
    }
}

.welcome-footer iframe {
    width: 30%;
    min-width: 30%;
    height: 100%;
}

@media screen and (max-width: 1200px) {
    .welcome-footer iframe {
        width: 50%;
        min-width: 240px;
        order: 2;
        flex-grow: 1;
        aspect-ratio: 16/9;
    }
}

.welcome-text {
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .welcome-text {
        padding: 0 24px;
        width: 100%;
        order: 1;
    }
}

/* SLIDER */
.glide {
    width: 100%;
    height: 100%;
}

.glide__track {
    width: inherit;
    height: inherit;
}

.glide__slides {
    transform: translate3d(0, 0, 0) !important;
    width: inherit;
    height: inherit;
}

.glide__slide {
    position: absolute;
    top: 0;
    left: 0;
    order: 2;
    opacity: 0;
    transition: opacity 1250ms ease-in-out;
}

.glide__slide.glide__slide--active {
    position: relative;
    order: 1;
    opacity: 1;
    z-index: 1;
}

.glide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}