.start-order-slide {
    position: relative;
}

.start-order-slide .overlay {
    position: absolute;
    background-color: rgba(0,0,0,.5);
    height: 100%;
    bottom: 0px;
    left: 0;
    width: 100%;
}

.start-order-slide-bg {
    background-image: url('/img/start-order-slide-bg.png');
    background-size: cover;
    background-position: center top;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.start-order-slide-bg .btn {
    position: relative;
    font-size: 26px;
    width: 450px;
    max-width: 80vw;
}


.contact-slide {
    margin-bottom: 120px;
}

.contact-slide-bg {
    position: relative;
    background-image: url('/img/contact-slide-bg.png');
    background-size: cover;
    background-position: center;
    height: 550px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-slide-bg  h2 {
    color: var(--white);
}


.contact-slide-bg .btn {
  width: 200px;
  padding: .6rem;
}

.contact-slide-bg .contact-detail {
    position: absolute;
    left: 44px;
    bottom: -65px;
    width: 335px; 
    height: auto;
}

@media (max-width: 480px) {
    .contact-slide-bg .contact-detail {
        left: 0;
        width: 224px;
    }

    .contact-slide-bg {
        height: 360px;
    }
}

