.card {
    border: none;
}
.even-odds .row:nth-child(even) .col-16:nth-child(1) {
    order: 1;
}
.even-odds .row:nth-child(even) .col-16:nth-child(2) {
    order: 0;
}
.grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.grid .grid-section:nth-child(3n + 1) {
    grid-column: 1;
    grid-row: 1 / 3;
}
.grid .grid-section:nth-child(3n + 2) {
    grid-column: 2;
    grid-row: 1;
}
.grid .grid-section:nth-child(3n + 3) {
    grid-column: 2;
    grid-row: 2;
}
.grid-section {
    margin-bottom: 1rem;
}
.grid-section .card {
    border-radius: 8px;
    box-shadow: 0px 4px 25px 0px rgba(87, 52, 0, 0.07);
}
.card-title {
    color: var(--text-color);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 47px;
    text-align: left;
}
.card-title.main-title {
    font-size: 45px;
    line-height: 55px;
}
.grid-section .card-title {
    font-size: 20px;
    line-height: 26px;
}

.card-text,
.card-text * {
    color: var(--text-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.card-text.main-text,
.card-text.main-text * {
    font-size: 20px;
    line-height: 30px;
}
.card-text a {
    color: var(--color);
    font-weight: 600;
    text-decoration: underline;
}
.card-text a:hover {
    color: var(--color);
}
.card-text ul {
    padding-inline-start: 30px;
}
.card-text li {
    position: relative;
    list-style-type: none;
    line-height: 35px;
}
.card-text li:before {
    content: "";
    position: absolute;
    top: 6px;
    left: -30px;
    width: 22px;
    height: 22px;
    background-image: url(/dist/images/check-custom.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media (max-width: 749px) {
    .even-odds .row:nth-child(even) .col-16:nth-child(1) {
        order: 0;
    }
    .even-odds .row:nth-child(even) .col-16:nth-child(1) .card-body {
        padding-top: 0;
    }
    .even-odds .row:nth-child(even) .col-16:nth-child(2) {
        order: 1;
    }
    .card-title.main-title {
        text-align: center;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .grid .grid-section:nth-child(3n + 1),
    .grid .grid-section:nth-child(3n + 2),
    .grid .grid-section:nth-child(3n + 3) {
        grid-column: unset;
        grid-row: unset;
    }
}