.about {
    margin-top: 274px;
}

.about__container {
    max-width: 1287px;
    padding: 0 24px;
    margin: 0 auto;
}

.about__box {
    display: flex;
    column-gap: 24px;
    position: relative;
}

.about__box:before {
    content: "";
    position: absolute;
    top: -60px;
    right: -100px;
    width: 1023px;
    height: 1117px;
    z-index: -1;
    background-image: url("../images/about/coins.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.about__right {
    max-width: 982px;
    padding-top: 5px;
}

.about__subtitle {
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
    width: 193px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about__subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    width: 48px;
    height: 100%;
    border: 1px solid #B11FE2;
    border-right: none;
}

.about__subtitle:after {
    content: "";
    position: absolute;
    right: 0;
    width: 48px;
    height: 100%;
    border: 1px solid #21A2DC;
    border-left: none;
}

.about__title {
    font-size: 64px;
    font-weight: 700;
    line-height: normal;
    color: #FFF;
    margin-bottom: 21px;
}

.about__description {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #A5A5A5;
}

.about__description + .about__description {
    margin-top: 18px;
}

@media (max-width: 850px) {
    .about {
        margin-top: 80px;
    }

    .about__box {
        flex-direction: column;
    }

    .about__right {
        padding-top: 15px;
    }

    .about__title {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .about__description {
        font-size: 18px;
    }

    .about__box:before {
        width: 715px;
    }
}

@media (max-width: 500px) {
    .about__subtitle {
        width: 120px;
        height: 50px;
        font-size: 20px;
    }

    .about__container {
        padding: 0 15px;
    }

    .about__subtitle:before,
    .about__subtitle:after {
        width: 20px;
    }

    .about__title {
        font-size: 34px;
    }

    .about__description {
        font-size: 14px;
    }
}