.sections {
    max-width: 1334px;
    padding-top: 144px;
    margin: auto;
}

.title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.black-button {
    color: #FFFFFF;
    border-radius: 40px;
    background: #2B2C30;
    box-shadow: -16px -16px 24px -16px rgba(255, 255, 255, 0.10) inset, 16px 16px 24px -16px rgba(0, 0, 0, 0.30) inset;
    height: 56px;
    padding: 0 32px;
    align-content: center;
}

.about {
    color: #1A1A1A;
    text-align: center;
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin: auto;
    margin-top: 32px;
    max-width: 1016px;
}

.name {
    margin: 0;
    text-align: left;
    padding: 0px 32px;
}

.variants {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.show {
    display: none;
}
/*----------*/

.variant {
    padding: 32px;
    border-radius: var(--size-border-radius-card-md, 20px);
    background: var(--color-background-blue-4, #5579D2);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;

    color: #FFFFFF;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%; 
}

.w-240 {
    max-width: 240px;
}

.university {
    display: flex;
    padding: 10px;
    flex-direction: column;
    gap: 80px;
    border-radius: 20px;
    background: radial-gradient(159.22% 120.15% at 0% 100%, #81A0DF 0%, #809FDF 6.67%, #7E9EDF 13.33%, #7B9BDE 20%, #7797DC 26.67%, #7192DA 33.33%, #6A8CD8 40%, #6386D5 46.67%, #5B7FD3 53.33%, #5379D0 60%, #4D73CE 66.67%, #476ECC 73.33%, #436ACB 80%, #3F67CA 86.67%, #3E66C9 93.33%, #3D65C9 100%);
}

.text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 22px;
    gap: 74px;

    color: #FFFFFF;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.size16 {
    font-size: 16px;
}

.solution {
    display: flex;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: -1px -1px 2px 0 #FFF inset, 1px 1px 2px 0 #FFF inset;

    .comment {
        color: #1A1A1A;
        font-family: Manrope;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 140%;
        max-width: 280px;
    }
}

@media (max-width: 839px){
    .show {
        display: block;
        margin: 40px auto 0px;
        width: fit-content;
    }

    .hide {
        display: none;
    }
    /*----------------*/

    .column {
        display: flex;
        flex-direction: column;
    }

    .variant {
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

    .text {
        display: flex;
        flex-direction: column;
        gap: 24px;
        font-size: 16px;
    }

    .university {
        gap: 40px;
    }
}

@media (max-width: 599px){

    .about {
        font-size: 24px;
    }

    .name {
        padding: 0px 24px;
    }
    /*----------*/

    .variant {
        padding: 24px;
    }

    .university {
        .variants {
            display: flex;
            flex-direction: column;
        }
    }
}