.group-setta-section {
    background-color: var(--color-gray);
    padding: 98px 0 64px;
    position: relative;
    overflow: hidden;
}

.group-setta-section .background-left-top {
    --bg-size: 224px;
}

.group-setta-section .background-right-top {
    --bg-size: 224px;
}

.group-setta-section .background-right-bottom {
    --bg-size: 335px;
}

.group-setta-section__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-left: 44px;
}

.group-setta-section .group:first-child {
    width: 100%;
    max-width: 486px;
    display: flex;
    flex-direction: column;
}

.group-setta-section .group-setta-section__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
    max-width: 258px;
    position: relative;
}

.group-setta-section .group-setta-section__title::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%);
}

.group-setta-section__container {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

.group-setta-section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

.group-setta-section p+p {
    margin-top: 24px;
}

.group-setta-section .group:last-child {
    position: relative;
    width: 100%;
    max-width: 525px;
}

.group-setta-section .group:last-child::before {
    content: '';
    position: absolute;
    right: 29px;
    top: 60px;
    width: 115px;
    height: 115px;
    background-image: linear-gradient(225deg, var(--color-blue) 50%, transparent 0%, transparent 100%);
    user-select: none;
    pointer-events: none;
}

.group-setta-section__container img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
}

.group-setta-section .group: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;
    z-index: 2;
}

.group-setta-section .group: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;
}

.group-setta-section .btn{
    margin-top: 30px;
}


@media (max-width: 1024px) {
    .group-setta-section__container {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .group-setta-section .group:first-child {
        max-width: none;
    }
}

@media (max-width: 768px) {}