.about-block .wrapper {
    display: flex;
    min-height: 750px;
}
.about-block .main-img {
    width: 49%;
    display: flex;
    height: auto;
}
.about-block .main-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.about-block .right-side {
    display: flex;
    flex-direction: column;
    width: 51%;
}
.about-block .about-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 65%;
    background: var(--bg-colors-background-secondary);
    padding: 40px;
}
.about-block .block-desc {
    margin-bottom: 10px;
}
.about-block .about-content .btn {
    background: transparent;
    margin-top: auto;
}
.about-block .about-content .btn:hover {
    background: var(--colors-primary);
    border-color: var(--colors-primary);
    color: var(--bg-colors-background);
}
.about-block .form-holder {
    display: flex;
    width: 100%;
    height: 35%;
    background: var(--bg-colors-background-thirdly);
}
.about-block .form-holder .btn:hover {
    background: var(--bg-colors-background);
    color: var(--colors-primary);
}
.about-block .form-left-side {
    display: flex;
    flex-direction: column;
    width: auto;
    flex-grow: 1;
    padding: 50px;
}
.about-block .form-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 110%;
    color: var(--bg-colors-background);
    margin-bottom: 10px;
}
.about-block .form-desc {
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    color: var(--text-main-text-secondary);
    margin-bottom: 30px;
}
.about-block .form-img {
    width: auto;
    min-width: 257px;
    max-width: 257px;
    flex-grow: 1;
    height: 100%;
    display: flex;
}
.about-block .form-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: bottom right;
}
.about-block .main-title {
    margin-bottom: 20px;
}
.about-block .bg-img {
    width: 100%;
    height: auto;
    display: flex;
    margin-top: -65px;
}
.about-block .bg-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .about-block .about-content {
        padding: 10px;
        height: auto;
        flex-grow: 1;
    }
    .about-block .form-left-side {
        padding: 10px;
    }
    .about-block .form-holder {
        height: auto;
        flex-grow: 1;
        min-height: fit-content;
    }
    .about-block .wrapper {
        min-height: 500px;
    }
    .about-block .bg-img {
        margin-top: -15px;
    }
}

@media (max-width: 996px) {
    .about-block .form-img {
        min-width: unset;
    }
    .about-block .form-title {
        font-size: 24px;
    }
    .about-block .main-title {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .about-block .wrapper {
        flex-direction: column;
    }
    .about-block .right-side {
        order: 1;
        width: 100%;
    }
    .about-block .main-img {
        order: 2;
        width: 100%;
    }
    .about-block .bg-img {
        order: 3;
        margin-top: -100px;
    }
}

@media (max-width: 498px) {
    .about-block .form-img {
        display: none;
    }
    .about-block .bg-img {
        display: none;
    }
}

@media (max-width: 400px) {
    .about-block .btn {
        width: 100% !important;
    }
}

/* ДОРАБОТКИ */
.about-block .about-content .btn{
    margin: 20px 0 40px 0;
}