.about-block {
    position: relative;
}

.about-block .about__wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.about-block .about__wrapper {
    height: 600px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 140px;
    padding-bottom: 60px;
    position: relative;
}

.about-block .about__wrapper .container {
    position: relative;
    z-index: 1;
}

.about-block .about__title {
    color: var(--white);
    max-width: 490px;
    width: 100%;
}

.about-block .about__subtitle {
    padding-top: 172px;
    color: var(--white);
    max-width: 490px;
    width: 100%;
}

.about-block .breadcrumbs span.current-item {
    color: var(--white);
}

.about-block .text__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-block .image__holder {
    border-radius: 20px;
    overflow: hidden;
}

.about-block .text-block {
    padding-bottom: 100px;
}

@media(max-width: 1100px) {
    .about-block .image__holder {
        grid-column: 2 span;
        max-height: 350px;
    }
}

@media(max-width: 730px) {
    .about-block .image__holder {
        grid-column: 1 span;
    }

    .about-block .about__subtitle {
        padding-top: 30px;
    }

    .about-block .text-block {
        padding-bottom: 50px;
    }

    .about-block .about__wrapper {
        height: 450px;
    }

    .about-block .about__wrapper {
        padding-top: 100px;
    }
}

@media(max-width: 500px) {
   /*  .about-block .about__wrapper {
        padding-top: 40px;
    } */
}