@media (min-width: 768px) {

    /*About us modal*/
    .aboutUs {
        text-align: center;
        font-size: 16px;
        font-weight: bold;
    }

    .div-mission-vision {
        width: 100%;
        padding: 2% 5%;
        display: flex;
    }

    .div-mission-vision>div {
        width: fit-content;
        margin: 5px;
    }

    /* Our program modal*/
    .ourProgram{
        text-align: center;
        font-size: 16px;
        font-weight: bold;
    }

    /*Contact modal*/
    .contact {
        text-align: center;
        font-size: 16px;
    }

}

@media (max-width: 767px) {

    /*About us modal*/
    .aboutUs {
        text-align: center;
        font-size: 16px;
        font-weight: bold;
    }

    .div-mission-vision {
        width: 100%;
        padding: 2% 5%;
    }

    .div-mission-vision>div {
        margin: 5px;
    }

    .div-spacer {
        width: 100%;
        min-height: 2vh;

    }

    /* Our program modal*/
    .ourProgram{
        text-align: center;
        font-size: 16px;
        font-weight: bold;
    }

    /*Contact modal*/
    .contact {
        text-align: center;
        font-size: 16px;
    }

}

.modal-dialog>.modal-content>.modal-header h4 {
    margin-inline-start: auto;
    text-align: center;
}

/*About us modal*/

#mission {
    color: #fff;
    background-color: #0280a9;
    text-align: center;
}

#vision {
    color: #fff;
    background-color: #f38020;
    text-align: center;
}

.modal-dialog>.modal-content>.modal-header {
    background-color: #00558f;
    color: #ffff;
}

/* Our program modal*/
.ourProgram-areas-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    content: url(../img/nuestro_programa.png);
}

.steps-container {
    background-color: #4cbed844;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}

.steps-body {
    padding: 20px;
    justify-content: space-between;
}

.steps-body>h1 {
    font-size: 24px;
    font-family: 'OverPass-bold' !important;
}

.steps-body p {
    font-size: 14px;
    font-family: 'OverPass-light' !important;
    font-weight: normal !important;
}

.ourProgram-paragraph{
    padding: 15px;
}


.our-services-container{
    margin-top: 15px;
}

.our-services-title {
    margin-top: 15px;
    color: #fff;
    background-color: #00558f;
}

.our-services-body {
    margin-top: 15px;
    text-align: justify !important;
    font-family: 'OverPass-light' !important;
    font-weight: normal !important;
}

/* Contact modal */
.contact-paragraph{
    padding: 15px;
}

#email-logo {
    content: url(../img/32/email.png);
}



/*Modal de espera al enviar formulario*/
#loading-animation-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading-animation-div>h4 {
    margin-top: 15px;
}

.preloader {
    width: 45px;
    height: 45px;
    border: 5px solid #92d2c5;
    border-top: 5px solid #f38020;
    border-radius: 50%;
    animation-name: girar;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    margin-right: 15px;
}

@keyframes girar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
