@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');
@font-face{
    font-family: "sitio-web";
    src:url("../fonts/sitio-web.eot");
    src:url("../fonts/sitio-web.eot?#iefix") format("embedded-opentype"),
        url("../fonts/sitio-web.woff") format("woff"),
        url("../fonts/sitio-web.ttf") format("truetype"),
        url("../fonts/sitio-web.svg#sitio-web") format("svg");
        
}

body{
 
    
    
}
/*---------------------Estilos base---------------------*/

img{
    display: block;
    width: 100%;
    max-width: 100%;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
}

.container{
    width: 100%;
    margin: auto;
    
}

.container--flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
}
.colum{
    width: 100%;
}


/*---------------------Estilos base---------------------*/
.main-header{
    width: 100%;
}
.logo{
    font-size: 1.8em;
    color: #DE423A;
    padding: 10PX;
    
}
.norma{
    font-size: 1.0em;
    color: #DE423A;
    padding: 10PX;
    
}
.main-header__contactInfo__web{
    background: #DE423A;
    color: white;
    margin: 0 auto;
    padding: 10px;
}

.main-header__contactInfo_address{
    padding: 10px;
    margin: 0;
}
.main-header [class*="icon-"]:before { /*iconos de contacto*/
    position: relative;
    top: 2px;
    right:5px;
}

/*----------ESTILOS DEL MENU-------*/

.main-nav{
width: 100%;
position: relative;
z-index: 2000;
    padding: 10px;
    
}

.icon-menu{
    display: block;
    color: white;
    border: 1px solid white;
    border-radius: 3px;
    width: 40px;
    height: 40px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    font-size: 1.99em;
    padding-left: -8px;
    
}

.social-icon{
    display: flex;
    justify-content: space-between;
    
}


.social-icon [class*="icon-"]{
    color: black;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    
}
.social-icon__link{
    text-decoration: none;
}
.menu{
   
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    transition: height .3s linear;
    background: rgba(0,0,0,.80);
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center; 
    height: 0;
    overflow: hidden;
    
}
.menu__link{
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
}
.menu__link:hover{
    background:  #DE423A;
    
}
.menu__link--select{
    background:  #DE423A;    
}

.mostrar{
    height: 440px;
}


/*----------ESTILOS DEL BANNER-------*/

.banner{
    margin-top: -60px;
    position: relative;
}
.banner:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,0.5);
    z-index: 1000;
    top: 0;
}

.banner__img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.banner__content{
    width: 90%;
    color: white;
    text-align: center;
    position: absolute;
    z-index: 1500;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 1.5em;
    font-weight: bold;
}























