@charset "UTF-8";
/*******ESTILOS DEL MENU*****/
/*******ESTILOS DEL MENU*****/
/*******ESTILOS DEL MENU*****/
/*******ESTILOS DEL MENU*****/
.header {
  background: #0c1b32;
  transition: 0.5s all;
  width: 100%;
  box-shadow: 0px 2px 10px black;
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1000;
}
.header .header__base {
  width: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-left: 20px;
}
.header .header__base .header_logo {
  width: 85px;
  height: 40px;
}
.header .header__base .header_logo_name {
  color: white;
  transform: skew(-5deg);
  font-weight: 600;
  font-size: 18px;
}
.header .contNavegador {
  width: 570px;
  padding: 10px 0px;
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.header .contNavegador .contIcono_active {
  width: 100px;
  padding: 5px 20px;
}
.header .contNavegador .contIcono_active .IconNombre {
  color: #56fbd3;
  font-size: 20px;
}
.header .contNavegador .contIcono_active .contLetras {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 300;
  color: #56fbd3;
  transform: skewX(-5deg);
}
.header .contNavegador .contIcono {
  width: 100px;
  padding: 5px 0px;
  position: relative;
  z-index: 0;
}
.header .contNavegador .contIcono .IconNombre {
  color: #96aadb;
  font-size: 20px;
}
.header .contNavegador .contIcono .contLetras {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 300;
  color: #56fbd3;
  transform: skewX(-5deg);
}
.header .contNavegador .contIcono .submenu {
  width: 600px;
  background: #0c1b32;
  border-radius: 0px 0px 10px 10px;
  box-shadow: 0px 5px 5px black;
  padding: 10px;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  top: 60px;
  right: -300px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s linear;
}
.header .contNavegador .contIcono .submenu .submenu__item {
  width: 180px;
  padding: 20px;
  border-radius: 10px;
  background: #0c1b32;
  margin: 3px 0px;
  box-shadow: 0px 0px 2px;
  transition: 0.2s all;
}
.header .contNavegador .contIcono .submenu .submenu__item .submenu__link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  color: #56fbd3;
  text-align: start;
  transform: skewX(-5deg);
}
.header .contNavegador .contIcono .submenu .submenu__item .submenu__img {
  margin-top: 5px;
  width: 100%;
  height: 130px;
}
.header .contNavegador .contIcono .submenu .submenu__item:hover {
  background: #060f1d;
}
.header .contNavegador .contIcono:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}
.header .contNavegador .contIcono:hover {
  background: transparent;
}
.header .contNavegador .contIcono:hover .IconNombre {
  color: #56fbd3;
  font-size: 20px;
}
.header .header_btnResponsive {
  /*width: 40px;
  height: 40px;
  background: rgb(31, 122, 122); */
  display: none;
}

.contHeader_js {
  box-shadow: 0px 2px 20px #56fbd3;
}

@media (min-width: 320px) and (max-width: 850px) {
  .header {
    background: #060f1d;
    width: 100%;
    box-shadow: 0px 2px 10px black;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1000;
    transition: 0.5s all;
  }
  .header .header__base {
    width: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left: 20px;
  }
  .header .header__base .header_logo {
    width: 85px;
    height: 40px;
  }
  .header .header__base .header_logo_name {
    color: white;
    transform: skew(-5deg);
    font-weight: 600;
    font-size: 18px;
  }
  .header .contNavegador {
    width: 160px;
    padding: 15px 0px;
    margin-right: 0;
    background: #060f1d;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: initial;
    position: absolute;
    top: 75px;
    left: initial;
    transform: translateX(-100%);
    transition: 0.8s;
  }
  .header .contNavegador .contIcono_active {
    width: 160px;
    padding: 15px 20px;
    background: #060f1d;
  }
  .header .contNavegador .contIcono_active .IconNombre {
    color: #56fbd3;
    font-size: 20px;
  }
  .header .contNavegador .contIcono_active .contLetras {
    font-size: 14px;
    color: #56fbd3;
    font-weight: 300;
  }
  .header .contNavegador .contIcono {
    width: 160px;
    padding: 15px 20px;
    position: relative;
    background: #0c1b32;
    transition: 0.5s all;
    z-index: 200;
  }
  .header .contNavegador .contIcono .IconNombre {
    color: #96aadb;
    font-size: 20px;
  }
  .header .contNavegador .contIcono .contLetras {
    margin-top: 0px;
    font-size: 14px;
    color: #56fbd3;
  }
  .header .contNavegador .contIcono .submenu {
    width: 150px;
    background: #060f1d;
    padding: 10px;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: -167px;
    right: initial;
    left: 149px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all;
    z-index: 100;
  }
  .header .contNavegador .contIcono .submenu .submenu__item {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background: #0c1b32;
    margin: 3px 0px;
    box-shadow: 0px 0px 2px;
    transition: 0.2s all;
  }
  .header .contNavegador .contIcono .submenu .submenu__item .submenu__link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    color: #56fbd3;
    text-align: start;
  }
  .header .contNavegador .contIcono .submenu .submenu__item .submenu__img {
    margin-top: 5px;
    width: 100%;
    height: 70px;
  }
  .header .contNavegador .contIcono .submenu .submenu__item:hover {
    background: #060f1d;
  }
  .header .contNavegador .contIcono:hover .submenu {
    visibility: visible;
    transform: translateY(0px);
    transform: translateX(10px);
  }
  .header .contNavegador .contIcono:hover {
    background: #060f1d;
  }
  .header .contNavegador .contIcono:hover .IconNombre {
    color: #56fbd3;
    font-size: 20px;
  }
  .header .contNavegadorJS {
    transform: translateX(0px);
  }
  .header .header_btnResponsive {
    /*width: 40px;
    height: 40px;
    background: rgb(31, 122, 122); */
    display: block;
  }
  .contHeader_js {
    box-shadow: 0px 2px 20px #56fbd3;
  }
}
.CONTENT-PRINCIPAL {
  background: transparent;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS {
  background: transparent;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  margin: auto;
  background-image: url(../img/desarrollando.jpg);
  background-size: 100% 100%;
  overflow: hidden;
  position: fixed;
  z-index: -1;
  margin: auto;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(5, 11, 32, 0.7764705882);
  position: fixed;
  left: 0;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .titulo_principal {
  width: auto;
  padding: 15px 0px;
  font-size: calc(230px - 20%);
  transform: skewX(-5deg);
  line-height: 130px;
  color: #060f1d;
  position: absolute;
  top: 70px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-shadow: 1px 4px 1px rgb(255, 255, 255);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgb(255, 255, 255);
  /*GRADIENT TEXT
  background: variables.variables.$colorVerde;  //EN CASO DE QUE NO FUNCIONE EL GRDIENT EN ALGUN NAVEGADOR
  background-image: linear-gradient(white, variables.variables.$colorVerde) ;
  background-clip: text;

  -webkit-background-clip:text ;
  -moz-background-clip:text ;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  //FIN GRADIENT*/
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .subtitle {
  text-align: center;
  color: white;
  font-size: 22px;
  font-weight: 300;
  transform: skewX(-5deg);
  position: absolute;
  top: 330px;
  font-family: Poppins;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .subtitle .front_css_js {
  color: #56fbd3;
  font-family: poppins;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu {
  width: 400px;
  padding: 0px;
  position: absolute;
  top: 370px;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul {
  padding: 4px 0px;
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul .particles__item {
  width: 150px;
  background: linear-gradient(#56fbd3, transparent);
  padding: 5px 0px;
  text-align: center;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul .particles__item .particles__link {
  color: white;
  font-size: 16px;
  font-weight: 300;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul .particles__item:hover {
  background: linear-gradient(transparent, #56fbd3);
  cursor: pointer;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter {
  width: 90%;
  background: rgba(5, 11, 32, 0.7764705882);
  position: absolute;
  bottom: 25px;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase {
  width: 80%;
  margin: auto;
  margin-bottom: 30px;
  padding: 3px 0px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja {
  background: transparent;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja .IconRed {
  font-size: 30px;
  color: #56fbd3;
  transform: rotateY(25deg);
  transition: all 0.2s;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja .IconRed:hover {
  color: #96aadb;
  transform: rotate(360deg);
  cursor: pointer;
}
.CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja .caja__parra {
  font-size: 16px;
  color: white;
  margin-left: 5px;
}

/*****************************************************************************
-----------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  .CONTENT-PRINCIPAL {
    background: transparent;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS {
    background: transparent;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: auto;
    background-image: url(../img/desarrollando.jpg);
    background-size: 100% 100%;
    overflow: hidden;
    position: fixed;
    z-index: -1;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(5, 11, 32, 0.7764705882);
    position: fixed;
    left: 0;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .titulo_principal {
    width: auto;
    padding: 15px 0px;
    font-size: 180px;
    transform: skewX(-5deg);
    line-height: 130px;
    color: #060f1d;
    position: absolute;
    top: 68px;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    text-shadow: 1px 4px 1px rgb(255, 255, 255);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(255, 255, 255);
    /*GRADIENT TEXT
    background: variables.variables.$colorVerde;  //EN CASO DE QUE NO FUNCIONE EL GRDIENT EN ALGUN NAVEGADOR
    background-image: linear-gradient(white, variables.variables.$colorVerde) ;
    background-clip: text;

    -webkit-background-clip:text ;
    -moz-background-clip:text ;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    //FIN GRADIENT*/
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .subtitle {
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: 300;
    transform: skewX(-5deg);
    position: absolute;
    top: 300px;
    font-family: Poppins;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .subtitle .front_css_js {
    color: #56fbd3;
    font-family: poppins;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu {
    width: 400px;
    padding: 0px;
    position: absolute;
    top: 340px;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul {
    padding: 4px 0px;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul .particles__item {
    width: 150px;
    background: linear-gradient(#56fbd3, transparent);
    padding: 5px 0px;
    text-align: center;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul .particles__item .particles__link {
    color: white;
    font-size: 16px;
    font-weight: 300;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul .particles__item:hover {
    background: linear-gradient(transparent, #56fbd3);
    cursor: pointer;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter {
    width: 90%;
    background: rgba(5, 11, 32, 0.7764705882);
    position: absolute;
    bottom: 15px;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase {
    width: 80%;
    margin: auto;
    padding: 3px 0px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja {
    background: transparent;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja .IconRed {
    font-size: 25px;
    color: #56fbd3;
    transform: rotateY(25deg);
    transition: all 0.2s;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja .IconRed:hover {
    color: #96aadb;
    transform: rotate(360deg);
    cursor: pointer;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja .caja__parra {
    font-size: 14px;
    color: white;
    margin-left: 5px;
  }
}
/*****************************************************************************
-----------------------------------------------------------*/
@media (min-width: 481px) and (max-width: 767px) {
  .CONTENT-PRINCIPAL {
    background: transparent;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS {
    background: transparent;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: auto;
    background-image: url(../img/desarrollando.jpg);
    background-size: 100% 100%;
    overflow: hidden;
    position: fixed;
    z-index: -1;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(5, 11, 32, 0.7764705882);
    position: fixed;
    left: 0;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .titulo_principal {
    width: auto;
    padding: 15px 0px;
    font-size: 160px;
    transform: skewX(-5deg);
    line-height: 130px;
    color: #060f1d;
    position: absolute;
    top: 68px;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    text-shadow: 1px 4px 1px rgb(255, 255, 255);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(255, 255, 255);
    /*GRADIENT TEXT
    background: variables.variables.$colorVerde;  //EN CASO DE QUE NO FUNCIONE EL GRDIENT EN ALGUN NAVEGADOR
    background-image: linear-gradient(white, variables.variables.$colorVerde) ;
    background-clip: text;

    -webkit-background-clip:text ;
    -moz-background-clip:text ;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    //FIN GRADIENT*/
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .subtitle {
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 300;
    transform: skewX(-5deg);
    position: absolute;
    top: 280px;
    font-family: Poppins;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .subtitle .front_css_js {
    color: #56fbd3;
    font-family: poppins;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu {
    width: 400px;
    padding: 0px;
    position: absolute;
    top: 340px;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul {
    padding: 4px 0px;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul .particles__item {
    width: 150px;
    background: linear-gradient(#56fbd3, transparent);
    padding: 5px 0px;
    text-align: center;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul .particles__item .particles__link {
    color: white;
    font-size: 16px;
    font-weight: 300;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul .particles__item:hover {
    background: linear-gradient(transparent, #56fbd3);
    cursor: pointer;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter {
    width: 90%;
    background: rgba(5, 11, 32, 0.7764705882);
    position: absolute;
    bottom: 15px;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase {
    width: 60%;
    margin: auto;
    padding: 3px 0px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja {
    background: transparent;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja .IconRed {
    font-size: 25px;
    color: #56fbd3;
    transform: rotateY(25deg);
    transition: all 0.2s;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja .IconRed:hover {
    color: #96aadb;
    transform: rotate(360deg);
    cursor: pointer;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja .caja__parra {
    font-size: 14px;
    color: white;
    margin-left: 5px;
    display: none;
  }
}
/*****************************************************************************
-----------------------------------------------------------*/
@media (min-width: 320px) and (max-width: 480px) {
  .CONTENT-PRINCIPAL {
    background: transparent;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS {
    background: transparent;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: auto;
    background-image: url(../img/desarrollando.jpg);
    background-size: 100% 100%;
    overflow: hidden;
    position: fixed;
    z-index: -1;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(5, 11, 32, 0.7764705882);
    position: fixed;
    left: 0;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .titulo_principal {
    width: auto;
    padding: 15px 0px;
    font-size: 120px;
    transform: skewX(-5deg);
    line-height: 130px;
    color: #060f1d;
    position: absolute;
    top: 68px;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    text-shadow: 1px 4px 1px rgb(255, 255, 255);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(255, 255, 255);
    /*GRADIENT TEXT
    background: variables.variables.$colorVerde;  //EN CASO DE QUE NO FUNCIONE EL GRDIENT EN ALGUN NAVEGADOR
    background-image: linear-gradient(white, variables.variables.$colorVerde) ;
    background-clip: text;

    -webkit-background-clip:text ;
    -moz-background-clip:text ;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    //FIN GRADIENT*/
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .subtitle {
    width: 90%;
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 500;
    transform: skewX(-5deg);
    position: absolute;
    top: 260px;
    font-family: Poppins;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .subtitle .front_css_js {
    color: #56fbd3;
    font-family: poppins;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu {
    width: 340px;
    padding: 0px;
    position: absolute;
    top: 340px;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul {
    padding: 4px 0px;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul .particles__item {
    width: 150px;
    background: linear-gradient(#56fbd3, transparent);
    padding: 5px 0px;
    text-align: center;
    margin-bottom: 15px;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul .particles__item .particles__link {
    color: white;
    font-size: 16px;
    font-weight: 300;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .particles__menu .particles__ul .particles__item:hover {
    background: linear-gradient(transparent, #56fbd3);
    cursor: pointer;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter {
    width: 90%;
    background: rgba(5, 11, 32, 0.7764705882);
    position: absolute;
    bottom: 15px;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase {
    width: 60%;
    margin: auto;
    padding: 3px 0px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja {
    background: transparent;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja .IconRed {
    font-size: 25px;
    color: #56fbd3;
    transform: rotateY(25deg);
    transition: all 0.2s;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja .IconRed:hover {
    color: #96aadb;
    transform: rotate(360deg);
    cursor: pointer;
  }
  .CONTENT-PRINCIPAL .CONTENT-PARTICULAS .contParticulas #particles-js .contFooter .contFooter_cuadroBase .contFooter_cuadroBase_caja .caja__parra {
    font-size: 14px;
    color: white;
    margin-left: 5px;
    display: none;
  }
}
body {
  background: #000000;
}

html {
  scroll-behavior: smooth;
}

.CONTENIDO_CONTENT {
  width: 100%;
  max-width: 1600px;
  padding: 30px 0px;
  margin: auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(8, auto);
  grid-template-areas: "MENU_CONTENT        MENU_CONTENT        MENU_CONTENT" "ABOUT_CONTENT       ABOUT_CONTENT       ABOUT_CONTENT" "TITLE_PORTFOLIO     TITLE_PORTFOLIO     TITLE_PORTFOLIO" "PORTAFOLIO_NEW      PORTAFOLIO_NEW      PORTAFOLIO_NEW" "SERVICES_TITLE      SERVICES_TITLE      SERVICES_TITLE" "SERVICES_CONTENT    SERVICES_CONTENT    SERVICES_CONTENT" "TILTE_SKILLS        TILTE_SKILLS        TILTE_SKILLS" "SKILLS_CONT         SKILLS_CONT         SKILLS_CONT" "CONTACT_TITLE       CONTACT_TITLE       CONTACT_TITLE" "CONTACT_CONTENT     CONTACT_CONTENT     CONTACT_CONTENT" "PIE_CONTENT         PIE_CONTENT         PIE_CONTENT";
}
.CONTENIDO_CONTENT .MENU_CONTENT {
  height: 50px;
  grid-area: MENU_CONTENT;
}
.CONTENIDO_CONTENT .ABOUT_CONTENT {
  grid-area: ABOUT_CONTENT;
}
.CONTENIDO_CONTENT .TITLE_PORTFOLIO {
  grid-area: TITLE_PORTFOLIO;
}
.CONTENIDO_CONTENT .PORTAFOLIO_NEW {
  grid-area: PORTAFOLIO_NEW;
}
.CONTENIDO_CONTENT .SERVICES_TITLE {
  grid-area: SERVICES_TITLE;
  display: none;
}
.CONTENIDO_CONTENT .SERVICES_CONTENT {
  grid-area: SERVICES_CONTENT;
  display: none;
}
.CONTENIDO_CONTENT .TILTE_SKILLS {
  grid-area: TILTE_SKILLS;
}
.CONTENIDO_CONTENT .SKILLS_CONT {
  grid-area: SKILLS_CONT;
}
.CONTENIDO_CONTENT .CONTACT_TITLE {
  grid-area: CONTACT_TITLE;
}
.CONTENIDO_CONTENT .CONTACT_CONTENT {
  grid-area: CONTACT_CONTENT;
}
.CONTENIDO_CONTENT .PIE_CONTENT {
  grid-area: PIE_CONTENT;
}

@media (min-width: 320px) and (max-width: 1024px) {
  .CONTENIDO_CONTENT {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    background: #000000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 50px repeat(8, auto);
    grid-template-areas: "MENU_CONTENT        MENU_CONTENT        MENU_CONTENT" "ABOUT_CONTENT       ABOUT_CONTENT       ABOUT_CONTENT" "TITLE_PORTFOLIO     TITLE_PORTFOLIO     TITLE_PORTFOLIO" "PORTAFOLIO_NEW      PORTAFOLIO_NEW      PORTAFOLIO_NEW" "SERVICES_TITLE      SERVICES_TITLE      SERVICES_TITLE" "SERVICES_CONTENT    SERVICES_CONTENT    SERVICES_CONTENT" "TILTE_SKILLS        TILTE_SKILLS        TILTE_SKILLS" "SKILLS_CONT         SKILLS_CONT         SKILLS_CONT" "CONTACT_TITLE       CONTACT_TITLE       CONTACT_TITLE" "CONTACT_CONTENT     CONTACT_CONTENT     CONTACT_CONTENT" "PIE_CONTENT         PIE_CONTENT         PIE_CONTENT";
  }
  .CONTENIDO_CONTENT .TILTE_SKILLS {
    grid-area: TILTE_SKILLS;
  }
  .CONTENIDO_CONTENT .SKILLS_CONTAINER {
    grid-area: SKILLS_CONTAINER;
    display: none;
  }
  .CONTENIDO_CONTENT .SKILLS_CONT {
    grid-area: SKILLS_CONT;
    display: block;
  }
}
/* Escritorios grandes (más de 1440px) */
.cont_descripcion_foto {
  width: 100%;
  background-size: 100% 500px;
  background-repeat: no-repeat;
  position: relative;
}
.cont_descripcion_foto .contBase {
  width: 100%;
  padding: 50px 0px;
  background: #0c1b32;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.cont_descripcion_foto .contBase .contenedor_izq {
  width: 50%;
  height: 650px;
  margin-left: 50px;
  position: relative;
}
.cont_descripcion_foto .contBase .contenedor_izq .titulo_acerca {
  width: 500px;
  height: 400px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  margin-top: 30px;
  font-size: 160px;
  color: #56fbd3;
  line-height: 180px;
  letter-spacing: -3px;
  position: absolute;
  top: 0;
  left: -500px;
  animation-name: moverTitleAbout;
  animation-duration: 2s;
  animation-fill-mode: both;
  transform: skewX(-5deg);
}
@keyframes moverTitleAbout {
  from {
    left: -500px;
    opacity: 0;
    visibility: hidden;
  }
  to {
    left: 0;
    visibility: visible;
  }
}
.cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn {
  width: 500px;
  height: 270px;
  position: absolute;
  left: 120px;
  top: 250px;
}
.cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .descripcion_acerca {
  text-align: start;
  color: white;
  font-size: 18px;
}
.cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca {
  width: 200px;
  border: none;
  border: 2px solid transparent;
  border-bottom: 2px solid #56fbd3;
  padding: 5px;
  background: rgba(5, 11, 32, 0.7764705882);
  transform: skew(-5deg);
  color: white;
  font-weight: 300;
  margin-top: 20px;
  margin-left: 10px;
  float: right;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  cursor: pointer;
}
.cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca .iconAB {
  margin-left: 5px;
  font-size: 25px;
  color: #56fbd3;
}
.cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca:hover {
  background: rgba(255, 255, 255, 0.075);
  border: 2px solid #56fbd3;
}
.cont_descripcion_foto .contBase .contenedor_der {
  width: 40%;
  background: #0c1b32;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image {
  width: 380px;
  height: 380px;
  border: 1px solid #56fbd3;
  border-radius: 5px;
  background: #56fbd3;
  box-shadow: -18px 18px 1px rgba(86, 251, 210, 0.2274509804);
  overflow: hidden;
  transform: skew(-3deg);
  transition: 0.1s all linear;
}
.cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image .foto {
  mix-blend-mode: multiply;
}
.cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image:hover {
  border: 1px solid #56fbd3;
}
.cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image:hover .foto {
  mix-blend-mode: normal;
}
.cont_descripcion_foto .contBase .contenedor_der .contenedor_der_name {
  margin: -60px auto;
  width: 200px;
  background: rgba(5, 11, 32, 0.7764705882);
  padding: 5px 0px;
  font-weight: 300;
  color: #56fbd3;
  text-align: center;
  transform: skew(-5deg);
}
.cont_descripcion_foto .cont_descripcion_foto_gradient {
  width: 300px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg, #0c1b32 0%, #0c1b32 15%, transparent);
}

/*********************************************************
*************---------------------------------------/*/
/* Laptops y escritorios (1025px a 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
  .cont_descripcion_foto {
    width: 100%;
    padding: 0px 0px;
    background-size: 100% 500px;
    background-repeat: no-repeat;
    position: relative;
  }
  .cont_descripcion_foto .contBase {
    width: 100%;
    padding: 50px 0px;
    background: #0c1b32;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cont_descripcion_foto .contBase .contenedor_izq {
    width: 50%;
    height: 700px;
    margin-left: 30px;
    position: relative;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .titulo_acerca {
    width: 500px;
    height: 400px;
    margin-top: 30px;
    font-size: 150px;
    color: #56fbd3;
    line-height: 180px;
    letter-spacing: -3px;
    position: absolute;
    top: 0;
    left: -500px;
    animation-name: moverTitleAbout;
    animation-duration: 3s;
    animation-fill-mode: both;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn {
    width: 83%;
    height: 550px;
    position: absolute;
    left: 100px;
    bottom: initial;
    top: 220px;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .descripcion_acerca {
    color: rgb(255, 255, 255);
    font-size: 18px;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .descripcion_acerca .formms {
    color: #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca {
    width: 200px;
    border: none;
    border: 2px solid transparent;
    border-bottom: 2px solid #56fbd3;
    padding: 5px;
    background: rgba(5, 11, 32, 0.7764705882);
    transform: skew(-5deg);
    color: white;
    font-size: 14px;
    font-weight: 300;
    margin-top: 20px;
    margin-left: 10px;
    float: right;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    cursor: pointer;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca .iconAB {
    margin-left: 5px;
    font-size: 25px;
    color: #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca:hover {
    background: rgba(255, 255, 255, 0.075);
    border: 2px solid #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_der {
    width: 40%;
    background: #0c1b32;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s all;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image {
    width: 350px;
    height: 350px;
    border: 1px solid #56fbd3;
    border-radius: 5px;
    background: #56fbd3;
    box-shadow: -18px 18px 1px rgba(86, 251, 210, 0.2274509804);
    overflow: hidden;
    transform: skew(-3deg);
    transition: 0.1s all linear;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image .foto {
    mix-blend-mode: multiply;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image:hover {
    border: 1px solid #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image:hover .foto {
    mix-blend-mode: normal;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_name {
    margin: -60px auto;
    width: 200px;
    background: rgba(5, 11, 32, 0.7764705882);
    padding: 5px 0px;
    color: #56fbd3;
    text-align: center;
    transform: skew(-5deg);
  }
  .cont_descripcion_foto .cont_descripcion_foto_gradient {
    width: 300px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, #0c1b32 0%, #0c1b32 15%, transparent);
  }
}
/*********************************************************
*************---------------------------------------/*/
/* Tablets (769px a 1024px) */
@media (min-width: 770px) and (max-width: 1024px) {
  .cont_descripcion_foto {
    width: 100%;
    padding: 0px 0px;
    background-size: 100% 500px;
    background-repeat: no-repeat;
    position: relative;
  }
  .cont_descripcion_foto .contBase {
    width: 100%;
    padding: 50px 0px;
    background: #0c1b32;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cont_descripcion_foto .contBase .contenedor_izq {
    width: 80%;
    height: auto;
    margin: 10px auto;
    padding: 10px 0px;
    position: relative;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .titulo_acerca {
    width: auto;
    height: auto;
    margin-top: initial;
    font-size: 120px;
    color: #56fbd3;
    line-height: 180px;
    letter-spacing: -3px;
    position: initial;
    top: initial;
    left: initial;
    animation-name: moverTitleAbout;
    animation-duration: 3s;
    animation-fill-mode: both;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn {
    width: 90%;
    margin: 20px auto;
    height: auto;
    position: relative;
    left: initial;
    bottom: initial;
    top: initial;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .descripcion_acerca {
    color: rgb(255, 255, 255);
    font-size: 16px;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .descripcion_acerca .formms {
    color: #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca {
    width: 200px;
    border: none;
    border: 2px solid transparent;
    border-bottom: 2px solid #56fbd3;
    padding: 5px;
    background: rgba(5, 11, 32, 0.7764705882);
    transform: skew(-5deg);
    color: white;
    font-size: 14px;
    font-weight: 300;
    margin-top: initial;
    margin-left: initial;
    float: right;
    position: absolute;
    bottom: -180px;
    right: calc(10% - 5px);
    transition-duration: 0.3s;
    transition-timing-function: ease;
    cursor: pointer;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca .iconAB {
    margin-left: 5px;
    font-size: 25px;
    color: #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca:hover {
    background: rgba(255, 255, 255, 0.075);
    border: 2px solid #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_der {
    width: auto;
    padding: 10px;
    background: transparent;
    margin-left: calc(40% - 180px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s all;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image {
    width: 250px;
    height: 250px;
    border: 1px solid #56fbd3;
    border-radius: 5px;
    background: #56fbd3;
    box-shadow: -18px 18px 1px rgba(86, 251, 210, 0.2274509804);
    overflow: hidden;
    transform: skew(-2deg);
    transition: 0.1s all linear;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image .foto {
    mix-blend-mode: multiply;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_name {
    margin: -60px auto;
    width: 200px;
    background: rgba(5, 11, 32, 0.7764705882);
    padding: 5px 0px;
    color: #56fbd3;
    text-align: center;
    transform: skew(-5deg);
  }
  .cont_descripcion_foto .cont_descripcion_foto_gradient {
    display: none;
  }
}
/*********************************************************
*************---------------------------------------/*/
@media (min-width: 641px) and (max-width: 769px) {
  .cont_descripcion_foto {
    width: 100%;
    padding: 0px 0px;
    background-size: 100% 500px;
    background-repeat: no-repeat;
    position: relative;
  }
  .cont_descripcion_foto .contBase {
    width: 100%;
    padding: 50px 0px;
    background: #0c1b32;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cont_descripcion_foto .contBase .contenedor_izq {
    width: 90%;
    height: auto;
    margin: 10px auto;
    padding: 10px 0px;
    position: relative;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .titulo_acerca {
    width: auto;
    height: auto;
    margin-top: initial;
    font-size: 120px;
    color: #56fbd3;
    line-height: 180px;
    letter-spacing: -3px;
    position: initial;
    top: initial;
    left: initial;
    animation-name: moverTitleAbout;
    animation-duration: 3s;
    animation-fill-mode: both;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn {
    width: 90%;
    margin: 20px auto;
    height: auto;
    position: relative;
    left: initial;
    bottom: initial;
    top: initial;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .descripcion_acerca {
    color: rgb(255, 255, 255);
    font-size: 16px;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .descripcion_acerca .formms {
    color: #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca {
    width: 200px;
    border: none;
    border: 2px solid transparent;
    border-bottom: 2px solid #56fbd3;
    padding: 5px;
    background: rgba(5, 11, 32, 0.7764705882);
    transform: skew(-5deg);
    color: white;
    font-size: 14px;
    font-weight: 300;
    margin-top: initial;
    margin-left: initial;
    float: right;
    position: absolute;
    bottom: -180px;
    right: 20px;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    cursor: pointer;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca .iconAB {
    margin-left: 5px;
    font-size: 25px;
    color: #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca:hover {
    background: rgba(255, 255, 255, 0.075);
    border: 2px solid #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_der {
    width: auto;
    padding: 10px;
    background: transparent;
    margin-left: calc(40% - 180px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s all;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image {
    width: 230px;
    height: 230px;
    border: 1px solid #56fbd3;
    border-radius: 5px;
    background: #56fbd3;
    box-shadow: -18px 18px 1px rgba(86, 251, 210, 0.2274509804);
    overflow: hidden;
    transform: skew(-2deg);
    transition: 0.1s all linear;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image .foto {
    mix-blend-mode: multiply;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_name {
    margin: -60px auto;
    width: 200px;
    background: rgba(5, 11, 32, 0.7764705882);
    padding: 5px 0px;
    color: #56fbd3;
    text-align: center;
    transform: skew(-5deg);
  }
  .cont_descripcion_foto .cont_descripcion_foto_gradient {
    display: none;
  }
}
/*********************************************************
*************---------------------------------------/*/
@media (min-width: 481px) and (max-width: 640px) {
  .cont_descripcion_foto {
    width: 100%;
    padding: 0px 0px;
    background-size: 100% 500px;
    background-repeat: no-repeat;
    position: relative;
  }
  .cont_descripcion_foto .contBase {
    width: 100%;
    padding: 50px 0px;
    background: #0c1b32;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cont_descripcion_foto .contBase .contenedor_izq {
    width: 90%;
    height: auto;
    margin: 10px auto;
    padding: 10px 0px;
    position: relative;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .titulo_acerca {
    width: 100%;
    height: auto;
    margin-top: initial;
    font-size: 100px;
    color: #56fbd3;
    line-height: 180px;
    letter-spacing: -3px;
    position: initial;
    top: initial;
    left: initial;
    animation-name: moverTitleAbout;
    animation-duration: 3s;
    animation-fill-mode: both;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn {
    width: 100%;
    margin: 10px auto;
    height: auto;
    position: relative;
    left: initial;
    bottom: initial;
    top: initial;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .descripcion_acerca {
    color: rgb(255, 255, 255);
    font-size: 16px;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .descripcion_acerca .formms {
    color: #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca {
    width: 180px;
    border: none;
    border: 2px solid transparent;
    border-bottom: 2px solid #56fbd3;
    padding: 5px;
    background: rgba(5, 11, 32, 0.7764705882);
    transform: skew(-5deg);
    color: white;
    font-size: 14px;
    font-weight: 300;
    margin-top: initial;
    margin-left: initial;
    float: right;
    position: absolute;
    bottom: -180px;
    right: 10px;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    cursor: pointer;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca .iconAB {
    margin-left: 5px;
    font-size: 25px;
    color: #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca:hover {
    background: rgba(255, 255, 255, 0.075);
    border: 2px solid #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_der {
    width: 100%;
    padding: 10px;
    margin: 5px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s all;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image {
    width: 200px;
    height: 200px;
    margin-left: calc(10% - 240px);
    border: 1px solid #56fbd3;
    border-radius: 5px;
    background: #56fbd3;
    box-shadow: -18px 18px 1px rgba(86, 251, 210, 0.2274509804);
    overflow: hidden;
    transform: skew(-2deg);
    transition: 0.1s all linear;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image .foto {
    mix-blend-mode: multiply;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_name {
    margin: -60px auto;
    width: 100%;
    background: rgba(5, 11, 32, 0.7764705882);
    padding: 5px 0px;
    color: #56fbd3;
    text-align: center;
    transform: skew(-5deg);
    font-size: 14px;
  }
  .cont_descripcion_foto .cont_descripcion_foto_gradient {
    display: none;
  }
}
/*********************************************************
*************---------------------------------------/*/
@media (min-width: 320px) and (max-width: 480px) {
  .cont_descripcion_foto {
    width: 100%;
    padding: 0px 0px;
    background-size: 100% 500px;
    background-repeat: no-repeat;
    position: relative;
  }
  .cont_descripcion_foto .contBase {
    width: 100%;
    padding: 10px 0px;
    background: #0c1b32;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cont_descripcion_foto .contBase .contenedor_izq {
    width: 90%;
    height: auto;
    margin: 0px auto;
    padding: 10px 0px;
    position: relative;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .titulo_acerca {
    width: 100%;
    height: auto;
    margin-top: -15px;
    font-size: 100px;
    color: #56fbd3;
    line-height: 180px;
    letter-spacing: -3px;
    position: initial;
    top: initial;
    left: initial;
    animation-name: moverTitleAbout;
    animation-duration: 3s;
    animation-fill-mode: both;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn {
    width: 100%;
    margin: 0px auto;
    margin-top: -15px;
    margin-bottom: 20px;
    height: auto;
    position: relative;
    left: initial;
    bottom: initial;
    top: initial;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .descripcion_acerca {
    color: rgb(255, 255, 255);
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .descripcion_acerca .formms {
    color: #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca {
    width: 180px;
    border: none;
    border: 2px solid transparent;
    border-bottom: 2px solid #56fbd3;
    padding: 5px;
    background: rgba(5, 11, 32, 0.7764705882);
    transform: skew(-5deg);
    color: white;
    font-weight: 300;
    margin-top: initial;
    margin-left: initial;
    float: right;
    position: absolute;
    bottom: -320px;
    right: calc(50% - 90px);
    transition-duration: 0.3s;
    transition-timing-function: ease;
    cursor: pointer;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca .iconAB {
    margin-left: 5px;
    font-size: 25px;
    color: #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_izq .contenedorIzq_parrBtn .btnAcerca:hover {
    background: rgba(255, 255, 255, 0.075);
    border: 2px solid #56fbd3;
  }
  .cont_descripcion_foto .contBase .contenedor_der {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 80px;
    margin: 5px auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: 1s all;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image {
    width: 200px;
    height: 200px;
    margin-left: calc(55% - 240px);
    border: 1px solid #56fbd3;
    border-radius: 5px;
    background: #56fbd3;
    box-shadow: -18px 18px 1px rgba(86, 251, 210, 0.2274509804);
    overflow: hidden;
    transform: skew(-2deg);
    transition: 0.1s all linear;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_image .foto {
    mix-blend-mode: multiply;
  }
  .cont_descripcion_foto .contBase .contenedor_der .contenedor_der_name {
    margin: -60px auto;
    width: 100%;
    background: rgba(5, 11, 32, 0.7764705882);
    padding: 5px 0px;
    color: #56fbd3;
    text-align: center;
    transform: skew(-5deg);
    font-size: 14px;
  }
  .cont_descripcion_foto .cont_descripcion_foto_gradient {
    display: none;
  }
}
.contContact {
  width: 100%;
  background: #0c1b32;
  padding-bottom: 50px;
}
.contContact .contContact_gradient {
  width: 100%;
  height: 50px;
  background: linear-gradient(#000000, transparent);
}
.contContact .formulario {
  width: 80%;
  margin: auto;
  padding: 20px 0px;
}
.contContact .formulario .contDatosPersonales {
  width: 100%;
  padding: 20px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.contContact .formulario .contDatosPersonales .contCampos {
  width: 50%;
}
.contContact .formulario .contDatosPersonales .contCampos label {
  color: white;
  font-weight: 300;
  font-size: 22px;
}
.contContact .formulario .contDatosPersonales .contCampos .campoInput {
  width: 100%;
  margin-bottom: 10px;
}
.contContact .formulario .contDatosPersonales .contCampos .campoInput .input {
  margin-top: 5px;
  width: 100%;
  padding: 5px 10px;
  background: transparent;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 300;
  outline: 1px solid transparent;
  border: 1px solid #56fbd3;
  border-radius: 2px;
}
.contContact .formulario .contDatosPersonales .contCampos .campoInput .input:focus {
  outline: 1px solid #56fbd3;
}
.contContact .formulario .contDatosPersonales .contCampos .campoInput .input[required]:valid {
  outline: 1px solid #56fbd3;
}
.contContact .formulario .contDatosPersonales .contCampos .campoInput .input[required]:invalid {
  outline: 1px solid #0c1b32;
}
.contContact .formulario .contDatosPersonales .campoTextarea {
  width: 45%;
  border-radius: 2px;
}
.contContact .formulario .contDatosPersonales .campoTextarea label {
  color: white;
  font-size: 22px;
  font-weight: 300;
}
.contContact .formulario .contDatosPersonales .campoTextarea .textarea {
  margin-top: 5px;
  padding: 5px 10px;
  border-radius: 3px;
  min-width: 100%;
  max-width: 100%;
  border: 1px solid #56fbd3;
  outline: none;
  color: rgb(255, 255, 255);
  font-weight: 300;
  background: transparent;
  resize: none;
}
.contContact .formulario .btnEnviar {
  width: 280px;
  font-weight: 100;
  padding: 5px 10px;
  background: #060f1d;
  border: 1px solid #56fbd3;
  border-radius: 2px;
  margin-left: calc(80% - 180px);
  color: white;
  transition: 0.2s all;
  cursor: pointer;
}
.contContact .formulario .btnEnviar:hover {
  background: #0c1b32;
  color: white;
  border: 1px solid white;
}

@media (min-width: 320px) and (max-width: 720px) {
  .contContact {
    width: 100%;
    background: #0c1b32;
    padding-bottom: 50px;
  }
  .contContact .contContact_gradient {
    width: 100%;
    height: 50px;
    background: linear-gradient(#000000, transparent);
  }
  .contContact .formulario {
    width: 100%;
    padding: 0px 20px;
  }
  .contContact .formulario .contDatosPersonales {
    width: 100%;
    padding: 20px 0px;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .contContact .formulario .contDatosPersonales .contCampos {
    width: 100%;
    padding: 5px 0px;
  }
  .contContact .formulario .contDatosPersonales .campoTextarea {
    width: 100%;
    padding: 5px 0px;
  }
  .contContact .formulario .contDatosPersonales .campoTextarea .campoTextareaTitle {
    color: #96aadb;
  }
  .contContact .formulario .contDatosPersonales .campoTextarea .textarea {
    margin: 10px auto;
    width: 100%;
    padding: 10px;
    max-width: 100%;
    min-width: 100%;
    max-height: 150px;
    min-height: 150px;
    resize: none;
  }
  .contContact .formulario .btnEnviar {
    width: 100%;
    font-weight: 100;
    padding: 5px 10px;
    background: #0c1b32;
    border: 1px solid #56fbd3;
    border-radius: 2px;
    margin-left: 0;
    color: white;
    transition: 0.2s all;
    cursor: pointer;
  }
}
.contBtnTop {
  position: fixed;
  right: 40px;
  bottom: 60px;
  z-index: 100;
}
.contBtnTop .iconTop {
  font-size: 40px;
  color: #56fbd3;
  opacity: 0;
  transition: 0.5s all;
  transform: scale(0, 0);
  animation: moverTop;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes moverTop {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(20px);
  }
}
.contBtnTop .iconTopJS {
  opacity: 1;
  transform: scale(0.8, 0.8);
  cursor: pointer;
  position: relative;
  z-index: 2000;
}

@media only screen and (max-width: 720px) {
  .contBtnTop {
    position: fixed;
    right: 20px;
    bottom: 60px;
  }
  .contBtnTop .iconTop {
    font-size: 35px;
    color: #56fbd3;
    opacity: 0;
    transition: 0.5s all;
    transform: scale(0, 0);
  }
  .contBtnTop .iconTopJS {
    opacity: 1;
    transform: scale(0.8, 0.8);
    cursor: pointer;
    z-index: 1000;
    transform: scale(1, 1);
  }
}
/*.loader{
    width:100%;
    height: 100vh;
    background: $colorAzul;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
    position: fixed;

}
.loaderJS{
    animation: preloader 1s forwards;

}
@keyframes preloader {
    100%{
        opacity: 0;
        visibility: hidden;
    }
}*/
.contPie {
  width: 100%;
  padding: 30px 0px;
  background: #000000;
}
.contPie .contPie_cont {
  width: 100%;
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.contPie .contPie_cont .boxing1 {
  width: 85px;
  height: 40px;
  background-image: url(../img/LOGO/Nuevo\ Logo.png);
  background-size: 100% 100%;
  margin-left: 20px;
}
.contPie .contPie_cont .contPie_ul {
  width: 380px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.contPie .contPie_cont .contPie_ul .contPie_ul_li {
  list-style: none;
  padding: 2px;
  transform: skew(-5deg);
}
.contPie .contPie_cont .contPie_ul .contPie_ul_li .contPie_ul_li_a {
  color: white;
  font-weight: 100;
  font-size: 14px;
}
.contPie .contPie_cont .contPie_ul .contPie_ul_li .contPie_ul_li_a:hover {
  color: #56fbd3;
}
.contPie .caja_pie {
  width: 100%;
  height: 50px;
  margin-top: 20px;
}
.contPie .caja_pie .caja_pie_derechos_text {
  font-size: 14px;
  color: white;
  text-align: center;
  line-height: 16px;
  font-weight: 100;
}
.contPie .caja_pie .caja_pie_derechos_text .ap {
  color: #56fbd3;
  font-size: 12px;
}

@media (min-width: 320px) and (max-width: 640px) {
  .contPie {
    width: 100%;
    padding: 30px 0px;
    background: #000000;
  }
  .contPie .contPie_cont {
    width: 100%;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .contPie .contPie_cont .boxing1 {
    width: 100px;
    height: 50px;
    background-image: url(../img/LOGO/Nuevo\ Logo.png);
    background-size: 100% 100%;
    margin-left: 20px;
  }
  .contPie .contPie_cont .contPie_ul {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  .contPie .contPie_cont .contPie_ul .contPie_ul_li {
    list-style: none;
    padding: 0px;
    line-height: 20px;
  }
  .contPie .contPie_cont .contPie_ul .contPie_ul_li .contPie_ul_li_a {
    color: white;
    font-size: 12px;
  }
  .contPie .boxing2 {
    width: 100%;
    margin-top: 40px;
  }
  .contPie .boxing2 .contFooter_derechos_text {
    font-size: 14px;
    color: white;
    text-align: center;
    line-height: 16px;
    font-weight: 100;
  }
  .contPie .boxing2 .contFooter_derechos_text .ap {
    color: #56fbd3;
    font-size: 12px;
  }
}
.barras {
  width: 15px;
  padding: 5px 0px;
  position: fixed;
  top: 400px;
  left: 20px;
  display: flex;
  justify-content: space-between;
}
.barras .barra1 {
  width: 5px;
  height: 200px;
  background: #56fbd3;
  margin-top: 10px;
}
.barras .barra2 {
  width: 5px;
  height: 180px;
  background: #56fbd3;
}

h2 { /* NOOOOO SE RESPETA LAS CLASE TITLE*/
  margin-top: -30px;
  color: rgb(255, 255, 255);
  font-size: 20px;
}

.class_popup { /* SE RESPETA LAS CLASE POPUP LOS BORDES*/
  box-shadow: 0px 0px 8px #56fbd3;
}

.class_buttonConfirm {
  width: 180px; /*SE RESPETA LAS CLASE DE LA BOTON*/
  padding: 6px;
  border: 1px solid white;
  border-radius: 10px;
  border: 2px solid #56fbd3;
  background: rgba(12, 27, 50, 0.6980392157);
  color: white;
  cursor: pointer;
}

/*FOOTER*/
h3 { /*SE RESPETA LAS CLASE DE LA BOTON*/
  color: rgba(250, 250, 250, 0.872);
}

.CONTAINER {
  width: 100%;
  max-width: 1600px;
  padding: 10px 30px;
  background: #0c1b32;
  margin: auto;
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 80px auto auto;
  grid-template-areas: "NAVIGATION  NAVIGATION   NAVIGATION   NAVIGATION" "SECTION     SECTION      SECTION      SIDEBAR" "SECTION     SECTION      SECTION      SIDEBAR " "FOOTER      FOOTER       FOOTER       FOOTER";
}
.CONTAINER .NAVIGATION {
  padding: 10px 0px;
  grid-area: NAVIGATION;
}
.CONTAINER .SECTION {
  padding: 10px 0px;
  grid-area: SECTION;
}
.CONTAINER .SIDEBAR {
  padding: 10px 0px;
  grid-area: SIDEBAR;
}
.CONTAINER .FOOTER {
  padding: 10px 0px;
  grid-area: FOOTER;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .CONTAINER {
    width: 100%;
    max-width: 1440px;
    padding: 10px 0px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 80px auto auto;
    grid-template-areas: "NAVIGATION  NAVIGATION   NAVIGATION   NAVIGATION" "SECTION     SECTION      SECTION      SECTION" "SIDEBAR     SIDEBAR      SIDEBAR      SIDEBAR " "FOOTER      FOOTER       FOOTER       FOOTER";
  }
}
@media (min-width: 770px) and (max-width: 1024px) {
  .CONTAINER {
    width: 100%;
    max-width: 1440px;
    padding: 10px 0px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 80px auto auto;
    grid-template-areas: "NAVIGATION  NAVIGATION   NAVIGATION   NAVIGATION" "SECTION     SECTION      SECTION      SECTION" "SIDEBAR     SIDEBAR      SIDEBAR      SIDEBAR " "FOOTER      FOOTER       FOOTER       FOOTER";
  }
}
@media (min-width: 641px) and (max-width: 769px) {
  .CONTAINER {
    width: 100%;
    max-width: 1440px;
    padding: 10px 0px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 80px auto auto;
    grid-template-areas: "NAVIGATION  NAVIGATION   NAVIGATION   NAVIGATION" "SECTION     SECTION      SECTION      SECTION" "SIDEBAR     SIDEBAR      SIDEBAR      SIDEBAR " "FOOTER      FOOTER       FOOTER       FOOTER";
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .CONTAINER {
    width: 100%;
    max-width: 1440px;
    padding: 10px 0px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 80px auto auto;
    grid-template-areas: "NAVIGATION  NAVIGATION   NAVIGATION   NAVIGATION" "SECTION     SECTION      SECTION      SECTION" "SIDEBAR     SIDEBAR      SIDEBAR      SIDEBAR " "FOOTER      FOOTER       FOOTER       FOOTER";
  }
}
@media (min-width: 20px) and (max-width: 480px) {
  .CONTAINER {
    width: 100%;
    max-width: 1440px;
    padding: 10px 0px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 80px auto auto;
    grid-template-areas: "NAVIGATION  NAVIGATION   NAVIGATION   NAVIGATION" "SECTION     SECTION      SECTION      SECTION" "SIDEBAR     SIDEBAR      SIDEBAR      SIDEBAR " "FOOTER      FOOTER       FOOTER       FOOTER";
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.contentSection {
  width: 100%;
  padding: 10px 15px;
  background: #0c1b32;
}
.contentSection .contentSection_cont {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  transform: skew(-5deg);
}
.contentSection .contentSection_cont .contentSection_contSup {
  width: 100%;
  height: 180px;
  position: absolute;
  top: 0;
}
.contentSection .contentSection_cont .contentSection__title {
  text-align: center;
  font-size: 100px;
  font-weight: 700;
  color: #56fbd3;
  padding-top: 30px;
  animation-duration: 2s;
  letter-spacing: -5px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
}
.contentSection .contentSection_cont .contentSection_contInf {
  width: 100%;
  height: 180px;
  background: linear-gradient(transparent, #0c1b32);
  position: absolute;
  bottom: -2px;
}
@media (min-width: 480px) and (max-width: 720px) {
  .contentSection .contentSection_cont {
    margin: auto;
    width: 70%;
    height: 200px;
  }
  .contentSection .contentSection_cont .contentSection_contSup {
    width: 100%;
    height: 200px;
  }
  .contentSection .contentSection_cont .contentSection__title {
    width: 90%;
    margin: auto;
    text-align: center;
    font-size: 90px;
    line-height: 80px;
    color: #56fbd3;
    padding-top: 5px;
    animation-duration: 2s;
    letter-spacing: -5px;
  }
  .contentSection .contentSection_cont .contentSection_contInf {
    width: 100%;
    height: 200px;
  }
}
@media (min-width: 320px) and (max-width: 479px) {
  .contentSection .contentSection_cont {
    width: 100%;
    height: 180px;
  }
  .contentSection .contentSection_cont .contentSection_contSup {
    width: 100%;
    height: 180px;
  }
  .contentSection .contentSection_cont .contentSection__title {
    width: 90%;
    margin: auto;
    text-align: center;
    font-size: 80px;
    line-height: 70px;
    color: #56fbd3;
    padding-top: 5px;
    animation-duration: 2s;
    letter-spacing: 0px;
  }
  .contentSection .contentSection_cont .contentSection_contInf {
    width: 100%;
    height: 180px;
  }
}
.contentSection .contentSection__todosCuadros {
  width: 100%;
  margin-top: 5px;
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.contentSection .contentSection__todosCuadros .contentSection__cuadro {
  width: 285px;
  height: 420px;
  background: #060f1d;
  padding: 10px;
  margin: 22px auto;
  overflow: hidden;
  border: 2px solid #56fbd3;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 0px 5px #56fbd3;
  transition: 0.2s all;
}
.contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__sup {
  width: 90%;
  height: 160px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}
.contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__title {
  width: 200px;
  margin: auto;
  line-height: 18px;
  color: #56fbd3;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}
.contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box .contentSection__cuadro__box__details {
  margin-left: 10px;
  margin-top: 30px;
}
.contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box .contentSection__cuadro__box__details .caja {
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box .contentSection__cuadro__box__details .caja .sub {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #56fbd3;
}
.contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box .contentSection__cuadro__box__details2 {
  width: 50px;
  display: flex;
  justify-content: space-between;
  margin-right: 10px;
}
.contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box .contentSection__cuadro__box__details2 .icon {
  font-size: 20px;
  color: white;
}
.contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box__description {
  margin: 5px auto;
  width: 95%;
  color: #96aadb;
  font-size: 14px;
}
.contentSection .contentSection__todosCuadros .contentSection__cuadro:hover {
  transform: scale(1.02, 1.02);
}
@media (min-width: 320px) and (max-width: 480px) {
  .contentSection .contentSection__todosCuadros .contentSection__cuadro {
    width: 320px;
    height: 420px;
    background: #060f1d;
    padding: 20px;
    margin: 22px auto;
    overflow: hidden;
    border: 2px solid #56fbd3;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 5px #56fbd3;
    transition: 0.2s all;
  }
  .contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__sup {
    width: 100%;
    height: 160px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
  }
  .contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__title {
    width: 200px;
    margin: auto;
    line-height: 18px;
    color: #56fbd3;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
  }
  .contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box {
    width: 80%;
    margin: 10px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box .contentSection__cuadro__box__details {
    margin-left: 10px;
    margin-top: 30px;
  }
  .contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box .contentSection__cuadro__box__details .caja {
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box .contentSection__cuadro__box__details .caja .sub {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #56fbd3;
  }
  .contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box .contentSection__cuadro__box__details2 {
    width: 50px;
    display: flex;
    justify-content: space-between;
    margin-right: 10px;
  }
  .contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box .contentSection__cuadro__box__details2 .icon {
    font-size: 20px;
    color: white;
  }
  .contentSection .contentSection__todosCuadros .contentSection__cuadro .contentSection__cuadro__box__description {
    margin: 5px auto;
    width: 95%;
    color: #96aadb;
    font-size: 14px;
  }
}
.contentSection .contentSection_blocks {
  width: 180px;
  margin: auto;
  padding: 5px 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.contentSection .contentSection_blocks .contentSection_blocks_number {
  width: 25px;
  height: 25px;
  background: #56fbd3;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  color: #0c1b32;
  transition: 0.3s all;
}
.contentSection .contentSection_blocks .contentSection_blocks_number:hover {
  background: #060f1d;
  color: #56fbd3;
}

.contSidebar {
  margin-top: -10px;
  width: 100%;
  height: 95%;
  padding: 40px 20px;
  background: #0e1f39;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contSidebar .title__sidebar {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 300;
}
.contSidebar .anuncio1 {
  margin: 30px auto;
  width: 100%;
  height: 280px;
  background-image: url(../img/publicity/PROPAGANDA_DIGITIZING.jpg);
  background-size: 100% 100%;
}
.contSidebar .anuncio2 {
  margin: 10px auto;
  width: 100%;
  height: 280px;
  background-image: url(../img/publicity/PROPAGANDA_GAME.jpg);
  background-size: 100% 100%;
  display: none;
  visibility: hidden;
}

@media (min-width: 770px) and (max-width: 1200px) {
  .contSidebar {
    margin: 10px auto;
    width: 90%;
    height: auto;
    padding: 40px 20px;
    background: #0e1f39;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .contSidebar .title__sidebar {
    width: calc(70% - 100px);
    color: rgb(255, 255, 255);
    font-weight: 300;
  }
  .contSidebar .anuncio1 {
    margin: initial;
    width: 280px;
    height: 280px;
    background-image: url(../img/publicity/PROPAGANDA_DIGITIZING.jpg);
    background-size: 100% 100%;
  }
  .contSidebar .anuncio2 {
    display: none;
    visibility: hidden;
  }
}
@media (min-width: 320px) and (max-width: 769px) {
  .contSidebar {
    margin: 10px auto;
    width: 100%;
    height: auto;
    padding: 20px;
    background: #0e1f39;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .contSidebar .title__sidebar {
    width: 100%;
    color: rgb(255, 255, 255);
    font-weight: 300;
  }
  .contSidebar .anuncio1 {
    margin: 20px 0px;
    width: 280px;
    height: 280px;
    background-image: url(../img/publicity/PROPAGANDA_DIGITIZING.jpg);
    background-size: 100% 100%;
  }
  .contSidebar .anuncio2 {
    display: none;
    visibility: hidden;
  }
}
.contentFoot {
  width: 100%;
  padding: 10px 0px;
  background: rgba(0, 0, 0, 0.096);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.contentFoot .contentFoot__cajaLN {
  width: 250px;
  padding: 5px 0px;
  margin-left: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__logo {
  width: auto;
  height: 40px;
}
.contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre {
  text-align: center;
  line-height: 18px;
}
.contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name {
  font-size: 14px;
  color: white;
  font-weight: 300px;
}
.contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name .nameObj {
  color: #56fbd3;
  font-size: 14px;
  font-weight: 300px;
}
.contentFoot .contentFoot__cajaRedes {
  width: 15%;
  margin-right: 110px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.contentFoot .contentFoot__cajaRedes .cajaSociales {
  display: flex;
  flex-direction: row;
  align-items: center;
  transform: skew(-5deg);
}
.contentFoot .contentFoot__cajaRedes .cajaSociales .IconSocial {
  color: white;
  font-size: 26px;
}
.contentFoot .contentFoot__cajaRedes .cajaSociales .nota {
  margin-left: 2px;
  color: rgb(199, 199, 199);
  transition: 0.3s linear;
  transition-property: transform;
  display: none;
  visibility: hidden;
}
.contentFoot .contentFoot__cajaRedes .cajaSociales .IconSocial:hover {
  color: #56fbd3;
}

@media (min-width: 770px) and (max-width: 1200px) {
  .contentFoot {
    width: 100%;
    margin-top: 50px;
    padding: 10px 0px;
    background: rgba(0, 0, 0, 0.096);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .contentFoot .contentFoot__cajaLN {
    width: 100px;
    padding: 5px 0px;
    margin-left: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__logo {
    width: 85px;
    height: 40px;
  }
  .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre {
    display: none;
  }
  .contentFoot .contentFoot__cajaRedes {
    width: 20%;
    margin-right: 110px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  .contentFoot .contentFoot__cajaRedes .cajaSociales {
    display: flex;
    flex-direction: row;
    align-items: center;
    transform: skew(-5deg);
  }
  .contentFoot .contentFoot__cajaRedes .cajaSociales .IconSocial {
    color: white;
    font-size: 26px;
  }
  .contentFoot .contentFoot__cajaRedes .cajaSociales .nota {
    margin-left: 2px;
    color: rgb(199, 199, 199);
    transition: 0.3s linear;
    transition-property: transform;
    display: none;
    visibility: hidden;
  }
  .contentFoot .contentFoot__cajaRedes .cajaSociales .IconSocial:hover {
    color: #56fbd3;
  }
}
@media (min-width: 320px) and (max-width: 769px) {
  .contentFoot {
    width: 100%;
    margin-top: 50px;
    padding: 10px 0px;
    background: rgba(0, 0, 0, 0.096);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .contentFoot .contentFoot__cajaLN {
    width: 100px;
    padding: 5px 0px;
    margin-left: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__logo {
    width: 85px;
    height: 40px;
  }
  .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre {
    display: none;
  }
  .contentFoot .contentFoot__cajaRedes {
    width: calc(25% + 80px);
    margin-right: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  .contentFoot .contentFoot__cajaRedes .cajaSociales {
    display: flex;
    flex-direction: row;
    align-items: center;
    transform: skew(-5deg);
  }
  .contentFoot .contentFoot__cajaRedes .cajaSociales .IconSocial {
    color: white;
    font-size: 26px;
  }
  .contentFoot .contentFoot__cajaRedes .cajaSociales .nota {
    margin-left: 2px;
    color: rgb(199, 199, 199);
    transition: 0.3s linear;
    transition-property: transform;
    display: none;
    visibility: hidden;
  }
  .contentFoot .contentFoot__cajaRedes .cajaSociales .IconSocial:hover {
    color: #56fbd3;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.CONTAINER_LANDING {
  width: 100%;
  max-width: 1600px;
  background: #0c1b32;
  padding: 20px 0px;
  margin: auto;
  display: grid;
  overflow: hidden;
  grid-template-columns: 50px 1fr 300px;
  grid-template-rows: auto;
  grid-template-areas: "HEADER                 HEADER               HEADER" "BARS_VERTICLE          SECTION_PROYECTS     SIDEBAR_LANDING" "BARS_VERTICLE          SECTION_PROYECTS     SIDEBAR_LANDING" "BARS_VERTICLE          SECTION_PROYECTS     SIDEBAR_LANDING" "SIDEBAR                SIDEBAR              SIDEBAR_LANDING" "FOOTER                 FOOTER               FOOTER";
}
.CONTAINER_LANDING .contDowload {
  width: 100%;
  height: 100vh;
  background: black;
}
.CONTAINER_LANDING .HEADER {
  height: 60px;
  padding: 10px 0px;
  grid-area: HEADER;
}
.CONTAINER_LANDING .BARS_VERTICLE {
  padding: 30px 0px;
  grid-area: BARS_VERTICLE;
}
.CONTAINER_LANDING .BARS_VERTICLE .contBars {
  width: 100%;
  padding: 5px 0px;
  background: #0c1b32;
  text-align: center;
}
.CONTAINER_LANDING .BARS_VERTICLE .contBars .contBars_barra {
  width: 2px;
  height: 180px;
  background: #56fbd3;
  margin: auto;
  border-radius: 1000px;
  box-shadow: 0px 0px 20px #96aadb;
}
.CONTAINER_LANDING .BARS_VERTICLE .contBars .contBars_tHTML {
  color: #56fbd3;
  font-size: 20px;
  font-weight: 500;
  height: 50px;
}
.CONTAINER_LANDING .SECTION_PROYECTS {
  padding: 10px 0px;
  grid-area: SECTION_PROYECTS;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle {
  width: 100%;
  height: 180px;
  position: relative;
  background: #0c1b32;
  overflow: hidden;
  transform: skew(-5deg);
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .contSectionTitleTop {
  width: 100%;
  height: 180px;
  position: absolute;
  top: 0;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .titleProyectos {
  text-align: center;
  font-size: 100px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #56fbd3;
  padding-top: 30px;
  animation-duration: 2s;
  letter-spacing: -5px;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .contSectionTitleBottom {
  width: 100%;
  height: 180px;
  background: linear-gradient(transparent, #0c1b32);
  position: absolute;
  bottom: -2px;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb {
  width: 100%;
  padding: 10px 0px;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block {
  margin-top: 20px;
  margin-bottom: 60px;
  width: 100%;
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_figture {
  width: 350px;
  height: 500px;
  box-shadow: 15px 30px 0px #56fbd3;
  transition: 0.5s all;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_figture:hover {
  box-shadow: -8px 20px 0px #56fbd3;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc {
  width: 500px;
  padding: 10px;
  background: #0c1b32;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_title {
  color: #56fbd3;
  font-size: 40px;
  font-weight: 500;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_text {
  margin-top: 10px;
  color: #96aadb;
  font-size: 16px;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block {
  width: 100%;
  padding: 10px 0px;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box {
  width: 50%;
  padding: 10px 0px;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #56fbd3;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_desc {
  margin-top: 5px;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_desc .text {
  color: white;
  margin: 1px auto;
  font-size: 14px;
  font-weight: 300;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_btn {
  margin-top: 5px;
  width: 200px;
  padding: 6px 0px;
  border: 2px solid transparent;
  border-bottom: 2px solid #56fbd3;
  background: rgba(5, 11, 32, 0.7764705882);
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: 0.5s all;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_btn:hover {
  border: 2px solid #56fbd3;
  cursor: pointer;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks {
  width: 180px;
  margin: 30px auto;
  padding: 5px 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks .contentSection_blocks_number {
  width: 25px;
  height: 25px;
  background: #56fbd3;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  color: #0c1b32;
  transition: 0.3s all;
}
.CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks .contentSection_blocks_number:hover {
  background: #060f1d;
  color: #56fbd3;
}
.CONTAINER_LANDING {
  /**ESTA OCULTO*/
}
.CONTAINER_LANDING .SIDEBAR {
  padding: 10px 0px;
  grid-area: SIDEBAR;
  display: none;
}
.CONTAINER_LANDING .SIDEBAR_LANDING {
  padding: 10px 0px;
  grid-area: SIDEBAR_LANDING;
}
.CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding {
  margin-top: -10px;
  width: 100%;
  height: 95%;
  padding: 40px 20px;
  background: #0e1f39;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .title__sidebarLanding {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 300;
}
.CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .anuncio1 {
  margin: 30px auto;
  width: 100%;
  height: 280px;
  background-image: url(../img/publicity/PROPAGANDA_DIGITIZING.jpg);
  background-size: 100% 100%;
}
.CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .anuncio2 {
  margin: 10px auto;
  width: 100%;
  height: 280px;
  background-image: url(../img/publicity/PROPAGANDA_GAME.jpg);
  background-size: 100% 100%;
  display: none;
  visibility: hidden;
}
.CONTAINER_LANDING .FOOTER {
  padding: 10px 0px;
  grid-area: FOOTER;
}
.CONTAINER_LANDING .FOOTER .contentFoot {
  width: 100%;
  background: rgba(5, 11, 32, 0.7764705882);
}
.CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN {
  width: auto;
  background: transparent;
}
.CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__logo {
  width: 85px;
  height: 40px;
}
.CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre {
  width: 180px;
  padding: 5px;
}
.CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name {
  font-size: 14px;
  font-weight: 300;
}
.CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name .nameObj {
  font-size: 14px;
  font-weight: 300;
}
.CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes {
  width: 18%;
}
.CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales {
  transform: skew(-5deg);
}
.CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales .IconSocial {
  color: #56fbd3;
  font-size: 28px;
}
.CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales .nota {
  display: none;
  visibility: hidden;
}

@media (min-width: 900px) and (max-width: 1200px) {
  .CONTAINER_LANDING {
    width: 100%;
    max-width: 1300px;
    background: #0c1b32;
    padding: 20px 0px;
    margin: auto;
    display: grid;
    grid-template-columns: 50px 1fr 300px;
    grid-template-rows: auto;
    grid-template-areas: "HEADER                 HEADER                HEADER" "BARS_VERTICLE          SECTION_PROYECTS      SECTION_PROYECTS" "BARS_VERTICLE          SIDEBAR_LANDING       SIDEBAR_LANDING" "FOOTER                 FOOTER                FOOTER";
  }
  .CONTAINER_LANDING .HEADER {
    height: 60px;
    padding: 10px 0px;
    grid-area: HEADER;
  }
  .CONTAINER_LANDING .BARS_VERTICLE {
    display: block;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS {
    padding: 10px 0px;
    grid-area: SECTION_PROYECTS;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle {
    width: 100%;
    height: 180px;
    position: relative;
    background: #0c1b32;
    overflow: hidden;
    transform: skew(-5deg);
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .contSectionTitleTop {
    width: 100%;
    height: 180px;
    position: absolute;
    top: 0;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .titleProyectos {
    text-align: center;
    font-size: 100px;
    font-weight: 700;
    color: #56fbd3;
    padding-top: 20px;
    animation-duration: 2s;
    letter-spacing: -5px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .contSectionTitleBottom {
    width: 100%;
    height: 180px;
    background: linear-gradient(transparent, #0c1b32);
    position: absolute;
    bottom: -2px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb {
    width: 100%;
    padding: 10px 0px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block {
    margin: 20px auto;
    width: 100%;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_figture {
    width: 350px;
    height: 500px;
    box-shadow: 15px 30px 0px #56fbd3;
    transition: 0.5s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_figture:hover {
    box-shadow: -8px 20px 0px #56fbd3;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc {
    width: 400px;
    padding: 10px;
    background: #0c1b32;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_title {
    color: #56fbd3;
    font-size: 40px;
    font-weight: 500;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_text {
    margin-top: 10px;
    color: #96aadb;
    font-size: 16px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block {
    width: 100%;
    padding: 10px 0px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box {
    width: 50%;
    padding: 10px 0px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #56fbd3;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_desc {
    margin-top: 5px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_desc .text {
    color: white;
    margin: 1px auto;
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_btn {
    margin-top: 5px;
    width: 200px;
    padding: 6px 0px;
    border: 2px solid transparent;
    border-bottom: 2px solid #56fbd3;
    background: rgba(5, 11, 32, 0.7764705882);
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: 0.5s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_btn:hover {
    border: 2px solid #56fbd3;
    cursor: pointer;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks {
    width: 180px;
    margin: 50px auto;
    padding: 5px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks .contentSection_blocks_number {
    width: 25px;
    height: 25px;
    background: #56fbd3;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #0c1b32;
    transition: 0.3s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks .contentSection_blocks_number:hover {
    background: #060f1d;
    color: #56fbd3;
  }
  .CONTAINER_LANDING .SIDEBAR {
    padding: 10px 0px;
    grid-area: SIDEBAR;
    display: none;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING {
    padding: 10px 0px;
    grid-area: SIDEBAR_LANDING;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding {
    margin: auto;
    width: 100%;
    height: auto;
    padding: 40px 20px;
    background: #0e1f39;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .title__sidebarLanding {
    width: calc(70% - 150px);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .anuncio1 {
    margin: 30px auto;
    width: 280px;
    height: 280px;
    background-image: url(../img/publicity/PROPAGANDA_DIGITIZING.jpg);
    background-size: 100% 100%;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .anuncio2 {
    margin: 10px auto;
    width: 100%;
    height: 280px;
    background-image: url(../img/publicity/PROPAGANDA_GAME.jpg);
    background-size: 100% 100%;
    display: none;
    visibility: hidden;
  }
  .CONTAINER_LANDING .FOOTER {
    padding: 10px 0px;
    grid-area: FOOTER;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot {
    width: 100%;
    background: rgba(5, 11, 32, 0.7764705882);
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN {
    width: auto;
    background: transparent;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__logo {
    width: 85px;
    height: 40px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre {
    width: 180px;
    padding: 5px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name {
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name .nameObj {
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes {
    width: 20%;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales {
    transform: skew(-5deg);
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales .IconSocial {
    color: #56fbd3;
    font-size: 28px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales .nota {
    display: none;
    visibility: hidden;
  }
}
@media (min-width: 770px) and (max-width: 899px) {
  .CONTAINER_LANDING {
    width: 100%;
    max-width: 1300px;
    background: #0c1b32;
    padding: 20px 0px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr) 250px;
    grid-template-rows: auto;
    grid-template-areas: "HEADER                 HEADER                HEADER" "SECTION_PROYECTS       SECTION_PROYECTS      SECTION_PROYECTS" "SIDEBAR                SIDEBAR               SIDEBAR" "SIDEBAR_LANDING        SIDEBAR_LANDING       SIDEBAR_LANDING" "FOOTER                 FOOTER                FOOTER";
  }
  .CONTAINER_LANDING .HEADER {
    height: 60px;
    padding: 10px 0px;
    grid-area: HEADER;
  }
  .CONTAINER_LANDING .BARS_VERTICLE {
    display: none;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS {
    padding: 10px 0px;
    grid-area: SECTION_PROYECTS;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle {
    width: 100%;
    height: 180px;
    position: relative;
    background: #0c1b32;
    overflow: hidden;
    transform: skew(-5deg);
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .contSectionTitleTop {
    width: 100%;
    height: 180px;
    position: absolute;
    top: 0;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .titleProyectos {
    text-align: center;
    font-size: 100px;
    font-weight: 700;
    color: #56fbd3;
    padding-top: 18px;
    animation-duration: 2s;
    letter-spacing: -5px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .contSectionTitleBottom {
    width: 100%;
    height: 180px;
    background: linear-gradient(transparent, #0c1b32);
    position: absolute;
    bottom: -2px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb {
    width: 100%;
    padding: 10px 0px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block {
    margin: 20px auto;
    width: 100%;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_figture {
    width: 350px;
    height: 500px;
    box-shadow: 15px 30px 0px #56fbd3;
    transition: 0.5s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_figture:hover {
    box-shadow: -8px 20px 0px #56fbd3;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc {
    width: calc(60% - 80px);
    padding: 10px;
    background: #0c1b32;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_title {
    color: #56fbd3;
    font-size: 40px;
    font-weight: 500;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_text {
    margin-top: 10px;
    color: #96aadb;
    font-size: 16px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block {
    width: 100%;
    padding: 10px 0px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box {
    width: 50%;
    padding: 10px 0px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #56fbd3;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_desc {
    margin-top: 5px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_desc .text {
    color: white;
    margin: 1px auto;
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_btn {
    margin-top: 5px;
    width: 200px;
    padding: 6px 0px;
    border: 2px solid transparent;
    border-bottom: 2px solid #56fbd3;
    background: rgba(5, 11, 32, 0.7764705882);
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: 0.5s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_btn:hover {
    border: 2px solid #56fbd3;
    cursor: pointer;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks {
    width: 180px;
    margin: 50px auto;
    padding: 5px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks .contentSection_blocks_number {
    width: 25px;
    height: 25px;
    background: #56fbd3;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #0c1b32;
    transition: 0.3s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks .contentSection_blocks_number:hover {
    background: #060f1d;
    color: #56fbd3;
  }
  .CONTAINER_LANDING .SIDEBAR {
    padding: 10px 0px;
    grid-area: SIDEBAR;
    display: none;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING {
    padding: 10px 0px;
    grid-area: SIDEBAR_LANDING;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding {
    margin: auto;
    width: 100%;
    height: auto;
    padding: 40px 20px;
    background: #0e1f39;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .title__sidebarLanding {
    width: calc(70% - 150px);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .anuncio1 {
    margin: 30px auto;
    width: 280px;
    height: 280px;
    background-image: url(../img/publicity/PROPAGANDA_DIGITIZING.jpg);
    background-size: 100% 100%;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .anuncio2 {
    margin: 10px auto;
    width: 100%;
    height: 280px;
    background-image: url(../img/publicity/PROPAGANDA_GAME.jpg);
    background-size: 100% 100%;
    display: none;
    visibility: hidden;
  }
  .CONTAINER_LANDING .FOOTER {
    margin-top: 40px;
    padding: 10px 0px;
    grid-area: FOOTER;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot {
    width: 100%;
    background: rgba(5, 11, 32, 0.7764705882);
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN {
    width: auto;
    background: transparent;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__logo {
    width: 85px;
    height: 40px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre {
    width: 180px;
    padding: 5px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name {
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name .nameObj {
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes {
    width: 28%;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales {
    transform: skew(-5deg);
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales .IconSocial {
    color: #56fbd3;
    font-size: 28px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales .nota {
    display: none;
    visibility: hidden;
  }
}
@media (min-width: 641px) and (max-width: 769px) {
  .CONTAINER_LANDING {
    width: 100%;
    max-width: 1300px;
    background: #0c1b32;
    padding: 20px 0px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr) 250px;
    grid-template-rows: auto;
    grid-template-areas: "HEADER                 HEADER                HEADER" "SECTION_PROYECTS       SECTION_PROYECTS      SECTION_PROYECTS" "SIDEBAR                SIDEBAR               SIDEBAR" "SIDEBAR_LANDING        SIDEBAR_LANDING       SIDEBAR_LANDING" "FOOTER                 FOOTER                FOOTER";
  }
  .CONTAINER_LANDING .HEADER {
    height: 60px;
    padding: 10px 0px;
    grid-area: HEADER;
  }
  .CONTAINER_LANDING .BARS_VERTICLE {
    display: none;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS {
    padding: 10px 0px;
    grid-area: SECTION_PROYECTS;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle {
    width: 100%;
    height: 180px;
    position: relative;
    background: #0c1b32;
    overflow: hidden;
    transform: skew(-5deg);
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .contSectionTitleTop {
    width: 100%;
    height: 180px;
    position: absolute;
    top: 0;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .titleProyectos {
    text-align: center;
    font-size: 100px;
    font-weight: 700;
    color: #56fbd3;
    padding-top: 20px;
    animation-duration: 2s;
    letter-spacing: -5px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .contSectionTitleBottom {
    width: 100%;
    height: 180px;
    background: linear-gradient(transparent, #0c1b32);
    position: absolute;
    bottom: -2px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb {
    width: 100%;
    padding: 10px 0px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block {
    margin: 0px auto;
    width: 100%;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: initial;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_figture {
    margin: 20px auto;
    width: 350px;
    height: 500px;
    box-shadow: 15px 30px 0px #56fbd3;
    transition: 0.5s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_figture:hover {
    box-shadow: -8px 20px 0px #56fbd3;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc {
    width: 90%;
    padding: 10px;
    background: #0c1b32;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_title {
    color: #56fbd3;
    font-size: 40px;
    font-weight: 500;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_text {
    margin-top: 10px;
    color: #96aadb;
    font-size: 16px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block {
    width: 100%;
    padding: 10px 0px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box {
    width: 50%;
    padding: 10px 0px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #56fbd3;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_desc {
    margin-top: 5px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_desc .text {
    color: white;
    margin: 1px auto;
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_btn {
    margin-top: 5px;
    width: 200px;
    padding: 6px 0px;
    border: 2px solid transparent;
    border-bottom: 2px solid #56fbd3;
    background: rgba(5, 11, 32, 0.7764705882);
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: 0.5s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_btn:hover {
    border: 2px solid #56fbd3;
    cursor: pointer;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb #contSectionWeb_block_AUX {
    display: flex;
    flex-direction: column;
    flex-wrap: initial;
    justify-content: space-around;
    align-items: center;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks {
    width: 180px;
    margin: 50px auto;
    padding: 5px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks .contentSection_blocks_number {
    width: 25px;
    height: 25px;
    background: #56fbd3;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #0c1b32;
    transition: 0.3s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks .contentSection_blocks_number:hover {
    background: #060f1d;
    color: #56fbd3;
  }
  .CONTAINER_LANDING .SIDEBAR {
    padding: 10px 0px;
    grid-area: SIDEBAR;
    display: none;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING {
    padding: 10px 0px;
    grid-area: SIDEBAR_LANDING;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding {
    margin: auto;
    width: 100%;
    height: auto;
    padding: 40px 20px;
    background: #0e1f39;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .title__sidebarLanding {
    width: calc(70% - 150px);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .anuncio1 {
    margin: 30px auto;
    width: 280px;
    height: 280px;
    background-image: url(../img/publicity/PROPAGANDA_DIGITIZING.jpg);
    background-size: 100% 100%;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .anuncio2 {
    margin: 10px auto;
    width: 100%;
    height: 280px;
    background-image: url(../img/publicity/PROPAGANDA_GAME.jpg);
    background-size: 100% 100%;
    display: none;
    visibility: hidden;
  }
  .CONTAINER_LANDING .FOOTER {
    margin-top: 40px;
    padding: 10px 0px;
    grid-area: FOOTER;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot {
    width: 100%;
    background: rgba(5, 11, 32, 0.7764705882);
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN {
    width: auto;
    background: transparent;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__logo {
    width: 85px;
    height: 40px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre {
    width: 180px;
    padding: 5px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name {
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name .nameObj {
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes {
    width: 28%;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales {
    transform: skew(-5deg);
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales .IconSocial {
    color: #56fbd3;
    font-size: 28px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales .nota {
    display: none;
    visibility: hidden;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .CONTAINER_LANDING {
    width: 100%;
    max-width: 1300px;
    background: #0c1b32;
    padding: 20px 0px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr) 250px;
    grid-template-rows: auto;
    grid-template-areas: "HEADER                 HEADER                HEADER" "SECTION_PROYECTS       SECTION_PROYECTS      SECTION_PROYECTS" "SIDEBAR                SIDEBAR               SIDEBAR" "SIDEBAR_LANDING        SIDEBAR_LANDING       SIDEBAR_LANDING" "FOOTER                 FOOTER                FOOTER";
  }
  .CONTAINER_LANDING .HEADER {
    height: 60px;
    padding: 10px 0px;
    grid-area: HEADER;
  }
  .CONTAINER_LANDING .BARS_VERTICLE {
    display: none;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS {
    padding: 10px 0px;
    grid-area: SECTION_PROYECTS;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle {
    width: 100%;
    height: 180px;
    position: relative;
    background: #0c1b32;
    overflow: hidden;
    transform: skew(-5deg);
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .contSectionTitleTop {
    width: 100%;
    height: 180px;
    position: absolute;
    top: 0;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .titleProyectos {
    text-align: center;
    font-size: 90px;
    font-weight: 700;
    color: #56fbd3;
    padding-top: 20px;
    animation-duration: 2s;
    letter-spacing: -5px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .contSectionTitleBottom {
    width: 100%;
    height: 180px;
    background: linear-gradient(transparent, #0c1b32);
    position: absolute;
    bottom: -2px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb {
    width: 100%;
    padding: 10px 0px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block {
    margin: 0px auto;
    width: 100%;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: initial;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_figture {
    margin: 20px auto;
    width: 350px;
    height: 500px;
    box-shadow: 15px 30px 0px #56fbd3;
    transition: 0.5s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_figture:hover {
    box-shadow: -8px 20px 0px #56fbd3;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc {
    width: 90%;
    padding: 10px;
    background: #0c1b32;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_title {
    color: #56fbd3;
    font-size: 40px;
    font-weight: 500;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_text {
    margin-top: 10px;
    color: #96aadb;
    font-size: 16px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block {
    width: 100%;
    padding: 10px 0px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box {
    width: 50%;
    padding: 10px 0px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #56fbd3;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_desc {
    margin-top: 5px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_desc .text {
    color: white;
    margin: 1px auto;
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_btn {
    margin-top: 5px;
    width: 200px;
    padding: 6px 0px;
    border: 2px solid transparent;
    border-bottom: 2px solid #56fbd3;
    background: rgba(5, 11, 32, 0.7764705882);
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: 0.5s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_btn:hover {
    border: 2px solid #56fbd3;
    cursor: pointer;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb #contSectionWeb_block_AUX {
    display: flex;
    flex-direction: column;
    flex-wrap: initial;
    justify-content: space-around;
    align-items: center;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks {
    width: 180px;
    margin: 50px auto;
    padding: 5px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks .contentSection_blocks_number {
    width: 25px;
    height: 25px;
    background: #56fbd3;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #0c1b32;
    transition: 0.3s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks .contentSection_blocks_number:hover {
    background: #060f1d;
    color: #56fbd3;
  }
  .CONTAINER_LANDING .SIDEBAR {
    padding: 10px 0px;
    grid-area: SIDEBAR;
    display: none;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING {
    padding: 10px 0px;
    grid-area: SIDEBAR_LANDING;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding {
    margin: auto;
    width: 100%;
    height: auto;
    padding: 40px 20px;
    background: #0e1f39;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .title__sidebarLanding {
    width: 90%;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .anuncio1 {
    margin: 30px auto;
    width: 280px;
    height: 280px;
    background-image: url(../img/publicity/PROPAGANDA_DIGITIZING.jpg);
    background-size: 100% 100%;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .anuncio2 {
    margin: 10px auto;
    width: 100%;
    height: 280px;
    background-image: url(../img/publicity/PROPAGANDA_GAME.jpg);
    background-size: 100% 100%;
    display: none;
    visibility: hidden;
  }
  .CONTAINER_LANDING .FOOTER {
    margin-top: 40px;
    padding: 10px 0px;
    grid-area: FOOTER;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot {
    width: 100%;
    background: rgba(5, 11, 32, 0.7764705882);
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN {
    width: auto;
    background: transparent;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__logo {
    width: 85px;
    height: 40px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre {
    width: 180px;
    padding: 5px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name {
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name .nameObj {
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes {
    width: 42%;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales {
    transform: skew(-5deg);
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales .IconSocial {
    color: #56fbd3;
    font-size: 28px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales .nota {
    display: none;
    visibility: hidden;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .CONTAINER_LANDING {
    width: 100%;
    max-width: 1300px;
    background: #0c1b32;
    padding: 30px 0px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr) 250px;
    grid-template-rows: auto;
    grid-template-areas: "HEADER                 HEADER                HEADER" "SECTION_PROYECTS       SECTION_PROYECTS      SECTION_PROYECTS" "SIDEBAR                SIDEBAR               SIDEBAR" "SIDEBAR_LANDING        SIDEBAR_LANDING       SIDEBAR_LANDING" "FOOTER                 FOOTER                FOOTER";
  }
  .CONTAINER_LANDING .HEADER {
    height: 60px;
    padding: 10px 0px;
    grid-area: HEADER;
  }
  .CONTAINER_LANDING .BARS_VERTICLE {
    display: none;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS {
    padding: 10px 0px;
    grid-area: SECTION_PROYECTS;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle {
    width: 90%;
    margin: auto;
    text-align: center;
    font-size: 60px;
    line-height: 50px;
    color: #56fbd3;
    padding-top: 40px;
    animation-duration: 2s;
    letter-spacing: -5px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .contSectionTitleTop {
    width: 100%;
    height: 180px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .titleProyectos {
    text-align: center;
    font-size: 80px;
    font-weight: 700;
    color: #56fbd3;
    padding-top: 30px;
    animation-duration: 2s;
    letter-spacing: -5px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionTitle .contSectionTitleBottom {
    width: 100%;
    height: 180px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb {
    width: 100%;
    padding: 10px 0px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block {
    margin: 0px auto;
    width: 100%;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: initial;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_figture {
    margin: 20px auto;
    width: 350px;
    height: 500px;
    box-shadow: 15px 30px 0px #56fbd3;
    transition: 0.5s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_figture:hover {
    box-shadow: -8px 20px 0px #56fbd3;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc {
    width: 90%;
    padding: 10px;
    background: #0c1b32;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_title {
    color: #56fbd3;
    font-size: 36px;
    font-weight: 500;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_text {
    margin-top: 10px;
    color: #96aadb;
    font-size: 16px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block {
    width: 100%;
    padding: 10px 0px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box {
    width: 50%;
    padding: 10px 0px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_subtitle {
    width: 100px;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    color: #56fbd3;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_desc {
    margin-top: 5px;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_block .contSectionWeb_desc_block_box .contSectionWeb_desc_block_box_desc .text {
    color: white;
    margin: 1px auto;
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_btn {
    margin-top: 5px;
    width: 200px;
    padding: 6px 0px;
    border: 2px solid transparent;
    border-bottom: 2px solid #56fbd3;
    background: rgba(5, 11, 32, 0.7764705882);
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: 0.5s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb .contSectionWeb_block .contSectionWeb_desc .contSectionWeb_desc_btn:hover {
    border: 2px solid #56fbd3;
    cursor: pointer;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contSectionWeb #contSectionWeb_block_AUX {
    display: flex;
    flex-direction: column;
    flex-wrap: initial;
    justify-content: space-around;
    align-items: center;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks {
    width: 180px;
    margin: auto;
    padding: 5px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks .contentSection_blocks_number {
    width: 25px;
    height: 25px;
    background: #56fbd3;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #0c1b32;
    transition: 0.3s all;
  }
  .CONTAINER_LANDING .SECTION_PROYECTS .contentSection_blocks .contentSection_blocks_number:hover {
    background: #060f1d;
    color: #56fbd3;
  }
  .CONTAINER_LANDING .SIDEBAR {
    padding: 10px 0px;
    grid-area: SIDEBAR;
    display: none;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING {
    padding: 10px 0px;
    grid-area: SIDEBAR_LANDING;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding {
    margin: auto;
    width: 100%;
    height: auto;
    padding: 40px 20px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .title__sidebarLanding {
    width: 100%;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .anuncio1 {
    margin: 30px auto;
    width: 280px;
    height: 280px;
    background-image: url(../img/publicity/PROPAGANDA_DIGITIZING.jpg);
    background-size: 100% 100%;
  }
  .CONTAINER_LANDING .SIDEBAR_LANDING .contSidebarLanding .anuncio2 {
    margin: 10px auto;
    width: 100%;
    height: 280px;
    background-image: url(../img/publicity/PROPAGANDA_GAME.jpg);
    background-size: 100% 100%;
    display: none;
    visibility: hidden;
  }
  .CONTAINER_LANDING .FOOTER {
    margin-top: 40px;
    padding: 10px 0px;
    grid-area: FOOTER;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot {
    width: 100%;
    background: rgba(5, 11, 32, 0.7764705882);
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN {
    width: auto;
    background: transparent;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__logo {
    width: 85px;
    height: 40px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre {
    width: 180px;
    padding: 5px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name {
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaLN .contentFoot__cajaLN__nombre .name .nameObj {
    font-size: 14px;
    font-weight: 300;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes {
    width: 50%;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales {
    transform: skew(-5deg);
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales .IconSocial {
    color: #56fbd3;
    font-size: 28px;
  }
  .CONTAINER_LANDING .FOOTER .contentFoot .contentFoot__cajaRedes .cajaSociales .nota {
    display: none;
    visibility: hidden;
  }
}
.btnWattssap {
  width: 160px;
  padding: 5px 0px;
  background: rgba(5, 11, 32, 0.7764705882);
  border-bottom: 3px solid #56fbd3;
  position: fixed;
  bottom: 50px;
  right: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: skewX(-5deg);
  z-index: 100;
}
.btnWattssap .btnWattssap__text {
  color: white;
}
.btnWattssap .iconWatsap {
  margin-left: 10px;
  color: #56fbd3;
  font-size: 26px;
}

@media (min-width: 320px) and (max-width: 423px) {
  .btnWattssap {
    width: 160px;
    padding: 5px 0px;
    background: rgba(5, 11, 32, 0.7764705882);
    border-bottom: 3px solid #56fbd3;
    position: fixed;
    bottom: 40px;
    right: initial;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: skewX(-5deg);
    z-index: 100;
  }
  .btnWattssap .btnWattssap__text {
    color: white;
  }
  .btnWattssap .iconWatsap {
    margin-left: 10px;
    color: #56fbd3;
    font-size: 26px;
  }
}
.contRedes {
  width: 35px;
  padding: 10px 0px;
  position: fixed;
  right: -40px;
  top: 100px;
  z-index: 100;
  opacity: 0;
  transition: 0.3s all;
}
.contRedes .contRedes_box {
  width: 100%;
  padding: 5px;
  background: rgba(5, 11, 32, 0.7764705882);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.contRedes .contRedes_box .IconRed {
  color: #56fbd3;
  font-size: 28px;
  width: 50px;
  z-index: 100;
}
.contRedes .contRedes_box .textRedes {
  color: white;
  font-size: 20px;
  transition: 0.5s all;
  opacity: 0;
}
.contRedes .contRedes_box:hover .textRedes {
  transform: translateX(-110px) rotate(8deg);
  opacity: 1;
}

.contRedes_js {
  right: 0;
  opacity: 1;
}

.containerPortfolio {
  width: 100%;
  height: 250px;
  background: #000000;
  position: relative;
  overflow: hidden;
  transform: skewX(-5deg);
}
.containerPortfolio .containerPortfolio_blockA {
  width: 100%;
  height: 250px;
  background: linear-gradient(#000000, transparent);
}
.containerPortfolio .containerPortfolio_title {
  color: #56fbd3;
  font-size: 160px;
  position: absolute;
  bottom: -30px;
  left: 100px;
  z-index: 0;
  letter-spacing: -3px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-optical-sizing: auto;
}
.containerPortfolio .containerPortfolio_blockB {
  width: 100%;
  height: 250px;
  background: linear-gradient(transparent, #000000);
  position: absolute;
  bottom: 0;
  z-index: 1;
}

@media (min-width: 900px) and (max-width: 1024px) {
  .containerPortfolio {
    width: 100%;
    height: 250px;
    background: #000000;
    position: relative;
    overflow: hidden;
    transform: skewX(-5deg);
  }
  .containerPortfolio .containerPortfolio_blockA {
    width: 100%;
    height: 250px;
    background: linear-gradient(#000000, transparent);
  }
  .containerPortfolio .containerPortfolio_title {
    color: #56fbd3;
    font-size: 120px;
    position: absolute;
    bottom: -30px;
    left: 100px;
    z-index: 0;
    letter-spacing: -3px;
  }
  .containerPortfolio .containerPortfolio_blockB {
    width: 100%;
    height: 250px;
    background: linear-gradient(transparent, #000000);
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
}
@media (min-width: 770px) and (max-width: 899px) {
  .containerPortfolio {
    width: 100%;
    height: 250px;
    background: #000000;
    position: relative;
    overflow: hidden;
    transform: skewX(-5deg);
  }
  .containerPortfolio .containerPortfolio_blockA {
    width: 100%;
    height: 250px;
    background: linear-gradient(#000000, transparent);
  }
  .containerPortfolio .containerPortfolio_title {
    color: #56fbd3;
    font-size: 120px;
    position: absolute;
    bottom: -30px;
    left: 80px;
    z-index: 0;
    letter-spacing: -3px;
  }
  .containerPortfolio .containerPortfolio_blockB {
    width: 100%;
    height: 250px;
    background: linear-gradient(transparent, #000000);
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
}
@media (min-width: 641px) and (max-width: 769px) {
  .containerPortfolio {
    width: 100%;
    height: 250px;
    background: #000000;
    position: relative;
    overflow: hidden;
    transform: skewX(-5deg);
  }
  .containerPortfolio .containerPortfolio_blockA {
    width: 100%;
    height: 250px;
    background: linear-gradient(#000000, transparent);
  }
  .containerPortfolio .containerPortfolio_title {
    color: #56fbd3;
    font-size: 120px;
    position: absolute;
    bottom: -30px;
    left: 60px;
    z-index: 0;
    letter-spacing: -3px;
  }
  .containerPortfolio .containerPortfolio_blockB {
    width: 100%;
    height: 250px;
    background: linear-gradient(transparent, #000000);
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .containerPortfolio {
    width: 100%;
    height: 200px;
    background: #000000;
    position: relative;
    overflow: hidden;
    transform: skewX(-5deg);
  }
  .containerPortfolio .containerPortfolio_blockA {
    width: 100%;
    height: 200px;
    background: linear-gradient(#000000, transparent);
  }
  .containerPortfolio .containerPortfolio_title {
    color: #56fbd3;
    font-size: 100px;
    position: absolute;
    bottom: 0px;
    left: 50px;
    z-index: 0;
    letter-spacing: -3px;
  }
  .containerPortfolio .containerPortfolio_blockB {
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, #000000);
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .containerPortfolio {
    width: 100%;
    height: 150px;
    background: #000000;
    position: relative;
    overflow: hidden;
    transform: skewX(-5deg);
  }
  .containerPortfolio .containerPortfolio_blockA {
    width: 100%;
    height: 150px;
    background: linear-gradient(#000000, transparent);
    display: none;
  }
  .containerPortfolio .containerPortfolio_title {
    color: #56fbd3;
    font-size: 75px;
    position: absolute;
    bottom: 15px;
    left: calc(50% - 150px);
    z-index: 0;
    letter-spacing: -3px;
  }
  .containerPortfolio .containerPortfolio_blockB {
    width: 100%;
    height: 150px;
    background: linear-gradient(transparent, #000000);
    display: none;
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
}
.containerNew {
  width: 75%;
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  margin: auto;
}
.containerNew .newBaseCuadro {
  width: 300px;
  margin-bottom: 28px;
  position: relative;
}
.containerNew .newBaseCuadro .containerNew_figure {
  width: 300px;
  height: 400px;
  transition-duration: 0.5s;
  background: transparent;
}
.containerNew .newBaseCuadro .containerNew_cuadroBase {
  width: 300px;
  height: 400px;
  overflow: hidden;
  position: absolute;
  top: 0;
  transition-property: transform;
  transition-duration: 0.5s;
}
.containerNew .newBaseCuadro .containerNew_cuadroBase .caja1 {
  width: 50%;
  height: 50%;
  padding: 20px;
  background: rgba(5, 11, 32, 0.7764705882);
  position: absolute;
  top: -50%;
  left: 0;
  transition-duration: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.containerNew .newBaseCuadro .containerNew_cuadroBase .caja1 .box-dos_texto {
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
}
.containerNew .newBaseCuadro .containerNew_cuadroBase .caja2 {
  width: 50%;
  height: 50%;
  background: rgba(5, 11, 32, 0.7764705882);
  position: absolute;
  top: 0;
  right: -50%;
  transition-duration: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.containerNew .newBaseCuadro .containerNew_cuadroBase .caja2 .imageIconos {
  color: rgb(66, 220, 195);
  font-size: 50px;
}
.containerNew .newBaseCuadro .containerNew_cuadroBase .caja3 {
  width: 50%;
  height: 50%;
  background: rgba(5, 11, 32, 0.7764705882);
  position: absolute;
  bottom: 0;
  left: -50%;
  transition-duration: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.containerNew .newBaseCuadro .containerNew_cuadroBase .caja3 .imageIconos {
  color: rgb(66, 220, 195);
  font-size: 50px;
}
.containerNew .newBaseCuadro .containerNew_cuadroBase .caja4 {
  width: 50%;
  height: 50%;
  background: rgba(5, 11, 32, 0.7764705882);
  position: absolute;
  bottom: -50%;
  right: 0;
  transition-duration: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.containerNew .newBaseCuadro .containerNew_cuadroBase .caja4 .box-dos_texto {
  color: rgb(255, 255, 255);
  font-size: 26px;
  font-weight: 700;
  line-height: 60px;
}
.containerNew .newBaseCuadro:hover {
  cursor: pointer;
}
.containerNew .newBaseCuadro:hover .containerNew_figure {
  transform: rotate(-5deg);
}
.containerNew .newBaseCuadro:hover .containerNew_cuadroBase {
  padding: 20px;
  transform: rotate(-5deg);
}
.containerNew .newBaseCuadro:hover .containerNew_cuadroBase .caja1 {
  top: 0;
  left: 0;
}
.containerNew .newBaseCuadro:hover .containerNew_cuadroBase .caja2 {
  top: 0;
  right: 0;
}
.containerNew .newBaseCuadro:hover .containerNew_cuadroBase .caja3 {
  bottom: 0;
  left: 0;
}
.containerNew .newBaseCuadro:hover .containerNew_cuadroBase .caja4 {
  bottom: 0;
  right: 0;
}

@media (min-width: 770px) and (max-width: 899px) {
  .containerNew {
    width: 100%;
  }
}
@media (min-width: 641px) and (max-width: 769px) {
  .containerNew {
    width: 100%;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    margin: 50px auto;
  }
  .containerNew .newBaseCuadro {
    width: 280px;
    margin-bottom: 28px;
    position: relative;
  }
  .containerNew .newBaseCuadro .containerNew_figure {
    width: 280px;
    height: 380px;
    transition-duration: 0.5s;
    background: transparent;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase {
    width: 280px;
    height: 380px;
    overflow: hidden;
    position: absolute;
    top: 0;
    transition-property: transform;
    transition-duration: 0.5s;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja1 {
    width: 50%;
    height: 50%;
    padding: 20px;
    background: rgba(5, 11, 32, 0.7764705882);
    position: absolute;
    top: -50%;
    left: 0;
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja1 .box-dos_texto {
    font-size: 26px;
    line-height: 26px;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja2 {
    width: 50%;
    height: 50%;
    background: rgba(5, 11, 32, 0.7764705882);
    position: absolute;
    top: 0;
    right: -50%;
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja2 .imageIconos {
    color: rgb(66, 220, 195);
    font-size: 50px;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja3 {
    width: 50%;
    height: 50%;
    background: rgba(5, 11, 32, 0.7764705882);
    position: absolute;
    bottom: 0;
    left: -50%;
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja3 .imageIconos {
    color: rgb(66, 220, 195);
    font-size: 50px;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja4 {
    width: 50%;
    height: 50%;
    background: rgba(5, 11, 32, 0.7764705882);
    position: absolute;
    bottom: -50%;
    right: 0;
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja4 .box-dos_texto {
    color: rgb(255, 255, 255);
    font-size: 26px;
    line-height: 60px;
  }
}
@media (min-width: 320px) and (max-width: 640px) {
  .containerNew {
    width: 100%;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    margin: 30px auto;
  }
  .containerNew .newBaseCuadro {
    width: 280px;
    margin-bottom: 28px;
    position: relative;
  }
  .containerNew .newBaseCuadro .containerNew_figure {
    width: 280px;
    height: 380px;
    transition-duration: 0.5s;
    background: transparent;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase {
    width: 280px;
    height: 380px;
    overflow: hidden;
    position: absolute;
    top: 0;
    transition-property: transform;
    transition-duration: 0.5s;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja1 {
    width: 50%;
    height: 50%;
    padding: 20px;
    background: rgba(5, 11, 32, 0.7764705882);
    position: absolute;
    top: -50%;
    left: 0;
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja1 .box-dos_texto {
    font-size: 26px;
    line-height: 26px;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja2 {
    width: 50%;
    height: 50%;
    background: rgba(5, 11, 32, 0.7764705882);
    position: absolute;
    top: 0;
    right: -50%;
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja2 .imageIconos {
    color: rgb(66, 220, 195);
    font-size: 50px;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja3 {
    width: 50%;
    height: 50%;
    background: rgba(5, 11, 32, 0.7764705882);
    position: absolute;
    bottom: 0;
    left: -50%;
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja3 .imageIconos {
    color: rgb(66, 220, 195);
    font-size: 50px;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja4 {
    width: 50%;
    height: 50%;
    background: rgba(5, 11, 32, 0.7764705882);
    position: absolute;
    bottom: -50%;
    right: 0;
    transition-duration: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .containerNew .newBaseCuadro .containerNew_cuadroBase .caja4 .box-dos_texto {
    color: rgb(255, 255, 255);
    font-size: 26px;
    line-height: 60px;
  }
}
.containerServices {
  width: 100%;
  height: 250px;
  background: #000000;
  position: relative;
  overflow: hidden;
}
.containerServices .containerServices_blockA {
  width: 100%;
  height: 250px;
  background: linear-gradient(#000000, transparent);
  position: absolute;
  top: 0;
  z-index: 1;
}
.containerServices .containerServices_title {
  color: #56fbd3;
  font-size: 140px;
  position: absolute;
  bottom: 0px;
  color: orange;
  left: calc(50% - 360px);
  z-index: 0;
  letter-spacing: -3px;
}
.containerServices .containerServices_blockB {
  width: 100%;
  height: 250px;
  background: linear-gradient(transparent, #000000);
  position: absolute;
  bottom: 0;
  z-index: 1;
}

@media (min-width: 641px) and (max-width: 1024px) {
  .containerServices {
    width: 100%;
    height: 270px;
    background: #000000;
    position: relative;
    overflow: hidden;
  }
  .containerServices .containerServices_blockA {
    width: 100%;
    height: 270px;
    background: linear-gradient(#000000, transparent);
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .containerServices .containerServices_title {
    color: #56fbd3;
    font-size: 180px;
    position: absolute;
    bottom: -40px;
    left: calc(50% - 300px);
    z-index: 0;
    letter-spacing: -3px;
  }
  .containerServices .containerServices_blockB {
    width: 100%;
    height: 270px;
    background: linear-gradient(transparent, #000000);
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .containerServices {
    width: 100%;
    height: 210px;
    background: #000000;
    position: relative;
    overflow: hidden;
  }
  .containerServices .containerServices_blockA {
    width: 100%;
    height: 210px;
    background: linear-gradient(#000000, transparent);
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .containerServices .containerServices_title {
    color: #56fbd3;
    font-size: 130px;
    position: absolute;
    bottom: -30px;
    left: calc(50% - 220px);
    z-index: 0;
    letter-spacing: -3px;
  }
  .containerServices .containerServices_blockB {
    width: 100%;
    height: 210px;
    background: linear-gradient(transparent, #000000);
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .containerServices {
    width: 100%;
    height: 160px;
    background: #000000;
    position: relative;
    overflow: hidden;
  }
  .containerServices .containerServices_blockA {
    width: 100%;
    height: 160px;
    background: linear-gradient(#000000, transparent);
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .containerServices .containerServices_title {
    color: #56fbd3;
    font-size: 90px;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 150px);
    z-index: 0;
    letter-spacing: -3px;
  }
  .containerServices .containerServices_blockB {
    width: 100%;
    height: 160px;
    background: linear-gradient(transparent, #000000);
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
}
/*************CONTENEDOR SECCION SERVICIOS*****************************/
/******************************************/
/******************************************/
#contBase {
  background: #0c1b32;
}
#contBase .containerBaseCuadros {
  margin-top: -150px;
  width: 100%;
  padding: 50px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
#contBase .containerBaseCuadros .contCuadro {
  width: 250px;
  height: 250px;
  background: rgba(5, 11, 32, 0.7764705882);
  border-radius: 5px;
  box-shadow: 0px 0px 10px #96aadb;
  margin: 10px auto;
  position: relative;
  overflow: hidden;
  animation-duration: 3s;
}
#contBase .containerBaseCuadros .contCuadro .contCuadro_imagen {
  width: 100%;
  height: 250px;
  background-image: url(../img/SERVICIOS/sitiosWebs.png);
  background-size: 100% 100%;
  transition: 0.5s all;
}
#contBase .containerBaseCuadros .contCuadro .contCuadro_descripcion {
  width: 100%;
  height: 250px;
  padding: 18px 20px;
  position: absolute;
  top: 0;
  transition: 0.5s all;
}
#contBase .containerBaseCuadros .contCuadro .contCuadro_descripcion .contCuadro_title {
  width: 60%;
  margin: auto;
  text-align: center;
  text-transform: uppercase;
  line-height: 25px;
  color: #56fbd3;
  line-height: 24px;
  font-size: 20px;
}
#contBase .containerBaseCuadros .contCuadro .contCuadro_descripcion .contCuadro_parrafo {
  text-align: center;
  margin-top: 180px;
  opacity: 0;
  color: white;
  transition: 0.5s all;
  font-size: 18px;
}
@media only screen and (max-width: 720px) {
  #contBase .containerBaseCuadros .contCuadro .contCuadro_descripcion .contCuadro_parrafo {
    margin-top: 15px;
    opacity: 1;
    font-size: 18px;
  }
}
#contBase .containerBaseCuadros .contCuadro .contCuadro_descripcion .btnPlanes {
  display: none;
  border: 2px solid #56fbd3;
  border-radius: 5px;
  background: rgba(5, 11, 32, 0.7764705882);
  padding: 3px 10px;
  position: relative;
  top: 15px;
  left: calc(50% - 40px);
  color: white;
  cursor: pointer;
}
#contBase .containerBaseCuadros .contCuadro .contCuadro_descripcion .btnPlanes:hover {
  background: rgba(255, 255, 255, 0.205);
}
#contBase .containerBaseCuadros .contCuadro:hover {
  cursor: pointer;
}
#contBase .containerBaseCuadros .contCuadro:hover .contCuadro_imagen {
  transform: scale(1.1, 1.1);
}
#contBase .containerBaseCuadros .contCuadro:hover .contCuadro_imagen2 {
  transform: scale(1.1, 1.1);
}
#contBase .containerBaseCuadros .contCuadro:hover .contCuadro_imagen3 {
  transform: scale(1.1, 1.1);
}
#contBase .containerBaseCuadros .contCuadro:hover .contCuadro_imagen4 {
  transform: scale(1.1, 1.1);
}
#contBase .containerBaseCuadros .contCuadro:hover .contCuadro_descripcion {
  background: rgba(5, 11, 32, 0.7764705882);
}
#contBase .containerBaseCuadros .contCuadro:hover .contCuadro_descripcion .contCuadro_title {
  color: #56fbd3;
}
#contBase .containerBaseCuadros .contCuadro:hover .contCuadro_descripcion .contCuadro_parrafo {
  opacity: 1;
  margin-top: 20px;
}
@media (min-width: 981px) and (max-width: 1024px) {
  #contBase .containerBaseCuadros .contCuadro {
    width: 230px;
    height: 250px;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen {
    width: 100%;
    height: 250px;
    margin: auto;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen2 {
    width: 100%;
    height: 250px;
    margin: auto;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen3 {
    width: 100%;
    height: 250px;
    margin: auto;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen4 {
    width: 100%;
    height: 250px;
    margin: auto;
  }
}
@media (min-width: 721px) and (max-width: 980px) {
  #contBase .containerBaseCuadros .contCuadro {
    width: 330px;
    height: 250px;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen {
    width: 80%;
    height: 250px;
    margin: auto;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen2 {
    width: 80%;
    height: 250px;
    margin: auto;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen3 {
    width: 80%;
    height: 250px;
    margin: auto;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen4 {
    width: 80%;
    height: 250px;
    margin: auto;
  }
}
@media (min-width: 641px) and (max-width: 720px) {
  #contBase .containerBaseCuadros .contCuadro {
    width: calc(50% - 20px);
    height: 250px;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen {
    width: 80%;
    height: 250px;
    margin: auto;
    opacity: 0.4;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen2 {
    width: 80%;
    height: 250px;
    margin: auto;
    opacity: 0.4;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen3 {
    width: 80%;
    margin: auto;
    height: 250px;
    opacity: 0.4;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen4 {
    width: 80%;
    height: 250px;
    margin: auto;
    opacity: 0.4;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  #contBase .containerBaseCuadros .contCuadro {
    width: calc(50% - 20px);
    height: 250px;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen {
    width: 100%;
    height: 250px;
    opacity: 0.4;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen2 {
    width: 100%;
    height: 250px;
    opacity: 0.4;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen3 {
    width: 100%;
    height: 250px;
    opacity: 0.4;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen4 {
    width: 100%;
    height: 250px;
    opacity: 0.4;
  }
}
@media (min-width: 424px) and (max-width: 480px) {
  #contBase .containerBaseCuadros .contCuadro {
    width: calc(100% - 95px);
    height: 250px;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen {
    width: 85%;
    height: 250px;
    margin: auto;
    opacity: 0.5;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen2 {
    width: 85%;
    margin: auto;
    height: 250px;
    opacity: 0.4;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen3 {
    width: 85%;
    margin: auto;
    height: 250px;
    opacity: 0.4;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen4 {
    width: 85%;
    margin: auto;
    height: 250px;
    opacity: 0.4;
  }
}
@media (min-width: 320px) and (max-width: 423px) {
  #contBase .containerBaseCuadros .contCuadro {
    width: calc(100% - 60px);
    height: 250px;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen {
    width: 85%;
    height: 250px;
    margin: auto;
    opacity: 0.4;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen2 {
    width: 85%;
    height: 250px;
    margin: auto;
    opacity: 0.4;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen3 {
    width: 85%;
    height: 250px;
    margin: auto;
    opacity: 0.4;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_imagen4 {
    width: 85%;
    margin: auto;
    height: 250px;
    opacity: 0.4;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_descripcion {
    height: 250px;
  }
}
#contBase .contBase_gradient {
  width: 100%;
  height: 70px;
  background: linear-gradient(transparent, #000000);
}

@media (min-width: 641px) and (max-width: 1200px) {
  #contBase {
    background: #0c1b32;
  }
  #contBase .containerBaseCuadros {
    margin-top: -100px;
  }
  #contBase .contBase_gradient {
    width: 100%;
    height: 70px;
    background: linear-gradient(transparent, #000000);
  }
}
@media (min-width: 320px) and (max-width: 640px) {
  #contBase {
    background: #0c1b32;
  }
  #contBase .containerBaseCuadros {
    margin-top: -50px;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_descripcion {
    width: 100%;
    height: 250px;
    padding: 18px 20px;
    position: absolute;
    top: 0;
    transition: 0.5s all;
  }
  #contBase .containerBaseCuadros .contCuadro .contCuadro_descripcion .contCuadro_title {
    width: 150px;
    margin: auto;
    text-align: center;
    text-transform: uppercase;
    line-height: 25px;
    color: #56fbd3;
    line-height: 24px;
    font-size: 25px;
  }
  #contBase .contBase_gradient {
    width: 100%;
    height: 70px;
    background: linear-gradient(transparent, #000000);
  }
}
.contenedorSkills {
  width: 65%;
  margin: auto;
  padding: 50px 20px;
  background: #000000;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}
.contenedorSkills .contenedorSkills_box {
  width: 250px;
  height: 180PX;
  padding: 20px 5px;
  margin-bottom: 30px;
  background: #101928;
  border-radius: 20px 0px 20px 0px;
  box-shadow: 5px 5px 2px #ffffff;
  overflow: hidden;
  transform: skew(-3deg);
  position: relative;
}
.contenedorSkills .contenedorSkills_box .box_numero {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 38px;
  font-weight: 700;
  color: #56fbd3;
}
.contenedorSkills .contenedorSkills_box .spanNumero {
  font-size: 80px;
  font-weight: 700;
  color: #56fbd3;
  position: absolute;
  top: -30px;
  right: -5px;
}
.contenedorSkills .contenedorSkills_box .box_cajaBase {
  margin-top: -10px;
  padding: 5px 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage {
  width: 60px;
  height: 60px;
}
.contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage .iconsTech {
  font-size: 46px;
  color: #56fbd3;
}
.contenedorSkills .contenedorSkills_box .box_cajaBase .cajaLegenda {
  padding: 5px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
}

/****************************/
@media (min-width: 1025px) and (max-width: 1440px) {
  .contenedorSkills {
    width: 70%;
    margin: auto;
    padding: 50px 20px;
    background: #000000;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }
  .contenedorSkills .contenedorSkills_box {
    width: 240px;
    height: 180PX;
    padding: 20px 5px;
    margin-bottom: 30px;
    background: #101928;
    border-radius: 20px 0px 20px 0px;
    box-shadow: 5px 5px 2px #ffffff;
    overflow: hidden;
    transform: skew(-3deg);
    position: relative;
  }
  .contenedorSkills .contenedorSkills_box .box_numero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 38px;
    font-weight: 700;
    color: #56fbd3;
  }
  .contenedorSkills .contenedorSkills_box .spanNumero {
    font-size: 80px;
    font-weight: 700;
    color: #56fbd3;
    position: absolute;
    top: -30px;
    right: -5px;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase {
    margin-top: -10px;
    padding: 5px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage {
    width: 60px;
    height: 60px;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage .iconsTech {
    font-size: 46px;
    color: #56fbd3;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaLegenda {
    padding: 5px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
  }
}
/****************************/
@media (min-width: 900px) and (max-width: 1024px) {
  .contenedorSkills {
    width: 82%;
    margin: auto;
    padding: 50px 20px;
    background: #000000;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }
  .contenedorSkills .contenedorSkills_box {
    width: 198px;
    height: 180PX;
    padding: 20px 5px;
    margin-bottom: 30px;
    background: #101928;
    border-radius: 20px 0px 20px 0px;
    box-shadow: 5px 5px 2px #ffffff;
    overflow: hidden;
    transform: skew(-3deg);
    position: relative;
  }
  .contenedorSkills .contenedorSkills_box .box_numero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 38px;
    font-weight: 700;
    color: #56fbd3;
  }
  .contenedorSkills .contenedorSkills_box .spanNumero {
    font-size: 80px;
    font-weight: 700;
    color: #56fbd3;
    position: absolute;
    top: -30px;
    right: -5px;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase {
    margin-top: -10px;
    padding: 5px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage {
    width: 60px;
    height: 60px;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage .iconsTech {
    font-size: 46px;
    color: #56fbd3;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaLegenda {
    padding: 5px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
  }
}
/****************************/
@media (min-width: 770px) and (max-width: 899px) {
  .contenedorSkills {
    width: 70%;
    margin: auto;
    padding: 50px 20px;
    background: #000000;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }
  .contenedorSkills .contenedorSkills_box {
    width: 198px;
    height: 180PX;
    padding: 20px 5px;
    margin-bottom: 30px;
    background: #101928;
    border-radius: 20px 0px 20px 0px;
    box-shadow: 5px 5px 2px #ffffff;
    overflow: hidden;
    transform: skew(-3deg);
    position: relative;
  }
  .contenedorSkills .contenedorSkills_box .box_numero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 38px;
    font-weight: 700;
    color: #56fbd3;
  }
  .contenedorSkills .contenedorSkills_box .spanNumero {
    font-size: 80px;
    font-weight: 700;
    color: #56fbd3;
    position: absolute;
    top: -30px;
    right: -5px;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase {
    margin-top: -10px;
    padding: 5px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage {
    width: 60px;
    height: 60px;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage .iconsTech {
    font-size: 46px;
    color: #56fbd3;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaLegenda {
    padding: 5px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
  }
}
/****************************/
@media (min-width: 641px) and (max-width: 769px) {
  .contenedorSkills {
    width: 85%;
    margin: auto;
    padding: 50px 20px;
    background: #000000;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }
  .contenedorSkills .contenedorSkills_box {
    width: 198px;
    height: 180PX;
    padding: 20px 5px;
    margin-bottom: 30px;
    background: #101928;
    border-radius: 20px 0px 20px 0px;
    box-shadow: 5px 5px 2px #ffffff;
    overflow: hidden;
    transform: skew(-3deg);
    position: relative;
  }
  .contenedorSkills .contenedorSkills_box .box_numero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 38px;
    font-weight: 700;
    color: #56fbd3;
  }
  .contenedorSkills .contenedorSkills_box .spanNumero {
    font-size: 80px;
    font-weight: 700;
    color: #56fbd3;
    position: absolute;
    top: -30px;
    right: -5px;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase {
    margin-top: -10px;
    padding: 5px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage {
    width: 60px;
    height: 60px;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage .iconsTech {
    font-size: 46px;
    color: #56fbd3;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaLegenda {
    padding: 5px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
  }
}
/****************************/
@media (min-width: 481px) and (max-width: 640px) {
  .contenedorSkills {
    width: 90%;
    margin: auto;
    padding: 50px 10px;
    background: #000000;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }
  .contenedorSkills .contenedorSkills_box {
    width: 180px;
    height: 180PX;
    padding: 20px 5px;
    margin-bottom: 30px;
    background: #101928;
    border-radius: 20px 0px 20px 0px;
    box-shadow: 5px 5px 2px #ffffff;
    overflow: hidden;
    transform: skew(-3deg);
    position: relative;
  }
  .contenedorSkills .contenedorSkills_box .box_numero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 38px;
    font-weight: 700;
    color: #56fbd3;
  }
  .contenedorSkills .contenedorSkills_box .spanNumero {
    font-size: 80px;
    font-weight: 700;
    color: #56fbd3;
    position: absolute;
    top: -30px;
    right: -5px;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase {
    margin-top: -10px;
    padding: 5px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage {
    width: 60px;
    height: 60px;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage .iconsTech {
    font-size: 46px;
    color: #56fbd3;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaLegenda {
    padding: 5px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
  }
}
/****************************/
@media (min-width: 360px) and (max-width: 480px) {
  .contenedorSkills {
    width: 100%;
    margin: auto;
    padding: 50px 10px;
    background: #000000;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }
  .contenedorSkills .contenedorSkills_box {
    width: 150px;
    height: 170PX;
    padding: 20px 5px;
    margin-bottom: 30px;
    background: #101928;
    border-radius: 20px 0px 20px 0px;
    box-shadow: 5px 5px 2px #ffffff;
    overflow: hidden;
    transform: skew(-3deg);
    position: relative;
  }
  .contenedorSkills .contenedorSkills_box .box_numero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 38px;
    font-weight: 700;
    color: #56fbd3;
  }
  .contenedorSkills .contenedorSkills_box .spanNumero {
    font-size: 50px;
    font-weight: 700;
    color: #56fbd3;
    position: absolute;
    top: -10px;
    right: 0px;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase {
    margin-top: -10px;
    padding: 5px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage {
    width: 50px;
    height: 50px;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaBaseImage .iconsTech {
    font-size: 46px;
    color: #56fbd3;
  }
  .contenedorSkills .contenedorSkills_box .box_cajaBase .cajaLegenda {
    padding: 5px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
  }
}
.containerSkills {
  width: 100%;
  height: 250px;
  background: #000000;
  position: relative;
  overflow: hidden;
  transform: skewX(-5deg);
}
.containerSkills .containerSkills_blockA {
  width: 100%;
  height: 250px;
  background: linear-gradient(#000000, transparent);
}
.containerSkills .containerSkills_title {
  color: #56fbd3;
  font-size: 140px;
  font-weight: 500;
  position: absolute;
  bottom: -30px;
  left: 100px;
  z-index: 0;
  letter-spacing: -3px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
}
.containerSkills .containerSkills_blockB {
  width: 100%;
  height: 250px;
  background: linear-gradient(transparent, #000000);
  position: absolute;
  bottom: -2px;
  z-index: 1;
}

@media (min-width: 641px) and (max-width: 769px) {
  .containerSkills {
    width: 100%;
    height: 250px;
    background: #000000;
    position: relative;
    overflow: hidden;
    transform: skewX(-5deg);
  }
  .containerSkills .containerSkills_blockA {
    width: 100%;
    height: 250px;
    background: linear-gradient(#000000, transparent);
  }
  .containerSkills .containerSkills_title {
    color: #56fbd3;
    font-size: 140px;
    position: absolute;
    bottom: -30px;
    left: 60px;
    z-index: 0;
    letter-spacing: -3px;
  }
  .containerSkills .containerSkills_blockB {
    width: 100%;
    height: 250px;
    background: linear-gradient(transparent, #000000);
    position: absolute;
    bottom: -2px;
    z-index: 1;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .containerSkills {
    width: 100%;
    height: 200px;
    background: #000000;
    position: relative;
    overflow: hidden;
    transform: skewX(-5deg);
  }
  .containerSkills .containerSkills_blockA {
    width: 100%;
    height: 200px;
    background: linear-gradient(#000000, transparent);
  }
  .containerSkills .containerSkills_title {
    color: #56fbd3;
    font-size: 120px;
    position: absolute;
    bottom: -30px;
    left: 60px;
    z-index: 0;
    letter-spacing: -3px;
  }
  .containerSkills .containerSkills_blockB {
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, #000000);
    position: absolute;
    bottom: -2px;
    z-index: 1;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .containerSkills {
    width: 100%;
    height: 200px;
    background: #000000;
    position: relative;
    overflow: hidden;
    transform: skewX(-5deg);
    margin-top: -60px;
  }
  .containerSkills .containerSkills_blockA {
    display: none;
  }
  .containerSkills .containerSkills_title {
    color: #56fbd3;
    font-size: 75px;
    position: absolute;
    bottom: 15px;
    left: calc(50% - 150px);
    z-index: 0;
    letter-spacing: -3px;
  }
  .containerSkills .containerSkills_blockB {
    display: none;
  }
}
.conatinerTitle {
  width: 100%;
  height: 250px;
  background: #000000;
  position: relative;
  overflow: hidden;
  transform: skewX(-5deg);
  padding: 5px 0px;
}
.conatinerTitle .conatinerTitle_blockA {
  width: 100%;
  height: 250px;
  background: linear-gradient(#000000, transparent);
  position: absolute;
  top: 0;
  z-index: 1;
}
.conatinerTitle .conatinerTitle_nameBig .nameBig {
  color: #56fbd3;
  font-size: 140px;
  font-weight: 500;
  position: absolute;
  bottom: -30px;
  left: 100px;
  z-index: 0;
  letter-spacing: -3px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
}
.conatinerTitle .conatinerTitle_blockB {
  width: 100%;
  height: 250px;
  background: linear-gradient(transparent, #000000);
  position: absolute;
  bottom: 0px;
  z-index: 1;
}

@media (min-width: 641px) and (max-width: 769px) {
  .conatinerTitle {
    width: 100%;
    height: 200px;
    background: #000000;
    position: relative;
    overflow: hidden;
    transform: skewX(-5deg);
  }
  .conatinerTitle .conatinerTitle_blockA {
    width: 100%;
    height: 200px;
    background: linear-gradient(#000000, transparent);
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .conatinerTitle .conatinerTitle_nameBig .nameBig {
    color: #56fbd3;
    font-size: 120px;
    position: absolute;
    bottom: -30px;
    left: 60px;
    z-index: 0;
    letter-spacing: -3px;
  }
  .conatinerTitle .conatinerTitle_blockB {
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, #000000);
    position: absolute;
    bottom: -2px;
    z-index: 1;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .conatinerTitle {
    width: 100%;
    height: 200px;
    background: #000000;
    position: relative;
    overflow: hidden;
    transform: skewX(-5deg);
  }
  .conatinerTitle .conatinerTitle_blockA {
    width: 100%;
    height: 200px;
    background: linear-gradient(#000000, transparent);
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .conatinerTitle .conatinerTitle_nameBig .nameBig {
    color: #56fbd3;
    font-size: 110px;
    position: absolute;
    bottom: 5px;
    left: calc(50% - 220px);
    z-index: 0;
    letter-spacing: -3px;
  }
  .conatinerTitle .conatinerTitle_blockB {
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, #000000);
    position: absolute;
    bottom: -2px;
    z-index: 1;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .conatinerTitle {
    width: 100%;
    height: 150px;
    background: #000000;
    position: relative;
    overflow: hidden;
    transform: skewX(-5deg);
  }
  .conatinerTitle .conatinerTitle_blockA {
    display: none;
  }
  .conatinerTitle .conatinerTitle_nameBig .nameBig {
    color: #56fbd3;
    font-size: 75px;
    position: absolute;
    bottom: 0px;
    left: calc(50% - 150px);
    z-index: 0;
    letter-spacing: -3px;
  }
  .conatinerTitle .conatinerTitle_blockB {
    display: none;
  }
}
html, body {
  scroll-behavior: smooth;
}

.CONTAINER_BLOG {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: grid;
  background: #0c1b32;
  grid-template-columns: repeat(2, 1fr) 25%;
  grid-template-rows: auto;
  grid-template-areas: "BLOG_BLOCK_TOP       BLOG_BLOCK_TOP       BLOG_BLOCK_TOP" "BLOG_BLOCK_MENU      BLOG_BLOCK_MENU      BLOG_BLOCK_MENU" "BLOG_BLOCK_HEADER    BLOG_BLOCK_HEADER    BLOG_BLOCK_HEADER" "BLOG_BLOCK_BLOGGERS  BLOG_BLOCK_BLOGGERS  BLOG_BLOCK_SIDEBAR" "BLOG_BLOCK_FOOTER    BLOG_BLOCK_FOOTER    BLOG_BLOCK_FOOTER";
}
.CONTAINER_BLOG .BLOG_BLOCK_TOP {
  grid-area: BLOG_BLOCK_TOP;
}
.CONTAINER_BLOG .BLOG_BLOCK_MENU {
  grid-area: BLOG_BLOCK_MENU;
}
.CONTAINER_BLOG .BLOG_BLOCK_HEADER {
  grid-area: BLOG_BLOCK_HEADER;
}
.CONTAINER_BLOG .BLOG_BLOCK_BLOGGERS {
  grid-area: BLOG_BLOCK_BLOGGERS;
}
.CONTAINER_BLOG .BLOG_BLOCK_SIDEBAR {
  grid-area: BLOG_BLOCK_SIDEBAR;
}
.CONTAINER_BLOG .BLOG_BLOCK_FOOTER {
  grid-area: BLOG_BLOCK_FOOTER;
}

@media (min-width: 320px) and (max-width: 769px) {
  .CONTAINER_BLOG {
    display: grid;
    background: #0c1b32;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "BLOG_BLOCK_TOP       BLOG_BLOCK_TOP       BLOG_BLOCK_TOP" "BLOG_BLOCK_MENU      BLOG_BLOCK_MENU      BLOG_BLOCK_MENU" "BLOG_BLOCK_HEADER    BLOG_BLOCK_HEADER    BLOG_BLOCK_HEADER" "BLOG_BLOCK_BLOGGERS  BLOG_BLOCK_BLOGGERS  BLOG_BLOCK_BLOGGERS" "BLOG_BLOCK_SIDEBAR   BLOG_BLOCK_SIDEBAR   BLOG_BLOCK_SIDEBAR" "BLOG_BLOCK_FOOTER    BLOG_BLOCK_FOOTER    BLOG_BLOCK_FOOTER";
  }
}
/*
- @media (min-width:1025px) and (max-width:1200px){}     175px 
- @media (min-width:900px)  and (max-width:1024px){}     124px
- @media (min-width:770px)  and (max-width:899px){}      129px
- @media (min-width:641px)  and (max-width:769px){}      128px
- @media (min-width:481px)  and (max-width:640px){}      159px
- @media (min-width:320px)  and (max-width:480px){}      160px
*/
.contBlogTop {
  width: 100%;
  padding: 10px 0px;
  background: #0c1b32;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}
.contBlogTop .contBlogTop_logo {
  margin-left: 20px;
}
.contBlogTop .contBlogTop_logo .contBlogTop_logo_text {
  color: #56fbd3;
  font-size: 100px;
  letter-spacing: -4px;
}
.contBlogTop .contBlogTop_logo .contBlogTop_logo_text .blogtextAux {
  color: white;
  font-size: 100px;
  letter-spacing: -4px;
}
.contBlogTop .contBlogTop_bar {
  width: 4px;
  height: 150px;
  background: white;
}
.contBlogTop .contBlogTop_banner {
  margin-right: 20px;
  padding: 20px 0px;
}
.contBlogTop .contBlogTop_banner .contBlogTop_banner_title {
  width: 450px;
  margin: auto;
  padding: 20px 0px;
  color: white;
  box-shadow: 0px 0px 10px #56fbd3;
  border: 2px dashed #56fbd3;
  text-shadow: 0px 3px 2px #56fbd3;
  letter-spacing: -2px;
  font-size: 70px;
  text-align: center;
  line-height: 60px;
  font-weight: 800;
}

@media (min-width: 770px) and (max-width: 899px) {
  .contBlogTop {
    width: 100%;
    padding: 10px 0px;
    background: #0c1b32;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
  }
  .contBlogTop .contBlogTop_logo {
    margin-left: 20px;
  }
  .contBlogTop .contBlogTop_logo .contBlogTop_logo_text {
    color: #56fbd3;
    font-size: 90px;
    letter-spacing: -4px;
  }
  .contBlogTop .contBlogTop_logo .contBlogTop_logo_text .blogtextAux {
    color: white;
    font-size: 90px;
    letter-spacing: -4px;
  }
  .contBlogTop .contBlogTop_bar {
    width: 4px;
    height: 150px;
    background: white;
  }
  .contBlogTop .contBlogTop_banner {
    margin-right: 20px;
    padding: 20px 0px;
  }
  .contBlogTop .contBlogTop_banner .contBlogTop_banner_title {
    width: 450px;
    margin: auto;
    padding: 20px 0px;
    color: white;
    box-shadow: 0px 0px 10px #56fbd3;
    border: 2px dashed #56fbd3;
    text-shadow: 0px 3px 2px #56fbd3;
    letter-spacing: -2px;
    font-size: 70px;
    text-align: center;
    line-height: 60px;
    font-weight: 800;
  }
}
@media (min-width: 641px) and (max-width: 769px) {
  .contBlogTop {
    width: 100%;
    padding: 10px 0px;
    background: #0c1b32;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
  }
  .contBlogTop .contBlogTop_logo {
    margin-left: 20px;
  }
  .contBlogTop .contBlogTop_logo .contBlogTop_logo_text {
    color: #56fbd3;
    font-size: 80px;
    letter-spacing: -4px;
  }
  .contBlogTop .contBlogTop_logo .contBlogTop_logo_text .blogtextAux {
    color: white;
    font-size: 80px;
    letter-spacing: -4px;
  }
  .contBlogTop .contBlogTop_bar {
    display: block;
  }
  .contBlogTop .contBlogTop_banner {
    margin-right: 20px;
    padding: 10px 0px;
  }
  .contBlogTop .contBlogTop_banner .contBlogTop_banner_title {
    width: 300px;
    margin: auto;
    padding: 15px 0px;
    color: white;
    box-shadow: 0px 0px 10px #56fbd3;
    border: 2px dashed #56fbd3;
    text-shadow: 0px 3px 2px #56fbd3;
    letter-spacing: -2px;
    font-size: 50px;
    text-align: center;
    line-height: 45px;
    font-weight: 800;
  }
}
@media (min-width: 320px) and (max-width: 640px) {
  .contBlogTop {
    width: 100%;
    padding: 10px 0px;
    background: #0c1b32;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
  }
  .contBlogTop .contBlogTop_logo {
    margin: auto;
  }
  .contBlogTop .contBlogTop_logo .contBlogTop_logo_text {
    color: #56fbd3;
    font-size: 100px;
    letter-spacing: -4px;
  }
  .contBlogTop .contBlogTop_logo .contBlogTop_logo_text .blogtextAux {
    color: white;
    font-size: 100px;
    letter-spacing: -4px;
  }
  .contBlogTop .contBlogTop_bar {
    display: none;
  }
  .contBlogTop .contBlogTop_banner {
    margin: auto;
    padding: 10px 0px;
  }
  .contBlogTop .contBlogTop_banner .contBlogTop_banner_title {
    width: 90%;
    margin: auto;
    padding: 15px 0px;
    color: white;
    letter-spacing: -2px;
    font-size: 50px;
    text-align: center;
    line-height: 45px;
    font-weight: 800;
  }
}
.contBlogMenu {
  width: 100%;
  padding: 10px 0px;
  background: #0c1b32;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.contBlogMenu .contBlogMenu_ul {
  width: 40%;
  padding: 10px 0px;
  margin-left: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.contBlogMenu .contBlogMenu_ul .contBlogMenu_ul_li {
  padding: 5px 0px;
  list-style: none;
  text-align: center;
}
.contBlogMenu .contBlogMenu_ul .contBlogMenu_ul_li .blogLink {
  color: #56fbd3;
  font-weight: 300;
  transition: 0.5s all;
}
.contBlogMenu .contBlogMenu_ul .contBlogMenu_ul_li .blogLink:hover {
  color: white;
}
.contBlogMenu .contBlogTop_btnResponsive {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contBlogMenu .contBlogTop_btnResponsive .iconBlogResponsive {
  font-size: 35px;
  color: white;
  transition: 0.2s ease;
  display: none;
}
.contBlogMenu .contBlogTop_btnResponsive .iconBlogResponsive:hover {
  transform: translateX(10px);
  cursor: pointer;
  color: #56fbd3;
}

@media (min-width: 320px) and (max-width: 770px) {
  .contBlogMenu {
    width: 100%;
    padding: 10px 0px;
    background: #0c1b32;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .contBlogMenu .contBlogMenu_ul {
    width: 100%;
    padding: 0px;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    background: #0c1b32;
    top: -220px;
    opacity: 1;
    transition: 0.2s linear;
    z-index: 10;
  }
  .contBlogMenu .contBlogMenu_ul .contBlogMenu_ul_li {
    width: 100%;
    padding: 5px 0px;
    height: 50px;
    list-style: none;
    text-align: center;
  }
  .contBlogMenu .contBlogMenu_ul .contBlogMenu_ul_li .blogLink {
    color: #56fbd3;
    font-weight: 300;
    transition: 0.5s all;
  }
  .contBlogMenu .contBlogMenu_ul .contBlogMenu_ul_li .blogLink:hover {
    color: white;
  }
  .contBlogMenu .contBlogMenu_ul_JS {
    opacity: 1;
    top: 70px;
  }
  .contBlogMenu .contBlogTop_btnResponsive {
    width: 50px;
    height: 50px;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
  }
  .contBlogMenu .contBlogTop_btnResponsive .iconBlogResponsive {
    display: block;
  }
}
.contBlogHeader {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-arounda;
  align-items: center;
}
.contBlogHeader .contBlogHeader_bannerRight {
  width: 70%;
  overflow: hidden;
  position: relative;
}
.contBlogHeader .contBlogHeader_bannerRight .contBlogHeader_bannerRight_medio {
  width: 100%;
  height: 500px;
  text-align: center;
  transition: 0.5s all;
}
.contBlogHeader .contBlogHeader_bannerRight .contBlogHeader_bannerRight_medio:hover {
  transform: scale(1.1, 1.1);
}
.contBlogHeader .contBlogHeader_bannerRight .contBlogHeader_bannerRight_contTitle {
  width: 300px;
  padding: 10px 20px;
  position: absolute;
  bottom: 30px;
  left: calc(50% - 180px);
  text-align: center;
  background: rgba(5, 11, 32, 0.7764705882);
  border-radius: 5px;
}
.contBlogHeader .contBlogHeader_bannerRight .contBlogHeader_bannerRight_contTitle .contBlogHeader_bannerRight_contTitle_text {
  color: white;
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
}
.contBlogHeader .contBlogHeader_boxBanners {
  width: 30%;
  height: 500px;
  overflow: hidden;
}
.contBlogHeader .contBlogHeader_boxBanners .contBlogHeader_boxBanners_box {
  width: 100%;
  height: 166.66px;
  position: relative;
  transition: 0.5s all;
}
.contBlogHeader .contBlogHeader_boxBanners .contBlogHeader_boxBanners_box .contBlogHeader_boxBanners_box_contImgage {
  width: 100%;
  height: 100%;
}
.contBlogHeader .contBlogHeader_boxBanners .contBlogHeader_boxBanners_box .contBlogHeader_boxBanners_box_conttitle {
  width: 200px;
  padding: 10px 0px;
  text-align: center;
  position: absolute;
  bottom: 20px;
  line-height: 20px;
  left: calc(50% - 150px);
  background: rgba(5, 11, 32, 0.7764705882);
}
.contBlogHeader .contBlogHeader_boxBanners .contBlogHeader_boxBanners_box .contBlogHeader_boxBanners_box_conttitle .contcontBlogHeader_bannerRight_title {
  color: #96aadb;
  font-weight: 700;
}
.contBlogHeader .contBlogHeader_boxBanners .contBlogHeader_boxBanners_box:hover {
  transform: scale(1.1, 1.1);
}

@media (min-width: 770px) and (max-width: 1024px) {
  .contBlogHeader {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
  .contBlogHeader .contBlogHeader_bannerRight {
    width: 70%;
    overflow: hidden;
    position: relative;
  }
  .contBlogHeader .contBlogHeader_bannerRight .contBlogHeader_bannerRight_medio {
    width: 100%;
    height: 500px;
    text-align: center;
    transition: 0.5s all;
  }
  .contBlogHeader .contBlogHeader_bannerRight .contBlogHeader_bannerRight_contTitle {
    width: 300px;
    padding: 10px 20px;
    position: absolute;
    bottom: 30px;
    left: calc(50% - 180px);
    text-align: center;
    background: rgba(5, 11, 32, 0.7764705882);
    border-radius: 5px;
  }
  .contBlogHeader .contBlogHeader_bannerRight .contBlogHeader_bannerRight_contTitle .contBlogHeader_bannerRight_contTitle_text {
    color: white;
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
  }
  .contBlogHeader .contBlogHeader_boxBanners {
    width: 30%;
    height: 500px;
    overflow: hidden;
  }
  .contBlogHeader .contBlogHeader_boxBanners .contBlogHeader_boxBanners_box {
    width: 100%;
    height: 166.66px;
    position: relative;
    transition: 0.5s all;
  }
  .contBlogHeader .contBlogHeader_boxBanners .contBlogHeader_boxBanners_box .contBlogHeader_boxBanners_box_contImgage {
    width: 100%;
    height: 100%;
  }
  .contBlogHeader .contBlogHeader_boxBanners .contBlogHeader_boxBanners_box .contBlogHeader_boxBanners_box_conttitle {
    width: 100%;
    padding: 10px 0px;
    text-align: center;
    position: absolute;
    bottom: 20px;
    line-height: 20px;
    left: initial;
    background: rgba(5, 11, 32, 0.7764705882);
  }
  .contBlogHeader .contBlogHeader_boxBanners .contBlogHeader_boxBanners_box .contBlogHeader_boxBanners_box_conttitle .contcontBlogHeader_bannerRight_title {
    color: #96aadb;
    font-weight: 700;
  }
}
@media (min-width: 641px) and (max-width: 769px) {
  .contBlogHeader {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
  .contBlogHeader .contBlogHeader_bannerRight {
    width: 70%;
    overflow: hidden;
    position: relative;
  }
  .contBlogHeader .contBlogHeader_bannerRight .contBlogHeader_bannerRight_medio {
    width: 100%;
    height: 500px;
    text-align: center;
    transition: 0.5s all;
  }
  .contBlogHeader .contBlogHeader_bannerRight .contBlogHeader_bannerRight_contTitle {
    width: 300px;
    padding: 10px 20px;
    position: absolute;
    bottom: 30px;
    left: calc(50% - 180px);
    text-align: center;
    background: rgba(5, 11, 32, 0.7764705882);
    border-radius: 5px;
  }
  .contBlogHeader .contBlogHeader_bannerRight .contBlogHeader_bannerRight_contTitle .contBlogHeader_bannerRight_contTitle_text {
    color: white;
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
  }
  .contBlogHeader .contBlogHeader_boxBanners {
    width: 30%;
    height: 500px;
    overflow: hidden;
  }
  .contBlogHeader .contBlogHeader_boxBanners .contBlogHeader_boxBanners_box {
    width: 100%;
    height: 166.66px;
    position: relative;
    transition: 0.5s all;
  }
  .contBlogHeader .contBlogHeader_boxBanners .contBlogHeader_boxBanners_box .contBlogHeader_boxBanners_box_contImgage {
    width: 100%;
    height: 100%;
  }
  .contBlogHeader .contBlogHeader_boxBanners .contBlogHeader_boxBanners_box .contBlogHeader_boxBanners_box_conttitle {
    width: 100%;
    padding: 5px 0px;
    text-align: center;
    position: absolute;
    border-radius: 0px;
    bottom: 20px;
    line-height: 20px;
    left: initial;
    background: rgba(5, 11, 32, 0.7764705882);
  }
  .contBlogHeader .contBlogHeader_boxBanners .contBlogHeader_boxBanners_box .contBlogHeader_boxBanners_box_conttitle .contcontBlogHeader_bannerRight_title {
    color: #96aadb;
    font-weight: 700;
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 640px) {
  .contBlogHeader {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0px;
  }
  .contBlogHeader .contBlogHeader_bannerRight {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .contBlogHeader .contBlogHeader_bannerRight .contBlogHeader_bannerRight_medio {
    width: 100%;
    height: 500px;
    text-align: center;
    transition: 0.5s all;
  }
  .contBlogHeader .contBlogHeader_bannerRight .contBlogHeader_bannerRight_contTitle {
    width: 300px;
    padding: 10px 30px;
    position: absolute;
    bottom: 30px;
    left: calc(50% - 150px);
    text-align: center;
    background: rgba(5, 11, 32, 0.7764705882);
    border-radius: 5px;
  }
  .contBlogHeader .contBlogHeader_bannerRight .contBlogHeader_bannerRight_contTitle .contBlogHeader_bannerRight_contTitle_text {
    color: white;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
  }
  .contBlogHeader .contBlogHeader_boxBanners {
    display: none;
  }
}
.contBlogBloggersBase {
  width: 100%;
}
.contBlogBloggersBase .contBlogBloggers {
  width: 100%;
  padding: 50px 0px;
  background: #0c1b32;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}
.contBlogBloggersBase .contBlogBloggers .contBlogBloggers_img {
  width: 280px;
  height: 280px;
  border-radius: 5px;
  transition: 0.5s linear;
  overflow: hidden;
}
.contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc {
  width: 60%;
  padding: 5px;
}
.contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_title {
  width: 400px;
  padding: 5px 0px;
  font-weight: 600;
  color: #56fbd3;
  font-size: 35px;
  line-height: 30px;
}
.contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_parrafo {
  margin-top: 10px;
  font-weight: 300;
  color: white;
}
.contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_fuente {
  color: #96aadb;
  font-weight: 500;
}
.contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton {
  width: 100%;
  padding: 3px 0px;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_btn {
  width: 150px;
  padding: 5px;
  cursor: pointer;
  border: none;
  color: white;
  background: transparent;
  transition: 0.2s;
  border-radius: 5px;
  border: 2px solid #56fbd3;
}
.contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_btn:hover {
  background: #0c1b32;
  border: 2px solid white;
  border-radius: 5px;
}
.contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_contIcons {
  width: auto;
  padding: 2px 0px;
  margin-right: 10px;
}
.contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_contIcons .blogIcons {
  color: #56fbd3;
  cursor: pointer;
  margin-left: 15px;
}
.contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_contIcons .campo {
  color: white;
}
.contBlogBloggersBase .contBlogBloggers .blogSeparador {
  margin-top: 20px;
  width: 90%;
  height: 2px;
  border: none;
  background: rgba(128, 128, 128, 0.171);
}

.contBlogNumerador {
  width: 160px;
  height: 50px;
  margin: 10px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.contBlogNumerador .contBlogNumerador_box {
  width: 45px;
  height: 30px;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s all;
  color: #0c1b32;
  font-weight: 600;
  font-size: 15px;
  border-radius: 3px;
}
.contBlogNumerador .contBlogNumerador_box:hover {
  background: #0c1b32;
  cursor: pointer;
  color: white;
}

@media (min-width: 770px) and (max-width: 1024px) {
  .contBlogBloggersBase {
    width: 100%;
  }
  .contBlogBloggersBase .contBlogBloggers {
    width: 100%;
    padding: 10px 20px;
    background: #0c1b32;
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_img {
    width: 92%;
    height: 280px;
    border-radius: 5px;
    overflow: hidden;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc {
    width: 100%;
    height: auto;
    padding: 10px 20px;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_title {
    padding: 5px 0px;
    font-weight: 600;
    color: #56fbd3;
    line-height: 30px;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_parrafo {
    margin-top: 10px;
    font-weight: 300;
    color: white;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton {
    width: 100%;
    padding: 3px 0px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_btn {
    width: 150px;
    padding: 5px;
    cursor: pointer;
    border: none;
    color: white;
    background: transparent;
    transition: 0.2s;
    border-radius: 5px;
    border: 2px solid #56fbd3;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_btn:hover {
    background: #0c1b32;
    border: 2px solid white;
    border-radius: 5px;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_contIcons {
    width: auto;
    padding: 2px 0px;
    margin-left: 5px;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_contIcons .blogIcons {
    color: #56fbd3;
    cursor: pointer;
    margin-left: 5px;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_contIcons .campo {
    color: white;
  }
  .contBlogBloggersBase .contBlogBloggers .blogSeparador {
    margin-top: 20px;
    width: 90%;
    height: 2px;
    border: none;
    background: rgba(128, 128, 128, 0.171);
  }
}
@media (min-width: 320px) and (max-width: 769px) {
  .contBlogBloggersBase {
    width: 100%;
  }
  .contBlogBloggersBase .contBlogBloggers {
    width: 100%;
    padding: 10px;
    background: #0c1b32;
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_img {
    margin-top: 20px;
    width: 100%;
    height: 280px;
    border-radius: 5px;
    overflow: hidden;
    padding: 5px 0px;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc {
    width: 100%;
    height: auto;
    padding: 10px 0px;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_title {
    width: 100%;
    padding: 5px 0px;
    font-weight: 600;
    color: #56fbd3;
    line-height: 30px;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_parrafo {
    margin-top: 10px;
    font-weight: 300;
    color: white;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton {
    width: 100%;
    padding: 3px 0px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_btn {
    width: 150px;
    padding: 5px;
    cursor: pointer;
    border: none;
    color: white;
    background: transparent;
    transition: 0.2s;
    border-radius: 5px;
    border: 2px solid #56fbd3;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_btn:hover {
    background: #0c1b32;
    border: 2px solid white;
    border-radius: 5px;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_contIcons {
    width: auto;
    padding: 2px 0px;
    margin-left: 5px;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_contIcons .blogIcons {
    color: #56fbd3;
    cursor: pointer;
    margin-left: 5px;
  }
  .contBlogBloggersBase .contBlogBloggers .contBlogBloggers_desc .contBloggers_desc_IconButton .contBloggers_desc_contIcons .campo {
    color: white;
  }
}
.contBlogSidebar {
  width: 100%;
  padding: 50px 10px;
  background: #0c1b32;
}
.contBlogSidebar .contBlogSidebar_contPublicidad {
  width: 100%;
  height: 60%;
  margin-bottom: 10px;
  box-shadow: 0px 0px 6px #96aadb;
}
.contBlogSidebar .contBlogSidebar_contRedes {
  width: 100%;
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.contBlogSidebar .contBlogSidebar_contRedes .contBlogSidebar_contRedes_box {
  width: 75px;
  padding: 10px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s linear;
}
.contBlogSidebar .contBlogSidebar_contRedes .contBlogSidebar_contRedes_box .iconBlog {
  color: #0c1b32;
  transition: 0.2s linear;
}
.contBlogSidebar .contBlogSidebar_contRedes .contBlogSidebar_contRedes_box:hover {
  background: #0c1b32;
}
.contBlogSidebar .contBlogSidebar_contRedes .contBlogSidebar_contRedes_box:hover .iconBlog {
  color: white;
}

@media (min-width: 770px) and (max-width: 1024px) {
  .contBlogSidebar {
    width: 100%;
    padding: 50px 10px;
    background: #0c1b32;
  }
  .contBlogSidebar .contBlogSidebar_contPublicidad {
    width: 100%;
    height: 50%;
    margin-bottom: 10px;
  }
  .contBlogSidebar .contBlogSidebar_contRedes {
    width: 100%;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .contBlogSidebar .contBlogSidebar_contRedes .contBlogSidebar_contRedes_box {
    width: 55px;
    padding: 10px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s linear;
  }
  .contBlogSidebar .contBlogSidebar_contRedes .contBlogSidebar_contRedes_box .iconBlog {
    color: #0c1b32;
    transition: 0.2s linear;
  }
}
@media (min-width: 425px) and (max-width: 769px) {
  .contBlogSidebar {
    width: 100%;
    padding: 20px 10px;
    background: #0c1b32;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
  .contBlogSidebar .contBlogSidebar_contPublicidad {
    width: 45%;
    height: 50%;
    margin-bottom: 10px;
  }
  .contBlogSidebar .contBlogSidebar_contRedes {
    width: 350px;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .contBlogSidebar .contBlogSidebar_contRedes .contBlogSidebar_contRedes_box {
    width: 100px;
    padding: 10px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s linear;
  }
  .contBlogSidebar .contBlogSidebar_contRedes .contBlogSidebar_contRedes_box .iconBlog {
    color: #0c1b32;
    transition: 0.2s linear;
  }
}
@media (min-width: 320px) and (max-width: 424px) {
  .contBlogSidebar {
    width: 100%;
    padding: 20px 10px;
    background: #0c1b32;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
  .contBlogSidebar .contBlogSidebar_contPublicidad {
    width: 85%;
    height: 50%;
    margin-bottom: 10px;
  }
  .contBlogSidebar .contBlogSidebar_contRedes {
    width: 85%;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .contBlogSidebar .contBlogSidebar_contRedes .contBlogSidebar_contRedes_box {
    width: 80px;
    padding: 10px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s linear;
  }
  .contBlogSidebar .contBlogSidebar_contRedes .contBlogSidebar_contRedes_box .iconBlog {
    color: #0c1b32;
    transition: 0.2s linear;
  }
}
.contBlogFooter {
  width: 100%;
  padding: 80px 0px;
  background: #000000;
}
.contBlogFooter .contBlogFooterTitle {
  color: #56fbd3;
  text-transform: uppercase;
  margin-left: 30px;
}
.contBlogFooter .contBlogFooter_articulos {
  width: 100%;
  padding: 10px 0px;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.contBlogFooter .contBlogFooter_articulos .contBlogFooter_articulos_box {
  width: 100px;
  padding: 10px 0px;
}
.contBlogFooter .contBlogFooter_articulos .contBlogFooter_articulos_box .contBlogFooter_articulos_box_icon {
  margin: 5px 0px;
}
.contBlogFooter .contBlogFooter_articulos .contBlogFooter_articulos_box .contBlogFooter_articulos_box_icon .iconBlog {
  color: #56fbd3;
}
.contBlogFooter .contBlogFooter_articulos .contBlogFooter_articulos_box .contBlogFooter_articulos_box_icon .tBlog {
  margin-left: 10px;
  color: white;
  transition: 0.1s all;
}
.contBlogFooter .contBlogFooter_articulos .contBlogFooter_articulos_box .contBlogFooter_articulos_box_icon .tBlog:hover {
  color: #96aadb;
}
.contBlogFooter .lineaBlog {
  width: 90%;
  height: 2px;
  background: rgba(128, 128, 128, 0.288);
  border: none;
  margin: 20px auto;
}
.contBlogFooter .contBlogFooter_pie {
  width: 100%;
  padding: 20px 0px;
  text-align: center;
}
.contBlogFooter .contBlogFooter_pie .contBlogFooter_pie_text {
  color: #56fbd3;
  font-weight: 300;
}
.contBlogFooter .contBlogFooter_pie .contBlogFooter_pie_text .spanText {
  color: #96aadb;
}

/*@media (min-width:1025px) and (max-width:1200px) 175px diferencia
* @media (min-width:770px) and (max-width:1024px)  254px diferencias
* @media (min-width:641px) and (max-width:769px)   728 px diferencia
* @media (min-width:481px) and (max-width:640px)   159px diferencia
* @media (min-width:320px) and (max-width:480px)   160px diferencia*/
@media (min-width: 20px) and (max-width: 640px) {
  .contBlogFooter {
    width: 100%;
    padding: 80px 0px;
    background: #000000;
  }
  .contBlogFooter .contBlogFooterTitle {
    color: #56fbd3;
    text-transform: uppercase;
    margin-left: 30px;
  }
  .contBlogFooter .contBlogFooter_articulos {
    width: 90%;
    padding: 10px 0px;
    margin: 10px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
  .contBlogFooter .contBlogFooter_articulos .contBlogFooter_articulos_box {
    width: auto;
    padding: 10px 0px;
  }
  .contBlogFooter .contBlogFooter_articulos .contBlogFooter_articulos_box .contBlogFooter_articulos_box_icon {
    margin: 5px 0px;
  }
  .contBlogFooter .contBlogFooter_articulos .contBlogFooter_articulos_box .contBlogFooter_articulos_box_icon .iconBlog {
    color: #56fbd3;
  }
  .contBlogFooter .contBlogFooter_articulos .contBlogFooter_articulos_box .contBlogFooter_articulos_box_icon .tBlog {
    margin-left: 10px;
    color: white;
    transition: 0.1s all;
  }
  .contBlogFooter .contBlogFooter_articulos .contBlogFooter_articulos_box .contBlogFooter_articulos_box_icon .tBlog:hover {
    color: #96aadb;
  }
  .contBlogFooter .lineaBlog {
    width: 90%;
    height: 2px;
    background: rgba(128, 128, 128, 0.288);
    border: none;
    margin: 20px auto;
  }
  .contBlogFooter .contBlogFooter_pie {
    width: 90%;
    padding: 20px 0px;
    text-align: center;
    margin: auto;
  }
  .contBlogFooter .contBlogFooter_pie .contBlogFooter_pie_text {
    color: #56fbd3;
    font-weight: 300;
  }
  .contBlogFooter .contBlogFooter_pie .contBlogFooter_pie_text .spanText {
    color: #96aadb;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  /*   200    700
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  */
  /*
      font-family: "Audiowide", sans-serif;
      font-weight: 400;
      font-style: normal;
  }

      */
  /*
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
  */
}

html {
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-thumb {
  background: #56fbd3;
  border-radius: 2px;
  height: 80px;
  transition: 5s ease-in-out;
}

body::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
  height: 100px;
}

/*# sourceMappingURL=main.css.map */
