/**
START SHORTCODE
*/


.block-about-header {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;

    margin-bottom: 50px;
    padding: 189px 110px;

    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.block-about-header:before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: '';

    background: rgba(46, 51, 60, 0.31);
}


.block-about-header .about__header__title {
    position: relative;
    margin-bottom: 0 !important;
    z-index: 1;
}

.block-about-header .about__header__title p {
    margin-bottom: 0 !important;
    font-family: Roboto;
    font-size: 72px;
    line-height: 89px;
    letter-spacing: 0.03em;
    text-transform: uppercase;

    color: #FFFFFF;
}


@media (max-width: 767px) {
    .block-about-header {
        padding: 30px;
    }
    .block-about-header .about__header__title p {
        font-size: 30px;
        line-height: 1.47;
    }
}