html, body {
  padding: 0;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  background-color: #FFFFFF;
  color: #000000;
  font-weight: 300;
  line-height: 1.25em;
  transition: background-color 1s ease, color 1s ease, border 1s ease;
  --card-border: 1px solid #eeeeee;
}
html.dark, body.dark {
  background-color: #000000;
  color: #FFFFFF;
  --card-border: 1px solid transparent;
}
html.acqua, body.acqua {
  background-color: #167287;
  color: #FFFFFF;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #03161b 0%, #0b2f38 55%, #167287 100%);
  color: #FFFFFF;
  opacity: 0.5;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.page-loader__mark {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.95);
  animation: hts-spin 0.9s linear infinite;
}
.page-loader__label {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.72;
}

body.is-ready .page-loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes hts-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h1, h2, h3 {
  font-weight: 200;
}

h4, h5, h6 {
  font-weight: 400;
}

.container {
  padding: 0rem 2rem;
}

.hero {
  height: 100vh;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-weight: 400;
}
.hero i {
  margin-right: 0.25rem;
}
.hero .container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: white;
}
.hero .container .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero .container .top .logo {
  width: 180px;
}
.hero .container .top .menu-bar {
  background-color: rgba(255, 254, 254, 0.14);
  display: flex;
  gap: 1rem;
  border-radius: 10rem;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(10px);
  color: #000000;
  font-weight: 400;
  font-size: 0.833rem;
}
.hero .container .top .menu-bar div {
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  transition: all 0.5s ease;
  cursor: pointer;
}
.hero .container .top .menu-bar div:hover {
  border: 1px solid #167287;
  color: #167287;
}
.hero .container .top .menu-bar a {
  text-decoration: none;
  color: inherit;
}
.hero .d-background {
  position: absolute;
  z-index: 0;
  top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  width: calc(100vw - 2rem);
  height: calc(100vh - 2rem);
  --hero-image-min-width: calc((100vw - 2rem) * 0.95);
  --hero-image-min-height: calc(100vh - 2rem);
}
.hero .d-background .left {
  width: 95%;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.hero .d-background .right {
  width: 5%;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.hero .d-background img {
  width: auto;
  height: auto;
  min-width: var(--hero-image-min-width);
  min-height: var(--hero-image-min-height);
  max-width: none;
  object-fit: cover;
}
.hero .d-background .bggradient {
  width: 100%;
  height: 8rem;
  background: #000000;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  position: absolute;
  left: 0px;
  bottom: 0;
}

body.is-loading .hero .bottom .hero-reveal {
  opacity: 0;
  transform: translateY(3rem);
}

.about-us {
  padding: 2rem 0rem 3rem 0rem;
}
.about-us .container {
  display: flex;
  gap: 5rem;
  align-items: center;
  justify-content: space-between;
}
.about-us .container .left {
  width: 40%;
}
.about-us .container .right {
  width: 60%;
  padding: 2rem 0rem;
  border-top: 1px solid #a0cad4;
  border-bottom: 1px solid #a0cad4;
}
.about-us svg {
  width: 100%;
}
.about-us svg #sustraccion_1 {
  transition: all 1s ease;
}
.about-us svg.active #sustraccion_1 {
  transform: rotate(2deg) translate(11px, 6px) !important;
}

.services {
  color: white;
  padding: 4rem 0rem;
  background-color: black;
}
.services .container {
  position: sticky;
  top: 4rem;
  z-index: 1000;
}
.services .cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0rem 1rem;
}
.services .cards .collapsed {
  z-index: 1;
}
.services .cards .collapsed .top {
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
  align-items: center;
  margin-block: 1rem;
  justify-content: space-around;
}
.services .cards .collapsed .top > div {
  width: calc(50% - 0.5rem);
}
.services .cards .collapsed .top .icon {
  text-align: center;
}
.services .cards .collapsed .top .icon img {
  max-width: 100%;
}
.services .cards .collapsed .more-info {
  width: calc(50% - 2rem);
  position: absolute;
  right: 1.5rem;
  display: flex;
  align-items: center;
}
.services .cards .collapsed .more-info .pill {
  font-size: 1rem;
  border-radius: 1rem;
  border: 1px solid;
  padding: 0.25rem 0.5rem;
  background-color: #1a1a1a;
  z-index: 1;
  transition: all 0.5s ease-in;
  opacity: 0;
}
.services .cards .collapsed .more-info .line {
  opacity: 0;
  position: absolute;
  height: 1px;
  background-color: white;
  right: -2rem;
  width: 0%;
  transition: all 0.5s ease-in;
}
.services .cards .item {
  min-height: 18rem;
  display: flex;
  align-items: center;
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  padding: 1.5rem;
  flex: 1 1 calc(50% - 1rem);
  font-size: 0.833rem;
  line-height: 1.25em;
  cursor: pointer;
}
.services .cards .item .open {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  opacity: 0;
  background-color: #1a1a1a;
  z-index: 0;
  transition: all 0.5s ease-in;
}
.services .cards .item .open p {
  margin-bottom: 0.5rem;
}
.services .cards .item .open .close-btn {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9rem;
  height: 2rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.04);
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.5s ease;
  rotate: 0;
}
.services .cards .item .open .close-btn:hover {
  opacity: 1;
  rotate: 90deg;
}
.services .cards .item.active .open {
  opacity: 1;
  z-index: 1;
}
.services .cards .item.active .collapsed {
  opacity: 0;
  z-index: 0;
}
.services .cards .item:hover .pill {
  opacity: 1;
}
.services .cards .item:hover .line {
  width: 80%;
  opacity: 1;
}

.certifications {
  padding: 6rem 0rem 10rem 0rem;
}
.certifications .logos-wrapper {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 6rem 0rem 0rem 0rem;
  scale: 0.8;
}

.testimonials {
  background-color: #167287;
  color: white;
  padding: 4rem 0rem;
  overflow: hidden;
}
.testimonials .wrapper {
  display: inline-flex;
  gap: 4rem;
  overflow: visible;
  padding: 2rem 0rem;
}
.testimonials .wrapper .item {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  padding: 1rem 2rem;
  width: 25rem;
  align-content: center;
  position: relative;
  font-size: 0.8rem;
  line-height: 1.25em;
  transition: opacity 0.5s ease;
  overflow: visible;
}
.testimonials .wrapper .item .quote-top, .testimonials .wrapper .item .quote-bottom {
  position: absolute;
  font-size: 10rem;
  font-weight: 700;
  -webkit-text-stroke: 1px white;
  color: transparent;
  font-style: italic;
  opacity: 0.5;
  transition: all 0.5s ease;
  overflow: visible;
  padding: 0rem 0.5rem;
}
.testimonials .wrapper .item .quote-top {
  top: 3.5rem;
  left: -4rem;
  opacity: 0;
}
.testimonials .wrapper .item .quote-bottom {
  bottom: -3.5rem;
  right: -2rem;
  opacity: 0;
  transition-delay: 0.5s;
}
.testimonials .wrapper .item .line {
  width: 0;
  opacity: 0;
  transition: all 0.5s ease-in;
  height: 1px;
  margin: 0.75rem 0rem 0.75rem 0rem;
  background-color: #FFFFFF;
}
.testimonials .wrapper .item.active .line {
  width: 100%;
  opacity: 0.8;
}
.testimonials .wrapper .item.active .quote-top {
  top: 2.5rem;
  left: -2rem;
  opacity: 0.5;
}
.testimonials .wrapper .item.active .quote-bottom {
  bottom: -3.5rem;
  right: 0rem;
  opacity: 0.5;
}
.testimonials .wrapper .item .role {
  font-weight: 300;
  font-size: 1rem;
}
.testimonials .wrapper .item h5 {
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.clients {
  overflow: hidden;
  padding: 6rem 0rem;
}
.clients h2 {
  margin-bottom: 0;
  width: 25%;
  padding-right: 1rem;
}
.clients .top, .clients .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.clients .top .line, .clients .bottom .line {
  width: 0%;
  height: 1.5px;
  background-color: #e7e7e7;
}
.clients .top .pill, .clients .bottom .pill {
  background-color: #f5f5f5;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  width: 25%;
  text-align: center;
}
.clients .top .line {
  margin-top: 0.25rem;
}
.clients.active .top .line, .clients.active .bottom .line {
  width: 80%;
}
.clients .logos-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 6rem 0rem 6rem 2rem;
  overflow: visible;
}

.footer {
  padding: 4rem 0rem;
  position: relative;
  background-color: #000000;
  color: white;
}
.footer .bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.footer .bg-lines img, .footer .bg-lines svg {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
}
.footer .top {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.footer .top .right {
  width: 60%;
}
.footer .top .form-wrapper {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 1rem;
}
.footer .top .form-wrapper #contact-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.footer .top .form-wrapper input {
  width: calc(50% - 0.5rem);
  background-color: rgba(255, 255, 255, 0.1);
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  padding: 0rem 1rem;
  color: #000000;
  font-size: 0.8rem;
  font-weight: 200;
}
.footer .top .form-wrapper input.hp-field {
  width: 0;
  overflow: hidden;
  padding: 0;
  border: none;
}
.footer .top .form-wrapper textarea {
  width: 100%;
  height: 10rem;
  border-radius: 2rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #000000;
  font-weight: 200;
  font-size: 0.8rem;
}
.footer .top .form-wrapper input::placeholder {
  color: gray;
}
.footer .top .form-wrapper textarea::placeholder {
  color: #000000;
}
.footer .top .form-wrapper button {
  background-color: #000000;
  border-radius: 2rem;
  text-align: right;
  border: none;
  height: 2.5rem;
  color: #FFFFFF;
  width: 10rem;
  padding: 0rem 1rem;
  margin-right: -1rem;
}
.footer .bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  backdrop-filter: blur(3px);
  font-size: 0.8rem;
}
.footer .bottom .it-solutions {
  font-size: 1rem;
}
.footer .bottom .copyright {
  opacity: 0.5;
  font-weight: 200;
}
.footer .bottom i {
  margin-right: 0.25rem;
}
.footer .bottom .location {
  font-size: 1rem;
}

.mobile {
  display: none;
}

@media (max-width: 1080px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: initial;
  }
  .footer .top {
    flex-flow: wrap;
    justify-content: center;
  }
  .footer .top h2 {
    text-align: center;
  }
  .hero .container {
    padding: 1rem;
  }
  .testimonials .wrapper .item {
    width: 80vw;
    padding: 1rem;
  }
  .testimonials .wrapper {
    display: flex;
    width: calc(100% + 1rem);
    gap: 0rem;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 2rem 1rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }
  .testimonials .wrapper::-webkit-scrollbar {
    height: 0;
  }
  .testimonials .wrapper .item {
    flex: 0 0 80vw;
    margin: 0rem 0.5rem;
    scroll-snap-align: center;
  }
  .hero .container .top {
    flex-wrap: wrap;
  }
  .hero .container .top .menu-bar {
    display: none;
  }
  .hero .container .top .logo {
    position: relative;
    left: -0.5rem;
  }
  .services .cards .item {
    width: 100%;
    flex: auto;
  }
  .services .cards .collapsed .top {
    flex-wrap: wrap;
  }
  .services .cards .collapsed .top > div {
    width: 100%;
  }
  .about-us .container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .about-us .container .left, .about-us .container .right {
    width: 100%;
    padding-top: 0rem;
  }
  .about-us .container .left img, .about-us .container .right img {
    width: 100%;
  }
  h2 {
    text-align: center;
    font-size: 1.8rem;
  }
  .footer .bg-lines img, .footer .bg-lines svg {
    object-fit: cover;
    opacity: 0.3;
  }
  .footer .bottom {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.25rem 1.25rem;
  }
  .footer .top .right {
    width: 100%;
    margin-top: 2rem;
  }
  .hero .container .top .menu-bar {
    padding: 1rem;
    gap: 1rem;
  }
  .about-us, .certifications {
    padding: 2rem 0rem 3rem 0rem;
  }
  .certifications .logos-wrapper {
    flex-flow: nowrap;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .certifications img {
    max-width: 100%;
  }
}
@media (min-width: 700px) and (max-width: 1092px) {
  .testimonials .wrapper .item {
    width: 40vw;
  }
  .services .cards .item {
    width: calc(50% - 2rem);
  }
  .services .cards .collapsed .top {
    flex-wrap: wrap-reverse;
  }
  .services .cards {
    flex-wrap: wrap;
  }
  .footer .bottom {
    padding: 1rem;
  }
  .clients .top .pill, .clients .bottom .pill {
    padding: 0.5rem;
  }
}
@media (min-width: 1081px) and (max-width: 1198px) {
  .container {
    padding: 0;
    max-width: 1000px;
  }
  .footer .bottom {
    padding: 1rem;
  }
}
@media (max-width: 500px) {
  .clients .top .pill, .clients .bottom .pill {
    width: 185%;
  }
  .clients h2 {
    width: 120%;
  }
  .hero {
    padding: 0.5rem;
  }
  .testimonials .container {
    padding: 0rem 0rem;
  }
  .hero .d-background {
    gap: 0.5rem;
    top: 0.5rem;
    width: calc(100vw - 1rem);
    height: calc(100vh - 1rem);
    --hero-image-min-width: calc((100vw - 1rem)*0.95);
    --hero-image-min-height: calc(100vh - 1rem);
  }
  .hero .container {
    padding: 1.5rem;
  }
  .certifications .logos-wrapper {
    scale: 1;
  }
  .hero h1 {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
  .certifications .container {
    padding: 0rem 0.5rem;
  }
}

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