@font-face{
    font-family: "PoppinsBlack";
    src: url("/pc/Servicos/slider-main/fonts/Poppins-Black.ttf");
    }
@font-face{
    font-family: "PoppinsLight";
    src: url("/pc/Servicos/slider-main/fonts/Poppins-ExtraLight.ttf");
}

@font-face{
    font-family: "PoppinsBold";
    src: url("/pc/Servicos/slider-main/fonts/Poppins-Bold.ttf");
}

@font-face{
    font-family: "LeagueGothic";
    src: url("/pc/Servicos/slider-main/fonts/LeagueGothic-Regular.ttf");
}

body{
    font-family: PoppinsBold;
    margin: 0;
    background-color: #010101;
    color: #eee;    

    -webkit-user-select: none;  
	-moz-user-select: none;     
	-ms-user-select: none;      
	user-select: none;
}

.logo-img-ml{
    scale: 1.2;
    margin-left: 0;
    margin-top: -10px;
}

.logo-img-bs{
    scale: 1.2;
    margin-left: 0;
    margin-top: -10px;
}

.logo-img-old{
    scale: 1.0;
    margin-left: 0;
    margin-top: -5px;
}

.logo-img-fm{
    scale: 1.2;
    margin-left: 0;
    margin-top: -5px;
}

.bt-Saiba{
    cursor: pointer;
    width: 120px;
    height: 40px;
    background: #ffd000;
    border-radius: 5px;
    font-family: LeagueGothic;
    font-size: 2.0rem;
    color: #000000;
    text-align: center;
    margin-left: 20px;
}

/* css slider */
.slider{
    height: 100vh;
    margin-top: -50px;
    position: relative;
}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;    
}
.slider .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #000 15%, transparent
    );
}
.slider .list .item .content{
    position: absolute;
    left: 10%;
    top: 30%;
    gap: 20px;
    width: 450px;
    max-width: 80%;
    z-index: 2;
}

.slider .list .item span{
    font-family: LeagueGothic;
    font-size: 2.0rem;
    color: #ffffff;
    padding-left: 20px;
}

.slider .list .item.active p{
    padding-left: 20px;
    margin-top: -20px;
}

.slider .list .item.active{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.slider .list .item.active .content img,
.slider .list .item.active p,
.slider .list .item.active span,
.slider .list .item.active .content .bt-Saiba{
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .10s .7s ease-in-out 1 forwards;
}
.slider .list .item.active .content img{
    animation-delay: 1s;
}
.slider .list .item.active p{
    animation-duration: 1.3s;
}
.slider .list .item.active span{
    animation-duration: 1.3s;
}
.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;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}
.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: 0.2rem;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}
.thumbnail::-webkit-scrollbar{
    width: 0;
}
.thumbnail .item{
    cursor: pointer;
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0; 
    border-radius: 10px;  
    border: 0.15rem solid #ffd000;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.thumbnail .item.active{
    filter: brightness(1.5);
    border: 0.15rem solid #ff0000;
}
.thumbnail .item .content{
    position: absolute;
    inset: auto 10px 10px 10px;
    line-height: 1.2;
}
@media screen and (max-width: 678px) {
    .thumbnail{
        justify-content: start;
    }
    .slider .list .item .content h2{
        font-size: 60px;
    }
    .arrows{
        top: 10%;
    }
}
