/*MEDIA QUERYS PARA RESOLUCIONES MENORES A 1420PX*/
@media only screen and (max-width: 1420px){
    .serviciosWrapper p{
        font-size: 0.8rem;
    }
}

/*MEDIA QUERYS PARA RESOLUCIONES MOBILE*/
@media only screen and (max-width: 1300px){
/* HEADER */
.nav{
    background: linear-gradient(to bottom, rgba(27,27,27,0.8) 0%,rgba(27,27,27,0.5) 40%, rgba(27,27,27,0) 100%);
    background-color: rgba(27,27,27,0);
    width: 100%;
    height: 10vh;
    z-index: 3;
    transition: all 0.3s;
    position: fixed;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
}

.headerLogo{
    height: 45%;
}

.navMenu{
    /* color: white; */
    font-size: 1.2rem;
    width: 50vw;
    height: calc(100vh - 10vh);
    background-color: rgb(27,27,27);
    transition: all 0.4s;
    position: fixed;
    top: 10vh;
    right: -50vw;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
}

.mobileMenuBtn{
    display: inherit;
}

.navMenu span{
    cursor: pointer;
    height:  4vh;
    transition: color 0.2s;
    position: relative;
    display: flex;
    align-items: center;
}

.navMenu span:before{
    content: '';
    background-color: #759CBE;
    width: 0%;
    height: 2.5px;
    border-radius: 10px;
    transition: width 0.2s;
    position: absolute;
    bottom: 0.3vh;
    margin: auto;
    left: 0;
}

.navMenu span:hover{
    color: #72A5D3;
}

.navMenu span:hover::before{
    width: 100%;
}


/* SECCIONES */
.sectionsWrapper{
    margin: auto;
    margin-top: 4vh;
    width: 100%;
    /* background-color: rgb(236,237,239); */
    padding: 3vh 8vw;
    font-family: 'Lato', sans-serif;
/*    overflow: hidden;*/
}

.sectionTitle{
    font-size: 1.6rem;

    color: #0fb0ee;
    margin-bottom: 5vh;
    position: relative;
}

.sectionTitle:before{
    height: 3px;
    bottom: -12px;

    content: '';
    position: absolute;
    width: 35%;
    border-radius: 2px;
    background-color: #0fb0ee;
    left: 2%;
}


/* SECCION NOSOTROS */
.sectionNosotros{
    flex-flow: column nowrap;
}

.nosotrosLeft{
    width: 100%;
}

.nosotrosLeft:before{
    display: none;
}

.nosotrosLeft img{
    display: none;
}

.nosotrosRight{
    width: 100%;
    padding: 0 0vw;
}

.nosotrosRight p{
    font-size: 1rem;
    margin-bottom: 2vh;
}


/* SECCION AREAS */
.nosotrosArea{
    width: 45%;
    padding: 1vh 1vh 5vh 1vh;
    margin-bottom: 6vh;
}

.nosotrosArea:nth-child(1){
    margin: 0 6% 6vh 6%;
}

.areaCircle{
    font-size: 2rem;
}

.areaCircle:hover{
    font-size: 2.2rem;
}

.areaTittle{
    font-size: 1.1rem;
}

.areaProd{
    font-size: 0.85rem;
}


/* SECCION PRODUCTOS */
.productosSeleccion{
    flex-flow: row wrap;
}

.productosSeleccion span{
    height: 20vh;
    width: 20vh;
    margin-bottom: 2vh;
    font-size: 1.2rem;
}

.productos{
    margin-top: 2vh;
}

.producto{
    width: 95%;
}

.productoTitle{
    font-size: 0.9rem;
}

.producto img{
    height: 8vh;
    width: 8vh;
    margin: 1vh 0;
}

.producto .desc{
    font-size: 0.75rem;
}

.accesoriosImg{
    width: 100%;
    height: 40vh;
}

.equiposWrapper .producto{
    width: 98%;
    height: 62vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.equiposWrapper .producto:nth-child(5){
    height: 90vh;
}

.equiposWrapper .producto:nth-child(5) .productoImg,
.equiposWrapper .producto:nth-child(5) .productoImg img{
    top: -15vh;
}

.equiposWrapper .producto .desc{
    width: 100%;
}

.equiposWrapper .producto .productoImg,
.equiposWrapper .producto .productoImg img{
    height: 10vh;
    width: 10vh;
    border-radius: 0;
    position: relative;
    top: -8.5vh;
}

/*SECCION SERVICIOS*/
.serviciosWrapper p{
    width: 100%;
    height: 15vh;
    margin: 0 0 2vh 0;
    font-size: 0.7rem;
}

.capacitacion{
    height: 65vh;
}
.capacitacion span{
    font-size: 1.1rem;
    text-align: center;
}

.capacitacion p{
    padding: 0 1%;
    font-size: 0.8rem;
    text-align: center;
    position: relative;
}

.servicionsInfoEmpresa{
    font-size: 0.8rem;
    align-items: flex-start;
}


/*SECCION CONTACTO*/
#cotizacionForm input[type='text'],
#cotizacionForm input[type='email'],
#contactoForm input[type='text'],
#contactoForm input[type='email']{
    font-size: 1rem;
    width: 100%;
    margin-bottom: 2vh;
}

#contactoForm input[type='email']{
    margin-right: 0;
}

#cotizacionForm input[type='submit'],
#contactoForm input[type='submit']{
    width: 50%;
    font-size: 1rem;
    height: 8vh;
}

/* PRODUCT FULL VIEW */
.fullViewProduct{
    width: 90vw;
    height: 95vh;
    margin: 2vw auto;
    border: 1px solid black;
    border-radius: 8px;
    display: flex;
    flex-flow: column nowrap;
}

.imgSide {
    width: 100%;
    height: 70%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.imgSide h1,
.imgSide h2 {
    height: 20%;
    /* line-height: 20%; */
}

.imgSide h1{
    font-size: 1.6rem;
}

.imgSide img {
    max-width: 55%;
    height: auto;
}


.descSide {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.descSide p {
    width: 80%;
    padding: 4vh;
    text-align: center;
    font-size: 1.1rem;
    border: 0px solid black;
}



}
