/* CONFIG GENERALES */
a, a:visited{
    color: #fff;
    text-decoration: none;
}

/*=====================================================================================================*/
/* CONFIG PARA LA VERSION MOBILE*/

/*BARRA DEL LOGO CON MENU*/
.grey{
    display: flex;
    flex-direction: column;
    background-color: #222;
    padding: 1vw;
    justify-content: space-evenly;
    height: 15vw;
}

/*LOGO*/
.imgBrand{
    width: 40%;
    margin-left: 30%;
}

/* BOTON HAMBURGUESA */
.navbar-toggler{
    position: absolute;
    right: 0;
    bottom: 2vw;
}

/*MENU*/
.navbarMenu{
    background-color: none;
    color: #eee;
}
.menu{
    position: absolute;
    background-color: #222;;
    top: 2vw;
    right: 0;
    z-index: 9999;
    padding: 4vw;
    width: 100vw;
}

.navItems{
    padding: 1vw;
}

/*BARRA DE LOS PAISES*/

.countriesDiv{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
}

.imgCountries{
    width: 4vw;
    margin: 0 1vw;
}

.countriesDiv > a{
    padding: 1vw;
}

.dropdown-menu.show {
    background-color: #111;
    width: 50%;
}

.countriesDiv > a:hover{
    background-color: #444;
    color: #aaa;
    width: 100%;
}

/*BOTON CONTACT US*/
@keyframes AnimationName {
   0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

.btnNav{
    background: linear-gradient(270deg, #3cc6a3, #6c518a);
    background-size: 400% 400%;
    animation: AnimationName 23s ease infinite;
    font-size: 2.5vw;
    margin: 1vw 1vw 0 0 ;
    padding: .5vw;
    display: block;
    width: 50%;
}

/*HIGHLIGHTS*/
.SecTitle{
    text-align: center;
    font-size: 4vw;
    padding-top: 4vw;
}

.divHighlights{
    display: flex;
    flex-direction: column;
}

.videoHighlights{
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 56.25%;/*ES UN PORCENTAJE PARA RESPETAR LA PROPORCION*/
    padding-top: 30px; 
    margin: 2vw;
}

.videoHighlights iframe{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*MARKET LEADING BRANDS*/
.brandsDiv{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.brandsDiv img{
    width: 30%;
    margin:3vw;
}

/*FOOTER*/
.divFooter{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #292929;
    color: #fff;
}

.btnContactUs{
    margin-top: 3vw;
    border-radius: 50px;
    background-color: #dc3545;
    border-color: #dc3545;
    padding: 1vw 2vw;
}

.subTitleContact{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10vw 0;

}
/*ABOUT US*/
.aboutDiv{
    line-height: 2;
}

.aboutTitle{
    text-align: center;
}

/*===========================================================================================================*/
/* MEDIAS QUERY PARA LA VERSION DESKTOP*/
@media only screen and (min-width : 768px){

    /*BARRA DE LOS PAISES*/
    .countriesDiv{
        justify-content:flex-start;
    }

    .countryName{
        display: inline;
    }

    .imgCountries{
        width: 2vw;
    }

    .countriesDiv > a{
        padding: .5vw;
    }
    

    .dropdown-menu.show{
        width: 200%;
    }

    /*BARRA NAV*/
    .grey{
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 6vw;
    }

    .navbarMenu{
        display: flex;
    }

    .imgBrand{
        width: 80%;
        margin-left: 0;
    }

    .menu{
        width: 80%;
/*         background-color: transparent;*/        
        top: 0;
        /* right: 0;*/
        bottom: 10%;
        padding: 0;
        left:28vw;
    
    }

    .navItems, .btnNav{
        font-size: 0.7vw;
        min-width: 8vw;
    }

    .navbar-toggler{
        display: none;
    }

    /*BOTON CONTACT US*/
    .btnNav{
        margin: 0 1vw 0 0;
    
    }
   
    /*HIGHLIGHTS*/
    .SecTitle{
        font-size: 2vw;
        padding-bottom: 2vw;
    }

    .divHighlights{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
    }

    .videoHighlights{
        position: relative;
        overflow: hidden;
        height: 0;
        width: 40%;
        padding-bottom: 22.5%;/*EL CALCULO ES PARA RESPETAR LA PROPORCION DEL PADDING*/
        padding-top: 30px; 
        margin: 2vw;
    }

    .mainVideo{
        width: 80%;
        padding-bottom: 45%;/*EL CALCULO ES PARA RESPETAR LA PROPORCION DEL PADDING*/
        margin: auto;
    }

    .brandsDiv img{
        width: 10%;
    }

    .divContact{
        display: flex;
        flex-direction: row;
    }
    
    .subTitleContact{
        margin: 4vw;
    }

    /*FOOTER*/
    .btnContactUs{
        padding: 0.5vw 1vw;
    }

    /*ABOUT US*/
    .aboutDiv{
        margin: 2vw 10vw;
    }
}