.slider{
    width: 1300px;
    max-width: 100vw;
    height: 400px;
    margin: auto;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
    width: 1300px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}

.slidertwo{
    width: 1200px;
    max-width: 100vw;
    height: 150px;
    margin: auto;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.slidertwo .listtwo{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slidertwo .listtwo img{
    width: 1300px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.slidertwo .buttonstwo{
    position: absolute;
    top: 33%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slidertwo .buttonstwo button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.slidertwo .dotstwo{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slidertwo .dotstwo li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slidertwo .dotstwo li.activetwo{
    width: 30px;
}
@media screen and (max-width: 768px){
    .slider{
        height: 250px;
        width: 95%;
    }
    .slider .buttons{
        position: absolute;
        top: 42%;
        left: 5%;
        width: 90%;
        display: flex;
        justify-content: space-between;
    }
    .slidertwo{
        height: 70px;
        width: 80%;
    }
    .slidertwo .listtwo img{
        height: 100%;
        object-fit: contain;
    }
    .slidertwo .buttonstwo{
        visibility: hidden;
    }
}
