/* 
    #9AD5E3 azul bajo
    #1E4162 azul fuerte
    #EEECED blanco
    #9D9D9C gris
*/

*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html{
    margin: 0;
    font-size: 10px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

p{
    font-size: 1.8rem;
}

body
{
    margin: 0;
    font-family: 'Manrope', sans-serif;
    line-height: inherit;
    background-color: white;
    position: relative;
    overflow-x: hidden;
}

@media(min-width:1099px){
    section:not(.contacto):not(.carousel){
        min-height: 100vh;
    }

    .marcas{
        height: 100vh;
    }
}

/* CABECERA */

.h1-header-top-area{
    background: #1E4162;
    padding-bottom: 0;
    padding-top: 12px;
}

.h1-header-info-area{
    width: 100vw;
}

.container {
	width: 100%;
	padding-right: 0;
	padding-left: 15px;
    margin-right: 5vw;
    max-width: 90%;
}

.container img {
	vertical-align: middle;
	border-style: none;
	max-width: 100%;
}

.h1-single-top-block {
	display: inline-block;
    margin-left: 1vw;
    margin-right: .5vw;
}

.h1-single-top-block span, .h1-single-top-block a{
	color: #EEECED;
    font-weight: 300;
    font-size: 1.6rem;
}

.h1-single-top-block strong {
	font-weight: 600;
    color: #EEECED;
    font-size: 1.6rem;
}

.h1-single-top-block i.fa {
    color: #EEECED !important;
    font-size: 1.6rem;
    margin-right: 0.5vw;
}

.h1-logos i.fa{
    margin-left: 0.5vw;
}

.h1-single-top-block ul li{
    display: inline-block;
}

/* BARRA DE NAVEGACIÓN */

nav{
    font-size: 1.8rem;
}

.navbar{
    padding: 0 5vw;
}

.navbar img{
    height: 55px;
}

#navbar{
    transition: top 0.5s;
}

.bg-light{
    background-color: #EEECED !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
	padding-right: 0;
	padding-left: 1.5rem;
}

.navbar-nav{
    align-items: center;
}

.covid{
    color: rgb(200,0,0) !important;
    font-size: 1.8rem;
}
/* SECCION DEL CAROUSEL */

.carousel-item{
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    height: 100%;
}

.carousel-item img{
   background: no-repeat center center scroll;
   background-size: cover;
   filter: brightness(0.35);
}

.carousel-indicators{
    bottom: 1vh;
}

.carousel-indicators li{
    width: 2vw;
    height: 0.5vh;
    margin: 0 0.2vw;
}

.carousel-caption{
    left: 5%;
    right: 5%;
    top: 60%;
    transform: translateY(-42%);
    bottom: initial;
}

.carousel-caption h5{
    font-size: 6.5rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
}

.carousel-caption p{
    margin: auto;
    font-size: 3rem;
    font-weight: 400;
    margin-top: 0.75vh;
}

.logo2{
    display: none !important;
}

@media (max-width:700px){
        .carousel-caption h5{
        font-size: 3rem;
    }
}

@media (min-width:1099px) {
    .carousel-item img{
        width: 100%;
    }
}

@media (max-width:1099px) {

    .carousel-caption{
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .carousel-caption p{
        display: none !important;
    }

    .logo1{
        display: none !important;
    }

    .logo2{
        display: inline !important;
    }
}

/* SECCION DE NOSOTROS */

.info{
    padding-top: 5vh;
}

.info h1{
    text-align: center;
    color: #1E4162;
    font-weight: 900;
    font-size: 3.5rem;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 2vh;
}

.info p{
    font-size: 2rem;
    color: #1E4162;
    width: 80%;
    margin: auto;
    line-height: 3rem;
}

.info-wrap{
    margin: 0 auto;
}

.logos{
    margin: 5vh auto;
}

.mission{
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0 auto;
    text-align: center;
    align-self: center;
    min-height: 300px;
}

.onClickShow{
    background-position: center;
    background-repeat: no-repeat;
    width: 75%;
    border-radius: 30px;
    box-shadow: 0 0 10px 0 black;
    cursor:pointer;
    margin: 0 auto;
}

.onClickShow .card-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    text-align:center;
    opacity:0;
    visibility:hidden;
    width: 100%;
    height: 100%;
    user-select:none;
}

.onClickShow p{
    color: #1E4162;
    font-size: 1.6rem;
    line-height: 2rem;
}

.cards:last-child li{
    color: #1E4162;
    text-align: start;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 2rem;
}

.fade-in{
    opacity: 0;
}

.fade-in.appear{
    opacity: 1;
}

.from-right{
    transform: translateX(75%);
}

.from-left{
    transform: translateX(-75%);
}

.from-right, .from-left{
    opacity: 0;
    transition: opacity 500ms ease-out;
    transition: transform 500ms ease-in;
}

.from-right.appear, .from-left.appear{
    opacity: 1;
    transform: translateX(0);
}

@media(min-width: 900px){
    .onClickShow:hover .card-wrap{
        opacity:1;
        visibility:visible;
        border-radius: 30px;
        box-shadow: 0 0 10px 0 black;
    }
    
    .onClickShow:hover{
        visibility: hidden;
        width: 75%;
    }    

    .fade-1{
        transition: opacity 500ms ease-in-out;
    }
    
    .fade-2{
        transition: opacity 1000ms ease-in-out;
    }
    
    .fade-3{
        transition: opacity 1500ms ease-in-out;
    }
    
    .fade-4{
        transition: opacity 2000ms ease-in-out;
    }
}

@media(max-width: 900px){
    .mission{
        display: grid;
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cards{
        min-height: 300px;
    }

    .onClickShow.show .card-wrap{
        opacity:1;
        visibility:visible;
        border-radius: 30px;
        box-shadow: 0 0 10px 0 black;
        min-height: 300px;
    }

    .onClickShow.show{
        visibility: hidden;
        width: 75%;
    }    

    .fade-1, .fade-2, .fade-3, .fade-4{
        transition: opacity 500ms ease-in-out;
    }    
}

/* SECCION DE SERVICIOS */

.servs{
    margin-top: 35px;
    padding-top: 35px;
    background: white;
}

.servs h5{
    text-align: center;
    color: #1E4162;
    font-size: 3.5rem;
    font-weight: 700;
}

.servs-container{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.material{
    display: inline;
}

.content{
    margin-bottom: 10px;
    height: auto;
}

.content h1{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1E4162;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.content p{
    color: #1E4162;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 2rem;
}

.content img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.servs-row{
    display: grid;
    grid-template-columns: auto auto auto auto;
    filter: invert(50%);
}

.servs-row img{
    justify-content: center;
    max-height: 120px;
    max-width: 120px;
}

.features{
    display: none;
}

.servs ul{
    margin-top: 3.5vh;
    color: #1E4162;
    font-size: 1.5rem;
    line-height: 3rem;
    font-weight: bold;
}

.features img{
    width: 50%;
    filter: drop-shadow(0 .1rem .2rem rgba(0,0,0,.35));
    position: relative;
}

.secret{
    display: none;
}

@media(max-width:1099px){
    .img-wrapper img{
        max-height: 200px;
        width: auto;
    }
}

@media(min-width:1099px){

    .content{
        display: none;
    }
    
    .servs h5{
        margin-bottom: 0;
        font-size: 4rem;
    }

    .servs ul{
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }

    .material{
        display: grid;
        grid-template-rows: 1fr 2fr;
        gap: 25px;
    }

    .secret{
        display: grid;
        width: 100%;
        grid-template-columns: 2fr 3fr;
        margin: 0 auto;
        gap: 15px;
        position: relative;
    }

    .secret img{
        padding-top: 10px;
        padding-bottom: 20px;
        display: block;
        margin-left: 0;
    }

    .secret p{
        color: #1E4162;
        font-size: 1.6rem;
    }

    .secret h1{
        color: #1E4162;
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .servicio-info{
        padding-top: 5px;
    }
 
    .features{
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        column-gap: 30px;
    }

    .features img{
        width: 100%;
        box-shadow: 0 .2rem 1rem rgba(0, 0, 0, 0.9);
        outline: 2px white solid;
        outline-offset: -5px;
    }

    .img-wrap {
        position: relative;
    }

    .img-wrapper img{
        width: 85%;
        height: auto;
        filter: drop-shadow(0 10px 15px black);
    }
    
    .image {
        opacity: 1;
        display: block;
        width: 100%;
        height: auto;
        transition: .5s ease;
        backface-visibility: hidden;
    }
        
    .middle {
        transition: .5s ease;
        opacity: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        text-align: center;
    }
    
    .img-wrap:hover{
        cursor:pointer;
    }

    .img-wrap:hover .image {
        opacity: 0.25;
    }
    
    .img-wrap:hover .middle {
        opacity: 1;
    }
    
    .text {
        background-color: transparent;
        color: #1E4162;
        font-size: 1.8rem;
        padding: 10px 10px;
    }

    .servs-row{
        width: 66%;
        position: absolute;
        bottom: 0;
    }

    .servs-row img{
        justify-content: center;
        width: 50%;
    }
}

/* SECCION DE MARCAS */

.marcas{
    background: no-repeat url("../imagenes/fondo3.jpg");
    background-size: 100% 100%;
    white-space: nowrap;
    overflow: hidden;
    padding-top: 10vh;
    padding-bottom: 10vh;
}
 
.marcas::before{
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.marcas-seccion{
    display: inline-block;
    vertical-align: middle;
    width: 100vw;
}

.container-marcas{
    background: transparent;
    width: 100vw;
}

.container-text{
    margin-top: 0;
    margin-bottom: 10vh;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.container-text h1{
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 4rem;
}

.container-text p{
    color: white;
    font-size: 2rem;
    line-height: 4rem;
    white-space: normal;
}

@media(max-width:1099px){
    .container-text p{
        font-size: 1.6rem;
        line-height: 2.5rem;
    }

    .container-text h1{
        font-size: 3rem;
    }

    .marcas{
        padding-top: 10vh;
    }

    .container-text{
        width: 100%;
    }

    .owl-carousel{
        padding-bottom: 10vh;
    }
}

.owl-carousel{
    padding-left: 10vw;
    padding-right: 10vw;
}

/* SECCION DE CONTACTO */

.contact-container{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2em;
}

.brand span{
    color: #fff;
}

.wrapper{
    box-shadow: 0 0 20px 0 black;
}

.wrapper > *{
    padding: 1em;
}

.company-info{
    background: white;
}

.company-info img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    margin-bottom: 10px;
}

.company-info ul li{
    color: #1E4162;
    font-size: 2rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.company-info ul li a{
    color: #1E4162;
}

.company-info ul{
    text-align: center;
}

.logos li{
    display: inline-block;
}

.logos i.fa{
    font-size: 3.5rem;
    padding-right: 20px;
    padding-left: 20px;
}

@media(max-width:340px){
    .contacto ul li{
        font-size: 1.6rem;
    }
}

/* FORMULARIO */

.contact{
    padding-right: 20px;
    padding-left: 20px;
    background: url("../imagenes/fondo-form.jpg");
    color: white;
}

.contact h3{
    font-size: 3rem;
    font-weight: 800;
}

.contact form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    gap: 20px;
}

.contact form label{
    display: block;
}

.contact form p{
    margin: 0;
    
}

.select-css {
	display: block;
	font-size: 16px;
	font-weight: 400;
    color: #1E4162;
    width: calc(100vw - 80px);
	line-height: 1.3;
	padding: .4em 1.4em .3em .8em;
    max-width: 100%; 
	box-shadow: 0 1px 0 1px rgba(0,0,0,.03);
	border-radius: .3em;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;

}

.contact form .full{
    grid-column: 1 / 3;
}

.contact form input, .contact form textarea{
    width: 100%;
    padding: 0.35em;
    border: 1px solid #c9e6ff;
}

.contact form button{
    background: white;
    color: #1E4162;
    border: 0;
    text-transform: uppercase;
    width: 35%;
    border-radius: 20px;
    padding: 0.5em;
}

.contact form button:hover, .contact form button:focus{
    background: #9D9D9C;
    color: #1E4162;
    outline: 0;
    transition: background-color 1s ease-out;
}

.pcform{
    display: none;
}

/* PANTALLAS GRANDES */

@media(min-width:1099px){
    .contacto{
        margin-top: 15x;
        margin-bottom: 15px;
    }
    
    .wrapper{
        display: grid;
        grid-template-columns: 1fr 2fr;
    }

    .wrapper > *{
        padding: 2em;
    }

    .company-info{
        padding-left: 30px;
    }

    .company-info ul{
        text-align: left;
        padding-top: 17.5%;
        padding-bottom: 0%;
    }

    .stuff{
        display: grid;
        grid-template-columns: 1fr 7fr;
    }

    .logos i.fa{
        padding-left: 15px;
        padding-right: 15px;
    }

    .logos {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .select-css{
        width: 733.33px;
    }

    .pcform{
        display: initial;
    }

    .mobileform{
        display: none;
    }
}

/* PIE DE PAGINA */

footer{
    background: url("../imagenes/fondo-form.jpg");
    margin-top: auto; 
}

.footer-distributed{
    position: relative;
    bottom: 0;
	width: 100%;
	text-align: center;
    padding: 10px 0;
}

.footer-distributed p{
    margin-bottom: 0;
    color: #1E4162;
    font-size: 1.6rem;
    width: 50%;
    margin: 0 auto;
}

.footer-distributed p a{
    color: #1E4162;
}

.footer-distributed p, ul{
    font-size: 1.6rem;
    color: #1E4162;
    font-weight: 400;
    line-height: 2.5rem;
}