
svg{
    width: 25px;
}

.slider{
    height: 100vh;
    margin-top: 50px;
    position: relative;
}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 1.5s;
}
.slider .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(
        to top, #000 10%, transparent
    );
}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider .list .item .content{
    position: absolute;
    left: 20%;
    top: 8%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}
.slider .list .item .content p:nth-child(1){
    text-transform: uppercase; color:#ffffff !important;
    letter-spacing: 10px;
    transform: translateY(30px);
}
.slider .list .item .content p { color:#ffffff !important;}
.slider .list .item .content h2{
    font-size: 60px; color:#ffffff !important; font-weight:bold;
    margin: 0px;
}

.slider .list .item.active{
    opacity: 1;
    pointer-events: auto;
}

@keyframes showContent {
    to {
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.slider .list .item.active .content p:nth-child(1),
.slider .list .item.active .content h2,
.slider .list .item.active .content p:nth-child(3){
    transform: translateY(30px);
    filter: blur(10px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.slider .list .item .content h2{
    animation-delay: 1s!important;
}
.slider .list .item .content p:nth-child(3){
    animation-delay: 1.3s!important;
}

.arrows{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;

}
.arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: x-large;
    transition: .5s;
}
.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: 50px;
    z-index: 10;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    justify-content: center;
    overflow: auto;
}
.thumbnail::-webkit-scrollbar{
    width: 0;
}
.thumbnail .item{
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    filter: brightness(.5);
    transition: .5s;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px; cursor: pointer;
}

.thumbnail .item.active{
    filter: brightness(1.5);
}
.thumbnail .item:hover {
    filter: brightness(1.5);
}
.thumbnail .item .content{
    position: absolute; color:#48cafa; font-weight:bold !important;
    inset: auto 10px 10px 10px;
}
@media screen and (max-width: 768px){
    .arrows{
        top: 10%;
    }
    .slider .list .item .content h2{
        font-size: 40px;
    }
    .thumbnail{
        justify-content: start;
        
    }
.slider .list .item .content{ left:10% !important; top:18% !important;}	
}
@media screen and (max-width: 768px){ 
.slider .list .item .content h2{
    font-size: 30px; color:#ffffff !important; font-weight:bold;
    margin: 0px;
}
.thumbnail .item{
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    filter: brightness(.5);
    transition: .5s;
}
.thumbnail{
    position: absolute;
    bottom: 50px;
    z-index: 10;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 120px;
    padding: 0 20px;
    box-sizing: border-box;
    justify-content: left;
    overflow: auto;
}
.slider{
    height: 60vh;
    margin-top: -50px;
    position: relative;
}
}
.container2 { width:100% !important;}
.container2 {
  width: 100%; max-width:1960px !important;
  /*padding-right: var(--bs-gutter-x,.75rem);
  padding-left: var(--bs-gutter-x,.75rem);*/
  margin-right: auto;
  margin-left: auto;}