#content{
    display: flex;
    position: relative;
}

#content .detail{
    z-index: 1;
}

#content .design{
    position: absolute;
    bottom: -60px;
}

#content .title h1{
    text-align: start;
}

#content .left{
    left:-30px
}
#content .right{
    right: -30px
}

#content .design img{
    width: 20vw;
    max-width: 140px;
    margin: 32px 0;
}

#content .detail .image{
    display: flex;
    align-items: center;
}

#content .detail .image img{
    border-radius : 16px;
    width: 100%;
    height: 350px
}

#content .detail .description{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#content .detail .description p{
    margin: 0;
}

#why .content .box-why{
    display: none;
    padding: 32px;
    background-color: none;

}

#why .content .why{
    display: flex;
    flex-direction: column;
    gap: 32px;
    border: 1px solid rgba(67, 67, 67, 0.24);
    border-radius: 8px;
    padding: 32px;
    background-color: #DFEDF4;
}

@keyframes show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

#why .content .why-show{
    display: grid;
    /* animation: show 0.1s ease-in-out; */
}

@media(max-width:991px){
    #why .content .why-show{
        display: none;
    }
    #why .content .why-active{
        display: grid !important;
    }
    #why .content .why{
        padding: 32px 15px;
    }
    #why .content .box-why{
        padding: 32px 15px;
    }
}

#why .content .why-active .why{
    background-color: #FF5E14 !important;
    /* transition: background-color 0.1s; */
}
#why .content .why-active .why .title h2,
#why .content .why-active .why .title p{
    color: white !important;
}

#why .content .why .image-container img{
    background-color: #E9F3F8;
    border-radius: 16px;
    padding: 24px;
    width: 112px;
    height: 112px;
}

#why .why-carousal{
    display: flex;
    justify-content: center;
    gap: 32px;
}

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

.carousel img{
    height: 500px;
}


#truck .description{
    display: flex;
    align-items: center;
}

#truck .content{
    position: relative;
} 

#truck .button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 22px);
    display: flex;
    justify-content: space-between;
    padding: 0 14px;
}
#truck button{
    padding: 24px;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    border: 0px;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
}

#truck .content .box{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    align-items: start;
    background: rgba(67, 67, 67, 0.07);
}

#truck .content .box .type{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    height: 100%;
    padding: 32px;
}
#truck .content .box .type.active{
    background: white;
    border-top: 4px solid #FF5E14;
}

#truck .content .box .type .truck-img{
    width: 300px;
    height: 200px;
}

@media(max-width:991px){
    #truck .content .box .type .truck-img{
        width: 220px;
        height: 160px;
    }
}


