/* @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-color: #000;
    color: #eee;
    /* font-family: Poppins; */
    --bs-body-font-family: var(--bs-font-sans-serif);

    font-size: 12px;
}

a{
    text-decoration: none;
}
a.active{
    background: #14ff72cb;
    border-radius: 2px;
}




/* slider section  */

.slider{
    height: 100vh;
    margin-top: 50px;
    width: 100vw;
    overflow: hidden;
    position: relative;
}
.slider .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider .list .item .content{
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}

.slider .list .item .content .title,
.slider .list .item .content .type{
    font-size: 6em;
    font-weight: bold;
    line-height: 1.3em;
    letter-spacing: 0.1rem;
}
.slider .list .item .title{
    color: #ffffffcb;
}
/* .slider .list .item .button{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
} */
/* .slider .list .item .button button{
    border: none;
    background-color: #eee;
    font-family: Poppins;
    font-weight: 500;
    cursor: pointer;
    transition: 0.4s;
    letter-spacing: 2px;
} */


/* .slider .list .item .button button:hover{
    letter-spacing: 3px;
}
.slider .list .item .button button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
} */





/* Thumbnail Section  */
.thumbnail{
    position: absolute;
    /* transform: skewX(-15deg); */

    justify-content: center;
    bottom: 50px;
    left: 50%;
    /* border: 2px solid white;  */
    width: 38vw;
    overflow-x: hidden;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.def-th-2 .item:nth-child(1){
    opacity: 0;
    display: none;
}
.def-th-2 .item:nth-child(5){
    opacity: 0;
    display: none;
}
.def-th-2 .item:nth-child(6){
    opacity: 0;
    display: none;
}
.def-th-2 .item:nth-child(7){
    opacity: 0;
    display: none;
}
.def-th-2 .item:nth-child(8){
    opacity: 0;
    display: none;
}
.def-th-2 .item:nth-child(9){
    opacity: 0;
    display: none;
}

.thumbnail .item{
    /* margin: auto; */
    width: 10vw;
    transform: skewX(-15deg);
    height: 27vh;
    overflow: hidden;
    /* box-shadow: rgba(81, 89, 241, 0.3) 3px 6px 8px; */
    border: 1px solid white;
    /* border-radius: 20px; */
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img{
    width: 100%;
    transform: skewX(15deg); 
    height: 100%;
    object-fit: cover;
    scale: 1.5;
    /* border-radius: 20px; */
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

.overlay-img-wrapper img{
    filter: brightness(0.6);
}

/* nextPrevArrows Section  */
.nextPrevArrows1{
    position: absolute;
    top: 75%;
    left: 48vw;
    /* margin-right: 4vw; */
    z-index: 100;
    width: 9vw;
    display: flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 30%;
}
.nextPrevArrows2{
    position: absolute;
    top: 75%;
    left: 86.5vw;
    z-index: 100;
    width: 9vw;
    display: flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 30%;
}
.nextPrevArrows button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f81808;
    border: none;
    color: #fff;
    /* font-family: monospace; */
    font-weight: bold;
    font-size: 25px;
    transition: .5s;
    cursor: pointer;
}

.nextPrevArrows button:hover{
    background-color: #fff;
    color: #000;
}

/* Animation Part */
.slider .list .item:nth-child(1){
    z-index: 1;
}


/* animation text in first item */
.slider .list .item:nth-child(1) .content .title,
.slider .list .item:nth-child(1) .content .type,
.slider .list .item:nth-child(1) .content .description
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.slider .list .item:nth-child(1) .content .title{
    animation-delay: 0.4s !important;
}
.slider .list .item:nth-child(1) .content .type{
    animation-delay: 0.6s !important;
}
.slider .list .item:nth-child(1) .content .description{
    animation-delay: 0.8s !important;
}
/* .slider .list .item:nth-child(1) .content .buttons{
    animation-delay: 1s !important;
} */




/* Animation for next button click */
.slider.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.slider.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.slider.prev .list .item img{
    z-index: 100;
}


@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;

    }
}


.slider.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}



/* Animation for prev button click */
.slider.prev .list .item:nth-child(2){
    z-index: 2;
}

.slider.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.slider.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.slider.next .nextPrevArrows button,
.slider.prev .nextPrevArrows button{
    pointer-events: none;
}


.slider.prev .list .item:nth-child(2) .content .title,
.slider.prev .list .item:nth-child(2) .content .type,
.slider.prev .list .item:nth-child(2) .content .description
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 678px) {
    .slider .list .item .content{
        padding-right: 0;
    }
    .slider .list .item .content .title{
        font-size: 40px;
    }
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&amp;display=swap");

:root {
  --white: #eee;
  --black: #141414;
  --color: #f81808;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.wrapper{
    z-index: 10;
    position: absolute;
    bottom: 25%;
  left: 14%;
}
.link {
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  position: relative;
}
.link span,
.link i {
  position: relative;
}
.link i {
  margin-left: 0.5em;
}
.link .color {
  width: 2em;
  height: 2em;
  color: white;
  border-radius: 2em;
  background-color: var(--color);
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: -0.65em;
}
@media screen and (max-width:800px) {
    .thumbnail {
        overflow: hidden;
        
    }
    .wrapper {
        bottom: 40%;
    }
    .nextPrevArrows2{
        left: 90.5vw;
    }
.nextPrevArrows1{
    left: 39vw;
}
     .thumbnail .item{
       width: 100%;
       transform: skewX(0);
    }
    
}
.section-e-policies .policies-bar .policies-option select {
    border: rgba(0, 0, 0, 0);
    padding: 5px 10px;
    background: #142350;
    color: #fff;
    font-size: 13px;
    border-radius: 30px;
    width: 90%;
}