.overview {
    margin-top: 190px;
}

.overview__container {
    max-width: 1079px;
    padding: 0 24px;
    margin: 0 auto;
}

.overview__box {
    display: flex;
    align-items: center;
    column-gap: 133px;
}

.overview__right {
    max-width: 612px;
    margin-top: -106px;
}

.overview__phone-wrapper {
    position: relative;
}

.overview__phone-wrapper:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 528px;
    height: 528px;
    border-radius: 528px;
    background: #1C1C41;
    filter: blur(150px);
    opacity: 0.6;
    z-index: 10;
}

.overview__phone {
    position: relative;
}

.overview__phone:before {
    content: "";
    position: absolute;
    top: 98px;
    left: -121px;
    width: 180px;
    height: 180px;
    background-image: url("../images/overview/first-coin.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.overview__phone:after {
    content: "";
    position: absolute;
    bottom: 152px;
    right: -86px;
    width: 145px;
    height: 145px;
    background-image: url("../images/overview/second-coin.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.overview__title {
    font-size: 50px;
    font-weight: 700;
    line-height: normal;
    color: #FFF;
    margin-bottom: 30px;
}

.overview__description {
    font-size: 19px;
    font-weight: 400;
    line-height: 28px;
    color: #8D929C;
}

@media (max-width: 1300px) {
    .overview__phone:before {
        top: -50px;
        left: -40px;
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 900px) {
    .overview__box {
        flex-direction: column-reverse;
        row-gap: 40px;
    }

    .overview__right {
        text-align: center;
        margin: 0;
    }

    .overview__phone:before {
        top: 98px;
        left: -100px;
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 850px) {
    .overview {
        margin-top: 80px;
    }
}

@media (max-width: 500px) {
    .overview__box {
        row-gap: 30px;
    }

    .overview__container {
        padding: 0 15px;
    }

    .overview__title {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .overview__description {
        font-size: 14px;
    }
}