/*  */


h1.alfa {
    font-size: 1.8em;
}

.hero-section {
    padding: 0;
    display: flex;
    justify-content: center; /* Horizontally centers the children */
    align-items: center;     /* Vertically centers the children */
    
    transform: translateY(-50px);
    height: calc(100vh - 135px);
}




@media (max-width: 1200px) {
    h1.alfa, h2.beta {
        font-size: 2.25em !important;
    }

    h1.gamma {
        font-size: 2.25rem;
    }
    .hero-section {
        height: calc(100vh - 135px);
    }
}


@media (max-width: 991px) {

    .hero-section {
        transform: translateY(0px);
        min-height: calc(100vh - 60px);
        height: auto;
    }
}

@media (max-width: 767px) {
    h1.alfa, h2.beta {
        font-size: 2em !important;
    }

    h1.gamma {
        font-size: 2rem;
    }
    .hero-section {
        transform: translateY(0px);
        min-height: calc(100vh - 60px);
        height: auto;
    }
}

@media (max-width: 576px) {
    h1.alfa, h2.beta {
        font-size: 1.8em !important;
    }

    h1.gamma {
        font-size: 1.8rem;
    }

    .hero-section {
        transform: translateY(0px);
        min-height: calc(100vh - 60px);
        height: auto;
        
    }
}


.box-item-outline--green,
.box-item-outline--purple {
    filter: none;
}