/*BASE*/
@font-face {
  font-family: "poppins";
  src: url(../fonts/Poppins-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

body {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

html {
  scroll-behavior: smooth;
}

a:hover {
  text-decoration: none !important;
}

.no-padding {
  padding: 0 !important;
}

.subtitle {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  padding: 30px 0;
}

.btn-style {
  background: -webkit-linear-gradient(45deg, #ffd600, #ff058f, #cc01ff);
  color: white;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  padding: 10px 36px;
  transition: background 0.5s ease-in-out;
  text-decoration: none;
}
.btn-style:hover {
  transition: 0.9s;
  background: -webkit-linear-gradient(307deg, #ffd600, #ff058f, #cc01ff);
  color: white;
}

.bg-crystal {
  background: linear-gradient(to right, #012035, #022b38, #022b38, #00052aba 65%) !important;
  backdrop-filter: blur(0.85em) !important;
  box-shadow: 5px -10px 10px 2px #0000008f !important;
}

:root {
  --cursor-color: black;
  --cursor-width: 2px;
  --text-color: red;
  --font-size: 24px;
}

.box .items span {
  background: -webkit-linear-gradient(45deg, #ffd600, #ff058f, #cc01ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Item ! */
.box .item1 span {
  position: relative;
}

.box .item1 span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1px;
  height: 100%;
  width: var(--cursor-width);
  background-color: var(--cursor-color);
  animation: item-1 2s steps(4) infinite, blink 0.3s steps(4) infinite;
  z-index: 2;
}

@keyframes blink {
  to {
    background-color: transparent;
  }
}
@keyframes item-1 {
  80%, 100% {
    left: 100%;
  }
}
.box .item1 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  right: 0;
  background-color: #032738;
  animation: item-1-s 2s steps(4) infinite;
}

@keyframes item-1-s {
  80% {
    left: 100%;
    right: 0;
  }
  100% {
    left: 100%;
  }
}
/* Item 2 */
.box .item2 span {
  position: relative;
}

.box .item2 span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1px;
  height: 100%;
  width: var(--cursor-width);
  background-color: var(--cursor-color);
  animation: item-2 2s steps(10) infinite, blink 0.3s steps(10) infinite;
  z-index: 2;
}

@keyframes blink {
  to {
    background-color: transparent;
  }
}
@keyframes item-2 {
  80%, 100% {
    left: 100%;
  }
}
.box .item2 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  right: 0;
  background-color: #042a39;
  animation: item-2-s 2s steps(10) infinite;
}

@keyframes item-2-s {
  80% {
    left: 100%;
    right: 0;
  }
  100% {
    left: 100%;
  }
}
/* Item 3 */
.box .item3 span {
  position: relative;
}

.box .item3 span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1px;
  height: 100%;
  width: var(--cursor-width);
  background-color: var(--cursor-color);
  animation: item-3 2s steps(9) infinite, blink 0.3s steps(9) infinite;
  z-index: 2;
}

@keyframes blink {
  to {
    background-color: transparent;
  }
}
@keyframes item-3 {
  80%, 100% {
    left: 100%;
  }
}
.box .item3 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  right: 0;
  background-color: #042a39;
  animation: item-3-s 2s steps(9) infinite;
}

@keyframes item-3-s {
  80% {
    left: 100%;
    right: 0;
  }
  100% {
    left: 100%;
  }
}
/* Item 4 */
.box .item4 span {
  position: relative;
}

.box .item4 span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1px;
  height: 100%;
  width: var(--cursor-width);
  background-color: var(--cursor-color);
  animation: item-4 2s steps(8) infinite, blink 0.3s steps(8) infinite;
  z-index: 2;
}

@keyframes blink {
  to {
    background-color: transparent;
  }
}
@keyframes item-4 {
  80%, 100% {
    left: 100%;
  }
}
.box .item4 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  right: 0;
  background-color: #042a39;
  animation: item-4-s 2s steps(8) infinite;
}

@keyframes item-4-s {
  80% {
    left: 100%;
    right: 0;
  }
  100% {
    left: 100%;
  }
}
/* Items Display Animation */
.box .items {
  position: absolute;
  transform: translateY(-50%);
  font-size: 30px;
}

.box .item1 {
  opacity: 1;
  animation: display-1 8s ease infinite;
}

@keyframes display-1 {
  24.9999999999% {
    opacity: 1;
  }
  25%, 100% {
    opacity: 0;
  }
}
.box .item2 {
  opacity: 0;
  animation: display-2 8s ease infinite;
}

@keyframes display-2 {
  24.9999999999% {
    opacity: 0;
  }
  25%, 49.99999999999% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.box .item3 {
  opacity: 0;
  animation: display-3 8s ease infinite;
}

@keyframes display-3 {
  49.9999999999% {
    opacity: 0;
  }
  50%, 74.999999999% {
    opacity: 1;
  }
  75%, 100% {
    opacity: 0;
  }
}
.box .item4 {
  opacity: 0;
  animation: display-4 8s ease infinite;
}

@keyframes display-4 {
  74.9999999999% {
    opacity: 0;
  }
  75%, 100% {
    opacity: 1;
  }
}
#principal {
  background-image: linear-gradient(#ffffff00, #ffffff00), url(../img/back1.jpeg);
  height: 100vh;
  position: relative;
}
#principal .box-middle {
  height: 100vh;
  width: 74%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#principal .box-middle .box-title {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
#principal .box-middle .box-title h1 {
  color: white;
  font-size: 92px;
  font-weight: bolder;
  line-height: 80px;
  margin: 35px 0;
}
#principal .box-middle .box-title h4 {
  font-size: 30px;
  font-weight: 300;
  background: -webkit-linear-gradient(45deg, #ffd600, #ff058f, #cc01ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#principal .box-numbers {
  position: absolute;
  bottom: 0;
  margin-left: 70px;
}
#principal .box-numbers .box-dato {
  padding: 30px 3px;
}
#principal .box-numbers p {
  color: #ff2f71;
  margin: 0;
  font-size: 30px;
  font-weight: bolder !important;
  display: grid;
  line-height: 25px;
}
#principal .box-numbers p span {
  font-size: 18px;
  color: white;
  font-weight: lighter;
}

#pregunta {
  padding: 50px;
  background: black;
  position: relative;
}
#pregunta .box-preguna {
  color: white;
  height: 322px;
  display: flex;
  align-items: center;
}
#pregunta .box-preguna h2 {
  font-size: 38px;
  font-weight: lighter;
  margin-bottom: 15px;
}
#pregunta .box-preguna p {
  font-size: 20px;
  font-weight: 300;
}
#pregunta .box-preguna b {
  font-size: 35px;
}

#basta {
  padding: 50px 0;
  background: #fd0494;
  color: white;
}
#basta .box-text {
  padding: 15px;
  height: 400px;
  display: flex;
  align-items: center;
}
#basta .box-text h3 {
  font-size: 34px;
}
#basta .box-text h4 {
  font-size: 28px;
  font-weight: 200;
}
#basta .box-text h4 b {
  font-size: 55px;
  font-weight: 100;
}
#basta .box-text h5 {
  font-size: 32px;
  font-weight: 600;
}
#basta .box-img {
  width: 100%;
  height: 400px;
  margin: 0 auto;
  display: flex;
}
#basta .box-img img {
  width: 100%;
  object-fit: contain;
}

#servicios {
  background: #012035;
  color: white;
}
#servicios .subtitle {
  padding: 75px 0 30px 0;
}
#servicios .tarjeta {
  position: relative;
  display: flex;
  background-size: cover !important;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(90deg, #000000fc, #012035f2), url(../img/back3.jpg);
  display: flex;
  align-items: end;
  justify-content: end;
  border: 1px solid black;
  border-image: radial-gradient(#ffc800, #70007e) 1;
}
#servicios .tarjeta:hover .tarjeta-hover {
  transform: translateY(15%);
}
#servicios .tarjeta .tarjeta-hover {
  color: #fff;
  padding: 40px 22px;
  transition: 0.7s;
  transform: translateY(calc(100% - 13rem));
  width: 100%;
}
#servicios .tarjeta .tarjeta-hover h2 {
  text-align: end;
  font-size: 25px;
  font-weight: 200;
  color: white;
  padding: 80px 0 40px 0;
}
#servicios .tarjeta .tarjeta-hover p {
  font-size: 18px;
  padding: 12px;
  font-weight: 100;
}

#nosotros {
  position: relative;
  height: 65vh;
  background: linear-gradient(90deg, #00678100, #000000b8), url(../img/equipo.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: 0.9s;
  overflow: hidden;
}
#nosotros .box-slide .box-text p {
  display: none;
}
#nosotros .box-slide .box-text h3 {
  display: none;
}
#nosotros .box-slide .box-text .box-numbers {
  display: none;
}
#nosotros:hover .box-slide {
  transform: translateX(0%);
  background: linear-gradient(270deg, #00000000, #000000d1, #000000);
  color: white;
  width: 600px;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
}
#nosotros:hover .box-slide .box-text {
  padding: 25px 50px;
}
#nosotros:hover .box-slide .box-text h3 {
  display: block;
  font-size: 32px;
  font-weight: 600;
  padding: 20px 0;
}
#nosotros:hover .box-slide .box-text p {
  display: block;
  font-size: 21px;
  font-weight: 100;
}
#nosotros:hover .box-slide .box-text .box-numbers {
  display: block;
}
#nosotros:hover .box-slide .box-text .box-numbers .box-dato {
  padding: 30px 20px;
  display: inline-flex;
}
#nosotros:hover .box-slide .box-text .box-numbers .box-dato p {
  display: inline-flex;
  margin: 0;
  padding: 10px;
  color: white;
  font-size: 40px;
  line-height: 25px;
  font-weight: 400;
}
#nosotros:hover .box-slide .box-text .box-numbers .box-dato .texto-dato {
  padding: 5px;
  font-size: 18px;
  color: white;
  font-weight: 400;
  width: 120px;
  line-height: 21px;
}
#nosotros .box-slide {
  transform: translateX(calc(-100% - 13rem));
  transition: 0.5s;
  overflow: hidden;
}
#nosotros .nosotros-box {
  height: 400px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
#nosotros .nosotros-box .call-nosotros {
  padding: 90px 50px 50px 80px;
  color: white;
}
#nosotros .nosotros-box .call-nosotros h3 {
  font-size: 54px;
  font-weight: bolder;
  padding: 20PX 0 40px 0;
  letter-spacing: 5px;
}

#formulario {
  background: #000;
  padding: 40px;
}
#formulario .caja-form {
  padding: 30px 30px 30px 60px;
}
#formulario .caja-form input, #formulario .caja-form textarea {
  border-bottom: 2px solid white;
  border-radius: 25px;
  border: 3px solid white;
  background: transparent;
  color: white;
}
#formulario .caja-form input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
}
#formulario .caja-form textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
}
#formulario .caja-form h2 {
  font-size: 42px;
  font-weight: bold;
  color: #008bb5;
  padding: 0;
}
#formulario .caja-form h4 {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0px 0px 0px;
}
#formulario .caja-form .titulo-forms {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0px 0px 0px;
  color: white;
}
#formulario .caja-form .boton-enviar {
  margin-top: 30px;
}
#formulario .caja-contacto {
  padding: 30px 0;
}
#formulario .caja-contacto h4 {
  font-size: 32px;
  color: #008bb5;
  padding: 30px 0 5px 0;
}
#formulario .caja-contacto a {
  font-size: 24px;
  text-decoration: none;
  color: white;
}

footer {
  background: #012035;
  color: white;
  padding: 20px 0;
}

/* de telefono a tablet */
@media (max-width: 450px) {
  body {
    width: 100%;
  }

  .subtitle {
    font-size: 2.4rem;
  }

  #principal .box-middle .box-title {
    width: 100%;
  }
  #principal .box-middle .box-title h1 {
    font-size: 50px;
    line-height: 46px;
    margin: 24px 0;
  }
  #principal .box .items {
    font-size: 20px;
  }

  #nosotros:hover {
    width: 100%;
    background-position: left;
  }
  #nosotros:hover .box-slide {
    display: none;
  }
  #nosotros .nosotros-box {
    background-position: right !important;
  }
  #nosotros .nosotros-box .call-nosotros {
    padding: 40px;
  }
  #nosotros .nosotros-box .call-nosotros h3 {
    font-size: 45px;
  }

  #pregunta {
    border-radius: 0;
    padding: 20px;
  }
  #pregunta .pregunta-box {
    padding: 10px;
  }
  #pregunta .pregunta-box .text-pregunta {
    padding: 20px 20px 10px 20px;
  }
  #pregunta .pregunta-box .text-pregunta h2 {
    font-size: 28px;
  }
  #pregunta .pregunta-box .img-logo {
    display: none;
  }
  #pregunta .text-respuesta {
    padding: 20px !important;
  }
  #pregunta .text-respuesta p {
    font-size: 18px;
  }

  #formulario .caja-form {
    padding: 0;
  }
  #formulario .caja-contacto a {
    font-size: 18px;
  }
}
#tel .tel-boton {
  position: fixed;
  top: 20px;
  right: 20px;
  box-shadow: 4px 5px 10px 0px #00000040;
  color: #000;
  border: none;
  border-radius: 100px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  padding: 10px 36px;
  transition: background 0.5s ease-in-out;
  text-decoration: none;
  font-weight: 500;
  background-color: #008bb5;
}
#tel .tel-boton a {
  color: #000;
  font-size: 21px;
  text-decoration: none;
  font-weight: 400;
}
#tel .tel-boton a i {
  -webkit-transform: scale(-1, 1);
  padding: 0 5px;
}
#tel .tel-boton:hover {
  transition: 0.9s;
  color: #000;
  background-color: white;
}

/* whatsapp */
#whats {
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  z-index: 999;
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
#whats .pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  animation: infinite;
}

#whats .nav-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 10000000000000001000000000000000000000000000000000000000000000000000000000000000;
  bottom: 0px;
  right: 0px;
  padding: 5px;
  margin: 0px;
}

@media (max-width: 360px) {
  #whats .nav-bottom {
    width: 320px;
  }
}
#whats .whatsapp-button {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  z-index: 10000000000000001000000000000000000000000000000000000000000000000000000000000000;
  transition: 0.3s;
  margin: 10px;
  padding: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: #25d366;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  display: flex;
  align-items: center;
  justify-content: center;
}

#whats .whatsapp-button:focus {
  outline: none;
}

#whats .whatsapp-button:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 25px;
  background: red;
  position: absolute;
  left: 10px;
  top: 15px;
  z-index: 0;
}

#whats .whatsapp-button i {
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

#whats .circle-anime {
  display: flex;
  position: absolute;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  transition: 0.3s;
  background-color: #77bb4a;
  animation: pulse 1.2s 4s ease 4;
  animation-iteration-count: infinite;
}

#whats .title {
  background: #095e54;
  color: white;
  padding: 25px;
  width: 100%;
  margin: 0 !important;
  line-height: 2px;
  border-radius: 9px 9px 0 0;
}

#whats .title small {
  font-weight: 100;
}
#whats .title small:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 25px;
  background: #2bd32b;
  position: absolute;
  left: 84px;
  top: 42px;
  z-index: 0;
}

#whats .popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  /*padding: 0 15px 15px 10px;*/
  bottom: 100px;
  right: 30px;
  transition: 0.5s;
  border-radius: 10px;
  background-color: #f1f1f1;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  animation: slideInRight 0.6s 0s both;
  border: 1px solid #f1f1f1;
  z-index: 1000000000000000000000000000000000000000000000000000000000;
}

#whats .popup-whatsapp > div {
  margin: 5px;
}

@media (max-width: 680px) {
  #whats .popup-whatsapp p {
    font-size: 0.9em;
  }
}
#whats .popup-whatsapp > .content-whatsapp.-top {
  display: -webkit-inline-box;
  flex-direction: column;
  cursor: auto;
  /*background: #e6ddd4;*/
  background: linear-gradient(rgba(230, 221, 212, 0.9), rgba(230, 221, 212, 0.9)), url(../img/whatsapp.webp);
  margin: 0;
  padding: 15px;
}

#whats .popup-whatsapp > .content-whatsapp.-top p {
  width: 265px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 1em;
  margin-right: 16px;
  margin-top: 3px;
  background: #fff;
  color: #2f4e6f;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 0 15px 15px;
  cursor: auto;
}

#whats .popup-whatsapp > .content-whatsapp.-top p:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-right: 7px solid #fff;
  border-bottom: 12px solid transparent;
  position: absolute;
  left: 8px;
  top: 90px;
  cursor: auto;
}

#whats .popup-whatsapp > .content-whatsapp.-bottom {
  display: flex;
  flex-direction: row;
}

#whats .closePopup {
  position: absolute;
  right: 15px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  /*margin: 0px 0px 15px 0px;*/
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer !important;
  background-color: #f1f1f1;
  color: #2f4e6f;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  cursor: auto;
}

#whats .closePopup:hover {
  background-color: #f1f1f1;
  transition: 0.3s;
  cursor: auto;
}

#whats .send-msPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0px 0px 0px 5px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  border: 1px solid #25d366;
  cursor: auto !important;
}

#whats .send-msPopup:hover {
  background-color: #f8f8f8;
  transition: 0.3s;
  cursor: auto;
}

#whats .send-msPopup:focus {
  outline: none;
  cursor: auto;
}

#whats .send-msPopup:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid #f1f1f1;
  position: absolute;
  bottom: -11px;
  right: 10px;
}

#whats .is-active-whatsapp-popup {
  display: flex;
  animation: slideInRight 0.6s 0s both;
  cursor: auto;
}

#whats input.whats-input[type=text] {
  width: 250px;
  height: 40px;
  box-sizing: border-box;
  border: 0px solid #ffffff;
  border-radius: 20px;
  font-size: 1em;
  background-color: #ffffff;
  padding: 0px 0px 0px 10px;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  outline: none;
  transition: 0.3s;
  cursor: auto;
}

@media (max-width: 420px) {
  #whats input.whats-input[type=text] {
    width: 225px;
    cursor: auto;
  }
}
#whats input.whats-input::placeholder {
  /* Most modern browsers support this now. */
  color: rgba(68, 68, 68, 0.705);
  opacity: 1;
  cursor: auto;
}

#whats input.whats-input[type=text]:focus {
  background-color: #f8f8f8;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  transition: 0.3s;
  cursor: auto;
}

#whats .icon-whatsapp-small {
  width: 24px;
  height: 24px;
  cursor: auto;
}

#whats .icon-whatsapp {
  width: 45px;
  height: 45px;
}

#whats .icon-font-color {
  color: #ffffff;
}

#whats .icon-font-color--black {
  color: #333333;
}

#whats .send-msPopup i {
  cursor: auto !important;
}

/* End whatsapp */

/*# sourceMappingURL=styles.css.map */
