svg{
    width: 25px;
}
header{
    width: 1200px;
    max-width: 100%;
    margin: auto;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
}
header .logo{
    font-weight: bold;
}
.menu li{
    display: flex;
    align-items: center;
}
.menu li img{
    width: 125px;
    box-shadow: 0px 0px 25px white;
    border-radius: 50%;
}
header .menu{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    font-size: 22px;
    font-weight: 500;
}
/* css slider */
.slider{
    height: 911px;
    margin-top: -50px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-around;
}
@media (min-width: 0px){
    .slider{
        height: 65vh;
    }
}
@media (min-width: 500px){
    .slider{
        height: 65vh;
    }
}
@media (min-width: 700px){
    .slider{
        height: 65vh;
    }
}
@media (min-width: 1100px){
    .slider{
        height: 85vh;
    }
}
@media (min-width: 1600px){
    .slider{
        height: 911px;
    }
}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: auto;
    opacity: 0;
    transition: .5s;
    display: flex;
    justify-content: center;
}
.slider .list .item img{
    margin-top: 55px;
    height: 360px;
    width: 1035px;
    max-width: 95%;
    box-shadow: 8px 8px 15px black;
}
@media (min-width: 0px){
	.slider .list .item img{
        height: 240px;
	}
}

@media (min-width: 1100px){
	.slider .list .item img{
        height: 360px;
	}
}
.slider .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.slider .list .item .content{
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}
.slider .list .item .content p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}
.slider .list .item .content h2{
    font-size: 100px;
    margin: 0;
}
.slider .list .item.active{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.slider .list .item.active h2{
    animation-delay: 1s;
}
.slider .list .item.active p:nth-child(3){
    animation-duration: 1.3s;
}
.arrows button{
    background-color: rgba(0, 0, 0, 0%);
    border: none;
}
.thumbnail{
    bottom: 50px;
    z-index: 11;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: hidden;
    justify-content: center;
    padding-top: 10px;
}
.thumbnail .item{
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
    cursor: pointer;
}

@media (min-width: 0px){
    .thumbnail{
        height: 152px;
    }
    .thumbnail .item{
        width: 30px;
        height: 44px;
    }
}
@media (min-width: 700px){
    .thumbnail{
        height: 105px;
    }
    .thumbnail .item{
        width: 51px;
        height: 75px;
    }
}
@media (min-width: 1100px){
    .thumbnail{
        height: 162px;
    }
    .thumbnail .item{
        width: 90px;
        height: 132px;
    }
}
@media (min-width: 1600px){
    .thumbnail{
        height: 250px;
    }
    .thumbnail .item{
        width: 150px;
        height: 220px;
    }
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 2px 2px 10px black;
}
.thumbnail .item img:hover{
    border: 2px solid black;
}
.thumbnail .item.active{
    filter: brightness(1.5);
}
.thumbnail .item .content{
    position: absolute;
    inset: auto 10px 10px 10px;
}