@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    margin: 0;
    background-image: rgb(255, 0, 0)
    ;
    font-family: Poppins;
}
:root{
    --item141-transform: translateX(-100%) translateY(-5%) scale(1.5);
    --item141-filter: blur(30px);
    --item141-zIndex: 11;
    --item141-opacity: 0;

    --item142-transform: translateX(0);
    --item142-filter: blur(0px);
    --item142-zIndex: 10;
    --item142-opacity: 1;

    --item143-transform: translate(50%,10%) scale(0.8);
    --item143-filter: blur(10px);
    --item143-zIndex: 9;
    --item143-opacity: 1;

    --item144-transform: translate(90%,20%) scale(0.5);
    --item144-filter: blur(30px);
    --item144-zIndex: 8;
    --item144-opacity: 1;
    
    --item145-transform: translate(120%,30%) scale(0.3);
    --item145-filter: blur(40px);
    --item145-zIndex: 7;
    --item145-opacity: 0;
}


/* carousel12 */
.carousel12{
    background-color: rgb(255, 255, 255);
    position: relative;
    height: 800px;
    overflow: hidden;
    margin-top: 100px;
    margin-bottom: -50px;
}
.carousel12 .list11{
    
    position: absolute;
    width: 1140px;
    max-width: 90%;
    height: 80%;
    left: 50%;
    transform: translateX(-50%);
}
.carousel12 .list11 .item14{
  
    position: absolute;
    left: 0%;
    width: 70%;
    height: 100%;
    font-size: 15px;
    transition: left 0.5s, opacity 0.5s, width 0.5s;
}
.carousel12 .list11 .item14:nth-child(n + 6){
    opacity: 0;
}
.carousel12 .list11 .item14:nth-child(2){
    z-index: 10;
    transform: translateX(0);
}
.carousel12 .list11 .item14 img{
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right 1.5s;
    border-radius: 80px;
    
}

.carousel12 .list11 .item14 .introduce{
    opacity: 0;
    pointer-events: none;
}
.carousel12 .list11 .item14:nth-child(2) .introduce{
    opacity: 1;
    pointer-events: auto;
    width: 380px;
    position: absolute;
    top: 50%;
    transform:  translateY(-50%);
    transition: opacity 0.5s;
}
.carousel12 .list11 .item14 .introduce .title11{
    font-size: 2em;
    font-weight: 500;
    line-height: 1em;
}
.carousel12 .list11 .item14 .introduce .topic12{
    font-size: 4em;
    font-weight: 500;
}
.carousel12 .list11 .item14 .introduce .des{
    font-size: small;
    color: rgba(0, 0, 0, 0.6);
    right: 400px;
}
.carousel12 .list11 .item14 .introduce .moresii{
    font-family: Poppins;
    margin-top: 1.2em;
    padding: 5px 0;
    border: none;
    border-bottom: 1px solid #555;
   background-color: transparent;
    font-weight: bold;
    letter-spacing: 3px;
    transition:background 0.5s;
}
.carousel12 .list11 .item14 .introduce .moresii:hover{
   background: #eee;
}
.carousel12 .list11 .item14:nth-child(1){
    transform: var(--item141-transform);
    filter: var(--item141-filter);
    z-index: var(--item141-zIndex);
    opacity: var(--item141-opacity);
    pointer-events: none;
}
.carousel12 .list11 .item14:nth-child(3){
    transform: var(--item143-transform);
    filter: var(--item143-filter);
    z-index: var(--item143-zIndex);
}
.carousel12 .list11 .item14:nth-child(4){
    transform: var(--item144-transform);
    filter: var(--item144-filter);
    z-index: var(--item144-zIndex);
}
.carousel12 .list11 .item14:nth-child(5){
    transform: var(--item145-transform);
    filter: var(--item145-filter);
    opacity: var(--item145-opacity);
    pointer-events: none;
}
/* animation text in item142 */
.carousel12 .list11 .item14:nth-child(2) .introduce .title11,
.carousel12 .list11 .item14:nth-child(2) .introduce .topic12,
.carousel12 .list11 .item14:nth-child(2) .introduce .des,
.carousel12 .list11 .item14:nth-child(2) .introduce .moresii{
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
@keyframes showContent{
    from{
        transform: translateY(-30px);
        filter: blur(10px);
    }to{
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
    }
}
.carousel12 .list11 .item14:nth-child(2) .introduce .topic12{
    animation-delay: 1.2s;
}
.carousel12 .list11 .item14:nth-child(2) .introduce .des{
    animation-delay: 1.4s;
}
.carousel12 .list11 .item14:nth-child(2) .introduce .moresii{
    animation-delay: 1.6s;
}
/* nexttt click */
.carousel12.nexttt .item14:nth-child(1){
    animation: transformFromPosition2 0.5s ease-in-out 1 forwards;
}
@keyframes transformFromPosition2{
    from{
        transform: var(--item142-transform);
        filter: var(--item142-filter);
        opacity: var(--item142-opacity);
    }
}
.carousel12.nexttt .item14:nth-child(2){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
@keyframes transformFromPosition3{
    from{
        transform: var(--item143-transform);
        filter: var(--item143-filter);
        opacity: var(--item143-opacity);
    }
}
.carousel12.nexttt .item14:nth-child(3){
    animation: transformFromPosition4 0.9s ease-in-out 1 forwards;
}
@keyframes transformFromPosition4{
    from{
        transform: var(--item144-transform);
        filter: var(--item144-filter);
        opacity: var(--item144-opacity);
    }
}
.carousel12.nexttt .item14:nth-child(4){
    animation: transformFromPosition5 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition5{
    from{
        transform: var(--item145-transform);
        filter: var(--item145-filter);
        opacity: var(--item145-opacity);
    }
}
/* prevvvious */
.carousel12.prevvv .list11 .item14:nth-child(5){
    animation: transformFromPosition4 0.5s ease-in-out 1 forwards;
}
.carousel12.prevvv .list11 .item14:nth-child(4){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
.carousel12.prevvv .list11 .item14:nth-child(3){
    animation: transformFromPosition2 0.9s ease-in-out 1 forwards;
}
.carousel12.prevvv .list11 .item14:nth-child(2){
    animation: transformFromPosition1 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition1{
    from{
        transform: var(--item141-transform);
        filter: var(--item141-filter);
        opacity: var(--item141-opacity);        
    }
}

/* detail120  */
.carousel12 .list11 .item14 .detail120{
    opacity: 0;
    pointer-events: none;
}
/* showdetail */
.carousel12.showdetail12 .list11 .item14:nth-child(3),
.carousel12.showdetail12 .list11 .item14:nth-child(4){
    left: 100%;
    opacity: 0;
    pointer-events: none;
}
.carousel12.showdetail12 .list11 .item14:nth-child(2){
    width: 100%;
}
.carousel12.showdetail12 .list11 .item14:nth-child(2) .introduce{
    opacity: 0;
    pointer-events: none;
}
.carousel12.showdetail12 .list11 .item14:nth-child(2) img{
    right: 50%;
}
.carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120{
    opacity: 1;
    width: 550px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    pointer-events: auto;
}
.carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120 .title11{
    font-size: 4em;
}
.carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120 .specifications17{
    display: flex;
    gap: 10px;
    width: 100%;
    border-top: 1px solid #5553;
    margin-top: 20px;
}
.carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120 .specifications17 div{
    width: 90px;
    text-align: center;
    flex-shrink: 0;
}
.carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120 .specifications17 div p:nth-child(1){
    font-weight: bold;
}
.carousel12.carousel12.showdetail12 .list11 .item14:nth-child(2) .checkout18 button{
    font-family: Poppins;
   background-color: transparent;
    border: 2px solid #00000055;
    margin-left: 5px;
    padding: 5px 10px;
    letter-spacing: 2px;
    font-weight: 500;
}
.carousel12.carousel12.showdetail12 .list11 .item14:nth-child(2) .checkout18 button:nth-child(2){
   background-color: #f0aa1c;
    color: #ffffff;
}

a{
    color: #0d0c0c;
    font-size: 12px;
}
.carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120  .title11,
.carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120  .des,
.carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120 .specifications17,
.carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120 .checkout18{
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
.carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120  .des{
    animation-delay: 1.2s;
}
.carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120 .specifications17{
    animation-delay: 1.4s;
}
.carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120 .checkout18{
    animation-delay: 1.6s;
}
.arrows14{
    position: absolute;
    bottom: 10px;
    width: 1140px;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
}
#prevvv,
#nexttt{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-family: monospace;
    border: 1px solid #0d0c0c;
    font-size: 40px;
    bottom: 20%;
    left: 10%;
}
#nexttt{
    left: unset;
    right: 10%;
}
#backkk{
    position: absolute;
    z-index: 100;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border-bottom: 1px solid #0d0c0c;
    font-family: Poppins;
    font-weight: bold;
    letter-spacing: 3px;
   background-color: transparent;
    padding: 10px;
    /* opacity: 0; */
    transition: opacity 0.5s;
}
.carousel12.showdetail12 #backkk{
    opacity: 1;
}
.carousel12.showdetail12 #prevvv,
.carousel12.showdetail12 #nexttt{
    opacity: 0;
    pointer-events: none;
}
.carousel12::before{
    width: 500px;
    height: 300px;
    content: '';
   background-image: linear-gradient(70deg, #f0aa1c, #041f28);
    position: absolute;
    z-index: -1;
    border-radius: 20% 30% 80% 10%;
    filter: blur(150px);
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%);
    transition: 1s;
}
.carousel12.showdetail12::before{
    transform: translate(-100%, -50%) rotate(90deg);
    filter: blur(130px);
}
@media screen and (max-width: 991px){
    /* ipad, tablets */
    .carousel12 .list11 .item14{
        width: 90%;
    }
    .carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120 .specifications17{
        overflow: auto;
    }
    .carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120 .title11{
        font-size: 2em;
    }
}
@media screen and (max-width: 767px){
    /* mobile */
    .carousel12{
        height: 600px;
    }
    .carousel12 .list11 .item14{
        width: 100%;
        font-size: 10px;
    }
    
    .carousel12 .list11{
        height: 100%;
    }
    .carousel12 .list11 .item14:nth-child(2) .introduce{
        width: 50%;
    }
    
    .carousel12 .list11 .item14 img{
        width: 40%;
    }
    .carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120{
        backdrop-filter: blur(10px);
        font-size: small;
    }
    .carousel12 .list11 .item14:nth-child(2) .introduce .des,
    .carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120 .des{
        height: 100px;
        overflow: auto;
    }
    .carousel12.showdetail12 .list11 .item14:nth-child(2) .detail120 .checkout18{
        display: flex;
        width: max-content;
        float: right;
    }
}