@charset "UTF-8";
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css?family=Roboto");
@font-face {
  font-family: 'Futura';
  src: url(/fonts/FuturaPTBook.otf);
}

@font-face {
  font-family: 'FuturaLight';
  src: url(/fonts/FuturaPTLight.otf);
}

@font-face {
  font-family: 'Futura-bold';
  src: url(/fonts/futura-pt-bold.otf);
}

html {
  scroll-behavior: smooth;
}

*, body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  font-family: 'Futura';
}

body {
  min-height: 100vh;
}

button {
  position: absolute;
  right: 2.5em;
  top: 115px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: none;
  background-color: white;
  cursor: pointer;
  outline: none;
  padding-top: 2px;
}

button img {
  width: 25px;
}

button:active {
  border: none;
}

button:focus {
  border: none;
}

@media (max-width: 768px) {
  button {
    width: 35px;
    height: 35px;
  }
  button img {
    width: 20px;
  }
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: white;
  -webkit-animation: spin 2s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 2s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
  z-index: 1001;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ffff;
  -webkit-animation: spin 3s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 3s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: white;
  -webkit-animation: spin 1.5s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 1.5s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: black;
  z-index: 1000;
  -webkit-transform: translateY(0);
  /* Chrome, Opera 15+, Safari 3.1+ */
  /* IE 9 */
  transform: translateY(0);
  /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateY(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  /* IE 9 */
  transform: translateY(-100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateY(100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  /* IE 9 */
  transform: translateY(100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  /* IE 9 */
  transform: translateX(-100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

/* JavaScript Turned Off */
.no-js #loader-wrapper {
  display: none;
}

.no-js h1 {
  color: #222222;
}

.loading {
  width: 100%;
  height: 100vh;
  display: block;
  background-color: black;
  position: fixed;
  z-index: 900;
}

.hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 1s linear;
  transition: -webkit-transform 1s linear;
  transition: transform 1s linear;
  transition: transform 1s linear, -webkit-transform 1s linear;
}

.hide-animation {
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

@-webkit-keyframes difuminar {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.90;
  }
  100% {
    opacity: 0;
  }
}

@keyframes difuminar {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.90;
  }
  100% {
    opacity: 0;
  }
}

.fancybox-container {
  z-index: 1000 !important;
}

.fancybox-slide--html .fancybox-close-small {
  color: white !important;
}

.wrapper {
  width: 200px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  left: 15%;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: circle .5s alternate infinite ease;
          animation: circle .5s alternate infinite ease;
}

@-webkit-keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    -webkit-transform: scaleX(1.7);
            transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}

@keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    -webkit-transform: scaleX(1.7);
            transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}

.circle:nth-child(2) {
  left: 45%;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.circle:nth-child(3) {
  left: auto;
  right: 15%;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 62px;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  z-index: -1;
  left: 15%;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  -webkit-animation: shadow .5s alternate infinite ease;
          animation: shadow .5s alternate infinite ease;
}

@-webkit-keyframes shadow {
  0% {
    -webkit-transform: scaleX(1.5);
            transform: scaleX(1.5);
  }
  40% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: .7;
  }
  100% {
    -webkit-transform: scaleX(0.2);
            transform: scaleX(0.2);
    opacity: .4;
  }
}

@keyframes shadow {
  0% {
    -webkit-transform: scaleX(1.5);
            transform: scaleX(1.5);
  }
  40% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: .7;
  }
  100% {
    -webkit-transform: scaleX(0.2);
            transform: scaleX(0.2);
    opacity: .4;
  }
}

.shadow:nth-child(4) {
  left: 45%;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.wrapper span {
  position: absolute;
  top: 75px;
  font-family: 'Lato';
  font-size: 20px;
  letter-spacing: 12px;
  color: #fff;
  left: 15%;
}

.menu-movil {
  display: none;
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 300;
  /*Esta clase se aplica para oscurecer toda la pantalla por debajo del nav*/
  /*Cuando se agrega esta clase el nav aparecerá*/
  /*Algo estilo a los item del menu*/
}

@media (max-width: 768px) {
  .menu-movil {
    display: block;
  }
}

@media (max-width: 850px) and (max-height: 420px) {
  .menu-movil {
    display: none;
  }
}

.menu-movil .icono {
  margin: 0 30px;
}

@media (max-width: 450px) {
  .menu-movil .icono {
    margin: 0;
  }
}

.menu-movil .icono img {
  width: 150px;
}

@media (max-width: 450px) {
  .menu-movil .icono img {
    width: 120px;
  }
}

.menu-movil .menu-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
  padding: 0 2em;
  background-color: black;
  -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}

.menu-movil .blanco {
  color: white;
}

.menu-movil .material-icons {
  font-size: 40px;
}

.menu-movil .oscurecer {
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99;
  position: absolute;
  height: 100%;
  width: 100%;
  display: none;
}

.menu-movil nav {
  z-index: 100;
  width: 300px;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: white;
  padding: 0;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transform: translate(-300px, 0);
          transform: translate(-300px, 0);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.menu-movil nav.open {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.menu-movil nav .logo {
  padding: 30px 20px 40px 40px;
}

.menu-movil nav .logo img {
  width: 150px;
}

@media (max-width: 768px) {
  .menu-movil nav .logo img {
    width: 120px;
  }
}

.menu-movil nav li {
  padding: 1em 2em;
  list-style: none;
}

.menu-movil nav li a {
  text-align: center;
  padding: 1em;
  color: #424242;
  text-decoration: none;
  font-size: 20px;
}

.menu-movil nav li a:hover {
  border-bottom: 1px solid black;
  padding: 0.5em 1em;
}

#header {
  position: fixed;
  z-index: 9;
  width: 100%;
  height: 100px;
  background-color: black;
}

@media (max-width: 768px) {
  #header {
    display: none;
  }
}

@media (max-width: 850px) and (max-height: 420px) {
  #header {
    display: block;
  }
}

#header .menu-desk {
  width: 100%;
  height: 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;
}

#header .menu-desk .icono {
  margin: 0 30px;
}

#header .menu-desk .icono img {
  width: 150px;
}

@media (min-width: 1600px) {
  #header .menu-desk .icono img {
    width: 170px;
  }
}

#header .menu-desk .menu #menu {
  display: none;
}

@media (max-width: 768px) {
  #header .menu-desk .menu #menu {
    display: block;
  }
}

#header .menu-desk .menu .blanco {
  color: white;
}

#header .menu-desk .menu #lista {
  width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  margin: 0 30px;
}

@media (max-width: 850px) and (max-height: 420px) {
  #header .menu-desk .menu #lista {
    width: 400px;
  }
}

#header .menu-desk .menu #lista li {
  width: 80px;
  list-style: none;
  border-bottom: 1px solid black;
  padding-bottom: 8px;
  text-align: center;
}

#header .menu-desk .menu #lista li:hover {
  border-bottom: 1px solid white;
}

#header .menu-desk .menu #lista li a {
  text-decoration: none;
  color: white;
}

.section {
  height: 100vh;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

@media (max-width: 768px) {
  .galeria {
    height: auto;
  }
}

@media (max-width: 768px) {
  .services-content {
    height: auto;
  }
}

#fullpage {
  overflow: hidden;
}

#fullpage .video {
  background-color: black;
  height: 100%;
}

#fullpage .video video {
  width: 100%;
  height: 92vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 450px) {
  #fullpage .video video {
    height: 88vh;
  }
}

@media (max-width: 850px) and (max-height: 420px) {
  #fullpage .video video {
    height: 100%;
  }
}

#fullpage .video .footer-home {
  width: 100%;
  height: 8vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: black;
}

@media (max-width: 450px) {
  #fullpage .video .footer-home {
    height: 12vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 850px) and (max-height: 420px) {
  #fullpage .video .footer-home {
    height: 60px;
  }
}

#fullpage .video .footer-home .social {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 450px) {
  #fullpage .video .footer-home .social {
    width: 100%;
    height: 50%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#fullpage .video .footer-home .social a {
  background-color: white;
  margin-right: 30px;
  padding: 10px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
}

@media (max-width: 450px) {
  #fullpage .video .footer-home .social a {
    margin-right: 22px;
    width: 15px;
    height: 15px;
    margin-top: 10px;
  }
}

#fullpage .video .footer-home .social a:first-child {
  margin-left: 30px;
}

@media (max-width: 450px) {
  #fullpage .video .footer-home .social a:first-child {
    margin-left: 0;
  }
}

#fullpage .video .footer-home .social a img {
  width: 17px;
}

@media (max-width: 450px) {
  #fullpage .video .footer-home .social a img {
    width: 16px;
  }
}

#fullpage .video .footer-home .social a:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#fullpage .video .footer-home .contact {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: white;
}

@media (max-width: 450px) {
  #fullpage .video .footer-home .contact {
    width: 100%;
    height: 50%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#fullpage .video .footer-home .contact a {
  text-decoration: none;
  color: white;
}

@media (max-width: 450px) {
  #fullpage .video .footer-home .contact a {
    margin-left: 20px;
  }
}

#fullpage .video .footer-home .contact a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#fullpage .video .footer-home .contact .correo {
  font-size: 18px;
  margin-right: 30px;
  margin-left: 30px;
  cursor: pointer;
}

@media (max-width: 450px) {
  #fullpage .video .footer-home .contact .correo {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 16px;
  }
}

#fullpage .video .footer-home .contact .correo:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#fullpage .texto-ondas {
  position: relative;
  background-color: black;
}

#fullpage .texto-ondas .ondas {
  position: absolute;
  top: 0;
  left: -90px;
  width: 126%;
  height: 100%;
  background-position: right;
  background-repeat: no-repeat;
  background-image: url(/img/lineas.svg);
  background-size: cover;
}

@media (max-width: 450px) {
  #fullpage .texto-ondas .ondas {
    left: -36px;
  }
}

#fullpage .texto-ondas p {
  width: 900px;
  height: 231px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  color: white;
  font-family: 'FuturaLight';
  font-size: 60px;
  text-align: center;
}

@media (max-width: 768px) {
  #fullpage .texto-ondas p {
    width: 700px;
    font-size: 50px;
  }
}

@media (max-width: 450px) {
  #fullpage .texto-ondas p {
    width: 300px;
    height: 200px;
    font-size: 25px;
  }
}

@media (max-width: 850px) and (max-height: 420px) {
  #fullpage .texto-ondas p {
    width: 500px;
    font-size: 40px;
  }
}

#fullpage .texto-ondas .texto-final {
  width: 600px;
}

@media (max-width: 768px) {
  #fullpage .texto-ondas .texto-final {
    width: 500px;
  }
}

@media (max-width: 450px) {
  #fullpage .texto-ondas .texto-final {
    width: 290px;
    height: 200px;
    font-size: 25px;
  }
}

#fullpage .texto-ondas-black {
  position: relative;
}

#fullpage .texto-ondas-black .ondas-black {
  position: absolute;
  top: 0;
  left: -90px;
  width: 126%;
  height: 100%;
  background-position: right;
  background-repeat: no-repeat;
  background-image: url(/img/lineas-negra.svg);
  background-size: cover;
}

@media (max-width: 450px) {
  #fullpage .texto-ondas-black .ondas-black {
    left: -36px;
  }
}

#fullpage .texto-ondas-black p {
  width: 900px;
  height: 231px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  color: black;
  font-family: 'FuturaLight';
  font-size: 60px;
  text-align: center;
}

@media (max-width: 768px) {
  #fullpage .texto-ondas-black p {
    width: 700px;
    font-size: 50px;
  }
}

@media (max-width: 450px) {
  #fullpage .texto-ondas-black p {
    width: 300px;
    height: 200px;
    font-size: 25px;
  }
}

@media (max-width: 850px) and (max-height: 420px) {
  #fullpage .texto-ondas-black p {
    width: 500px;
    font-size: 40px;
  }
}

#fullpage .objetivo {
  background-position: center;
  background-image: url(/img/back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  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;
}

#fullpage .objetivo .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 87%;
}

@media (min-width: 1600px) {
  #fullpage .objetivo .flex {
    width: 80%;
  }
}

@media (max-width: 1024px) {
  #fullpage .objetivo .flex {
    width: 90%;
  }
}

#fullpage .objetivo .flex.first {
  font-size: 80px;
}

@media (min-width: 1600px) {
  #fullpage .objetivo .flex.first {
    font-size: 100px;
  }
}

@media (max-width: 1024px) {
  #fullpage .objetivo .flex.first {
    font-size: 68px;
  }
}

@media (max-width: 768px) {
  #fullpage .objetivo .flex.first {
    font-size: 50px;
  }
}

@media (max-width: 450px) {
  #fullpage .objetivo .flex.first {
    font-size: 25px;
  }
}

#fullpage .objetivo .flex.second {
  font-size: 75px;
}

@media (min-width: 1600px) {
  #fullpage .objetivo .flex.second {
    font-size: 90px;
  }
}

@media (max-width: 1024px) {
  #fullpage .objetivo .flex.second {
    font-size: 62px;
  }
}

@media (max-width: 768px) {
  #fullpage .objetivo .flex.second {
    font-size: 45px;
  }
}

@media (max-width: 450px) {
  #fullpage .objetivo .flex.second {
    font-size: 22px;
  }
}

#fullpage .objetivo .flex.third {
  font-size: 70px;
}

@media (min-width: 1600px) {
  #fullpage .objetivo .flex.third {
    font-size: 80px;
  }
}

@media (max-width: 1024px) {
  #fullpage .objetivo .flex.third {
    font-size: 58px;
  }
}

@media (max-width: 768px) {
  #fullpage .objetivo .flex.third {
    font-size: 42px;
  }
}

@media (max-width: 450px) {
  #fullpage .objetivo .flex.third {
    font-size: 23px;
  }
}

#fullpage .objetivo .flex.fourth {
  font-size: 95px;
}

@media (min-width: 1600px) {
  #fullpage .objetivo .flex.fourth {
    font-size: 110px;
  }
}

@media (max-width: 1024px) {
  #fullpage .objetivo .flex.fourth {
    font-size: 78px;
  }
}

@media (max-width: 768px) {
  #fullpage .objetivo .flex.fourth {
    font-size: 57px;
  }
}

@media (max-width: 450px) {
  #fullpage .objetivo .flex.fourth {
    font-size: 27px;
  }
}

#fullpage .objetivo .full {
  width: 87%;
  font-size: 146px;
  line-height: 1;
}

@media (min-width: 1600px) {
  #fullpage .objetivo .full {
    font-size: 188px;
    width: 80%;
  }
}

@media (max-width: 1024px) {
  #fullpage .objetivo .full {
    width: 90%;
    font-size: 115px;
  }
}

@media (max-width: 768px) {
  #fullpage .objetivo .full {
    font-size: 86px;
  }
}

@media (max-width: 450px) {
  #fullpage .objetivo .full {
    font-size: 42px;
  }
}

#fullpage .objetivo p {
  color: white;
  font-family: 'Futura-bold';
  line-height: 1;
}

@media (max-width: 1024px) {
  #fullpage .objetivo p {
    line-height: normal;
  }
}

@media (max-width: 450px) {
  #fullpage .objetivo p {
    line-height: 1.5;
  }
}

#fullpage .contenedor-imagenes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 3px;
  height: 100%;
}

#fullpage .contenedor-imagenes .imagen {
  width: 33.3%;
  position: relative;
  height: 250px;
  margin-bottom: 5px;
  cursor: pointer;
}

@media (max-width: 768px) {
  #fullpage .contenedor-imagenes .imagen {
    width: 100%;
    margin-bottom: 0;
  }
}

#fullpage .contenedor-imagenes .imagen .section-img {
  height: 100%;
  background-color: black;
}

#fullpage .contenedor-imagenes .imagen .section-img img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  #fullpage .contenedor-imagenes .imagen .section-img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 450px) {
  #fullpage .contenedor-imagenes .imagen .section-img img {
    -o-object-fit: fill;
       object-fit: fill;
  }
}

#fullpage .contenedor-imagenes .imagen .caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 300px;
  height: 100px;
}

#fullpage .contenedor-imagenes .imagen .caption p {
  display: none;
  color: white;
  text-align: center;
  margin: 0;
  font-family: 'FuturaLight';
  font-size: 20px;
}

#fullpage .contenedor-imagenes .imagen .caption p:first-child {
  margin-bottom: 30px;
}

#fullpage .contenedor-imagenes .fix-publi {
  height: 100%;
}

@media (max-width: 768px) {
  #fullpage .contenedor-imagenes .fix-publi {
    height: 700px;
  }
}

#fullpage .contenedor-imagenes.services .imagen .section-img p {
  font-family: 'FuturaLight';
  color: white;
  font-size: 50px;
  width: 240px !important;
  text-align: center;
  text-shadow: 3px 5px 3px #2A2929;
}

#fullpage .contenedor-imagenes.services .imagen .caption p:first-child {
  margin-bottom: 0;
}

#fullpage .contenedor-imagenes.services .imagen .section-img {
  position: relative;
}

#fullpage .contenedor-imagenes.services .imagen .section-img p {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 300px;
  height: 100px;
}

#fullpage .contenedor-imagenes.services .imagen:hover .section-img p {
  display: none;
}

#fullpage .contenedor-imagenes.services .imagen:hover .caption {
  z-index: 8;
}

#fullpage .contenedor-imagenes .imagen:hover .section-img img {
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#fullpage .contenedor-imagenes .imagen:hover .caption p {
  display: block;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

#fullpage .contacto {
  height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: black;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1024px) {
  #fullpage .contacto {
    height: 60vh;
  }
}

@media (max-width: 450px) {
  #fullpage .contacto {
    height: 90vh;
  }
}

@media (max-width: 850px) and (max-height: 420px) {
  #fullpage .contacto {
    height: 110vh;
  }
}

#fullpage .contacto .contacto-flex {
  height: 90%;
  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;
  margin-bottom: 40px;
}

@media (min-width: 1600px) {
  #fullpage .contacto .contacto-flex {
    margin-bottom: 80px;
  }
}

@media (max-width: 450px) {
  #fullpage .contacto .contacto-flex {
    height: 100%;
  }
}

#fullpage .contacto .contacto-flex .title {
  text-align: center;
  font-family: 'FuturaLight';
  font-size: 40px;
  height: 40%;
  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;
}

@media (max-width: 450px) {
  #fullpage .contacto .contacto-flex .title {
    height: 20%;
  }
}

#fullpage .contacto .contacto-flex .social-icon {
  height: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 450px) {
  #fullpage .contacto .contacto-flex .social-icon {
    width: 100%;
    height: 20%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#fullpage .contacto .contacto-flex .social-icon a {
  background-color: white;
  margin-right: 50px;
  padding: 10px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
}

@media (min-width: 1600px) {
  #fullpage .contacto .contacto-flex .social-icon a {
    padding: 13px;
    width: 22px;
    height: 21px;
  }
}

@media (max-width: 1024px) {
  #fullpage .contacto .contacto-flex .social-icon a {
    padding: 13px;
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 450px) {
  #fullpage .contacto .contacto-flex .social-icon a {
    margin-right: 22px;
    width: 15px;
    height: 15px;
  }
}

#fullpage .contacto .contacto-flex .social-icon a:first-child {
  margin-left: 0px;
}

@media (max-width: 450px) {
  #fullpage .contacto .contacto-flex .social-icon a:first-child {
    margin-left: 0;
  }
}

#fullpage .contacto .contacto-flex .social-icon a:last-child {
  margin: 0;
}

#fullpage .contacto .contacto-flex .social-icon a img {
  width: 17px;
}

@media (min-width: 1600px) {
  #fullpage .contacto .contacto-flex .social-icon a img {
    width: 22px;
  }
}

@media (max-width: 1024px) {
  #fullpage .contacto .contacto-flex .social-icon a img {
    width: 24px;
  }
}

@media (max-width: 450px) {
  #fullpage .contacto .contacto-flex .social-icon a img {
    width: 16px;
  }
}

#fullpage .contacto .contacto-flex .social-icon a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#fullpage .contacto .contacto-flex .datos {
  height: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0 30px;
}

@media (max-width: 450px) {
  #fullpage .contacto .contacto-flex .datos {
    height: 60%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

#fullpage .contacto .contacto-flex .datos .copy-r {
  width: 40%;
}

@media (max-width: 450px) {
  #fullpage .contacto .contacto-flex .datos .copy-r {
    width: 100%;
  }
}

#fullpage .contacto .contacto-flex .datos .copy-r p {
  font-size: 20px;
}

@media (max-width: 450px) {
  #fullpage .contacto .contacto-flex .datos .copy-r p {
    text-align: center;
  }
}

#fullpage .contacto .contacto-flex .datos .social {
  width: 20%;
  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;
}

@media (max-width: 450px) {
  #fullpage .contacto .contacto-flex .datos .social {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

#fullpage .contacto .contacto-flex .datos .social a {
  font-size: 20px;
  color: white;
  text-decoration: none;
  margin: 3px;
}

#fullpage .contacto .contacto-flex .datos .ubicacion {
  width: 40%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 450px) {
  #fullpage .contacto .contacto-flex .datos .ubicacion {
    width: 100%;
    margin-right: 0;
  }
}

#fullpage .contacto .contacto-flex .datos .ubicacion p {
  width: 300px;
  text-align: right;
  font-size: 20px;
}

@media (max-width: 450px) {
  #fullpage .contacto .contacto-flex .datos .ubicacion p {
    text-align: center;
    font-size: 19px;
    width: auto;
  }
}

#fullpage .contacto .contacto-flex .datos .ubicacion p a {
  font-size: 20px;
  color: white;
  text-decoration: none;
}

.g-recaptcha {
  margin-top: 30px;
  margin-bottom: 0px !important;
}

#modal {
  width: 80%;
  height: 90%;
  padding: 0 !important;
  background-color: black;
}

@media (min-width: 1600px) {
  #modal {
    width: 80%;
    height: 80%;
  }
}

@media (max-width: 1024px) {
  #modal {
    width: 80%;
    height: 60%;
  }
}

@media (max-width: 768px) {
  #modal {
    width: 80%;
    height: 80%;
  }
}

@media (max-width: 450px) {
  #modal {
    width: 90%;
    height: 700px;
  }
}

#modal .container-modal {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  overflow-y: auto;
}

@media (min-width: 1600px) {
  #modal .container-modal {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 1024px) {
  #modal .container-modal {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#modal .container-modal h1 {
  font-family: 'FuturaLight';
  text-align: center;
  margin: 30px;
}

@media (max-width: 450px) {
  #modal .container-modal h1 {
    text-align: center;
  }
}

#modal .container-modal h4 {
  font-family: 'FuturaLight';
}

#modal .container-modal .formulario {
  width: 80%;
  height: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1600px) {
  #modal .container-modal .formulario {
    width: 80%;
    height: 75%;
  }
}

@media (max-width: 1024px) {
  #modal .container-modal .formulario {
    width: 80%;
    height: 55%;
  }
}

@media (max-width: 450px) {
  #modal .container-modal .formulario {
    width: 100%;
    height: 70%;
  }
}

#modal .container-modal .formulario form {
  height: 100%;
  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;
  font-size: 22px;
  color: white;
}

#modal .container-modal .formulario form .aviso-priv {
  font-family: 'FuturaLight';
  font-size: 15px;
  margin: 10px 0;
  width: 100%;
  text-align: right;
}

#modal .container-modal .formulario form .aviso-priv a {
  color: white;
  text-decoration: none;
}

#modal .container-modal .formulario form .aviso-priv a:hover {
  border-bottom: 1px solid white;
}

#modal .container-modal .formulario form .row-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#modal .container-modal .formulario form .row-input label {
  font-family: 'FuturaLight';
}

#modal .container-modal .formulario form .row-input input {
  width: 300px;
  height: 32px;
  border: none;
  font-size: 20px;
  padding-left: 15px;
  margin-top: 15px;
}

#modal .container-modal .formulario form .row-input input:focus {
  border: none;
  outline: none;
}

@media (min-width: 1600px) {
  #modal .container-modal .formulario form .row-input input {
    width: 350px;
    height: 38px;
  }
}

@media (max-width: 450px) {
  #modal .container-modal .formulario form .row-input input {
    height: 40px;
  }
}

#modal .container-modal .formulario form input[type=submit] {
  width: 250px;
  height: 38px;
  cursor: pointer;
  font-size: 20px;
  margin-top: 20px;
  border: 1px solid black;
}

#modal .container-modal .formulario form input[type=submit]:focus {
  border: none;
  outline: none;
  background-color: black;
  border: 1px solid white;
  color: white;
}

#modal .container-modal .formulario form input[type=submit]:hover {
  background-color: black;
  border: 1px solid white;
  color: white;
}

#politica-privacidad {
  width: 80%;
  background-color: black;
  color: white;
}

@media (min-width: 1600px) {
  #politica-privacidad {
    width: 70%;
  }
}

@media (max-width: 450px) {
  #politica-privacidad {
    width: 95%;
    padding: 44px 15px;
  }
}

#politica-privacidad .container-politica {
  height: 100%;
  padding: 0 90px;
}

@media (min-width: 1600px) {
  #politica-privacidad .container-politica {
    padding: 0 90px;
  }
}

@media (max-width: 1024px) {
  #politica-privacidad .container-politica {
    padding: 0 87px;
  }
}

@media (max-width: 768px) {
  #politica-privacidad .container-politica {
    padding: 0 36px;
  }
}

@media (max-width: 450px) {
  #politica-privacidad .container-politica {
    padding: 0px;
  }
}

#politica-privacidad .container-politica h1 {
  font-family: 'FuturaLight';
  text-align: center;
  margin-bottom: 50px;
}

#politica-privacidad .container-politica p {
  font-family: 'FuturaLight';
  text-align: justify;
  text-indent: 50px;
}

@media (max-width: 450px) {
  #politica-privacidad .container-politica p {
    font-size: 15px;
    text-indent: 30px;
  }
}
