.about-us {
    position: relative;
    color: #fff;
    overflow: hidden;
    border-radius: 60px;
    padding: 80px 60px;
}

.about-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #2589FF;
    z-index: -5;
}

.about-us .page-title,
.about-us .page-text {
    color: #fff;
}

.about-us .page-text {
    margin-top: 32px;
}

.about-us .about-us__content {
    max-width: 582px;
}

.about-us .about-us__logo {
    position: absolute;
    width: 65%;
    height: auto;
    z-index: -3;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
}

.about-us .about-us__small-text {
    font-weight: 500;
    font-size: 13px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #fff;
}

.about-us .about-us__socials {
    display: flex;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.about-us .about-us__social-link {
    display: flex;
    gap: 5px;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #232323;
    background-color: #fff;
    padding: 9px 16px;
    border-radius: 12px;
}

@media screen and (max-width: 1450px) {
    .about-us {
        padding: 40px;
        border-radius: 60px;
    }
}

@media screen and (max-width: 700px) {
    .about-us {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .about-us .about-us__logo {
        width: 853px;
        height: 796px;
        top: -54px;
        left: -172px;
        transform: none;
    }

    .about-us__outer {
        padding: 0;
    }

    .about-us .about-us__content {
        max-width: unset;
    }

    .about-us .about-us__socials {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .about-us .about-us__social-link {
        width: 100%;
        justify-content: center;
    }
}

