/* Falta el favicon */

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-main: #002fa7;
  --color-green: #31db7b;
  --color-orange: #fc6703;
  --color-blue: #009bff;
  /* Referencia Gradient*/
  --color-gradient: linear-gradient(
    148deg,
    var(--color-helper) 0%,
    var(--color-second) 100%
  );
  /* paddings */
  --pad-main-width: 100px;
}

body {
  font-family: "Montserrat";
  font-size: 16px;
  color: white;
  width: 100vw;
  overflow: hidden;
}

.full-page {
  height: 100vh;
  background-color: black;
}

.hero-somos {
  background-color: black;
}

.hero-portfolio {
  background-color: black;
  padding: 0 24px;
  text-align: center;
}

.hero-hacemos {
  background-color: black;
}

.wrapper {
  display: flex;
  flex-direction: column;
}

.wrapper nav {
  background-color: black;
  height: 10vh;
  width: 100vw;
  padding-left: 24px;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
}

.wrapper nav .menu-btns {
  display: flex;
  flex-direction: row;
  color: white;
}

.wrapper nav .menu-btns a {
  width: 100%;
  margin: auto 12px;
  text-decoration: none;
  color: white;
  font-weight: 300;
  transition: 0.25s;
  display: inline-block;
  position: relative;
}

.wrapper .logo-container {
  flex-grow: 1;
  height: 10vh;
}

.wrapper nav .menu-btns a:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: white;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.wrapper nav .menu-btns a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.wrapper .home-hero {
  width: 100vw;
  height: 90vh;
  display: grid;

  align-items: center;
  grid-template-rows: 1fr 1fr 1fr;
  color: white;
  font-weight: 800;
  font-size: 4rem;
  text-transform: uppercase;
  text-align: center;
}

.wrapper .main-hero {
  width: 100vw;
  height: 90vh;
}

.animated-text {
  color: white;
  height: 100%;
  opacity: 0.3;
}

.wrapper .hero-main {
  display: flex;
}

.wrapper .hero-contacto {
  background-color: black;
  display: flex;
  flex-direction: column;
}

.wrapper .logo-container img {
  height: 80%;
  margin-top: 8px;
}

.wrapper nav .RRSS {
  margin-bottom: 36px;
  transition: 0.25s;
}

.wrapper nav .RRSS img {
  transform: translateY(0em);
  transition: 0.25s;
}
.wrapper nav .RRSS img:hover,
.wrapper nav .RRSS img:focus {
  transform: translateY(-0.25em);
  transition: 0.25s;
}

.wrapper nav .RRSS img {
  width: 24px;
}

.main-hero {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactanos-container {
  text-align: center;
}

.wrapper .main-hero h5 {
  color: white;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 36px;
}

.wrapper .main-hero h6 {
  color: white;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 36px;
}

.main-hero .hero-box {
  background-color: white;
  padding: 36px;
  z-index: -10;
}

.main-hero .hero-box h2 {
  margin-bottom: 24px;
}
.main-hero .hero-box .php-email-form {
  display: flex;
  flex-direction: column;
  color: black;
}

.main-hero .hero-box .php-email-form label {
  margin-bottom: 4px;
  margin-top: 4px;
}

.main-hero .hero-box .php-email-form input,
.main-hero .hero-box .php-email-form textarea {
  border: none;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 12px;
}

.main-hero .hero-box .php-email-form input {
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 4px;
}

.main-hero .hero-box .php-email-form textarea {
  border: 1px solid var(--color-main);
}

.main-hero .hero-box .php-email-form input:focus,
.main-hero .hero-box .php-email-form textarea:focus {
  outline: none;
}

.main-hero .hero-box .php-email-form .input-container {
  text-align: center;
}

.main-hero .hero-box .php-email-form .submit-btn {
  position: relative;
  top: 18px;
  width: 160px;
  border: none;
  z-index: 10;
}

.mask-container {
  position: absolute;
  pointer-events: none;
}

.contacto-mask {
  position: relative;
  top: 384px;
  left: -100px;
  width: 2800px;
  height: 200px;
  background-color: black;
}

/*
.main-hero .hero-box .php-email-form .submit-btn Button {
    width: 240px;
    height: 36px;
    background-color: var(--color-blue);
    color: white;
    border: 0px solid;
    margin-top: 12px;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
}
*/

.video-container {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
}

#video-home {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  min-height: 100vh;
  min-width: 100vw;
  z-index: -10;
}

.main-hero-air {
  width: 100vw;
}

.main-hero-air .logo-grid {
  width: 240px;
}

.contactanos-container {
  width: 40vw;
  min-width: 460px;
  text-align: start;
}
.contactanos-ok-container {
  width: 40vw;
  min-width: 460px;
  text-align: center;
}

footer {
  color: white;
  font-weight: 300;
  text-align: center;
  position: relative;
  z-index: 10;
}

footer .bold-text {
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 12px;
  bottom: 12px;
  width: 68px;
  height: 68px;
  z-index: 100;
}

.floating-whatsapp img {
  width: 100%;
  border-radius: 50%;
}

.marquee-container {
  width: 100hv;
  height: 68px;
  width: 100%;
  white-space: nowrap;
}

.Fix-text {
  width: 100vw;
}

.marquee-container img {
  height: 100%;
}

.texto-init {
  transform: translatex(0);
  animation: marquesina 30s infinite normal linear;
}

@keyframes marquesina {
  0% {
    transform: translatex(0);
  }
  100% {
    transform: translatex(-50%);
  }
}

.texto-bottom {
  transform: translatex(-50%);
  animation: marquesina2 30s infinite normal linear;
}

@keyframes marquesina2 {
  0% {
    transform: translatex(-50%);
  }
  100% {
    transform: translatex(0%);
  }
}

.hacemos-item {
  width: 100vw;
  height: 90vh;
}

@media screen and (max-width: 770px) {
  .Fix-text {
    font-size: 2rem;
  }

  .marquee-container {
    height: 48px;
    font-size: 16px;
  }

  .menu-mobile {
    display: block;
  }

  .menu-btns {
    display: none;
  }
}

.contactanos-tittle {
  width: 480px;
  margin-bottom: 24px;
}

.menu-mobile {
  display: none;
}

.hacemos-background {
  position: absolute;
  min-width: 100vw;
  min-height: 100vh;
  max-width: 1610px;
  max-height: 1040px;
}

.item-frame {
  width: 480px;
  z-index: 10;
  position: absolute;
  right: 120px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;
}

.hacemos-text {
  font-weight: 300;
  font-size: 1.2rem;
  text-align: justify;
}

.hacemos-tittle {
  width: 400px;
  float: right;
  margin-bottom: 24px;
}

.arrow-frame {
  width: 100vw;
  z-index: 10;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#flecha-izquierda {
  position: absolute;
  left: 24px;
  width: 48px;
  cursor: pointer;
}

#flecha-derecha {
  position: absolute;
  right: 24px;
  width: 48px;
  transform: rotate(180deg);
  cursor: pointer;
}

.galeria-somos {
  display: flex;
  gap: 4rem;
}

.galeria-somos p {
  font-weight: 300;
  font-size: 0.7rem;
}

.somos-item {
  width: 320px;
}
.somos-item img {
  width: 240px;
}
.somos-item h2 {
  padding-bottom: 8px;
}
.somos-item h4 {
  padding-bottom: 12px;
}

.descripcion-somos {
  display: flex;
  align-items: start;
  gap: 36px;
  margin-top: 48px;
}
.descripcion-somos img {
  width: 320px;
}

.descripcion-somos p {
  width: 700px;
  font-weight: 300;
  font-size: 1rem;
}

.descripcion-somos .bold-text-somos {
  font-weight: 700;
  margin-top: 12px;
  font-size: 1rem;
}

.hero-portfolio {
  width: 100vw !important;
  flex-direction: column;
}

.hero-portfolio h3 {
  font-weight: 300;
}

.mobile-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 90vh;
}

.mobile-hero h6 {
  font-size: 2rem;
  padding: 2rem;
  text-align: center;
}

.mobile-hero .main-hero-air {
  margin-top: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacto-rrss img {
  width: 32px;
  margin-bottom: 12px;
}

.mobile-wrapper {
  background-color: black;
  width: 100vw;
  height: 80vh;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  justify-items: center;
  align-items: center;
}

.mobile-wrapper img {
  width: 60vw;
  max-width: 380px;
}

.mobile-text {
  text-align: center;
}

.mobile-rrss {
  text-align: center;
}
.mobile-rrss h4 {
  margin-bottom: 1rem;
}

.mobile-rrss .inner-rrss img {
  width: 24px;
  margin-bottom: 1rem;
}

.mobile-rrss p {
  font-size: 1rem;
  font-weight: 300;
}
.mobile-rrss .bold-text {
  font-weight: 700;
}

.button-pdf {
  cursor: pointer;
  align-items: center;
  justify-content: center;
  background-color: black;
  padding: 12px 24px;
  border: 1px solid white;
  border-radius: 8px;
  margin-top: 24px;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.button-pdf:hover {
  background-color: white;
  color: black;
}
