/**************************************
***            VARIABLES             ****
***************************************/
@import url("https://fonts.googleapis.com/css2?family=Courgette&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,300&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

body {
  font-family: 'Open Sans', sans-serif, Helvetica,  Arial;
  scroll-behavior: smooth;
}

.w5 {
  width: 5%;
}

.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w33 {
  width: 33%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w100 {
  width: 100%;
}

.wauto {
  width: auto;
}

.minheight100 {
  min-height: 100vh;
}

.container-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.container-nowrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.justify-content-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.order1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.center {
  width: 90%;
  margin: auto;
}

.al-ct {
  text-align: center;
}

.al-lf {
  text-align: left;
}

.al-rg {
  text-align: right;
}

.pd5 {
  padding: 5px;
}

.pd10 {
  padding: 10px;
}

.pd15 {
  padding: 15px;
}

.pd20 {
  padding: 20px;
}

.pd50 {
  padding: 50px;
}

.mg5 {
  margin: 5px;
}

.mg10 {
  margin: 10px;
}

.mg20 {
  margin: 20px;
}

.mg-tp5 {
  margin-top: 5px;
}

.mg-tp10 {
  margin-top: 10px;
}

.mg-tp20 {
  margin-top: 20px;
}

.mg-tp40 {
  margin-top: 40px;
}

.mg-bt5 {
  margin-bottom: 5px;
}

.mg-bt10 {
  margin-bottom: 10px;
}

.mg-bt20 {
  margin-bottom: 20px;
}

.mg-bt50 {
  margin-bottom: 50px;
}

.mg-lt10 {
  margin-left: 10px;
}

.mg-auto {
  margin: 0 auto;
}

.ico-navbar {
  font-size: 1.3em;
}

.ico-navbar:hover {
  color: #006cb5;
}

.ico2 {
  margin: 0px 9px;
  font-size: 1.5em;
  vertical-align: middle;
  color: #0A4369;
}

.bold {
  font-weight: 700;
}

.hidden {
  display: none;
}

.mostrar {
  display: block;
}

/**************************************
***            BOTONES             ****
***************************************/
.btn {
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid #B51312;
  background-color: #B51312;
  color: #ffffff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
}

.btn:hover {
  color: #B51312;
  background: transparent;
}

.btn-azul {
  background-color: #006cb5;
  border: 1px solid #006cb5;
}

.btn-azul:hover {
  color: #006cb5;
  -webkit-box-shadow: 0px 1px 2px #006cb5;
          box-shadow: 0px 1px 2px #006cb5;
}

.btn-rojo {
  background-color: #ff0000;
  border: 1px solid #ff0000;
}

.btn-rojo:hover {
  color: #ff0000;
  -webkit-box-shadow: 0px 1px 2px #ff0000;
          box-shadow: 0px 1px 2px #ff0000;
}

.btn-plomo {
  background-color: #373435;
  border: 1px solid #373435;
}

.btn-plomo:hover {
  color: #373435;
  -webkit-box-shadow: 0px 1px 2px #373435;
          box-shadow: 0px 1px 2px #373435;
}

/*************************************
***            titulos            ***
*************************************/
.titulo {
  font-size: 2rem;
  letter-spacing: 2px;
}

.ir-arriba {
  position: fixed;
  z-index: 100;
  bottom: 5px;
  right: 5px;
  background-color: #B51312;
  color: #ffffff;
  padding: 8px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.ir-arriba:hover {
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.71);
          box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.71);
}

.ir-arriba:hover .fa-chevron-up {
  font-weight: bold;
}

.rotar10 {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.rotar180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.rotar360 {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.btnWhatsapp {
  position: fixed;
  bottom: 55px;
  right: 5px;
  z-index: 101;
  color: #ffffff;
}

.btnWhatsapp .ico-whatsapp {
  background-color: #006cb5;
  color: #ffffff;
  text-align: center;
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  font-size: 30px;
  line-height: 50px;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.btnWhatsapp .text-whatsapp {
  width: 180px;
  right: 100%;
  position: absolute;
  background-color: #ffffff;
  color: #000000;
  border-radius: 4px;
  margin-right: 6px;
  margin-top: 10px;
  padding: 4px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.btnWhatsapp .popup-what {
  display: none;
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 350px;
  margin-bottom: 15px;
  border-radius: 5px 15px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

.btnWhatsapp .popup-what .box1, .btnWhatsapp .popup-what .box2 {
  padding: 30px;
}

.btnWhatsapp .popup-what .box1 {
  background: #006cb5;
  margin: 0 auto;
}

.btnWhatsapp .popup-what .box1 .fa-whatsapp {
  font-size: 36px;
}

.btnWhatsapp .popup-what .box1 .box-text span {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
  display: block;
}

.btnWhatsapp .popup-what .box1 .box-text p {
  font-size: 12px;
  line-height: 20px;
}

.btnWhatsapp .popup-what .box2 {
  background: #ffffff;
  color: #006cb5;
}

.btnWhatsapp .popup-what .box2 a {
  border-left: 3px solid #006cb5;
  display: block;
  padding-left: 5px;
}

.btnWhatsapp .popup-what .box2 a .gris {
  color: #373435;
  font-size: 12px;
}

.btnWhatsapp .popup-what .box2 a .fa-whatsapp {
  font-size: 28px;
  color: #006cb5;
}

hr {
  height: 2px;
  border: none;
  background: #006cb5;
  margin: 3px 0;
}

@media screen and (max-width: 768px) {
  .btnWhatsapp .text-whatsapp {
    display: none;
    opacity: 0;
  }
}

/********************************************
****               titulos             ****
*********************************************/
.box-titulos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
}

.box-titulos .titulo {
  margin: 20px 15px;
  font-size: 2rem;
}

@media screen and (max-width: 800px) {
  .box-titulo .titulo {
    margin: 20px 12px;
    font-size: 22px;
  }
}

/********************************************
****               HEADER                ****
*********************************************/
.header {
  background: #ffffff;
  color: #006cb5;
  position: fixed;
  top: 0;
  z-index: 200;
  height: 80px;
  border-bottom: 1px solid #ccc;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

.header .content-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .content-header .box-redes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .content-header .box-redes .btn-redes {
  width: 20px;
  font-size: 20px;
  margin-right: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .content-header .box-redes .btn-redes:last-child {
  margin-right: 60px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .content-header .box-logo {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .content-header .box-logo .img-logo {
  width: auto;
  height: 80px;
}

.header .navbar {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .navbar .nav-link {
  height: 80px;
  line-height: 80px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 0px 20px;
  background-color: transparent;
  color: inherit;
}

.header .navbar .nav-link:hover {
  color: #ffffff;
  background-color: #006cb5;
}

@media (max-width: 950px) {
  .header .center {
    width: 95%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .header .btn-menu {
    display: block;
    padding: 20px;
  }
  .header .navbar {
    width: 100%;
    display: none;
    background-color: #f2f2f2;
  }
  .header .navbar .nav-link {
    width: 100%;
    display: block;
    padding: 16px 20px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .header .navbar .nav-link:hover {
    color: #ffffff;
    background: #006cb5;
  }
}

@media (max-width: 550px) {
  .header .content-header .box-redes {
    width: 80px;
    margin-right: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .header .content-header .box-redes .btn-redes {
    margin-right: 10px;
  }
  .header .content-header .box-redes .btn-redes:last-child {
    margin-right: 10px;
  }
}

/********************************************
****               BANNER                ****
*********************************************/
.main {
  margin-top: 80px;
}

.banner {
  width: 100%;
  height: 200px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  background-image: url(../img/bandera.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner .inner-banner {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0;
}

.banner .inner-banner .title-banner {
  font-family: 'Courgette', cursive;
  font-size: 1.8em;
  color: #B51312;
  text-align: center;
}

.banner .inner-banner .btn {
  width: 200px;
  height: 50px;
  font-size: 1rem;
  margin-top: 20px;
}

@media (max-width: 550px) {
  .banner {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .banner .inner-banner .btn {
    width: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

/********************************************
****               NOTICIAS                ****
*********************************************/
.inner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #f2f2f2;
}

.noticias {
  width: 70%;
  padding: 20px 20px 50px;
}

.noticias .box-noticias .articulos {
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
          box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: calc(33.33% - 20px);
  margin: 10px;
  display: block;
  overflow: auto;
}

.noticias .box-noticias .articulos .texto-blog {
  padding: 20px;
  position: relative;
}

.noticias .box-noticias .articulos .texto-blog .titulo-blog {
  font-size: 1.5em;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #006cb5;
  margin-bottom: 15px;
}

.noticias .box-noticias .articulos .texto-blog p {
  line-height: 1.4;
  color: #0A4369;
  margin-bottom: 15px;
}

.noticias .box-noticias .articulos .texto-blog .url {
  text-decoration: underline;
  font-style: italic;
  margin-top: 10px;
}

.noticias .box-noticias .articulos .texto-blog .btn-mas {
  color: #006cb5;
  opacity: 0;
  display: block;
  text-align: right;
  bottom: 5px;
}

.noticias .box-noticias .articulos:hover .img-blog {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.noticias .box-noticias .articulos:hover .btn-mas {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.noticias .postredes {
  padding: 20px 0;
}

.noticias .postredes .titulo {
  padding: 20px 0;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
}

.noticias .postredes .sinpost {
  font-weight: 600;
  font-size: 16px;
}

.noticias .postredes .box-postredes .w50 {
  width: calc(50% - 30px);
  margin: 15px;
}

.noticias .postredes .box-postredes .articulos iframe {
  width: 100%;
}

.aside-redes {
  width: 30%;
  padding: 20px 20px 50px;
}

.aside-redes .hr {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 950px) {
  .noticias .box-noticias .articulos {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 850px) {
  .noticias {
    width: 50%;
  }
  .noticias .box-noticias .articulos {
    width: 100%;
  }
  .noticias .postredes .box-postredes .w50 {
    width: 100%;
  }
  .aside-redes {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .inner-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .noticias, .aside-redes {
    width: 100%;
  }
}

/********************************************
****               SOMOS                ****
*********************************************/
.somos {
  padding: 30px 0 70px;
  text-align: center;
  background-color: #f2f2f2;
  min-height: 100vh;
  position: relative;
}

.somos .box-titulos {
  color: #0A4369;
}

.somos .box-titulos .tilulo {
  color: inherit;
}

.somos .box-titulos hr {
  background-color: #0A4369;
}

.somos .subtitulo {
  margin-bottom: 24px;
  font-size: 24px;
  color: #0A4369;
}

.somos .parrafo {
  line-height: 1.4;
  text-align: center;
  margin-bottom: 24px;
  color: #0A4369;
  font-size: 18px;
}

.somos .box-text {
  position: relative;
  z-index: 60;
}

.somos .image {
  position: relative;
  z-index: 60;
}

.somos .image img {
  width: 80%;
  margin: auto;
}

@media screen and (max-width: 800px) {
  .somos .w50, .somos .w80 {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

/********************************************
****               IDEAS                ****
*********************************************/
.ideas {
  padding: 30px 50px 200px;
  background-color: #0A4369;
  color: #ffffff;
  position: relative;
}

.ideas .wave {
  position: absolute;
  left: 0;
  top: -270px;
  z-index: 50;
}

.ideas .wave2 {
  position: absolute;
  left: 0;
  bottom: -70px;
  z-index: 50;
}

.ideas .box-titulos {
  margin-bottom: 0;
  font-size: 20px;
}

.ideas .box-titulos .titulo {
  text-align: center;
}

.ideas .box-titulos hr {
  background-color: #ffffff;
}

.ideas .f40 {
  font-size: 50px;
}

.ideas .f12 {
  font-size: 12px;
}

.ideas .parrafo {
  line-height: 1.4;
  text-align: justify;
  margin-bottom: 24px;
}

.ideas .box-formulario {
  z-index: 100;
  position: relative;
}

.ideas .box-formulario .box-input {
  width: calc(50% - 20px);
  margin: 10px;
}

.ideas .box-formulario .box-input input, .ideas .box-formulario .box-input select {
  padding: 8px 20px;
  height: 50px;
  outline: none;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.ideas .box-formulario .box-input .btn {
  background-color: #ffffff;
  color: #0A4369;
  border: 1px solid #0A4369;
  z-index: 10;
  width: 100%;
  height: 50px;
}

.ideas .box-formulario .box-input .btn:hover {
  background-color: #006cb5;
  color: #ffffff;
  border: 1px solid #006cb5;
}

.ideas .box-formulario .box-area {
  width: calc(100% - 20px);
  margin: 10px;
}

.ideas .box-formulario .box-area textarea {
  padding: 12px 20px;
  outline: none;
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1270px) {
  .ideas .wave {
    top: -190px;
  }
}

@media screen and (max-width: 930px) {
  .ideas .wave {
    top: -160px;
  }
  .ideas .wave2 {
    bottom: 0px;
  }
}

@media screen and (max-width: 800px) {
  .ideas .wave {
    top: -140px;
  }
  .ideas .box-imagen {
    display: none;
  }
  .ideas .box-formulario {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media screen and (max-width: 650px) {
  .ideas {
    padding: 80px 30px 120px;
  }
  .ideas .wave {
    top: -100px;
  }
  .ideas .parrafo {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .ideas .box-formulario .box-imagen {
    margin: 0;
  }
  .ideas .box-formulario .box-input {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .ideas .wave {
    top: -80px;
  }
  .ideas .box-formulario .box-imagen {
    margin: 0;
  }
  .ideas .box-formulario .w50 {
    width: 100%;
  }
}

/********************************************
****              LISTA IDEAS            ****
*********************************************/
.listaIdeas {
  padding: 120px 20px 50px;
}

.listaIdeas .box-post-interes .titulo {
  margin-bottom: 30px;
}

.listaIdeas .box-post-interes .articulos-ideas {
  padding: 14px;
  border: 1px solid rgba(10, 67, 105, 0.41);
  border-radius: 20px;
  width: calc(33% - 30px);
  margin: 15px;
}

.listaIdeas .box-post-interes .articulos-ideas .f30 {
  font-size: 30px;
}

.listaIdeas .box-post-interes .articulos-ideas .texto-idea {
  text-align: center;
}

.listaIdeas .box-post-interes .articulos-ideas .texto-idea hr {
  width: 0%;
}

.listaIdeas .box-post-interes .articulos-ideas .texto-idea .area-interes {
  color: #000000;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-size: 20px;
}

.listaIdeas .box-post-interes .articulos-ideas .texto-idea .parrafo {
  color: #373435;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin: 8px 12px;
}

.listaIdeas .box-post-interes .articulos-ideas:hover {
  border: 2px solid #0A4369;
}

.listaIdeas .box-post-interes .articulos-ideas:hover hr {
  width: 20%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: auto;
}

.listaIdeas .box-post-interes .articulos-ideas:hover .fa-comment-alt {
  color: #006cb5;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

@media screen and (max-width: 900px) {
  .listaIdeas .box-post-interes .articulos-ideas {
    width: calc(50% - 20px);
    margin: 10px;
  }
}

@media screen and (max-width: 700px) {
  .listaIdeas .box-post-interes .articulos-ideas {
    width: 100%;
  }
}

/********************************************
****               INTERES                ****
*********************************************/
.interes {
  padding: 30px 50px 80px;
  color: #0A4369;
}

.interes .box-interes {
  margin-bottom: 50px;
  display: none;
}

.interes .box-interes .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.interes .box-interes .list .items {
  width: calc(33.33% - 10px);
  margin: 5px;
}

.interes .w50 {
  line-height: 2;
}

.interes .fa-check {
  margin-right: 10px;
}

.interes .box-post-interes .titulo {
  margin-bottom: 30px;
}

.interes .box-post-interes .articulos-ideas {
  padding: 14px;
  border: 1px solid rgba(10, 67, 105, 0.41);
  border-radius: 20px;
  width: calc(33% - 30px);
  margin: 15px;
}

.interes .box-post-interes .articulos-ideas .f30 {
  font-size: 30px;
}

.interes .box-post-interes .articulos-ideas .texto-idea {
  text-align: center;
}

.interes .box-post-interes .articulos-ideas .texto-idea hr {
  width: 0%;
}

.interes .box-post-interes .articulos-ideas .texto-idea .area-interes {
  color: #000000;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-size: 20px;
}

.interes .box-post-interes .articulos-ideas .texto-idea .parrafo {
  color: #373435;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin: 8px 12px;
}

.interes .box-post-interes .articulos-ideas:hover {
  border: 2px solid #0A4369;
}

.interes .box-post-interes .articulos-ideas:hover hr {
  width: 20%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: auto;
}

.interes .box-post-interes .articulos-ideas:hover .fa-comment-alt {
  color: #006cb5;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.interes .sinpost {
  font-size: 14px;
  color: #373435;
}

@media (max-width: 1000px) {
  .interes .box-interes .list .items {
    width: calc(50% - 20px);
    margin: 10px;
  }
}

@media screen and (max-width: 900px) {
  .interes .box-post-interes .articulos-ideas {
    width: calc(50% - 20px);
    margin: 10px;
  }
}

@media screen and (max-width: 770px) {
  .interes .box-interes .list .items {
    width: calc(100% - 20px);
    margin: 10px;
  }
  .interes .box-post-interes .articulos-ideas {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .interes {
    text-align: center;
  }
  .interes .center {
    width: 100%;
  }
  .interes .w80, .interes .w50 {
    width: 100%;
    border-bottom: 1px solid rgba(0, 108, 181, 0.71);
    padding: 10px;
  }
  .interes .w80:last-child, .interes .w50:last-child {
    border-bottom: none;
  }
}

/********************************************
****            politica                ****
*********************************************/
.politica {
  padding: 120px 0 30px;
  position: relative;
  background: #efefef;
}

.politica .titulo {
  margin-bottom: 15px;
}

.politica .box-politica-texto {
  padding-top: 30px;
}

.politica .box-politica-texto p {
  text-align: justify;
  margin-bottom: 24px;
}

.politica .box-politica-texto span {
  margin-bottom: 16px;
  display: block;
}

@media screen and (max-width: 750px) {
  .politica .box-politica-texto {
    width: 100%;
  }
}

/********************************************
****               UNETE                ****
*********************************************/
.unete {
  padding: 30px;
  background-color: #B51312;
  color: #ffffff;
}

.unete .f40 {
  font-size: 50px;
}

.unete .box-titulos hr {
  background-color: #ffffff;
}

.unete .parrafo {
  line-height: 1.4;
  text-align: center;
  margin-bottom: 24px;
}

.unete .box-formulario .w50 {
  width: calc(50% - 20px);
  margin: 10px;
}

.unete .box-formulario .box-input {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}

.unete .box-formulario .box-input input, .unete .box-formulario .box-input select {
  padding: 8px 0px;
  padding-left: 48px;
  width: 100%;
  height: 50px;
  outline: none;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.unete .box-formulario .box-input label {
  position: absolute;
  left: 10px;
  font-size: 24px;
  line-height: 50px;
  color: #373435;
}

.unete .box-formulario .box-checkbox {
  width: calc(50% - 20px);
  margin: 10px;
}

.unete .box-formulario .box-checkbox p {
  font-size: 20px;
  margin-bottom: 10px;
}

.unete .box-formulario .box-checkbox input[type="checkbox"] {
  width: auto;
  padding-right: 10px;
}

.unete .box-formulario hr {
  background-color: #ffffff;
}

.unete .box-formulario .btn {
  background-color: #0A4369;
  width: 300px;
  border: 1px solid #0A4369;
  margin-top: 15px;
  font-size: 20px;
}

.unete .box-formulario .btn:hover {
  background-color: #006cb5;
  color: #ffffff;
  border: 1px solid #006cb5;
}

@media screen and (max-width: 800px) {
  .unete {
    padding: 60px 30px;
  }
  .unete .parrafo {
    width: 100%;
  }
  .unete .box-formulario .w50, .unete .box-formulario .box-checkbox {
    width: 100%;
  }
}

/********************************************
****               FOOTER                ****
********************************************/
.footer {
  background-color: #0A4369;
  color: #ffffff;
}

.footer .box-footer {
  padding: 10px;
  line-height: 2;
}

.footer .box-footer .w50 {
  padding: 20px;
}

.footer .box-footer .w50:first-child {
  border-right: 1px dashed rgba(255, 255, 255, 0.4);
}

.footer .box-footer .ico {
  font-size: 20px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .footer .box-footer .w50 {
    width: 100%;
  }
  .footer .box-footer .w50:first-child {
    border-bottom: 1px solid #ffffff;
    border-right: none;
  }
}

/*****************************************
****            BLOGGER                ****
*****************************************/
@media screen and (max-width: 1000px) {
  .main_back .w10 {
    width: 20%;
  }
  .main_back .w90 {
    width: 80%;
  }
}

.main .box-titulo {
  padding: 20px;
  color: #ffffff;
  background-color: #0A4369;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.main .box-titulo .titulo {
  color: inherit;
  font-size: 1.2em;
}

.main .aside {
  min-height: 90vh;
  background-color: #006cb5;
  color: #ffffff;
}

.main .aside .btn-aside {
  width: 100%;
  display: block;
  padding: 10px 4px;
  background-color: #0A4369;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.main .aside .btn-aside:hover {
  background-color: transparent;
  color: #0A4369;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.main .botones {
  margin-bottom: 20px;
}

.main .botones .btn {
  margin: 6px;
}

.main .box {
  margin: 10px auto;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
}

.main .box .box-item {
  border-top: 3px solid #0A4369;
  padding-left: 3px;
  margin-bottom: 10px;
}

.main .box .box-item .titulo_area {
  color: #0A4369;
  font-weight: 600;
}

.main .box .box-item .parrafo_idea {
  color: #373435;
}

.main .box .box-item .correo {
  color: #000000;
  font-weight: 600;
}

.main .box .box-item .estado {
  color: #000000;
  font-weight: 600;
  margin-bottom: 20px;
}

.main .box iframe {
  width: 100%;
}

.main .box .sinpost {
  font-weight: 600;
  font-size: 16px;
}

.main .box2 {
  -webkit-box-shadow: 2px 0px 6px rgba(10, 67, 105, 0.41), inset 0px 1px 2px rgba(10, 67, 105, 0.41);
          box-shadow: 2px 0px 6px rgba(10, 67, 105, 0.41), inset 0px 1px 2px rgba(10, 67, 105, 0.41);
}

.main .box2 form {
  border-collapse: collapse;
}

.main .box2 form input[type="text"], .main .box2 form input[type="email"], .main .box2 form input[type="url"], .main .box2 form input[type="file"],
.main .box2 form textarea {
  resize: none;
  font-family: inherit;
  padding: 10px 6px;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

.main .box2 form input[type="text"]:hover, .main .box2 form input[type="email"]:hover, .main .box2 form input[type="url"]:hover, .main .box2 form input[type="file"]:hover,
.main .box2 form textarea:hover {
  color: 1px solid rgba(0, 80, 125, 0.7);
}

.main .box2 form label {
  color: #0A4369;
  letter-spacing: 0.5px;
}

.main .box2 form hr {
  background-color: #006cb5;
  height: 2px;
  margin: 10px 0;
}

.main .box2 form span {
  color: #373435;
}

.main .box2 form label.error {
  padding: 4px 15px;
  color: #ff0000;
  -webkit-transition: all .300ms ease-in;
  transition: all .300ms ease-in;
}

.main .box2 form input.error {
  border: 0.5px dotted #ff0000;
  -webkit-transition: all .300ms ease-in;
  transition: all .300ms ease-in;
}

.main .box2 .box-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.main .box2 .box-input label {
  margin-right: 10px;
}

.veridea {
  padding: 80px 0 30px;
  min-height: 75vh;
  background-color: #f2f2f2;
}

.veridea .titulo {
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.veridea .fecha {
  color: #373435;
}

.veridea .parrafo {
  line-height: 1.4;
  color: #0A4369;
  margin: 40px 0;
  text-align: justify;
}

.veridea .btn {
  background-color: #373435;
  border: 1px solid #373435;
}

.veridea .btn .ico {
  display: none;
}

.veridea .btn:hover {
  background-color: transparent;
  color: #373435;
}

.veridea .btn:hover .ico {
  display: inline-block;
}

@media (max-width: 750px) {
  .veridea .w60 {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.verblog {
  padding: 120px 0;
}

.verblog .titulo {
  margin-bottom: 40px;
  font-weight: 600;
}

.verblog .img-blog {
  border-radius: 4px;
  margin-bottom: 10px;
}

.verblog .fecha {
  color: #373435;
}

.verblog p {
  line-height: 1.4;
  color: #0A4369;
  margin-bottom: 20px;
  text-align: justify;
}

.verblog .archivo {
  padding: 10px 30px;
  border-left: 3px solid #006cb5;
  color: #ffffff;
  background-color: rgba(45, 46, 131, 0.7);
  display: inline-block;
  margin-bottom: 10px;
}

.verblog .archivo:hover {
  background-color: rgba(45, 46, 131, 0.9);
}

.verblog .url {
  text-decoration: underline;
  font-style: italic;
}

.verblog .btn {
  background-color: #373435;
  border: 1px solid #373435;
}

.verblog .btn .ico {
  display: none;
}

.verblog .btn:hover {
  background-color: transparent;
  color: #373435;
}

.verblog .btn:hover .ico {
  display: inline-block;
}

@media screen and (max-width: 1050px) {
  .blogger .box .w50, .blogger .box .w70 {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .blogger .botones .btn {
    display: block;
  }
  .blogger .box .w30, .blogger .box .w40 {
    width: 100%;
  }
}

/********************************************
****               UNETE                ****
********************************************/
.unete_area .box .box-item .box-datos .dato {
  margin-bottom: 6px;
}

.unete_area .box .box-item .box-datos .dato .label {
  font-weight: 600;
  color: #0A4369;
}

/********************************************
****               IDEOLOGIA            ****
********************************************/
.ideologia {
  background-color: #f2f2f2;
}

.ideologia .ideologia-banner {
  background: url("../img/ideologia/img-1.jpg"), linear-gradient(160deg, #006cb5, #ff0000 75%);
  background-blend-mode: overlay;
  background-size: cover;
  min-height: 350px;
  background-position: bottom;
  background-attachment: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  margin-bottom: 50px;
}

.ideologia .ideologia-banner .box-text {
  width: 70%;
  max-width: 1350px;
}

.ideologia .ideologia-banner .box-text .title {
  font-size: 3rem;
  color: #ffffff;
  text-align: center;
  letter-spacing: 1px;
}

.ideologia .ideologia-content {
  width: 80%;
  margin: auto;
  margin-bottom: 50px;
}

.ideologia .ideologia-content .title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0A4369;
  text-align: center;
}

.ideologia .ideologia-content .parrafo {
  line-height: 2;
  text-align: justify;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #0A4369;
  font-weight: 500;
}

.ideologia .ideologia-content .parrafo i {
  font-size: 24px;
  line-height: 2;
  color: #ff0000;
}

.ideologia .ideologia-content .parrafo span {
  margin-left: 15px;
}

@media (max-width: 750px) {
  .ideologia .ideologia-content {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.veintiun-puntos {
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/********************************************
****               MODAL                ****
********************************************/
.modal {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.71);
  color: #ffffff;
  -webkit-animation: modal 3s 3s;
          animation: modal 3s 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 300;
}

.modal .closed-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 15px;
  font-size: 20px;
  color: #ffffff;
}

.modal .box-modal {
  position: relative;
  background-color: #000000;
}

.modal .box-modal .video {
  width: 100%;
  height: 500px;
  margin: auto;
}

.modal .box-modal .video iframe {
  width: 100%;
  height: 100%;
}

@-webkit-keyframes modal {
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes modal {
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (max-width: 650px) {
  .modal .box-modal {
    width: 100%;
  }
  .modal .box-modal .video {
    height: 400px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

/********************************************
****               LOGIN                ****
********************************************/
.login .box-imagen {
  min-height: 50vh;
}

.login .box-login {
  min-height: 50vh;
  background-color: #006cb5;
  color: #ffffff;
  padding: 20px;
}

.login .box-login .Box-form-login .titulo {
  margin-bottom: 20px;
}

.login .box-login .Box-form-login #form {
  -webkit-transition: 0.5s all linear;
  transition: 0.5s all linear;
}

.login .box-login .Box-form-login .input {
  border: 1px solid #0A4369;
  color: #006cb5;
  padding: 8px 20px;
  border-radius: 4px;
  margin: 10px 2px;
}

.login .box-login .Box-form-login .inputEmail {
  position: relative;
}

.login .box-login .Box-form-login .inputEmail #validaemail {
  font-style: italic;
}

.login .box-login .Box-form-login #form.invalido .inputEmail::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: url(../img/ico/cancel-black.png);
  background-size: cover;
  z-index: 10;
}

.login .box-login .Box-form-login #form.valido .inputEmail::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: url(../img/ico/check-black-circle.png);
  background-size: cover;
  z-index: 10;
}

.login .box-login .Box-form-login .inputBox {
  position: relative;
  height: 40px;
}

.login .box-login .Box-form-login .inputBox input {
  position: absolute;
  left: 0;
  top: 0;
}

.login .box-login .Box-form-login .inputBox input:placeholder {
  color: #0A4369;
}

.login .box-login .Box-form-login .inputBox #toggle {
  position: absolute;
  right: 14px;
  color: gray;
  cursor: pointer;
  font-size: 24px;
  top: 25%;
}

.login .box-login .Box-form-login .btn {
  color: #ffffff;
  background: #0A4369;
  border: 1px solid #0A4369;
  padding: 15px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin: 10px;
  -webkit-transition: .1s all ease-out;
  transition: .1s all ease-out;
  letter-spacing: 1px;
}

.login .box-login .Box-form-login .btn:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media screen and (max-width: 1020px) {
  .login .box-login .Box-form-login {
    width: 50%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media screen and (max-width: 640px) {
  .login .box-login .Box-form-login {
    width: 70%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media screen and (max-width: 480px) {
  .login {
    min-height: 50vh;
  }
  .login .box-login .Box-form-login {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .login .box-imagen {
    min-height: 250px;
  }
}

.alerta-exito {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.7);
  color: #006cb5;
  padding: 15px;
  margin: 16px 0;
}

.alerta-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.7);
  color: #ff0000;
  padding: 15px;
  margin: 16px 0;
}

.alerta-exito2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgba(0, 108, 181, 0.71);
  color: #006cb5;
  padding: 15px;
  margin: 16px 0;
}

.alerta-error2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: rgba(255, 0, 0, 0.71);
  color: #ff0000;
  padding: 15px;
  margin: 16px 0;
}

/************************************
***          ANIMATE           ***
*************************************/
/*
<div class="aniview" data-av-animation="slideInUp">
bounceIn - bounceOut 
fadeInLeftBig - fadeInRightBig
fadeInLeft - fadeInRight
bounceInLeft - bounceInRight
slideInDown - slideInUp
lightSpeedIn - lightSpeedOut
zoomIn
*/
/*# sourceMappingURL=logremosStyles.css.map */