body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  color: #fff;
}

main {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  overflow: auto;
}

section {
  width: 100%;
  margin: 0;
  padding: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes v-right {
  0% {
    height: 80px;
  }
  2.5% {
    height: 80px;
  }
  50% {
    height: 0;
  }
  87.5% {
    height: 0;
  }
  100% {
    height: 0;
  }
}
@keyframes v-left {
  0% {
    height: 80px;
  }
  12.5% {
    height: 80px;
  }
  50% {
    height: 80px;
  }
  87.5% {
    height: 0;
  }
  100% {
    height: 0;
  }
}
@keyframes v-center {
  0% {
    opacity: 0;
    height: 0;
    display: block;
  }
  87.5% {
    opacity: 0;
    height: 100px;
  }
  100% {
    opacity: 1;
    height: 100px;
    display: none;
  }
}
.loader {
  width: 100%;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 56;
  position: fixed;
}
.loader__container {
  position: relative;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #06fd15;
  opacity: 0;
  animation: fade-in 0.25s ease-in-out forwards;
}
.loader__left {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 80px;
  background-color: #06fd15;
  z-index: 2;
  border-radius: 50px 0 0 50px;
  animation-delay: 1s;
  opacity: 1;
  animation: v-left 3.75s ease-in-out infinite;
}
.loader__right {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 80px;
  background-color: #06fd15;
  z-index: 2;
  opacity: 1;
  animation: v-right 3.75s ease-in-out infinite;
}
.loader__center {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  z-index: 3;
  background-color: #06fd15;
  opacity: 0;
  animation: v-center 4s ease infinite;
}

.burger {
  position: fixed;
  left: 22px;
  top: 17px;
  display: none;
  z-index: 11;
}
@media (max-width: 1115px) {
  .burger {
    display: block;
  }
}

header {
  position: fixed;
  z-index: 55;
  left: calc((100vw - 1115px) * 0.5);
  top: 0;
  width: 100%;
  max-width: 1115px;
  display: block;
}
header nav {
  display: block;
}
@media (max-width: 1115px) {
  header nav {
    display: none;
  }
}
@media (max-width: 1115px) {
  header nav.active {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    z-index: 5;
    width: 100%;
    height: 100%;
    background-color: #54585e;
  }
}
header nav > ul {
  margin: 0;
  padding: 47px 0 0;
  display: flex;
  justify-content: flex-end;
}
header nav > ul li {
  list-style: none;
  margin: 0 16px 0 0;
  padding: 0;
  display: inline-block;
}
header nav > ul li:last-child {
  margin: 0;
}
@media (max-width: 1115px) {
  header nav > ul li {
    margin-bottom: 48px;
    display: block;
  }
}
@media (max-width: 1115px) {
  header nav > ul {
    width: 100vw;
    height: auto;
    display: block;
    z-index: 5;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0 0 0 24px;
  }
}
header nav a {
  color: #898b8a;
  text-decoration: none;
  transition: all ease-in-out 0.35s;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
}
header nav a:hover {
  color: #ccc;
  transition: all ease-in-out 0.35s;
}
header nav a.active {
  color: #fff;
}
@media (max-width: 1115px) {
  header nav a {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: #000;
  }
}
header nav ul > li.mobile {
  display: none;
}
@media (max-width: 1115px) {
  header nav ul > li.mobile {
    display: block;
  }
}
header nav li > ul {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}
header nav li > ul li {
  list-style: none;
  margin: 0 24px 0 0;
  padding: 0;
  display: inline-block;
}
header nav li > ul li:last-child {
  margin: 0;
}
@media (max-width: 1115px) {
  header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 20;
    width: 100vw;
    height: 100vh;
    display: none;
  }
}
header .close {
  display: none;
}
@media (max-width: 1115px) {
  header .close {
    position: absolute;
    left: 28px;
    top: 18px;
    z-index: 5;
  }
  header .close img {
    width: 100%;
    height: auto;
  }
}
header .close.active {
  display: block;
}
header.active {
  display: block;
}

.fixed__logo--img {
  display: none;
}
@media (max-width: 1115px) {
  .fixed__logo--img {
    width: 59px;
    position: absolute;
    right: 24px;
    z-index: 15;
    display: block;
    top: 49px;
  }
  .fixed__logo--img img {
    width: 100%;
    height: auto;
  }
}

.home {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.home .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 83%;
  height: 100vh;
  background: url("../img/home-bg-1.jpg") no-repeat right center;
  background-size: cover;
  z-index: 1;
}
.home .bg img {
  width: 100%;
  height: auto;
}
@media (max-width: 1115px) {
  .home .bg {
    height: 100vh;
    width: 100%;
    max-width: 100%;
  }
}
.home .verne {
  position: absolute;
  right: 70vh;
  left: auto !important;
  z-index: 2;
  bottom: -160px;
  width: 87.77%;
  height: 56.25vw;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 177.778vh) {
  .home .verne {
    height: 100vh;
    max-height: 100%;
    width: 100vh;
    right: 93vh;
    left: auto !important;
    opacity: 1;
  }
}
.home .verne .picture {
  height: auto;
  height: calc(100vh + 160px);
}
@media (min-width: 177.778vh) {
  .home .verne .picture {
    height: calc(100vh + 160px);
  }
}
@media (max-width: 1115px) {
  .home .verne .picture {
    width: auto;
    height: 100vh;
  }
}
.home .verne__container {
  position: relative;
}
@media (max-width: 1115px) {
  .home .verne__container {
    left: 60px;
  }
}
.home .verne .elements {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.home .verne .dot-1 {
  position: absolute;
  width: 1.43%;
  z-index: 2;
  left: 68.75%;
  top: 28.95%;
  opacity: 0;
}
@media (min-width: 177.778vh) {
  .home .verne .dot-1 {
    top: 28.63%;
  }
}
.home .verne .dot-1 img {
  width: 100%;
  height: auto;
}
.home .verne .dot-2 {
  position: absolute;
  width: 1.55%;
  z-index: 2;
  left: 70.5%;
  top: 33.45%;
  opacity: 0;
}
@media (min-width: 177.778vh) {
  .home .verne .dot-2 {
    top: 33.1%;
  }
}
.home .verne .dot-2 img {
  width: 100%;
  height: auto;
}
.home .verne .dot-3 {
  position: absolute;
  width: 1.53%;
  z-index: 2;
  left: 72.75%;
  top: 36%;
  opacity: 0;
}
@media (min-width: 177.778vh) {
  .home .verne .dot-3 {
    top: 35.85%;
  }
}
.home .verne .dot-3 img {
  width: 100%;
  height: auto;
}
.home .verne .dot-4 {
  position: absolute;
  width: 1.35%;
  z-index: 2;
  left: 76.1%;
  top: 36.75%;
  opacity: 0;
}
@media (min-width: 177.778vh) {
  .home .verne .dot-4 {
    top: 36.4%;
  }
}
.home .verne .dot-4 img {
  width: 100%;
  height: auto;
}
.home .verne .dot-5 {
  position: absolute;
  width: 1.6%;
  z-index: 2;
  left: 85.65%;
  top: 38.93%;
  opacity: 0;
}
@media (min-width: 177.778vh) {
  .home .verne .dot-5 {
    top: 38.58%;
  }
}
.home .verne .dot-5 img {
  width: 100%;
  height: auto;
}
.home .verne .dot-6 {
  position: absolute;
  width: 1.15%;
  z-index: 2;
  left: 87.95%;
  top: 40.3%;
  opacity: 0;
}
@media (min-width: 177.778vh) {
  .home .verne .dot-6 {
    top: 40%;
  }
}
.home .verne .dot-6 img {
  width: 100%;
  height: auto;
}
.home .verne .glass-left {
  position: absolute;
  width: 6%;
  left: 73.2%;
  top: 26%;
  opacity: 1;
  z-index: 2;
  -webkit-mask-image: url("../img/glass-left.svg");
          mask-image: url("../img/glass-left.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.home .verne .glass-left img {
  position: relative;
  left: -110px;
  top: -74px;
}
.home .verne .glass-right {
  position: absolute;
  left: 89.25%;
  top: 30.35%;
  width: 4.3%;
  opacity: 1;
  z-index: 2;
  -webkit-mask-image: url("../img/glass-right.svg");
          mask-image: url("../img/glass-right.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.home .verne .glass-right img {
  position: relative;
  left: -110px;
  top: -74px;
}
.home .verne .glass-center {
  position: absolute;
  left: 81.8%;
  top: 27.45%;
  width: 3.2%;
  opacity: 1;
  z-index: 2;
  -webkit-mask-image: url("../img/glass-center.svg");
          mask-image: url("../img/glass-center.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.home .verne .glass-center img {
  position: relative;
  left: -110px;
  top: -74px;
}
@media (max-width: 1115px) {
  .home .verne {
    left: -475px;
    top: 40px;
    height: 100vh;
    z-index: 2;
  }
}
.home .v {
  position: absolute;
  left: -560px;
  top: 0;
  height: 100%;
  z-index: 3;
}
.home .v img {
  width: auto;
  height: 100%;
}
@media (max-width: 1115px) {
  .home .v {
    display: none;
  }
}
.home .v__right {
  position: absolute;
  left: 2px;
  top: 0;
  width: 400px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 0;
}
@media (max-width: 1115px) {
  .home .v__right {
    position: absolute;
    left: 64%;
    top: 0;
    width: 35.98%;
    height: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 0% 100%);
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 0;
  }
}
.home .v__left {
  position: absolute;
  left: -697px;
  top: 0;
  width: 700px;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 42.85% 0, 100% 100%, 57.15% 100%);
          clip-path: polygon(0 0, 42.85% 0, 100% 100%, 57.15% 100%);
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 0;
}
@media (max-width: 1115px) {
  .home .v__left {
    position: absolute;
    left: 0;
    top: 0;
    width: 64%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 5;
    display: block;
    -webkit-clip-path: polygon(0 0, 43.87% 0, 100% 100%, 56.43% 100%);
            clip-path: polygon(0 0, 43.87% 0, 100% 100%, 56.43% 100%);
  }
}
.home .v__left--black {
  display: none;
}
@media (max-width: 1115px) {
  .home .v__left--black {
    display: block;
    position: absolute;
    left: 64%;
    top: 0;
    width: 35.98%;
    height: 100%;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(100% 0, 100% 100%, 0% 100%);
    background-color: black;
    z-index: 1;
  }
}
.home__container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1115px;
  height: 100%;
}
.home__container::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: calc((100vw - 1115px) * 0.5);
  height: 100%;
  background-color: #000;
  z-index: 3;
}
.home .wrapper__text {
  height: 100vh;
  position: absolute;
  left: 405px;
  z-index: 2;
  width: 711px;
}
@media (max-width: 1115px) {
  .home .wrapper__text {
    width: 100%;
    left: 0;
    overflow: hidden;
  }
}
@media (max-width: 1115px) {
  .home .wrapper__text--container {
    left: -47%;
    position: relative;
    width: 230%;
    height: 100%;
  }
}
.home__text {
  background-color: #000;
  width: 711px;
  position: relative;
  left: 3px;
  top: 0;
  z-index: 2;
  height: 100%;
  -webkit-clip-path: polygon(55.79% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(55.79% 0, 100% 0, 100% 100%, 0 100%);
  color: #a5a8a7;
  display: block;
}
.home__text strong {
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1115px) {
  .home__text {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-clip-path: none;
            clip-path: none;
    background-color: transparent;
    width: 100%;
    height: 100vh;
  }
}
.home__text--mobile {
  display: none;
}
@media (max-width: 1115px) {
  .home__text--mobile {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    width: 133px;
    height: 210px;
    padding: 16px;
    box-sizing: border-box;
  }
}
.home__text--mobile .txt {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #a5a8a7;
  text-align: right;
  margin-top: 108px;
}
.home .text__slanted {
  width: 262px;
  top: 50%;
  transform: translateY(-50%);
  left: 231px;
  position: absolute;
  font-size: 19px;
}
@media (max-width: 1115px) {
  .home .text__slanted {
    display: none;
    font-size: 18px;
  }
}
.home .slanted__shape {
  width: 69px;
  height: 140px;
  shape-outside: polygon(95% 0, 100% 0, 5% 100%, 0 100%);
  float: left;
  /* the following three lines are only for demonstration purposes */
  background: transparent;
  -webkit-clip-path: polygon(95% 0, 100% 0, 5% 100%, 0 100%);
          clip-path: polygon(95% 0, 100% 0, 5% 100%, 0 100%);
}
.home__logo-verne {
  position: absolute;
  right: 10px;
  bottom: 119px;
  z-index: 3;
  width: 186px;
  height: 88px;
}
.home__logo-verne img {
  width: 100%;
  height: auto;
}
@media (max-width: 1115px) {
  .home__logo-verne {
    right: 4px;
    bottom: 92px;
    width: 146px;
    z-index: 5;
  }
  .home__logo-verne img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1115px) {
  .home {
    height: 100vh;
  }
}

.que {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 2;
}
@media (max-width: 1115px) {
  .que {
    height: 100vh;
  }
}
@keyframes horizontal-move {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(-20%, -50%);
  }
}
@keyframes bg-move-h {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-7.5%);
  }
}
.que .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 72.64%;
  height: 100vh;
  background: url("../img/bg-globo.jpg") no-repeat center center;
  background-size: cover;
  z-index: 1;
  opacity: 1;
}
.que .bg.horizontal-move {
  animation: bg-move-h 20s infinite alternate;
}
@media (max-width: 1115px) {
  .que .bg {
    background: url("../img/bg-globo-mobile.jpg") no-repeat left top;
    background-size: cover;
    height: 100vh;
  }
}
.que .bg img {
  width: 100%;
  height: auto;
}
@media (max-width: 1115px) {
  .que .bg {
    width: 110%;
    height: 100vh;
  }
}
.que__container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1115px;
  height: 100vh;
}
.que__container::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: calc((100vw - 1115px) * 0.5);
  height: 100%;
  background-color: #000;
  z-index: 3;
}
.que__text {
  background-color: #000;
  width: 100%;
  max-width: 1110px;
  position: relative;
  left: 5px;
  top: 0;
  z-index: 2;
  height: 100%;
  -webkit-clip-path: polygon(36.29% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(36.29% 0, 100% 0, 100% 100%, 0 100%);
  color: #a5a8a7;
}
.que__text strong {
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1115px) {
  .que__text {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
  }
}
.que__text--mobile {
  position: absolute;
  z-index: 5;
  top: 100px;
  left: 48px;
  display: none;
}
@media (max-width: 1115px) {
  .que__text--mobile {
    display: block;
  }
}
.que__text--mobile ul {
  margin: 0;
  padding: 0;
}
.que__text--mobile ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Futura";
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.que .globo {
  position: absolute;
  top: calc(50% - 40px);
  transform: translateY(-50%);
  left: 0;
  z-index: 3;
  height: 35.89%;
  opacity: 1;
}
.que .globo.vert-move {
  animation: horizontal-move 15s infinite alternate;
}
.que .globo img {
  width: auto;
  height: 100%;
  max-height: 320px;
}
@media screen and (max-width: 991px) {
  .que .globo {
    position: absolute;
    top: 320px;
    transform: translateY(-50%);
    left: 70px;
    z-index: 3;
    height: 32.89%;
  }
}
@media screen and (max-width: 414px) {
  .que .globo {
    position: absolute;
    top: 180px;
    transform: translateY(-50%);
    left: 50px;
    z-index: 3;
    height: 27.89%;
  }
}
.que .text__slanted {
  width: 362px;
  top: 50%;
  transform: translateY(-50%);
  left: 250px;
  position: absolute;
  font-size: 16px;
  display: block;
  line-height: 25px;
  opacity: 1;
}
@media (max-width: 1115px) {
  .que .text__slanted {
    display: none;
  }
}
.que .slanted__shape {
  width: 69px;
  height: 135px;
  shape-outside: polygon(95% 0, 100% 0, 5% 100%, 0 100%);
  float: left;
  background: transparent;
  -webkit-clip-path: polygon(95% 0, 100% 0, 5% 100%, 0 100%);
          clip-path: polygon(95% 0, 100% 0, 5% 100%, 0 100%);
}
.que__lateral {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  background-color: #000;
  height: 482px;
  width: 124px;
  border-radius: 0 0 67px 67px;
}
.que__lateral::after {
  content: "";
  position: absolute;
  left: 0;
  top: 95%;
  width: 100%;
  height: 79px;
  background-color: #000;
  z-index: 2;
}
@media (max-width: 1115px) {
  .que__lateral {
    display: none;
  }
}
.que__lateral > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.que__lateral ul {
  margin: 8px 0;
  padding: 50px 0 0;
}
.que__lateral ul li {
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
  display: block;
  text-align: center;
  font-family: "Futura";
  font-weight: bold;
  font-size: 23px;
  color: #54585e;
  text-transform: uppercase;
  background-color: #000;
  opacity: 0;
}
.que__lateral--mobile {
  display: none;
}
@media (max-width: 1115px) {
  .que__lateral--mobile {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 24px;
    bottom: 56px;
    z-index: 5;
    width: 260px;
    justify-content: flex-end;
    opacity: 1;
  }
}
.que__lateral--mobile .img {
  width: 100%;
  margin-bottom: 60px;
  display: block;
  text-align: right;
}
@media (max-width: 1115px) {
  .que__lateral--mobile .img {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1115px) {
  .que__lateral--mobile .img img {
    width: 100%;
    height: auto;
    max-width: 14%;
  }
}
@media screen and (max-width: 414px) {
  .que__lateral--mobile .img img {
    width: 100%;
    height: auto;
    max-width: 14%;
  }
}
@media screen and (max-width: 1115px) {
  .que__lateral--mobile .txt {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #a5a8a7;
    text-align: right;
    width: 100%;
    line-height: 24px;
  }
}
@media screen and (max-width: 414px) {
  .que__lateral--mobile .txt {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #a5a8a7;
    text-align: right;
    width: 100%;
    line-height: 24px;
  }
}
.que .lateral__globo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 89px;
  width: 45%;
  z-index: 2;
}
.que .lateral__globo img {
  width: 100%;
  height: auto;
}
.que .lateral__items {
  position: absolute;
  left: 0;
  top: 89px;
  height: 313px;
  width: 100%;
  z-index: 3;
}
.que .lateral__bg {
  position: absolute;
  left: 0;
  top: 89px;
  height: 313px;
  width: 100%;
  z-index: 1;
  background: url("../img/bg-dotted.svg") repeat-y center center;
}
.que .lateral__logo {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 79px;
  width: 100%;
  z-index: 4;
}
.que .lateral__logo img {
  width: 100%;
  height: auto;
  max-width: 79px;
}
.que__logo--mobile {
  position: absolute;
  right: 24px;
  top: 100px;
  z-index: 5;
  width: 67px;
  height: 67px;
  display: none;
}
@media (max-width: 1115px) {
  .que__logo--mobile {
    display: block;
  }
}
.que__logo--mobile img {
  width: 100%;
  height: auto;
}

.logo-anim__que {
  position: absolute;
  z-index: 10;
  right: 86.5px;
  top: calc((100vh - 481px) * -0.5 - 79px);
  width: 79px;
  opacity: 1;
}
.logo-anim__que .wrapper-logo {
  opacity: 1;
}
.logo-anim__que img {
  width: 100%;
  height: auto;
  opacity: 0;
}
.logo-anim__vision {
  position: absolute;
  z-index: 10;
  right: 662px;
  top: -475px;
  width: 79px;
  opacity: 1;
}
.logo-anim__vision .wrapper-logo {
  opacity: 1;
}
.logo-anim__vision img {
  width: 100%;
  height: auto;
  opacity: 0;
}

.como {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 3;
}
@media (max-width: 1115px) {
  .como {
    height: 100vh;
  }
}
@keyframes horizontal-move {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(-20%, -50%);
  }
}
@keyframes bg-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-7.5%);
  }
}
.como .bg {
  position: absolute;
  right: -140px;
  top: 0;
  width: 97.23%;
  height: 100vh;
  background: url("../img/bg-cohete.jpg") no-repeat center center;
  background-size: cover;
  z-index: 1;
  opacity: 1;
}
.como .bg.horizontal-move {
  animation: bg-move 20s infinite alternate;
}
@media (max-width: 1115px) {
  .como .bg.horizontal-move {
    animation: none;
  }
}
.como .bg img {
  width: 100%;
  height: auto;
}
@media (max-width: 1115px) {
  .como .bg {
    width: 100%;
    height: 100vh;
    right: 0;
  }
}
.como__container {
  width: 100%;
  max-width: 1115px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.como__container::before {
  content: "";
  position: absolute;
  width: calc((100vw - 1115px) * 0.5);
  height: 100%;
  left: calc((100vw - 1115px) * -0.5);
  background-color: #000;
  z-index: 2;
}
.como .rocket {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 3;
  height: auto;
  width: 11.62%;
  max-width: 266px;
  opacity: 1;
  animation: mover 0.75s infinite alternate;
}
@media screen and (max-width: 1920px) {
  .como .rocket {
    right: -70px;
  }
}
@media screen and (max-width: 1115px) {
  .como .rocket {
    right: 160px;
    height: auto;
    width: 35%;
    top: 100px;
    transform: none;
    max-width: 160px;
  }
}
@media screen and (max-width: 430px) {
  .como .rocket {
    right: 50px;
    height: auto;
    width: 25%;
    top: 20%;
    transform: none;
    max-width: 120px;
  }
}
.como .rocket__container {
  position: relative;
  max-width: 100%;
  height: 100%;
}
.como .rocket__container img {
  height: auto;
  width: 100%;
}
.como .rocket .cohete {
  position: relative;
  z-index: 3;
}
.como .rocket .fuego {
  max-width: 266px;
  position: relative;
  left: calc(50% - 35px);
  transform: translateX(-50%);
  width: 81px;
  height: 176px;
  display: flex;
  justify-content: center;
  margin: -46px 0 0 0;
  z-index: 0;
  background-image: url("../img/fire2.png");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: cover;
  transform: scale(0.6);
}
.como .rocket .fuego img {
  width: 100%;
  height: auto;
}
@media (max-width: 1115px) {
  .como .rocket .fuego {
    position: relative;
    left: 50%;
    width: 60%;
    bottom: auto;
    margin: -46px 0 0 0;
    transform: translateX(-50%) scale(0.6);
  }
  .como .rocket .fuego img {
    width: 100%;
    height: auto;
  }
}
.como__logo {
  display: none;
}
@media (max-width: 1115px) {
  .como__logo {
    display: block;
    position: absolute;
    right: 24px;
    top: 100px;
    z-index: 5;
    width: 67px;
    height: 67px;
  }
  .como__logo img {
    width: 100%;
    height: auto;
  }
}
.como__text {
  background-color: #000;
  width: 100%;
  max-width: 1110px;
  position: relative;
  left: 0;
  top: 0;
  z-index: 2;
  height: 100%;
  -webkit-clip-path: polygon(0% 0, 97.75% 0, 64.57% 100%, 0 100%);
          clip-path: polygon(0% 0, 97.75% 0, 64.57% 100%, 0 100%);
  color: #a5a8a7;
  font-size: 16px;
}
.como__text strong {
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1115px) {
  .como__text {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
}
.como .shape {
  width: 91px;
  height: 219px;
  float: right;
  background: transparent;
  shape-outside: polygon(120% 0, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(120% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(120% 0, 100% 0, 100% 100%, 0 100%);
}
.como .parallelogram {
  width: 426px;
  transform: skew(-25deg) translateY(-50%);
  background: #000;
  position: absolute;
  right: 210px;
  top: 167px;
  display: block;
  opacity: 1;
}
.como .parallelogram .text {
  width: 446px;
  transform: skew(25deg);
  text-align: right;
  line-height: 25px;
  opacity: 1;
  transition: all ease-in-out 0.35s;
}
@media (max-width: 1115px) {
  .como .parallelogram {
    display: none;
  }
}
.como .satellital {
  position: absolute;
  left: calc((100vw - 1115px) * -0.5);
  top: 0;
  width: calc(50vw + 100px);
  height: 100%;
  z-index: 4;
  background-color: transparent;
  display: block;
  opacity: 1;
}
.como .satellital__container {
  position: relative;
  width: 1034px;
  right: 0;
  height: 100%;
  float: right;
}
.como .satellital .curve {
  position: absolute;
  right: 0;
  bottom: 0;
}
.como .satellital .curve img {
  width: 100%;
  height: auto;
}
.como .satellital .circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 2;
  background-color: #000;
  border-radius: 50%;
}
.como .satellital .circle img {
  width: 100%;
  height: auto;
}
.como .satellital .circle__container {
  position: relative;
  z-index: 2;
  background-color: #000;
  border-radius: 50%;
}
.como .satellital .circle__container span {
  position: absolute;
  text-transform: uppercase;
  font-family: "Futura";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #54585e;
  font-size: 23px;
}
.como .satellital .gestion-txt {
  position: absolute;
  font-family: "Futura";
  left: 50%;
  transform: translateX(-50%);
  top: -60%;
  color: #54585e;
  font-size: 23px;
  opacity: 1;
}
@media (max-width: 1115px) {
  .como .satellital {
    display: none;
  }
}
.como .creacion-txt {
  opacity: 1;
}
.como .supervision-txt {
  position: absolute;
  font-family: "Futura";
  left: 50%;
  transform: translateX(-50%);
  top: -191%;
  color: #54585e;
  font-size: 23px;
  opacity: 1;
}
.como .spaceship {
  position: absolute;
  width: 154px;
  height: 186px;
  top: -150px;
  right: -120px;
  z-index: 1;
}
.como .spaceship__container {
  position: relative;
  width: 100%;
  height: 100%;
}
.como .spaceship .dotted-line {
  position: absolute;
  left: 4px;
  bottom: 6px;
  width: 57.14%;
}
.como .spaceship .dotted-line img {
  width: 100%;
  height: auto;
}
.como .spaceship .ship {
  position: absolute;
  right: 11px;
  top: 11px;
  width: 40%;
}
.como .spaceship .ship img {
  width: 100%;
  height: auto;
}
.como .moon {
  position: absolute;
  left: calc(50% + 186px);
  bottom: 350px;
  width: 171px;
  height: 171px;
  opacity: 1;
}
.como .moon__container {
  position: relative;
  width: 100%;
  height: 100%;
}
.como .moon .logo {
  position: absolute;
  width: 79px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 1;
}
.como .moon .logo img {
  width: 100%;
  height: auto;
}
@keyframes spin-dot {
  100% {
    transform: rotate(360deg);
  }
}
.como .moon .orbit-2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  max-width: 166px;
  max-height: 166px;
  border-radius: 50%;
}
.como .moon .orbit-2 img {
  width: 100%;
  height: auto;
}
.como .moon .orbit-2-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -50% 0 0 -50%;
  width: 100%;
  height: 100%;
  z-index: 1;
  max-width: 166px;
  max-height: 166px;
  border-radius: 50%;
  animation: spin-dot 19s linear infinite;
  opacity: 1;
}
.como .moon .orbit-2-pin__circle {
  width: 10px;
  height: 10px;
  background-color: #d9d9d9;
  position: absolute;
  left: 45px;
  top: 0;
  border-radius: 50%;
}
.como .moon .orbit-1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 2;
  max-width: 114px;
  max-height: 114px;
  border-radius: 50%;
}
.como .moon .orbit-1 img {
  width: 100%;
  height: auto;
}
.como .moon .orbit-1-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -33.3% 0 0 -33.3%;
  width: 100%;
  height: 100%;
  z-index: 3;
  max-width: 114px;
  max-height: 114px;
  border-radius: 50%;
  animation: spin-dot 19.5s linear infinite;
  opacity: 1;
}
.como .moon .orbit-1-pin__circle {
  width: 10px;
  height: 10px;
  background-color: #d9d9d9;
  position: absolute;
  left: 45px;
  top: 107px;
  border-radius: 50%;
}
.como .img {
  display: none;
}
@media screen and (max-width: 1115px) {
  .como .img {
    display: block;
    position: absolute;
    left: 24px;
    bottom: 336px;
    z-index: 2;
    width: 80px;
  }
  .como .img img {
    width: 55%;
    height: auto;
  }
}
@media screen and (max-width: 414px) {
  .como .img {
    display: block;
    position: absolute;
    left: 24px;
    bottom: 336px;
    z-index: 2;
    width: 50px;
  }
  .como .img img {
    width: 55%;
    height: auto;
  }
}
.como .txt {
  display: none;
}
@media screen and (max-width: 1115px) {
  .como .txt {
    display: block;
    position: absolute;
    left: 24px;
    bottom: 66px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
  }
}
@media screen and (max-width: 414px) {
  .como .txt {
    display: block;
    position: absolute;
    left: 24px;
    bottom: 66px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
  }
}
.como__list--mobile {
  position: absolute;
  left: 60px;
  top: 84px;
  z-index: 5;
  display: none;
}
@media (max-width: 1115px) {
  .como__list--mobile {
    display: block;
  }
}
.como__list--mobile ul {
  margin: 0;
  padding: 0;
}
.como__list--mobile ul li {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  font-family: "Futura";
  text-transform: uppercase;
  font-size: 22px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.5);
}

.vision {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 4;
}
@media (max-width: 1115px) {
  .vision {
    width: 100%;
    height: 100vh;
  }
}
.vision .bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 91.19%;
  height: 100vh;
  background: url("../img/bg-dive.jpg") no-repeat right center;
  background-size: cover;
  z-index: 1;
  opacity: 1;
}
.vision .bg img {
  width: 100%;
  height: auto;
}
@media (max-width: 1115px) {
  .vision .bg {
    width: 100%;
    height: 100vh;
  }
}
@keyframes wave {
  0% {
    left: 0;
  }
  100% {
    left: -1125px;
  }
}
.vision .wave {
  position: absolute;
  left: 0;
  height: 90px;
  bottom: 247px;
  z-index: 5;
  width: 100%;
  display: block;
  opacity: 1;
  overflow: hidden;
}
.vision .wave__container {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100vw + 1125px);
  height: 100%;
  background: url("../img/wave.svg") repeat-x left center;
  animation: wave 10s linear infinite;
  background-size: contain;
}
.vision .wave img {
  width: 100%;
  height: auto;
}
@media (max-width: 1115px) {
  .vision .wave {
    display: none;
  }
}
.vision__container {
  width: 100%;
  max-width: 1115px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.vision__container::before {
  content: "";
  position: absolute;
  width: calc((100vw - 1115px) * 0.5);
  height: 100%;
  left: calc((100vw - 1115px) * -0.5);
  background-color: #000;
  z-index: 2;
}
.vision__text {
  background-color: #000;
  width: 100%;
  max-width: 732px;
  position: relative;
  left: 0;
  top: 0;
  z-index: 2;
  height: 100%;
  -webkit-clip-path: polygon(0% 0, 97.75% 0, 44.57% 100%, 0 100%);
          clip-path: polygon(0% 0, 97.75% 0, 44.57% 100%, 0 100%);
  color: #a5a8a7;
  font-size: 16px;
}
.vision__text strong {
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1115px) {
  .vision__text {
    width: 100%;
    max-width: 100%;
    -webkit-clip-path: none;
            clip-path: none;
    background-color: transparent;
    opacity: 1;
  }
}
.vision .shape {
  width: 85px;
  height: 200px;
  float: right;
  background: transparent;
  shape-outside: polygon(120% 0, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(120% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(120% 0, 100% 0, 100% 100%, 0 100%);
}
.vision .parallelogram {
  width: 426px;
  transform: skew(-25deg) translateY(-50%);
  background: #000;
  position: absolute;
  right: 210px;
  top: 167px;
  display: block;
  opacity: 0;
  transition: all ease-in-out 0.35s;
}
.vision .parallelogram.active {
  opacity: 1;
  transition: all ease-in-out 0.35s;
}
.vision .parallelogram.no-active {
  opacity: 0;
  transition: all ease-in-out 0.35s;
}
@media (max-width: 1115px) {
  .vision .parallelogram {
    display: none;
  }
}
.vision .parallelogram .text {
  width: 446px;
  transform: skew(25deg);
  text-align: right;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #a5a8a7 !important;
  line-height: 25px;
}
.vision .parallelogram .text strong {
  font-weight: 700;
  color: #fff;
}
.vision .parallelogram .sub-title {
  font-family: "Futura";
  font-size: 23px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
  color: #54585e;
}
@media screen and (min-width: 115px) {
  @keyframes diver-move {
    0% {
      right: 36px;
    }
    100% {
      right: 16px;
    }
  }
}
@media (max-width: 1115px) {
  @keyframes diver-move {
    0% {
      right: 32%;
    }
    100% {
      right: 33%;
    }
  }
}
.vision .diver {
  width: 23.49%;
  position: absolute;
  right: 36px;
  top: 350px;
  z-index: 3;
  opacity: 1;
  transform: translate(18px, 64px);
}
.vision .diver.diver-move {
  animation: diver-move 2.5s infinite alternate;
}
.vision .diver img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1115px) {
  .vision .diver {
    width: 50.49%;
    position: absolute;
    right: 29%;
    transform: translateX(50%);
    top: 30%;
    z-index: 3;
    max-width: 370px;
  }
}
@media screen and (max-width: 414px) {
  .vision .diver {
    width: 50.49%;
    position: absolute;
    right: 32%;
    transform: translateX(50%);
    top: 30%;
    z-index: 3;
    max-width: 200px;
  }
}
@keyframes bubble-move {
  0% {
    top: 68px;
  }
  100% {
    top: 28px;
  }
}
.vision .bubble {
  width: 15.33%;
  position: absolute;
  right: 100px;
  top: 68px;
  z-index: 2;
  opacity: 1;
}
.vision .bubble.vert-move {
  animation: bubble-move 4s infinite alternate;
}
.vision .bubble img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1115px) {
  .vision .bubble {
    width: 22%;
    position: absolute;
    right: 43%;
    transform: translateX(50%);
    top: 10%;
    z-index: 1;
    max-width: 120px;
  }
}
@media screen and (max-width: 414px) {
  .vision .bubble {
    width: 22%;
    position: absolute;
    right: 43%;
    transform: translateX(50%);
    top: 10%;
    z-index: 1;
    max-width: 80px;
  }
}
.vision .logo {
  position: absolute;
  left: 265px;
  top: calc(100vh - 426px - 39.5px);
  z-index: 5;
  width: 79px;
  opacity: 1;
}
.vision .logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 1115px) {
  .vision .logo {
    top: 60px;
    right: 24px;
    left: auto;
    width: 67px;
    height: 67px;
    display: none;
  }
}
.vision .submarine {
  position: absolute;
  left: -11px;
  bottom: 115px;
  z-index: 5;
  width: 115px;
  display: block;
  opacity: 1;
}
.vision .submarine--img {
  position: relative;
  left: 10px;
}
.vision .submarine__container {
  position: relative;
}
.vision .submarine .periscope {
  position: absolute;
  left: 64px;
  top: -60px;
  width: 3px;
  height: 60px;
  background-color: #fff;
}
.vision .submarine .periscope::after {
  content: "";
  width: 6px;
  height: 3px;
  background-color: #fff;
  left: 0;
  top: -3px;
  position: absolute;
}
.vision .submarine .periscope-dashed {
  width: 0;
  border-top: dashed 1px #54585e;
  position: absolute;
  left: 71px;
  top: -249px;
  opacity: 1;
}
.vision .submarine img {
  width: 100%;
  height: auto;
}
@media (max-width: 1115px) {
  .vision .submarine {
    display: none;
  }
}
.vision .diagonal-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%);
          clip-path: polygon(0 0, 100% 0, 100% 90%);
  display: none;
}
@media (max-width: 1115px) {
  .vision .diagonal-top {
    display: block;
    -webkit-clip-path: polygon(55% 0, 100% 0, 100% 45%);
            clip-path: polygon(55% 0, 100% 0, 100% 45%);
  }
}
.vision .diagonal-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 5;
  -webkit-clip-path: polygon(0 50%, 55% 100%, 0 100%);
          clip-path: polygon(0 50%, 55% 100%, 0 100%);
  display: none;
}
.vision .diagonal-bottom img {
  position: absolute;
  left: 24px;
  bottom: 24px;
}
@media screen and (max-width: 1115px) {
  .vision .diagonal-bottom img {
    width: 65px;
    bottom: 34px;
  }
}
@media screen and (max-width: 414px) {
  .vision .diagonal-bottom img {
    width: 65px;
    bottom: 34px;
  }
}
@media (max-width: 1115px) {
  .vision .diagonal-bottom {
    display: block;
    -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
}
.vision .txt {
  text-align: right;
  position: absolute;
  top: 160px;
  right: 24px;
  width: 262px;
  z-index: 5;
  width: 200px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 24px;
  display: none;
}
@media screen and (max-width: 1115px) {
  .vision .txt {
    top: auto;
    left: 24px;
    bottom: 134px;
    display: block;
    line-height: 25px;
    font-size: 18px;
    font-weight: 300;
    text-align: left;
  }
}
@media screen and (max-width: 991px) {
  .vision .txt {
    top: auto;
    left: 24px;
    bottom: 134px;
    display: block;
    line-height: 25px;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
  }
}
.vision__title {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Futura";
  font-size: 20px;
  text-transform: uppercase;
  color: rgba(84, 88, 94, 0.45);
  display: none;
}
@media screen and (max-width: 1115px) {
  .vision__title {
    display: block;
    font-size: 35px;
    left: 15%;
  }
}
@media screen and (max-width: 991px) {
  .vision__title {
    display: block;
    font-size: 25px;
    left: 15%;
  }
}
@media screen and (max-width: 768px) {
  .vision__title {
    display: block;
    font-size: 25px;
    left: 12%;
  }
}
@media screen and (max-width: 414px) {
  .vision__title {
    display: block;
    font-size: 22px;
    left: 10%;
  }
}

.staff {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 4;
}
@media (max-width: 1115px) {
  .staff {
    height: 100vh;
  }
}
.staff .fondo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1302px;
  height: 811px;
  background: url("../img/bg-staff.png") no-repeat center center;
  background-size: cover;
  z-index: 1;
  display: flex;
  align-items: center;
  opacity: 0;
}
.staff .fondo img {
  width: 100%;
  height: auto;
}
.staff .fondo video {
  width: 100%;
  height: auto;
}
@media (max-width: 1115px) {
  .staff .fondo {
    display: none;
  }
}
.staff__container {
  width: 100%;
  max-width: 1115px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
@media (max-width: 1115px) {
  .staff__container {
    z-index: 3;
    display: flex;
    align-items: center;
  }
}
.staff .wrapper-owners {
  width: 100%;
  min-height: 98px;
  margin: 45px auto;
  position: relative;
  display: block;
  background-color: transparent;
}
@media (max-width: 1115px) {
  .staff .wrapper-owners {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin: 0;
    display: none;
    height: 583px;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .staff .wrapper-owners.active {
    display: block;
  }
}
.staff .wrapper-owners .btn-close {
  display: none;
}
@media (max-width: 1115px) {
  .staff .wrapper-owners .btn-close {
    display: block;
    position: absolute;
    right: 22px;
    top: 30px;
  }
}
.staff .owners {
  width: 100%;
  max-width: 866px;
  margin: 0 auto;
  opacity: 0;
}
@media (max-width: 1115px) {
  .staff .owners {
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
  }
}
.staff .owners__list {
  width: 100%;
  max-width: 866px;
  margin: 160px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 44px;
}
@media (max-width: 1115px) {
  .staff .owners__list {
    grid-template-columns: 1fr;
    margin: 0;
  }
}
.staff .owners__list > div {
  display: flex;
  justify-content: center;
  position: relative;
  height: 192px;
}
@media (max-width: 1115px) {
  .staff .owners__list > div {
    height: 165px;
  }
}
.staff .owners__list > div .outer-circle {
  border-radius: 50%;
  border: solid 1px transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 192px;
  transition: all ease-in-out 0.35s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
@media (max-width: 1115px) {
  .staff .owners__list > div .outer-circle {
    width: 165px;
    height: 165px;
  }
}
.staff .owners__list > div .outer-circle:hover {
  border-color: #06fd15;
  transition: all ease-in-out 0.35s;
  width: 228px;
  height: 228px;
}
@media (max-width: 1115px) {
  .staff .owners__list > div .outer-circle:hover {
    width: 165px;
    height: 165px;
    border: solid 1px transparent;
    transition: none;
  }
}
.staff .owners__list > div .outer-circle img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 192px;
}
.staff .owners__detail {
  position: absolute;
  left: 0;
  top: 0;
  width: 790px;
  margin: 45px auto;
  display: grid;
  grid-template-columns: 2fr 5fr;
  grid-gap: 86px;
  opacity: 0;
  transition: all ease-in-out 0.35s;
}
@media (max-width: 1115px) {
  .staff .owners__detail {
    grid-template-columns: 1fr;
    display: none;
    width: 250px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}
.staff .owners__detail > div:nth-child(3n+1) {
  display: none;
}
@media (max-width: 1115px) {
  .staff .owners__detail > div:nth-child(3n+1) {
    display: block;
    text-align: center;
  }
  .staff .owners__detail > div:nth-child(3n+1) img {
    width: 100%;
    height: auto;
    max-width: 165px;
  }
}
.staff .owners__detail > div:nth-child(3n+2) {
  font-family: "Futura";
  font-size: 22px;
  color: #54585e;
  text-transform: uppercase;
}
@media (max-width: 1115px) {
  .staff .owners__detail > div:nth-child(3n+2) {
    font-size: 16px;
    color: #06fd15;
    text-transform: none;
    margin: 24px 0 24px;
    text-transform: uppercase;
  }
}
.staff .owners__detail > div:nth-child(3n+3) {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #a5a8a7;
}
.staff .owners__detail.active {
  opacity: 1;
  transition: all ease-in-out 0.35s;
}
@media (max-width: 1115px) {
  .staff .owners__detail.active {
    display: block;
  }
}
@media (max-width: 1115px) {
  .staff .owners #cesar {
    padding-top: 209px;
  }
}
@media (max-width: 1115px) {
  .staff .owners #erika {
    padding-top: 138px;
  }
}
.staff .owners #erika > div:nth-child(3n+1) {
  font-family: "Futura";
  font-size: 22px;
  color: #54585e;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 1115px) {
  .staff .owners #erika > div:nth-child(3n+1) {
    font-size: 16px;
    color: #06fd15;
    text-transform: none;
    text-transform: uppercase;
  }
}
.staff .owners #erika > div:nth-child(3n+2) {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #a5a8a7;
  text-transform: none;
}
@media (max-width: 1115px) {
  .staff .owners #erika > div:nth-child(3n+2) {
    font-family: "Roboto", sans-serif !important;
    font-size: 14px !important;
    color: #a5a8a7;
    margin: 16px 0 28px !important;
    text-transform: none;
  }
}
.staff .owners #erika > div:nth-child(3n+3) {
  display: none;
  text-align: center;
}
.staff .owners #erika > div:nth-child(3n+3) img {
  width: 100%;
  height: auto;
  max-width: 165px;
}
@media (max-width: 1115px) {
  .staff .owners #erika > div:nth-child(3n+3) {
    display: block;
  }
}
.staff__logo {
  position: absolute;
  right: 1036px;
  top: calc((100vh - 79px) * 0.5);
  width: 79px;
  height: 79px;
  z-index: 10;
}
.staff__logo img {
  width: 100%;
  height: auto;
  opacity: 1;
}
@media (max-width: 1115px) {
  .staff__logo {
    display: none;
  }
}

.transition {
  transition: all 1s;
}

.transition.fading {
  opacity: 0;
}

.clients {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1115px) {
  .clients {
    height: 100vh;
  }
}
.clients__container {
  width: 100%;
  max-width: 1115px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  display: grid;
  grid-template-columns: 10fr 1fr 1fr;
  grid-gap: 38px;
}
.clients__container .logo {
  width: 100%;
  height: auto;
  max-width: 79px;
}
.clients__container img {
  width: 100%;
  height: auto;
}
@media (max-width: 1115px) {
  .clients__container {
    display: none;
  }
}
.clients__container--mobile {
  display: none;
}
@media (max-width: 1115px) {
  .clients__container--mobile {
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
}
.clients .swiper-button-prev {
  position: absolute;
  bottom: auto;
  top: 50%;
  left: 24px;
  transform: translateX(-50%);
}
.clients .swiper-button-prev img {
  filter: invert(65%) sepia(52%) saturate(2897%) hue-rotate(80deg) brightness(103%) contrast(131%);
}
@media (max-width: 1115px) {
  .clients .swiper-button-prev img {
    width: 16px;
  }
}
.clients .swiper-button-prev.swiper-button-disabled img {
  filter: none;
}
.clients .swiper-button-prev::after {
  display: none;
}
.clients .swiper-button-next {
  position: absolute;
  bottom: auto;
  top: 50%;
  right: 0;
  transform: translateX(-50%);
}
.clients .swiper-button-next img {
  filter: invert(65%) sepia(52%) saturate(2897%) hue-rotate(80deg) brightness(103%) contrast(131%);
}
@media (max-width: 1115px) {
  .clients .swiper-button-next img {
    width: 16px;
  }
}
.clients .swiper-button-next.swiper-button-disabled img {
  filter: none;
}
.clients .swiper-button-next::after {
  display: none;
}
.clients .swiper {
  width: 81.28%;
  margin: 0 auto;
}
.clients .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  box-sizing: border-box;
}

.video-player {
  width: 100%;
  height: 100vh;
  position: relative;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-player .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media (max-width: 1115px) {
  .video-player {
    height: auto;
  }
}
.video-player__container {
  width: 100%;
  max-width: 1115px;
  margin: 0 auto;
  height: 811px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.video-player__container img {
  width: 100%;
  height: auto;
}
@media (max-width: 1115px) {
  .video-player__container {
    height: auto;
  }
}
.video-player .cover {
  position: absolute;
  width: 100%;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  height: 520px;
}
@media (max-width: 1115px) {
  .video-player .cover {
    position: relative;
    transform: none;
    top: 0;
    height: auto;
  }
}
.video-player .cover .rotate {
  display: none;
}
@media (max-width: 1115px) {
  .video-player .cover .rotate {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 68px;
    z-index: 5;
    width: 83px;
  }
}
.video-player .cover .rotate img {
  width: 100%;
  height: auto;
}
.video-player .cover.hide {
  display: none;
}
.video-player .cover .desktop {
  display: block;
}
@media (max-width: 1115px) {
  .video-player .cover .desktop {
    display: none;
  }
}
.video-player .cover .mobile {
  display: none;
}
@media (max-width: 1115px) {
  .video-player .cover .mobile {
    display: block;
  }
}
.video-player__wrapper {
  width: 100%;
  display: none;
}
@media (max-width: 1115px) {
  .video-player__wrapper {
    height: 100vh;
    position: relative;
  }
}
@media (max-width: 1115px) {
  .video-player__wrapper iframe {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
.video-player .show {
  display: block;
}

.btn-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 99px;
  height: 99px;
  cursor: pointer;
  transition: all ease-in-out 0.35s;
}
.btn-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  transition: all ease-in-out 0.35s;
}
.btn-play img {
  width: 100%;
  height: auto;
}
.btn-play.hide {
  display: none;
}

.contact {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 100px 0 0;
  box-sizing: border-box;
}
@media (max-width: 1115px) {
  .contact {
    overflow: auto;
  }
}
.contact__container {
  width: 100%;
  max-width: 1115px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  display: grid;
  align-items: center;
  justify-content: center;
  z-index: 5;
  grid-template-columns: 1fr;
}
@media (max-width: 1115px) {
  .contact__container {
    padding-top: 69px;
    z-index: 3;
  }
}
.contact__container img {
  width: 100%;
  height: auto;
}
.contact__container > div {
  margin: 0 auto;
}
.contact .circle {
  position: relative;
  width: 436px;
  height: 436px;
  border-radius: 50%;
  border: solid 1px #54585e;
  opacity: 1;
}
.contact .circle__wrapper-logo {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}
@media (max-width: 1115px) {
  .contact .circle {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.contact .circle__img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
@media (max-width: 1115px) {
  .contact .circle__img {
    width: 134px;
    height: 134px;
  }
}
.contact .circle__img img {
  width: 100%;
  height: auto;
  max-width: 298px;
}
.contact .circle__logo {
  position: absolute;
  width: 79px;
  height: 79px;
  right: 25%;
  top: 30px;
  transform: translate(50%, -50%);
  z-index: 2;
}
@media (max-width: 1115px) {
  .contact .circle__logo {
    width: 49px;
    height: 49px;
    right: 34px;
  }
}
.contact .circle__logo img {
  width: 100%;
  height: auto;
  opacity: 1;
}
.contact #form {
  width: 100%;
  max-width: 100%;
  opacity: 1;
}
.contact .form {
  margin: 45px auto 0;
  max-width: 736px;
  width: 100%;
}
@media (max-width: 1115px) {
  .contact .form {
    width: 70%;
    margin: 0 auto;
  }
}
.contact .form__container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 1115px) {
  .contact .form__container {
    padding: 0 24px;
    box-sizing: border-box;
  }
}
.contact .form__control {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 1115px) {
  .contact .form__control {
    margin-bottom: 16px;
  }
}
.contact .form__control label {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #54585e;
  text-align: left;
  display: block;
}
@media (max-width: 1115px) {
  .contact .form__control label {
    font-size: 13px;
  }
}
.contact .form__control input {
  display: block;
  height: 59px;
  width: 100%;
  border: solid 1px #54585e;
  background-color: transparent;
  margin-top: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: normal;
  padding: 0 24px;
  box-sizing: border-box;
  border-radius: 3px;
}
@media (max-width: 1115px) {
  .contact .form__control input {
    height: 44px;
  }
}
.contact .form__control.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 22px;
}
@media (max-width: 1115px) {
  .contact .form__control.col-2 {
    grid-template-columns: 1fr;
  }
}
.contact .form__control textarea {
  height: 150px;
  resize: none;
  display: block;
  background-color: transparent;
  width: 100%;
  border: solid 1px #54585e;
  margin-top: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: normal;
  padding: 48px 72px;
  box-sizing: border-box;
  border-radius: 3px;
}
.contact .form__control--button {
  display: flex;
  justify-content: center;
  margin-bottom: 104px;
  margin-top: 16px;
}
@media (max-width: 1115px) {
  .contact .form__control--button {
    margin-bottom: 64px;
  }
}
.contact .form__control .error {
  color: #3c3c3c;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #ff1313;
  display: none;
  margin-top: 8px;
}
.contact .form__control .error.active {
  display: block;
}
.contact .form button {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #000;
  background-color: #06fd15;
  width: 160px;
  border-radius: 27px;
  height: 54px;
  line-height: 50px;
  text-transform: uppercase;
  transition: all ease-in-out 0.35s;
  border: 0;
  cursor: pointer;
}
.contact .form button:hover {
  background-color: #008009;
  transition: all ease-in-out 0.35s;
}
@media (max-width: 1115px) {
  .contact .form button {
    width: 100px;
    font-size: 14;
    height: 40px;
    line-height: 17px;
  }
}
.contact .mobile {
  display: none;
}
@media (max-width: 1115px) {
  .contact .mobile {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    margin: 24px 0 32px;
  }
}
.contact .flip-container {
  background-color: transparent;
  width: 79px;
  height: 79px;
  perspective: 1000px;
}
@media (max-width: 1115px) {
  .contact .flip-container {
    width: 48px;
    height: 48px;
  }
}
.contact .card {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 1s;
  transform-style: preserve-3d;
}
.contact .flip-container:hover .card {
  transform: rotateY(180deg);
}
.contact .front,
.contact .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .back {
  transform: rotateY(180deg);
}

* {
  outline: none;
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
footer ul {
  width: 100%;
  max-width: 1115px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
footer ul li {
  margin: 0 30px;
  padding: 0;
  list-style: none;
  display: inline-block;
}
@media (max-width: 1115px) {
  footer ul li {
    margin: 0 20px;
  }
  footer ul li img {
    max-width: 24px;
  }
}
footer .copy {
  width: 100%;
  max-width: 1115px;
  color: #3c3c3c;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  text-align: center;
  margin: 66px auto 60px;
}

#thankyou {
  display: none;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 200px;
  padding-top: 80px;
  box-sizing: border-box;
}
@media (max-width: 1115px) {
  #thankyou {
    width: 54.35%;
  }
}
#thankyou h3 {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  color: #a5a8a7;
  font-weight: 300;
}
@media (max-width: 1115px) {
  #thankyou h3 {
    font-size: 18px;
  }
}
#thankyou p {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  color: #a5a8a7;
  font-weight: 300;
}
@media (max-width: 1115px) {
  #thankyou p {
    font-size: 16px;
  }
}
#thankyou.show {
  display: block;
}

#form p {
  text-align: center;
  margin: 32px 0 0;
  font-size: 14px;
  color: #a5a8a7;
}
@media (max-width: 1115px) {
  #form p {
    margin: 16px 0 32px;
  }
}
#form.hide {
  display: none;
}/*# sourceMappingURL=main.css.map */