@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

:root {
    --off-white: #F1F6F9;
    --black: #212A3E;
    --blue-weight: #394867;
    --grey: #9BA4B5;
    --just-white: #fff;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background-color: var(--off-white);
}

/* header */

#header-nav {
    /* padding-top: 20px; */
    /* border-bottom: 1px solid #201E1C; */
    background: var(--black-blue);
}

#menu {
  padding-top: 20px;
  background: var(--just-white) !important;
}

#menu a {
  font-size: 18px;
  /* font-weight: bold; */
  color: var(--grey);
}

.navbar-toggler-icon {
  background-color: var(--yellow);
}

#menu a:hover {
    color: var(--blue-weight);
    border-bottom: 2px solid var(--blue-weight);
}

/* Servicio */
#objetivos-seccion {
    margin-bottom: 100px;
}

#tarjeta-servicio {
    margin: 30px;
    border-radius: 15px;
    box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.16);
    background-color: var(--just-white);
}

#tarjeta-servicio img {
    padding: 10px;
    border-radius: 100px;
    box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.16);
    position: relative;
    top: -40px;
}

#descripcion-tarjeta {
    position: relative;
    top: -40px;
}



/* Media queries*/

@media (max-width: 1200px) {
    #local {
        flex-wrap: wrap;
        padding-top: 30px;
    }
    .wrapper {
        display: flex;
        justify-content: space-between;
        width: 90%;
        margin: auto;
        padding-top: 50px;
    }
    #contacto-card {
        margin-right: 20px;
    }
    #horario-atencion {
        margin-top: 0px;
        padding-bottom: 30px;
    }
    #img-p-footer {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        margin-left: 0px;

    }
}

@media (max-width: 1080px) {
    #intro-titulo {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 990px) {
    #intro-titulo1 {
        width: 100%;
    }
    #intro {
        background: rgb(186,186,186);
        background: linear-gradient(180deg, rgba(186,186,186,1) 12%, rgba(32,30,28,1) 63%);
    }
    #intro h1 {
        padding-top: 10px !important;
    }
    #intro img {
        width: 200px;
        height: 200px;
    }
    .red-web{
        display: none;
    }
}

@media (max-width:768px) {
    .carousel-inner .carousel-item img {
        width: 100%;
    }
    #servicio-secion {
        flex-wrap: wrap;
        justify-content: center !important;
    }
    #intro-titulo {
        margin-right: 20px !important;
        margin-top: 30px;
    }
    .servicio-fila {
        width: 100% !important;
    }
    #logos-footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: center !important;
        text-align: center;
    }
    #contenedor-footer {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    #img-p-footer {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap;
        text-align: center !important;
    }
}

@media (max-width:700px) {
    .wrapper {
        display: inline-block !important;
        margin-left: 20px;
    }
    #horario-atencion {
        margin-top: 30px;
    }
    .logimg{
        display: block;
        margin: auto;
        max-width: 100%;
        height: auto;    
    }
    .logimg img{
        display: inline-block;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .icono-wrap {
        flex-wrap: wrap;
        justify-content: center !important;
    }
    #contacto-card {
        margin-right: 0px;
    }
    #footer-img {
        position: relative;
        top: -60px;
    }
    #img-p-footer{
        text-align: center !important;
    }
    #contenedor-footer {
        text-align: center !important;
    }
    
}