/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

/* 
    Created on : May 27, 2018, 8:08:03 PM
    Author     : Hugo Avila
*/
.g-content {
  margin: 0.625rem;
  padding: 1.5rem;
}
.g-flushed .g-content {
  margin: 0;
  padding: 0;
}
body {
  font-size: 1rem;
  line-height: 1.5;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.7rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.2rem;
}
h6 {
  font-size: 1rem;
}
small {
  font-size: 0.875rem;
}
cite {
  font-size: 0.875rem;
}
sub, sup {
  font-size: 0.75rem;
}
code, kbd, pre, samp {
  font-size: 1rem;
  font-family: "Menlo", "Monaco", monospace;
}
textarea, select[multiple=multiple], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]) {
  border-radius: 0.1875rem;
}
html body {
  /* Overrides */
}
html body h3 {
  font-size: 1.5rem;
}
html body #g-page-surround {
  padding-top: 0;
}
html body #g-page-surround:before {
  background-repeat: repeat;
  background-size: initial;
}
html body #g-slideshow {
  padding-top: 3rem;
}
html body #g-slideshow::before {
  background-image: -webkit-linear-gradient(top, rgba(59, 131, 219, 0) 0%, #1b8ac8 100%);
  background-image: linear-gradient(to bottom, rgba(59, 131, 219, 0) 0%, #1b8ac8 100%);
}
@media only all and (max-width: 50.99rem) {
  html body #g-slideshow {
    padding-top: 0;
  }
}
html body #g-slideshow h1 {
  color: #222222;
}
@media only all and (max-width: 50.99rem) {
  html body #g-slideshow h1 {
    font-size: 1.8rem;
    text-align: center;
  }
}
html body #g-slideshow h3 {
  color: #093e60;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
}
@media only all and (max-width: 50.99rem) {
  html body #g-slideshow h3 {
    font-size: 1.2rem;
    text-align: center;
  }
}
html body #g-slideshow .slideshow-side-image .g-content {
  padding-left: 0;
  margin-left: 0;
  margin-top: 0;
  padding-top: 0;
}
@media only all and (max-width: 50.99rem) {
  html body #g-slideshow .slideshow-side-image .g-content {
    margin: 0;
    padding: 0;
  }
}
html body #g-slideshow .slideshow-side-image img {
  border-radius: 10px;
}
@media only all and (max-width: 50.99rem) {
  html body #g-slideshow .slideshow-side-image img {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
}
html body #g-mainbar {
  position: relative;
  /*padding-bottom: 100px;*/
}
html body #g-mainbar:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 300px;
  background-image: url('../../../../../../images/logo-eya-mundo.svg');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
html body .tarjetas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
@media only all and (max-width: 50.99rem) {
  html body .tarjetas {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
@media only all and (min-width: 51rem) and (max-width: 75.99rem) {
  html body .tarjetas {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
html body .tarjetas .tarjeta {
  position: relative;
  display: grid;
  background-image: linear-gradient(to right, #1b8ac8, #093e60);
  overflow: hidden;
  cursor: pointer;
  min-height: 400px;
  border-bottom: solid 2px white;
}
html body .tarjetas .tarjeta a {
  display: grid;
}
html body .tarjetas .tarjeta .titulo-tarjeta {
  text-transform: uppercase;
  color: #ffffff;
  font-weight: bold;
  padding: 2rem 1rem;
  animation-duration: 0.8s;
}
html body .tarjetas .tarjeta .desc-tarjeta {
  position: absolute;
  top: 1000px;
  padding: 1rem;
  animation-duration: 0.5s;
  font-size: 0.9rem;
  color: #ffffff;
  text-align: justify;
}
html body .tarjetas .tarjeta .img-tarjeta {
  position: relative;
  animation-duration: 0.8s;
}
html body .tarjetas .tarjeta .img-tarjeta img {
  width: 100%;
}
html body .tarjetas .tarjeta:hover .titulo-tarjeta {
  position: absolute;
  width: 100%;
  animation-name: aparecer;
  animation-fill-mode: forwards;
}
html body .tarjetas .tarjeta:hover .desc-tarjeta {
  display: block;
  animation-name: mostrar;
  animation-fill-mode: forwards;
}
html body .tarjetas .tarjeta:hover .img-tarjeta {
  animation-name: ocultar;
  animation-fill-mode: forwards;
}
@keyframes mostrar {
  0% {
    top: 400px;
  }
  100% {
    top: 4rem;
  }
}
@-webkit-keyframes mostrar {
  0% {
    top: 400px;
  }
  100% {
    top: 4rem;
  }
}
@keyframes ocultar {
  0% {
    top: 0px;
  }
  100% {
    top: -400px;
  }
}
@-webkit-keyframes ocultar {
  0% {
    top: 0px;
  }
  100% {
    top: -400px;
  }
}
@keyframes aparecer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes ocultar {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media only all and (min-width: 76rem) and (max-width: 87.99rem) {
  html body .g-main-nav .g-toplevel > li > .g-menu-item-container, html body .g-main-nav {
    font-size: 0.85rem;
  }
}
@media only all and (min-width: 88rem) {
  html body .g-main-nav .g-toplevel > li > .g-menu-item-container, html body .g-main-nav {
    font-size: 1rem;
  }
}
html body .g-content-array-pagination {
  position: relative;
  z-index: 1;
}
html body #home-image-logo img {
  padding: 1rem;
  padding-bottom: 0;
}
@media only all and (max-width: 50.99rem) {
  html body #home-image-logo img {
    padding: 2rem 3rem 0 3rem;
    max-width: 480px;
  }
}
@media only all and (max-width: 50.99rem) {
  html body #logo-5992-particle svg {
    padding: 0rem 2rem 0 2rem;
    max-width: 300px;
  }
}
html body .g-totop-hidden {
  display: block;
  position: fixed;
  width: 40px;
  height: 40px;
  background-color: rgba(27, 138, 200, 0.75);
  line-height: 40px;
  text-align: center;
  bottom: 20px;
  right: 20px;
  border-radius: 20px;
}
html body .g-totop-hidden.hidden {
  visibility: hidden;
}
html body .g-totop-hidden a {
  color: white !important;
}
table thead {
  background-color: #e1edf6;
}
.buttons {
  text-align: center;
  margin: 1rem;
}
/*# sourceMappingURL=custom.css.map */