.message-icon {
position: fixed;
top: 15px;
right: 65px;
width: 30px;
height: 30px;
}
/*=============== SLIDE 1 ===============*/
.box__slide {
    position: absolute;
    width: 170px;
    height: 102px;
    
    /* width: 240px;
    height: 135px; */
    transform-style: preserve-3d;
    animation: animate 25s linear infinite;
}
.box__slide:hover{
    animation-play-state: paused;
}
@keyframes animate {
    0%{
        transform: perspective(1000px) rotateY(0deg);
    }
    100%{
        transform: perspective(1000px) rotateY(360deg);
    }
}
.box__slide span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i) * 36deg)) translateZ(400px);
    -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, rgba(4, 4, 4, 0.267));
}
.box__slide span img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    border-radius: 3px;
    /* border: 2px solid hsl(28, 88%, 62%); */
}
.span img:hover{
    transform: translateY(-5px);
    box-shadow: 0 0 10px hsl(28, 84%, 58%),
                0 0 15px hsl(28, 84%, 58%),
                0 0 20px hsl(28, 84%, 58%);
}
.warranty__container{
    position: relative;
    padding-block: 3rem;
    }
.warranty__bg{
    object-fit: cover;
    object-position: center;
}
.warranty{
    display: flex;
    justify-content: center;
    padding-block: 5rem 7rem;
}

/* ==================== dropdown ==================== */
.dropdown{
    width: 100%;
    justify-content: center;
    padding-block: 1rem 1rem;
}
.container .dropdown{
    background: rgb(20, 20, 20);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.container .list{
    background: rgba(29, 29, 29, 0.288);
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    border-radius: 10px;
    display: none;
}

.list .item{
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    margin: 2px 0;
    border-radius: 10px;
    justify-content: center;
    &:hover{
        background-color: rgb(29, 29, 29);
    }
}




/* ==================== SLIDE_2 ==================== */
.swiper{
    width: 640px;
    height: 480px;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #dbe344; */    
}
.swiper-slide{
    position: relative;
    box-shadow: 0 15px 30px rgb(0, 0, 0, 0.5);
    border-radius: 20px;    
}
.swiper-slide:nth-child(1){
    background: linear-gradient(to top, #0f2027, #203a4300, #2c536400), url(assets/img-slide/dupont/01.jpg);
    background-repeat: no-repeat;
    background-size: cover;    
}
