.contein{
    width: 99%;
    height: 75vh;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.gallery{
     display: flex;
     width: 1000%;
     transition: all 1s;
     touch-action: pan-y;
}

.gallery section{
    flex-basis: 100%;
}

.gallery img{
    width:  90%;
    height: 68vh;
    object-fit: contain;
}

.caption{
    padding-top: 10px;
    font-family: "Arial";
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    font-size: 14px;
    color: rgb(90, 91, 92);
    text-align: center;
    margin: 0;
}

.controls .arrow{
    font-family: "Arial";
    font-style: normal;
    font-size: 10px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    color: rgb(90, 91, 92);
    border-radius: 50%;
}

.arrow:hover{
    color: rgb(208, 216, 222);
}

.arrow.left{
    left: 1px;
}

.arrow.right{
    right: 1px;
}

@media all and (min-width: 750px){
    .controls .arrow{
        margin-left: 10%;
        margin-right: 10%;
    }
}