/*
 * Services style for gallura template.
 */

/* Services section */
.services {
    padding: 3em 0.84%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.vertical-product-title {
    padding: 2em 0 0;
    text-align: center;
    text-transform: capitalize;
    font-size: 1.5em;
}

.landing-title {
    padding: 0 0 2em;
    text-align: left;
    text-transform: uppercase;
    font-size: 1.5em;
    color: var(--green);
}

/* Mobile menu activates */
@media screen and (max-width: 768px) {
    .services {
        padding: 3em 0;
    }
}

@media screen and (max-width: 576px) {
    .services {
        padding: 3em 5%;
    }
}