* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

/* --------------Header---------------- */
.content {
  position: fixed;
  z-index: 5;
  width: 100%;
  transition: all 0.6s ease;
  padding: 0rem 2rem;
}

.content.sticky {
  padding: 10px 0;
  background: #2e2e35;
  height: 50px;
}

.navbar .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  padding: 2rem;
}

.logo a img {
  width: 150px;
}

.logo span {
  color: #eeeeee;
}

.navbar .logo a {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.menu-list {
  display: none;
  padding: 2rem;
}

/* .navbar .menu-list {
  display: none;
} */

.menu-list li {
  list-style: none;
  padding: 0.5rem;
}

.menu-list li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-list li a:hover {
  font-size: 18px;
  font-weight: 900 !important;
}

/* -------------Traductor----------------- */

.lang_nav_selector {
  position: relative;
  top: 13px;
  right: 40px;
  cursor: pointer;
}

.langnavSelector {
  /* font-family: "Founders Grotesk Semibold", serif; */
  font-style: normal;
  font-weight: 700;
  color: white;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
}

.choices {
  /* position: relative;
  right: 0px;
  top: 0px; */
  background-color: #00faa4;
  opacity: 0;
  padding: 0 0;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
  text-align: center;
  width: 80px;
  z-index: -1;
  list-style: none;
}

.choices li button {
  font-size: 1rem;
}

.choices li button:hover {
  color: #ffffff;
}

.jsLang_triggerBtn {
  /* color: inherit; */
  display: block;
  cursor: pointer;
  text-transform: uppercase;
  width: 100%;
  -webkit-transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border: 0 none;
  background: 0 0;
  padding: 0;
}

.is_active {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
  transition: all 0.6s;
  padding: 0;
}

/* ----------------------------------- */
.icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  /* display: none; */
  padding: 2rem;
  display: block;
}

.icon.hide {
  display: none;
}

.navbar .menu-list {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100vh;
  width: 20%;
  background: #2e2e35;
  display: block;
  padding: 40px 0;
  transition: all 0.3s ease;
}

.navbar .menu-list.active {
  left: 0%;
}

.navbar .menu-list li {
  margin-top: 45px;
}

.navbar .menu-list li a {
  font-size: 20px;
}

/* ---------------------------------- */

.active {
  font-size: 18px !important;
  font-weight: 900 !important;
}

.contentGral .title {
  font-size: 35px;
  font-weight: 700;
  color: #2e2e35;
}

.contentGral p {
  padding-top: 20px;
  text-align: justify;
  color: #555555;
}

.icon.cancel-btn {
  position: absolute;
  right: 1px;
  top: 10px;
}

/* ----------------Typed--------------------- */

.banner h2 {
  color: white;
  font-weight: 700;
  font-size: 140px;
  letter-spacing: 15px;
}

.automaticTyped .letter {
  color: #00faa4;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 700;
  width: 100%;
}

.automaticTyped {
  color: #fff;
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 200px;
}

.tipado span {
  font-size: 2.3rem;
}

/* -----------------VIDEOS----------------------- */

video {
  width: 100%;
  height: 100vh;
  position: absolute;
  object-fit: cover;
  transition: all 1.2s linear;
  z-index: -10;
}

.video1 {
  opacity: 1;
}

.video2 {
  opacity: 0;
}

.video3 {
  opacity: 0;
}

.banner {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.text {
  text-align: center;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 35px;
  color: white;
  letter-spacing: 6px;
  width: 100%;
}

/* -------------------MAIN----------------------------- */

/* -------------------About------------------------------- */

.contentAbout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  background: #eeeeee;
}

.about_title {
  padding: 0rem 2rem 2rem 2rem;
  margin-bottom: 1rem;

  font-size: 35px;
  font-weight: 700;
  color: #2e2e35;
}

.parrafo {
  max-width: 700px;
}

.contentAbout a {
  margin-top: 3rem;
  text-decoration: none;
}

.btna {
  padding: 1rem;
  background: #2e2e35;
  color: #fff;
  border: none;
  transition: all 0.4s ease;
  cursor: pointer;
  letter-spacing: 3px;
  font-weight: 500;
  font-size: 14px;
}

.btna:hover {
  background: cyan;
  color: rgb(0, 0, 0);
  font-weight: 500;
}

/* ------------------About__two----------------- */

.contentAbout__two {
  display: flex;
  padding: 2rem 1rem 2rem 1rem;
  justify-content: center;
  margin: 0 auto;
  background: #2e2e35;
  width: 100%;
}

.contentAbout__two img {
  width: 50%;
}

.content-titleText {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-left: 2rem;
}

.titleTextAbout {
  max-width: 400px;
}

.titleTextAboutInfo {
  max-width: 400px;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.titleTextAboutInfo i {
  font-size: 2rem;
  color: #ffffff;
}

.title-text-in h3 {
  color: #ffffff;
}

.title-text-in p {
  color: #bbbbbb;
}

/* -------------------About three------------------- */

.contentAboutThree {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/teamHands.jpg") no-repeat center center / cover;
}

.contentAboutThree__bakcground {
  display: flex;
  flex-direction: column;
  padding: 5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contentAboutThree__bakcground h2 {
  color: #fff;
  align-self: flex-start;
  padding: 2rem 0 1rem 0;
}

.contentAboutThree__bakcground p {
  color: #fff;
}

.contentAboutThree__bakcground a {
  margin: 2rem 0 2rem 0;
  text-decoration: none;
}

.btnac {
  padding: 1rem;
  background: #1bc4c4;
  color: rgb(0, 0, 0);
  border: solid 1px transparent;
  transition: all 0.4s ease;
  cursor: pointer;
  letter-spacing: 3px;
  font-weight: 500;
  max-width: 200px;
  font-size: 12px;
  text-align: center;
}

.btnac:hover {
  background: transparent;
  border: solid 1px #1bc4c4;
  color: rgb(255, 255, 255);
}

/* -------------------Services--------------------------- */

.contentServices {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 3rem 1rem 3rem;
  width: 100%;
}

.service_title {
  font-size: 35px;
  font-weight: 700;
  color: #2e2e35;
}

.contentServices h2 {
  padding: 2rem 2rem 2rem 2rem;
  margin-bottom: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  width: 100%;
}

.card {
  width: 100%;
  background: #eeeeee;
  padding: 2rem;
  border-radius: 0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
}

.svg {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #1bc4c4;
}

.card:hover {
  background: #2e2e35;
  border: 1px solid #eeee;
  color: rgb(255, 255, 255);
}

.card span {
  text-align: center;
  padding: 1.5rem;
}

/* ------------------Laptop-------------------- */

.laptop {
  padding: 3rem 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2e2e35;
  flex-wrap: wrap;
}

.laptop_two {
  padding: 3rem 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2e2e35;
  flex-wrap: wrap;
}

.laptop_img {
  padding: 0 1rem;
}

.laptop_textos {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.laptop_services {
  padding: 10px 0px;
  display: flex;
  justify-content: center;
  max-width: 30rem;
}

.laptop_services .services_svg {
  font-size: 4rem;
  display: inline-block;
  padding: 0px 20px;
  align-self: flex-start;
  color: #00faa4;
}

.laptop_services .services_textos {
  padding: 1rem;
}

.services_textos h3 {
  font-size: 2rem;
  color: #fff;
}

.services_textos p {
  color: #fff;
}

/* ---------------Loader------------------- */

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader {
  background-color: #2e2e35;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 0.9s ease-in-out;
}

.loader2 {
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
}

/*WORKS PAGE*/

.portfolio {
  padding: 3rem 3rem 1rem 3rem;
}

.portfolio_title {
  text-align: center;
  padding: 2rem 2rem 2rem 2rem;
  margin-bottom: 1rem;
  font-size: 35px;
  font-weight: 700;
  color: #2e2e35;
}

.contenido_general {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 0.5rem;
  cursor: pointer;
  width: 100%;
}

.cuadro_img1 {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
}

.cuadro_img1 img {
  width: 100%;
  height: 100%;
  transition: all 500ms ease-out;
}

.cuadro_img1:hover > .capa {
  opacity: 1;
  visibility: visible;
}

.cuadro_img1:hover > img {
  transform: scale(1.3);
}

.cuadro_img1:hover > .capa h3 {
  margin-top: 50px;
  margin-bottom: 15px;
}

.capa {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 43, 0.6);
  transition: all 500ms ease-out;
  opacity: 0;
  visibility: hidden;
  text-align: center;
}

.capa a {
  text-decoration: none;
}

.capa h3 {
  color: #fff;
  font-weight: bolder;
  margin-bottom: 120px;
  transition: all 500ms ease-out;
  margin-top: 30px;
}

.capa p {
  color: #fff;
  font-size: 14px;
  width: 100%;
  max-width: 220px;
  margin: auto;
}

/*End WORKS PAGE*/

/*CONTACT PAGE*/

.contact {
  padding: 3rem 3rem 1rem 3rem;
}

.contact_title {
  font-size: 35px;
  font-weight: 700;
  color: #2e2e35;
}

.contenido_total {
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 900px;
}

.texto_principal {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.texto_principal h2 {
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.texto_principal p {
  font-size: 16px;
}

.fomulario_contacto {
  width: 100%;
}

form {
  width: 100%;
}

label {
  font-size: 15px;
  display: block;
  width: 100%;
}

textarea {
  resize: vertical;
  max-height: 300px;
  min-height: 250px;
}

input,
textarea {
  margin-bottom: 20px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: none;
  background-color: #f2f2f2;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  border: 1px solid transparent;
}

input:focus {
  border: 1px solid #000000;
}

input[type="submit"] {
  margin-bottom: 0;
  background: #ffff;
  color: #000000;
  width: 100px;
  border: 1px solid #ccc;
}

input[type="submit"]:hover {
  cursor: pointer;
  border: 1px solid rgb(0, 0, 0);
}

/*End CONTACT PAGE*/

/*SLIDER*/

.slider {
  width: 100%;
  height: auto;
  margin: auto;
  align-self: center;
  overflow: hidden;
}

.slider h4 {
  padding: 1rem;
  color: #2e2e35;
  font-size: 25px;
  font-weight: 600;
}

.slider .slide-track {
  display: flex;
  animation: scroll 40s linear infinite;
  -webkit-animation: scroll 40s linear infinite;
  width: calc(200px * 14);
}

.slider .slide {
  width: 200px;
}

.slider .slide img {
  width: 100%;
  padding: 1rem;
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-200px * 7));
    transform: translateX(calc(-200px * 7));
  }
}

/* -----------------FOOTER----------------------- */

.footer {
  background: #2e2e35;
  color: #eeeeee;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  -webkit-mask-image: url(../images/background-footer.svg);
  mask-image: url(../images/background-footer.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
}

.footer ul {
  display: flex;
  list-style: none;
}

.footer li a {
  color: #7f7f7f;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.4s;
  padding-right: 2rem;
}

.footer ul li {
  transition: all 0.4s;
}

.footer ul li:hover {
  transform: translateY(-10px);
}

.footer li a:hover {
  color: #00faa4;
}

.footer span {
  color: #7f7f7f;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 10px;
}

.footer .logo a {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.footer .logo span {
  color: #eeeeee;
}

/*Whatsap Icon*/

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 15px;
  right: 16px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
}
.float:hover {
  text-decoration: none;
  color: #fff;
  background-color: #3d9e5a;
}

.my-float {
  margin-top: 16px;
}

.nav-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 8;
  bottom: 0px;
  right: 0px;
  padding: 5px;
  margin: 0px;
}

.whatsapp-button {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 60px;
  height: 60px;
  z-index: 8;
  transition: 0.3s;
  margin: 10px;
  padding: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: transparent;
  -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);
}

.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;
}

.popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: space-between;

  width: 350px;
  height: 250px;
  overflow: hidden;
  bottom: 85px;
  right: 6px;
  transition: 0.5s;
  border-radius: 10px;
  background-color: white;
  -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;
}

.content-whatsapp {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  background: #25d366;
  height: 60px;
}

.btn_close {
  padding: 0.5rem;
}

.closePopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #167f3d;
  -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);
}
.closePopup:hover {
  background-color: #0f5429;
  transition: 0.3s;
}

.closePopup i {
  font-size: 1.2rem;
}

.chat_wat {
  box-sizing: content-box;
  height: 28px;
  width: auto;
  fill: #fff;
  padding: 1rem;
}

.send-msPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 50px;
  border-radius: 50px;
  background-color: #25d366;
  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);
}
.send-msPopup:hover {
  background-color: rgba(37, 211, 102, 0.8);
  transition: 0.3s;
}

.is-active-whatsapp-popup {
  display: flex;
  animation: slideInRight 0.6s 0s both;
  background-color: #fafafa;
}

.icon-whatsapp-small {
  width: 24px;
  height: 24px;
}

.icon-whatsapp {
  width: 45px;
  height: 45px;
}

.icon-font-color {
  color: #ffffff;
}

.icon-font-color--black {
  color: #ffffff;
}

/*Work in whatsapp*/

.text-whatsapp {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 10px;
  min-height: 60px;
  padding: 17px 20px;
  margin: 0 26px 26px;
  border-radius: 32px;
  background: #fff;
  color: #4a4a4a;
  word-break: break-word;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  transform: translateZ(0);
}

.text-whatsapp::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  left: -15px;
  width: 17px;
  height: 25px;
  background: inherit;
  -webkit-clip-path: var(--piki, url(#pikito));
  clip-path: var(--piki, url(#pikito));
}

.content-whatsapp2 {
  position: relative;
  left: 5px;
  bottom: 10px;
}

.openChat {
  padding: 0.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.text-whatsapp p {
  margin: 0;
}

/* --------Media queries--------- */

@media (max-width: 930px) {
  body.disabledScroll {
    overflow: hidden;
  }

  .icon {
    display: block;
  }

  .icon.hide {
    display: none;
  }

  .navbar .menu-list {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 50%;
    background: #2e2e35;
    display: block;
    padding: 40px 0;
    transition: all 0.3s ease;
  }

  .navbar .menu-list.active {
    left: 0%;
  }

  .navbar .menu-list li {
    margin-top: 45px;
  }

  .navbar .menu-list li a {
    font-size: 20px;
  }

  .contentAbout__two {
    flex-direction: column;
    align-items: center;
  }

  .content-titleText {
    margin: 1rem 0rem 0rem 0rem;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contenido_general {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio {
    padding: 3rem;
  }

  .laptop_two {
    flex-direction: column-reverse;
  }
}

@media (max-width: 720px) {
  .banner h2 {
    font-size: 100px;
  }

  .automaticTyped .letter {
    font-size: 2rem;
  }

  .automaticTyped {
    font-size: 2rem;
  }

  .contentAbout__two img {
    width: 100%;
  }

  .contentAboutThree__bakcground {
    padding: 2.5rem;
  }
}

@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .contentAboutThree__bakcground {
    padding: 1.5rem;
  }

  .contenido_general {
    grid-template-columns: 1fr;
  }

  .portfolio {
    padding: 1.5rem;
  }

  .contenido_total {
    width: 100%;
  }

  .contact {
    padding: 2rem;
  }

  .laptop_img img {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .banner h2 {
    font-size: 55px;
  }

  .automaticTyped .letter {
    font-size: 1.4rem;
  }

  .automaticTyped {
    font-size: 1.4rem;
  }

  .titleTextAboutInfo {
    flex-direction: column;
    align-items: center;
  }

  .title-text-in h3 {
    text-align: center;
  }

  .contentAboutThree__bakcground {
    padding: 1rem;
  }

  .contentAbout {
    padding: 5rem 1rem 1rem 1rem;
  }

  .contentAbout h2 {
    padding: 0rem 1rem 1rem 1rem;
    margin: 0;
  }

  .contentAbout button {
    margin: 1rem;
  }

  .contentServices {
    padding: 5rem 1rem 1rem 1rem;
  }

  .portfolio {
    padding: 5rem 1rem 1rem 1rem;
  }

  .contact {
    padding: 11rem 1rem 1rem 1rem;
  }

  .laptop {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .laptop_services {
    width: 100%;
    flex-direction: column;
  }

  .content {
    padding: 0rem;
  }

  .logo {
    padding: 1rem;
  }

  .icon {
    padding: 1rem;
  }
}

@media (max-width: 420px) {
  .popup-whatsapp {
    width: 250px;
  }

  .logo {
    padding: 0.5rem;
  }

  .icon {
    padding: 0.5rem;
  }

  .lang_nav_selector {
    right: 25px;
  }
}
