/**************************************
***            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;
}

.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;
}

.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.mg-auto {
  margin: auto;
}

.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: #00182b;
}

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

.bold {
  font-weight: 700;
}

.hidden {
  display: none;
}

.mostrar {
  display: block;
}

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

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

.btn-azul {
  background-color: #00182b;
  border: 1px solid #00182b;
}

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

hr {
  height: 2px;
  border: none;
  background: #00182b;
  margin: 3px 0;
}

.btnScrollUp {
  position: fixed;
  z-index: 100;
  width: 50px;
  height: 50px;
  bottom: 10px;
  right: 10px;
  text-align: center;
  background-color: #990408;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  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;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btnScrollUp:hover {
  background-color: #ff0000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btnScrollUp .active {
  visibility: visible;
  opacity: 1;
}

.btnScrollUp.active {
  visibility: visible;
  opacity: 1;
}

.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: 100;
  color: #ffffff;
}

.btnWhatsapp .ico-whatsapp {
  background-color: #00182b;
  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: #00182b;
  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: #00182b;
}

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

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

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

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

/********************************************
****               HEADER                ****
*********************************************/
.header {
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  color: #990408;
  position: fixed;
  top: 0;
  z-index: 200;
  height: 100px;
  border-bottom: 1px solid #ccc;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.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.6s ease;
  transition: all 0.6s ease;
}

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

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

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

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

.header .navbar .nav-link {
  height: 100px;
  line-height: 100px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  padding: 0px 20px;
  background-color: transparent;
  color: inherit;
  text-transform: uppercase;
}

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

.header .navbar .nav-link.active {
  color: #ffffff;
  background-color: #990408;
}

@media (max-width: 950px) {
  .header .center {
    width: 100%;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  .header .content-header {
    padding-left: 20px;
  }
  .header .btn-menu {
    display: block;
    padding: 20px;
  }
  .header .navbar {
    width: 100%;
    height: 100vh;
    background-color: #f2f2f2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    left: -100%;
    top: 100px;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    opacity: 0;
    visibility: hidden;
  }
  .header .navbar .nav-link {
    width: 100%;
    display: block;
    padding: 0px 20px;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    border-bottom: 1px solid #990408;
  }
  .header .navbar .nav-link:last-child {
    border-bottom: none;
  }
  .header .navbar .nav-link:hover {
    color: #ffffff;
    background: #990408;
  }
  .header .active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
}

@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;
  }
}

.stick {
  background: rgba(255, 255, 255, 0.9);
}

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

.bg {
  margin-top: 100px;
  background: url("../img/estadio.jpg");
  background-color: rgba(0, 24, 43, 0.8);
  background-blend-mode: overlay;
  background-size: cover;
}

.banner {
  width: 100%;
  height: 450px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  position: relative;
}

.banner .item-banner {
  position: relative;
}

.banner .item-banner img {
  width: 100%;
  height: 450px;
}

.banner .item-banner .inner-banner {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 60px;
}

.banner .item-banner .inner-banner .title-banner {
  font-size: 1.8em;
  text-align: center;
  color: #990408;
}

.banner .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ffffff;
  font-size: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.banner .owl-nav .owl-prev {
  left: 20px;
  padding: 20px;
}

.banner .owl-nav .owl-next {
  right: 20px;
  padding: 20px;
}

@media (max-width: 550px) {
  .banner {
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    height: 350px;
  }
  .banner .item-banner img {
    height: 350px;
  }
  .banner .item-banner .inner-banner .btn {
    width: auto;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s 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: #003e68;
}

.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);
  background-color: #ffffff;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s 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: #00182b;
  margin-bottom: 15px;
}

.noticias .box-noticias .articulos .texto-blog p {
  line-height: 1.4;
  color: #00182b;
  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: #00182b;
  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.6s ease;
  transition: all 0.6s ease;
}

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

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

.noticias .postredes .titulo {
  padding: 20px 0;
  font-weight: 500;
  color: #ffffff;
  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%;
  }
}

/********************************************
****               NOSOTROS                ****
*********************************************/
.nosotros {
  padding: 30px 0 70px;
  position: relative;
}

.nosotros .box-titulos {
  background-color: #ffb000;
  height: 80px;
}

.nosotros .box-titulos .titulo {
  width: 90%;
  margin: auto;
  color: #990408;
  letter-spacing: 1px;
  line-height: 80px;
}

.nosotros .center {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 40px;
}

.nosotros .content-text .parrafo {
  line-height: 1.5;
  margin-bottom: 24px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: justify;
  color: #4d4d4d;
}

.nosotros .content-text .parrafo i {
  line-height: 1.5;
  color: #000000;
  padding-top: 2px;
  font-size: 20px;
}

.nosotros .content-text .parrafo span {
  margin-left: 10px;
}

.nosotros .content-text .subtitulo {
  margin-bottom: 24px;
  font-size: 20px;
  color: #fc751a;
}

.nosotros .content-text .list-2 {
  padding-left: 20px;
}

.nosotros .content-list .subtitulo {
  margin-bottom: 24px;
  font-size: 20px;
  color: #fc751a;
  height: 60px;
}

.nosotros .content-list .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
}

.nosotros .content-list .list li {
  width: calc(20% - 20px);
  margin: 10px;
  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;
}

.nosotros .content-list .list li i {
  line-height: 1.5;
  color: #ff0000;
  font-size: 4rem;
}

.nosotros .content-list .list li:first-child i {
  color: #fc751a;
}

.nosotros .content-list .list li .parrafo {
  line-height: 1.5;
  margin-bottom: 24px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: justify;
  color: #4d4d4d;
}

.nosotros .content-list .list li img {
  width: 80px;
  height: auto;
  margin: 15px auto;
}

.nosotros .box-image {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

.nosotros .box-image img {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.nosotros .box-image img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 950px) {
  .nosotros .content-list .list li {
    width: 100%;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
}

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

/********************************************
****               PROYECTOS            ****
*********************************************/
.proyectos {
  padding: 30px 0 70px;
  position: relative;
}

.proyectos .box-titulos {
  background-color: #ffb000;
  height: 80px;
}

.proyectos .box-titulos .titulo {
  width: 90%;
  margin: auto;
  color: #990408;
  letter-spacing: 1px;
  line-height: 80px;
}

.proyectos .center {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 40px;
  border-radius: 0 0 10px 10px;
}

.proyectos .content-text .parrafo {
  line-height: 1.5;
  margin-bottom: 24px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: justify;
}

.proyectos .content-text .parrafo i {
  line-height: 1.5;
  color: #000000;
  padding-top: 2px;
}

.proyectos .content-text .parrafo span {
  margin-left: 10px;
  color: #4d4d4d;
}

.proyectos .content-text .subtitulo {
  margin-bottom: 24px;
  font-size: 20px;
  color: #fc751a;
}

.proyectos .content-text .list-2 {
  padding-left: 20px;
}

.proyectos .proyectos-proposito {
  padding: 50px 0;
}

.proyectos .proyectos-proposito .content-text .parrafo {
  line-height: 1.5;
  margin-bottom: 24px;
  font-size: 18px;
  text-align: justify;
}

.proyectos .proyectos-proposito .content-text .content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin: auto;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.proyectos .proyectos-proposito .content-text .content-list .list li {
  line-height: 1.5;
  margin-bottom: 24px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.proyectos .proyectos-proposito .content-text .content-list .list li i {
  line-height: 1.5;
  color: #990408;
  padding-top: 2px;
}

.proyectos .proyectos-proposito .content-text .content-list .list li span {
  margin-left: 10px;
  color: #4d4d4d;
}

.proyectos .proyectos-proposito .content-text .content-list img {
  padding-left: 50px;
  height: 200px;
  width: auto;
}

@media (max-width: 850px) {
  .proyectos .proyectos-proposito .content-text .content-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .proyectos .proyectos-proposito .content-text .content-list img {
    padding-left: 30px;
  }
}

@media (max-width: 650px) {
  .proyectos .proyectos-proposito .content-text .content-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .proyectos .proyectos-proposito .content-text .content-list .list {
    width: 100%;
  }
  .proyectos .proyectos-proposito .content-text .content-list img {
    width: 100%;
    height: auto;
    padding-left: 0;
  }
}

.proyectos .proyectos-objetivos .inner-proyectos-objetivos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70%;
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.proyectos .proyectos-objetivos .inner-proyectos-objetivos img {
  width: 350px;
}

.proyectos .proyectos-objetivos .inner-proyectos-objetivos .content-list {
  padding-left: 30px;
}

.proyectos .proyectos-objetivos .inner-proyectos-objetivos .content-list .list li {
  width: 350px;
  border: 1px solid rgba(181, 19, 18, 0.71);
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  margin-left: 90px;
}

.proyectos .proyectos-objetivos .inner-proyectos-objetivos .content-list .list li:first-child {
  margin-left: 0px;
}

.proyectos .proyectos-objetivos .inner-proyectos-objetivos .content-list .list li:last-child {
  margin-left: 0px;
}

.proyectos .proyectos-objetivos .inner-proyectos-objetivos .content-list .list li .title {
  color: #990408;
  font-size: 20px;
  margin-bottom: 16px;
}

.proyectos .proyectos-objetivos .inner-proyectos-objetivos .content-list .list li .parrafo {
  text-align: justify;
}

@media (max-width: 850px) {
  .proyectos .proyectos-objetivos .inner-proyectos-objetivos {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  .proyectos .proyectos-objetivos .inner-proyectos-objetivos .content-list {
    width: 100%;
    padding-left: 0;
  }
  .proyectos .proyectos-objetivos .inner-proyectos-objetivos .content-list .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  .proyectos .proyectos-objetivos .inner-proyectos-objetivos .content-list .list li {
    margin-left: 0;
    width: calc(50% - 10px);
    margin: 5px;
  }
}

@media (max-width: 600px) {
  .proyectos .proyectos-objetivos .inner-proyectos-objetivos .content-list .list li {
    width: 100%;
    margin: 5px;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
}

.proyectos .galery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

.proyectos .galery .image {
  width: calc(100% / 6);
  overflow: hidden;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  cursor: pointer;
}

.proyectos .galery .image img {
  width: 100%;
}

.proyectos .galery .image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

@media (max-width: 1100px) {
  .proyectos .galery .image {
    width: calc(100% / 3);
  }
}

@media (max-width: 800px) {
  .proyectos .galery .image {
    width: calc(100% / 2);
  }
}

@media (max-width: 550px) {
  .proyectos .galery .image {
    width: 100%;
    padding: 6px;
  }
}

.proyectos .preview-box {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
          transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 700px;
  width: 100%;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.proyectos .preview-box.show {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.proyectos .preview-box .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 15px 12px 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.proyectos .preview-box .details .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 400;
}

.proyectos .details .title p {
  margin: 0 5px;
}

.proyectos .details .title p.current-img {
  font-weight: 500;
}

.proyectos .details .icon {
  color: #007bff;
  font-size: 20px;
  cursor: pointer;
}

.proyectos .preview-box .image-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}

.proyectos .image-box .slide {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  height: 50px;
  width: 60px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
}

.proyectos .slide.prev {
  left: 0px;
}

.proyectos .slide.next {
  right: 0px;
}

.proyectos .image-box img {
  width: 100%;
  border-radius: 0 0 3px 3px;
}

.proyectos .shadow {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0, 0, 0, 0.45);
}

/********************************************
****               UNETE                ****
*********************************************/
.unete {
  padding: 30px 0 70px;
  position: relative;
}

.unete .box-titulos {
  background-color: #ffb000;
  padding: 30px 40px;
}

.unete .box-titulos .titulo {
  color: #990408;
  letter-spacing: 1px;
  text-align: center;
}

.unete .center {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 40px;
  border-radius: 0 0 10px 10px;
}

.unete .box-formulario {
  margin-bottom: 50px;
}

.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);
  background-color: #f2f2f2;
}

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

.unete .box-formulario .box-checkbox {
  width: calc(50% - 20px);
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

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

.unete .box-formulario .btn {
  background-color: #990408;
  width: 300px;
  border: 1px solid #990408;
  margin-top: 15px;
  font-size: 20px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.unete .box-formulario .btn:hover {
  background-color: #ff0000;
  color: #ffffff;
  border: 1px solid #ff0000;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.unete .box-formulario .btn:hover i {
  color: #990408;
  margin-left: 10px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.unete .content-text .subtitulo {
  margin-bottom: 24px;
  font-size: 20px;
  color: #fc751a;
}

.unete .content-text .parrafo {
  line-height: 1.5;
  margin-bottom: 24px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: justify;
}

.unete .content-text .parrafo i {
  line-height: 1.5;
  color: #000000;
  padding-top: 2px;
}

.unete .content-text .parrafo span {
  margin-left: 10px;
  color: #4d4d4d;
}

.unete .content-text .parrafo .btnTop {
  margin: 0 6px;
  font-weight: 900;
  cursor: pointer;
}

.unete .content-text .list {
  padding-left: 30px;
  margin-bottom: 24px;
}

.unete .content-text .list .item {
  margin-bottom: 10px;
}

@media screen and (max-width: 800px) {
  .unete {
    padding: 60px 0px;
  }
  .unete .box-formulario .w50, .unete .box-formulario .box-checkbox, .unete .box-formulario .btn {
    width: 100%;
  }
  .unete .content-text .parrafo:last-child {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/********************************************
****               EQUIPO                ****
*********************************************/
.equipo {
  padding: 30px 0 70px;
  position: relative;
}

.equipo .box-titulos {
  color: #fc751a;
  background-color: #ffb000;
  height: 80px;
  margin-bottom: 50px;
}

.equipo .box-titulos .titulo {
  width: 90%;
  margin: auto;
  color: #990408;
  letter-spacing: 1px;
  line-height: 80px;
}

.equipo .content-equipo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
  background: linear-gradient(25deg, #ffb000, #990408 75%);
  padding: 30px 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  width: 900px;
  border-radius: 10px;
}

.equipo .content-equipo .box-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 12px solid #ffffff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1px;
  width: 230px;
  background-color: #e6e6e6;
}

.equipo .content-equipo .box-image img {
  width: 100%;
  padding-top: 20px;
}

.equipo .content-equipo .list {
  width: 775px;
  padding-left: 40px;
  color: #ffffff;
  font-weight: 400;
}

.equipo .content-equipo .list .title {
  margin-bottom: 16px;
}

.equipo .content-equipo .list li {
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: justify;
}

.equipo .content-equipo .list li i {
  line-height: 1.5;
  color: #990408;
  padding-top: 2px;
}

.equipo .content-equipo .list li span {
  margin-left: 10px;
}

.equipo .content-equipo .list li:hover {
  padding-left: 10;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

@media (max-width: 920px) {
  .equipo .content-equipo {
    width: 90%;
    margin: auto;
    margin-bottom: 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .equipo .content-equipo .box-image {
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    margin-bottom: 16px;
  }
  .equipo .content-equipo .list {
    width: 100%;
    padding-left: 0px;
  }
}

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

.footer .box-footer {
  line-height: 2;
}

.footer .box-footer .w50 {
  padding: 20px;
  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;
}

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

.footer .box-footer .w50 a {
  margin-bottom: 10px;
}

.footer .box-footer .img-footer {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: auto;
}

.footer .box-footer i {
  font-size: 24px;
  margin-right: 10px;
}

.footer .box-footer .w100 {
  padding: 20px;
  text-align: center;
}

@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;
  }
}

/********************************************
****            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%;
  }
}

/*****************************************
****            Dashbord           ****
*****************************************/
.dashboard .navbar-top {
  padding: 20px 40px;
  color: #ffffff;
  background-color: #000000;
  border-bottom: 1.5px solid #ffffff;
}

.dashboard .navbar-top .titulo {
  color: #990408;
  font-size: 2em;
}

.dashboard .navbar-top .username {
  color: inherit;
  font-size: 1.4em;
}

.dashboard .navbar-top .username i {
  margin-right: 6px;
  font-size: 20px;
}

.dashboard .content_dashboard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dashboard .content_dashboard .aside {
  width: 300px;
  min-height: 90vh;
  background-color: #000000;
  color: #ffffff;
  position: relative;
}

.dashboard .content_dashboard .aside .btn-aside {
  width: 100%;
  display: block;
  padding: 0px 20px;
  height: 60px;
  line-height: 60px;
  position: relative;
  background-color: #990408;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  outline: none;
}

.dashboard .content_dashboard .aside .btn-aside:hover {
  background-color: transparent;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.dashboard .content_dashboard .aside .btn-aside.active {
  background-color: transparent;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.dashboard .content_dashboard .aside .btn-aside.active::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 16px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 10px solid #000000;
  border-bottom: 10px solid transparent;
}

.dashboard .content_dashboard .inner-dashboard {
  width: calc(100% - 300px);
  background-color: #b0b0b0;
}

.dashboard .content_dashboard .inner-dashboard .inner-dashboard-top {
  background-color: #ffffff;
  margin-bottom: 30px;
  color: #990408;
}

.dashboard .content_dashboard .inner-dashboard .inner-dashboard-top .titulo-top {
  letter-spacing: 1px;
}

.dashboard .content_dashboard .inner-dashboard .inner-dashboard-top .inner-dashboard-botones {
  padding: 0 50px;
  margin-bottom: 20px;
}

.dashboard .content_dashboard .inner-dashboard .inner-dashboard-top .inner-dashboard-botones .btn {
  margin: 6px;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard {
  width: 90%;
  margin: auto;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px 40px;
  margin-bottom: 50px;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-botones {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-botones .title {
  color: #990408;
  font-size: 20px;
  font-weight: 900;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-botones .btn {
  margin: 10px 0;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-item {
  margin: 20px auto;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  width: 100%;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-item .box-item {
  border-top: 3px solid #00182b;
  padding-left: 3px;
  margin-bottom: 10px;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-item .box-item .borderRight {
  border-right: 1px dashed #990408;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-item .box-item .box-tabla .th-header {
  background-color: red;
  border-bottom: 2px solid #fc751a;
  padding: 10px;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-item .box-item .box-tabla .dato .label {
  color: #000000;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-item .box-item .titulo_area {
  color: #00182b;
  font-weight: 600;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-item .box-item .parrafo_idea {
  color: #4d4d4d;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-item .box-item .correo {
  color: #000000;
  font-weight: 600;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-item .box-item .estado {
  color: #000000;
  font-weight: 600;
  margin-bottom: 20px;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-item iframe {
  width: 100%;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .card-item .sinpost {
  font-weight: 600;
  font-size: 16px;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard hr {
  background-color: #990408;
  margin-bottom: 30px;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .box-formulario {
  padding: 20px 0;
  width: 100%;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .box-formulario .box-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .box-formulario .box-input label {
  font-weight: 800;
  margin-right: 10px;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .box-formulario .box-input input {
  height: 50px;
  padding-left: 20px;
  outline: none;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .box-formulario .box-input input[type="text"] {
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .box2 {
  -webkit-box-shadow: 2px 0px 6px rgba(0, 24, 43, 0.8), inset 0px 1px 2px rgba(0, 24, 43, 0.8);
          box-shadow: 2px 0px 6px rgba(0, 24, 43, 0.8), inset 0px 1px 2px rgba(0, 24, 43, 0.8);
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .box2 form {
  border-collapse: collapse;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .box2 form input[type="text"], .dashboard .content_dashboard .inner-dashboard .card-dashboard .box2 form input[type="email"], .dashboard .content_dashboard .inner-dashboard .card-dashboard .box2 form input[type="url"], .dashboard .content_dashboard .inner-dashboard .card-dashboard .box2 form input[type="file"],
.dashboard .content_dashboard .inner-dashboard .card-dashboard .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;
}

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

.dashboard .content_dashboard .inner-dashboard .card-dashboard .box2 form label {
  color: #00182b;
  letter-spacing: 0.5px;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .box2 form hr {
  background-color: #00182b;
  height: 2px;
  margin: 10px 0;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .box2 form span {
  color: #4d4d4d;
}

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

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

.dashboard .content_dashboard .inner-dashboard .card-dashboard .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;
}

.dashboard .content_dashboard .inner-dashboard .card-dashboard .box2 .box-input label {
  margin-right: 10px;
}

@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%;
  }
}

/*****************************************
****            Ver Blog           ****
*****************************************/
.verblog {
  padding: 30px 0;
  background-color: #b0b0b0;
}

.verblog .content-blog {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
}

.verblog .content-blog .titulo {
  margin-bottom: 40px;
  font-style: italic;
  font-weight: 700;
}

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

.verblog .content-blog .fecha {
  color: #4d4d4d;
  margin-bottom: 20px;
  display: block;
  text-align: right;
  font-size: 14px;
}

.verblog .content-blog p {
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

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

.verblog .content-blog .btn {
  background-color: #990408;
  border: 1px solid #990408;
}

.verblog .content-blog .btn .ico {
  display: none;
}

.verblog .content-blog .btn:hover {
  background-color: transparent;
  color: #4d4d4d;
}

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

@media (max-width: 700px) {
  .verblog .w60 {
    width: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
}

/********************************************
****               MODAL                ****
********************************************/
.modal {
  display: none;
  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 {}

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

/********************************************
****               LOGIN                ****
********************************************/
.login {
  min-height: 100vh;
  background: linear-gradient(25deg, #ffb000, #990408);
  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;
}

.login .content-login {
  width: 800px;
  height: 420px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.login .content-login .box-imagen {
  width: 500px;
}

.login .content-login .box-imagen img {
  -o-object-fit: cover;
     object-fit: cover;
}

.login .content-login .box-login {
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  width: 300px;
}

.login .content-login .box-login .title {
  margin-bottom: 20px;
}

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

.login .content-login .box-login .form.invalido .inputEmail .input {
  border: 1px solid #ff0000;
}

.login .content-login .box-login .form.valido .inputEmail .input {
  border: 1px solid #45590F;
}

.login .content-login .box-login .box-input {
  position: relative;
  color: lightgrey;
  height: 50px;
  margin-bottom: 20px;
}

.login .content-login .box-login .box-input .input {
  width: 100%;
  height: 100%;
  border: 1px solid lightgray;
  border-bottom-width: 2px;
  font-size: 17px;
  padding-left: 40px;
  border-radius: 5px;
  outline: none;
}

.login .content-login .box-login .box-input .input::-webkit-input-placeholder {
  color: lightgrey;
}

.login .content-login .box-login .box-input .input:-ms-input-placeholder {
  color: lightgrey;
}

.login .content-login .box-login .box-input .input::-ms-input-placeholder {
  color: lightgrey;
}

.login .content-login .box-login .box-input .input::placeholder {
  color: lightgrey;
}

.login .content-login .box-login .box-input .input:focus {
  border-color: #b0b0b0;
}

.login .content-login .box-login .box-input .icon {
  position: absolute;
  top: 0;
  left: 10px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.login .content-login .box-login .box-input .toggle {
  position: absolute;
  top: 0;
  right: 10px;
  height: 100%;
  color: #b0b0b0;
  cursor: pointer;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}

.login .content-login .box-login .box-input .active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login .content-login .box-login .box-input .none {
  display: none;
}

.login .content-login .box-login .inputEmail {
  margin-bottom: 34px;
}

.login .content-login .box-login .inputEmail .erroremail {
  font-style: italic;
  width: 100%;
  display: block;
  text-align: center;
}

.login .content-login .box-login .inputEmail #span1 {
  color: #45590F;
}

.login .content-login .box-login .inputEmail #span2 {
  color: #ff0000;
}

.login .content-login .box-login .box-buttons {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.login .content-login .box-login .box-buttons .btn {
  margin: 0 10px;
  width: 100%;
  margin-bottom: 10px;
  letter-spacing: 1px;
  height: 50px;
  text-align: center;
}

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

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

@media screen and (max-width: 480px) {
  .login {
    min-height: 50vh;
  }
  .login .box-login .Box-form-login {
    width: 100%;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s 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: #00182b;
  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: 10px;
  margin: 10px 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: #00182b;
  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=expertiaFcStyles.css.map */