@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
   font-family: Montserrat, sans-serif; 
}
header {
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 10px 5%;
    width: 100%;
    background-color: white;
    box-shadow:0px 0.2px 3px rgba(0,0,0,0.3);
    position: fixed;
    z-index: 1;
}
.logo{
    width: 250px;
    cursor: pointer;
}
.nav__links{
    list-style: none;
    margin: 10px; 
}
.nav__links li {
    display:inline-block;
    padding: 0px 20px;
}

.nav__links li a {
    transition: all 0.3s ease 0s;
    text-decoration:none;
    color: rgb(28, 121, 190);
    
}
.nav__links li a:hover{
    color: #51B6F4;
    transition: 0.3s;
}

.nav__links li ul a {
    display: flex;
    flex-direction: column;
}

.nav__sublinks{ 
    display: flex;
    flex-direction: column;
    position: absolute;
    background: #fff;
    padding-left: 0px;
    margin-left: -20px;
}
.nav__sublinks a{ 
 padding: 5px;
}
.nav__links li ul li {
    display:inline-block;
    padding: 0px 15px;
}
.nav__links li ul li:hover{ 
background-color: rgba(28, 121, 190, 0.43);
transition: 0.1s;
}
.nav__links li ul li a:hover{
    color: #fff;
    transition: 0.1s;
}
.nav__links li ul{
    display: none;
}

.nav__links li:hover > ul {
    display:flex;
}
.flecha	{
	display: inline-block;
	width: 7px;
	height: 7px;
	margin: 3px;
	border-top: solid 2px;
	border-right: solid 2px;
    transform: rotate(135deg);
}
body{
    background-color: #fff;
    display: flex;
    flex-direction: column;
}
.container-slide{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background-color: aliceblue;
}
.container-all{
    margin-top: 73px;
    position: relative;
    max-width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.imageslide{
    max-width: 100%;
    object-fit: fill;
    filter: brightness(0.6);
}


.slide{
    display: flex;
    transform: translate3d(0,0,0);
    transition: all 600ms;
    animation-name: autoplay;
    animation-duration: 6.5s;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}
.item-slide{
    position: relative;
    display: flex;
    flex-shrink: 0;
    flex-grow: 0;
    max-width: 100%;
    align-items:center;
}
.pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pagination-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid white;
    width: 14px;
    height: 14px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255,255,255, 0.5);
    margin: 0 10px;
    text-align: center;
    transition: all 300ms;
}

.pagination-item:hover{
    transform: scale(1.2);
    background-color: #1C79BE;
}

.textoslide{
  font-size: 2vw;
    color: white;
    position: absolute;
    width: 100%; 
    text-align: center;
}

.botonslider{
    border: solid 1px white;
    background: transparent; 
    width: 9vw;
    padding: 5px;
    color: white;
    border-radius: 8px;
    font-size: 0.5em;
    font-family: Montserrat;
}
.botonslider:hover{
    background-color:rgba(63, 150, 210, 0.8);
    transition: 0.3s;
    color: white;
}

.titulos-slide{
    font-size: 1.2em;
}
.parrafo-slide{
    margin-top: 15px;
    font-size: 0.9em;
}

.contenidoMain{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.contenedorArticulo{
    align-content: center;
    justify-content: center;
    text-align: center;
    width: 49%;
    margin-bottom: 50px;
}

.contenedorArticulo h1{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1C79BE;
    padding: 20px;
    color: white;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2) inset;
    font-size: 2.5vw;
    margin-bottom: -2px;
    min-height: 80px;
}
.contenedorArticulo.colordiff h1{
    background-color: #3F96D2;
}
.logocontenido{
    width: 4vw;
}
.contenedorArticulo p{
   font-size: 1.2vw; 
}
.subcontenido{
    display: flex;
    flex-direction: column;
    background-color: #C7EAFB;
    height: 300px;
    padding:30px 110px 15px 110px;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2) inset;
    min-height: 350px;
}
.espaciadoArticulo{
margin-bottom: 40px;
color:#37AE4A;
    margin-top: -20px;
}

.botoncontenido{
    border: solid 1px;
    background: transparent; 
    width: 120px;
    padding: 5px;
    color: #1C79BE;
    border-radius: 8px;
    font-size: 0.9em;
    font-family: Montserrat;
    margin-top: 1vw;
    margin-bottom: 1vw;
}
.botoncontenido:hover{
    background-color:rgba(63, 150, 210, 0.8);
    transition: 0.3s;
    color: white;
}
.contenidoaudivisual{
    display: flex;
    justify-content:center; 
    margin-bottom: 50px;
}
.contenidosecundario{
    display: flex;
    background: #C7EAFB;
    justify-content: space-between;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2) inset;
    height: 25vw;
    min-height: 300px;
    border-style: solid;
    border-width: 5px 0px;
    border-color: #3F96D2;
}
.contenidosecundario div{
    display: flex;
    flex-direction: column;
    justify-content:center;
    padding: 0 200px 0 200px;
}
.titulocontenidoproducto{
   color: #1C79BE;
font-size: 3em;
}
.parrafocontenidoproducto{
   color: black;
    font-size: 2vw;
    padding-right: 20px;
}
.contenidoterciario{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.contenedorterciario{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: rgba(225,247,255,0.3);
    margin-top: 40px;
    width: 48%;
    color: black;;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2) inset;
    border: solid 2px rgba(28, 121, 190, 0.38);
    
}
.contenedorterciario h1{
    padding: 10px;
   font-size: 1.8vw; 
}
.contenedorterciario p{
    padding: 20px;
    font-size: 1.3em;
}

.contenedorterciario img{ 
    width: 60%;
}

.TituloColor{
color: #1C79BE;
}

footer{
    background-color: rgba(255,255,255,0.7);
    border-top: solid 5px #1C79BE;
    margin-top: 20px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3); 
}
.footermain {
    display: flex;
    justify-content: space-between;
}
footer img{
    width: 400px;
}
.listasfooter{
    display: flex;
    width: 70%;
    padding: 20px;
}
.listasfooter ul{
    display: flex;
    flex-direction: column;
    width: 70%;
    padding: 20px;
    list-style: none;
}
.listasfooter ul h1{
    font-size: 1.2vw;
    color: #3F96D2;
    
}
.listasfooter li{
    margin-top: 5px;
}
.listasfooter li a:hover{
    color: #3F96D2;
    text-decoration: underline;
    transition: 0.3s;
}
.listasfooter li a{
    text-decoration: none;
    color: darkgrey;
    font-size: 1vw;
}
.footersecundario{
    border-top: solid 1px rgba(63, 150, 210, 0.31);
    display: flex;
    justify-content: center;
    color: gray;
    padding: 5px;
}
.contenidosecundarioarticulo{
    display: flex;
    flex-direction: column;
    background: #C7EAFB;
    justify-content: center;
    padding: 80px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2) inset;
    height: 25vw;
    min-height: 300px;
    margin-bottom: 50px;
    border-style: solid;
    border-width: 5px 0px;
    border-color: #3F96D2;
}
.titulocontenidoarticulo{
    text-align: center;
    margin-bottom: -10px;
    font-size: 40px;
    color: #1C79BE;
    
} 
.subtitulocontenidoarticulo{
    text-align: center;
    margin: 0px 400px 20px 400px;
    padding-bottom: 10px;
    font-size: 20px;
    border-bottom: solid 2px rgba(63, 150, 210, 0.3);
    color: #37AE4A;
}
.parrafocontenidoarticulo{
    text-align: center;
    padding: 5px;
    font-size: 20px;
    margin: 0px 200px 20px 200px;
    color: black;
}
.contenedorarticulos{
    display: flex;
    justify-content: center;
    align-content: center;
}
.contenedorarticulo{
    margin: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contenedorarticulo img{
    width: 100px;
}
.contenedorarticulo img:hover{
    margin-top: -10px;
    margin-bottom: 10px;
    transition: 0.3s;
}
.contenidocategorias{
    display: flex;
    justify-content:center; 
    margin-bottom: 50px;
    flex-direction: column;
}
.contenidosecundarioarticulo img{
width: 250px;
}

.Contacto{
    margin-top: 75px;
    margin-bottom: -20px; 
    background: url(/images/Img//negociofondo.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.formulario .form .form-header .form-titulo{
   font-weight: normal;
    font-family: Montserrat;
    color: #3F96D2;
    text-align: center;
    padding: 14px 0px;
    
}
.formulario .form .form-header .form-titulo span{
   color:rgba(20, 19, 19, 0.57);
}
.formulario .form{
    background: rgba(63, 150, 210, 0.28);
    width: 90%;
    max-width: 650px;
    margin: auto;
    padding: 5px 35px;
    margin-top: 30px;
    padding-bottom: 30px;
    border-radius: 15px;
    border: solid 3px #3F96D2;
}

.formulario form .form-lable{
    display: block;
    color: rgba(0,0,0,0.5);
    font-size: 16px;
    position: relative;
}

.caja-1 {
    height: 40px;
    background: rgba(0,0,0,0.3);
    border: none;
    outline: none;
    border-bottom: 2px solid #3F96D2;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 2px;
    font-size: 14px;
    color: white;
    padding-left: 5px;
}
.caja-1::placeholder {
color: rgba(255, 255, 255, 0.72);
}

.caja-2 {
    height: 100px;
    background: rgba(0,0,0,0.3);
    border: none;
    outline: none;
    border-bottom: 2px solid #3F96D2;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 2px;
    font-size: 14px;
    color: white;
    padding-left: 5px;
}
.caja-2::placeholder {
color: rgba(255, 255, 255, 0.72);
}
.formulario .form .btn-submit {
    width: 100%;
    font-family:Montserrat; 
    outline: none;
    background: rgb(80, 166, 255);
    font-size: 16px;
    border: none;
    color: white;
    padding: 15px 0px;
    cursor: pointer; 
}
.formulario .form .btn-submit:hover{
    background: rgba(43,112,184,0.9);
    transition: 0.3s;
}
.Contacto .contenedorbanner{
    margin-top: 73px;
    position: relative;
    max-width: 100%;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;  
}
.contenedorinformacion{
  background: rgba(63, 150, 210, 0.32);
    width: 80%;
    margin: auto;
    padding: 5px 35px;
    margin-top: 30px;
    margin-bottom: -3px;
    padding-bottom: 30px;
    border-radius: 25px 25px 0px 0px;
    border: solid 3px #3F96D2;
}
.contenedor-trescolumnas{
    display: flex; 
    justify-content: space-between;
    align-items: center;
       line-height: 1em;

}
.contenedorubicacion{
width: 45%;
}
.contenedorventassoporte{
    width: 45%;  
    display: flex;
    flex-direction: column;
    text-align: center;
 
}
.contenedorinformacion {
    color: rgba(20, 19, 19, 0.57);
}

.contenedorubicacion iframe{
    border: solid 5px rgba(20, 19, 19, 0.57);
    padding: 3px;
    border-radius: 15px;
}

.contenido-producto .contenedor-informacion {
    width: 70%;
}
.contenido-producto .contenedor-img-producto img {
    width: 100%;
    margin: auto;
    max-height: 500px;
    min-height: 500px;
    object-fit:cover;
}
.contenido-producto {
    display: flex;
    width: 100%;
    justify-content: space-between;  
}
.lista-caracteristicas{
    text-align: center;
}
.lista-caracteristicas{
list-style: none; 
padding: 0; 
margin-left: 10px; 
}

.lista-caracteristicas li::before { 
content: "\2022";  
display: inline-block; 
padding-right: 20px;
font-size: 60px;
line-height: 25px;
vertical-align: -11px;
width: 15px;
color: #37AE4A;
}
.contenedor-informacion{
    margin: auto;
    flex-direction: column;
} 

/*
.btn.btn-outline-success{
    color: #1160AE ;
    border-color: #1160AE;
}
.btn.btn-outline-success:hover{
    background-color: rgba(17,96,174,0.3);
}
*/
    /* JS */
input[id="1"]:checked ~ .slide {
    animation: none;
    transform: translate3d(0,0,0);
}
input[id="1"]:checked ~ .pagination .pagination-item[for="1"]{
    background:rgba(28, 121, 190, 0.7);
}
input[id="2"]:checked ~ .slide {
    animation: none;
    transform: translate3d(calc(-100%*1),0,0);
}
input[id="2"]:checked ~ .pagination .pagination-item[for="2"]{
    background:rgba(28, 121, 190, 0.7);
}
input[id="3"]:checked ~ .slide {
    animation: none;
    transform: translate3d(calc(-100%*2),0,0);
}
input[id="3"]:checked ~ .pagination .pagination-item[for="3"]{
    background:rgba(28, 121, 190, 0.7);
}
