/*HEADER*/

.body {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

* {
    user-select: none;
}

*::selection {
    background: none;
}

*::-moz-selection {
    background: none;
}

/*NAV*/

.navbar {
    background-color: #a581f1 !important;
    color: white !important;
}

.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: black !important;
    font-weight: 600;
}

.form-inline button {
    background-color: #834ef5 !important;
    border: none !important;
    color: white;
}

.form-inline button:hover {
    background-color: #773df5 !important;
    color: black;
}

/*LOGO Y NOMBRE PAGINA*/

.logoContenedor {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 10px 20px 10px;
    padding: 10px 0px 10px 15px;
    box-shadow: rgba(90, 93, 95, 0.2) 0px 8px 24px;
    border-radius: 10px;
}

.logoContenedor img {
    width: 80px;
}

#titulo {
    font-size: 50px;
    line-height: 90%;
    font-family: 'Vivaldi', sans-serif;
    font-weight: 600;
}

#tituloNombre {
    color: #EE05F2;
}

#titutloApellido {
    color: #9163F2;
}

@media all and (max-width: 900px) {
    .logoContenedor img {
        width: 70px;
    }

    #titulo {
        font-size: 40px;
    }
}

@media all and (max-width: 450px) {
    .logoContenedor img {
        width: 50px;
    }

    #titulo {
        font-size: 30px;
    }
}

/*SLIDER*/
.contenedorSlider {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
}

.texto {
    box-shadow: rgba(90, 93, 95, 0.2) 0px 8px 24px;
    border-radius: 10px;
    font-size: 25px;
    padding: 15px 0px;
}

.contenedorSlider img {
    opacity: 0.7;
    width: 40%;
    border-radius: 10px;
}

@media all and (max-width: 940px) {
    .texto {
        font-size: 15px;
    }
}

/*CONTACTANOS BODY*/
.contactanosBody {
    margin-top: 30px;
    background-color: #BFBFBF;
    text-align: center;
}

.contactanosBody span {
    color: #09A603;
    font-size: 18px;
}

.contactanosBody p {
    color: black;
    font-size: 20px;
}

/*GALERIA IMAGENES EJEMPLO*/
.lineaEjemplo {
    font: 17px sans-serif;
    margin-top: 30px;
    text-align: center;
    font-weight: 700;
}

@media all and (max-width: 940px) {
    .lineaEjemplo {
        font-size: 15px;
    }
}

.lineaEjemplo {
    position: relative;
    z-index: 1;
}

.lineaEjemplo:before {
    border-top: 1px solid rgb(195, 192, 192);
    content: "";
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 95%;
    z-index: -1;
}

.lineaEjemplo span {
    background: #fff;
    padding: 0 15px;
}

.atencionesEjemplos {
    width: 100%;
}

.atencionesEjemplosContent {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px 40px 40px 40px;
}

.atencionesEjemplosContent div {
    border: 2px solid white;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(90, 93, 95, 0.2) 0px 8px 24px;
    border-radius: 10px;
}

.atencionesEjemplosContent div p {}

.atencionesEjemplosContent div img {
    max-width: 400px;
    padding: 1rem;
}

/*CONTACTANOS*/
.contenedorContactanos {
    display: flex;
    position: fixed;
    bottom: 40px;
    right: 10px;
    justify-content: center;
}

.contenedorContactanos a {
    color: #000000;
}

.contenedorContactanos a:link,
a:visited,
a:active {
    text-decoration: none;
}

.contenedorContactanos p {
    background-color: #bdc2c7;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    margin-right: 5px;
    font-size: 14px;
}

.contenedorContactanos img {
    width: 50px;
}

/*MAPA Y CONTACTO*/
.contenedorMap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 10px;
    padding: 15px 10px;
    box-shadow: rgba(90, 93, 95, 0.2) 0px 8px 24px;
    border-radius: 10px;
}

.contenedorMapImagen {
    width: 60%;
    height: 300px;
    border: none;
}

.contenedorMapTexto {
    padding-top: 25px;
}

.contenedorMapTexto img {
    width: 30px;
}

@media all and (max-width: 900px) {
    .contenedorMapImagen {
        width: 90%;
    }
}

@media all and (max-width: 600px) {
    .contenedorMapImagen {
        height: 100%;
        width: 80%;
    }
    .contenedorMapTexto img {
        width: 25px;
    }
    .contenedorMapTexto p{
        font-size: 14px;
    }
}

/*FOOTER*/
#contenedorFooter {
    margin-top: 30px;
}

.contenedorFooterImg {
    text-align: center;
}

.contenedorFooterImg img {
    width: 30px;
    margin-left: 10px;
}

.contenedorFooterImg img:hover {
    cursor: pointer;
}

.contenedorFooterDerechos {
    margin-top: 30px;
    text-align: center;
}

.contenedorFooterDerechos p {
    font-size: 15px;
}

@media all and (max-width: 900px) {
    .contenedorFooterDerechos p {
        font-size: 12px;
    }
}

@media all and (max-width: 520px) {
    .contenedorFooterImg {
        margin-left: 16%;
        text-align: left;
    }
    .contenedorFooterDerechos p {
        font-size: 10px;
    }
}