

#carousel .content .img-container {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 16px;
}
#carousel .content .rectangle{
    position: absolute;
    width: 95%;
    height: 75%;
    top: 50%;
    transform: translateY(-50%);
    background: #243F90;
    border-radius: 8px;
}

#carousel .content .desc{
    padding: 16px;
    display: flex;
    align-items: center;
}
@keyframes fadein {
    0%{
        opacity: 0;
    }   
    100%{
        opacity: 1;
    }   
}
#carousel .content .img-container img{
    z-index: 1;
    width: 90%;
    min-width: 320px;
    height: 360px;
    border-radius: 8px;
    animation: fadein 0.5s ease-in-out;
}
#carousel .slide-button .button{
    display: flex;
    gap: 16px;
}

#carousel .slide-button {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
}
#carousel .slide-button .slide{
    display: flex;
    align-items: center;
    gap: 4px;
}

@keyframes slide {
    0% {
        width: 50px;
        background: rgba(67, 67, 67, 0.24);
    }
    100%{
        width: 80px;
        background: #FF5E14;
    }
}
@keyframes slideout {
    0% {
        width: 80px;
        background: #FF5E14;
    }
    100%{
        width: 50px;
        background: rgba(67, 67, 67, 0.24);
        
    }
}
#carousel .slide-button .slide .slider{
    width: 50px;
    height: 4px;
    background: rgba(67, 67, 67, 0.24);
    animation: slideout 0.5s ease-in-out;
    
}
#carousel .slide-button .slide .slider-active{
    width: 80px;
    height: 4px;
    background: #FF5E14;
    animation: slide 0.5s ease-in-out;
}

#carousel .slide-button .button button{
    padding: 24px;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    border: 0px;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}


#why .box{
    padding: 8px;
    /* height: 100%; */
    display: grid;
}

#why .box .content{
    display: flex;
    flex-direction: column;
    background: rgba(67, 67, 67, 0.04);
    border-radius: 16px;
    padding: 32px;
    gap: 32px;
}
#why .box .content img{
    width: 64px;
}

#why .container .title{
    margin: 0;
}

#why .content .title{
    gap: 0;
}

#why .container{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#why .button{
    display: flex;
    gap: 16px;
}

#why .button button{
    width: 220px;
    padding: 12px 0
}

#why .button .contact-btn{
    /* padding: 12px 48px; */
    border: 0;
    background: #E76E1B;
    border-radius: 100px;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

#why .button .learn-btn{
    /* padding: 12px 48px; */
    border: 2px solid #E76E1B;
    background: white;
    border-radius: 100px;
    color: #E76E1B;
    font-weight: 600;
    font-size: 16px;
}

#contact-middle{
    position: relative; 
}

#contact-middle .selection-bg{
    position: absolute;
    height: 50%;
    width: 100%;
    top: 0;
    background: #DFEDF4;
}
#contact-middle .box{
    /* background-image: url("https://dev.store2go.co.id/assets/img/endtoend/contact-bg.png") !important; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}