.about-section {
    padding: 44px 0 117px;
    position: relative;
    overflow: hidden;
}

.about-section .background-right-bottom {
    --bg-size: 224px;
}

.about-section__content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.about-section__top {
    display: flex;
    gap: 36px;
    margin: 0 auto;
}

.about-section__top p {
    background-image: linear-gradient(45deg, var(--color-blue) 90%, transparent 0%, transparent 95%, var(--color-white) 0%);
    font-weight: 700;
    font-size: 38px;
    line-height: 43px;
    color: var(--color-white);
    padding: 18px;
    padding-right: 30px;
    width: 100%;
}

.about-section__top p:first-child {
    max-width: 263px;
}

.about-section__top p:nth-child(2) {
    max-width: 327px;
}

.about-section__top p:last-child {
    max-width: 461px;
    font-size: 33px;
    line-height: 43px;
}

.about-section__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-left: 44px;
}

.about-section__bottom>div:first-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 552px;
}

.about-section__bottom>div:first-child h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    position: relative;
}

.about-section__bottom>div:first-child h3::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 6px;
    width: 24px;
    height: 24px;
    background-image: linear-gradient(225deg, var(--color-blue) 50%, transparent 0%, transparent 100%);
}

.about-section__bottom>div:first-child p {
    font-weight: 400;
    font-size: 22px;
}

.about-section__bottom>div:last-child {
    width: 100%;
    max-width: 525px;
    margin-left: auto;
    position: relative;
}

.about-section__bottom>div:last-child::before {
    content: '';
    position: absolute;
    right: 28px;
    top: 30px;
    width: 115px;
    height: 115px;
    background-image: linear-gradient(225deg, var(--color-blue) 50%, transparent 0%, transparent 100%);
    z-index: -1;
    user-select: none;
    pointer-events: none;
}

.about-section__bottom>div:last-child img {
    width: 100%;
    height: auto;
}

.about-section__bottom>div:last-child a {
    margin-left: 25px;
    font-weight: 700;
    font-size: 24px;
    text-decoration: underline;
    align-self: center;
    justify-self: flex-end;
    position: absolute;
    bottom: 26px;
    left: 0;
    max-width: 150px;
}

.about-section__bottom>div:last-child a::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -25px;
    width: 55px;
    height: 55px;
    background-color: transparent;
    border: 3px solid transparent;
    border-left-color: var(--color-blue);
    border-bottom-color: var(--color-blue);
    user-select: none;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .about-section__top {
        display: grid;
        width: 100%;
    }

    .about-section__top p:first-child {
        max-width: none;
    }

    .about-section__top p:nth-child(2) {
        max-width: none;
    }

    .about-section__top p:last-child {
        grid-column: 1/3;
        max-width: none;
        padding-right: 10%;
    }

    .about-section__bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-section__bottom>div:first-child {
        max-width: none;
    }

    .about-section__bottom>div:last-child {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section__top {
        gap: 24px;
    }

    .about-section__top p {
        font-size: 28px;
    }

    .about-section__top p:nth-child(2) {
        padding-right: 10%;
    }

    .about-section__top p:last-child {
        grid-column: 1/2;
    }

    .about-section__bottom>div:first-child p {
        font-size: 18px;
    }

    .about-section__bottom>div:last-child a {
        font-size: 16px;
    }
}