@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.ttf");
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.5rem;
}

body {
  font-family: "Lato";
}

button {
  background-color: transparent;
  border: 0;
}

ul {
  list-style-type: none;
}

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

#mainIndex {
  background-color: white;
}

input:focus {
  outline: 0;
}

textarea:focus {
  outline: 0;
}

label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.pt-4 {
  padding: 2rem 0 0 0 !important;
}

.py-4 {
  padding: 2rem 0 !important;
}

.py-5 {
  padding: 3rem 0 !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-dark {
  color: #000 !important;
}

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

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

.titulo-section {
  width: 100% !important;
  padding: 1rem 0rem !important;
  background-color: #1fbe6c !important;
  color: rgba(0, 0, 0, 0.75) !important;
  text-align: center !important;
  margin: auto !important;
  text-transform: capitalize !important;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.75);
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.75);
  position: relative;
  width: 100%;
  z-index: -1;
}

.header li a {
  color: #fff;
  font-weight: 400;
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.header .logo {
  display: block;
  float: left;
  font-size: 3em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */
.header .menu {
  clear: both;
  max-height: 0;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  background-color: rgba(0, 0, 0, 0.75);
}

/* menu icon */
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 30px 20px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.header .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 3px;
  position: relative;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
  width: 25px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 7px;
}

.header .menu-icon .navicon:after {
  top: -7px;
}

/* menu btn */
.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 520px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.header .menu-btn:checked ~ .logo-mobile {
  opacity: 0.05;
}

.logo-mobile {
  display: block;
  position: relative;
  left: 10px;
  top: 15px;
  width: 30%;
}

.logo-desktop {
  display: none;
}

@media (min-width: 998px) {
  .header {
    background-color: transparent;
  }
  .logo-desktop {
    display: block;
    position: absolute;
    left: 15px;
    top: 10px;
    width: 5%;
  }
  .header ul {
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 9999;
    padding-right: 2rem;
  }
  .header li a {
    border: 0;
    font-weight: bold;
    padding: 20px 20px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
  #logo-menu img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .menu.is-fixed {
    position: fixed;
    -webkit-box-shadow: 3px 3px 10px #0000001f;
            box-shadow: 3px 3px 10px #0000001f;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-animation: fadein 0.3s;
    /* Safari, Chrome and Opera > 12.1 */
    /* Firefox < 16 */
    /* Internet Explorer */
    /* Opera < 12.1 */
    animation: fadein 0.3s;
  }
  #logo-menu.fixed {
    display: block;
    width: 8%;
    position: absolute;
    left: 10px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    padding: 0.5rem 1rem;
    top: 0;
  }
  @-webkit-keyframes fadein {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadein {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}

@media (min-width: 1180px) {
  #logo-menu.fixed {
    width: 13%;
  }
  .lenguaje {
    color: #1fbe6c !important;
  }
}

@media (min-width: 1400px) {
  #logo-menu.fixed {
    width: 10%;
  }
}

header {
  background-image: url("../img/background-header-keclon-min.jpg");
  background-size: cover;
  background-position: center;
  height: 120vh;
  position: relative;
  z-index: 100;
}

header .texto-header {
  position: relative;
  padding-top: 50%;
  text-align: center;
}

header .titulo-header {
  background-color: rgba(0, 0, 0, 0.75);
  width: 90%;
  padding: 1rem 1rem 2.5rem 1rem;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

header .subtitulo-header {
  font-size: 1rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  header .logo-mobile {
    width: 25%;
    padding: 0.5rem;
    top: 5px;
  }
  header .titulo-header {
    font-size: 1.8rem;
    width: 65%;
    line-height: 2.5rem;
  }
}

@media (min-width: 986px) {
  header .logo-mobile {
    display: none;
  }
  header .logo-desktop {
    display: block;
    width: 13%;
    position: absolute;
    left: 10px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    padding: 0.5rem 1rem;
    top: 0;
  }
  header .titulo-header {
    top: 24%;
    font-size: 1.4rem;
    width: 70%;
    padding: 1rem;
  }
  header .subtitulo-header {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  header .texto-header {
    padding-top: 18%;
  }
}

@media (min-width: 1400px) {
  header {
    height: 100vh;
  }
  header .titulo-header {
    font-size: 1.8rem;
    padding: 2rem;
  }
  header .subtitulo-header {
    font-size: 1.5rem;
  }
  header .logo-desktop {
    width: 10%;
  }
  header .texto-header {
    padding-top: 19%;
  }
}

#queHacemos {
  /* slideshow item */
  /* slideshow navigation */
  /* Radiobuttons to control the slideshow */
}

#queHacemos .titulo-section {
  width: 100%;
  padding: 1rem 0rem;
  background-color: #1fbe6c;
  color: #fff;
  text-align: center;
  margin: auto;
  text-transform: capitalize;
}

#queHacemos .slideshow {
  width: 100%;
  height: 500px;
  position: relative;
  text-align: center;
  padding-bottom: 30px;
}

#queHacemos .slideshow[data-transition="zoom"] {
  overflow: hidden;
}

#queHacemos .slideshow--item {
  width: 100%;
  height: 500px;
  line-height: 1.5;
  position: absolute;
  top: 0;
  visibility: hidden;
}

#queHacemos .slideshow--item .bg-white {
  width: 100%;
  height: 500px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(8%, rgba(92, 255, 171, 0.8)), to(rgba(255, 255, 255, 0.7)));
  background: linear-gradient(0deg, rgba(92, 255, 171, 0.8) 8%, rgba(255, 255, 255, 0.7) 100%);
  position: absolute;
}

#queHacemos .slideshow--item img {
  width: 100%;
  height: 500px;
}

#queHacemos .slideshow--item .img-desktop {
  display: none;
}

#queHacemos .slideshow--item .text-slide {
  position: absolute;
  text-align: left;
  top: 5%;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 1rem;
  width: 85%;
  z-index: 10;
  border-radius: 1.5rem;
  padding: 1rem;
  font-weight: bolder;
}

#queHacemos .slideshow--item .text-slide h2 {
  padding: 0.5rem 0;
  line-height: 1;
  font-weight: bold;
}

#queHacemos .slideshow--bullet:checked + .slideshow--item {
  visibility: visible;
}

#queHacemos .slideshow[data-transition="fade"] .slideshow--item {
  visibility: visible;
  opacity: 0;
  -webkit-transition: 0.3s ease-out opacity;
  transition: 0.3s ease-out opacity;
}

#queHacemos .slideshow[data-transition="fade"] .slideshow--bullet:checked + .slideshow--item {
  opacity: 1;
}

#queHacemos .slideshow[data-transition="zoom"] .slideshow--item {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.3s ease-out transform;
  transition: 0.3s ease-out transform;
}

#queHacemos .slideshow[data-transition="zoom"] .slideshow--bullet:checked + .slideshow--item {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#queHacemos .slideshow--nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  display: none;
  z-index: 88;
  cursor: pointer;
  color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#queHacemos .slideshow--nav:after {
  display: block;
  content: ">";
  font-size: 2em;
  color: #000;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -0.5em;
}

#queHacemos .slideshow--nav-previous {
  left: 0;
  display: block;
}

#queHacemos .slideshow--nav-previous:after {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  right: auto;
  left: 10px;
}

#queHacemos .slideshow--nav-next {
  left: 50%;
  display: block;
}

#queHacemos .slideshow--bullet {
  font-size: 0.75em;
  width: 1em;
  height: 1em;
  display: inline-block;
  position: relative;
  margin-top: 480px;
  z-index: 99;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 1em;
  -webkit-transition: 0.3s ease-out background, 0.3s ease-out transform;
  transition: 0.3s ease-out background, 0.3s ease-out transform;
  display: none;
}

#queHacemos .slideshow--bullet:checked {
  background: #999;
  outline: none;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

#queHacemos::before {
  display: block;
  content: " ";
  margin-top: -60px;
  height: 60px;
  visibility: hidden;
  pointer-events: none;
}

@media (min-width: 768px) {
  #queHacemos .slideshow--item .img-desktop {
    display: block;
  }
  #queHacemos .slideshow--item .img-mobile {
    display: none;
  }
}

@media (min-width: 986px) {
  #queHacemos .slideshow {
    height: 700px;
  }
  #queHacemos .slideshow .slideshow--item {
    height: 700px;
  }
  #queHacemos .slideshow .slideshow--item .text-slide {
    width: 65%;
    font-size: 1.5rem;
    margin: 0;
    top: 25%;
    left: 10%;
  }
  #queHacemos .slideshow .slideshow--item img,
  #queHacemos .slideshow .slideshow--item video {
    height: 700px;
  }
  #queHacemos .slideshow .slideshow--item .bg-white {
    height: 700px;
  }
  #queHacemos .slideshow .slideshow--bullet {
    display: none;
    margin-top: 350px;
  }
}

@media (min-width: 1400px) {
  #queHacemos .slideshow .slideshow--item .text-slide {
    width: 35%;
    margin: 0;
    top: 32%;
    left: 12%;
    font-size: 1.7rem;
  }
}

#productos .titulo-section {
  width: 100%;
  padding: 1rem 0rem;
  background-color: #808080;
  color: #fff;
  text-align: center;
  margin: auto;
  text-transform: capitalize;
}

#productos button {
  color: #1fbe6c;
  font-size: 1.1rem;
  font-weight: bolder;
}

#productos .texto-producto {
  text-align: center;
}

#productos .productos-animal {
  background-image: url("../img/prod-animal.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 50vh;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#productos .productos-humana {
  background-image: url("../img/prod-humana.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 50vh;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#productos .productos-comestibles {
  background-image: url("../img/prod-comestibles.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 50vh;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#productos .productos-biodiesel {
  background-image: url("../img/prod-biodiesel.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 50vh;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#productos .popup {
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
}

#productos #popup-article1:target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
}

#productos #popup-article2:target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
}

#productos #popup-article3:target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
}

#productos #popup-article4:target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
}

@-webkit-keyframes open-animation {
  0% {
    height: 0;
    top: 50%;
  }
  100% {
    height: 100vh;
    top: 0;
  }
}

@keyframes open-animation {
  0% {
    height: 0;
    top: 50%;
  }
  100% {
    height: 100vh;
    top: 0;
  }
}

#productos .popup__block {
  padding: 4rem 1rem 2rem 1rem;
  text-align: start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: auto;
  -webkit-animation: fade 0.2s ease-out;
          animation: fade 0.2s ease-out;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.87);
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#productos .popup__title {
  font-size: 1.5rem;
  margin: 0 0 1em;
}

#productos .popup__close {
  width: 2rem;
  height: 2rem;
  text-indent: -9999px;
  position: absolute;
  top: 20px;
  right: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwMDAwIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTE5IDYuNDFMMTcuNTkgNSAxMiAxMC41OSA2LjQxIDUgNSA2LjQxIDEwLjU5IDEyIDUgMTcuNTkgNi40MSAxOSAxMiAxMy40MSAxNy41OSAxOSAxOSAxNy41OSAxMy40MSAxMnoiLz4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPjwvc3ZnPg==);
}

#productos .open-popup {
  color: #1fbe6c;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.1rem;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0.2rem 0.5rem;
}

#productos::before {
  display: block;
  content: " ";
  margin-top: -60px;
  height: 60px;
  visibility: hidden;
  pointer-events: none;
}

@media (min-width: 986px) {
  #productos article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #productos article .productos-animal,
  #productos article .productos-comestibles,
  #productos article .productos-humana,
  #productos article .productos-biodiesel {
    width: 50%;
    height: 70vh;
  }
  #productos article .popup__block {
    width: 600px;
    height: 600px;
    overflow: auto;
  }
  #productos article .open-popup {
    font-size: 1.3rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  #productos article .open-popup:hover {
    font-size: 1.5rem;
    background-color: #606060;
  }
}

#equipo {
  background-color: #fff;
}

#equipo .titulo-section {
  width: 100%;
  padding: 1rem 0rem;
  background-color: #1fbe6c;
  color: #000;
  text-align: center;
  margin: auto;
  text-transform: capitalize;
}

#equipo .subtitulo {
  padding: 1rem;
  color: #000;
  text-align: center;
  padding: 1rem;
}

#equipo .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 1rem;
}

#equipo .wrapper .integrante-equipo {
  width: 45%;
  color: #000;
  text-align: center;
  padding: 0.5rem;
}

#equipo .wrapper .integrante-equipo img {
  width: 80%;
  border-radius: 50%;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

#equipo .wrapper .integrante-equipo .nombre {
  font-size: 1.1rem;
}

#equipo .wrapper .integrante-equipo .cargo {
  font-size: 1rem;
  color: #000;
  font-weight: bolder;
}

#equipo .container-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#equipo .container-logos img {
  width: 25%;
  -o-object-fit: contain;
     object-fit: contain;
}

#equipo .text-center-logos {
  padding-top: 1rem;
  font-weight: bold;
  text-align: center;
  font-size: 1.1rem;
  text-shadow: 1px 2px 1px rgba(77, 211, 24, 0.4);
}

@media (min-width: 768px) {
  #equipo .wrapper .integrante-equipo {
    width: 30%;
  }
}

@media (min-width: 986px) {
  #equipo::before {
    display: block;
    content: " ";
    margin-top: -60px;
    height: 60px;
    visibility: hidden;
    pointer-events: none;
    background-color: #fff;
  }
  #equipo .subtitulo {
    font-size: 1.2rem;
    width: 80%;
    margin: auto;
    padding: 2rem;
  }
  #equipo .wrapper {
    padding: 2rem 5rem;
  }
  #equipo .wrapper .integrante-equipo {
    width: 20%;
    margin-bottom: 1.5rem;
  }
  #equipo .wrapper .integrante-equipo img {
    width: 50%;
  }
  #equipo .container-logos {
    padding: 2rem 0;
  }
  #equipo .container-logos img {
    width: 10%;
    padding: 1rem;
  }
  #equipo .text-center-logos {
    padding-top: 2rem;
    font-size: 1.4rem;
  }
}

@media (min-width: 1400px) {
  #equipo .subtitulo {
    font-size: 1.3rem;
  }
  #equipo .wrapper {
    padding: 2rem 7rem;
  }
  #equipo .text-center-logos {
    font-size: 1.6rem;
  }
}

#prensa {
  background-color: #808080;
}

#prensa .titulo-section {
  width: 100%;
  padding: 1rem 0rem;
  background-color: #606060;
  color: #fff;
  text-align: center;
  margin: auto;
  text-transform: capitalize;
}

#prensa .center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 0 2rem 0;
}

#prensa .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 1em;
  overflow: hidden;
  width: 100%;
  padding: 0 4rem;
}

#prensa .wrapper > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 1em;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

#prensa .card {
  border-radius: 0.5em;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  margin-right: 1rem;
}

#prensa .card > img {
  border-top-right-radius: inherit;
  border-top-left-radius: inherit;
  display: block;
  width: 17.5em;
}

#prensa .card > .content {
  background: rgba(0, 0, 0, 0.75);
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  padding: 1em;
  text-align: center;
}

#prensa .card > .content > h1,
#prensa .card > .content > h3 {
  margin: 0.35em 0;
}

#prensa .card > .content > h1 {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}

#prensa .card > .content > h3 {
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 300;
}

#prensa .card > .content a {
  color: #1fbe6c;
  font-weight: bolder;
}

#prensa .map {
  margin-top: 1em;
}

#prensa .map > button {
  all: unset;
  background: rgba(26, 26, 26, 0.75);
  cursor: pointer;
  margin: 0 0.125em;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 100%;
  height: 1em;
  width: 1em;
}

#prensa .map > button.active:after {
  background: rgba(0, 0, 0, 0.75);
  content: "";
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  border-radius: 100%;
  height: 0.5em;
  width: 0.5em;
}

@media (min-width: 986px) {
  #prensa .center {
    padding: 4rem 0 3rem 0;
  }
  #prensa .wrapper {
    width: 63rem;
  }
  #prensa::before {
    display: block;
    content: " ";
    margin-top: -60px;
    height: 60px;
    visibility: hidden;
    pointer-events: none;
    background-color: #fff;
    position: absolute;
  }
}

#contacto {
  background-image: url("../img/fondo-contacto.png");
  background-size: cover;
  -webkit-backdrop-filter: grayscale(1);
          backdrop-filter: grayscale(1);
  background-color: #404040;
  background-position-y: bottom;
}

#contacto .titulo-section {
  width: 100%;
  padding: 1rem 0rem;
  background-color: #1fbe6c;
  color: #fff;
  text-align: center;
  margin: auto;
  text-transform: capitalize;
}

#contacto form {
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem;
}

#contacto form label,
input,
textarea {
  border: 0;
  border-radius: 1rem;
  color: white;
  font-family: "Lato";
}

#contacto form input,
textarea {
  padding: 0 1rem;
  font-size: 1.1rem;
  margin: 0.2rem 0;
  border: #fff solid 1px;
  background-color: transparent;
}

#contacto form textarea {
  padding: 0.5rem 1rem;
}

#contacto form #btnForm {
  background-color: transparent;
  border: #fff solid 2px;
  color: white;
  font-size: 1.1rem;
  margin-top: 1rem;
  padding: 0.5rem 0;
  width: 35%;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}

#contacto form #btnForm:hover {
  cursor: pointer;
  background-color: white;
  color: #1fbe6c;
}

#contacto form input:focus,
textarea:focus {
  border: 2px solid #1fbe6c;
  border-radius: 1rem;
}

.btnForm {
  top: 0;
  left: 0;
  -webkit-transition: all 0.05s linear 0s;
  transition: all 0.05s linear 0s;
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  background-color: #ffe800;
  text-transform: uppercase;
  color: #404040;
  font-family: arial;
  letter-spacing: 1px;
  text-decoration: none;
}

.btnForm:active {
  top: 3px;
  left: -3px;
  -webkit-box-shadow: -3px 3px 0 #404040;
          box-shadow: -3px 3px 0 #404040;
}

.btnForm:active::after {
  top: 1px;
  left: -2px;
  width: 4px;
  height: 4px;
}

.btnForm:active::before {
  bottom: -2px;
  right: 1px;
  width: 4px;
  height: 4px;
}

.btnForm::after {
  -webkit-transition: all 0.05s linear 0s;
  transition: all 0.05s linear 0s;
  content: "";
  position: absolute;
  top: 2px;
  left: -4px;
  width: 8px;
  height: 8px;
  background-color: #404040;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: -1;
}

.btnForm::before {
  -webkit-transition: all 0.05s linear 0s;
  transition: all 0.05s linear 0s;
  content: "";
  position: absolute;
  bottom: -4px;
  right: 2px;
  width: 8px;
  height: 8px;
  background-color: #404040;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: -1;
}

a.btnForm {
  position: relative;
}

a:active.btnForm {
  top: 6px;
  left: -6px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a:active.btnForm:before {
  bottom: 1px;
  right: 1px;
}

a:active.btnForm:after {
  top: 1px;
  left: 1px;
}

#my-form-status {
  font-size: 1.3rem;
  color: #1fbe6c;
}

#contacto::before {
  display: block;
  content: " ";
  margin-top: -60px;
  height: 60px;
  pointer-events: none;
  background-color: #808080;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #contacto form {
    width: 70%;
  }
  #contacto form input,
  textarea {
    padding: 0 1rem;
    font-size: 1.1rem;
    margin: 0.5rem 0;
  }
}

/* Large devices (desktops, 992px and up) */
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  #contacto form {
    width: 40%;
    margin-left: 3rem;
    padding: 3.5rem;
  }
  #contacto .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #contacto .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 47%;
  }
  #contacto .form-group:last-child {
    margin-left: 5%;
  }
  #contacto form input,
  textarea {
    padding: 0.3rem;
    font-size: 1rem;
    margin: 0.5rem 0;
  }
}

footer {
  padding-bottom: 1rem;
  background-color: #000;
}

footer::before {
  display: block;
  content: " ";
  margin-top: -60px;
  height: 60px;
  background-color: #606060;
  pointer-events: none;
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem 1rem 1rem 2rem;
}

footer .container .brand {
  padding: 2rem 0;
  text-align: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

footer .container .brand img {
  width: 50%;
}

footer .container .info-footer {
  color: #fff;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  text-align: center;
}

footer .container .info-footer a {
  color: #fff;
}

footer .firma {
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
}

footer svg {
  width: 20px;
  text-align: center;
  margin: auto;
  padding-top: 1rem;
  fill: #1fbe6c;
}

@media (min-width: 986px) {
  footer .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .container .brand {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  footer .container .brand img {
    width: 90%;
  }
  footer .container .info-footer {
    text-align: end;
  }
}

@-webkit-keyframes mover {
  0% {
    -webkit-transform: translate(100%);
            transform: translate(100%);
  }
}

@keyframes mover {
  0% {
    -webkit-transform: translate(100%);
            transform: translate(100%);
  }
}

@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-bob:hover,
.hvr-bob:focus,
.hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

.flip-in-hor-bottom {
  -webkit-animation: flip-in-hor-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: flip-in-hor-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes flip-in-hor-bottom {
  0% {
    -webkit-transform: rotateX(80deg);
    transform: rotateX(80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}

@keyframes flip-in-hor-bottom {
  0% {
    -webkit-transform: rotateX(80deg);
    transform: rotateX(80deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
}

/* Animacion Slide Bottom */
.slide-in-bottom {
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both;
}

@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
.fade-in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #1fbe6c;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}
/*# sourceMappingURL=styles.css.map */