main {
    padding-bottom: 12px;
}

.section {
    padding: 0 32px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 32px;
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;

    display: flex;
    align-items: center;
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    max-width: 650px;
    margin: 0;
    margin-top: 12px;
    margin-bottom: 32px;
    font-weight: 400;
    font-size: 15px;
}

.none {
    display: none !important;
}

@media screen and (max-width: 500px) {
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 12px;
    }
}

@media screen and (min-width: 1000px) {
    .section {
        max-width: 900px;
    }
}