.gallery {
    padding: 40px 20px 160px 20px;
    grid-gap: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    display: grid;
    grid-template-columns: repeat(8, 260px);
    padding-bottom: 40px;
}

.gallery::-webkit-scrollbar {
    margin: 5px;
    height: 15px;
    margin-top: 10px;
    background: #F2F2F2;
    border-radius: 2.5px;
}

.gallery::-webkit-scrollbar-thumb {
    background: #01BBD1;
    border-radius: 5px;
}

.gallery img {
    border-radius: 10px;
}