/*===================================================
                    Start Header_top
===================================================*/
.header_top{
  color: rgba(var(--blanco_color),0.3);
  background-color: rgb(var(--secundario_color));
}
.header_top .header_top_contenido{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 36px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7)
}
.header_top .header_top_contenido ul{
  display: flex;
}
.header_top .header_top_contenido ul > li{
  position: relative;
  display: inline-block;
  padding: 0 10px 0 13px;
}
.header_top .header_top_contenido ul > li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -4px;
  background: rgba(var(--blanco_color),0.2);
  height: 7px;
  width: 1px;
}
.header_top .header_top_contenido ul > li:first-child:before{
  display: none;
}
.header_top .header_top_contenido ul > li a {
  font-size: 11px;
  font-weight: 400;
  color: rgba(var(--blanco_color),0.4);
}
.header_top .header_top_contenido ul > li a > i{
  margin-right: 5px;
}
.header_top .header_top_contenido ul > li a:hover{
  color: rgba(var(--blanco_color),0.9);
}
.header_top .header_top_contenido ul > li a::before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  left: 1.5px;
  bottom: 0px;
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header_top .header_top_contenido ul > li a:hover::before {
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.header_top .header_top_contenido ul:nth-child(1) > li a:hover::before,
.header_top .header_top_contenido ul:nth-child(2) > li a:hover::before {
  background:rgba(var(--blanco_color),0.5);
}
.header_top .header_top_contenido ul:nth-child(1) > li:nth-child(1) a:hover::before {
  background:rgb(var(--primario_color));
}
.header_top .header_top_contenido ul:nth-child(1) > li:nth-child(1) a:hover i{
  color: rgb(var(--primario_color));
}

.header_top .header_top_contenido ul:nth-child(1) > li:nth-child(2) a:hover::before {
  background:rgb(var(--verde_color));
}
.header_top .header_top_contenido ul:nth-child(1) > li:nth-child(2) a:hover i{
  color: rgb(var(--verde_color));
}



.header_top .header_top_contenido ul:nth-child(2) > li:nth-child(1) a:hover::before {
  background:rgb(var(--rojo_color));
}
.header_top .header_top_contenido ul:nth-child(2) > li:nth-child(1) a:hover i{
  color: rgb(var(--rojo_color));
}

@media(max-width:767px){
  .header_top .header_top_contenido{
    justify-content: center;
  }
  .header_top .header_top_contenido ul > li{
    padding: 0 10px 0 8px;
  }
  .header_top .header_top_contenido ul:nth-child(2) > li:first-child:before{
    display: block;
  }
}

/*===================================================
                     End Header_top
===================================================*/



/*===================================================
                    Start Header_body
===================================================*/
.header_body{
  background-color: rgb(var(--primario_color));
}
.header_body .header_body_contenido{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* Start LOGO */
.logo{
  display: flex;
  align-items: center;
}
.logo img{
  display: block;
  width: auto;
  height: 60px;
}
.logo .logo_nombre{
  padding-left: 10px;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 15px;
  font-weight: 500;
  color: rgb(var(--blanco_color));
}
.logo .logo_nombre > span{
  display: block;
  font-size: 18px;
  font-weight: 600;
}
/* End LOGO */

/* Start Enlaces */
.enlaces{
  padding: 5px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
}
.enlaces:hover{
  background-color: rgba(var(--secundario_color),0.05);
  border: 1px solid rgba(var(--secundario_color),0.1);
}
.enlaces img{
  display: block;
  width: auto;
}
.enlaces .enlaces_nombre{
  margin-left: 7px;
}
.enlaces .enlaces_nombre div{
  font-size: 11px;
  line-height: 20px;
  font-weight: 500;
  color: rgb(var(--blanco_color));
}
.enlaces .enlaces_nombre div > span{
  display: block;
  font-size: 12px;
  line-height: 4px;
  font-weight: 600;
}
.enlaces .enlaces_nombre > span{
  padding: 0 5px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgb(var(--blanco_color));
  background-color: rgb(var(--secundario_color));
  border-radius: 50px;
}
/* End Enlaces */

.header_body .left,
.header_body .center,
.header_body .right{
  display: flex;
  align-items: center;
}
.header_body .logo{
  margin-top: 20px;
  margin-bottom: 20px;
}
.header_body .right img{
  display: block;
  width: auto;
  height: 40px;
}
.header_body .right a{
  margin-left: 10px;
}
.header_body .right a:first-child{
  margin-left: 0;
}


.header_body .center input{
  padding: 13px 25px;
  display: block;
  width: 100%;
  color: rgb(var(--secundario_color));
  border: 1px solid rgba(var(--secundario_color),0.2);
  border-radius: 50px;
}

@media(min-width:1200px){
  .header_body .center input{
    min-width: 500px;
  }
}
@media(max-width:1199px){
  .header_body .center input{
    min-width: 300px;
  }
}
@media(max-width:991px){
  .header_body .center{
    display: none;
  }
  .header_body .center input{
    min-width: 500px;
  }
}
@media(max-width:767px){
  .header_body .right{
    display: none;
  }
  .header_body .left{
    margin: auto;
  }
}
/*===================================================
                     End Header_body
===================================================*/




/*===================================================
                    Start Header_footer
===================================================*/
                /* AQUI VA EL Header_Menu*/
/*===================================================
                     End Header_footer
===================================================*/









/*===================================================
                    Start footer
===================================================*/
footer{
  border-top: 4px solid rgb(var(--primario_color));
}
footer,
.footer{
  color: rgba(var(--blanco_color),0.9);
  background-color: rgb(var(--secundario_color));
}
.footer{
  padding-top: 20px;
  padding-bottom: 30px;
}
.footer ul > span{
  margin-top: 30px;
  margin-bottom: 20px;
  display: block;
  font-size: 14px;
  font-weight: 400;
}
.footer ul li a{
  margin-top: 10px;
  display: flex;
  font-size: 13px;
  line-height: 30px;
  color: rgba(var(--blanco_color),0.3);
}

.footer ul li a i{
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 12px;
  color: rgba(var(--blanco_color),0.5);
  background: rgba(var(--blanco_color),0.1);
  border-radius: 4px;
}
.footer ul li a span{
  display: block;
}

.footer_creditos{
  padding: 15px 0;
  border-top: 1px solid rgba(var(--blanco_color),0.1);
  box-shadow: 0px -1px 0px 0px rgba(0,0,0,0.3);
}
.footer_creditos{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  color: rgba(var(--blanco_color),0.3);
}
.footer_creditos a{
  font-weight: 500;
  color: rgba(var(--blanco_color),0.3);
}

/* hover */
.footer ul li a:hover{
  color: rgb(var(--blanco_color));
}
.footer ul li a:hover i,
.footer_creditos a:hover{
  color : rgb(var(--primario_color));
}


body{
  position: relative;
}
.btn_flotante{
  position: fixed;
  z-index: 9999999999;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 30px;
  color: rgb(var(--blanco_color));
  background-color: #25d366;
  border-radius: 50px;
}
/*===================================================
                    End footer
===================================================*/