* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Prompt", sans-serif;
  outline: none;
}
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.cursor-wrapper {
  z-index: 5999;
  pointer-events: none;
  mix-blend-mode: exclusion;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.cursor {
  background-color: #ffffff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  display: flex;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s ease,
    height 0.3s ease;
}
.cursor.cursor--hover {
  width: 20px;
  height: 20px;
}

.p-lr {
  padding-left: 50px;
  padding-right: 50px;
}
ul {
  padding-left: 18px;
}
button {
  border: none;
  background: transparent;
  cursor: pointer;
}
body {
  background: #fdfdfd;
}
header {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  .header-logo {
    width: 164px;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
    .logoLight {
      display: block;
    }
    .logoDark {
      display: none;
    }
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: 24px;
    .language {
      display: flex;
      flex-direction: column;
      align-items: start;
      position: relative;
      .current-lang {
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #f9f9f9;
        img {
          width: 24px;
          height: 24px;
          min-width: 24px;
          transition: 0.3s ease-in-out;
        }
      }
      .other-languages {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        position: absolute;
        z-index: 13;
        left: 0;
        top: 46px;
        padding: 8px;
        background: #fff;
        border-radius: 4px;
        box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
        gap: 8px;
        transition: 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        .lang-item {
          font-size: 16px;
          line-height: 24px;
          color: #111;
          font-weight: 400;
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          gap: 6px;
          &:first-child {
            padding-bottom: 8px;
            border-bottom: 1px solid #f2f2f2;
          }
        }
      }
    }
    .language.active {
      .current-lang {
        .downIcon {
          transform: rotate(180deg);
        }
      }
      .other-languages {
        top: 36px;
        opacity: 1;
        visibility: visible;
      }
    }
    .header-contact-link {
      padding: 12px 20px;
      background: transparent;
      border: 1px solid #f9f9f9;
      border-radius: 2px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      gap: 10px;
      img {
        width: 22px;
        height: 22px;
        min-width: 22px;
        transition: 0.3s ease-in-out;
        position: relative;
        z-index: 2;
      }
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #ffffff;
        position: relative;
        z-index: 2;
        transition: 0.3s ease-in-out;
      }
      &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0%;
        background: #f9f9f9;
        border-radius: 2px;
        z-index: 1;
        transition: 0.3s ease-in-out;
      }
      &:hover {
        p {
          color: #111;
        }
        img {
          filter: invert(100);
        }
        &::after {
          height: 100%;
        }
      }
    }
  }
  .hamburger {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.header-light {
  .header-logo {
    .logoLight {
      display: none;
    }
    .logoDark {
      display: block;
    }
  }
  .header-right {
    .language {
      .current-lang {
        color: #000;
        img {
          filter: invert(100);
        }
      }
    }
    .header-contact-link {
      border: 1px solid #000;
      img {
        filter: invert(100);
      }
      p {
        color: #000;
      }
      &::after {
        background: #000;
      }
      &:hover {
        p {
          color: #fff;
        }
        img {
          filter: initial;
        }
      }
    }
  }
  .hamburger {
    img {
      filter: invert(100);
    }
  }
}
.navbar {
  max-width: 890px;
  padding: 0 20px;
  width: 100%;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 19;
  transition: 0.3s ease-in-out;
  .navbar-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
    border-radius: 2px;
    padding: 6px 24px;
    transition: 0.3s ease-in-out;
    position: relative;
    .navbarBackground {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }
    .navbar-main {
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 24px;
      .nav-icon {
        width: 30px;
        min-width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        img {
          transition: 0.3s ease-in-out;
          width: 100%;
          height: 100%;
        }
      }
      .navbar-links {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        .nav-link {
          padding: 8px 12px;
          border-radius: 100px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #fff;
          transition: 0.25s ease-in-out;
          &:hover {
            color: #111;
            background: #f9f9f9;
          }
        }
        .nav-link.active {
          color: #111;
          background: #f9f9f9;
        }
        .nav-btn {
          display: flex;
          align-items: center;
          gap: 6px;
          padding: 8px 12px;
          border-radius: 100px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #fff;
          transition: 0.3s ease-in-out;
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
            transition: 0.3s ease-in-out;
          }
          &:hover {
            color: #111;
            background: #f9f9f9;
            img {
              filter: brightness(0);
              transform: rotate(180deg);
            }
          }
        }
        .nav-btn.active {
          color: #111;
          background: #f9f9f9;
          img {
            filter: brightness(0);
            transform: rotate(180deg);
          }
        }
      }
    }
    .navbar-subMenu {
      max-height: 0;
      overflow: hidden;
      width: 100%;
      transition: 0.3s ease-in-out;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      .subMenu-item {
        height: 140px;
        border: 1px solid #333333;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: end;
        gap: 6px;
        border-radius: 20px;
        padding: 20px 24px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
        transition: 0.3s ease-in-out;
        img {
          width: 30px;
          height: 30px;
          min-width: 30px;
        }
        &:nth-child(odd) {
          &:hover {
            background: #fe012a;
            border-color: #fe012a;
          }
        }
        &:nth-child(even) {
          &:hover {
            background: #020ef0;
            border-color: #020ef0;
          }
        }
      }
    }
    &:hover {
      .navbar-main {
        .nav-icon {
          img {
            transform: rotate(180deg);
          }
        }
      }
    }
  }
}
.navbar.showed {
  max-width: 1050px;
  .navbar-container {
    gap: 20px;
    padding: 20px;
    .navbar-subMenu {
      max-height: 460px;
      overflow: auto;
    }
  }
}
.mobile-menu {
  position: fixed;
  z-index: 90;
  top: 50%;
  left: 50%;
  width: calc(100% - 32px);
  height: calc(100% - 40px);
  transform: translate(-50%, -50%) scale(0);
  background: rgba(229, 229, 229, 0.9);
  backdrop-filter: blur(4px);
  padding: 30px 20px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.3s ease-in-out;
  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    .mobile-menu-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 94px;
      min-width: 94px;
      img {
        width: 100%;
      }
    }
    .head-right {
      display: flex;
      align-items: center;
      gap: 16px;
      .language {
        display: flex;
        flex-direction: column;
        align-items: start;
        position: relative;
        .current-lang {
          display: flex;
          align-items: center;
          gap: 6px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #000;
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
            transition: 0.3s ease-in-out;
            filter: invert(1000);
          }
        }
        .other-languages {
          display: flex;
          flex-direction: column;
          align-items: start;
          width: 100%;
          position: absolute;
          z-index: 13;
          left: 0;
          top: 46px;
          padding: 8px;
          background: #fff;
          border-radius: 4px;
          box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
          gap: 8px;
          transition: 0.3s ease-in-out;
          opacity: 0;
          visibility: hidden;
          .lang-item {
            font-size: 16px;
            line-height: 24px;
            color: #111;
            font-weight: 400;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 6px;
            &:first-child {
              padding-bottom: 8px;
              border-bottom: 1px solid #f2f2f2;
            }
          }
        }
      }
      .language.active {
        .current-lang {
          .downIcon {
            transform: rotate(180deg);
          }
        }
        .other-languages {
          top: 36px;
          opacity: 1;
          visibility: visible;
        }
      }
      .closeMobileMenu {
        width: 24px;
        height: 24px;
        min-width: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
        }
      }
    }
  }
  .mobile-menu-links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 24px;
    .mobile-menu-link {
      font-weight: 400;
      font-size: 24px;
      line-height: 40px;
      color: #101217;
    }
    .mobile-menu-link.active {
      color: #e50914;
    }
    .mobile-dropdown {
      width: 100%;

      .mobile-dropdown-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        font-weight: 400;
        font-size: 24px;
        line-height: 40px;
        color: #101217;
        cursor: pointer;
        img {
          width: 24px;
          height: 24px;
          min-width: 24px;
          transition: transform 0.3s ease;
        }
      }

      .mobile-dropdown-menu {
        max-height: 0;
        overflow-y: hidden;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-left: 20px;
        padding-top: 0;
        opacity: 0;
        transition: 0.3s ease-in-out;
        .dropdown-menu-link {
          text-decoration: none;
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
          color: #101217;
        }
        .dropdown-menu-link.active {
          color: #e50914;
        }
      }
    }
    .mobile-dropdown.active {
      .mobile-dropdown-toggle {
        img {
          transform: rotate(45deg);
        }
      }

      .mobile-dropdown-menu {
        padding-top: 16px;
        opacity: 1;
        max-height: 176px;
        overflow-y: auto;
      }
    }
  }
  .mobileMenu-contact-link {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: #101217;
    gap: 10px;
    border-radius: 2px;
    img {
      width: 22px;
      height: 22px;
      min-width: 22px;
    }
    p {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #ffffff;
    }
  }
}
.mobile-menu.showed {
  transform: translate(-50%, -50%) scale(1);
}
.home-hero {
  width: 100%;
  height: 100svh;
  min-height: 740px;
  position: relative;
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  .home-hero-container {
    padding-top: 160px;
    padding-bottom: 100px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    .hero-slogan {
      max-width: 545px;
      width: 100%;
      img {
        width: 100%;
      }
    }
    .hero-bottom-content {
      margin-top: 50px;
      width: 100%;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 40px;
      .hero-description {
        max-width: 474px;
        p {
          color: #f9f9f9;
          font-size: 20px;
          font-weight: 400;
          line-height: 30px;
        }
      }
      .hero-bottom-title {
        font-weight: 200;
        font-size: 70px;
        line-height: 84px;
        text-align: right;
        color: #e8e8e8;
        letter-spacing: -0.1px;
        font-family: "Inter", sans-serif;
        span {
          color: #98989b;
          font-weight: 500;
          letter-spacing: normal;
          font-family: "Inter", sans-serif;
        }
      }
    }
  }
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 42.79%,
      rgba(0, 0, 0, 0.7) 89.9%
    );
  }
}
.home-about {
  background: linear-gradient(
    180deg,
    #101217 0%,
    #1c202b 52.88%,
    #222733 98.08%
  );
  position: relative;
  transition: 0.5s ease-in-out;
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
  }
  .home-about-container {
    max-width: 1440px;
    padding-top: 180px;
    padding-bottom: 180px;
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 620px));
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;
    .home-about-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      position: relative;
      z-index: 3;
      .about-title {
        font-weight: 400;
        font-size: 60px;
        line-height: 74px;
        color: #111111;
        transition: 0.3s ease-in-out !important;
      }
      .description {
        margin-top: 30px;
        p,
        span,
        li {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #696969;
          transition: 0.3s ease-in-out !important;
        }
      }
      .more {
        margin-top: 30px;
        padding: 12px 20px;
        background: transparent;
        border: 1px solid #000;
        transition: 0.3s ease-in-out !important;
        border-radius: 2px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 6px;
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #000;
          position: relative;
          z-index: 2;
          transition: 0.3s ease-in-out !important;
        }
        img {
          width: 24px;
          height: 24px;
          min-width: 24px;
          transition: 0.3s ease-in-out !important;
          position: relative;
          z-index: 2;
          filter: invert(1);
        }
        &::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 0%;
          background: #000;
          border-radius: 2px;
          z-index: 1;
          transition: 0.3s ease-in-out !important;
        }
        &:hover {
          p {
            color: #fff;
          }
          img {
            filter: brightness(100);
          }
          &::after {
            height: 100%;
          }
        }
      }
    }
    .home-about-image {
      max-width: 620px;
      position: relative;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      img {
        width: 100%;
        border-radius: 20px;
      }
    }
  }
}
.home-about.changed {
  &::before {
    opacity: 0;
  }
  .home-about-container {
    .home-about-content {
      .about-title {
        color: #f9f9f9;
      }
      .description {
        p,
        span,
        li {
          color: #f9f9f9;
        }
      }
      .more {
        border: 1px solid #f9f9f9;
        p {
          color: #f9f9f9;
        }
        img {
          filter: initial;
        }
        &::after {
          background: #f9f9f9;
        }
        &:hover {
          p {
            color: #111;
          }
          img {
            filter: invert(100);
          }
        }
      }
    }
    .home-about-image {
      max-width: 620px;
      position: relative;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      img {
        width: 100%;
        border-radius: 20px;
      }
    }
  }
}
.partners-section {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  .section-title {
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    color: #111111;
  }
  .partners-slide {
    margin-top: 60px;
    width: 100%;
    .partner-item {
      max-width: 180px;
      max-height: 65px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: auto;
      height: auto;
      img{
        max-width: 100%;
      }
    }
    .swiper-buttons {
      width: max-content;
      position: relative;
      display: flex;
      align-items: center;
      margin-top: 24px;
      gap: 16px;
      margin-left: auto;
      .swiper-button-prev,
      .swiper-button-next {
        position: initial;
        width: 46px;
        height: 46px;
        min-width: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #848484;
        border-radius: 100px;
        margin: 0;
        transition: 0.3s ease-in-out;
        &::after {
          font-size: 20px;
          color: #979797;
          transition: 0.3s ease-in-out;
        }
        &:hover {
          background: rgba(50, 142, 217, 0.68);
          border-color: rgba(50, 142, 217, 0.68);
          &::after {
            color: #fff;
          }
        }
      }
      .swiper-playPause {
        min-width: 46px;
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #4000ff;
        border-radius: 100px;
        position: relative;
        .playIcon,
        .pauseIcon {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 24px;
          height: 24px;
          transition: 0.3s ease-in-out;
        }
        .playIcon {
          transform: translate(-50%, -50%) scale(1);
        }
        .pauseIcon {
          transform: translate(-50%, -50%) scale(0);
        }
      }
      .swiper-playPause.paused {
        .pauseIcon {
          transform: translate(-50%, -50%) scale(1);
        }
        .playIcon {
          transform: translate(-50%, -50%) scale(0);
        }
      }
    }
  }
}
.home-services-container {
  max-width: 1440px;
  width: 100%;
  margin: 100px auto 0;
  .home-services-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    .section-title {
      font-weight: 400;
      font-size: 40px;
      line-height: 50px;
      text-align: center;
      color: #111111;
    }
    .more {
      padding: 12px 34px;
      background: transparent;
      border: 1px solid #111111;
      border-radius: 2px;
      position: relative;
      overflow: hidden;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #111111;
        position: relative;
        z-index: 2;
        transition: 0.3s ease-in-out;
      }
      &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0%;
        background: #111111;
        border-radius: 2px;
        z-index: 1;
        transition: 0.3s ease-in-out;
      }
      &:hover {
        p {
          color: #fff;
        }
        &::after {
          height: 100%;
        }
      }
    }
  }
  .home-services {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    .service-card {
      flex: 1 1 35%;
      min-width: 0;
      transition: flex-grow 0.4s ease-in-out;
      min-height: 450px;
      background: #1c202b;
      padding: 50px 30px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      border-radius: 2px;
      position: relative;
      .card-head {
        width: 100%;
        gap: 10px;
        display: flex;
        align-items: start;
        margin-bottom: 20px;
        .card-count {
          font-weight: 400;
          font-size: 14px;
          line-height: 21px;
          color: #f9f9f9;
        }
        .service-title {
          font-weight: 400;
          font-size: 36px;
          line-height: 48px;
          color: #f9f9f9;
          max-width: 430px;
        }
        .icon {
          margin-left: auto;
          background: #f9f9f9;
          border-radius: 100px;
          display: flex;
          align-items: center;
          justify-content: center;
          width: 54px;
          height: 54px;
          min-width: 54px;
          img {
            width: 24px;
            height: 24px;
            transform: rotate(-45deg);
            transition: 0.25s ease-in-out;
          }
        }
      }
      .card-short-description {
        margin-top: auto;
        opacity: 0;
        width: 100%;
        transition: 0.4s ease-in-out;
        p,
        li,
        span {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #f9f9f9;
        }
      }
      .card-tags {
        width: 100%;
        position: absolute;
        padding: 50px 30px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        bottom: 0;
        left: 0;
        z-index: 1;
        transition: 0.2s ease-in-out;
        .tag-item {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #f9f9f9;
          border: 1px solid #f9f9f9;
          border-radius: 2px;
          padding: 10px 14px;
          background: #1c202b;
        }
      }
      &:hover {
        flex-grow: 8;
        .card-head {
          .icon {
            img {
              transform: rotate(0deg);
            }
          }
        }
        .card-short-description {
          opacity: 1;
        }
        .card-tags {
          opacity: 0;
        }
        &:nth-child(9n + 1) {
          background: #fe012a;
        }
        &:nth-child(9n + 2) {
          background: #020ef0;
        }
        &:nth-child(9n + 3) {
          background: #00218a;
        }
        &:nth-child(9n + 4) {
          background: #6b798f;
        }
        &:nth-child(9n + 5) {
          background: #980219;
        }
        &:nth-child(9n + 6) {
          background: #6b7a8f;
        }
        &:nth-child(9n + 7) {
          background: #cb0223;
        }
        &:nth-child(9n + 8) {
          background: #8d9bad;
        }
        &:nth-child(9n + 9) {
          background: #322e41;
        }
      }
    }
  }
  .more-mobile {
    display: none;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #111111;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    p {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #111111;
      position: relative;
      z-index: 2;
      text-align: center;
      transition: 0.3s ease-in-out;
    }
    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 0%;
      background: #111111;
      border-radius: 2px;
      z-index: 1;
      transition: 0.3s ease-in-out;
    }
    &:hover {
      p {
        color: #fff;
      }
      &::after {
        height: 100%;
      }
    }
  }
}
.project-development-container {
  max-width: 1440px;
  width: 100%;
  margin: 100px auto 0;
  .section-title {
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    color: #111111;
    transition: 0.3s ease-in-out;
  }
  .project-development {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    .development-item {
      width: 100%;
      position: relative;
      .line {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: #101217;
        transform: translateY(-50%);
      }
      .item-content {
        position: relative;
        z-index: 2;
        padding: 0 60px;
        max-width: 100%;
        width: max-content;
        .item-content-inner {
          display: flex;
          align-items: flex-start;
          background: #fff;
          max-width: 100%;
          gap: 20px;
          padding: 0 20px;
          .item-count {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            text-transform: uppercase;
            color: #101217;
          }
          .development-title {
            font-weight: 400;
            font-size: 64px;
            line-height: 76px;
            text-transform: uppercase;
            background: #fff;
            color: #101217;
          }
        }
      }
      &:nth-child(odd) {
        .item-content {
          margin-left: auto;
        }
      }
    }
  }
}
.home-video-presentations {
  margin-top: 100px;
  padding: 60px 0;
  background: transparent;
  transition: 0.3s ease-in-out;
  .video-presentations-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    .section-title {
      font-weight: 400;
      font-size: 40px;
      line-height: 50px;
      color: #111111;
      transition: 0.3s ease-in-out;
    }
    .video-presentations-description {
      width: 100%;
      max-width: 450px;
      margin-top: 20px;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      -webkit-line-clamp: 3;
      height: 72px;
      p,
      li,
      span {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #3e3e3e;
        transition: 0.3s ease-in-out;
      }
    }
    .video-presentations-slide {
      width: 100%;
      margin-top: -70px;
      padding-top: 40px;
      .swiper-wrapper {
        padding-bottom: 150px;
        align-items: end;
      }
      .video-presentations-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        .item-main {
          position: relative;
          width: 100%;
          height: 550px;
          transition: 0.6s ease-in-out;
          iframe {
            width: 100%;
            height: 100%;
            border: none;
            object-fit: cover;
          }
          .cover-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
            }
          }
          .playVideoBtn {
            opacity: 0;
            transition: opacity 0.3s ease;
            width: 100px;
            height: 100px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #111111;
            position: absolute;
            top: 60px;
            right: 130px;
            z-index: 3;
            font-weight: 400;
            font-size: 18px;
            line-height: 27px;
            color: #fff;
          }
        }
        .item-body {
          margin-top: 20px;
          .video-name {
            font-weight: 400;
            font-size: 20px;
            line-height: 30px;
            color: #111;
          }
          .share-date {
            margin-top: 6px;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #3e3e3e;
          }
        }
      }
      .swiper-slide-active,
      .swiper-slide-prev {
        .item-main {
          height: 400px;
        }
      }
      .swiper-pagination {
        display: flex;
        align-items: center;
        gap: 10px;
        top: 0;
        left: auto;
        right: 0;
        bottom: auto;
        width: max-content;
        .swiper-pagination-bullet {
          opacity: 1;
          width: 10px;
          height: 10px;
          margin: 0;
          border-radius: 100px;
          background: #d7d6d6;
          transition: 0.25s ease-in-out;
        }
        .swiper-pagination-bullet-active {
          background: #ff002b;
        }
      }
      .swiper-buttons {
        display: flex;
        align-items: center;
        position: absolute;
        gap: 16px;
        left: 0;
        top: 95px;
        .swiper-button-prev,
        .swiper-button-next {
          position: initial;
          margin: 0;
          width: 46px;
          height: 46px;
          border: 1px solid #848484;
          border-radius: 100px;
          background: transparent;
          transition: 0.3s ease-in-out;
          &::after {
            transition: 0.3s ease-in-out;
            font-size: 20px;
            color: #848484;
          }
        }
      }
    }
  }
}
.home-video-presentations.changed {
  background: #1c202b;
  .video-presentations-container {
    .section-title {
      color: #f9f9f9;
    }
    .video-presentations-description {
      p,
      li,
      span {
        color: #f9f9f9;
      }
    }
    .video-presentations-slide {
      .video-presentations-item {
        .item-body {
          .video-name {
            color: #f9f9f9;
          }
          .share-date {
            color: #f9f9f9;
          }
        }
      }
      .swiper-buttons {
        .swiper-button-prev,
        .swiper-button-next {
          &::after {
            color: #848484;
          }
        }
      }
    }
  }
}
.why-us {
  background: #1c202b;
  transition: 0.3s ease-in-out;
  position: relative;
  .why-us-container {
    max-width: 1440px;
    padding-top: 180px;
    padding-bottom: 180px;
    position: relative;
    z-index: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 620px));
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;
    .why-us-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      position: relative;
      z-index: 3;
      .why-us-title {
        max-width: 500px;
        font-weight: 400;
        font-size: 60px;
        line-height: 74px;
        color: #f9f9f9;
        transition: 0.3s ease-in-out;
      }
      .description {
        margin-top: 30px;
        p,
        span,
        li {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #f9f9f9;
          transition: 0.3s ease-in-out;
        }
      }
      .more {
        margin-top: 30px;
        padding: 12px 20px;
        background: transparent;
        border: 1px solid #f9f9f9;
        transition: 0.3s ease-in-out;
        border-radius: 2px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 6px;
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #ffffff;
          position: relative;
          z-index: 2;
          transition: 0.3s ease-in-out;
        }
        img {
          width: 24px;
          height: 24px;
          min-width: 24px;
          transition: 0.3s ease-in-out;
          position: relative;
          z-index: 2;
        }

        &::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 0%;
          background: #f9f9f9;
          border-radius: 2px;
          z-index: 1;
          transition: 0.3s ease-in-out;
        }
        &:hover {
          p {
            color: #111;
          }
          img {
            filter: invert(1000);
          }
          &::after {
            height: 100%;
          }
        }
      }
    }
    .why-us-boxes {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      background: #f9f9f9;
      .box-row {
        display: flex;
        width: 100%;
        position: relative;
        z-index: 4;
        .empty-box {
          width: 50%;
          height: 250px;
          background: #1c202b;
          position: relative;
        }
        .why-us-box {
          width: 50%;
          height: 250px;
          display: flex;
          align-items: flex-start;
          flex-direction: column;
          justify-content: space-between;
          gap: 10px;
          padding: 10px 40px;
          background: #f9f9f9;
          .box-count {
            font-weight: 400;
            font-size: 14px;
            line-height: 21px;
            color: #111;
          }
          .box-title {
            font-weight: 400;
            font-size: 26px;
            line-height: 36px;
            color: #111;
          }
        }
        &:nth-child(even) {
          flex-direction: row-reverse;
        }
        &:nth-child(odd):not(:last-child):not(:first-child) {
          .empty-box {
            border-radius: 0 20px 20px 0;
          }
        }
        &:nth-child(even):not(:last-child) {
          .empty-box {
            border-radius: 20px 0 0 20px;
          }
        }
        &:first-child:nth-child(odd) {
          .empty-box {
            border-radius: 0 0 20px 0;
            &::after {
              content: "";
              position: absolute;
              top: -1px;
              width: 100%;
              height: 2px;
              background: #1c202b;
              left: 0;
            }
          }
        }
        &:last-child:nth-child(odd) {
          .empty-box {
            border-radius: 0 20px 0 0;
            &::after {
              content: "";
              position: absolute;
              bottom: -1px;
              width: 100%;
              height: 2px;
              background: #1c202b;
              left: 0;
            }
          }
        }
        &:last-child:nth-child(even) {
          z-index: 1;
          .empty-box {
            border-radius: 20px 0 0 0;
            &::after {
              content: "";
              position: absolute;
              bottom: -1px;
              width: 100%;
              height: 2px;
              background: #1c202b;
              left: 0;
            }
            &::before {
              content: "";
              position: absolute;
              z-index: 2;
              bottom: -1px;
              width: 1px;
              height: 100%;
              background: rgba(255, 255, 255, 0.7);
              left: 50%;
              transform: translateX(calc(-50% + 0.6px));
            }
          }
        }
      }
    }
  }
  &::after {
    position: absolute;
    z-index: 2;
    width: calc(100% - (((1440px / 2) / 2) / 2) - 25px);
    height: calc(100% - 100px);
    content: "";
    left: 0;
    top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom-right-radius: 2px;
    transition: 0.3s ease-in-out;
  }
}
.home-gallery {
  width: 100%;
  background: #1c202b;
  padding-bottom: 100px;
  .gallery-slide {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 64px;
    .gallery-item {
      width: 600px;
      height: 340px;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
    .swiper-pagination {
      max-width: 554px;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      background: rgba(246, 246, 246, 0.16);
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 0;
      .swiper-pagination-bullet {
        opacity: 1;
        width: 100%;
        margin: 0;
        height: 4px;
        border-radius: 0;
        background: rgba(246, 246, 246, 0.16);
        transition: 0.3s ease-in-out;
      }
      .swiper-pagination-bullet-active {
        background: #f9f9f9;
        border-radius: 100px;
      }
    }
  }
}
footer {
  padding: 60px 0 30px;
  width: 100%;
  position: relative;
  .footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .footer-main {
      width: 100%;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      .footer-logo {
        width: 164px;
        height: auto;
        min-width: 164px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
        }
      }
      .footer-quick-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 130px;
        width: 100%;
        gap: 30px;
        .quick-link {
          display: flex;
          align-items: center;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          gap: 6px;
          color: #fff;
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
          }
        }
      }
      .footer-link-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 150px;
        width: 100%;
        .section-title {
          font-weight: 500;
          font-size: 18px;
          line-height: 27px;
          color: #fff;
        }
        .links {
          margin-top: 20px;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 30px;
          .section-link {
            display: flex;
            align-items: center;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            gap: 6px;
            color: #fff;
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
            }
          }
        }
      }
      .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
        max-width: 250px;
        .footer-contact-item {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
          .item-title {
            font-weight: 500;
            font-size: 18px;
            line-height: 27px;
            color: #fff;
          }
          .item-value {
            margin-bottom: 6px;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #fefefe;
            &:last-child {
              margin-bottom: 0;
            }
          }
        }
      }
      .footer-apply-socials {
        display: flex;
        flex-direction: column;
        align-items: end;
        gap: 30px;
        .footer-apply-link {
          padding: 12px 20px;
          background: transparent;
          border: 1px solid #f9f9f9;
          border-radius: 2px;
          position: relative;
          overflow: hidden;
          display: flex;
          align-items: center;
          gap: 10px;
          img {
            width: 22px;
            height: 22px;
            min-width: 22px;
            transition: 0.3s ease-in-out;
            position: relative;
            z-index: 2;
          }
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #ffffff;
            position: relative;
            z-index: 2;
            transition: 0.3s ease-in-out;
            text-wrap: nowrap;
          }
          &::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0%;
            background: #f9f9f9;
            border-radius: 2px;
            z-index: 1;
            transition: 0.3s ease-in-out;
          }
          &:hover {
            p {
              color: #111;
            }
            img {
              filter: invert(100);
            }
            &::after {
              height: 100%;
            }
          }
        }
        .socials {
          display: flex;
          align-items: center;
          gap: 20px;
          .social-item {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
              width: 100%;
              height: 100%;
            }
          }
        }
      }
    }
    .footer-bottom {
      margin-top: 50px;
      .bottom-txt,
      a {
        font-weight: 400;
        font-size: 14px;
        line-height: 21px;
        color: #d7d6d6;
      }
    }
  }
}
.fixed-socials {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 19;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #d8dce5;
  border-radius: 2px 0 0 2px;
  gap: 20px;
  padding: 18px 15px;
  .social-item {
    width: 20px;
    height: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
/* //============================= */
.services-hero {
  width: 100%;
  height: 100svh;
  min-height: 740px;
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  .hero-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
  }
  .hero-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .hero-icon {
      width: 20px;
      min-width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .hero-title {
      margin-top: 20px;
      max-width: 660px;
      width: 100%;
      font-weight: 300;
      font-size: 60px;
      line-height: 72px;
      color: #101217;
    }
  }
  .infinity-txt-slide {
    width: 100%;
    margin-top: 100px;
    .swiper-wrapper {
      transition-timing-function: linear;
    }
    .infinity-txt-item {
      display: flex;
      align-items: center;
      width: auto;
      gap: 50px;
      .infinity-txt {
        font-weight: 300;
        font-size: 112px;
        line-height: 130px;
        text-transform: uppercase;
        color: #202832;
      }
      .cube {
        width: 14px;
        height: 14px;
        min-width: 14px;
        background: #cb0223;
      }
    }
  }
}
.service-slide-section {
  transition: 0.3s ease-in-out;
  position: relative;
  .service-slide-container {
    max-width: 1440px;
    padding-top: 100px;
    padding-bottom: 200px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    .service-slide {
      width: 100%;
      z-index: 3;
      padding-left: 50px;
      .service-slide-item {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 600px));
        gap: 70px;
        align-items: center;
        opacity: 0 !important;
        .item-image {
          width: 100%;
          height: 640px;
          border-radius: 2px;
          img {
            width: 100%;
            height: 100%;
            border-radius: 2px;
            object-fit: cover;
          }
        }
        .item-body {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 30px;
          padding: 50px 0;
          .service-title {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            -webkit-line-clamp: 2;
            height: 128px;
            font-weight: 400;
            font-size: 50px;
            line-height: 64px;
            color: #101217;
          }
          .short-desc {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            -webkit-line-clamp: 5;
            height: 120px;
            p,
            span,
            li {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #4d5a6d;
            }
          }
          .more {
            padding: 12px 20px;
            background: transparent;
            border: 1px solid #000;
            transition: 0.3s ease-in-out;
            border-radius: 2px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 6px;
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #000;
              position: relative;
              z-index: 2;
              transition: 0.3s ease-in-out;
            }
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
              transition: 0.3s ease-in-out;
              position: relative;
              z-index: 2;
            }

            &::after {
              content: "";
              position: absolute;
              bottom: 0;
              left: 0;
              width: 100%;
              height: 0%;
              background: #000;
              border-radius: 2px;
              z-index: 1;
              transition: 0.3s ease-in-out;
            }
            &:hover {
              p {
                color: #fff;
              }
              img {
                filter: invert(1000);
              }
              &::after {
                height: 100%;
              }
            }
          }
        }
      }
      .swiper-slide-active {
        opacity: 1 !important;
      }
      .swiper-pagination {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        top: 0;
        left: 0;
        right: auto;
        bottom: auto;
        width: max-content;
        .swiper-pagination-bullet {
          opacity: 1;
          width: 10px;
          height: 10px;
          margin: 0;
          border-radius: 100px;
          background: #d8dce4;
          transition: 0.25s ease-in-out;
        }
        .swiper-pagination-bullet-active {
          background: #cb0223;
        }
      }
      .swiper-buttons {
        display: flex;
        align-items: center;
        position: absolute;
        gap: 16px;
        left: 50%;
        transform: translateX(calc(-50% + 110px));
        top: 0;
        .swiper-button-prev,
        .swiper-button-next {
          position: initial;
          margin: 0;
          width: 46px;
          height: 46px;
          border: 1px solid #848484;
          border-radius: 100px;
          background: #fdfdfd;
          transition: 0.3s ease-in-out;
          &::after {
            transition: 0.3s ease-in-out;
            font-size: 20px;
            color: #848484;
          }
        }
      }
    }
  }
  &::after {
    position: absolute;
    z-index: 2;
    width: calc(100% - 205px);
    height: calc(100% - 100px);
    content: "";
    right: 0;
    top: 0;
    border-left: 1px solid rgba(198, 198, 198, 0.7);
    border-bottom: 1px solid rgba(198, 198, 198, 0.7);
    border-bottom-right-radius: 2px;
    transition: 0.3s ease-in-out;
  }
}
.all-services {
  margin: 0 auto 100px;
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  .service-card {
    flex: 1 1 35%;
    min-width: 0;
    transition: flex-grow 0.4s ease-in-out;
    min-height: 450px;
    background: #1c202b;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 2px;
    position: relative;
    .card-head {
      width: 100%;
      gap: 10px;
      display: flex;
      align-items: start;
      margin-bottom: 20px;
      .card-count {
        font-weight: 400;
        font-size: 14px;
        line-height: 21px;
        color: #f9f9f9;
      }
      .service-title {
        font-weight: 400;
        font-size: 36px;
        line-height: 48px;
        color: #f9f9f9;
        max-width: 430px;
      }
      .icon {
        margin-left: auto;
        background: #f9f9f9;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 54px;
        height: 54px;
        min-width: 54px;
        img {
          width: 24px;
          height: 24px;
          transform: rotate(-45deg);
          transition: 0.25s ease-in-out;
        }
      }
    }
    .card-short-description {
      margin-top: auto;
      opacity: 0;
      width: 100%;
      transition: 0.4s ease-in-out;
      p,
      li,
      span {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #f9f9f9;
      }
    }
    .card-tags {
      width: 100%;
      position: absolute;
      padding: 50px 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      bottom: 0;
      left: 0;
      z-index: 1;
      transition: 0.2s ease-in-out;
      .tag-item {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #f9f9f9;
        border: 1px solid #f9f9f9;
        border-radius: 2px;
        padding: 10px 14px;
        background: #1c202b;
      }
    }
    &:hover {
      flex-grow: 8;
      .card-head {
        .icon {
          img {
            transform: rotate(0deg);
          }
        }
      }
      .card-short-description {
        opacity: 1;
      }
      .card-tags {
        opacity: 0;
      }
      &:nth-child(9n + 1) {
        background: #fe012a;
      }
      &:nth-child(9n + 2) {
        background: #020ef0;
      }
      &:nth-child(9n + 3) {
        background: #00218a;
      }
      &:nth-child(9n + 4) {
        background: #6b798f;
      }
      &:nth-child(9n + 5) {
        background: #980219;
      }
      &:nth-child(9n + 6) {
        background: #6b7a8f;
      }
      &:nth-child(9n + 7) {
        background: #cb0223;
      }
      &:nth-child(9n + 8) {
        background: #8d9bad;
      }
      &:nth-child(9n + 9) {
        background: #322e41;
      }
    }
  }
}
/* //============================= */
.service-detail-hero {
  width: 100%;
  height: 100svh;
  min-height: 740px;
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  .hero-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
  }
  .hero-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 6px;
      .breadcrumb-item {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #d8dce4;
      }
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
      .current-link {
        color: #8e9bad;
      }
    }
    .hero-icon {
      margin-top: 100px;
      width: 20px;
      min-width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .hero-title {
      margin-top: 20px;
      max-width: 1120px;
      width: 100%;
      font-weight: 400;
      font-size: 84px;
      line-height: 102px;
      text-transform: uppercase;
      color: #101217;
    }
  }
}
.service-detail {
  background: #1c202b;
  width: 100%;
  padding: 100px 0;
  .service-detail-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 630px));
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    .service-detail-image {
      width: 100%;
      height: 500px;
      border-radius: 2px;
      img {
        width: 100%;
        height: 100%;
        border-radius: 2px;
        object-fit: cover;
      }
    }
    .service-detail-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      .service-detail-title {
        font-weight: 400;
        font-size: 36px;
        line-height: 48px;
        color: #fefefe;
      }
      .detail-text {
        margin-top: 30px;
        p,
        span,
        li {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #fefefe;
        }
      }
      .apply-link {
        display: flex;
        align-items: center;
        max-width: 100%;
        width: max-content;
        margin-top: 30px;
        gap: 10px;
        padding: 12px 20px;
        background: #cb0223;
        color: #fff;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        border-radius: 3px;
        transition: 0.25s ease-in-out;
        img {
          width: 22px;
          height: 22px;
          min-width: 22px;
        }
        &:hover {
          background: #980219;
        }
      }
    }
  }
}
.service-detail-sections {
  padding: 100px 0;
  background: #f1f1f1;
  width: 100%;
  .service-detail-sections-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: start;
    justify-content: space-between;
    .services-sidebar {
      position: sticky;
      top: 100px;
      .services-nav {
        padding-left: 64px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        .nav-indicator {
          position: absolute;
          left: 0;
          top: 0;
          width: 4px;
          background: #1a35c5;
          border-radius: 100px;
          transition:
            transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
            height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .service-link {
          font-size: 18px;
          font-weight: 500;
          line-height: 28px;
          color: #979797;
          transition: color 0.3s ease;
        }
        .service-link.active {
          color: #101217;
        }
      }
    }
    .services-sections-content {
      max-width: 660px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 30px;
      .service-section-card {
        background: #ffffff;
        border-radius: 2px;
        padding: 40px;
        position: relative;
        opacity: 0.45;
        transition: opacity 0.55s ease;
        .card-top {
          width: 100%;
          display: flex;
          align-items: flex-start;
          justify-content: space-between;
          margin-bottom: 30px;
          .card-icon {
            width: 80px;
            height: 80px;
            img {
              width: 100%;
              height: 100%;
            }
          }
          .card-number {
            font-size: 14px;
            font-weight: 400;
            color: #020ef0;
            line-height: 20px;
          }
        }
        .card-title {
          margin-top: 20px;
          font-weight: 400;
          font-size: 40px;
          line-height: 50px;
          color: #101217;
        }
        .card-secription {
          margin-top: 20px;
          p,
          li,
          span {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #4d5a6d;
          }
        }
        .more {
          display: flex;
          align-items: center;
          max-width: 100%;
          width: max-content;
          margin-top: 40px;
          gap: 10px;
          padding: 12px 20px;
          background: #002ebe;
          color: #fff;
          font-size: 16px;
          line-height: 24px;
          font-weight: 400;
          border-radius: 3px;
          transition: 0.25s ease-in-out;
          img {
            width: 22px;
            height: 22px;
            min-width: 22px;
          }
          &:hover {
            background: #00218a;
          }
        }
      }
      .service-section-card.visible {
        opacity: 1;
      }
    }
  }
}
.portfolio-slide-section {
  background: #1c202b;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  .portfolio-slide-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    .section-title {
      font-weight: 400;
      font-size: 36px;
      line-height: 48px;
      color: #fefefe;
      padding-left: 44px;
    }
    .portfolio-slide {
      margin-top: 60px;
      width: 100%;
      position: initial;
      .portfolio-item {
        display: flex;
        flex-direction: column;
        justify-content: end;
        width: 210px;
        height: 460px;
        transition: 0.35s ease-in-out;
        .vertical-txt {
          transform: rotate(180deg);
          color: #fe012a;
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          writing-mode: vertical-lr;
          position: absolute;
          left: 0;
          bottom: 0;
          opacity: 0;
          transition: 0.35s ease-in-out;
        }
        .card-image {
          width: 210px;
          height: 270px;
          border-radius: 2px;
          transition: 0.35s ease-in-out;
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 2px;
          }
        }
        .card-default-content {
          margin-top: 10px;
          transition: 0.35s ease-in-out;
          .portfolio-title {
            font-weight: 500;
            font-size: 20px;
            line-height: 30px;
            color: #ffffff;
          }
          .short-description {
            margin-top: 4px;
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: rgba(255, 255, 255, 0.4);
            }
          }
        }
        .card-hover-content {
          max-width: 314px;
          height: 0;
          transform: scale(0);
          padding-left: 40px;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 4px;
          transition: 0.35s ease-in-out;
          .portfolio-title {
            font-weight: 500;
            font-size: 30px;
            line-height: 40px;
            color: #ffffff;
          }
          .short-description {
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: rgba(255, 255, 255, 0.8);
            }
          }
          .portfolio-year,
          .portfolio-area {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: rgba(255, 255, 255, 0.8);
          }
          .more {
            margin-top: 46px;
            padding: 12px 20px;
            background: transparent;
            border: 1px solid #f9f9f9;
            transition: 0.3s ease-in-out;
            border-radius: 2px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 6px;
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #ffffff;
              position: relative;
              z-index: 2;
              transition: 0.3s ease-in-out;
            }
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
              transition: 0.3s ease-in-out;
              position: relative;
              z-index: 2;
            }
            &::after {
              content: "";
              position: absolute;
              bottom: 0;
              left: 0;
              width: 100%;
              height: 0%;
              background: #f9f9f9;
              border-radius: 2px;
              z-index: 1;
              transition: 0.3s ease-in-out;
            }
            &:hover {
              p {
                color: #111;
              }
              img {
                filter: invert(1000);
              }
              &::after {
                height: 100%;
              }
            }
          }
        }
      }
      .swiper-buttons {
        display: flex;
        align-items: center;
        position: absolute;
        gap: 16px;
        right: 50px;
        top: 0;
        .swiper-button-prev,
        .swiper-button-next {
          position: initial;
          margin: 0;
          width: 46px;
          height: 46px;
          border: 1px solid #8e9bad;
          border-radius: 100px;
          background: transparent;
          transition: 0.3s ease-in-out;
          &::after {
            transition: 0.3s ease-in-out;
            font-size: 20px;
            color: #8e9bad;
          }
        }
      }
      .swiper-pagination {
        width: max-content;
        display: flex;
        align-items: center;
        top: 19px;
        left: 50px;
        height: max-content;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: rgba(243, 243, 243, 0.43);
        .swiper-pagination-current {
          color: #fff;
        }
      }
    }
  }
}
/* //============================= */
.portfolio-hero {
  width: 100%;
  height: 100svh;
  min-height: 740px;
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  .hero-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
  }
  .hero-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .hero-icon {
      width: 20px;
      min-width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .hero-title {
      margin-top: 20px;
      max-width: 660px;
      width: 100%;
      font-weight: 300;
      font-size: 60px;
      line-height: 72px;
      color: #fefefe;
    }
  }
  .infinity-txt-slide {
    width: 100%;
    margin-top: 100px;
    .swiper-wrapper {
      transition-timing-function: linear;
    }
    .infinity-txt-item {
      display: flex;
      align-items: center;
      width: auto;
      gap: 50px;
      .infinity-txt {
        font-weight: 300;
        font-size: 112px;
        line-height: 130px;
        text-transform: uppercase;
        color: #fefefe;
      }
      .cube {
        width: 14px;
        height: 14px;
        min-width: 14px;
        background: #cb0223;
      }
    }
  }
}
.portfolio-main {
  background: #1c202b;
  width: 100%;
  padding: 100px 0;
  .portfolio-main-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .portfolio-main-head {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      .head-title {
        font-weight: 400;
        font-size: 40px;
        line-height: 50px;
        color: #fefefe;
      }
      .portfolio-head-filter {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 660px;
        width: 100%;
        .select-wrapper {
          position: relative;
          width: 100%;
          .custom-select {
            appearance: none;
            -webkit-appearance: none;
            width: 100%;
            padding: 10px 24px 10px 0;
            color: #ffffff;
            font-size: 16px;
            line-height: 24px;
            background: transparent;
            border: none;
            border-bottom: 1px solid #fefefe;
            border-radius: 0;
            cursor: pointer;
            outline: none;
            option {
              background-color: #1c202b;
            }
          }
          .select-arrow {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-radius: 2px;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid #cb0223;
            pointer-events: none;
          }
        }
      }
    }
    .portfolio-cards {
      width: 100%;
      margin-top: 60px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 50px 20px;
      .portfolio-card {
        background: #fdfdfd;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border: 1px solid #dbdbdb;
        padding: 30px 20px;
        position: relative;
        width: 100%;
        height: 550px;
        .card-image {
          width: 100%;
          height: 424px;
          border-radius: 2px;
          transition: 0.25s ease-in-out;
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 2px;
          }
        }
        .icon {
          width: 54px;
          height: 54px;
          min-width: 54px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 100px;
          background: #fff;
          position: absolute;
          top: 44px;
          right: 34px;
          transition: 0.25s ease-in-out;
          img {
            width: 28px;
            height: 28px;
            min-width: 28px;
            transition: 0.25s ease-in-out;
          }
        }
        .card-body {
          margin-top: 30px;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 12px;
          height: 33px;
          overflow: hidden;
          transition: height 0.25s ease-in-out;
          .portfolio-name {
            font-weight: 500;
            font-size: 22px;
            line-height: 33px;
            color: #101217;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            min-height: 33px;
            height: 33px;
            overflow: hidden;
          }
          .short-description {
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            height: 24px;
            overflow: hidden;
            p,
            li,
            span {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #101217;
            }
          }
          .portfolio-area {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #101217;
          }
        }
        &:hover {
          .card-image {
            height: 353px;
          }
          .icon {
            background: #000;
            transform: rotate(45deg);
            img {
              filter: brightness(1000);
            }
          }
          .card-body {
            height: 105px;
          }
        }
      }
    }
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-top: 60px;
      gap: 10px;
      .pagination-item {
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #fefefe;
        border-radius: 2px;
        width: 30px;
        height: 32px;
        min-width: 30px;
      }
      .pagination-item.active {
        background: rgba(249, 249, 249, 0.1);
      }
      .pagination-points {
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #fefefe;
        border-radius: 2px;
        width: 30px;
        height: 32px;
        min-width: 30px;
      }
    }
  }
}
/* //============================= */
.portfolio-detail-hero {
  width: 100%;
  height: 100svh;
  min-height: 740px;
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  .hero-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
  }
  .hero-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 6px;
      .breadcrumb-item {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #d8dce4;
      }
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
      .current-link {
        color: #8e9bad;
      }
    }
    .hero-icon {
      margin-top: 100px;
      width: 20px;
      min-width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .hero-title {
      margin-top: 20px;
      max-width: 1120px;
      width: 100%;
      font-weight: 400;
      font-size: 84px;
      line-height: 102px;
      text-transform: uppercase;
      color: #101217;
    }
  }
}
.portfolio-detail-main {
  max-width: 1440px;
  width: 100%;
  margin: 100px auto 0;
  .detail-main-banner {
    width: 100%;
    height: 600px;
    border-radius: 2px;
    position: relative;
    .main-banner-image {
      width: 100%;
      height: 100%;
      border-radius: 2px;
      object-fit: cover;
      filter: brightness(70%);
    }
    .banner-info {
      background: rgba(129, 129, 129, 0.24);
      position: absolute;
      right: 30px;
      bottom: 30px;
      max-width: 100%;
      padding: 20px 28px;
      border-radius: 2px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(2px);
      min-width: 275px;
      width: auto;
      max-width: calc(100% - 60px);
      .banner-info-item {
        display: flex;
        align-items: center;
        gap: 10px;
        img {
          width: 20px;
          height: 20px;
          min-width: 20px;
        }
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #fefefe;
        }
      }
    }
  }
  .portfolio-types {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 828px) minmax(0, 472px);
    gap: 40px;
    .stend-tpyes-area {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      .stend-tpyes {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        .type-item {
          padding: 24px 30px;
          border-radius: 2px;
          background: #d8dce5;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #101217;
        }
      }
      .tpyes-area-title {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #cb0223;
      }
    }
    .event-tpyes-area {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      .event-tpyes {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        .type-item {
          padding: 24px 30px;
          border-radius: 2px;
          background: #d8dce5;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #101217;
        }
      }
      .tpyes-area-title {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #cb0223;
      }
    }
  }
}
.portfolio-detail-gallery {
  width: 100%;
  margin-top: 100px;
  .gallery-slide {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 64px;
    .gallery-item {
      width: 600px;
      height: 340px;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .swiper-pagination {
      max-width: 554px;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      background: rgba(56, 56, 56, 0.16);
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 0;
      .swiper-pagination-bullet {
        opacity: 1;
        width: 100%;
        margin: 0;
        height: 4px;
        border-radius: 0;
        background: rgba(56, 56, 56, 0.16);
        transition: 0.3s ease-in-out;
      }
      .swiper-pagination-bullet-active {
        background: #101217;
        border-radius: 100px;
      }
    }
  }
}
.portfolio-detail-navigation {
  width: 100%;
  max-width: 1440px;
  margin: 100px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  .prev-portfolio,
  .next-portfolio {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid #101217;
    transition: 0.3s ease-in-out;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 6px;
    p {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #101217;
      position: relative;
      z-index: 2;
      transition: 0.3s ease-in-out;
    }
    img {
      width: 24px;
      height: 24px;
      min-width: 24px;
      transition: 0.4s ease-in-out;
      position: relative;
      z-index: 2;
    }
    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 0%;
      background: #101217;
      border-radius: 2px;
      z-index: 1;
      transition: 0.3s ease-in-out;
    }
    &:hover {
      p {
        color: #fefefe;
      }
      img {
        filter: brightness(1000);
      }
      &::after {
        height: 100%;
      }
    }
  }
}
/* //============================= */
.contact-hero {
  width: 100%;
  height: 100svh;
  min-height: 740px;
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  .hero-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
  }
  .hero-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .hero-icon {
      width: 20px;
      min-width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .hero-title {
      margin-top: 20px;
      max-width: 660px;
      width: 100%;
      font-weight: 300;
      font-size: 60px;
      line-height: 72px;
      color: #101217;
    }
    .hero-wp {
      padding: 10px 16px;
      background: transparent;
      border: 1px solid #101217;
      border-radius: 2px;
      display: flex;
      align-items: center;
      width: max-content;
      margin-top: 6px;
      margin-left: auto;
      gap: 10px;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #101217;
      }
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
    }
  }
  .infinity-txt-slide {
    width: 100%;
    margin-top: 50px;
    .swiper-wrapper {
      transition-timing-function: linear;
    }
    .infinity-txt-item {
      display: flex;
      align-items: center;
      width: auto;
      gap: 50px;
      .infinity-txt {
        font-weight: 300;
        font-size: 112px;
        line-height: 130px;
        text-transform: uppercase;
        color: #202832;
      }
      .cube {
        width: 14px;
        height: 14px;
        min-width: 14px;
        background: #cb0223;
      }
    }
  }
}
.contact-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  .contact-form {
    width: 100%;
    padding: 50px 0;
    border-top: 1px solid #101217;
    border-bottom: 1px solid #101217;
    .form-items {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      .form-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        border: 1px solid #d8dce5;
        border-radius: 2px;
        padding: 20px 16px;
        label {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #101217;
        }
        input {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #101217;
          width: 100%;
          border: none;
          background: transparent;
          &::placeholder {
            color: #8d9bad;
          }
        }
      }
    }
    .form-categories {
      width: 100%;
      margin-top: 50px;
      .form-categories-title {
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #101217;
      }
      .form-categories-inner {
        margin-top: 20px;
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
        .category-item {
          width: 220px;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 18px;
          border: 1px solid #d8dce5;
          border-radius: 2px;
          gap: 10px;
          position: relative;
          img {
            width: 20px;
            height: 20px;
            min-width: 20px;
          }
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #101217;
          }
          input {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0;
            cursor: pointer;
          }
        }
        .category-item.active {
          border-color: #00218a;
        }
        .upload-file {
          width: 220px;
          display: flex;
          flex-direction: column;
          align-items: center;
          padding: 18px;
          border: 1px solid #d8dce5;
          border-radius: 2px;
          position: relative;
          input {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0;
            cursor: pointer;
            z-index: 1;
          }
          .default-upload-file {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 10px;
            img {
              width: 20px;
              height: 20px;
              min-width: 20px;
            }
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #101217;
            }
          }
          .uploaded-upload-file {
            display: none;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 6px;
            .deleteFile {
              width: 20px;
              height: 20px;
              min-width: 20px;
              display: flex;
              align-items: center;
              justify-content: center;
              position: relative;
              z-index: 2;
              img {
                width: 100%;
                height: 100%;
              }
            }

            .file-name {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #101217;
              white-space: nowrap;
              overflow: hidden;
              text-overflow: ellipsis;
            }
          }
        }
        .upload-file.active {
          border-color: #00218a;
          .default-upload-file {
            display: none;
          }
          .uploaded-upload-file {
            display: flex;
          }
        }
      }
    }
    .form-message {
      margin-top: 50px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      label {
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #101217;
      }
      textarea {
        border: 1px solid #d8dce5;
        border-radius: 2px;
        width: 100%;
        height: 240px;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #101217;
        resize: none;
        background: transparent;
        padding: 20px 16px;
      }
    }
    .submit-contact {
      margin-top: 60px;
      width: 240px;
      margin-left: auto;
      padding: 12px 20px;
      background: #101217;
      border: 1px solid #101217;
      transition: 0.3s ease-in-out;
      border-radius: 2px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #fefefe;
        position: relative;
        z-index: 2;
        transition: 0.3s ease-in-out;
      }
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
        transition: 0.3s ease-in-out;
        position: relative;
        z-index: 2;
      }
      &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0%;
        background: #f9f9f9;
        border-radius: 2px;
        z-index: 1;
        transition: 0.3s ease-in-out;
      }
      &:hover {
        p {
          color: #111;
        }
        img {
          filter: invert(1000);
        }
        &::after {
          height: 100%;
        }
      }
    }
  }
  .contact-map {
    margin: 50px auto 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    .contact-map-title {
      font-weight: 400;
      font-size: 36px;
      line-height: 48px;
      color: #101217;
    }
    .map {
      margin-top: 30px;
      width: 100%;
      height: 500px;
      border-radius: 2px;
      iframe {
        width: 100%;
        height: 100%;
        border-radius: 2px;
        filter: grayscale(1000);
      }
    }
  }
}
/* //============================= */
.solution-detail-hero {
  width: 100%;
  height: 100svh;
  min-height: 740px;
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  .hero-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
  }
  .hero-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 6px;
      .breadcrumb-item {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #d8dce4;
      }
      img {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
      .current-link {
        color: #8e9bad;
      }
    }
    .hero-icon {
      margin-top: 100px;
      width: 20px;
      min-width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .hero-title {
      margin-top: 20px;
      max-width: 1120px;
      width: 100%;
      font-weight: 400;
      font-size: 84px;
      line-height: 102px;
      text-transform: uppercase;
      color: #101217;
    }
  }
}
.solution-detail {
  width: 100%;
  padding: 100px 0;
  .solution-detail-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 630px));
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    .solution-detail-image {
      width: 100%;
      height: 500px;
      border-radius: 2px;
      img {
        width: 100%;
        height: 100%;
        border-radius: 2px;
        object-fit: cover;
      }
    }
    .solution-detail-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      .solution-detail-title {
        font-weight: 400;
        font-size: 36px;
        line-height: 48px;
        color: #101217;
      }
      .detail-text {
        margin-top: 30px;
        p,
        span,
        li {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #4d5a6d;
        }
      }
      .apply-link {
        display: flex;
        align-items: center;
        max-width: 100%;
        width: max-content;
        margin-top: 30px;
        gap: 10px;
        padding: 12px 20px;
        background: #cb0223;
        color: #fff;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        border-radius: 3px;
        transition: 0.25s ease-in-out;
        img {
          width: 22px;
          height: 22px;
          min-width: 22px;
        }
        &:hover {
          background: #980219;
        }
      }
    }
  }
}
.solution-detail-sections {
  padding: 100px 0;
  background: #f1f1f1;
  width: 100%;
  .solution-detail-sections-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: start;
    justify-content: space-between;
    .solution-sidebar {
      position: sticky;
      top: 100px;
      .solution-nav {
        padding-left: 64px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        .nav-indicator {
          position: absolute;
          left: 0;
          top: 0;
          width: 4px;
          background: #1a35c5;
          border-radius: 100px;
          transition:
            transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
            height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .solution-link {
          font-size: 18px;
          font-weight: 500;
          line-height: 28px;
          color: #979797;
          transition: color 0.3s ease;
        }
        .solution-link.active {
          color: #101217;
        }
      }
    }
    .solution-sections-content {
      max-width: 660px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 30px;
      .solution-section-card {
        background: #ffffff;
        border-radius: 2px;
        padding: 40px;
        position: relative;
        opacity: 0.45;
        transition: opacity 0.55s ease;
        .card-top {
          width: 100%;
          display: flex;
          align-items: flex-start;
          justify-content: space-between;
          margin-bottom: 30px;
          .card-icon {
            width: 80px;
            height: 80px;
            img {
              width: 100%;
              height: 100%;
            }
          }
          .card-number {
            font-size: 14px;
            font-weight: 400;
            color: #020ef0;
            line-height: 20px;
          }
        }
        .card-title {
          margin-top: 20px;
          font-weight: 400;
          font-size: 40px;
          line-height: 50px;
          color: #101217;
        }
        .card-secription {
          margin-top: 20px;
          p,
          li,
          span {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #4d5a6d;
          }
        }
        .more {
          display: flex;
          align-items: center;
          max-width: 100%;
          width: max-content;
          margin-top: 40px;
          gap: 10px;
          padding: 12px 20px;
          background: #002ebe;
          color: #fff;
          font-size: 16px;
          line-height: 24px;
          font-weight: 400;
          border-radius: 3px;
          transition: 0.25s ease-in-out;
          img {
            width: 22px;
            height: 22px;
            min-width: 22px;
          }
          &:hover {
            background: #00218a;
          }
        }
      }
      .solution-section-card.visible {
        opacity: 1;
      }
    }
  }
}
.solution-slide-section {
  background: #1c202b;
  .solution-slide-container {
    max-width: 1440px;
    padding-top: 100px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    .solution-slide {
      width: 100%;
      z-index: 3;
      padding-left: 50px;
      .solution-slide-item {
        width: 100%;
        display: flex;
        align-items: end;
        gap: 80px;
        align-items: center;
        opacity: 0 !important;
        .item-image {
          width: 490px;
          min-width: 490px;
          height: 540px;
          padding: 48px;
          border-radius: 2px;
          position: relative;
          img {
            width: 100%;
            height: 100%;
            border-radius: 2px;
            object-fit: cover;
            position: relative;
            z-index: 2;
          }
        }
        .item-body {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: end;
          gap: 30px;
          padding-top: 50px;
          .solution-title {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            -webkit-line-clamp: 2;
            height: 128px;
            font-weight: 400;
            font-size: 50px;
            line-height: 64px;
            color: #fefefe;
          }
          .short-desc {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            -webkit-line-clamp: 5;
            height: 120px;
            p,
            span,
            li {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #fefefe;
            }
          }
          .more {
            padding: 12px 20px;
            background: transparent;
            border: 1px solid #fefefe;
            transition: 0.3s ease-in-out;
            border-radius: 2px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 6px;
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #fefefe;
              position: relative;
              z-index: 2;
              transition: 0.3s ease-in-out;
            }
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
              transition: 0.3s ease-in-out;
              position: relative;
              z-index: 2;
            }

            &::after {
              content: "";
              position: absolute;
              bottom: 0;
              left: 0;
              width: 100%;
              height: 0%;
              background: #fefefe;
              border-radius: 2px;
              z-index: 1;
              transition: 0.3s ease-in-out;
            }
            &:hover {
              p {
                color: #101217;
              }
              img {
                filter: invert(1000);
              }
              &::after {
                height: 100%;
              }
            }
          }
        }
      }
      .swiper-slide-active {
        opacity: 1 !important;
      }
      .swiper-pagination {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        top: 9.5%;
        left: 0;
        right: auto;
        bottom: auto;
        width: max-content;
        .swiper-pagination-bullet {
          opacity: 1;
          width: 10px;
          height: 10px;
          margin: 0;
          border-radius: 100px;
          background: #d8dce4;
          transition: 0.25s ease-in-out;
        }
        .swiper-pagination-bullet-active {
          background: #cb0223;
        }
      }
      .swiper-buttons {
        display: flex;
        align-items: center;
        position: absolute;
        gap: 16px;
        left: 620px;
        top: 50px;
        z-index: 2;
        .swiper-button-prev,
        .swiper-button-next {
          position: initial;
          margin: 0;
          width: 46px;
          height: 46px;
          border: 1px solid #8e9bad;
          border-radius: 100px;
          transition: 0.3s ease-in-out;
          &::after {
            transition: 0.3s ease-in-out;
            font-size: 20px;
            color: #8e9bad;
          }
        }
      }
    }
    .topDecor {
      width: 300px;
      height: 300px;
      top: 0px;
      left: 390px;
      position: absolute;
      z-index: 1;
    }
    .bottomDecor {
      bottom: -100px;
      left: 0;
      width: 300px;
      height: 300px;
      position: absolute;
      z-index: 1;
    }
  }
}
/* //============================= */
.about-hero {
  width: 100%;
  height: 100svh;
  min-height: 740px;
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  .hero-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
  }
  .hero-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .hero-icon {
      width: 20px;
      min-width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .hero-title {
      margin-top: 20px;
      max-width: 660px;
      width: 100%;
      font-weight: 300;
      font-size: 60px;
      line-height: 72px;
      color: #fefefe;
    }
  }
  .infinity-txt-slide {
    width: 100%;
    margin-top: 100px;
    .swiper-wrapper {
      transition-timing-function: linear;
    }
    .infinity-txt-item {
      display: flex;
      align-items: center;
      width: auto;
      gap: 50px;
      .infinity-txt {
        font-weight: 300;
        font-size: 112px;
        line-height: 130px;
        text-transform: uppercase;
        color: #fefefe;
      }
      .cube {
        width: 14px;
        height: 14px;
        min-width: 14px;
        background: #cb0223;
      }
    }
  }
}
.about-exhibition-stands {
  background: linear-gradient(
    180deg,
    #101217 0%,
    #1c202b 52.88%,
    #222733 98.08%
  );
  position: relative;
  transition: 0.5s ease-in-out;
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
  }
  .about-exhibition-stands-container {
    max-width: 1440px;
    padding-top: 180px;
    padding-bottom: 180px;
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 620px));
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;
    .about-exhibition-stands-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      position: relative;
      z-index: 3;
      .about-exhibition-stands-title {
        font-weight: 400;
        font-size: 60px;
        line-height: 74px;
        color: #101217;
        transition: 0.3s ease-in-out;
      }
      .description {
        margin-top: 30px;
        p,
        span,
        li {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #696969;
          transition: 0.3s ease-in-out;
        }
      }
    }
    .about-exhibition-stands-image {
      max-width: 620px;
      position: relative;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      img {
        width: 100%;
        border-radius: 20px;
      }
    }
  }
}
.about-exhibition-stands.changed {
  &::before {
    opacity: 0;
  }

  .about-exhibition-stands-container {
    .about-exhibition-stands-content {
      .about-exhibition-stands-title {
        color: #f9f9f9;
      }
      .description {
        p,
        span,
        li {
          color: #f9f9f9;
        }
      }
    }
  }
}
.about-main {
  background: #1c202b;
  transition: 0.3s ease-in-out;
  position: relative;
  margin-top: 100px;
  .about-main-container {
    max-width: 1440px;
    padding-top: 100px;
    padding-bottom: 180px;
    position: relative;
    z-index: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 620px));
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;
    .about-main-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      position: relative;
      z-index: 3;
      .about-main-title {
        max-width: 500px;
        font-weight: 400;
        font-size: 60px;
        line-height: 74px;
        color: #f9f9f9;
        transition: 0.3s ease-in-out;
      }
      .description {
        margin-top: 30px;
        p,
        span,
        li {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #f9f9f9;
          transition: 0.3s ease-in-out;
        }
      }
      .about-statistics {
        margin-top: 160px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 540px;

        .about-statistics-title {
          font-weight: 400;
          font-size: 50px;
          line-height: 64px;
          color: #fdfdfd;
        }
        .description {
          margin-top: 20px;
        }
        .about-statistic-items {
          width: 100%;
          margin-top: 30px;
          display: grid;
          grid-template-columns: repeat(2, max-content);
          justify-content: space-between;
          gap: 40px 30px;
          .statistic-item {
            display: flex;
            align-items: center;
            gap: 16px;
            .item-count {
              font-weight: 500;
              font-size: 60px;
              line-height: 80px;
              color: #002ebe;
            }
            .statistic-item-title {
              font-weight: 400;
              font-size: 16px;
              line-height: 22px;
              color: #fefefe;
              max-width: 120px;
            }
          }
        }
      }
    }
    .about-main-boxes {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      background: #f9f9f9;
      .box-row {
        display: flex;
        width: 100%;
        position: relative;
        z-index: 4;
        .empty-box {
          width: 50%;
          height: 250px;
          background: #1c202b;
          position: relative;
        }
        .about-main-box {
          width: 50%;
          height: 250px;
          display: flex;
          align-items: flex-start;
          flex-direction: column;
          justify-content: space-between;
          gap: 10px;
          padding: 10px 40px;
          background: #f9f9f9;
          .box-count {
            font-weight: 400;
            font-size: 14px;
            line-height: 21px;
            color: #111;
          }
          .box-title {
            font-weight: 400;
            font-size: 26px;
            line-height: 36px;
            color: #111;
          }
        }
        &:nth-child(even) {
          flex-direction: row-reverse;
        }
        &:nth-child(odd):not(:last-child):not(:first-child) {
          .empty-box {
            border-radius: 0 20px 20px 0;
          }
        }
        &:nth-child(even):not(:last-child) {
          .empty-box {
            border-radius: 20px 0 0 20px;
          }
        }
        &:first-child:nth-child(odd) {
          .empty-box {
            border-radius: 0 0 20px 0;
            &::after {
              content: "";
              position: absolute;
              top: -1px;
              width: 100%;
              height: 2px;
              background: #1c202b;
              left: 0;
            }
          }
        }
        &:last-child:nth-child(odd) {
          .empty-box {
            border-radius: 0 20px 0 0;
            &::after {
              content: "";
              position: absolute;
              bottom: -1px;
              width: 100%;
              height: 2px;
              background: #1c202b;
              left: 0;
            }
          }
        }
        &:last-child:nth-child(even) {
          z-index: 1;
          .empty-box {
            border-radius: 20px 0 0 0;
            &::after {
              content: "";
              position: absolute;
              bottom: -1px;
              width: 100%;
              height: 2px;
              background: #1c202b;
              left: 0;
            }
            &::before {
              content: "";
              position: absolute;
              z-index: 2;
              bottom: -1px;
              width: 1px;
              height: 100%;
              background: rgba(255, 255, 255, 0.7);
              left: 50%;
              transform: translateX(calc(-50% + 0.6px));
            }
          }
        }
      }
    }
  }
  &::after {
    position: absolute;
    z-index: 2;
    width: calc(100% - (((1440px / 2) / 2) / 2) - 25px);
    height: calc(100% - 100px);
    content: "";
    left: 0;
    top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom-right-radius: 2px;
    transition: 0.3s ease-in-out;
  }
}
.about-gallery {
  width: 100%;
  margin: 100px 0;
  .gallery-slide {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 64px;
    .gallery-item {
      width: 600px;
      height: 340px;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .swiper-pagination {
      max-width: 554px;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      background: rgba(56, 56, 56, 0.16);
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 0;
      .swiper-pagination-bullet {
        opacity: 1;
        width: 100%;
        margin: 0;
        height: 4px;
        border-radius: 0;
        background: rgba(56, 56, 56, 0.16);
        transition: 0.3s ease-in-out;
      }
      .swiper-pagination-bullet-active {
        background: #101217;
        border-radius: 100px;
      }
    }
  }
}
.sertificate {
  background: #1c202b;
  width: 100%;
  .sertificate-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .sertificate-section-title {
      font-weight: 400;
      font-size: 40px;
      line-height: 50px;
      color: #fefefe;
    }
    .sertificate-slide {
      margin-top: 50px;
      width: 100%;
      .sertificate-item {
        padding-top: 50px;
        width: 420px;
        height: auto;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        .sertificate-item-body {
          width: 320px;
          position: relative;
          background: #fefefe;
          padding: 20px 40px;
          border-radius: 2px;
          display: flex;
          flex-direction: column;
          align-items: center;
          height: 100%;
          .sertificate-image {
            margin-top: -70px;
            width: 180px;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
              width: 100%;
              height: 100%;
              object-fit: contain;
            }
          }
          .sertificate-name {
            margin-top: auto;
            font-weight: 500;
            font-size: 20px;
            line-height: 30px;
            text-align: center;
            color: #101217;
          }
        }
        .sertificate-right {
          width: 80px;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 20px;
          height: 100%;
          .sertificate-count {
            font-weight: 500;
            font-size: 14px;
            line-height: 28px;
            text-align: center;
            color: #8e9bad;
          }
          .more {
            margin-top: auto;
            width: 100%;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 2px;
            background: #cb0223;
            img {
              width: 30px;
              height: 30px;
            }
          }
        }
      }
    }
  }
}
.about-missions {
  padding: 120px 0 100px;
  width: 100%;
  background: #1c202b;
  .about-missions-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .about-missions-title {
      font-weight: 400;
      font-size: 60px;
      line-height: 74px;
      color: #fefefe;
      span {
        color: #cb0223;
      }
    }
    .short-description {
      margin-top: 30px;
      padding-bottom: 60px;
      border-bottom: 1px solid #696969;
      p,
      span,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #f9f9f9;
        transition: 0.3s ease-in-out;
      }
    }
    .mission-features {
      width: 100%;
      margin-top: 100px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;

      .features-circle {
        position: sticky;
        top: 100px;
        width: 450px;
        min-width: 450px;
        height: 450px;
        border-radius: 500%;
        border: 1px solid #4f4f4f;
        display: flex;
        align-items: center;
        justify-content: center;
        --progress-start: 0%;
        --progress-end: 0%;

        .circle-current-label {
          font-weight: 300;
          font-size: 90px;
          line-height: 120px;
          color: #cb0223;
        }

        .features-circle-item {
          position: absolute;
          z-index: 2;
          transform: translate(-50%, -50%);
          width: 40px;
          height: 40px;
          border-radius: 100px;
          border: 1px solid #cb0223;
          transition: 0.3s ease-in-out;
          display: flex;
          background: #1c202b;
          align-items: center;
          justify-content: center;

          span {
            font-weight: 400;
            font-size: 20px;
            line-height: 30px;
            color: #fefefe;
            opacity: 0;
            transition: 0.3s ease-in-out;
          }
        }

        .features-circle-item.active {
          background: #cb0223;
          width: 60px;
          height: 60px;

          span {
            opacity: 1;
          }
        }

        &::after {
          content: "";
          position: absolute;
          inset: -1px;
          border-radius: 50%;
          pointer-events: none;
          z-index: 1;
          background: conic-gradient(
            from 0deg,
            transparent 0% var(--progress-start),
            #e50914 var(--progress-start) var(--progress-end),
            transparent var(--progress-end) 100%
          );

          -webkit-mask: radial-gradient(
            farthest-side,
            transparent calc(100% - 2px),
            #fff calc(100% - 2px)
          );
          mask: radial-gradient(
            farthest-side,
            transparent calc(100% - 2px),
            #fff calc(100% - 2px)
          );
        }
      }

      .mission-features-items {
        max-width: 700px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 100px;

        .features-item {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          width: 100%;
          transform: translateY(20px);
          opacity: 0.4;
          transition: 0.35s ease-in-out;

          &:last-child {
            margin-bottom: 300px;
          }

          .features-item-title {
            font-weight: 400;
            font-size: 50px;
            line-height: 65px;
            color: #fefefe;
          }

          .features-item-desc {
            margin-top: 24px;

            p,
            li,
            span {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #fefefe;
            }
          }
        }

        .features-item.active {
          opacity: 1;
          transform: translateY(0);
        }
      }
    }
  }
}
@media only screen and (min-width: 993px) {
  .portfolio-slide-section {
    .portfolio-slide-container {
      .portfolio-slide {
        .portfolio-item {
          &:hover {
            width: 624px;
            flex-direction: row;
            justify-content: start;
            align-items: end;
            padding-left: 30px;
            .vertical-txt {
              opacity: 1;
            }
            .card-default-content {
              width: 0;
              height: 0;
              transform: scale(0);
            }
            .card-image {
              width: 310px;
              height: 400px;
            }
            .card-hover-content {
              height: max-content;
              transform: scale(1);
            }
          }
        }
      }
    }
  }
}
@media only screen and (min-width: 1250px) {
  .portfolio-slide-section {
    .portfolio-slide-container {
      .portfolio-slide {
        .portfolio-item {
          &:hover {
            width: 724px;
            flex-direction: row;
            justify-content: start;
            align-items: end;
            padding-left: 30px;
            .vertical-txt {
              opacity: 1;
            }
            .card-default-content {
              width: 0;
              height: 0;
              transform: scale(0);
            }
            .card-image {
              width: 380px;
              height: 460px;
            }
            .card-hover-content {
              height: max-content;
              transform: scale(1);
            }
          }
        }
      }
    }
  }
}
@media only screen and (min-width: 1441px) {
  .why-us {
    &::after {
      width: calc(((100% - 1440px) / 2) + (1440px - 205px));
    }
  }
  .about-main {
    &::after {
      width: calc(((100% - 1440px) / 2) + (1440px - 205px));
    }
  }
  .service-slide-section {
    &::after {
      width: calc(((100% - 1440px) / 2) + (1440px - 205px));
    }
    .service-slide-container {
      .service-slide {
        .swiper-buttons {
          transform: translateX(calc(-50% + 105px));
        }
      }
    }
  }
  .solution-slide-section {
    .solution-slide-container {
      .solution-slide {
        .swiper-buttons {
          transform: translateX(calc(-50% + 10px));
        }
      }
    }
  }
}
@media only screen and (max-width: 1380px) {
  .why-us {
    &::after {
      width: calc(100% - 32px - ((50% / 4)));
    }
  }
  .about-main {
    &::after {
      width: calc(100% - 32px - ((50% / 4)));
    }
  }
}
@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 35px;
    padding-right: 35px;
  }
  header {
    .header-logo {
      width: 144px;
    }
    .header-right {
      gap: 20px;
      .language {
        .other-languages {
          padding: 6px;
          .lang-item {
            font-size: 15px;
            line-height: 24px;
            &:first-child {
              padding-bottom: 6px;
            }
          }
        }
      }
      .header-contact-link {
        padding: 10px 18px;
      }
    }
  }
  .navbar {
    max-width: 790px;
    .navbar-container {
      padding: 6px 16px;
      .navbar-main {
        gap: 20px;
        .nav-icon {
          width: 24px;
          min-width: 24px;
          height: 24px;
        }
        .navbar-links {
          gap: 20px;
          .nav-link {
            padding: 6px 10px;
            font-size: 14px;
            line-height: 20px;
          }
          .nav-btn {
            padding: 6px 10px;
            font-size: 14px;
            line-height: 20px;
            img {
              width: 20px;
              height: 20px;
              min-width: 20px;
            }
          }
        }
      }
      .navbar-subMenu {
        .subMenu-item {
          height: 120px;
          padding: 20px;
          font-size: 14px;
          line-height: 20px;
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
          }
        }
      }
    }
  }
  .navbar.showed {
    max-width: 950px;
    .navbar-container {
      .navbar-subMenu {
        max-height: 400px;
      }
    }
  }
  .home-hero {
    min-height: 640px;
    .home-hero-container {
      padding-top: 140px;
      padding-bottom: 80px;
      .hero-slogan {
        max-width: 505px;
      }
      .hero-bottom-content {
        margin-top: 40px;
        width: 100%;
        gap: 40px;
        .hero-description {
          max-width: 404px;
          p {
            font-size: 18px;
            line-height: 28px;
          }
        }
        .hero-bottom-title {
          font-size: 54px;
          line-height: 84px;
        }
      }
    }
  }
  .home-about {
    .home-about-container {
      padding-top: 140px;
      padding-bottom: 140px;
      .home-about-content {
        .about-title {
          font-size: 48px;
          line-height: 72px;
        }
        .description {
          margin-top: 24px;
        }
        .more {
          margin-top: 24px;
          padding: 10px 16px;
        }
      }
    }
  }
  .partners-section {
    margin: 45px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .partners-slide {
      margin-top: 45px;
      .partner-item {
        max-width: 160px;
        max-height: 60px;
      }
      .swiper-buttons {
        margin-top: 20px;
        gap: 14px;
        .swiper-button-prev,
        .swiper-button-next {
          position: initial;
          width: 42px;
          height: 42px;
          min-width: 42px;
          &::after {
            font-size: 18px;
          }
        }
        .swiper-playPause {
          width: 42px;
          height: 42px;
          min-width: 42px;
          .playIcon,
          .pauseIcon {
            width: 22px;
            height: 22px;
          }
        }
      }
    }
  }
  .home-services-container {
    margin: 70px auto 0;
    .home-services-head {
      .section-title {
        font-size: 36px;
        line-height: 44px;
      }
      .more {
        padding: 10px 30px;
      }
    }
    .home-services {
      margin-top: 45px;
      .service-card {
        flex: 1 1 35%;
        min-height: 400px;
        padding: 40px 24px;
        .card-head {
          gap: 8px;
          margin-bottom: 16px;
          .card-count {
            font-size: 12px;
            line-height: 16px;
          }
          .service-title {
            font-weight: 400;
            font-size: 30px;
            line-height: 40px;
            max-width: 380px;
          }
          .icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            img {
              width: 22px;
              height: 22px;
            }
          }
        }
        .card-short-description {
          p,
          li,
          span {
            font-size: 14px;
            line-height: 20px;
          }
        }
        .card-tags {
          padding: 40px 24px;
          gap: 16px;
          .tag-item {
            font-size: 14px;
            line-height: 20px;
            padding: 8px 12px;
          }
        }
      }
    }
  }
  .project-development-container {
    margin: 70px auto 0;
    .section-title {
      font-size: 36px;
      line-height: 44px;
    }
    .project-development {
      margin-top: 45px;
      gap: 45px;
      .development-item {
        .item-content {
          padding: 0 45px;
          .item-content-inner {
            gap: 16px;
            padding: 0 16px;
            .item-count {
              font-size: 14px;
              line-height: 20px;
            }
            .development-title {
              font-size: 48px;
              line-height: 64px;
            }
          }
        }
      }
    }
  }
  .home-video-presentations {
    margin-top: 70px;
    padding: 45px 0;
    .video-presentations-container {
      .section-title {
        font-size: 36px;
        line-height: 44px;
      }
      .video-presentations-description {
        max-width: 400px;
        margin-top: 16px;
      }
      .video-presentations-slide {
        .swiper-wrapper {
          padding-bottom: 120px;
        }
        .video-presentations-item {
          .item-main {
            height: 500px;
            .playVideoBtn {
              width: 80px;
              height: 80px;
              font-size: 16px;
              line-height: 24px;
            }
          }
          .item-body {
            margin-top: 16px;
            .video-name {
              font-size: 18px;
              line-height: 28px;
            }
            .share-date {
              font-size: 14px;
              line-height: 20px;
            }
          }
        }
        .swiper-slide-active,
        .swiper-slide-prev {
          .item-main {
            height: 350px;
          }
        }
        .swiper-buttons {
          .swiper-button-prev,
          .swiper-button-next {
            width: 42px;
            height: 42px;
            &::after {
              font-size: 18px;
            }
          }
        }
      }
    }
  }
  .why-us {
    .why-us-container {
      padding-top: 140px;
      padding-bottom: 140px;
      .why-us-content {
        .why-us-title {
          max-width: 450px;
          font-size: 48px;
          line-height: 72px;
        }
        .description {
          margin-top: 24px;
        }
        .more {
          margin-top: 24px;
          padding: 10px 16px;
        }
      }
      .why-us-boxes {
        .box-row {
          .empty-box {
            height: 200px;
          }
          .why-us-box {
            height: 200px;
            padding: 10px 30px;
            .box-title {
              font-size: 22px;
              line-height: 33px;
            }
          }
        }
      }
    }
    &::after {
      width: calc(100% - 20.5px - (50% / 4));
      height: calc(100% - 80px);
    }
  }
  .home-gallery {
    padding-bottom: 70px;
    .gallery-slide {
      padding-bottom: 44px;
      .gallery-item {
        width: 500px;
        height: 300px;
      }
      .swiper-pagination {
        max-width: 454px;
      }
    }
  }
  footer {
    padding: 50px 0 24px;
    .footer-container {
      .footer-main {
        gap: 40px;
        .footer-logo {
          width: 144px;
          min-width: 144px;
        }
        .footer-quick-links {
          gap: 20px;
        }
        .footer-link-section {
          .links {
            margin-top: 16px;
            gap: 20px;
          }
        }
        .footer-contact {
          gap: 20px;
        }
        .footer-apply-socials {
          gap: 20px;
          .footer-apply-link {
            padding: 10px 16px;
          }
          .socials {
            gap: 16px;
            .social-item {
              width: 20px;
              height: 20px;
              min-width: 20px;
            }
          }
        }
      }
      .footer-bottom {
        margin-top: 40px;
      }
    }
  }
  .fixed-socials {
    gap: 16px;
    padding: 14px 10px;
    .social-item {
      width: 18px;
      height: 18px;
      min-width: 18px;
    }
  }
  /*==================== */
  .services-hero {
    min-height: 640px;
    padding-top: 140px;
    padding-bottom: 80px;
    .hero-container {
      .hero-icon {
        width: 18px;
        min-width: 18px;
        height: 18px;
      }
      .hero-title {
        max-width: 560px;
        font-size: 48px;
        line-height: 72px;
      }
    }
    .infinity-txt-slide {
      margin-top: 70px;
      .infinity-txt-item {
        gap: 35px;
        .infinity-txt {
          font-size: 96px;
          line-height: 112px;
        }
        .cube {
          width: 12px;
          height: 12px;
          min-width: 12px;
        }
      }
    }
  }
  .service-slide-section {
    .service-slide-container {
      padding-top: 70px;
      padding-bottom: 140px;
      .service-slide {
        padding-left: 40px;
        .service-slide-item {
          gap: 24px;
          .item-image {
            height: 540px;
          }
          .item-body {
            gap: 24px;
            .service-title {
              font-size: 42px;
              line-height: 54px;
              height: 108px;
            }
            .more {
              padding: 10px 16px;
            }
          }
        }
        .swiper-buttons {
          gap: 14px;
          left: 50%;
          transform: translateX(calc(-50% + 80px));
          .swiper-button-prev,
          .swiper-button-next {
            width: 42px;
            height: 42px;
            &::after {
              font-size: 18px;
            }
          }
        }
      }
    }
    &::after {
      width: calc(100% - 170px);
      height: calc(100% - 80px);
    }
  }
  .all-services {
    margin: 0 auto 70px;
    .service-card {
      flex: 1 1 35%;
      min-height: 400px;
      padding: 40px 24px;
      .card-head {
        gap: 8px;
        margin-bottom: 16px;
        .card-count {
          font-size: 12px;
          line-height: 16px;
        }
        .service-title {
          font-weight: 400;
          font-size: 30px;
          line-height: 40px;
          max-width: 380px;
        }
        .icon {
          width: 50px;
          height: 50px;
          min-width: 50px;
          img {
            width: 22px;
            height: 22px;
          }
        }
      }
      .card-short-description {
        p,
        li,
        span {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .card-tags {
        padding: 40px 24px;
        gap: 16px;
        .tag-item {
          font-size: 14px;
          line-height: 20px;
          padding: 8px 12px;
        }
      }
    }
  }
  /* //============================= */
  .service-detail-hero {
    min-height: 640px;
    padding-top: 140px;
    padding-bottom: 80px;
    .hero-container {
      .breadcrumb {
        gap: 6px;
        .breadcrumb-item {
          font-size: 14px;
          line-height: 20px;
        }
        img {
          width: 20px;
          height: 20px;
          min-width: 20px;
        }
      }
      .hero-icon {
        margin-top: 70px;
        width: 18px;
        min-width: 18px;
        height: 18px;
      }
      .hero-title {
        max-width: 920px;
        font-size: 64px;
        line-height: 84px;
      }
    }
  }
  .service-detail {
    padding: 70px 0;
    .service-detail-container {
      grid-template-columns: repeat(2, minmax(0, 630px));
      gap: 30px;
      .service-detail-image {
        height: 400px;
      }
      .service-detail-content {
        .service-detail-title {
          font-size: 30px;
          line-height: 42px;
        }
        .detail-text {
          margin-top: 24px;
        }
        .apply-link {
          margin-top: 24px;
          padding: 10px 16px;
        }
      }
    }
  }
  .service-detail-sections {
    padding: 70px 0;
    .service-detail-sections-container {
      gap: 30px;
      .services-sidebar {
        top: 70px;
        .services-nav {
          padding-left: 44px;
          gap: 12px;
          .service-link {
            font-size: 16px;
            line-height: 24px;
          }
        }
      }
      .services-sections-content {
        max-width: 540px;
        gap: 24px;
        .service-section-card {
          padding: 32px;
          .card-top {
            margin-bottom: 24px;
            .card-icon {
              width: 60px;
              height: 60px;
            }
          }
          .card-title {
            margin-top: 16px;
            font-size: 32px;
            line-height: 44px;
          }
          .card-secription {
            margin-top: 16px;
            p,
            li,
            span {
              font-size: 15px;
              line-height: 22px;
            }
          }
          .more {
            margin-top: 32px;
            padding: 10px 16px;
          }
        }
      }
    }
  }
  .portfolio-slide-section {
    padding-top: 70px;
    padding-bottom: 70px;
    .portfolio-slide-container {
      .section-title {
        font-size: 30px;
        line-height: 42px;
        padding-left: 34px;
      }
      .portfolio-slide {
        margin-top: 45px;
        .portfolio-item {
          width: 190px;
          height: 400px;
          .card-image {
            width: 190px;
            height: 250px;
          }
          .card-default-content {
            .portfolio-title {
              font-size: 18px;
              line-height: 28px;
            }
            .short-description {
              p {
                font-size: 15px;
                line-height: 22px;
              }
            }
          }
          .card-hover-content {
            max-width: 304px;
            padding-left: 30px;
            .portfolio-title {
              font-weight: 500;
              font-size: 24px;
              line-height: 36px;
            }
            .more {
              margin-top: 40px;
              padding: 10px 16px;
            }
          }
        }
        .swiper-buttons {
          gap: 14px;
          right: 35px;
          .swiper-button-prev,
          .swiper-button-next {
            width: 42px;
            height: 42px;
            &::after {
              font-size: 18px;
            }
          }
        }
        .swiper-pagination {
          top: 17px;
          left: 35px;
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
  }
  /* //============================= */
  .portfolio-hero {
    min-height: 640px;
    padding-top: 140px;
    padding-bottom: 80px;
    .hero-container {
      .hero-icon {
        width: 18px;
        min-width: 18px;
        height: 18px;
      }
      .hero-title {
        max-width: 560px;
        font-size: 48px;
        line-height: 72px;
      }
    }
    .infinity-txt-slide {
      margin-top: 70px;
      .infinity-txt-item {
        gap: 35px;
        .infinity-txt {
          font-size: 96px;
          line-height: 112px;
        }
        .cube {
          width: 12px;
          height: 12px;
          min-width: 12px;
        }
      }
    }
  }
  .portfolio-main {
    padding: 70px 0;
    .portfolio-main-container {
      .portfolio-main-head {
        .head-title {
          font-size: 32px;
          line-height: 44px;
        }
        .portfolio-head-filter {
          gap: 24px;
          max-width: 560px;
          .select-wrapper {
            .custom-select {
              padding: 8px 24px 8px 0;
            }
          }
        }
      }
      .portfolio-cards {
        margin-top: 45px;
        gap: 35px 20px;
        .portfolio-card {
          padding: 24px 20px;
          height: 468px;
          .card-image {
            height: 364px;
          }
          .icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            top: 40px;
            right: 34px;
            img {
              width: 26px;
              height: 26px;
              min-width: 26px;
            }
          }
          .card-body {
            margin-top: 24px;
            gap: 10px;
            height: 30px;
            .portfolio-name {
              font-size: 20px;
              line-height: 30px;
              min-height: 30px;
              height: 30px;
            }
          }
          &:hover {
            .card-image {
              height: 296px;
            }
            .card-body {
              height: 98px;
            }
          }
        }
      }
      .pagination {
        margin-top: 45px;
        .pagination-item {
          font-size: 15px;
          line-height: 22px;
          width: 28px;
          height: 30px;
          min-width: 28px;
        }
        .pagination-points {
          font-size: 15px;
          line-height: 22px;
          width: 28px;
          height: 30px;
          min-width: 28px;
        }
      }
    }
  }
  /* //============================= */
  .portfolio-detail-hero {
    min-height: 640px;
    padding-top: 140px;
    padding-bottom: 80px;
    .hero-container {
      .breadcrumb {
        gap: 6px;
        .breadcrumb-item {
          font-size: 14px;
          line-height: 20px;
        }
        img {
          width: 20px;
          height: 20px;
          min-width: 20px;
        }
      }
      .hero-icon {
        margin-top: 70px;
        width: 18px;
        min-width: 18px;
        height: 18px;
      }
      .hero-title {
        max-width: 920px;
        font-size: 64px;
        line-height: 84px;
      }
    }
  }
  .portfolio-detail-main {
    margin: 70px auto 0;
    .detail-main-banner {
      height: 500px;
      .banner-info {
        right: 20px;
        bottom: 20px;
        padding: 16px 24px;
        gap: 10px;
        min-width: 255px;
        max-width: calc(100% - 40px);
      }
    }
    .portfolio-types {
      margin-top: 24px;
      gap: 30px;
      .stend-tpyes-area {
        gap: 12px;
        .stend-tpyes {
          gap: 16px;
          .type-item {
            padding: 20px 24px;
            font-size: 15px;
            line-height: 22px;
          }
        }
      }
      .event-tpyes-area {
        gap: 12px;
        .event-tpyes {
          gap: 16px;
          .type-item {
            padding: 20px 24px;
            font-size: 15px;
            line-height: 22px;
          }
        }
      }
    }
  }
  .portfolio-detail-gallery {
    margin-top: 70px;
    .gallery-slide {
      padding-bottom: 44px;
      .gallery-item {
        width: 500px;
        height: 300px;
      }
      .swiper-pagination {
        max-width: 454px;
      }
    }
  }
  .portfolio-detail-navigation {
    margin: 70px auto;
    .prev-portfolio,
    .next-portfolio {
      padding: 10px 16px;
      p {
        font-size: 14px;
        line-height: 20px;
      }
      img {
        width: 20px;
        height: 20px;
        min-width: 20px;
      }
    }
  }
  /* //============================= */
  .solution-detail-hero {
    min-height: 640px;
    padding-top: 140px;
    padding-bottom: 80px;
    .hero-container {
      .breadcrumb {
        gap: 6px;
        .breadcrumb-item {
          font-size: 14px;
          line-height: 20px;
        }
        img {
          width: 20px;
          height: 20px;
          min-width: 20px;
        }
      }
      .hero-icon {
        margin-top: 70px;
        width: 18px;
        min-width: 18px;
        height: 18px;
      }
      .hero-title {
        max-width: 920px;
        font-size: 64px;
        line-height: 84px;
      }
    }
  }
  .solution-detail {
    padding: 70px 0;
    .solution-detail-container {
      grid-template-columns: repeat(2, minmax(0, 630px));
      gap: 30px;
      .solution-detail-image {
        height: 400px;
      }
      .solution-detail-content {
        .solution-detail-title {
          font-size: 30px;
          line-height: 42px;
        }
        .detail-text {
          margin-top: 24px;
        }
        .apply-link {
          margin-top: 24px;
          padding: 10px 16px;
        }
      }
    }
  }
  .solution-detail-sections {
    padding: 70px 0;
    .solution-detail-sections-container {
      gap: 30px;
      .solution-sidebar {
        top: 70px;
        .solution-nav {
          padding-left: 44px;
          gap: 12px;
          .solution-link {
            font-size: 16px;
            line-height: 24px;
          }
        }
      }
      .solution-sections-content {
        max-width: 540px;
        gap: 24px;
        .solution-section-card {
          padding: 32px;
          .card-top {
            margin-bottom: 24px;
            .card-icon {
              width: 60px;
              height: 60px;
            }
          }
          .card-title {
            margin-top: 16px;
            font-size: 32px;
            line-height: 44px;
          }
          .card-secription {
            margin-top: 16px;
            p,
            li,
            span {
              font-size: 15px;
              line-height: 22px;
            }
          }
          .more {
            margin-top: 32px;
            padding: 10px 16px;
          }
        }
      }
    }
  }
  .solution-slide-section {
    .solution-slide-container {
      padding-top: 70px;
      .solution-slide {
        padding-left: 30px;
        .solution-slide-item {
          width: 100%;
          gap: 40px;
          .item-image {
            width: 400px;
            min-width: 400px;
            height: 450px;
            padding: 36px;
          }
          .item-body {
            gap: 24px;
            padding-top: 50px;
            .solution-title {
              font-size: 42px;
              line-height: 54px;
              height: 108px;
            }
            .more {
              padding: 10px 16px;
            }
          }
        }
        .swiper-pagination {
          top: 9%;
        }
        .swiper-buttons {
          gap: 14px;
          left: 472px;
          top: 35px;
          .swiper-button-prev,
          .swiper-button-next {
            width: 42px;
            height: 42px;
            &::after {
              font-size: 18px;
            }
          }
        }
      }
      .topDecor {
        width: 250px;
        height: 250px;
        left: 300px;
      }
      .bottomDecor {
        bottom: -70px;
        width: 250px;
        height: 250px;
      }
    }
  }
  /* //============================= */
  .about-hero {
    min-height: 640px;
    padding-top: 140px;
    padding-bottom: 80px;
    .hero-container {
      .hero-icon {
        width: 18px;
        min-width: 18px;
        height: 18px;
      }
      .hero-title {
        max-width: 560px;
        font-size: 48px;
        line-height: 72px;
      }
    }
    .infinity-txt-slide {
      margin-top: 70px;
      .infinity-txt-item {
        gap: 35px;
        .infinity-txt {
          font-size: 96px;
          line-height: 112px;
        }
        .cube {
          width: 12px;
          height: 12px;
          min-width: 12px;
        }
      }
    }
  }
  .about-exhibition-stands {
    .about-exhibition-stands-container {
      padding-top: 140px;
      padding-bottom: 140px;
      .about-exhibition-stands-content {
        .about-exhibition-stands-title {
          font-size: 48px;
          line-height: 72px;
        }
        .description {
          margin-top: 24px;
        }
      }
    }
  }
  .about-main {
    margin-top: 70px;
    .about-main-container {
      padding-top: 70px;
      padding-bottom: 140px;
      .about-main-content {
        .about-main-title {
          max-width: 450px;
          font-size: 48px;
          line-height: 72px;
        }
        .description {
          margin-top: 24px;
        }
        .about-statistics {
          margin-top: 140px;
          max-width: 540px;
          .about-statistics-title {
            font-size: 42px;
            line-height: 54px;
          }
          .description {
            margin-top: 16px;
          }
          .about-statistic-items {
            margin-top: 24px;
            gap: 30px 20px;
            .statistic-item {
              gap: 12px;
              .item-count {
                font-size: 48px;
                line-height: 72px;
              }
              .statistic-item-title {
                font-size: 14px;
                line-height: 20px;
              }
            }
          }
        }
      }
      .about-main-boxes {
        .box-row {
          .empty-box {
            height: 200px;
          }
          .about-main-box {
            height: 200px;
            padding: 10px 30px;
            .box-title {
              font-size: 22px;
              line-height: 33px;
            }
          }
        }
      }
    }
    &::after {
      width: calc(100% - 20.5px - (50% / 4));
      height: calc(100% - 70px);
    }
  }
  .about-gallery {
    margin: 70px 0;
    .gallery-slide {
      padding-bottom: 44px;
      .gallery-item {
        width: 500px;
        height: 300px;
      }
      .swiper-pagination {
        max-width: 454px;
      }
    }
  }
  .sertificate {
    .sertificate-container {
      .sertificate-section-title {
        font-size: 32px;
        line-height: 44px;
      }
      .sertificate-slide {
        margin-top: 35px;
        .sertificate-item {
          padding-top: 35px;
          width: 356px;
          gap: 16px;
          .sertificate-item-body {
            width: 280px;
            padding: 16px 30px;
            .sertificate-image {
              margin-top: -51px;
              width: 160px;
              height: 160px;
            }
            .sertificate-name {
              font-size: 18px;
              line-height: 28px;
            }
          }
          .sertificate-right {
            width: 60px;
            gap: 16px;
            .more {
              height: 60px;
              img {
                width: 28px;
                height: 28px;
              }
            }
          }
        }
      }
    }
  }
  .about-missions {
    padding: 90px 0 70px;
    .about-missions-container {
      .about-missions-title {
        font-size: 48px;
        line-height: 72px;
      }
      .short-description {
        margin-top: 24px;
        padding-bottom: 50px;
      }
      .mission-features {
        margin-top: 70px;
        .features-circle {
          top: 70px;
          width: 350px;
          min-width: 350px;
          height: 350px;
          .circle-current-label {
            font-size: 72px;
            line-height: 84px;
          }

          .features-circle-item {
            width: 36px;
            height: 36px;
            span {
              font-size: 18px;
              line-height: 28px;
            }
          }

          .features-circle-item.active {
            width: 54px;
            height: 54px;
          }
        }

        .mission-features-items {
          max-width: 650px;
          gap: 70px;

          .features-item {
            &:last-child {
              margin-bottom: 200px;
            }
            .features-item-title {
              font-size: 42px;
              line-height: 54px;
            }

            .features-item-desc {
              margin-top: 20px;
            }
          }

          .features-item.active {
            opacity: 1;
            transform: translateY(0);
          }
        }
      }
    }
  }
  /* //============================= */
  .contact-hero {
    min-height: 640px;
    padding-top: 140px;
    padding-bottom: 80px;
    .hero-container {
      .hero-icon {
        width: 18px;
        min-width: 18px;
        height: 18px;
      }
      .hero-title {
        max-width: 560px;
        font-size: 48px;
        line-height: 72px;
      }
      .hero-wp {
        padding: 8px 14px;
      }
    }
    .infinity-txt-slide {
      margin-top: 40px;
      .infinity-txt-item {
        gap: 35px;
        .infinity-txt {
          font-size: 96px;
          line-height: 112px;
        }
        .cube {
          width: 12px;
          height: 12px;
          min-width: 12px;
        }
      }
    }
  }
  .contact-container {
    .contact-form {
      padding: 40px 0;
      .form-items {
        .form-item {
          gap: 8px;
          padding: 16px 12px;
          label {
            font-size: 14px;
            line-height: 20px;
          }
        }
      }
      .form-categories {
        margin-top: 35px;
        .form-categories-title {
          font-size: 16px;
          line-height: 24px;
        }
        .form-categories-inner {
          margin-top: 16px;
          gap: 24px;
          .category-item {
            width: 200px;
            padding: 14px;
            gap: 8px;
            img {
              width: 18px;
              height: 18px;
              min-width: 18px;
            }
            p {
              font-size: 14px;
              line-height: 20px;
            }
          }
          .upload-file {
            width: 200px;
            padding: 14px;
            .default-upload-file {
              gap: 8px;
              img {
                width: 18px;
                height: 18px;
                min-width: 18px;
              }
              p {
                font-size: 14px;
                line-height: 20px;
              }
            }
            .uploaded-upload-file {
              .deleteFile {
                width: 18px;
                height: 18px;
                min-width: 18px;
              }

              .file-name {
                font-size: 14px;
                line-height: 20px;
              }
            }
          }
        }
      }
      .form-message {
        margin-top: 35px;
        gap: 16px;
        label {
          font-size: 16px;
          line-height: 24px;
        }
        textarea {
          height: 200px;
          padding: 16px 12px;
        }
      }
      .submit-contact {
        margin-top: 45px;
        width: 220px;
        padding: 10px 16px;
      }
    }
    .contact-map {
      margin: 35px auto 70px;
      .contact-map-title {
        font-size: 30px;
        line-height: 40px;
      }
      .map {
        margin-top: 24px;
        height: 400px;
      }
    }
  }
}
@media only screen and (max-width: 992px) {
  .cursor-wrapper {
    display: none;
  }
  .navbar {
    max-width: 740px;
    .navbar-container {
      padding: 6px 16px;
      .navbar-main {
        gap: 14px;
        .navbar-links {
          gap: 14px;
        }
      }
    }
  }
  .navbar.showed {
    max-width: calc(100% - 30px);
  }
  .home-hero {
    .home-hero-container {
      .hero-bottom-content {
        flex-direction: column-reverse;
        .hero-description {
          margin-right: auto;
        }
        .hero-bottom-title {
          font-size: 54px;
          line-height: 72px;
        }
      }
    }
  }
  .home-video-presentations {
    .video-presentations-container {
      .video-presentations-description {
        margin-top: 16px;
      }
      .video-presentations-slide {
        margin-top: 24px;
        padding-top: 0;
        .video-presentations-item {
          width: 350px;
          .item-main {
            height: 350px;
          }
        }
        .swiper-slide-active,
        .swiper-slide-prev {
          .item-main {
            height: 350px;
          }
        }
        .swiper-pagination {
          top: auto;
          left: 0;
          right: auto;
          bottom: 0;
        }
        .swiper-buttons {
          top: auto;
          left: auto;
          right: 0;
          bottom: 0;
        }
      }
    }
  }
  .home-gallery {
    .gallery-slide {
      .gallery-item {
        width: 400px;
        height: 250px;
      }
      .swiper-pagination {
        max-width: 404px;
      }
    }
  }
  footer {
    .footer-container {
      .footer-main {
        flex-wrap: wrap;
      }
    }
  }
  /*==================== */
  .services-hero {
    .infinity-txt-slide {
      .infinity-txt-item {
        .infinity-txt {
          font-size: 84px;
          line-height: 106px;
        }
      }
    }
  }
  .service-slide-section {
    .service-slide-container {
      padding-bottom: 70px;
      .service-slide {
        padding-left: 0;
        padding-bottom: 80px;
        background: #fff;
        .service-slide-item {
          width: 443px;
          height: auto;
          display: flex;
          align-items: flex-start;
          flex-direction: column;
          gap: 24px;
          opacity: 1 !important;
          .item-image {
            height: 450px;
          }
          .item-body {
            padding: 0;
            gap: 20px;
            .service-title {
              font-size: 36px;
              line-height: 44px;
              height: 88px;
            }
            .short-desc {
              -webkit-line-clamp: 3;
              height: 72px;
            }
          }
        }
        .swiper-buttons {
          gap: 14px;
          left: auto;
          right: 0;
          top: auto;
          bottom: 10px;
          transform: none;
          .swiper-button-prev,
          .swiper-button-next {
            width: 42px;
            height: 42px;
            &::after {
              font-size: 18px;
            }
          }
        }
        .swiper-pagination {
          flex-direction: row;
          bottom: 10px;
          top: auto;
        }
      }
    }
    &::after {
      display: none;
    }
  }
  .service-detail-sections {
    .service-detail-sections-container {
      gap: 0;
      .services-sidebar {
        display: none;
      }
      .services-sections-content {
        max-width: 100%;
      }
    }
  }
  .portfolio-slide-section {
    .portfolio-slide-container {
      .portfolio-slide {
        .portfolio-item {
          height: auto;
          .card-image {
            width: 100%;
          }
          .card-hover-content {
            display: none;
          }
        }
      }
    }
  }
  /* //============================= */
  .portfolio-hero {
    .infinity-txt-slide {
      .infinity-txt-item {
        .infinity-txt {
          font-size: 84px;
          line-height: 106px;
        }
      }
    }
  }
  .portfolio-main {
    .portfolio-main-container {
      .portfolio-main-head {
        flex-direction: column;
        align-items: flex-start;
        .portfolio-head-filter {
          grid-template-columns: repeat(3, 1fr);
          gap: 24px;
          max-width: 100%;
        }
      }
      .portfolio-cards {
        grid-template-columns: repeat(2, 1fr);
        .portfolio-card {
          height: 548px;
          .card-image {
            height: 444px;
          }
          &:hover {
            .card-image {
              height: 376px;
            }
          }
        }
      }
    }
  }
  /* //============================= */
  .portfolio-detail-main {
    .detail-main-banner {
      height: 450px;
    }
    .portfolio-types {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .event-tpyes-area {
        .event-tpyes {
          grid-template-columns: repeat(3, 1fr);
        }
      }
    }
  }
  .portfolio-detail-gallery {
    .gallery-slide {
      .gallery-item {
        width: 400px;
        height: 250px;
      }
      .swiper-pagination {
        max-width: 404px;
      }
    }
  }
  /* //============================= */
  .solution-detail-sections {
    .solution-detail-sections-container {
      gap: 0;
      .solution-sidebar {
        display: none;
      }
      .solution-sections-content {
        max-width: 100%;
      }
    }
  }
  .solution-slide-section {
    .solution-slide-container {
      padding-top: 70px;
      .solution-slide {
        padding-left: 0;
        padding-bottom: 80px;
        .solution-slide-item {
          width: 443px;
          height: auto;
          display: flex;
          align-items: flex-start;
          flex-direction: column;
          gap: 24px;
          opacity: 1 !important;
          .item-image {
            width: 100%;
            min-width: 0;
            height: 450px;
            padding: 0;
          }
          .item-body {
            padding: 0;
            gap: 20px;
            .solution-title {
              font-size: 36px;
              line-height: 44px;
              height: 88px;
            }
            .short-desc {
              -webkit-line-clamp: 3;
              height: 72px;
            }
          }
        }
        .swiper-buttons {
          gap: 14px;
          left: auto;
          right: 0;
          top: auto;
          bottom: 10px;
          transform: none;
          .swiper-button-prev,
          .swiper-button-next {
            width: 42px;
            height: 42px;
            &::after {
              font-size: 18px;
            }
          }
        }
        .swiper-pagination {
          flex-direction: row;
          bottom: 10px;
          top: auto;
        }
      }
      .topDecor {
        display: none;
      }
      .bottomDecor {
        display: none;
      }
    }
  }
  /* //============================= */
  .about-hero {
    .infinity-txt-slide {
      .infinity-txt-item {
        .infinity-txt {
          font-size: 84px;
          line-height: 106px;
        }
      }
    }
  }
  .about-gallery {
    .gallery-slide {
      .gallery-item {
        width: 400px;
        height: 250px;
      }
      .swiper-pagination {
        max-width: 404px;
      }
    }
  }
  .about-main {
    .about-main-container {
      .about-main-content {
        .about-statistics {
          .about-statistic-items {
            .statistic-item {
              .item-count {
                font-size: 36px;
                line-height: 48px;
              }
            }
          }
        }
      }
    }
  }
  .about-missions {
    .about-missions-container {
      .mission-features {
        .features-circle {
          display: none;
        }
        .mission-features-items {
          max-width: 100%;
          .features-item {
            &:last-child {
              margin-bottom: 0;
            }
          }
        }
      }
    }
  }
  /* //============================= */
  .contact-hero {
    .hero-container {
      .hero-wp {
        margin-top: 16px;
      }
    }
    .infinity-txt-slide {
      .infinity-txt-item {
        .infinity-txt {
          font-size: 84px;
          line-height: 106px;
        }
      }
    }
  }
  .contact-container {
    .contact-form {
      .form-categories {
        .form-categories-inner {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          .category-item {
            width: 100%;
          }
          .upload-file {
            width: 100%;
          }
        }
      }
    }
  }
}
@media only screen and (max-width: 768px) {
  .p-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
  header {
    top: 24px;
    .header-logo {
      width: 124px;
    }
    .header-right {
      display: none;
    }
    .hamburger {
      display: flex;
    }
  }
  .navbar {
    display: none;
  }
  .mobile-menu {
    display: flex;
  }
  .home-hero {
    min-height: 0;
    height: auto;
    .home-hero-container {
      padding-top: 100px;
      padding-bottom: 40px;
      .hero-slogan {
        max-width: 455px;
      }
      .hero-bottom-content {
        .hero-description {
          max-width: 364px;
          margin-right: auto;
          p {
            font-size: 16px;
            line-height: 24px;
          }
        }
        .hero-bottom-title {
          font-size: 34px;
          line-height: 52px;
        }
      }
    }
  }
  .home-about {
    .home-about-container {
      padding-top: 100px;
      padding-bottom: 100px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .home-about-content {
        .about-title {
          font-size: 36px;
          line-height: 44px;
        }
        .description {
          margin-top: 20px;
        }
        .more {
          margin-top: 20px;
        }
      }
      .home-about-image {
        max-width: 100%;
        width: 100%;
      }
    }
  }
  .partners-section {
    margin: 30px auto 0;
    .section-title {
      font-size: 30px;
      line-height: 40px;
    }
    .partners-slide {
      margin-top: 30px;
      .partner-item {
        max-width: 140px;
        max-height: 55px;
      }
      .swiper-buttons {
        .swiper-button-prev,
        .swiper-button-next {
          position: initial;
          width: 36px;
          height: 36px;
          min-width: 36px;
          &::after {
            font-size: 16px;
          }
        }
        .swiper-playPause {
          width: 36px;
          height: 36px;
          min-width: 36px;
          .playIcon,
          .pauseIcon {
            width: 18px;
            height: 18px;
          }
        }
      }
    }
  }
  .home-services-container {
    margin: 40px auto 0;
    .home-services-head {
      .section-title {
        font-size: 30px;
        line-height: 40px;
      }
      .more {
        padding: 10px 24px;
      }
    }
    .home-services {
      margin-top: 30px;
      .service-card {
        flex-direction: column;
        align-items: flex-start;
        flex: none;
        min-height: 0;
        padding: 30px 20px;
        width: 100%;
        .card-head {
          margin-bottom: 0;
          .service-title {
            font-weight: 400;
            font-size: 24px;
            line-height: 32px;
            max-width: 100%;
          }
          .icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            img {
              width: 20px;
              height: 20px;
            }
          }
        }
        .card-short-description {
          display: none;
        }
        .card-tags {
          position: initial;
          padding: 0;
          gap: 16px;
          margin-top: 40px;
          .tag-item {
            font-size: 12px;
            line-height: 16px;
            padding: 8px 10px;
            background: transparent;
          }
        }
        &:hover {
          .card-tags {
            opacity: 1;
          }
        }
      }
    }
  }
  .project-development-container {
    margin: 40px auto 0;
    .section-title {
      font-size: 30px;
      line-height: 40px;
    }
    .project-development {
      margin-top: 30px;
      gap: 30px;
      .development-item {
        .item-content {
          padding: 0 30px;
          .item-content-inner {
            gap: 12px;
            padding: 0 12px;
            .item-count {
              font-size: 14px;
              line-height: 20px;
            }
            .development-title {
              font-size: 24px;
              line-height: 32px;
            }
          }
        }
      }
    }
  }
  .home-video-presentations {
    margin-top: 40px;
    padding: 30px 0;
    .video-presentations-container {
      .section-title {
        font-size: 30px;
        line-height: 40px;
      }
      .video-presentations-description {
        max-width: 420px;
      }
      .video-presentations-slide {
        .swiper-wrapper {
          padding-bottom: 80px;
        }
        .video-presentations-item {
          width: 320px;
          .item-main {
            height: 340px;
            .playVideoBtn {
              width: 60px;
              height: 60px;
              font-size: 14px;
              line-height: 20px;
              opacity: 1;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
            }
          }
          .item-body {
            margin-top: 14px;
          }
        }
        .swiper-slide-active,
        .swiper-slide-prev {
          .item-main {
            height: 340px;
          }
        }
        .swiper-pagination {
          gap: 8px;
        }
        .swiper-buttons {
          gap: 12px;
          .swiper-button-prev,
          .swiper-button-next {
            width: 36px;
            height: 36px;
            &::after {
              font-size: 16px;
            }
          }
        }
      }
    }
  }
  .why-us {
    .why-us-container {
      padding-top: 100px;
      padding-bottom: 100px;
      display: flex;
      flex-direction: column;
      gap: 40px;
      .why-us-content {
        .why-us-title {
          max-width: 450px;
          font-size: 36px;
          line-height: 44px;
        }
        .description {
          margin-top: 20px;
        }
        .more {
          margin-top: 20px;
        }
      }
      .why-us-boxes {
        max-width: 100%;
        .box-row {
          .empty-box {
            height: 180px;
          }
          .why-us-box {
            height: 180px;
            padding: 10px 20px;
            .box-title {
              font-size: 16px;
              line-height: 24px;
            }
          }
        }
      }
    }
    &::after {
      width: calc(100% - 20px - ((100% - 40px) / 4));
      top: auto;
      bottom: 50px;
      height: 40%;
    }
  }
  .home-gallery {
    padding-bottom: 40px;
    .gallery-slide {
      .gallery-item {
        width: 300px;
        height: 180px;
      }
      .swiper-pagination {
        max-width: 254px;
      }
    }
  }
  footer {
    padding: 40px 0 20px;
    .footer-container {
      .footer-main {
        flex-wrap: wrap;
        .footer-logo {
          width: 124px;
          min-width: 124px;
        }
      }
      .footer-bottom {
        margin-top: 30px;
      }
    }
  }
  /*==================== */
  .services-hero {
    min-height: 0;
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
    .hero-container {
      .hero-title {
        max-width: 400px;
        font-size: 36px;
        line-height: 44px;
      }
    }
    .infinity-txt-slide {
      margin-top: 40px;
      .infinity-txt-item {
        gap: 20px;
        .infinity-txt {
          font-size: 64px;
          line-height: 84px;
        }
        .cube {
          width: 10px;
          height: 10px;
          min-width: 10px;
        }
      }
    }
  }
  .service-slide-section {
    .service-slide-container {
      padding-top: 40px;
      padding-bottom: 40px;
      .service-slide {
        padding-bottom: 74px;
        .service-slide-item {
          width: 383px;
          gap: 20px;
          .item-image {
            height: 400px;
          }
          .item-body {
            gap: 16px;
            .service-title {
              font-size: 28px;
              line-height: 36px;
              height: 72px;
            }
          }
        }
        .swiper-buttons {
          .swiper-button-prev,
          .swiper-button-next {
            width: 36px;
            height: 36px;
            &::after {
              font-size: 16px;
            }
          }
        }
      }
    }
  }
  .all-services {
    margin: 0 auto 40px;
    .service-card {
      flex-direction: column;
      align-items: flex-start;
      flex: none;
      min-height: 0;
      padding: 30px 20px;
      width: 100%;
      .card-head {
        margin-bottom: 0;
        .service-title {
          font-weight: 400;
          font-size: 24px;
          line-height: 32px;
          max-width: 100%;
        }
        .icon {
          width: 44px;
          height: 44px;
          min-width: 44px;
          img {
            width: 20px;
            height: 20px;
          }
        }
      }
      .card-short-description {
        display: none;
      }
      .card-tags {
        position: initial;
        padding: 0;
        gap: 16px;
        margin-top: 40px;
        .tag-item {
          font-size: 12px;
          line-height: 16px;
          padding: 8px 10px;
          background: transparent;
        }
      }
      &:hover {
        .card-tags {
          opacity: 1;
        }
      }
    }
  }
  /* //============================= */
  .service-detail-hero {
    min-height: 0;
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
    .hero-container {
      .breadcrumb {
        display: none;
      }
      .hero-icon {
        margin-top: 0;
      }
      .hero-title {
        max-width: 100%;
        font-size: 44px;
        line-height: 64px;
      }
    }
  }
  .service-detail {
    padding: 40px 0;
    .service-detail-container {
      display: flex;
      flex-direction: column-reverse;
      gap: 24px;
      .service-detail-content {
        .service-detail-title {
          font-size: 24px;
          line-height: 36px;
        }
        .detail-text {
          margin-top: 20px;
        }
        .apply-link {
          margin-top: 20px;
        }
      }
    }
  }
  .service-detail-sections {
    padding: 40px 0;
    .service-detail-sections-container {
      .services-sections-content {
        gap: 20px;
        .service-section-card {
          padding: 24px;
          .card-top {
            margin-bottom: 20px;
            .card-icon {
              width: 40px;
              height: 40px;
            }
          }
          .card-title {
            font-size: 24px;
            line-height: 32px;
          }
          .more {
            margin-top: 24px;
          }
        }
      }
    }
  }
  .portfolio-slide-section {
    padding-top: 40px;
    padding-bottom: 40px;
    .portfolio-slide-container {
      .section-title {
        font-size: 24px;
        line-height: 32px;
        padding-left: 30px;
      }
      .portfolio-slide {
        margin-top: 30px;
        .portfolio-item {
          .card-image {
            height: 220px;
          }
        }
        .swiper-buttons {
          gap: 12px;
          right: 20px;
          .swiper-button-prev,
          .swiper-button-next {
            width: 36px;
            height: 36px;
            &::after {
              font-size: 16px;
            }
          }
        }
        .swiper-pagination {
          top: 14px;
          left: 20px;
          font-size: 12px;
          line-height: 14px;
        }
      }
    }
  }
  /* //============================= */
  .portfolio-hero {
    min-height: 0;
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
    .hero-container {
      .hero-title {
        max-width: 400px;
        font-size: 36px;
        line-height: 44px;
      }
    }
    .infinity-txt-slide {
      margin-top: 40px;
      .infinity-txt-item {
        gap: 20px;
        .infinity-txt {
          font-size: 64px;
          line-height: 84px;
        }
        .cube {
          width: 10px;
          height: 10px;
          min-width: 10px;
        }
      }
    }
  }
  .portfolio-main {
    padding: 40px 0;
    .portfolio-main-container {
      .portfolio-main-head {
        .head-title {
          font-size: 24px;
          line-height: 32px;
        }
        .portfolio-head-filter {
          gap: 20px;
        }
      }
      .portfolio-cards {
        margin-top: 30px;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
        .portfolio-card {
          padding: 20px;
          height: auto;
          .card-image {
            height: 384px;
          }
          .icon {
            width: 46px;
            height: 46px;
            min-width: 46px;
            top: 36px;
            right: 30px;
            img {
              width: 22px;
              height: 22px;
              min-width: 22px;
            }
          }
          .card-body {
            margin-top: 20px;
            gap: 10px;
            height: auto;
            .portfolio-name {
              font-size: 18px;
              line-height: 28px;
              min-height: auto;
              height: auto;
              display: block;
            }
            .short-description {
              display: block;
              height: auto;
            }
          }
          &:hover {
            .card-image {
              height: 384px;
            }
            .card-body {
              height: auto;
            }
          }
        }
      }
      .pagination {
        margin-top: 30px;
      }
    }
  }
  /* //============================= */
  .portfolio-detail-hero {
    min-height: 0;
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
    .hero-container {
      .breadcrumb {
        display: none;
      }
      .hero-icon {
        margin-top: 0;
      }
      .hero-title {
        max-width: 100%;
        font-size: 44px;
        line-height: 64px;
      }
    }
  }
  .portfolio-detail-main {
    margin: 40px auto 0;
    .detail-main-banner {
      height: 400px;
      .banner-info {
        padding: 16px;
      }
    }
    .portfolio-types {
      .stend-tpyes-area {
        .stend-tpyes {
          grid-template-columns: repeat(1, 1fr);
          .type-item {
            padding: 16px;
          }
        }
      }
      .event-tpyes-area {
        .event-tpyes {
          grid-template-columns: repeat(1, 1fr);
          .type-item {
            padding: 16px;
          }
        }
      }
    }
  }
  .portfolio-detail-gallery {
    margin-top: 40px;
    .gallery-slide {
      .gallery-item {
        width: 300px;
        height: 180px;
      }
      .swiper-pagination {
        max-width: 254px;
      }
    }
  }
  .portfolio-detail-navigation {
    margin: 40px auto;
    .prev-portfolio,
    .next-portfolio {
      padding: 10px 12px;
      p {
        font-size: 13px;
        line-height: 16px;
      }
      img {
        width: 16px;
        height: 16px;
        min-width: 16px;
      }
    }
  }
  /* //============================= */
  .solution-detail-hero {
    min-height: 0;
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
    .hero-container {
      .breadcrumb {
        display: none;
      }
      .hero-icon {
        margin-top: 0;
      }
      .hero-title {
        max-width: 100%;
        font-size: 44px;
        line-height: 64px;
      }
    }
  }
  .solution-detail {
    padding: 40px 0;
    .solution-detail-container {
      display: flex;
      flex-direction: column-reverse;
      gap: 24px;
      .solution-detail-image {
        height: 400px;
      }
      .solution-detail-content {
        .solution-detail-title {
          font-size: 24px;
          line-height: 36px;
        }
        .detail-text {
          margin-top: 20px;
        }
        .apply-link {
          margin-top: 20px;
        }
      }
    }
  }
  .solution-detail-sections {
    padding: 40px 0;
    .solution-detail-sections-container {
      .solution-sections-content {
        gap: 20px;
        .solution-section-card {
          padding: 24px;
          .card-top {
            margin-bottom: 20px;
            .card-icon {
              width: 40px;
              height: 40px;
            }
          }
          .card-title {
            font-size: 24px;
            line-height: 32px;
          }
          .more {
            margin-top: 24px;
          }
        }
      }
    }
  }
  .solution-slide-section {
    .solution-slide-container {
      padding-top: 40px;
      .solution-slide {
        padding-bottom: 74px;
        .solution-slide-item {
          width: 383px;
          gap: 20px;
          .item-image {
            height: 400px;
          }
          .item-body {
            gap: 16px;
            .solution-title {
              font-size: 28px;
              line-height: 36px;
              height: 72px;
            }
          }
        }
        .swiper-buttons {
          .swiper-button-prev,
          .swiper-button-next {
            width: 36px;
            height: 36px;
            &::after {
              font-size: 16px;
            }
          }
        }
      }
    }
  }
  /* //============================= */
  .about-hero {
    min-height: 0;
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
    .hero-container {
      .hero-title {
        max-width: 400px;
        font-size: 36px;
        line-height: 44px;
      }
    }
    .infinity-txt-slide {
      margin-top: 40px;
      .infinity-txt-item {
        gap: 20px;
        .infinity-txt {
          font-size: 64px;
          line-height: 84px;
        }
        .cube {
          width: 10px;
          height: 10px;
          min-width: 10px;
        }
      }
    }
  }
  .about-exhibition-stands {
    .about-exhibition-stands-container {
      padding-top: 100px;
      padding-bottom: 100px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .about-exhibition-stands-content {
        .about-exhibition-stands-title {
          font-size: 36px;
          line-height: 44px;
        }
        .description {
          margin-top: 20px;
        }
      }
      .about-exhibition-stands-image {
        max-width: 100%;
        width: 100%;
      }
    }
  }
  .about-main {
    margin-top: 40px;
    .about-main-container {
      padding-top: 40px;
      padding-bottom: 100px;
      display: flex;
      flex-direction: column;
      gap: 40px;
      .about-main-content {
        .about-main-title {
          max-width: 450px;
          font-size: 36px;
          line-height: 44px;
        }
        .description {
          margin-top: 20px;
        }
        .about-statistics {
          margin-top: 100px;
          max-width: 100%;
          .about-statistics-title {
            font-size: 42px;
            line-height: 54px;
          }
          .description {
            margin-top: 16px;
          }
          .about-statistic-items {
            grid-template-columns: repeat(2, 1fr);
            .statistic-item {
              gap: 12px;
              .item-count {
                font-size: 28px;
                line-height: 36px;
              }
              .statistic-item-title {
                max-width: 100%;
              }
            }
          }
        }
      }
      .about-main-boxes {
        max-width: 100%;
        .box-row {
          .empty-box {
            height: 180px;
          }
          .about-main-box {
            height: 180px;
            padding: 10px 20px;
            .box-title {
              font-size: 16px;
              line-height: 24px;
            }
          }
        }
      }
    }
    &::after {
      width: calc(100% - 20px - ((100% - 40px) / 4));
      top: auto;
      bottom: 50px;
      height: 40%;
    }
  }
  .about-gallery {
    margin-top: 40px;
    .gallery-slide {
      .gallery-item {
        width: 300px;
        height: 180px;
      }
      .swiper-pagination {
        max-width: 254px;
      }
    }
  }
  .sertificate {
    .sertificate-container {
      .sertificate-section-title {
        font-size: 24px;
        line-height: 32px;
      }
      .sertificate-slide {
        margin-top: 20px;
        .sertificate-item {
          padding-top: 35px;
          width: 286px;
          .sertificate-item-body {
            width: 220px;
            padding: 16px 20px;
            .sertificate-image {
              width: 140px;
              height: 140px;
            }
            .sertificate-name {
              font-size: 16px;
              line-height: 24px;
            }
          }
          .sertificate-right {
            width: 50px;
            .more {
              height: 50px;
              img {
                width: 26px;
                height: 26px;
              }
            }
          }
        }
      }
    }
  }
  .about-missions {
    padding: 60px 0 40px;
    .about-missions-container {
      .about-missions-title {
        font-size: 36px;
        line-height: 54px;
      }
      .short-description {
        margin-top: 20px;
        padding-bottom: 40px;
      }
      .mission-features {
        margin-top: 40px;
        .mission-features-items {
          gap: 40px;
          .features-item {
            .features-item-title {
              font-size: 28px;
              line-height: 36px;
            }
            .features-item-desc {
              margin-top: 16px;
            }
          }
        }
      }
    }
  }
  /* //============================= */
  .contact-hero {
    min-height: 0;
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
    .hero-container {
      .hero-title {
        max-width: 400px;
        font-size: 36px;
        line-height: 44px;
      }
    }
    .infinity-txt-slide {
      margin-top: 30px;
      .infinity-txt-item {
        gap: 20px;
        .infinity-txt {
          font-size: 64px;
          line-height: 84px;
        }
        .cube {
          width: 10px;
          height: 10px;
          min-width: 10px;
        }
      }
    }
  }
  .contact-container {
    .contact-form {
      padding: 30px 0;
      .form-items {
        grid-template-columns: repeat(1, 1fr);
      }
      .form-categories {
        margin-top: 20px;
        .form-categories-inner {
          margin-top: 10px;
          gap: 20px;
          grid-template-columns: repeat(1, 1fr);
        }
      }
      .form-message {
        margin-top: 20px;
        gap: 14px;
      }
      .submit-contact {
        margin-top: 30px;
        width: 200px;
      }
    }
    .contact-map {
      margin: 20px auto 40px;
      .contact-map-title {
        font-size: 24px;
        line-height: 36px;
      }
      .map {
        margin-top: 20px;
        height: 300px;
      }
    }
  }
}
@media only screen and (max-width: 575px) {
  .home-hero {
    .home-hero-container {
      .hero-slogan {
        max-width: 325px;
      }
      .hero-bottom-content {
        gap: 30px;
        .hero-description {
          max-width: 304px;
          p {
            font-size: 14px;
            line-height: 20px;
          }
        }
        .hero-bottom-title {
          font-size: 32px;
          line-height: 44px;
        }
      }
    }
  }
  .home-services-container {
    .home-services-head {
      .more {
        display: none;
      }
    }
    .more-mobile {
      display: block;
    }
  }
  .project-development-container {
    .project-development {
      .development-item {
        .item-content {
          .item-content-inner {
            .development-title {
              font-size: 18px;
              line-height: 28px;
            }
          }
        }
      }
    }
  }
  footer {
    .footer-container {
      .footer-main {
        flex-direction: column;
        flex-wrap: nowrap;
        .footer-logo {
          width: 124px;
          min-width: 124px;
        }
        .footer-quick-links {
          max-width: 100%;
        }
        .footer-link-section {
          max-width: 100%;
        }
        .footer-contact {
          max-width: 100%;
        }
        .footer-apply-socials {
          align-items: flex-start;
        }
      }
    }
  }
  /*==================== */
  .services-hero {
    .infinity-txt-slide {
      .infinity-txt-item {
        .infinity-txt {
          font-size: 48px;
          line-height: 64px;
        }
      }
    }
  }
  .service-slide-section {
    .service-slide-container {
      .service-slide {
        .service-slide-item {
          width: 323px;
          .item-image {
            height: 360px;
          }
        }
      }
    }
  }
  .all-services {
    margin: 0 auto 40px;
    .service-card {
      flex-direction: column;
      align-items: flex-start;
      flex: none;
      min-height: 0;
      padding: 30px 20px;
      width: 100%;
      .card-head {
        margin-bottom: 0;
        .service-title {
          font-weight: 400;
          font-size: 24px;
          line-height: 32px;
          max-width: 100%;
        }
        .icon {
          width: 44px;
          height: 44px;
          min-width: 44px;
          img {
            width: 20px;
            height: 20px;
          }
        }
      }
      .card-short-description {
        display: none;
      }
      .card-tags {
        position: initial;
        padding: 0;
        gap: 16px;
        margin-top: 40px;
        .tag-item {
          font-size: 12px;
          line-height: 16px;
          padding: 8px 10px;
          background: transparent;
        }
      }
      &:hover {
        .card-tags {
          opacity: 1;
        }
      }
    }
  }
  /*==================== */
  .service-detail {
    .service-detail-container {
      .service-detail-image {
        height: 340px;
      }
    }
  }
  /* //============================= */
  .portfolio-hero {
    .infinity-txt-slide {
      .infinity-txt-item {
        .infinity-txt {
          font-size: 48px;
          line-height: 64px;
        }
      }
    }
  }
  .portfolio-main {
    .portfolio-main-container {
      .portfolio-main-head {
        .portfolio-head-filter {
          gap: 20px;
          grid-template-columns: repeat(1, 1fr);
        }
      }
      .portfolio-cards {
        grid-template-columns: repeat(1, 1fr);
        .portfolio-card {
          padding: 20px;
          height: auto;
          .card-image {
            height: 364px;
          }
          &:hover {
            .card-image {
              height: 364px;
            }
          }
        }
      }
    }
  }
  /* //============================= */
  .portfolio-detail-main {
    .detail-main-banner {
      height: 300px;
      .banner-info {
        width: 100%;
      }
    }
  }
  /* //============================= */
  .service-detail-hero {
    .hero-container {
      .hero-title {
        max-width: 100%;
        font-size: 40px;
        line-height: 60px;
      }
    }
  }
  /* //============================= */
  .portfolio-detail-hero {
    .hero-container {
      .hero-title {
        max-width: 100%;
        font-size: 40px;
        line-height: 60px;
      }
    }
  }
  /* //============================= */
  .solution-detail-hero {
    .hero-container {
      .hero-title {
        max-width: 100%;
        font-size: 40px;
        line-height: 60px;
      }
    }
  }
  .solution-detail {
    .solution-detail-container {
      .service-detail-image {
        height: 340px;
      }
    }
  }
  .solution-slide-section {
    .solution-slide-container {
      .solution-slide {
        .solution-slide-item {
          width: 323px;
          .item-image {
            height: 360px;
          }
        }
      }
    }
  }
  /* //============================= */
  .about-hero {
    .infinity-txt-slide {
      .infinity-txt-item {
        .infinity-txt {
          font-size: 48px;
          line-height: 64px;
        }
      }
    }
  }
  .about-main {
    .about-main-container {
      .about-main-content {
        .about-statistics {
          .about-statistic-items {
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
          }
        }
      }
    }
  }
  /* //============================= */
  .contact-hero {
    .infinity-txt-slide {
      .infinity-txt-item {
        .infinity-txt {
          font-size: 48px;
          line-height: 64px;
        }
      }
    }
  }
}
