.gallery {
    width: 100%;
    position: relative;
}
  
.gallery-container {
    height: 468px;
    max-width: 100%;
    position: relative;
}
  
.gallery-item {
    width: 218px;
    height: 468px;
    position: absolute;
    transition: 0.7s linear;
    z-index: 0;
    box-shadow: 2px 2px 26px -4px #567ec080;
    border-radius: 20px;
    scale: 0.7;
    transform: translateX(-50%);
    left: 35%;
}

.gallery-item.gallery-item-1 {
    left: calc(35% - 66px);
}

.gallery-item.gallery-item-2 {
    left: calc(40% - 44px);
}

.gallery-item.gallery-item-3 {
    left: calc(45% - 22px);
}

.gallery-item.gallery-item-4 {
    left: 50%;
    scale: 1;
    z-index: 4;
}

.gallery-item.gallery-item-5 {
    left: 55%;
}

.gallery-item.gallery-item-6 {
    left: 60%;
}

.gallery-item.gallery-item-7 {
    left: 65%;
}

.gallery-item.gallery-item-1,
.gallery-item.gallery-item-7 {
    z-index: 1;
    scale: 0.7;
}

.gallery-item.gallery-item-2,
.gallery-item.gallery-item-6 {
    z-index: 2;
    scale: 0.8;
}

.gallery-item.gallery-item-3,
.gallery-item.gallery-item-5 {
    z-index: 3;
    scale: 0.9;
}

.gallery-container .gallery-item::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    transition: 0.7s linear;
    background: transparent;
}

.gallery-container .gallery-item:not(.gallery-item-4)::after {
    background: #f9f9ffcc;
}

.gallery-controls button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 0;
    border: 2px solid #ffffff80;
    border-radius: 24px;
    background: url(../images/arrow_white_right.svg) center no-repeat #0000001a;
    transition: 0.5s linear;
}

.gallery-controls .gallery-controls-previous {
    transform: scale(-1);
    margin-right: 16px;
}

.gallery-controls button:focus {
    outline: none;
}

@media (576px <= width <= 991.98px) {
    .gallery-controls button {
        width: 32px;
        height: 32px;
        background-size: 10px;
    }

    .gallery-item {
        width: 180px;
        height: 387px;
    }

    .gallery-container {
        height: 387px;
    }

    .gallery-item.gallery-item-1 {
        left: calc(35% - 54px);
    }
    
    .gallery-item.gallery-item-2 {
        left: calc(40% - 36px);
    }
    
    .gallery-item.gallery-item-3 {
        left: calc(45% - 18px);
    }
}

@media (max-width: 575.98px) {
    .gallery-controls .gallery-controls-previous {
        margin-right: 0;
    }

    .gallery-container {
        height: 494px;
    }

    .gallery-item {
        width: 230px;
        height: 494px;
    }

    .gallery-item.gallery-item-1 {
        left: calc(35% - 69px);
    }
    
    .gallery-item.gallery-item-2 {
        left: calc(40% - 46px);
    }
    
    .gallery-item.gallery-item-3 {
        left: calc(45% - 23px);
    }
}