.cols-2,
.cols-3 {
    display: -ms-grid;
    display: grid;
    gap: 2rem;
}

@media (max-width: 1080px) {
    .content-wrapper .cols-3 {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    }

    .content-wrapper .cols-2 {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 720px) {
    .content-wrapper .cols-2,
    .content-wrapper .cols-3 {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }

    .arrow.hide {
        display: none;
    }

    .cols {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.cols-2 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
}

.cols-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
}

.cols-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
}


.content-wrapper {
    max-width: 1080px;
    gap: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-inline: auto;
    padding-block: 8rem;
    padding-top: 20vh;
    min-height: 100vh;
    min-height: 100svh;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 2;
    padding-inline: 1rem;
}

.content-wrapper.simple {
    display: block;
}

.content-wrapper a {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: inline-block;
    word-break: break-word;
}

.content-wrapper p {
    padding-bottom: 1em;
}



.content-wrapper > div a:hover {
    text-decoration: underline;
}

.text-center {
    text-transform: uppercase;
    font-size: clamp(1rem, 0.7692rem + 1.0256vw, 2rem);
}

.rows {
    display: -ms-grid;
    display: grid;
    row-gap: 2rem;
}

.texts-wrapper {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}