@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
:root{
    --azul: #0164B0;
    --azul-dark: #00194B;
    --gris: #E5E5E5;
    --gris-dark: #404040;
    --light: #C8E8F8;
    --morado: #660EFF;
    --naranja: #FF0E00;
}
body{
    max-width: 1266px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}
section{
    padding: 20px;
}
h1{
    font-size: 24pt;
}
h2{
    margin-top: 0;
    font-size: 22pt;
    color: var(--azul);
}
h3{
    margin: 0;
    font-size: 13pt;
}
p{
    margin: 0;
    font-size: 12pt;
}
.one{
    background: var(--azul);
    display: grid;
    grid-template-columns: 55% 38%;
    justify-content: space-between;
    color: #fff;
}
.center{
    text-align: center;
}
.right{
    text-align: right;
    margin: 0 32px 20px 0;
}
.products{
    background: rgba(0, 0, 0, 0.25);
    padding: 25px;
    border-radius: 15px;
}
form{
    background: rgba(0, 0, 0, 0.25);
    width: 75%;
    margin: 0 auto;
    padding: 25px;
    border-radius: 15px;
}
button{
    background: #45B800;
    border: 1px solid #45B800;
    width: 200px;
    height: 40px;
    font-size: 14pt;
    font-weight: 600;
    color: #fff;
    border-radius: 5px;
}
button:hover{
    background: #50D500;
}
button:active, button:focus{
    background: #3D8F00;
}
form button{
    border: 1px solid #fff;
}
label{
    font-weight: 600;
    font-size: 9pt;
}
input, select{
    width: 100%;
    font-size: 13pt;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid var(--gris-dark);
    margin-bottom: 10px;
}
#img-home{
    width: 450px;
}
.terminos{
    display: grid;
    grid-template-columns: 20px 92%;
    grid-gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}
.terminos input{
    margin: 0;
}
.terminos p{
    font-size: 6pt;
}
.btn{
    background: var(--azul-dark);
    color: #fff;
    border: 1px solid var(--azul-dark);
    font-size: 14pt;
    font-weight: 600;
    width: 200px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
}
.btn:hover{
    background: #000f2c;
    border-color: #000f2c;
}
.tittle{
    font-weight: 400;
    color: var(--gris-dark);
}
.grid5{
    display: grid;
    grid-template-columns: 18% 18% 18% 18% 18%;
    justify-content: space-between;
}
.prosec{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 10px;
}
.box-auto{
    margin: 10px 20px 0;
}
.box{
    width: 170px;
    height: 96px;
    text-align: center;
    border: 2px solid var(--azul);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    justify-content: space-between;
    background: #Fff;
    color: var(--azul);
}
.box p{
    font-size: 10pt;
}
.box:hover{
    background: var(--azul);
    color: #fff;
}
.box:hover svg{
    fill: #fff;
}
.bg-gris{
    background: var(--gris);
    padding: 25px;
    border-radius: 10px;
}
ul{
    padding: 0 0 0 22px;
    font-size: 12pt;
    list-style-image: url(../img/check-azul.svg);
    margin-bottom: 0;
}
.check{
    list-style-image: url(../img/triangulo.svg);
}
li{
    margin-bottom: 5px;
}
.flex2{
    display: grid;
    grid-template-columns: 65% 30%;
    justify-content: space-between;
}
.img-all{
    width: -webkit-fill-available;
    border-radius: 10px;
}
.padding{
    padding: 25px;
}
.footer{
    background: var(--azul-dark);
    color: #fff;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer p, .footer a{
    color: #fff;
    font-size: 8pt;
}  
.dropdown-content, .dropdown-content2 {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 95px;
    text-align: left;
}
  
.dropdown-content a, .dropdown-content2 a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
} 
.dropdown-content a:hover, .dropdown-content2 a:hover {background-color: #ddd;}
.dropdown:hover .dropdown-content {display: block;}
.movil{
    display: none;
}
@media(max-width: 820px){
    .movil{
        display: block;
    }
    .desk{
        display: none;
    }
    h1 {
        font-size: 18pt;
    }
    h2 {
        font-size: 18pt;
    }
    #img-home {
        width: -webkit-fill-available;
    }
    .one, .flex2 {
        grid-template-columns: 100%;
        grid-gap: 25px 0;
    }
    .flexMovil{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .flexMovil img{
        width: 150px;
    }
    form {
        background: transparent;
        width: -webkit-fill-available;
        margin: 0 auto;
        padding: 0;
        border-radius: 0;
    }
    .products{
        padding: 0;
        background: transparent;
    }
    .box {
        width: 41%;
    }
    .footer {
        flex-direction: column;
        grid-gap: 15px 0;
    }
    .padding0{
        padding: 0;
    }
    .bg-gris{
        border-radius: 0;
    }
    .dropdown-content2{
        min-width: 84%;
        left: 0;
        top: 0;
        height: 100%;
    }
    .show {display: block;}
}
  