/*RESET*/
*{
    margin: 0;
    padding: 0;
    font-family: 'montserrat';
    box-sizing: border-box;
}
.disabled{
    cursor: not-allowed;
}
body {
    position: relative;
    height: auto;
      overflow-x: hidden;
}
/*RESET*/
@import "https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css";

*{
  margin:0; padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  text-decoration: none;
  font-family: 'montserrat';

}

header .header-1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:#11507A;
  width: 100%;
  padding:10px 20px;
}

header .header-1 .logo{
  color:crimson;
  font-size: 25px;
}

header .header-1 form{
  display: flex;
}
    header .header-1 form #txtGuiaENAC {
        height: 40px;
        width: 600px;
        background: white;
        outline: none;
        border: 2px solid #0057aa;
        color: #333;
        padding: 0 10px;
        font-size: 17px;
    }

    header .header-1 form #btnBuscar {
        height: 40px;
        background: #0057aa;
        color: #fff;
        cursor: pointer;
        line-height: 40px;
        text-align: center;
        border-style: none;
        font-size: 14px;
    }


        header .header-1 form #btnBuscar:hover {
            color: #fff8;
        }

#menu{
  font-size: 30px;
  color:#fff;
  cursor: pointer;
  display: none;
}

/* media queries  */

@media (max-width:991px) {

    header .header-1 form #txtGuiaENAC {
        width: 400px;
    }
}

@media (max-width:766px) {

    header .header-1 form #txtGuiaENAC {
        width: 100%;
    }
}

@media (max-width:500px) {

    header .header-1 {
        flex-flow: column;
    }

        header .header-1 form {
            padding-top: 10px;
        }
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #0057AA;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav > a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Add an active class to highlight the current page */
.activar {
  background-color: #009adc;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdownM {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdownM .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #11507A;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 99;
}

/* Style the links inside the dropdown */
.dropdown-content > a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav > a:hover, .dropdownM:hover .dropbtn {
  background-color: #009adc;
  color: white;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content > a:hover {
  background-color: #009adc;
  color: white;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdownM:hover .dropdown-content {
  display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 773px) {
  .topnav > a:not(:first-child), .dropdownM .dropbtn {
    display: none;
  }
  .topnav > a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 773px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive > a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive > a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdownM {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdownM .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}
.logo img{
    padding-top: 5px;
    width: 150px;
    transition: .5s;
}
.logo img:hover {
    transform: scale(1.1);
    transition: .5s;
    cursor: pointer;
}
/****************** SECCION BANNER | HERO ************************/
#banner-hero {
    position: relative;
    width: 100%;
    border-radius: 6px;
    margin-bottom: 60px;
}

.contenido-hero > img {
    width: 100%;
    background-size: cover;
    background-position: bottom;
}

#banner-hero:before {
    content: '';
    background: rgba(77,77,92,0.6);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 1;
}

.contenido-hero {
    position: relative;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .contenido-hero span {
        font-weight: 600;
        position: absolute;
        z-index: 2;
        top: 35%;
        text-transform: uppercase;
        font-size: 43px;
        padding: 10px;
        color: #fff;
    }

    .contenido-hero p {
        position: absolute;
        text-transform: uppercase;
        line-height: 1.8;
        color: #fff;
        font-size: 20px;
        text-align: justify;
        padding: 20px;
        margin-top: 15%;
        z-index: 1;
    }

@media only screen and (min-width:220px) and (max-width: 424px) {
    .contenido-hero span {
        font-size: 14px;
    }

    .contenido-hero p {
        font-size: 12px;
    }
}

@media only screen and (min-width:425px) and (max-width: 680px) {
    .contenido-hero span {
        font-size: 21px;
    }

    .contenido-hero p {
        font-size: 12px;
        margin-top:100px;
    }
}


@media only screen and (min-width:681px) and (max-width: 880px) {
    .contenido-hero span {
        font-size: 35px;
    }

    .contenido-hero p {
        font-size: 14px;
        margin-top:170px;
    }
}
@media only screen and (min-width:280px) and (max-width: 424px) {
    .contenido-hero span {
        font-size: 18px;
    }

    .contenido-hero p {
        font-size: 10px;
        margin-top: 100px;
    }
}

/******************* SECCION | COTIZADOR *******************************/
label {
    text-transform: uppercase;
    font-size: 14px;
}

.container-cotizador{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100% !important;
    padding-top: 30px;
    box-sizing: border-box;
}

.container-cotizador-col{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    align-content: center !important;
    box-sizing: border-box;
}
.container-cotizador-col-col{
    display: grid;
    width: 90%;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    align-self: flex-start;
    box-sizing: border-box;
    padding-left: 5%;
    padding-bottom: 20px;
}

.chosen-container-single .chosen-single{
    border: 2px solid #0057aa !important;
}
.form-group{
    display: flex;
    width: 90% !important;
    flex-direction: column;
    margin-bottom: 2rem;
}

.form-group2{
    display: flex;
    width: 90% !important;
    flex-direction: column;
    margin-bottom: 2rem;
}

.chosen-container{
    justify-content: center;
    align-content: center;
    width: 100% !important;
}
.container-numeros{
    display: flex;
    justify-content: baseline;
}
.form-group1-text{
    display: flex;
}
.form-group1-text > label{
    width: 100%;
    margin-right: 180px;
  margin-left: 10px;
}
.btn{
    text-decoration: none;
    padding: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff !important;
    background-color: #0057aa !important;
    border-radius: 6px;
    margin-bottom: 20px;
    transition: .3s;
  }
  .btn:hover{
    transition: .3s;
    transform: scale(1.05);
    color: #fff;
    background-color: #009adc;
}
.container-resultado{
    width: 90%;
    display: flex;
    margin-left: 70px;
    flex-wrap: wrap;
    margin: auto;
}
.container-cotizador .inp{
    width: 30%;
    border: 1px solid #0057aa;
    border-radius: 6px;
    font-weight: 400;
    font-size: 16px;
    padding: 5px;
    align-items: baseline;
    box-sizing: border-box;
}

.result-inp{
    background-color: #fff;
    border: none;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
    width: 20%;
    margin-left: 10px;
    padding: 5px;
    border-radius: 6px;
}
.moneda{
    color: #009adc;
    font-size: 40px;
    font-weight: 600;
    margin-left: 30px;
}
#info{
    line-height: 1.8;
    font-size: 14px;
    text-transform: uppercase;
    text-align: justify;
}
/***************** SECCION COTIZADOR | RESPONSIVE **********************/
@media (max-width: 800px){
    .container-cotizador-col{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    .container-numeros{
    display: flex;
    width: 700px;
    justify-content: baseline;
}
}
@media (max-width: 558px){
    .result-inp{
        width: 95px;
        font-size: 24px;
    }
}
@media (max-width: 400px){
    .moneda{
        margin-left: 5px;
    }
    .chosen-container{
    justify-content: center;
    align-content: center;
    width: 80% !important;
}
}

/******************* BOTON | IR ARRIBA *******************************/
.ir-arriba {
    position: fixed;
    bottom: 110px;
    margin-right: 30px;
    width: 40px;
    height: 40px;
    background: #009adc;
    border-radius: 20px;
    border-style: none;
    padding: 5px;
    cursor: pointer;
    transition: all 300ms ease;
    z-index: 1;
}

.ir-arriba img {
    width: 25px;
    height: 20px;

}

.ir-arriba:hover {
    transform: scale(1.2);
}


/****************** SECCION BOTON | WHATSAPP  ************************/
.btn-whatsapp {
    display:block;
    width:70px;
    height:70px;
    color:#fff;
    position: fixed;
    right:20px;
    bottom:20px;
    border-radius:50%;
    line-height:80px;
    text-align:center;
    z-index:999;
}

.btn-whatsapp img:hover{
    transform: scale(1.1);
    transition: .5s;
}

.txt-cotizador{
    font-size: 16px;
    text-transform: uppercase;
}

/******************* BOTON | IR ARRIBA *******************************/
.ir-arriba {
    position: fixed;
    bottom: 15px;
    margin-right: 65px;
    width: 50px;
    height: 50px;
    background: #009adc;
    border-radius: 50%;
    border-style: none;
    padding: 5px;
    cursor: pointer;
    transition: all 300ms ease;
    z-index: 98;
}

    .ir-arriba img {
        width: 25px;
        height: 20px;
    }

    .ir-arriba:hover {
        transform: scale(1.1);
    }



.footer-home-mobil .ctn-social-media-footer-mobil {
    bottom: 0;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    position: fixed;
    right: 0;
    margin-right: 10px;
    margin-bottom: 15px;
    transition: all 0.5s;
    width: 50px;
}

#share:hover {
    transform: scale(1.1);
    transition: .5s;
}

.footer-home-mobil .ctn-social-media-footer-mobil:nth-child(1) {
    background: #333333;
    border-radius: 50%;
    bottom: 0;
    z-index: 99;
}


.footer-home-mobil .ctn-social-media-footer-mobil.colocar:nth-child(2) {
    background: #3b5998;
    bottom: 10%;
    transition-delay: 0.2s;
    border-radius: 50%;
    z-index: 2;
}

.footer-home-mobil .ctn-social-media-footer-mobil.colocar:nth-child(3) {
    background: #25D366;
    bottom: 20%;
    transition-delay: 0.4s;
    border-radius: 50%;
    z-index: 2;
}

.footer-home-mobil .ctn-social-media-footer-mobil.colocar:nth-child(4) {
    background: #9E37B8;
    bottom: 30%;
    transition-delay: 0.6s;
    border-radius: 50%;
    z-index: 2;
}

.footer-home-mobil .ctn-social-media-footer-mobil.colocar:nth-child(5) {
    background: #000;
    bottom: 40%;
    border-radius: 50%;
    transition-delay: 0.8s;
    z-index: 2;
}

.white {
    color: #ffffff;
}

.txt-center {
    text-align: center;
    font-size: 20px;
}

    .txt-center > img {
        width: 20px;
        margin: 15px 10px 10px 10px;
    }

    .txt-center > .img2 {
        width: 30px;
        margin: 10px 10px 10px 10px;
    }

.pointer {
    cursor: pointer;
}


/****************** SECCION BOTON | WHATSAPP  ************************/
.btn-whatsapp {
    display:block;
    width:70px;
    height:70px;
    color:#fff;
    position: fixed;
    right:20px;
    bottom:20px;
    border-radius:50%;
    line-height:80px;
    text-align:center;
    z-index:999;
}

.btn-whatsapp img:hover{
    transform: scale(1.1);
    transition: .5s;
}

.txt-cotizador{
    font-size: 16px;
    text-transform: uppercase;
}


/******************* FOOTER | STYLE *******************************/

.container-footer{
    max-width: 1170px;
    margin:auto;
}
.row-footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
 #ul-footer{
    list-style: none;
    text-decoration: none;
}
.footer{
    background-color: #0057aa;
    padding: 40px 0;
}
.footer-col{
   padding: 0 15px;
}
.footer-col h4{
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    text-align: center;
}
.footer-col h4::before{
    content: '';
    position: absolute;
    left:0;
    text-decoration: none;
    bottom: -10px;
    background-color: #fff;
    height: 2px;
    box-sizing: border-box;
    width: 100%;
}
.footer-col ul li:not(:last-child){
    margin-bottom: 10px;
}

.footer-col ul li a{
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover{
    color: #bbbbbb;
    padding-left: 8px;
    text-decoration: underline;
}
.footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
    transition: all 300ms;
}

/****************** SECCION | RESPONSIVE FOOTER ************************/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
    }
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
    }
}
/****************** SECCION FOOTER | STYLE  ************************/
.container-footer2{
    display: flex;
    align-items:center;
    justify-content: left;
    padding: 10px;
    background: #11507A;
}
.container-footer2 h3{
    font-size: 14px;
    font-style: italic;
    color: #fff;
    font-weight: lighter;
}
/****************** SECCION | RESPONSIVE FOOTER ************************/
@media(max-width: 500px){
    .container-footer2 h3{
    font-size: 8px;
    font-style: italic;
    }
}
html{
    scroll-behavior: smooth;
}