@import "variables";

@tailwind base;
@tailwind components;
@tailwind utilities;

.flex-center {
  @apply flex justify-center items-center;
}

.flex-start {
  @apply flex justify-start items-start;
}

.flex-end {
  @apply flex justify-end items-center;
}

.flex-between {
  @apply flex justify-between items-center;
}

body {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  font-size: $custom-font-size-base;
  color: $text-color;
}

p {
  white-space: pre-wrap;
}

ul {
  li {
    // list-style-type: square;
  }
}

::-moz-selection {
  /* Code for Firefox */
  color: $gardient-color-3;
  background: rgba($custom-secondary-color, 0.3);
}

::selection {
  color: $gardient-color-3;
  background: rgba($custom-secondary-color, 0.3);
}

/* Change the scrollbar width, color, and background */
::-webkit-scrollbar {
  width: 8px; /* Width of the entire scrollbar */
}

/* Change the background of the scrollbar track */
::-webkit-scrollbar-track {
  background: $custom-primary-color; /* Color of the track */
}

/* Change the color and appearance of the scrollbar thumb */
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, $scale);
}

div:where(.swal2-icon).swal2-success .swal2-success-ring {
  border: 0.25em solid rgba($gardient-color-1, 0.5) !important;
}

div:where(.swal2-icon).swal2-success [class^="swal2-success-line"] {
  background: linear-gradient(to right, $scale-btn) !important;
}

div:where(.swal2-icon).swal2-success {
  border-color: $gardient-color-1 !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  background: linear-gradient(to right, $scale-btn) !important;
  border-radius: 0 !important;
  &:focus {
    outline: 0 !important;
    box-shadow: none !important;
  }
}

div:where(.swal2-container).swal2-center > .swal2-popup {
  border-radius: 0;
}

div:where(.swal2-container) h2:where(.swal2-title) {
  color: black !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

.light-blue {
  color: $gardient-color-2;
}
.blue {
  color: $gardient-color-1;
}
.salmon {
  color: $gardient-color-4;
}
.pink {
  color: $gardient-color-3;
}

.sep {
  height: 50px;
}

.sep-inner {
  height: 30px;
}

.sep-small-inner {
  height: 10px;
}

.ReactModal__Content {
  padding: 0 !important;
  top: calc(50% + 40px) !important;
  transform: translateY(-50%) !important;
  height: 80% !important;
  div {
    height: 100%;
  }
}

.height-100 {
  height: 100%;
}

.z-index-1 {
  position: relative;
  z-index: 1;
}

.field-error {
  font-size: 13px;
  font-weight: $font-weight-bold;
  color: $custom-danger-color;
  padding-top: 10px;
  padding-bottom: 10px;
}

.text-center {
  text-align: center;
}

.input-block {
  #file_label {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    background-color: #d9d9d9;
    color: $custom-secondary-color;
    padding: 10px;
    @media (max-width: 435px) {
      font-size: 13px;
    }
    @media (max-width: 364px) {
      font-size: 11px;
    }
  }
}

#file {
  display: none;
}

.selected-file {
  font-size: 12px;
  color: $custom-secondary-color !important;
  margin: 0;
}

.button-submit {
  width: 120px;
  height: 50px;
  position: relative;

  &.disabled {
    pointer-events: none;
  }

  &:hover {
    &::before {
      width: 100%;
    }
  }
  &::before {
    content: "";
    z-index: 0;
    height: 100%;
    width: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, $scale-btn-hover);
  }
  background: linear-gradient(to right, $scale-btn);
  .button-text {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: $custom-primary-color;
    font-weight: $font-weight-bold;
    text-transform: uppercase;
    font-size: 15px;
    white-space: nowrap;
  }
}

.button-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 50px;
  position: relative;

  &.disabled {
    pointer-events: none;
  }

  &:hover {
    &::before {
      width: 100%;
    }
  }
  &::before {
    content: "";
    z-index: 0;
    height: 100%;
    width: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: $custom-primary-color;
    transition: 0.3s all ease-in-out;
  }
  background: linear-gradient(to right, $scale);
  .button-text {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: $custom-primary-color;
    font-weight: $font-weight-bold;
    text-transform: uppercase;
    font-size: 15px;
    white-space: nowrap;
  }
}

.section-header {
  display: block;
  width: fit-content;
  font-size: 25px;
  font-weight: $font-weight-bolder;
  color: $custom-primary-color;
  position: relative;
  padding: 7px 25px;
  text-transform: uppercase;
  @media (max-width: 445px) {
    font-size: 20px;
  }

  &.gradient {
    &:before {
      background: transparent !important;
      border: 2px solid $gardient-color-3;
    }

    .z-index-1 {
      background-image: linear-gradient(to right, $scale);
      background-size: 100%;
      background-repeat: no-repeat;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      -moz-background-clip: text;
      -moz-text-fill-color: transparent;
    }
  }

  &.gradient-text {
    &:before {
      display: none;
    }
    .z-index-1 {
      background-image: linear-gradient(to right, $scale);
      background-size: 100%;
      background-repeat: no-repeat;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      -moz-background-clip: text;
      -moz-text-fill-color: transparent;
    }
  }

  &.gradient-extra {
    margin-top: 20px;
    &:before {
      background: transparent !important;
      border-top: 2px solid $gardient-color-3;
      top: -19px;
      width: 200%;
      height: 0;
    }

    .z-index-1 {
      background-image: linear-gradient(to right, $scale);
      background-size: 100%;
      background-repeat: no-repeat;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      -moz-background-clip: text;
      -moz-text-fill-color: transparent;
    }
  }

  &.white {
    &:before {
      background: white !important;
    }

    .z-index-1 {
      background-image: linear-gradient(to right, $scale);
      background-size: 100%;
      background-repeat: no-repeat;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      -moz-background-clip: text;
      -moz-text-fill-color: transparent;
    }
  }

  &.white-extra {
    &::before {
      background: transparent !important;
      border: 2px solid $custom-primary-color;
    }
  }

  &:before {
    content: "";
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) skewX(-20deg) scale(1);
    position: absolute;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(to right, $scale);
    z-index: 0;
  }
}

.content-fluid {
  padding-right: 25px;
  padding-left: 25px;
  width: 100%;
  max-width: 1600px;
  margin: auto;
  overflow-x: hidden;
}

.content-inner-fluid {
  padding-right: 25px;
  padding-left: 25px;
  width: 100%;
  max-width: 1600px;
  margin: auto;
  overflow-x: hidden;
}

@media (min-width: 576px) {
  .content-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
  .content-inner-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media (min-width: 768px) {
  .content-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
  .content-inner-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media (min-width: 992px) {
  .content-fluid {
    padding-right: 45px;
    padding-left: 45px;
  }
  .content-inner-fluid {
    padding-right: 35px;
    padding-left: 35px;
  }
}

@media (min-width: 1300px) {
  .content-fluid {
    padding-right: 100px !important;
    padding-left: 100px !important;
  }
  .content-inner-fluid {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
}

.services-big-word-momentus-wrapper {
  width: 100%;
  height: 229px;
  position: relative;
  transform: translateY(25%);
  @media (max-width: 764px) {
    display: none;
  }
  .services-big-word-momentus {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

// Navbar
.nav-bar {
  padding-top: 10px;
  padding-bottom: 10px;

  .content-fluid {
    overflow: unset !important;
  }

  &.sticky-nav {
    position: sticky;
    background: linear-gradient(to right, $scale);
    z-index: 100;
    .nav-link-logo {
      aspect-ratio: 4/1;
    }
  }
  &.fixed-nav {
    position: fixed;
    background-color: transparent;
    z-index: 100;
    &.scrolled {
      &::before {
        transform: translateY(0);
      }
      .nav-link-logo {
        aspect-ratio: 4/1;
      }
    }
    &::before {
      position: absolute;
      z-index: 10;
      content: "";
      width: 100%;
      height: 100%;
      inset: 0;
      background: linear-gradient(to right, $scale);
      transition: transform ease-in-out 0.3s;
      transform: translateY(-100%);
    }
  }
  top: 0;
  width: 100%;
  z-index: 10;

  .nav-link-logo {
    display: block;
    width: 250px;
    aspect-ratio: 3/1;
    position: relative;
    transition: all ease-in-out 0.3s;
    z-index: 11;
    @media (max-width: 425px) {
      width: 150px;
    }

    &:hover {
      transform: skewX(-20deg);
      // .logo-svg {
      //   .logo-letter-1 {
      //     fill: $gardient-color-1;
      //     transition-delay: 0;
      //   }
      //   .logo-letter-2 {
      //     fill: $gardient-color-1;
      //     transition-delay: 0.1s;
      //   }
      //   .logo-letter-3 {
      //     fill: $gardient-color-2;
      //     transition-delay: 0.2s;
      //   }
      //   .logo-letter-4 {
      //     fill: $gardient-color-2;
      //     transition-delay: 0.3s;
      //   }
      //   .logo-letter-5 {
      //     fill: $gardient-color-3;
      //     transition-delay: 0.2s;
      //   }
      //   .logo-letter-6 {
      //     fill: $gardient-color-3;
      //     transition-delay: 0.15s;
      //   }
      //   .logo-letter-7 {
      //     fill: $gardient-color-4;
      //     transition-delay: 0.1s;
      //   }
      //   .logo-letter-8 {
      //     fill: $gardient-color-4;
      //     transition-delay: 0s;
      //   }
      // }
    }
    .logo-svg {
      width: 100% !important;
      height: 100% !important;
      // .logo-letter-1 {
      //   fill: $custom-primary-color;
      //   transition: all 0.2s ease-in-out;
      // }
      // .logo-letter-2 {
      //   fill: $custom-primary-color;
      //   transition: all 0.2s ease-in-out;
      // }
      // .logo-letter-3 {
      //   fill: $custom-primary-color;
      //   transition: all 0.2s ease-in-out;
      // }
      // .logo-letter-4 {
      //   fill: $custom-primary-color;
      //   transition: all 0.2s ease-in-out;
      // }
      // .logo-letter-5 {
      //   fill: $custom-primary-color;
      //   transition: all 0.2s ease-in-out;
      // }
      // .logo-letter-6 {
      //   fill: $custom-primary-color;
      //   transition: all 0.2s ease-in-out;
      // }
      // .logo-letter-7 {
      //   fill: $custom-primary-color;
      //   transition: all 0.3s ease-in-out;
      // }
    }
  }

  .nav-links {
    position: relative;
    z-index: 11;
    .nav-link {
      display: block;
      width: fit-content;
      margin-left: 35px;
      font-size: 20px;
      font-weight: $font-weight-bold;
      color: $custom-primary-color;
      position: relative;
      background-size: 0;
      padding: 3px 16px;

      &.nav-drop-down {
        cursor: pointer;
        &:hover {
          .drop-down {
            opacity: 1;
            visibility: visible;
          }
        }
        .drop-down {
          position: absolute;
          left: -11.1%;
          top: 104%;
          background-color: $custom-primary-color;
          min-width: 100%;
          opacity: 0;
          transition: all ease-in-out 0.3s;
          visibility: hidden;

          .nav-drop-link {
            display: block;
            padding: 3px 10px;
            position: relative;

            .text {
              position: relative;
              z-index: 1;
              text-wrap: nowrap;
              white-space: nowrap;
              transition: all ease-in-out 0.3s;
              font-size: 16px;

              background-image: linear-gradient(to right, $scale);
              background-size: 100%;
              background-repeat: no-repeat;
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              -moz-background-clip: text;
              -moz-text-fill-color: transparent;
            }

            &::before {
              content: "";
              position: absolute;
              inset: 0;
              width: 100%;
              height: 100%;
              background: linear-gradient(to right, $scale);
              opacity: 0;
              transition: all ease-in-out 0.3s;
              z-index: 0;
            }
            &:hover {
              .text {
                color: $custom-primary-color;
                background-size: 0;
                background-image: none;

                -webkit-background-clip: text;
                -webkit-text-fill-color: currentColor;
                -moz-background-clip: text;
                -moz-text-fill-color: currentColor;
              }
              &::before {
                opacity: 1;
              }
            }
          }
        }
      }

      &:before {
        content: "";
        width: 100%;
        height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) skewX(0) scale(1);
        position: absolute;
        opacity: 0;
        transition: all 0.3s ease-in-out;
        background: $custom-primary-color;
        z-index: -1;
      }

      &:hover {
        &:before {
          opacity: 1;
          transform: translate(-50%, -50%) skewX(-20deg) scale(1.1);
        }
        transition: all 0.6s ease-in-out;
        background-image: linear-gradient(to right, $scale);
        background-size: 100%;

        background-repeat: no-repeat;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -moz-background-clip: text;
        -moz-text-fill-color: transparent;
      }

      &.active {
        &:before {
          opacity: 1;
          transform: translate(-50%, -50%) skewX(-20deg) scale(1.1);
        }
        transition: all 0.6s ease-in-out;
        background-image: linear-gradient(to right, $scale);
        background-size: 100%;

        background-repeat: no-repeat;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -moz-background-clip: text;
        -moz-text-fill-color: transparent;
      }
    }
  }

  .burger-menu {
    width: 34px;
    height: 24px;
    position: relative;
    transition: 0.2s all ease-in-out;
    cursor: pointer;
    z-index: 11;

    &.active {
      height: 8px;
      transition-delay: 0.6s;

      .line-1 {
        transition-delay: 0.9s;
        transform: translate(0, 4px) rotate(45deg);
        &::before {
          transition-delay: 0s;
          width: 100%;
        }
      }
      .line-2 {
        transition-delay: 0.7s;
        transform: translateX(-100%);
        opacity: 0;
        &::before {
          transition-delay: 0.2s;
          width: 100%;
        }
      }
      .line-3 {
        transition-delay: 0.7s;
        transform: translateX(100%);
        opacity: 0;
        &::before {
          transition-delay: 0.4s;
          width: 100%;
        }
      }
      .line-4 {
        transition-delay: 0.9s;
        transform: translate(0, -4px) rotate(-45deg);
        &::before {
          transition-delay: 0.5s;
          width: 100%;
        }
      }
    }

    .line-1 {
      position: absolute;
      top: 0;
      width: 100%;
      height: 2px;
      background-color: $custom-primary-color;
      transition: 0.2s all ease-in-out;
      transform: translate(0, 0) rotate(0);
      transform-origin: 50% 50%;
      overflow: hidden;
      &::before {
        content: "";
        position: absolute;
        width: 0;
        height: 100%;
        right: 0;
        transition: 0.3s all ease-in-out;
        background: $gardient-color-1;
      }
    }
    .line-2 {
      position: absolute;
      top: 33.33%;
      width: 100%;
      height: 2px;
      background-color: $custom-primary-color;
      transition: 0.2s all ease-in-out;
      transform: translate(0, 0) rotate(0);
      transform-origin: 50% 50%;
      overflow: hidden;
      &::before {
        content: "";
        position: absolute;
        width: 0;
        height: 100%;
        left: 0;
        transition: 0.3s all ease-in-out;
        background: $gardient-color-2;
      }
    }
    .line-3 {
      position: absolute;
      top: 66.67%;
      width: 100%;
      height: 2px;
      background-color: $custom-primary-color;
      transition: 0.2s all ease-in-out;
      transform: translate(0, 0) rotate(0);
      transform-origin: 50% 50%;
      overflow: hidden;
      &::before {
        content: "";
        position: absolute;
        width: 0;
        height: 100%;
        right: 0;
        transition: 0.3s all ease-in-out;
        background: $gardient-color-4;
      }
    }
    .line-4 {
      position: absolute;
      top: 100%;
      width: 100%;
      height: 2px;
      background-color: $custom-primary-color;
      transition: 0.2s all ease-in-out;
      transform: translate(0, 0) rotate(0);
      transform-origin: 50% 50%;
      overflow: hidden;
      &::before {
        content: "";
        position: absolute;
        width: 0;
        height: 100%;
        left: 0;
        transition: 0.3s all ease-in-out;
        background: $gardient-color-3;
      }
    }
  }
}

.mobile-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 57.5px;
  transition: 0.5s all ease-in-out;
  z-index: 9;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  // mix-blend-mode: multiply;

  visibility: hidden;
  opacity: 0;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, $scale);
    background-size: 400% 400%;
    animation: gradient 10s linear infinite;
    z-index: -1;
    filter: brightness(0.5) opacity(0.5) contrast(1.5);
  }

  &.active {
    visibility: visible;
    opacity: 1;
    .mobile-nav-links {
      .mobile-nav-link {
        opacity: 1;
      }
    }
  }
  .mobile-nav-links {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all ease-in-out 0.3s;

    .mobile-nav-link {
      opacity: 0;
      transition: 0.3s all ease-in-out;
      color: $custom-primary-color;
      display: block;
      width: fit-content;
      font-size: 24px;
      font-weight: $font-weight-bold;
      position: relative;
      transform: skewX(-15deg);

      &.more-links {
        transform: skewX(0deg);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        &.active-more-links {
          .more-link-text {
            &::after {
              opacity: 0;
            }
          }
          .sub-links {
            height: 100%;
            opacity: 1;
            .sub-link {
              transition-delay: 0.4s;
              opacity: 1;
            }
          }
        }

        .more-link-text {
          position: relative;
          width: fit-content;
          transform: skewX(-15deg);

          &::before {
            content: "";
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translate(50%, -50%);
            width: 10px;
            height: 2px;
            background: $custom-primary-color;
          }
          &::after {
            content: "";
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translate(50%, -50%);
            width: 2px;
            height: 10px;
            background: $custom-primary-color;
            opacity: 1;
            transition: all ease-in-out 0.3s;
          }
        }

        .sub-links {
          position: relative;
          z-index: 1;
          display: flex;
          flex-direction: column;
          align-items: center;
          width: fit-content;
          height: 0;
          opacity: 0;
          transition: all ease-in-out 0.3s;
          .sub-link {
            font-size: 15px;
            margin-bottom: 7px;
            margin-top: 7px;
            opacity: 0;
          }
        }
      }
    }
  }
}
// end of navbar

// footer

.footer-bar {
  background: linear-gradient(to right, $scale);
  position: relative;
  overflow: hidden;
  color: $custom-primary-color;
  .contact-detail {
    display: flex;
    align-items: center;
    width: fit-content;
    font-size: 15px;
  }
  a.contact-detail {
    transition: all ease-in-out 0.3s;
    svg {
      path {
        transition: all ease-in-out 0.3s;
        fill: white;
      }
    }
    &:hover {
      color: $gardient-color-4;
      svg {
        path {
          fill: $gardient-color-4;
        }
      }
    }
  }

  .social-media {
    .title {
      font-size: 25px;
      font-weight: $font-weight-bold;
      text-transform: capitalize;
    }
    .social-platform {
      display: block;
      width: fit-content;
      padding: 10px 10px;
      transition: all ease-in-out 0.3s;
      position: relative;
      &:hover {
        &:before {
          transform: translate(-50%, -50%) skewX(0) scale(1);
        }
      }

      &:before {
        content: "";
        width: 100%;
        height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) skewX(-20deg) scale(1);
        position: absolute;
        transition: all 0.3s ease-in-out;
        background: white;
        z-index: 0;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        transition: all ease-in-out 0.3s;
      }
    }
  }

  .footer-reserved {
    width: fit-content;
    display: flex;
    justify-content: center;
    color: $custom-primary-color;
    font-size: 18px;
    font-weight: $font-weight-bold;
    border-top: 2px solid white;
    padding-top: 10px;
  }
}

.footer-desing-dev {
  color: $gardient-color-3;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  a {
    transition: all ease-in-out 0.3s;
    &:hover {
      color: $gardient-color-2;
    }
  }
}

// end of footer

// home page
.home-banner {
  width: 100%;
  height: 100vh;
  position: relative;
  .momentus-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .momentus-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, $scale);
    background-size: 400% 400%;
    animation: gradient 10s linear infinite;
    mix-blend-mode: multiply;
    z-index: 1;
  }

  .momentus-content-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    .momentus-title {
      color: $custom-primary-color;
      font-weight: $font-weight-bolder;
      font-size: 80px;
      text-align: center;
      text-wrap: nowrap;
      white-space: nowrap;
      @media (max-width: 958px) {
        font-size: 50px;
      }
      @media (max-width: 573px) {
        font-size: 25px;
      }
      .second-line {
        display: block;
      }
    }
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
}

.home-about-box-wrapper {
  min-height: 500px;
  position: relative;

  @media (max-width: 486px) {
    min-height: 400px;
  }

  @media (max-width: 1273px) {
    display: flex;
    justify-content: center;
  }

  .home-about-box-content {
    position: absolute;
    width: 100%;
    margin-top: 25%;
    z-index: 3;
    @media (max-width: 1273px) {
      margin-top: 90px;
      width: 30%;
    }
    @media (max-width: 891px) {
      width: 40%;
    }
    @media (max-width: 776px) {
      width: 55%;
    }
    @media (max-width: 586px) {
      width: 65%;
    }
    @media (max-width: 497px) {
      margin-top: 100px;
      width: 90%;
    }
    .text {
      font-size: 15px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 9;
      line-clamp: 9;
      -webkit-box-orient: vertical;
      @media (max-width: 497px) {
        font-size: 12px;
      }
    }
    .home-about-box-header {
      border-bottom: 2px solid $gardient-color-1;
      padding-bottom: 15px;
      .title {
        font-size: 30px;
        font-weight: $font-weight-bolder;
        color: $gardient-color-3;
        text-transform: uppercase;
      }
    }
  }

  .about-gradient-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .about-grey-shape {
    position: absolute;
    right: -15px;
    top: -10px;
    width: 100%;
    height: 100%;
    z-index: 2;
    @media (max-width: 586px) {
      right: 0;
      top: 0;
    }
    g {
      path {
        stroke-width: 1;
        stroke: $gardient-color-3;
      }
    }
  }
}

.home-services-section {
  background: linear-gradient(to right, $scale);
  position: relative;
  overflow: hidden;
}

.projects-carousel-section {
  position: relative;

  .projects-carousel-button-prev {
    position: absolute;
    left: 20px;
    top: 49%;
    z-index: 2;
    transform: translateY(-50%);
    @media (max-width: 1299px) {
      width: 34px;
      height: 24px;
      left: 5px;
      svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
      }
    }
    @media (max-width: 991px) {
      // width: 24px;
      // height: 14px;
      left: 2px;
    }
    cursor: pointer;
    &:hover {
      svg {
        .first-arrow-1 {
          transition-delay: 0;
          fill: #016db4;
        }
        .first-arrow-2 {
          transition-delay: 0.1s;
          fill: #00a1ba;
        }
        .first-arrow-3 {
          transition-delay: 0.2s;
          fill: #cc4195;
        }
        .first-arrow-4 {
          transition-delay: 0.3s;
          fill: #f28276;
        }
      }
    }
    svg {
      .first-arrow-1 {
        transition: all ease-in-out 0.3s;
        fill: #f28276;
      }
      .first-arrow-2 {
        transition: all ease-in-out 0.3s;
        fill: #cc4195;
      }
      .first-arrow-3 {
        transition: all ease-in-out 0.3s;
        fill: #00a1ba;
      }
      .first-arrow-4 {
        transition: all ease-in-out 0.3s;
        fill: #016db4;
      }
    }
  }

  .projects-carousel-button-next {
    position: absolute;
    right: 20px;
    top: 49%;
    z-index: 2;
    transform: translateY(-50%);
    cursor: pointer;

    @media (max-width: 1299px) {
      width: 34px;
      height: 24px;
      right: 5px;
      svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
      }
    }
    @media (max-width: 991px) {
      // width: 24px;
      // height: 14px;
      right: 2px;
    }
    &:hover {
      svg {
        .first-arrow-1 {
          transition-delay: 0;
          fill: #016db4;
        }
        .first-arrow-2 {
          transition-delay: 0.1s;
          fill: #00a1ba;
        }
        .first-arrow-3 {
          transition-delay: 0.2s;
          fill: #cc4195;
        }
        .first-arrow-4 {
          transition-delay: 0.3s;
          fill: #f28276;
        }
      }
    }
    svg {
      .first-arrow-1 {
        transition: all ease-in-out 0.3s;
        fill: #f28276;
      }
      .first-arrow-2 {
        transition: all ease-in-out 0.3s;
        fill: #cc4195;
      }
      .first-arrow-3 {
        transition: all ease-in-out 0.3s;
        fill: #00a1ba;
      }
      .first-arrow-4 {
        transition: all ease-in-out 0.3s;
        fill: #016db4;
      }
    }
  }

  .projects-carousel {
    max-width: 100%;
    overflow: hidden;

    .swiper-wrapper {
      padding-bottom: 20px;

      .project-wrapper {
        width: 100%;
        aspect-ratio: 1.8/2;
        position: relative;
        .project-image {
          filter: brightness(1);
          transition: all ease-in-out 0.3s;
        }
        &:hover {
          .project-image {
            filter: brightness(0.5);
          }
          .project-content {
            top: 50%;
            &.light-blue {
              border: 2px solid $gardient-color-2;
            }
            &.blue {
              border: 2px solid $gardient-color-1;
            }
            &.salmon {
              border: 2px solid $gardient-color-4;
            }
            &.pink {
              border: 2px solid $gardient-color-3;
            }
            &::before {
              transform: translate(-50%, -50%) skewX(0) scale(1);
            }
          }
        }

        .project-content {
          font-size: 15px;
          position: absolute;
          top: 100%;
          left: 50%;
          transform: translate(-50%, -50%);
          display: block;
          width: fit-content;
          padding: 7px 25px;
          text-transform: uppercase;
          text-wrap: nowrap;
          white-space: nowrap;
          transition: all ease-in-out 0.3s;

          &:before {
            content: "";
            width: 100%;
            height: 100%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) skewX(-20deg) scale(1);
            position: absolute;
            transition: all 0.3s ease-in-out;
            background: white;
            z-index: 0;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
            transition: all ease-in-out 0.3s;
          }

          &.light-blue {
            color: $gardient-color-2;
            border: 2px solid transparent;
          }
          &.blue {
            color: $gardient-color-1;
            border: 2px solid transparent;
          }
          &.salmon {
            color: $gardient-color-4;
            border: 2px solid transparent;
          }
          &.pink {
            color: $gardient-color-3;
            border: 2px solid transparent;
          }
        }
      }
    }
  }
}

// end of home page

// services
.services-box-wrapper {
  min-height: 280px;
  position: relative;
  display: block;

  &:hover {
    .services-box {
      .service-image {
        transform: skewX(15deg) scale(1.1);
      }
      .service-title {
        transform: translate(-50%, -50%) skewX(0);
      }
      .overlay {
        filter: brightness(1.5);
      }
    }
  }

  .services-box {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transform: skewX(-15deg);
    transition: all ease-in-out 0.3s;
    overflow: hidden;
    @media (max-width: 1022px) {
      transform: skewX(-5deg);
    }
    @media (max-width: 601px) {
      transform: skewX(0deg);
    }

    .service-title {
      font-weight: $font-weight-bolder;
      line-height: 1.2;
      font-size: 30px;
      color: white;
      text-align: center;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) skewX(15deg);
      transition: all ease-in-out 0.3s;
      z-index: 2;
      text-transform: uppercase;
      @media (max-width: 1022px) {
        transform: translate(-50%, -50%) skewX(-5deg);
      }
      @media (max-width: 601px) {
        transform: translate(-50%, -50%) skewX(-15deg);
      }
    }

    .overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      mix-blend-mode: multiply;
      z-index: 1;
      opacity: 0.6;
      filter: brightness(1);
      transition: all ease-in-out 0.3s;

      &.light-blue {
        background-color: $gardient-color-2;
      }
      &.blue {
        background-color: $gardient-color-1;
      }
      &.salmon {
        background-color: $gardient-color-4;
      }
      &.pink {
        background-color: $gardient-color-3;
      }
    }

    .service-image {
      object-fit: cover;
      transform: skewX(15deg) scale(1);
      min-width: 112% !important;
      margin-left: -6% !important;
      transition: all ease-in-out 0.3s;
    }
  }
}
// end of services

// service page
.service-index-banner-wrapper {
  width: 100%;
  aspect-ratio: 2.5/1;
  position: relative;

  .overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    z-index: 1;
    opacity: 0.6;
    filter: brightness(1);
    transition: all ease-in-out 0.3s;

    &.light-blue {
      background-color: $gardient-color-2;
    }
    &.blue {
      background-color: $gardient-color-1;
    }
    &.salmon {
      background-color: $gardient-color-4;
    }
    &.pink {
      background-color: $gardient-color-3;
    }
  }
}
// end of service page

// projects page
.project-wrapper-two {
  width: 100%;
  aspect-ratio: 1.6/1;
  position: relative;
  overflow: hidden;

  &:hover {
    .project-content-two {
      .title {
        transform: skewX(-20deg);
      }
      .discover {
        &::before {
          transform: translate(-50%, -50%) skewX(0);
        }
      }
    }
    .project-overlay-two {
      opacity: 0;
    }
  }

  .project-image-two {
    z-index: 1;
  }
  .project-content-two {
    position: absolute;
    left: 0;
    top: 80%;
    transform: translateY(-50%);
    z-index: 3;
    transition: all ease-in-out 0.3s;
    .title {
      color: $custom-primary-color;
      font-weight: $font-weight-bold;
      font-size: 20px;
      margin-left: 25px;
      margin-bottom: 10px;
      transform: skewX(0);
      transition: all ease-in-out 0.3s;
    }
    .discover {
      font-size: 20px;
      position: relative;
      width: fit-content;
      padding-top: 8px;
      padding-bottom: 8px;
      padding-left: 25px;
      padding-right: 30px;
      z-index: 1;
      transition: all ease-in-out 0.3s;
      &::before {
        content: "";
        position: absolute;
        left: 43%;
        top: 50%;
        width: 100%;
        height: 100%;
        background-color: $custom-primary-color;
        transform: translate(-50%, -50%) skewX(-20deg);
        z-index: -1;
        transition: all ease-in-out 0.3s;
      }
    }
  }
  .project-overlay-two {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, $scale);
    mix-blend-mode: multiply;
    opacity: 1;
    transition: all ease-in-out 0.3s;
  }
}
// end of projects page

// project page
.project-header-wrapper {
  background: linear-gradient(to right, $scale);
  .project-header-left-wrapper {
    .category-title {
      font-size: 18px;
      font-style: italic;
      color: $custom-primary-color;
    }
    .project-header-image-wrapper {
      width: 100%;
      aspect-ratio: 1/1.5;
      position: relative;
      overflow: hidden;
    }
  }
  .project-header-right-wrapper {
    margin-top: 37px;
    position: relative;
    @media (max-width: 1023px) {
      margin-top: 0;
    }
    @media (max-width: 764px) {
      margin-bottom: 30px;
    }

    .title {
      padding: 8px 30px;
      position: absolute;
      left: -15%;
      width: fit-content;
      @media (max-width: 1023px) {
        position: relative;
        left: unset;
      }
      &::before {
        content: "";
        width: 100%;
        height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) skewX(-20deg);
        position: absolute;
        background-color: $custom-primary-color;
        box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
      }
      &.z-index-1 {
        position: relative;
        z-index: 1;
        color: $gardient-color-1;
        font-weight: $font-weight-bold;
        font-size: 20px;
        &.light-blue {
          color: $gardient-color-2;
        }
        &.blue {
          color: $gardient-color-1;
        }
        &.salmon {
          color: $gardient-color-4;
        }
        &.pink {
          color: $gardient-color-3;
        }
      }
    }
    .text {
      color: $custom-primary-color;
      font-size: 18px;
      margin-top: 50px;
      @media (max-width: 1023px) {
        margin-top: 0;
      }
    }
  }
}

.project-image-gallery-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;

  .overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
}

.project-video-gallery-wrapper {
  width: 100%;
  aspect-ratio: 2/1;
  position: relative;
  overflow: hidden;
  display: block;
  .overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
}

.zoom-pos {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}

.play-pos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.other-project-wrapper {
  overflow: hidden;
  padding-bottom: 20px;
  .project-wrapper {
    width: 100%;
    aspect-ratio: 1/1.2;
    position: relative;
    display: block;

    .project-image {
      filter: brightness(1);
      transition: all ease-in-out 0.3s;
    }
    &:hover {
      .project-image {
        filter: brightness(0.5);
      }
      .project-content {
        top: 50%;
        &.light-blue {
          border: 2px solid $gardient-color-2;
        }
        &.blue {
          border: 2px solid $gardient-color-1;
        }
        &.salmon {
          border: 2px solid $gardient-color-4;
        }
        &.pink {
          border: 2px solid $gardient-color-3;
        }
        &::before {
          transform: translate(-50%, -50%) skewX(0) scale(1);
        }
      }
    }

    .project-content {
      font-size: 15px;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: block;
      width: fit-content;
      padding: 7px 25px;
      text-transform: uppercase;
      text-wrap: nowrap;
      white-space: nowrap;
      transition: all ease-in-out 0.3s;

      &:before {
        content: "";
        width: 100%;
        height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) skewX(-20deg) scale(1);
        position: absolute;
        transition: all 0.3s ease-in-out;
        background: white;
        z-index: 0;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        transition: all ease-in-out 0.3s;
      }

      &.light-blue {
        color: $gardient-color-2;
        border: 2px solid transparent;
      }
      &.blue {
        color: $gardient-color-1;
        border: 2px solid transparent;
      }
      &.salmon {
        color: $gardient-color-4;
        border: 2px solid transparent;
      }
      &.pink {
        color: $gardient-color-3;
        border: 2px solid transparent;
      }
    }
  }
}

// end of project page

// contact page
.contact-header {
  background: linear-gradient(to right, $scale);
  .contact-text {
    color: $custom-primary-color;
    font-size: 25px;
    text-align: center;
    @media (max-width: 445px) {
      font-size: 17px;
    }
  }
}

.contact-form-wrapper {
  padding: 40px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

  .input-block {
    position: relative;
    width: 100%;
    height: 50px;
    input {
      display: block;
      width: 100%;
      height: 100%;
      border: 1px solid $gardient-color-3;
      background-color: transparent;
      color: $gardient-color-1;
      padding-left: 10px;

      &::placeholder {
        color: $gardient-color-1;
      }

      &:focus {
        outline: 0;
        &::placeholder {
          opacity: 0.5;
        }
      }
    }
    &.textarea {
      height: 100px;
    }
    textarea {
      display: block;
      width: 100%;
      height: 100%;
      border: 1px solid $gardient-color-3;
      background-color: transparent;
      padding-top: 10px;
      color: $gardient-color-1;
      padding-left: 10px;

      &::placeholder {
        color: $gardient-color-1;
      }

      &:focus {
        outline: 0;
        &::placeholder {
          opacity: 0.5;
        }
      }
    }
  }
}

// end of contact page
