.bas {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #F2F2F2;
}

.bas__container {
    width: 1090px;
    max-width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 0;
}

.bas__header {
    font-family: 'SatoshiBlack', sans-serif;
    color: #2C3642;
    font-size: 48px;
    font-weight: 900;
    line-height: 125%;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.bas__about {
    color: #5A5A5A;
    font-size: 16px;
    font-weight: 400;
    line-height: 187.5%;
    margin: 0;
}

.bas__img {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../images/bas.svg');
    max-width: 100%;
    width: 1080px;
    height: 370px;
    transition: background-image 0.3s ease-in-out;
}

.bas_black {
    background-color: #13161A;
}

.bas_black .bas__header {
    color: #fff;
}

.bas_black .bas__about {
    color: #fff;
    opacity: 0.7;
}

.bas_black .bas__img {
    background-image: url('../images/bas_black.svg');
}

@media screen and (max-width: 1023px) {
    .bas__img {
        width: 700px;
        height: 230px;
    }
}

@media screen and (max-width: 767px) {
    .bas__img {
        width: 320px;
        height: 120px;
        margin-top: 20px;
    }

    .bas__header {
        font-size: 32px;
    }
}