@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@200;300;400;600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
  max-width: 100vw;
  list-style: none;
}
img {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}
.active {
  color: #aaa;
}
iframe {
  display: none !important;
}
body {
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
p {
  line-height: 150%;
}
/* Loader */

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #00a3ff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader {
  background-color: #fff;
  width: 100%;
  height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 10000;
  clip-path: circle(141.2% at 100% 0);
  transition: 0.3s ease-in-out;
}
.loader2 {
  clip-path: circle(0% at 100% 0);
}
/* Menu */
.logo {
  background-image: url(../img/logoFrame.svg);
  height: 20px;
  width: 328px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  cursor: unset;
  background-position-y: 75%;
}
.left__submenu p {
  line-height: unset;
}
/* Heading */
.heading {
  color: white;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.heading .encabezado {
  margin-bottom: 50px;
  margin-top: 154px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../img/bluehorizonlogo3.webp");
  height: 100px;
  width: 200px;
  background-size: cover;
  background-repeat: no-repeat;
}
.heading p {
  font-size: 18px;
  font-weight: 200;
  text-align: center;
  max-width: 500px;
  margin-bottom: 150px;
  line-height: 150%;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .heading h1 {
    margin-top: 150px;
  }
}
/* Content */
.content {
  display: flex;
  flex-wrap: wrap;
}

/* one */
.one__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  width: 100%;
}
.one__content h2 {
  font-weight: 400;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  max-width: 500px;
}
.one__content p {
  font-weight: 200;
  font-size: 18px;
  text-align: center;
  line-height: 150%;
  margin-bottom: 50px;
  margin-top: 30px;
  max-width: 760px;
}
@media (max-width: 991px) {
  .one__content h2 {
    margin-bottom: 30px;
  }
}
/* two */
.two__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}
.two__content .left {
  max-width: 500px;
  margin: 50px;
}
.two__content .left h2 {
  font-weight: 400;
  font-size: 36px;
  line-height: 42px;
  text-align: right;
  margin-bottom: 15px;
}
.two__content .left p {
  font-weight: 200;
  font-size: 18px;
  text-align: right;
}
.two__content .right {
  max-width: 500px;
  max-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.two__content .right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .two__content .left h2 {
    margin-bottom: 30px;
  }
}
/* three */
.three__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 100px;
}
.three__content .right {
  max-width: 500px;
  margin: 50px;
}
.three__content .right h2 {
  font-weight: 400;
  font-size: 36px;
  line-height: 42px;
  text-align: left;
  margin-bottom: 15px;
}
.three__content .right p {
  font-weight: 200;
  font-size: 18px;
  text-align: left;
}
.three__content .left {
  max-width: 500px;
  max-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.three__content .left img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1116px) {
  .three__content .right h2 {
    margin-bottom: 30px;
  }
  .two__content .right {
    order: -1;
  }
  .three__content .right {
    margin: 100px 50px 50px;
  }
  .three__content {
    margin-top: 0;
  }
  .one__content p,
  .image p {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .image {
    height: 100vh !important;
  }
}
/* image */
.image {
  background-image: url(../img/about3.webp);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-position: center;
  position: relative;
}
.image-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0005;
  /* z-index: -1; */
}
.image h2 {
  padding-top: 100px;
  padding-bottom: 50px;
  font-weight: 400;
  font-size: 36px;
  line-height: 42px;
  text-align: center;
  z-index: 2;
}
.image p {
  font-weight: 200;
  font-size: 18px;
  text-align: center;
  line-height: 22px;
  /* margin: 50px; */
  max-width: 700px;
  z-index: 2;
  padding-bottom: 100px;
}
/* Download */
.download {
  height: 70vh;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .apps__download,
  .description__download {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
  }
  .apps__download {
    flex-direction: column;
  }
}
@media (max-width: 680px) {
  .download {
    flex-direction: column;
  }
  .apps__download,
  .description__download {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
@media (max-width: 330px) {
  .apps__download,
  .description__download {
    padding: 10px;
  }
}
.description__download h3 {
  color: #2c2c2c;
  text-align: center;
  font-size: 28px;
}
.apps__download,
.description__download {
  width: 312px;
  margin-left: 25px;
  margin-right: 25px;
}
.apps__download img {
  width: 100%;
  object-fit: cover;
}
/* Footer */
.contenedor__footer {
  background-color: #151515;
  width: 100%;
}
.footer {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  background-color: #151515;
  padding-bottom: 50px;
  justify-content: center;
  display: flex;
  justify-content: center;
  margin: auto;
  flex: 1;
  padding-top: 35px;
}
.nav__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  align-items: flex-start;
  max-width: 1300px;
}
.numbers p {
  text-align: left;
}
/* .numbers p {
  text-align: right;
} */
.nav__footer div {
  width: 230px;
  /* margin: 10px; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 30px 30px 0;
}
.nav__footer div:nth-child(4) {
  width: 250px;
}
.nav__footer div h4 {
  margin-bottom: 15px;
  font-size: 18px;
}
.nav__footer ul li a {
  cursor: pointer;
  font-weight: 200;
  color: #ccc;
}
.nav__footer ul li a:hover {
  color: #00a3ff;
}
.nav__footer p {
  font-weight: 200;
  color: #ccc;
  line-height: unset;
}
.faces__footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
  padding-top: 50px;
}
.faces__footer svg {
  margin-left: 5px;
  margin-right: 5px;
}
.faces__footer svg:hover {
  transform: scale(1.2);
}
.copy__footer {
  width: 80%;
  margin: auto;
  text-align: center;
  max-width: 1300px;
}
.numbers a {
  cursor: pointer;
  font-weight: 200;
  color: #ccc;
  text-decoration: none;
}
.numbers a:hover {
  color: #00a3ff;
}
.contact-us a {
  cursor: pointer;
  font-weight: 200;
  color: #ccc;
  text-decoration: none;
}
.contact-us a:hover {
  color: #00a3ff;
}
.contact-us span {
  display: block;
  padding-bottom: 5px;
}
.numbers p span {
  font-weight: 400;
}
.white {
  color: #fff;
}
.nav__footer ul li {
  padding-bottom: 5px;
}
@media (max-width: 610px) {
  /* .nav__footer div {
    width: 50%;
    margin: 0;
  } */
  .nav__footer div {
    width: 250px;
  }
  .footer {
    font-size: 16px;
  }
}
/* @media (max-width: 570px) {
  .nav__footer {
    justify-content: flex-start;
  }
} */
@media (max-width: 313px) {
  .nav__footer div {
    width: 90%;
  }
}
