* {
  margin: 0;
  padding: 0;
  font-family: 'Hind';
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul, ol{
  list-style: none;
}

body {
  position: relative;
  padding-bottom: 250px;
  padding-top: 80px;
  min-height: 100vh;
}


.header {
  z-index: 100;
  background-color: #000;
  height: 80px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
}

.nav {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  /*max-width: 992px;*/
  margin: 0 auto;
}

.nav-link {
  color: white;
  text-decoration: none;
}

.logo {
  max-width: 400px;
  min-width: 125px;
  line-height: 25px;
}

.nav-logo {
  width: 100%;
}

.nav-menu {
  display: flex;
  margin-right: 40px;
  list-style: none;
}

.nav-menu-item {
  font-size: 18px;
  margin: 0 10px;
  line-height: 80px;
  text-transform: uppercase;
  width: max-content;
}

.nav-menu-link {
  padding: 8px 12px;
}

.nav-menu-link:hover{
  color: #ef3f2f;
  box-shadow: 0px 10px 0px 0px  #e43c2b;
  transition: 0.5s;
}

.nav-link-submenu:hover{
  box-shadow: none;
}

.nav-menu-submenu{
  text-align: center;
}

.nav-submenu{
  /*display: flex;*/
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #272727;
}

.nav-submenu-link{
  padding: 0px 0px;
}

/* TOGGLE */
.nav-toggle {
  color: white;
  background: none;
  border: none;
  font-size: 24px;
  margin: 0px 0px;
  padding: 0px 0px;
  line-height: 0px;
  cursor: pointer;

  display: none;
}
/*---FOOTER---*/
.footer {
  display: flex;
  position: absolute;
  bottom: 0px;
  background-color: #272727;
  width: 100%;
  height: 250px;
  padding-bottom: 35px;
  align-items: center;
  justify-content: space-around;
  /* box-shadow: 0px 0px 10px 0px #000; */

}

.footer_background{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_background img{
  z-index: 1;
  content:url("/images/global/logo_bn.png");
  width: 80%;
  opacity: 0.07;
}

.footer .footer_content{
  z-index: 5;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*BOTON IR ARRIBA*/
.box_1 .icon-top{ 
  font-size: 32px;
  background-color: black;
  padding: 5px;
  color:  #e43c2b;
  display: none;
  cursor: pointer;
  position: fixed;
  bottom: 120px;
  right: 30px;
}

.box_1 .icon-top:hover{
    box-shadow: 0px 0px 5px 5px #e43c2b;
    transition: 100ms;
}
/* FOOTER INFO*/
.footer .footer_content .box_2{ 
    padding-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: left;
    color: white;
    text-align: center;
}
  
.content_info_text{
    text-align: left;
    text-decoration: underline;
}

.content_info_link,.content_info_link:visited{
    text-decoration: none;
    color: white;
}

.content_info_text:hover{
  text-decoration: none;
  color: #ef3f2f;
}

.footer .footer_content .box_2 .img_ftct{
    font-size: 20px;
    margin-right: 15px;
    color:  #e43c2b;
}

/*BOTON CONTACTO INFERIOR*/
.footer_content .content_button a{ 
  text-decoration: none;
  text-transform: uppercase;
  background-color:  #e43c2b;
  font-size: 18px;
  border-radius: 5px;
  padding: 10px 50px; 
  color: white;
}

.footer_content .content_button a:hover{
  box-shadow: 0px 0px 5px 5px #e43c2b;
}

/* FOOTER INFERIOR */
.footer .footer_bottom{
background-color: #000;
color: white;
display: flex;
position: absolute;
align-items: center;
justify-content: center;
width: 100%;
height: 35px;
right: 0px;
bottom: 0px;
}

.footer .footer_bottom .img_ftbt{
  height: 30px;
  width: 30px;
  margin-right: 10px;
}

#copyrg{
  margin-right: 5px;
}

#developedby{
  color: gray;
}

/* MID */
@media (min-width:1025px) and (max-width:1366px) {

  /*HEADER*/

  .nav-logo {
    padding-top: 12px;
    width: 75%;
  }

  .nav-menu {
    display: flex;
    margin-right: 0px;
    list-style: none;
  }  

  .nav-menu-item {
    margin: 0px 10px; /*HEREEEEEEEEEEEEEEEE*/
    font-size: 14px;
  }

  .nav-menu-link {
    padding: 8px 0px;
  }

  .nav-submenu{
    /* align-items: flex-end; */
    right: 0px;
  }

  /*FOOTER*/
  .box_1 .icon-top{
    bottom: 120px;
    right: 30px;
    }

}

/* MIN */
@media (min-width:0px) and (max-width: 1024px) {  
/*HEADER*/
  body {
    padding-top: 60px;
    padding-bottom: 300px;
  }

  .nav{
    padding-right: 20px;
  }

  .header {
    height: 60px;
  }

  .logo {
    height: 60px;
    line-height: 0px;
  }

  .nav-logo {
    padding-top: 5px;
    height: 85%;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    margin: 0;
    background-color:#272727;
    position: fixed;
    top: 60px;
    width: 100%;
    padding: 20px 0;

    height: calc(100% - 60px);
    overflow-y: auto;

    left: 100%;
    transition: left 0.3s;
  }

  .nav-submenu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #303030;
  }

  .nav-menu-item {
    margin: 10px;
    font-size: 24px;
    line-height: 50px;
  }

  .nav-menu-link:hover,
  .nav-menu-link_active {
    background: none;
    color: #e43c2b;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu_visible {
    left: 0;
  }

  .nav-toggle:focus:not(:focus-visible) {
    outline: none;
  }


  /*FOOTER*/
  .footer {
    width: 100%;
    height: 300px;
    padding-bottom: 35px;
  }

  .footer_background{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer_background img{
    z-index: 1;
    width: 75;
    opacity: 0.1;
  }

  .footer .footer_content{
    z-index: 5;
    width: 85%;
  }
  /*BOTON IR ARRIBA*/
  .box_1 .icon-top{ 
    z-index: 10;
    font-size: 28px;
    bottom: 50px;
    right: 15px;
  }
  
  .box_1 .icon-top:hover{
      box-shadow: 0px 0px 5px 5px #e43c2b;
      transition: 50ms;
  }
  /* FOOTER INFO*/
  .footer .footer_content .box_2{ 
      padding-bottom: 30px;
      font-size: 14px;
  }
  
  .footer .footer_content .box_2 .img_ftct{
      font-size: 24px;
  }

  .content_button{
    position: absolute;
    bottom: 50px;
  }

  /*BOTON CONTACTO INFERIOR*/
  .footer_content .content_button a{
    font-size: 14px;
    border-radius: 5px;
    padding: 5px 80px; 
    color: white;

  }
  
  .footer_content .content_button a:hover{
    box-shadow: 0px 0px 5px 5px #e43c2b;
  }

  /* FOOTER INFERIOR */
.footer .footer_bottom{
  background-color: #000;
  color: white;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 35px;
  right: 0px;
  bottom: 0px;
  }
  
  .footer .footer_bottom .img_ftbt{
    height: 30px;
    width: 30px;
    margin-right: 12px;
  }
  
  #copyrg{
    font-size: 10px;
    margin-right: 5px;
  }
  
  #developedby{
    font-size: 12px;
    color: gray;
  }

}


