.about-block .wrapper {
    display: flex;
    gap: 20px;
    padding: 60px;
    align-items: center;
    background: var(--background-thirdly);
    border-radius: 30px;
    justify-content: space-between;
}
.about-block .left-side {
    display: flex;
    flex-direction: column;
    width: auto;
    max-width: 600px;
}
.about-block .right-side {
    display: flex;
    flex-direction: column;
    width: 49%;
}
.about-block .main-title {
    text-align: left;
    margin-left: unset;
    margin-right: unset;
    margin-bottom: 20px;
}
.about-block .btn {
    margin-top: 30px;
}
.about-block .gallery-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}
.about-block .gallery-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: 0.5s;
}
.about-block .gallery-img:hover img {
    transform: scale(1.05);
}
.about-block .swiper {
    width: 100%;
}


@media (max-width: 1200px) {
    .about-block .wrapper {
        padding: 15px;
    }
}   

@media (max-width: 768px) {
    .about-block .wrapper {
        flex-direction: column;
    }
    .about-block .right-side,
    .about-block .left-side {
        width: 100%;
        max-width: unset;
    }
    .about-block .btn {
        margin-top: 10px;
    }
}