/* 
CSS styles
*/
/* GENERAL STYLES */
/* Author: KV Mantilla, MIP Salas, M Mercado */
:root {
  --header-bg: #302A39;
  --submenu-bg: #383542;
  --text-white: rgb(255, 255, 255, 0.8);
  --text-menu-size: 0.85rem;
  --blue-light: #4586ff;
  --blue-dark: #5283dE;
  --blue-text: #5283dE;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #f3f3f3;
}
*{
  padding: 0;
  margin: 0;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box ;  
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
}
ul{
  list-style: none;
}

a{
  text-decoration: none;
}
.ahover:hover{
  color:var(--blue-light);
}

header{
  position: sticky;
  top: 0px;
  background-color: var(--header-bg);
  width: 100%;
  z-index: 1000;
}
body {
  overflow-x: hidden;
}

/* HEADER STYLES */
/* Author: KV Mantilla, MIP Salas */
header .header-container{
  max-width: 65rem;
  padding: 0 1rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
header>.header-container:first-child {
  /* FIX */
  height: 52px;
  align-items: center;
  overflow-y: hidden;
  transition: all 0.55s;
  padding: 0;
  padding-top: 6px;
  padding-bottom: 6px;
  /* FIXEND */
}
header .header-container > a {
  flex: 1;
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.header-container > a > p, .header-container > div > p {
  margin-bottom: 0;

}
.social-links {
  display: flex;
  color: var(--text-white);
  font-size: 0.8em;
}
.social-links > p {
  display: flex;
  align-items: center;
}
.social-links > p > span {
  margin-left: 6px;
  font-size: 1.3em;
}
.social-links > p > span > a {
  margin: 0 2px;
  color: var(--text-white);
}
.logo-container{
  display: flex;
  align-items: center;
}
.logo-container img {
  width: auto;
  height: 60px;
  transition: height .55s;
}
#prefas-link {
  margin-left: 20px;
  padding: 0.6em 1em;
  border-radius: 25px;
  background-color: #4056de;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
}
#clases-virtuales-link {
  margin-left: 20px;
  padding: 0.6em 1em;
  border-radius: 25px;
  background-color: #cc0023;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
}
#eventos_head {
  margin-left: 20px;
  padding: 0.6em 1em;
  border-radius: 25px;
  background-color: #0088CC;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
}
#rac-link {
  margin-left: 10px;
  padding: 0.6em 1em;
  border-radius: 25px;
  background-color: red;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.nav-btn{
  flex: 3;
  display: flex;
}
.nav-links{
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.logo{
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 3rem;
}
.nav-links > ul{
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.nav-link{
  position: relative;
  padding: 0;
}
.nav-link > a{
  color: #fff;
  padding: 0.8rem 0.6rem;
  font-size: var(--text-menu-size);
  display: flex;
  align-items: center;
  transition: .5s;
  border-radius: 6px;
}
.nav-link:hover > a{
  background-color: var(--submenu-bg);
}
.dropdown{
  position: absolute;
  top: 100%;
  left: 0;
  width: 13rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .5s;
}
.dropdown ul{
  position: relative;
}
.dropdown-link > a{
  display: flex;
  background-color: var(--submenu-bg);
  color: white;
  padding: .5rem 1rem;
  font-size: .9rem;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}
.nav-link > .dropdown > ul > .dropdown-link:first-of-type {
  margin-top: 8px;
}
.dropdown-link:first-of-type, .dropdown-link:first-of-type > a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.dropdown-link:last-of-type, .dropdown-link:last-of-type > a {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.dropdown-link:hover > a{
  background-color: var(--header-bg);
  color: var(--blue-light);
}

.dropdown-link i{
  transform: rotate(-90deg);
}
.arrow{
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  top: -6px;
  left: 32px;
  background-color: var(--submenu-bg);
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
  z-index: -1;
}
.dropdown-link:first-child:hover ~ .arrow{
  background-color: var(--header-bg);
}
.dropdown-link{
  position: relative;
}
.dropdown.second{
  top: 0;
  left: 100%;
  padding-left: .6rem;
  cursor: pointer;
  transform: translateX(10px);
}
.dropdown.second .arrow{
  top: 10px;
  left: -5.5px;
}
.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}
.hamburger-menu-container{
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}
.hamburger-menu{
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hamburger-menu div{
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  z-index: 1001;
  transition: .5s;
}
.hamburger-menu div:before,
.hamburger-menu div:after{
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #fff;
  border-radius: 3px;
  transition: .5s;
}
.hamburger-menu div:before{
  transform: translateY(-7px);
}
.hamburger-menu div:after{
  transform: translateY(7px);
}
#check{
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}
#check:checked ~ .hamburger-menu-container .hamburger-menu div{
  background-color: transparent;
}
#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
  transform: translateY(0) rotate(-45deg);
}
#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
  transform: translateY(0) rotate(45deg);
}
.carousel-container {
  margin-bottom: 15px;
  position: relative;
}
.carousel-item > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.carousel-shadder {
  z-index: 15;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0,0,0,0.2), rgba(0,0,0,0));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.carousel-content {
  display: flex;
  flex-direction: column;
  margin-left: 15%;
  color: white;
  align-items: flex-start;
}
.carousel-content p {
  font-size: 20px;
  margin-bottom: 20px;
  opacity: 0.8;
}
.carousel-content h5 {
  font-size: 50px;
  margin-bottom: 40px;
}
.carousel-content a {
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 400;
  border-radius: 30px;
  background: var(--blue-light);
  display: inline-block;
  color: white;
}
.carousel-item {
  height: 70vh;
  /*height: 620px;*/
}
@media only screen and (max-width: 920px){
  .carousel-item {
    height: 400px;
  }
  .carousel-shadder {
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0,0,0,0.4), rgba(0,0,0,0));
  }
  .carousel-content {
    align-items: center;
    margin-bottom: 23%;
    margin-left: 0;
  }
  .carousel-content p {
    font-size: 17px;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;|
  }
  .carousel-content h5 {
    text-align: center;
    font-size: 30px;
    padding: 30px;
    margin-bottom: 20px;
  }
  .carousel-content a {
    padding: 8px 16px;
    font-size: 16px;
  }
}
@keyframes animation{
  from{
      opacity: 0;
      transform: translateY(15px);
  }
  to{
      opacity: 1;
      transform: translateY(0px);
  }
}
/* HEADER RESPONSIVE STYLES */
/* Author: Kevin Vargas */
@media only screen and (max-width: 920px){
  header .header-container:first-child, .arrow {
    display: none;
  }
  .logo-container img {
    width: 40px;
    height: 40px;
  }
  .hamburger-menu-container{
      display: flex;
  }

  #check{
      display: block;
  }

  .nav-btn{
      position: fixed;
      height: calc(100vh - 48px);
      top: 48px;
      left: 0;
      width: 100%;
      background-color: var(--header-bg);
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      overflow-x: hidden;
      overflow-y: scroll;
      transform: translateX(100%);
      transition: .65s;
  }

  #check:checked ~ .nav-btn{
      transform: translateX(0);
  }

  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn{
      animation: animation .5s ease forwards var(--i);
  }

  .nav-links{
      flex: initial;
      width: 100%;
  }

  .nav-links > ul{
      flex-direction: column;
      width: 100%;
  }

  .nav-link{
      width: 100%;
      opacity: 0;
  }

  .nav-link > a{
      line-height: 1;
      padding: 1rem 2rem;
      border-radius: 0;
  }

  .nav-link:hover > a{
      background-color: var(--submenu-bg);
  }

  .nav-link > .dropdown > ul > .dropdown-link:first-of-type {
    margin-top: 0;
  }

  .dropdown, .dropdown.second{
      position: initial;
      top: initial;
      left: initial;
      transform: initial;
      opacity: 1;
      /* pointer-events: auto; */
      width: 100%;
      padding: 0;
      padding-left: 1rem;
      background-color: var(--submenu-bg);
      display: none;
  }
  
  .nav-link:hover > .dropdown,
  .dropdown-link:hover > .dropdown{
      display: block;
  }

  .nav-link:hover > a > i,
  .dropdown-link:hover > a > svg{
      transform: rotate(90deg);
  }

  .dropdown-link > a{
      background-color: transparent;
      color: #fff;
      padding: 0.8rem 2rem;
      line-height: 1;
      border-radius: 5px;
  }

  .dropdown.second .dropdown-link > a{
      padding: 0.8rem 2rem 0.8rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a{
      padding: 0.8rem 2rem 0.8rem 4rem;
  }

  .dropdown-link:hover > a{
      font-weight: bold;
      background-color: var(--submenu-bg);
  }

  .dropdown svg{
      font-size: 1rem;
      transition: .7s;
  }

  .log-sign{
      flex: initial;
      width: 100%;
      padding: 1.5rem 1.9rem;
      justify-content: flex-start;
      opacity: 0;
      transform: translateY(15px);
  }
}
/* FEED ITEMS */

.feed-item {
  width: 100%;
  height: 164px;
  border-radius: 10px;
  display: flex;
  padding: 5px;
  color: #444;
  background: #fff;
  transition: all 0.5s !important;
  cursor: pointer;
  box-shadow: 5px 8px 10px #474747;
  border-radius: 10px;
  margin-bottom: 25px;
}
.feed-item-title{
  font-size: 20px;
}
.feed-item:hover {
  background: white;
  box-shadow: 3px 3px 9px #888;
}
.feed-img-cont {
  flex: 3;
  position: relative;
}
.feed-img-cont img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  border-radius: 10px;
}
.feed-img-cont p {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--blue-text);
  color: white;
  border-radius: 10px;
  padding: 2px 10px;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  font-size: 15px;
  text-transform: uppercase;
}
.feed-content-cont {
  flex: 5;
  margin-left: 18px;
  display: flex;
  padding-top: 5px;
  flex-direction: column;
  align-items: flex-start;
}
.feed-content-cont .date {
  font-size: 16px;
  color: var(--blue-text);
}
.feed-content-cont .date span:first-child {
  font-size: 30px;
  font-weight: 400;
}
.feed-content-cont .date {
  border-bottom: 1.8px solid var(--blue-text);
  margin-bottom: 16px;
}
.feed-content-cont .title {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 5px;
  color: black;
}
.feed-content-cont .content {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 5px;
}
/*FEED ITEMS EVENTOS*/
.feed-item-e {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  display: flex;
  padding: 5px;
  color: #444;
  background: #fff;
  transition: all 0.5s !important;
  cursor: pointer;
  box-shadow: 5px 8px 10px #474747;
  border-radius: 10px;
  margin-bottom: 25px;
}
.titulo-e{
  font-size: 1.25rem;
}
.content-e {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 5px;
  margin-right: 21px;
  display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.feed-img-cont-e {
  flex: 3;
  position: relative;
}
.feed-img-cont-e img {
  width: 100%;
  height: 190px;
  border-radius: 10px;
}

/* Feed Items Responsive*/
@media only screen and (max-width: 991px){
  .feed-item-e {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    display: flex;
    padding: 5px;
    color: #444;
    background: #fff;
    transition: all 0.5s !important;
    cursor: pointer;
    box-shadow: 5px 8px 10px #474747;
    border-radius: 10px;
    margin-bottom: 25px;
  }
  .titulo-e{
    font-size: 20px;
  }
  .content-e {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 5px;
    margin-right: 21px;
    display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  .feed-img-cont-e {
    flex: 3;
    position: relative;
  }
  .feed-img-cont-e img {
    width: 100%;
    height: 190px;
    border-radius: 10px;
  }

}
@media only screen and (max-width: 576px){
  .feed-item-e {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    display: flex;
    padding: 5px;
    color: #444;
    background: #fff;
    transition: all 0.5s !important;
    cursor: pointer;
    box-shadow: 5px 8px 10px #474747;
    border-radius: 10px;
    margin-bottom: 25px;
  }
  .titulo-e{
    font-size: 18px;
    margin-right: 21px;
  }
  .content-e {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 5px;
    margin-right: 21px;
    display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  .feed-img-cont-e {
    flex: 3;
    position: relative;
  }
  .feed-img-cont-e img {
    width: 100%;
    height: 170px;
    border-radius: 10px;
  }

}
@media only screen and (max-width: 305px){
  .feed-item-e {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    display: flex;
    padding: 5px;
    color: #444;
    background: #fff;
    transition: all 0.5s !important;
    cursor: pointer;
    box-shadow: 5px 8px 10px #474747;
    border-radius: 10px;
    margin-bottom: 25px;
  }
  .titulo-e{
    font-size: 15px;
    margin-right: 21px;
  }
  .content-e {
    font-size: 11px;
    line-height: 19px;
    margin-bottom: 5px;
    margin-right: 21px;
    display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  .feed-img-cont-e {
    flex: 3;
    position: relative;
  }
  .feed-img-cont-e img {
    width: 100%;
    height: 170px;
    border-radius: 10px;
  }

}


/* FEED ITEMS RESPONSIVE */
@media only screen and (max-width: 1199px) {

  .feed-img-cont {
    overflow-y: hidden;
    max-height: 200px;
  }
  .feed-item-title{
    font-size: 16px;
  }
  .feed-content-cont .content {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 5px;
  }
  .feed-img-cont img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .feed-img-cont p {
    font-size: 17px;
  }
  .feed-content-cont {
    margin-left: 0;
    padding-top: 8px;
    padding-left: 10px;
  }
  .feed-content-cont .date {
    font-size: 12px;
  }
  .feed-content-cont .date span:first-child {
    font-size: 28px;
  }
  .feed-content-cont .date {
    margin-bottom: 12px;
  }
  .feed-content-cont .title {
    font-size: 22px;
  }
}
/* PERSON CARD */
.person-card {
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  width: 100%;
  display: flex;
  padding: 18px;
  color: #444;
  margin-bottom: 14px;
  margin-top: 14px;
}
.person-img-cont {
  flex: 2;
  display: flex;
  align-items: center;
}
.person-img-cont img {
  width: 100%;
  border-radius: 10px;
}
.person-data-cont {
  flex: 7;
  margin-left: 18px;
  display: flex;
  flex-direction: column;
}
.person-data-cont .title {
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--blue-text);
}
.person-data-cont .subtitle, .person-data-cont .date {
  font-size: 18px;
  font-style: oblique;
  font-weight: 400;
  color: #444;
  margin-bottom: 0;
}
.person-data-cont .date {
  margin-bottom: 10px;
}
.person-data-cont .message {
  font-style: 16px;
  flex: 1;
  margin: 0;
}
.icons-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 12px;
}
.icons-cont a {
  display: flex;
  align-items: center;
  color: white;
  margin-left: 10px;
  background-color: #383542;
  border-radius: 13px;
  padding: 4px 8px;
}
.icons-cont a svg {
  margin-right: 8px;
}
/* PERSON CARD RESPONSIVE */
@media only screen and (max-width: 992px) {
  .icons-cont {
    padding-top: 8px;
  }
  .icons-cont span {
    display: none;
  }
  .icons-cont a {
    padding: 8px;
    font-size: 15px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    justify-content: center;
  }
  .icons-cont a svg {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .person-card {
    padding: 0;
    flex-direction: column;
  }
  .person-img-cont img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .person-data-cont {
    margin-left: 0;
    padding: 12px 16px;
  }
  .person-data-cont .title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 8px;
  }
  .person-data-cont .subtitle {
    font-size: 14px;
    text-align: center;
  }
  .person-data-cont .date {
    font-size: 14px;
    text-align: center;
  }
  .person-data-cont .message {
    text-align: justify;
  }
  .icons-cont {
    justify-content: space-evenly;
  }
}
/* SEARCH INPUT */
.search-cont {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 30px;
  color: #444;
  background: white;
  font-size: 22px;
  margin-bottom: 18px;
}
.search-cont .search {
  flex: 1;
  border: none;
  margin-left: 15px;
  outline: none;
}
/* TRAMITES */
.tramite-img {
  display: flex;
  justify-content: center;
  width: 100%;
}
.tramite-img img {
  width: 100%;
  max-width: 320px;
}
.tramite {
  width: 100%;
  background: white;
  padding: 8px 15px;
  border-radius: 2px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
  margin-top: 18px;
  margin-bottom: 0;
}
.tramite > p {
  font-size: 26px;
  color: var(--blue-text);
  margin-bottom: 0;
  display: flex;
}
.tramite > p > span:first-child {
  flex: 1;
}
.tramite-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 16px;
  color: #555;
}
.tramite-content a {
  padding: 6px 10px;
  background-color: var(--blue-light);
  color: white;
  margin-top: 12px;
  margin-bottom: 12px;
}
.tramite-content ol, .tramite-content ul {
  margin-left: 18px;
}
/* DOCUMENTOS */
.documento-item {
  width: 100%;
  border-radius: 2px;
  margin-top: 18px;
  margin-bottom: 0;
  display: flex;
  transition: all 0.5s;
}
.documento-item:hover {
  background: white;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
}
.documento-item p {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4px 6px;
  margin-bottom: 0;
}
.documento-item p span:last-child {
  font-style: italic;
  color: #888;
}
.documento-item a {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  padding: 6px 10px;
  background-color: var(--blue-light);
  color: white;
}
.documento-item a svg{
  margin-left: 8px;
}

/* TABLE CALENDAR */
.table-calendar {
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  min-width: 720px;
}
.table-calendar thead {
  background: var(--blue-dark);
  color: #efefef;
  letter-spacing: 0.08em;
}
.table-calendar th, .table-calendar td {
  padding: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.table-calendar th:first-child, .table-calendar td:first-child {
  padding-left: 15px;
}
.table-calendar th:last-child, .table-calendar td:last-child {
  padding-right: 15px;
}
.table-calendar tr:nth-child(even) {
  background-color: #dedede;
}
.table-calendar td a {
  text-decoration: underline;
}
/* SERVICES */
.sub-image{
  background-size:cover;
  background-attachment: fixed;
}
.nuestro{
  font-family: 'Rubik', sans-serif;

}
.services {
  margin-bottom: 30px;
  position: relative;
  padding: 10px 0;
  z-index: 0;
  display: block;
  bordeR: 1px solid #e6e6e6;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.services .desc {
  padding: 0 5px;
  color: black;
}.services .icono{
  font-size: 50px;
  color: black;
}
.services .icon {
  margin: 0 auto;
  margin-bottom: 10px;
  display: block; 
}
.services .icon i {
  font-size: 50px;
  color: black;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; 
}
.services .desc h3 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase; 
}
.services:hover {
  -webkit-box-shadow: 0px 16px 78px -34px rgba(0, 0, 0, 0.52);
  -moz-box-shadow: 0px 16px 78px -34px rgba(0, 0, 0, 0.52);
  box-shadow: 0px 16px 78px -34px rgba(0, 0, 0, 0.52);
  margin-top: -5px; 
}
.services:hover .icon i {
  color: var(--blue-light); }
.services:hover .desc h3 {
  color: var(--blue-light); }

/*STYLES Aside*/
/* Author: Mijail Mercado */
.asidenav{
  width: 100%;
  margin: 0px;
  display: inline-block;
}
.asidenav hr{
  margin-top: 0px;
  width: auto;
  height: 0px;  
}
.asidenav a{
  text-align: none;
  color: #777777;
}
.asidenav li{
  list-style-type: disc;
  font-size: 14px;
  padding: 0em;
  margin: 0em;
}
.asidenav li:hover{
  list-style-type: square;
  color: var(--blue-text);
}
.asidenav li a{
  list-style-type: square;
  color: #494949;
  display:block;
  padding: 5px 0px;

}
.asidenav blockquote{
  padding-left: 20px;
}
.asidenav li a:hover{
  color: var(--blue-text);
  border-left: 0px solid var(--blue-text);
  transition-duration: 0.4s;
  padding: 5px 10px;
}
.asidenav p{
  color: #555555;
}
.gale{
  width: 300px;
  height: 200px;
  display:block;
  margin:auto;
}
/*STYLES NUESTRAS PUBLICACIONES*/
/* Author: Mijail Mercado */
.contenedor{
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.contenedor_tarjeta{
  margin: 20px;
}
.contenedor_tarjeta a{
  display:inline-block;
}
.contenedor_tarjeta:hover figure{
  -webkit-transform:perspective(600px) rotateY(180deg) ;
  -ms-transform:perspective(600px) rotateY(180deg) ;
  -o-transform:perspective(600px) rotateY(180deg) ;
  transform:perspective(600px) rotateY(180deg) ;
  -webkit-box-shadow: 17px 17px 15px -12px rgba(0,0,0,0.75);
  -moz-box-shadow: 17px 17px 15px -12px rgba(0,0,0,0.75);
  box-shadow: 17px 17px 15px -12px rgba(0,0,0,0.75);
}
figure {
  width: 200px;
  height: 250px;
  margin: 0;
  position: relative;
  transition: all ease .5s;
  transform-style: preserve-3d;
  transform: perspective(600px) rotateY(0deg);
}
figure .frontal, figure .atras{
  width: 100%;
  height: 100%;
  border-radius: 5px;
  transition: all ease .5s;
}
figure .frontal{
  display: block;

}

figure .atras{
  position: absolute;
  top: 0;
  padding: 20px;
  color: #fff;
  transform: perspective(600px) rotateY(180deg);
  backface-visibility: hidden;
  overflow: auto;
  background: rgba(144,148,189,0.75);
  background: -moz-linear-gradient(top, rgba(144,148,189,0.75) 0%, rgba(80,58,92,0.61) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(144,148,189,0.75)), color-stop(100%, rgba(80,58,92,0.61)));
  background: -webkit-linear-gradient(top, rgba(144,148,189,0.75) 0%, rgba(80,58,92,0.61) 100%);
  background: -o-linear-gradient(top, rgba(144,148,189,0.75) 0%, rgba(80,58,92,0.61) 100%);
  background: -ms-linear-gradient(top, rgba(144,148,189,0.75) 0%, rgba(80,58,92,0.61) 100%);
  background: linear-gradient(to bottom, rgba(144,148,189,0.75) 0%, rgba(80,58,92,0.61) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9094bd', endColorstr='#503a5c', GradientType=0 );
}
figure .frontal, figure .atras_grupo{
  width: 100%;
  height: 100%;
  border-radius: 5px;
  transition: all ease .5s;
}
figure .atras_grupo{
  position: absolute;
  top: 0;
  padding: 20px;
  color: #fff;
  transform: perspective(600px) rotateY(180deg);
  backface-visibility: hidden;
  overflow: auto;

  background: rgba(73,155,234,0.79);
  background: -moz-linear-gradient(left, rgba(73,155,234,0.79) 0%, rgba(32,124,229,0.47) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(73,155,234,0.79)), color-stop(100%, rgba(32,124,229,0.47)));
  background: -webkit-linear-gradient(left, rgba(73,155,234,0.79) 0%, rgba(32,124,229,0.47) 100%);
  background: -o-linear-gradient(left, rgba(73,155,234,0.79) 0%, rgba(32,124,229,0.47) 100%);
  background: -ms-linear-gradient(left, rgba(73,155,234,0.79) 0%, rgba(32,124,229,0.47) 100%);
  background: linear-gradient(to right, rgba(73,155,234,0.79) 0%, rgba(32,124,229,0.47) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#499bea', endColorstr='#207ce5', GradientType=1 );
}


figure .atras .titulo{
  color:black;
  font-weight: 900;
  margin-bottom: 15px;
  font-family: 'Rubik',sans-serif;
  font-size: 20px;
}
figure .atras hr{
  height: 2px;
  background: #fff;
  border:none;
  margin-bottom: 20px;
  opacity: .5;
}

figure .atras p{
  font-family: 'Rubik',sans-serif;
  line-height: 22px;
  font-size: 14px;
  color:#fff;
}
figure .atras_grupo .titulo_grupo{
  color:#302a39;
  font-weight: 900;
  margin-bottom: 15px;
  font-family: 'Rubik',sans-serif;
  font-size: 20px;
}
figure .atras_grupo hr{
  height: 2px;
  background: #fff;
  border:none;
  margin-bottom: 20px;
  opacity: .5;
}

figure .atras_grupo p{
  font-family: 'Rubik',sans-serif;
  line-height: 22px;
  font-size: 14px;
  color:#fff;
}
.text-iconofg{
  color:#494949 !important;
  font-size: 25px;
}
a.text-iconofg:hover, a.text-iconofg:focus{
  color: #3b5998 !important;
}

@media screen and (max-width:992px){
  figure .atras{
      backface-visibility: visible;
      transform: perspective(600px) rotateY(0deg);
  }
  .contenedor_tarjeta:hover figure{
      transform: perspective(600px) rotateY(0deg);
  }

  figure .atras_grupo{
    backface-visibility: visible;
    transform: perspective(600px) rotateY(0deg);
}
}

/*publicacion para el icpc*/

.contenedor-icpc{
  width: 100%;
  height: 300px;
  align-items: center;
  display: flex;
  background-size: 100%;
  background-size:cover;
  background-attachment: fixed;
  animation: movimiento 30s infinite linear alternate;
}
@keyframes movimiento{
  from{
      background-position: top;
  }to{
      background-position: bottom;
  }
}
.contenedor-gicpc{
  width: 100%;
  height: 100%;
  position: static;
  background: rgba(0,0,0,0.75);
  /* background: -moz-linear-gradient(top, rgba(144,148,189,0.75) 0%, rgba(80,58,92,0.61) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(144,148,189,0.75)), color-stop(100%, rgba(80,58,92,0.61)));
  background: -webkit-linear-gradient(top, rgba(144,148,189,0.75) 0%, rgba(80,58,92,0.61) 100%);
  background: -o-linear-gradient(top, rgba(144,148,189,0.75) 0%, rgba(80,58,92,0.61) 100%);
  background: -ms-linear-gradient(top, rgba(144,148,189,0.75) 0%, rgba(80,58,92,0.61) 100%); */
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 10%, rgba(0,0,0,.6) 85%, var(--header-bg) 100%);
  /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9094bd', endColorstr='#503a5c', GradientType=0 ); */
}
.contenedor-dicpc{
  width: 100%;
  position: relative;
}
.dicpc{
  padding: 20px;
  width: 100%;
  position: relative;
  top: 20px;
  color: var(--text-white);
  text-align:center;
  font-family: 'Rubik',Arial,sans-serif;
  font-size: 18px;
}
.dicpcb{
  padding: 20px;
  width: 100%;
  position: relative;
  top: 20px;
  color: var(--text-white);
  text-align:center;
  font-family: 'Rubik',Arial,sans-serif;
  font-size: 18px;
}
.btn {
  margin-right: 4px;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 400;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 25px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 8px 20px; 
}
.btn:hover, .btn:active, .btn:focus {
  -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important; 
}
.btn-info {
  background: #5bc0de;
  color: #fff;
  border: 1px solid #5bc0de; 
}
.btn-info:hover, .btn-info:focus, .btn-info:active {
  background: #46b8da !important;
  border-color: #46b8da !important; 
}
.btn-info.btn-outline {
  background: transparent;
  color: #5bc0de;
  border: 1px solid #5bc0de; 
}
.btn-info.btn-outline:hover, .btn-info.btn-outline:focus, .btn-info.btn-outline:active {
    background: #5bc0de;
    color: #fff; 
}
@media screen and (max-width:755px){
  .dicpc{
    padding: 0px;
    width: 100%;
    position: relative;
    top: 20px;
    color: var(--text-white);
    text-align:center;
    font-family: 'Rubik',Arial,sans-serif;
    font-size: 15px;
  }
  .dicpc h2{
    font-size: 30px;
  }
  .dicpcb{
    padding: 20px;
    width: 100%;
    position: relative;
    top: 10px;
    color: var(--text-white);
    text-align:center;
    font-family: 'Rubik',Arial,sans-serif;
    font-size: 15px;
  }
}
@media screen and (max-width:365px){
  .dicpc{
    padding: 0px;
    width: 100%;
    position: relative;
    top: 20px;
    color: var(--text-white);
    text-align:center;
    font-family: 'Rubik',Arial,sans-serif;
    font-size: 15px;
  }
  .dicpc h2{
    font-size: 25px;
  }
  .dicpcb{
    padding: 20px;
    width: 100%;
    position: relative;
    top: 10px;
    color: var(--text-white);
    text-align:center;
    font-family: 'Rubik',Arial,sans-serif;
    font-size: 15px;
  }
}
@media screen and (max-width:304px){
  .dicpc{
    padding: 0px;
    width: 100%;
    position: relative;
    top: 20px;
    color: var(--text-white);
    text-align:center;
    font-family: 'Rubik',Arial,sans-serif;
    font-size: 10px;
  }
  .dicpc h2{
    font-size: 18px;
  }
  .dicpcb{
    padding: 15px;
    width: 100%;
    position: relative;
    top: 10px;
    color: var(--text-white);
    text-align:center;
    font-family: 'Rubik',Arial,sans-serif;
    font-size: 15px;
  }
}
/* STYLES FOOTER */
/* Author: Mijail Mercado */
.text-info {
  color: var(--text-white) !important;
  font-size: 12.8px;
}
.text-white {
  color:var(--text-white) !important;
  font-size: 17.6px;
}
a.text-info:hover, a.text-info:focus {
  color: #118392 !important;
}
.text-iconof{
  color:var(--text-white) !important;
  font-size: 25px;
}
a.text-iconof:hover, a.text-iconof:focus{
  color: #3b5998 !important;
}
/*header hover*/
.iconohf:hover{
  color: #3b5998 !important;
}

.text-iconot{
  color:var(--text-white) !important;
  font-size: 25px;
}
a.text-iconot:hover, a.text-iconof:focus{
  color: #00acee !important;
}
/*header hover*/
.iconoht:hover{
  color: #00acee  !important;
}
.text-iconoy{
  color:var(--text-white) !important;
  font-size: 25px;
}
a.text-iconoy:hover, a.text-iconof:focus{
  color: #c4302b !important;
}
/*header hover*/
.iconohy:hover{
  color: #c4302b  !important;
}
.text-iconoi{
  color:var(--text-white) !important;
  font-size: 25px;
}
a.text-iconoi:hover, a.text-iconof:focus{
  color: #e1206c !important;
}
/*header hover*/
.iconohi:hover{
  color: #e1206c !important;
}
.iconohc:hover{
  color: white !important;
}
.iconotg:hover{
  color: #0088CC !important;
}
.text-iconow{
  color:var(--text-white) !important;
  font-size: 25px;
}
a.text-iconow:hover, a.text-iconof:focus{
  color: #25d366 !important;
}
.text-iconotg{
  color:var(--text-white) !important;
  font-size: 25px;
}
a.text-iconotg:hover, a.text-iconof:focus{
  color: #0088CC !important;
}
.cid-qv5AKsQ6xL {
  padding-top: 40px;
  padding-bottom: 10px;
  background-color: var(--header-bg);
}
a, a:hover {
    text-decoration: none; 
}
.media-container-row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start; 
}
@media (max-width: 990px) {
  .cid-qv5AKsQ6xL .content {
        text-align: center;
  }
  .cid-qv5AKsQ6xL .content > div:not(:last-child) {
        margin-bottom: 2rem;
  }
}
@media (max-width: 990px) {
  .cid-qv5AKsQ6xL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
/* ARROW TOP */
.arrow-to-top {
  opacity: 0;
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 54px;
  height: 54px;
  border-radius: 26px;
  background-color: var(--header-bg);
  color: var(--text-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  transition: opacity 0.6s;
  border: 1px solid var(--text-white);
  z-index: -10;
}
.show-arrow {
  opacity: 1;
  z-index: 10;
}
@media only screen and (max-width: 920px) {
  #arrow-top {
    display: none;
  }
}
/*STYLES Linea de tiempo para historia*/
/* Author: Mijail Mercado */
.linea-tiempo {
  position: relative;
  width: 300px;
  max-width: 95vw;
  height: 100%;
}
.linea-tiempo::before {
  content: '';
  position: absolute;
  width: 3px;
  background-color: #000;
  left: 50%;
  height: 100%;
  border-radius: 10px;
}
.momento {
  position: relative;
  width: 45%;
  box-sizing: border-box;
}
.momento:nth-child(even) {
  left: 55%;
}
.momento::after {
  content: '';
  position: absolute;
  top: calc(50% + 12px);
  right: calc(-10.11% - 10.5px);
  height: 15px;
  width: 15px;
  background-color: #000;
  border-radius: 50%;
}
.momento:nth-child(even)::after {
  left: calc(-10.11% - 7.5px);
}
.momento h3 {
  margin: 10px 0px;
  font-size: 30px;
  text-align: center;
}
.momento .descripcion {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 10px;
  line-height: 22px;
  font-size: 14px;
}
.momento .descripcion::after {
  content: '';
  position: absolute;
  right: -8px;
  top: calc(50% + 10px);
  height: 0;
  width: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid rgb(255, 255, 255);
}
.momento:nth-child(even) .descripcion {
  background-color: #3393FE;
  color: white;
}
.momento:nth-child(even) .descripcion::after {
  left: -8px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid #3393FE;
  border-left: none;
}
/*Hexagon*/

.hexa {
  display: inline-block;
}

.hex1 {
  float: left;
  border-right: 20px solid #0088CC;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
}

.hex2 {
  float: left;
  width: 50px;
  height: 80px;
  background-color: #0088CC;
}

.hex3 {
  float: left;
  border-left: 20px solid #0088CC;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
}

.hex-text {
  font-size: 25px;
  color: #fff;
  line-height: 3;
}

/*Personal Profile*/
agent-single {
  width: 100%;
  max-height: 420px;
  background: #fff;
}
.agent-single img {
  width: 180px;
  height: 180px;
  margin-bottom: 10px;
}

/*Actividad_estudiantil*/
.g_actividades{
  position: relative; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 550px;
}
@media only screen and (max-width: 450px) {
  .g_actividades{
    position: relative; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 250px;
}
}
/*tarjetas*/
.imgCard{
  width: 200px;
  height: 164px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.bodyCard{
  padding: 1px;
}
.carta{
  max-width: 635px; 
  max-height: 165px;
  box-shadow: 5px 8px 10px #474747;
  transition: 0.5s !important;
  border-radius: 10px;
}
.carta:hover {
  background: white;
  box-shadow: 3px 3px 9px #888;
}
.dateTajerta{
  margin-bottom: 0px;
  margin-top: 2px;
  font-size: 23px;
  color: var(--blue-dark);
}
.etiquetaCard{
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--blue-text);
  color: white;
  border-radius: 10px;
  padding: 2px 10px;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  font-size: 15px;
  text-transform: uppercase;
}
.enlaceCard{
  text-decoration: none;
  color: black;
  font-size: 15px;
}
.enlaceCard:hover{
  color: #4586ff;
}
.enlaceCard-d{
  text-decoration: none;
  color: black;
  font-size: 15px;
  font-weight: 500;
  margin:0.25rem;
  padding: 0.25rem;
}
.enlaceCard-d:hover{
  color: #494949;
  font-weight: 500;
  margin:0.25rem;
  padding: 0.25rem;
}
.fontcards{
  font-size: 20px;
  margin-bottom: 0rem;
}
.contenidocard{
  color: #494949;
  line-height: 19px;
  font-size: 14px;
}

@media screen and (max-width: 1199px) {
  .carta{
    max-width: 690px; 
    max-height: 165px;
    box-shadow: 5px 8px 10px #474747;
    transition: 0.5s !important;
    border-radius: 10px;
  }
  .dateTajerta{
    margin-bottom: 0px;
    margin-top: 0px;
    font-size: 20px;
    color: var(--blue-dark);
  }
  
  .fontcards {
  font-size: 15px;
  margin-bottom: 0rem;
  }
  .contenidocard{
    color: #494949;
    line-height: 17px;
    font-size: 13px;
  }
  .imgCard{
    width: 177px;
    height: 164px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  }

@media screen and (max-width: 767px) {
.dateTajerta{
  margin-bottom: 0px;
  margin-top: 0px;
  font-size: 20px;
  color: var(--blue-dark);
}

.fontcards {
font-size: 15px;
margin-bottom: 0rem;
}
.contenidocard{
  color: #494949;
  line-height: 15px;
  font-size: 13px;
}
.imgCard{
  width: 165px;
  height: 164px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
}

@media screen and (max-width: 561px) {
  .fontcards {
  font-size: 13px;
  margin-bottom: 0px;
  }
  .imgCard{
    width: 28vw;
    height: 164px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .enlaceCard-d{
    text-decoration: none;
    color: black;
    font-size: 13px;
    font-weight: 500;
  }
  .enlaceCard-d:hover{
    color: #494949;
    font-weight: 500;
  }
  }
  @media screen and (max-width: 430px) {
    .dateTajerta{
      margin-bottom: 0px;
      margin-top: 0px;
      font-size: 18px;
      color: var(--blue-dark);
    }
    .fontcards {
    font-size: 13px;
    margin-bottom: 0px;
    }
    .contenidocard{
      color: #494949;
      line-height: 12px;
      font-size: 11px;
    }
    .imgCard{
      width: 28vw;
      height: 164px;
      border-top-left-radius: 10px;
      border-bottom-left-radius: 10px;
    }
    .enlaceCard-d{
      text-decoration: none;
      color: black;
      font-size: 11px;
      font-weight: 500;
      margin: 0px;
    }
    .enlaceCard-d:hover{
      color: #494949;
      font-weight: 500;
      margin: 0px;
    }
    }
  
    /*modal*/
    .modalCabecera {
      border-bottom: 0px solid #dee2e6;
      box-shadow: 4px 0px 6px 0px #474747;

    }
    .fondomodal{
      background: rgba(48,42,57,1);
      background: -moz-linear-gradient(left, rgba(48,42,57,1) 0%, rgba(216,225,231,0.92) 65%, rgba(181,198,208,0.88) 100%);
      background: -webkit-gradient(left top, right top, color-stop(0%, rgba(48,42,57,1)), color-stop(65%, rgba(216,225,231,0.92)), color-stop(100%, rgba(181,198,208,0.88)));
      background: -webkit-linear-gradient(left, rgba(48,42,57,1) 0%, rgba(216,225,231,0.92) 65%, rgba(181,198,208,0.88) 100%);
      background: -o-linear-gradient(left, rgba(48,42,57,1) 0%, rgba(216,225,231,0.92) 65%, rgba(181,198,208,0.88) 100%);
      background: -ms-linear-gradient(left, rgba(48,42,57,1) 0%, rgba(216,225,231,0.92) 65%, rgba(181,198,208,0.88) 100%);
      background: linear-gradient(to right, rgba(48,42,57,1) 0%, rgba(216,225,231,0.92) 65%, rgba(181,198,208,0.88) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#302a39', endColorstr='#b5c6d0', GradientType=1 );
    }
    .modalTitulo{
      color:var(--text-white);
      font-size: large;
      font-family: 'Rubik', sans-serif;
      font-weight: 400;
    }
    .modalPie {
      border-top: 0px solid #dee2e6;
      box-shadow: 4px 0px 6px 0px #474747;

    }

    .tarjetaComunicado{
      width: 1000px;
      height: 200px;
      box-shadow: 5px 8px 10px #474747;
      border-radius: 10px;
    }
    .tarjetaImgComunicado{
      width: 300px;
      height: 199px;
      border-top-left-radius: 10px;
      border-bottom-left-radius: 10px;
    }
    .dateTajertaComunicado{
      margin-bottom: 0px;
      margin-top: 2px;
      font-size: 30px;
      color: var(--blue-dark);
    }

    @media screen and (max-width: 1190px){
      .tarjetaComunicado{
        width: 960px;
        height: 200px;
        box-shadow: 5px 8px 10px #474747;
        border-radius: 10px;
      }
      .tarjetaImgComunicado{
        width: 300px;
        height: 200px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
      }
      .dateTajertaComunicado{
        margin-bottom: 0px;
        margin-top: 2px;
        font-size: 28px;
        color: var(--blue-dark);
      }
    }
    @media screen and (max-width: 990px){
      .tarjetaComunicado{
        width: 720px;
        height: 170px;
        box-shadow: 5px 8px 10px #474747;
        border-radius: 10px;
      }
      .tarjetaImgComunicado{
        width: 220px;
        height: 170px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
      }
    }
    @media screen and (max-width: 765px){
      .tarjetaComunicado{
        width: 540px;
        height: 164px;
        box-shadow: 5px 8px 10px #474747;
        border-radius: 10px;
      }
      .tarjetaImgComunicado{
        width: 170px;
        height: 163px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
      }
    }
    @media screen and (max-width: 575px){
      .tarjetaComunicado{
        width: 540px;
        height: 164px;
        box-shadow: 5px 8px 10px #474747;
        border-radius: 10px;
      }
      .tarjetaImgComunicado{
        width: 170px;
        height: 163px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
      }
      .rowComunicado{
        margin-left: 0px;
      }
    }
    @media screen and (max-width: 540px){
      .tarjetaComunicado{
        width: 381px;
        height: 164px;
        box-shadow: 5px 8px 10px #474747;
        border-radius: 10px;
      }
      .tarjetaImgComunicado{
        width: 110px;
        height: 163px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
      }
      .rowComunicado{
        margin-left: 0px;
      }
      .dateTajertaComunicado{
        margin-bottom: 0px;
        margin-top: 2px;
        font-size: 15px;
        color: var(--blue-dark);
      }
    }

    @media screen and (max-width: 375px){
      .tarjetaComunicado{
        width: 330px;
        height: 164px;
        box-shadow: 5px 8px 10px #474747;
        border-radius: 10px;
      }
      .tarjetaImgComunicado{
        width: 110px;
        height: 163px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
      }
      .rowComunicado{
        margin-left: 0px;
      }
      .dateTajertaComunicado{
        margin-bottom: 0px;
        margin-top: 2px;
        font-size: 15px;
        color: var(--blue-dark);
      }
    }

