*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
ul,li{
    list-style: none;
}
a{
    text-decoration: none;
}
body{
    font-family: 'Poppins', sans-serif;
    width:100%;
    height: 100vh;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.container{
    width: 80%;
    margin: auto;
    background-color:#fff;
    position:relative;
    border-radius: 20px;
}
.container .wrapper{
    width:100%;
    overflow: hidden;
}
.container .slider{
    display:flex;
}
.container .slider .slide{
    min-width:calc(20% - 20px);
    height:200px;
    margin-right: 20px;
}
.container .slider .slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius: 20px;
    padding:10px;
}
.container .arrows{
    position:absolute;
    left:-2.5%;
    top:50%;
    width:105%;
    z-index:3;
    transform:translateY(-50%);
    display:flex;
    justify-content: space-between;
}
.container .arrows i{
    font-size:24px;
    background-color: #fff;
    color:#000;
    cursor: pointer;
    height:36px;
    width:36px;
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.container .arrows i.deactive{
    opacity: 0.5;
    cursor:not-allowed;
}

.container2{
    width:80%;
    height: 900px;
    margin-bottom:100px;
}
.container2 .slider{
    width:100%;
    height: 100%;
    position:relative;
}
.container2 .slider .slide{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    transition: opacity 0.5s ease;
}
.container2 .slider .slide.active{
    opacity:1;
}
.container2 .slider .slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.dots{
    width:100%;
    display:flex;
    justify-content: center;
    margin-top:20px;
}
.dot{
    width:20px;
    height:20px;
    border-radius:10px;
    background-color: #fff;
    border:1px solid #000;
    margin-right: 10px;
}
.dot.active{
    background-color: #000;
}