.about-page-block {
    margin-bottom: 40px;
}
.about-page-block .wrapper {
    display: flex;
    gap: 30px;
    padding-left: calc((100% - 1530px) / 2);
    height: 400px;
}
.about-page-block .left-side {
    padding: 30px;
    border-radius: 10px;
    background: var(--bg-primary-main);
    width: 44%;
}
.about-page-block .about-text {
    height: 100%;
    overflow: auto;
    padding-right: 20px;
}
.about-page-block .gallery-holder {
    width: 55%;
    position: relative;
    padding-right: calc((100% - 1030px) / 2);
    overflow: hidden;
}
.about-page-block .swiper {
    height: 100%;
    overflow: unset;
}
.about-page-block .gallery-item {
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
}
.about-page-block .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.about-page-block .nav {
    position: absolute;
    top: 50%;
    right: -29px;
    z-index: 2;
    transform: translate(0%,-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: unset;
}
.about-page-block .nav .swiper-button-disabled {
    background: var(--bg-primary-main);
}


@media (max-width: 1600px) {
    .about-page-block .wrapper {
        padding-left: 15px;
    }
    .about-page-block .left-side {
        padding: 15px;
    }
}

@media (max-width: 1200px) {
    .about-page-block {
        margin-bottom: 30px;
    }
    .about-page-block .gallery-holder {
        padding-right: 30px;
    }
    .about-page-block .nav {
        right: -20px;
    }
}

@media (max-width: 996px) {
    .about-page-block .left-side,
    .about-page-block .gallery-holder {
        width: 50%;
    }
    .about-page-block .wrapper {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .about-page-block .wrapper {
        flex-direction: column;
        height: fit-content;
        padding: 0px 15px;
    }
    .about-page-block .left-side {
        height: 300px;
    }
    .about-page-block .left-side,
    .about-page-block .gallery-holder {
        width: 100%;
    }
    .about-page-block .gallery-holder {
        padding-right: unset;
    }
    .about-page-block .nav {
        right: 10px;
    }
    .about-page-block .gallery-item {
        max-height: 400px;
    }
}
