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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #252424;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 24px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #3D4BFF;
  text-decoration: none;
  transition: all 0.15s ease;
}
a:hover {
  color: #ff6b35;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: "Arial", sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

.section__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
}

.header {
  position: relative;
  display: none;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid #f5f5f5;
  padding: 0;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.header__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .header__container {
    padding: 0 32px;
  }
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header__logo {
  font-size: 32px;
  font-weight: 700;
  color: #3D4BFF;
}
.header__logo h1 {
  margin: 0;
  font-size: inherit;
}
.header__logo img.img_logo {
  width: 180px;
}

.header__nav {
  display: none;
}
@media (min-width: 992px) {
  .header__nav {
    display: block;
    position: absolute;
    left: 35%;
    transform: translateX(-50%);
  }
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  list-style: none;
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: #252424;
  position: relative;
}
.nav__link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3D4BFF;
  transition: all 0.3s ease;
}
.nav__link:hover::after {
  width: 100%;
}

.header__right {
  display: none;
  align-items: center;
  gap: 32px;
  width: 80%;
}
@media (min-width: 992px) {
  .header__right {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
    margin-bottom: 6px;
  }
}

.header__blog {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog__label {
  font-size: 14px;
  color: #cccccc;
  font-weight: 600;
}

.blog__title {
  font-size: 10px;
  color: #252424;
  font-weight: 600;
  max-width: 220px;
}

.header__cta {
  background-color: transparent;
  color: #252424;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 24px;
  border: 2px solid #252424;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header__cta:hover {
  background-color: #252424;
  color: #ffffff;
}

.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  padding: 16px;
}
@media (min-width: 992px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle span {
  width: 25px;
  height: 3px;
  background-color: #252424;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero {
  min-height: 80vh;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 48px 0;
  }
}

.hero__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .hero__container {
    padding: 0 32px;
  }
}
.hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #252424;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 64px;
  }
}

.hero__description {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero__cta {
  background-color: #3D4BFF;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 24px 32px;
  border-radius: 9999px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero__cta:hover {
  background-color: rgb(10, 27.6804123711, 255);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero__services {
  list-style: none;
  gap: 0;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  border-top: 1px solid #f5f5f5;
}
.hero__services li {
  font-size: 14px;
  color: #cccccc;
  font-weight: 600;
}

.hero__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.gallery__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .gallery__item--2 {
    grid-column: 2;
  }
}
.gallery__item--3 {
  grid-column: 1/-1;
  aspect-ratio: auto;
}
@media (min-width: 768px) {
  .gallery__item--3 {
    grid-column: 3;
    aspect-ratio: 3/4;
  }
}

.hero__right-text {
  font-size: 14px;
  color: #666666;
  text-align: center;
  line-height: 1.8;
}

.services {
  min-height: 80vh;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .services {
    min-height: 100vh;
    padding: 64px 32px;
  }
}

.services__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .services__container {
    padding: 0 32px;
  }
}
.services__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.services__heading {
  font-size: 64px;
  font-weight: 700;
  color: #252424;
  margin-bottom: 24px;
}

.services__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 992px) {
  .services__layout {
    grid-template-columns: 0.4fr 1fr;
    gap: 64px;
  }
}

.services__tabs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services__tab {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 24px;
  position: relative;
}
.services__tab:hover {
  color: #3D4BFF;
}
.services__tab.active {
  border-left-color: #3D4BFF;
  color: #3D4BFF;
  font-weight: 700;
}
.services__tab.active .tab__label {
  color: #3D4BFF;
}

.tab__label {
  font-size: 16px;
  color: #252424;
  font-weight: 600;
  display: block;
  transition: all 0.3s ease;
}

.services__content {
  position: relative;
  min-height: 400px;
}

.service__item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}
.service__item.active {
  opacity: 1;
  pointer-events: auto;
}

.service__title {
  font-size: 24px;
  font-weight: 700;
  color: #252424;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service__highlight {
  color: #3D4BFF;
  font-weight: 700;
  font-size: 1.4em;
}
.service__highlight .highlight-btn {
  color: #4a3fb8;
  font-weight: 700;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: inherit;
  font-family: inherit;
}

.service__description {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 32px;
}

.service__cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #252424;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 2px solid #252424;
  transition: all 0.3s ease;
}
.service__cta:hover {
  color: #3D4BFF;
  border-bottom-color: #3D4BFF;
}

.portfolio {
  min-height: 80vh;
  padding: 48px 24px;
  background-color: #f5f5f5;
}
@media (min-width: 768px) {
  .portfolio {
    min-height: 100vh;
    padding: 48px 0;
  }
}

.portfolio__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .portfolio__container {
    padding: 0 32px;
  }
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 992px) {
  .portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.services {
  min-height: 80vh;
  padding: 48px 24px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .services {
    min-height: 100vh;
    padding: 48px 0;
  }
}

.services__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .services__container {
    padding: 0 32px;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 992px) {
  .services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.clients {
  min-height: 80vh;
  padding: 48px 24px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .clients {
    min-height: 100vh;
    padding: 48px 0;
  }
}

.clients__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .clients__container {
    padding: 0 32px;
  }
}
.clients__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.clients__title {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #252424;
  margin: 0;
  text-align: center;
}

.clients__divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background-color: #f5f5f5;
}

.clients__carousel {
  width: 100%;
  overflow: hidden;
  padding: 32px 0;
}

.carousel__track {
  display: flex;
  gap: 16px;
  animation: scroll 30s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .carousel__track {
    gap: 64px;
  }
}
.carousel__track:hover {
  animation-play-state: paused;
}

.carousel__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 110px;
}
@media (min-width: 768px) {
  .carousel__item {
    min-width: 110px;
    height: 110px;
  }
}

.carousel__logo {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.carousel__item:hover .carousel__logo {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.clients__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.clients__description {
  font-size: 16px;
  color: #252424;
  line-height: 1.8;
  max-width: 600px;
  margin: 0;
}

.clients__cta {
  font-size: 16px;
  color: #252424;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
.clients__cta::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #252424;
  transition: all 0.3s ease;
}
.clients__cta:hover {
  color: #3D4BFF;
}
.clients__cta:hover::after {
  background-color: #3D4BFF;
}

.projects-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
@media (min-width: 768px) {
  .projects-slider {
    height: 100vh;
  }
}

.slider__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider__slide.active {
  opacity: 1;
  z-index: 10;
}

.slider__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  z-index: 1;
}

.slider__content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: #ffffff;
  padding: 48px 24px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .slider__content {
    padding: 64px;
  }
}

.slider__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .slider__title {
    font-size: 64px;
  }
}

.slider__description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .slider__description {
    font-size: 16px;
  }
}

.slider__dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 24px;
}

.slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.slider__dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.slider__dot.active {
  background-color: #ffffff;
  width: 32px;
  border-radius: 6px;
}

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}
@media (min-width: 768px) {
  .slider__arrow {
    width: 56px;
    height: 56px;
  }
}
.slider__arrow:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.slider__arrow:active {
  background-color: rgba(255, 255, 255, 0.6);
}
.slider__arrow svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .slider__arrow svg {
    width: 28px;
    height: 28px;
  }
}
.slider__arrow--prev {
  left: 32px;
}
@media (min-width: 768px) {
  .slider__arrow--prev {
    left: 48px;
  }
}
.slider__arrow--next {
  right: 32px;
}
@media (min-width: 768px) {
  .slider__arrow--next {
    right: 48px;
  }
}

.journeys {
  min-height: 80vh;
  padding: 48px 24px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .journeys {
    min-height: 100vh;
    padding: 48px 0;
  }
}
.journeys {
  min-height: auto;
}

.journeys__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .journeys__container {
    padding: 0 32px;
  }
}

.journeys__title {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #252424;
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 1px solid #f5f5f5;
}

.journeys__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .journeys__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 992px) {
  .journeys__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.journey-card {
  padding: 32px;
  border: 1px solid #f5f5f5;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s ease;
}
.journey-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.journey-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #252424;
  margin: 0;
}

.journey-card__description {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.journey-card__link {
  font-size: 14px;
  color: #252424;
  font-weight: 600;
  text-decoration: underline;
  align-self: flex-start;
}
.journey-card__link:hover {
  color: #3D4BFF;
}

.footer {
  background-color: #252424;
  color: #ffffff;
  padding: 48px 24px;
  max-width: 1140px;
  margin: 0 auto;
  margin-bottom: 5%;
}

.footer__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .footer__container {
    padding: 0 32px;
  }
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__top {
    flex-wrap: nowrap;
  }
}

.footer__logo h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}
.footer__logo img.img_logo {
  width: 180px;
}

.footer__nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
  display: none;
}
@media (min-width: 768px) {
  .footer__nav {
    gap: 48px;
  }
}

.footer__link {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer__link:hover {
  color: #3D4BFF;
}

.footer__cta {
  margin-left: auto;
}

.footer__cta-text {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.footer__cta-text:hover {
  color: #3D4BFF;
}

.footer__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 24px 0;
}

.footer__bottom {
  padding-top: 24px;
}

.footer__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-fade-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-slide-left {
  animation: slideInFromLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideInFromRight 0.8s ease-out;
}

.featured__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.featured__container .featured__image {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 440/500;
}
.featured__container .featured__image-caption {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: rgba(26, 26, 26, 0.8);
  color: #ffffff;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
}

.featured__category {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #cccccc;
  font-size: 14px;
  padding: 16px 24px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .featured__category {
    padding: 0 32px;
  }
}

.featured__label {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #cccccc;
}

.featured__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.featured__image-container {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.featured__layout {
  display: grid;
  gap: 48px;
}
@media (min-width: 992px) {
  .featured__layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
  }
}

.buy-tooltip {
  position: fixed;
  z-index: 999;
  pointer-events: none;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: #3D4BFF;
  border: 1px solid var(--signal-2);
  padding: 6px 10px;
  white-space: nowrap;
  opacity: 0;
  cursor: pointer;
  transform: translate(14px, 14px) scale(1);
  transition: opacity 140ms ease-out, transform 140ms cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 0 18px rgba(74, 123, 255, 0.32);
  will-change: opacity, transform, clip-path, filter;
}

.buy-tooltip.visible {
  opacity: 1;
}

#LOADING {
  background-color: #252424;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 0;
  min-height: 100%;
  z-index: 99;
}

#logo {
  width: 200px;
  height: 25px;
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 120px;
  margin-left: -100px;
  opacity: 0;
  cursor: pointer;
  transition: background 0.8s ease;
}
@media (max-width: 767px) {
  #logo {
    position: absolute;
    top: 80px;
  }
}
@media (min-width: 576px) {
  #logo {
    position: absolute;
    top: 160px;
  }
}
@media (min-width: 768px) {
  #logo {
    position: absolute;
    top: 160px;
  }
}
@media (min-width: 992px) {
  #logo {
    position: absolute;
    top: 160px;
  }
}
@media (max-height: 660px) {
  #logo {
    top: 60px;
  }
}

.logow {
  background: url(../assets/logo_soyhoriznte.svg) no-repeat center;
  background-size: 100%;
}

.logob {
  background: url(../assets/logo_soyhoriznte.svg) no-repeat center;
  background-size: 100%;
}

.loadlogo {
  position: absolute;
  z-index: 999;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  margin-top: -100px;
  overflow: hidden;
  opacity: 1;
  border: 1px solid #ffffff;
  transition: all 0.5s ease-in-out;
}
.loadlogo .half {
  height: 43px;
  background: url(../assets/img/logo.svg) no-repeat center -10px;
}
.loadlogo .andhalf {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 92px;
  transition: all 0.3s ease-in-out;
  background: url(../assets/img/logo.svg) no-repeat -10px -56px;
}

.animacionlogo {
  width: 110px;
}

.animacionlogo2 {
  height: 110px;
}

.corner {
  z-index: 9;
}

.cornerL {
  position: fixed;
  width: 1px;
  height: 0;
  border-left: 1px solid #ffffff;
  left: 50%;
  margin-left: -600px;
  bottom: 35px;
}
@media (max-width: 767px) {
  .cornerL {
    margin-left: 20px;
    left: 0;
  }
}
@media (min-width: 768px) {
  .cornerL {
    margin-left: -361px;
  }
}
@media (min-width: 992px) {
  .cornerL {
    margin-left: -475px;
  }
}
@media (min-width: 1200px) {
  .cornerL {
    margin-left: -600px;
  }
}

.cornerR {
  position: fixed;
  width: 1px;
  height: 0;
  border-right: 1px solid #ffffff;
  right: 50%;
  margin-right: -600px;
  top: 35px;
}
@media (max-width: 767px) {
  .cornerR {
    margin-right: 20px;
    right: 0;
  }
}
@media (min-width: 768px) {
  .cornerR {
    margin-right: -361px;
  }
}
@media (min-width: 992px) {
  .cornerR {
    margin-right: -475px;
  }
}
@media (min-width: 1200px) {
  .cornerR {
    margin-right: -600px;
  }
}

.cornerT {
  position: fixed;
  height: 1px;
  border-top: 1px solid #ffffff;
  top: 35px;
  z-index: 5;
  left: 50%;
  width: 0;
}

@media (max-width: 767px) {
  .borderT {
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
    right: 0;
    left: 0;
  }
}
@media (min-width: 768px) {
  .borderT {
    margin-left: -360px;
    width: 722px;
  }
}
@media (min-width: 992px) {
  .borderT {
    margin-left: -474px;
    width: 948px;
  }
}
@media (min-width: 1200px) {
  .borderT {
    margin-left: -600px;
    width: 1200px;
  }
}

.cornerB {
  position: fixed;
  width: 0;
  height: 1px;
  border-bottom: 1px solid #ffffff;
  bottom: 35px;
  z-index: 5;
  right: 50%;
}

@media (max-width: 767px) {
  .borderB {
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
    right: 0;
    left: 0;
  }
}
@media (min-width: 768px) {
  .borderB {
    margin-right: -360px;
    width: 722px;
  }
}
@media (min-width: 992px) {
  .borderB {
    margin-right: -474px;
    width: 948px;
  }
}
@media (min-width: 1200px) {
  .borderB {
    margin-right: -600px;
    width: 1200px;
  }
}

.animacionCorner {
  transition: all 0.5s ease-in-out;
}

.borderwhite {
  border-color: #ffffff;
}

.inicial {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.show {
  opacity: 1;
}

.cornerlabeL,
.cornerlabeR,
.cornerlabeT,
.cornerlabeB {
  color: #3D4BFF;
  font-size: 12px;
  width: 90px;
  text-align: center;
  position: fixed;
  z-index: 10;
}

.cornerlabeL {
  height: 20px;
  top: 50%;
  margin-top: -25px;
  left: 50%;
  margin-left: -645px;
  transform: rotate(-90deg);
}
@media (max-width: 767px) {
  .cornerlabeL {
    margin-left: -23px;
    left: 0;
  }
}
@media (min-width: 768px) {
  .cornerlabeL {
    margin-left: -403px;
  }
}
@media (min-width: 992px) {
  .cornerlabeL {
    margin-left: -517px;
  }
}
@media (min-width: 1200px) {
  .cornerlabeL {
    margin-left: -645px;
  }
}

.cornerlabeR {
  height: 20px;
  top: 50%;
  margin-top: -25px;
  right: 50%;
  margin-right: -645px;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .cornerlabeR {
    margin-right: -23px;
    right: 0;
  }
}
@media (min-width: 768px) {
  .cornerlabeR {
    margin-right: -403px;
  }
}
@media (min-width: 992px) {
  .cornerlabeR {
    margin-right: -517px;
  }
}
@media (min-width: 1200px) {
  .cornerlabeR {
    margin-right: -645px;
  }
}

.cornerlabeT {
  height: 20px;
}

.cornerlabeB {
  height: 40px;
  bottom: 14px;
  margin: 0 auto;
  padding-top: 10px;
  left: 0;
  right: 0;
  background: url(../assets/img/scroll.png) no-repeat center -14px;
  transition: background 0.3s ease;
}

.inicial {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.show {
  opacity: 1;
}

nav {
  position: fixed;
  z-index: 999;
  top: 23px;
  width: 780px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 767px) {
  nav {
    display: none;
  }
}
nav ul {
  list-style: none;
  padding: 0;
}
nav ul li {
  float: left;
  width: 122px;
  margin-right: 1%;
  margin-left: 3%;
  padding: 2px 10px 4px;
  font-size: 12px;
  letter-spacing: 3px;
  background-position: center 0;
  text-align: center;
  padding-top: 3px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  nav ul li {
    margin-left: 0;
    margin-right: 0;
  }
}
nav ul li {
  animation: fadeInUp 0.8s ease-out;
}
nav ul li:hover {
  background: url(./assets/menuhover.png) no-repeat center 0px;
  color: #ffffff;
  opacity: 1;
}
nav ul li:hover a {
  color: #3D4BFF;
  text-decoration: none;
}
nav ul li a {
  color: #3D4BFF;
  text-decoration: none;
}
nav ul li.r {
  float: right;
}
nav ul li.last {
  margin-right: 0;
}
nav ul.w li a {
  color: white;
}

section#home {
  padding-top: 0px;
}
section#home .featurepic {
  height: 640px;
  background: center;
  background-size: 100%;
  background-color: #252424;
  background-size: cover;
}
section#home .home1 {
  background-image: url(../assets/img/home/home1.jpg);
}
section#home .home2 {
  background-image: url(../assets/img/home/home2.jpg);
}
section#home .home3 {
  background-image: url(../assets/img/home/home3.jpg);
}
section#home .home3 {
  background-image: url(../assets/img/home/home3.jpg);
}
section#home .home4 {
  background-image: url(../assets/img/home/home4.jpg);
}
section#home .home5 {
  background-image: url(../assets/img/home/home5.jpg);
}
section#home .home6 {
  background-image: url(../assets/img/home/home6.jpg);
}
section#home .home7 {
  background-image: url(../assets/img/home/home7.jpg);
}
section#home .home8 {
  background-image: url(../assets/img/home/home8.jpg);
}
section#home .home9 {
  background-image: url(../assets/img/home/home9.jpg);
}
section#home .home10 {
  background-image: url(../assets/img/home/home10.jpg);
}
section#home .home11 {
  background-image: url(../assets/img/home/home11.jpg);
}
section#home .home12 {
  background-image: url(../assets/img/home/home12.jpg);
}
section#home .home13 {
  background-image: url(../assets/img/home/home13.jpg);
}
section#home .home14 {
  background-image: url(../assets/img/home/home14.jpg);
}
section#home .home15 {
  background-image: url(../assets/img/home/home15.jpg);
}
section#home .home16 {
  background-image: url(../assets/img/home/home16.jpg);
}
section#home .home17 {
  background-image: url(../assets/img/home/home17.jpg);
}
section#home .home18 {
  background-image: url(../assets/img/home/home18.jpg);
}
section#home .home19 {
  background-image: url(../assets/img/home/home19.jpg);
}
section#home .home20 {
  background-image: url(../assets/img/home/home20.jpg);
}
section#home .home21 {
  background-image: url(../assets/img/home/home21.jpg);
}
section#home .home22 {
  background-image: url(../assets/img/home/home22.jpg);
}
section#home .home23 {
  background-image: url(../assets/img/home/home23.jpg);
}
section#home .home24 {
  background-image: url(../assets/img/home/home24.jpg);
}

h2.sec {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  color: white;
  padding-top: 330px;
  letter-spacing: 20px;
  font-size: 42px;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.32);
  transform: translate3d(0, 50px, 0) !important;
  opacity: 1;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  h2.sec {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
    letter-spacing: 5px;
  }
}
@media (max-width: 480px) {
  h2.sec {
    font-size: 24px;
  }
}
h2.sec span {
  font-size: 18px;
  width: 100%;
  float: left;
  letter-spacing: 4px;
  padding-bottom: 10px;
}

h2.ani {
  transform: translate3d(0, 0px, 0) !important;
  opacity: 1;
}

p.sec {
  width: 600px;
  margin: 0 auto;
  color: white;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 767px) {
  p.sec {
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.space {
  height: 200px;
  width: 100%;
  clear: both;
}

.container-fluid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container-fluid {
    padding: 0 32px;
  }
}

section.medium .featurepic {
  height: 640px;
  background-color: #252424;
  background: center;
  background-image: url(../assets/img/medium1.jpg);
  background-size: 100%;
  background-size: cover;
  position: relative;
}
section.medium .featurepic h2 {
  padding-top: 160px;
  padding-bottom: 50px;
}
section.medium .featurepic2 {
  background-image: url(../assets/img/medium2.jpg);
}
section.medium .featurepic3 {
  background-image: url(../assets/img/equipo.jpg);
}
section.medium .featurepic3 {
  background-image: url(../assets/img/equipo.jpg);
}
section.medium .featurepic4 {
  background-image: url(../assets/img/contact.jpg);
}
section.medium .featureportafolio {
  background-image: url(../assets/img/home/home13.jpg);
}
section.medium .featureservicios {
  background-image: url(../assets/img/servicios.jpg);
}
section.medium .featureprocesos {
  background-image: url(../assets/img/procesos.jpg);
}

section#proceso {
  position: relative;
}
section#proceso img {
  width: 100%;
}
section#proceso .info {
  position: absolute;
  width: 220px;
  padding-top: 50px;
  background: url(../assets/img/numeric.jpg) #f8f8f8 no-repeat;
  opacity: 1;
}
section#proceso .info h4 {
  font-size: 26px;
  margin: 0;
}
section#proceso .info h4 span {
  font-size: 18px;
}
section#proceso .uno {
  left: 21px;
  top: 37px;
  text-align: right;
  background-position: 97px 31px;
}
section#proceso .dos {
  right: 40px;
  top: 61px;
  padding-left: 20px;
  background-position: -258px 4px;
}
section#proceso .tres {
  left: 20px;
  top: 352px;
  text-align: right;
  background-position: 76px -264px;
}
section#proceso .cuatro {
  right: 40px;
  top: 352px;
  padding-left: 20px;
  background-position: -213px -261px;
}
section#proceso .pc {
  width: 100%;
  height: 600px;
  background: url(../assets/img/pc.jpg) no-repeat center 110px;
}
section#proceso .mt100 {
  margin-top: 50px;
  opacity: 1;
}/*# sourceMappingURL=main.css.map */