/* //////////////////////////////////////////////////////// */
/* HEADER */
/* //////////////////////////////////////////////////////// */

.main-header-container {
  background-color: var(--color-white);
  margin-bottom: 4px;
  box-shadow: 0px 2px 4px rgba(180, 180, 180, 0.25);
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 70px;
}

.logo {
  height: 46px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;

  & li {
    position: relative;
  }
}

.nav-link,
.dropdown-btn {
  display: inline-block;
  text-decoration: none;
  color: var(--text-black);
  border-bottom: 2px solid transparent;
  -webkit-text-stroke: 1px var(--text-black);
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-btn {
  display: flex;
  gap: 2px;
  align-items: baseline;
}

.nav-link.active,
.nav-link:hover,
.dropdown-btn.active,
.dropdown-btn:hover {
  color: var(--color-primary);
  -webkit-text-stroke: 1px var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.dropdown-menu {
  position: absolute;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  top: 140%;
  right: 0;
  background: var(--color-white);
  z-index: 99;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 12px;

  & li {
    padding: 12px 12px 0px 12px;
    white-space: nowrap;
    list-style: none;

    &:last-child {
      padding-bottom: 12px;
    }
  }
}

.dropdown .dropdown-menu {
  display: none;
}

.dropdown.open .dropdown-menu {
  display: grid;
}


/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: var(--text-black);
  border-radius: 2px;
  transform-origin: center;
}

/* Transform to X when nav is open */
nav.open+.hamburger span:nth-child(1) {
  transition: all 0.3s ease;
  transform: rotate(45deg) translate(5px, 5px);
}

nav.open+.hamburger span:nth-child(2) {
  opacity: 0;
}

nav.open+.hamburger span:nth-child(3) {
  transition: all 0.3s ease;
  transform: rotate(-45deg) translate(5px, -5px);
}

/* //////////////////////////////////////////////////////// */
/* HERO SECTION */
/* //////////////////////////////////////////////////////// */
.swiper {
  height: calc(100vh - 82px);
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.swiper-slide .slide-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(100%);
}

.swiper-pagination-bullet-active {
  background-color: var(--color-primary) !important;
}

.hero-section {
  padding: 35px 46px 56px 70px;
  background-color: var(--color-white);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-image {
  max-width: 670px;
  height: auto;

  & img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
}

.hero-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 64px;
}

.main-heading {
  display: flex;
  flex-direction: column;
  font-family: 'Poiret One', cursive;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 30px;

  & .brand {
    font-size: 132px;
    color: var(--color-primary);
    -webkit-text-stroke: 6px var(--color-primary);
    letter-spacing: 9px;
  }

  & .company {
    font-size: 120px;
    color: var(--text-black);
    letter-spacing: -10px;
  }
}


.hero-subtitle {
  font-size: 24px;
  -webkit-text-stroke: 1px var(--grey-49);
  letter-spacing: 1px;
  color: var(--grey-49);
  padding-bottom: 46;
  margin-left: 18px;
}

.company-name {
  font-size: 48px;
  -webkit-text-stroke: 2px var(--color-primary);
  color: var(--color-primary);
  letter-spacing: 5px;
  margin-top: 24px;
  margin-left: 18px;
}

/* 
.hero-form {
  margin-top: 32px;
  display: flex;
  gap: 18px;
}

.email-input-container {
  height: 42px;
  width: 264px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 24px;
  background-color: var(--color-white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.078);
  border-radius: 100px;

  & input {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
  }
}

.hero-submit-btn {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 6px 6px 6px 24px;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid var(--color-primary);
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.078);
  transition: all 0.2s ease;


  & .text {
    font-weight: 500;
    font-size: 14px;
  }

  & .icon {
    height: 28px;
    width: 28px;
    background-color: var(--color-white);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
  }

  &:hover {
    background-color: var(--color-white);
    color: var(--color-primary);

    & .icon {
      background-color: var(--color-primary);
    }

    & .icon svg {
      color: var(--color-white);
    }
  }
} */

/* //////////////////////////////////////////////////////// */
/* SERVICES SECTION */
/* //////////////////////////////////////////////////////// */

.services-section {
  padding: 100px 120px;
}

.services-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
}

.services-image {
  max-width: 505px;
  height: auto;

  & img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 267px);
  gap: 40px;
  justify-content: flex-end;
}

.service-card {
  position: relative;
  height: 164px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-color: var(--color-white);
  padding: 16px 20px;
  border-radius: 12px;
  -webkit-text-stroke: 0.5px var(--text-black);
  box-shadow: 2px 2px 10px rgba(208, 210, 218, 0.502);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;

  & .heading {
    font-size: 16px;
    -webkit-text-stroke: 1px var(--text-black);
    letter-spacing: 2px;
    color: var(--text-black);
  }

  & .description {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
  }

  & .btn {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    -webkit-text-stroke: 0.5px var(--color-primary);
    color: var(--color-primary);
  }

  &:hover {
    background-color: var(--color-primary);
    transform: rotate(-5deg);
    animation: rotate-bl 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;

    & .heading {
      -webkit-text-stroke: 1px var(--color-white);
      color: var(--color-white);
    }

    & .description,
    & .btn {
      -webkit-text-stroke: 0.5px var(--color-white);
      color: var(--color-white);
    }
  }

}

.card-corner-deco {
  position: absolute;
  top: -5px;
  right: 0;
  width: 110px;
  height: 110px;
  background: url('../assets/images/card-corner-deco.png') no-repeat center;
  background-size: contain;
  pointer-events: none;
}

/* //////////////////////////////////////////////////////// */
/* WELCOME SECTION */
/* //////////////////////////////////////////////////////// */

.welcome-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.welcome-image {
  max-width: 355px;
  height: auto;
  padding-left: 80px;

  & img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
}

.right-container {
  max-width: 60%;

  & .heading-primary {
    text-align: start;
    margin-bottom: 12px;
  }

  & .description {
    max-width: 95%;
    text-align: start;
    margin-bottom: 40px;
    font-size: 16;
    font-weight: 700;
    -webkit-text-stroke: 0.5px var(--grey-49);
    letter-spacing: 1px;
    color: var(--grey-49);
  }

  & .btn {
    padding: 10px 24px;
    border-radius: 100px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;

    &:hover {
      background-color: var(--color-white);
      color: var(--color-primary);
    }
  }
}

/* //////////////////////////////////////////////////////// */
/* WEB DESIGN SECTION */
/* //////////////////////////////////////////////////////// */

.web-design-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: auto;

  & .left-container {

    max-width: 1024px;

    & .heading-primary {
      margin-bottom: 24px;
      text-align: start;
    }

    & .description-text {
      width: 80%;
      font-size: 16px;
      -webkit-text-stroke: 0.5px var(--grey-49);
      letter-spacing: 1px;
      line-height: 1.5;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: start;
      color: var(--grey-49);
    }
  }

}

.web-design-illustration {
  max-width: 385px;
  height: auto;
  margin: auto;

  & img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
}

.web-service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 320px));
  gap: 20px;
  width: 100%;

  & .card {
    background-color: var(--color-white);
    padding: 16px 20px 20px 20px;
    border-radius: 12px;
    box-shadow: 2px 2px 10px rgba(208, 210, 218, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;

    & .icon-wrapper {
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 12px;
      margin-bottom: 16px;
      background-color: var(--color-primary-lighter);
      color: var(--color-primary);
    }

    & .heading {
      font-size: 16px;
      /* font-weight: 700; */
      -webkit-text-stroke: 1px var(--text-black);
      letter-spacing: 2px;
      color: var(--text-black);
      margin-bottom: 12px;
    }

    & .description {
      font-size: 14px;
      letter-spacing: 1px;
      font-weight: 700;
      line-height: 1.4;
      -webkit-text-stroke: 0.5px var(--text-black);
      color: var(--text-black);
    }

    &:hover {
      transform: translateY(-5px);
      box-shadow: 4px 4px 20px rgba(208, 210, 218, 0.5);
      background-color: var(--color-primary);

      & .icon-wrapper {
        background-color: #1010101A;
      }

      & .heading {
        -webkit-text-stroke: 1px var(--color-white);
      }

      & .description {
        -webkit-text-stroke: 0.5px var(--color-white);
      }

      & .icon-wrapper,
      & .heading,
      & .description {
        color: var(--color-white);
      }


    }
  }
}

/* //////////////////////////////////////////////////////// */
/* COMPUTER REPAIRING */
/* //////////////////////////////////////////////////////// */
.computer-repairing-section {
  text-align: center;

  & .heading-primary {
    font-size: 36px;
    margin-bottom: 30px;
  }

  & .description {
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 1.4;
    -webkit-text-stroke: 0.5px var(--grey-49);
    color: var(--grey-49);
    width: 80%;
    margin: 0 auto 30px auto;
  }

  & .services {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 20px;

    & .service-box {
      height: 44px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      background-color: var(--color-white);
      border-radius: 10px;
      color: var(--color-primary);
      box-shadow: 1.6 1.6px 8px rgba(208, 210, 218, 0.502);
      cursor: pointer;
      transition: background-color 0.3s ease;

      & .title {
        font-size: 16px;
        /* font-weight: 400; */
        -webkit-text-stroke: 0.5px var(--color-primary);
        letter-spacing: 1px;
      }

      &:hover {
        background-color: #f0e4d7;
      }
    }
  }

}

/* //////////////////////////////////////////////////////// */
/* GET IN TOUCH */
/* //////////////////////////////////////////////////////// */

.get-in-touch-section {
  padding-top: 100px;
  padding-bottom: 300px;

  & .background {
    background-image: url('../assets/images/bg-image.png');
    width: 100%;
    height: 415px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
}

.supportDocWrap {
  width: 100%;
  padding: 18px 0 70px;
}

.supportDocInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-start;
  /* left aligned but inside container */
}

.supportDocLink {
  font-weight: 600;
  font-size: 20px;
  text-decoration: underline;
}

.supportDocInner {
  justify-content: center;
}

.get-in-touch-container {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1240px;
  padding: 64px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0px 12px 22px 0px rgba(208, 210, 218, 0.251);

  & .heading-primary {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
  }

  & .container {
    display: flex;
    gap: 60px;

    & .form {
      width: 497px;

      & .input {
        height: 50px;
        margin-bottom: 20px;
      }

      & .textarea {
        height: 114px;
        margin-bottom: 12px;
      }

      & .input,
      & .textarea {
        width: 100%;
        padding: 14px 12px;
        border-radius: 4px;
        font-size: 16px;
        font-family: 'Roboto', sans-serif;
        border: 0.5px solid var(--grey-7c);
        outline: none;
        color: var(--text-black);
      }

      & .btn {
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--color-primary);
        color: var(--color-white);
        border: 2px solid var(--color-primary);
        border-radius: 4px;
        font-size: 18px;
        font-weight: 700;
        margin-top: 10px;
        transition: all .2s ease;
        cursor: pointer;

        &:hover {
          background-color: var(--color-white);
          color: var(--color-primary);
        }
      }

    }
  }

  & .info {
    width: 550px;
    font-size: 14px;

    & .el-container {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 24px;

      & .el-icon {
        width: 20px;
        color: var(--grey-7c);
      }

      & .el-info {
        font-size: 16px;
        -webkit-text-stroke: 0.75px var(--grey-7c);
        letter-spacing: 1.5px;
        color: var(--grey-7c);
      }

      & .el-info-link {
        border-bottom: 2px solid transparent;
        padding-bottom: 1px;
        transition: all 0.2s ease;

        &:hover {
          border-bottom: 2px solid var(--grey-7c);
        }
      }
    }
  }

  .map-iframe {
    width: 100%;
    border-radius: 4px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    border: none;
    outline: none;
  }
}



/* //////////////////////////////////////////////////////// */
/* FOOTER */
/* //////////////////////////////////////////////////////// */

.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 100px 220px 100px 190px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--color-white);
  padding-bottom: 44px;
}

.footer-section {

  & .heading {
    font-size: 20px;
    /* font-weight: 700; */
    -webkit-text-stroke: 0.75px var(--color-white);
    letter-spacing: 3px;
    margin-bottom: 10px;
  }

  & ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style: none;

    & li {
      margin-bottom: 8px;
      font-size: 16px;
      -webkit-text-stroke: 0.25px var(--color-white);
      letter-spacing: 2px;
      border-bottom: 2px solid transparent;
      padding-bottom: 1px;
      transition: all 0.2s ease;

      &:hover {
        border-bottom: 2px solid var(--color-white);
      }
    }
  }

}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 16px;
  -webkit-text-stroke: 0.5px var(--color-white);
  letter-spacing: 2px;

  & a {
    border-bottom: 2px solid transparent;
    padding-bottom: 1px;
    transition: all 0.2s ease;

    &:hover {
      border-bottom: 2px solid var(--color-white);
    }
  }
}

.footer-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 18px;

  & .form-input {
    height: 50px;
    width: 395px;
    border-radius: 12px;
    font-size: 14px;
    padding-left: 12px;
    outline: none;
    border: none;
  }

  & .form-btn {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 700;
    background-color: var(--color-primary-darker);
    color: var(--color-white);
    box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.078);
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;

    &:hover {
      opacity: 0.85;
    }

  }

}

.footer-social {
  display: flex;
  align-items: center;
  gap: 4px;

  & .social-link {
    transition: all 0.2s ease;

    &:hover {
      color: var(--color-primary-darker);
    }
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;


  & .footer-logo {
    height: 46px;
  }

  & .copyright {
    -webkit-text-stroke: 0.5px var(--color-white);
    letter-spacing: 2px;
  }
}

.error-text {
  font-family: sans-serif;
  color: #ff1100;
  font-size: 13px;
  font-weight: 500;
  margin: 8px 0 0;
  text-align: left;
}