:root {
    --red: #A90B1D;
    --white: #fff;
    --black: #020202;
    --gray: #878787;
    --blue: #4900C7;
}

.title {
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
}

.big-title{
    color: var(--white);
    font-size: 32px;
    font-weight: 900;
}

.big-subtitle{
    color: var(--gray);
    font-size: 24px;
    font-weight: 900;
}

.cards {
    margin: 0 auto;
    max-width: 1060px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.card{
    border-radius: 8px;
    height: 94px;
    padding: 4px 12px 4px 16px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 342px;
    gap: 12px;
    text-align: left;
}

.card-icon{
    width: 48px;
    height: 48px;
}

.card-title{
    font-size: 24px;
    font-weight: 700;
}

.card-text{
    font-size: 14px;
    font-weight: 300;
}

.custom-list {
    list-style: inside !important;
}

.custom-list li{
    display: list-item;
    padding-left: 10px;
    position: relative;
}

.archivo-black-regular {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}