a {
  text-decoration: none !important;
}
a:hover {
  color: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Roboto", serif;
  letter-spacing: 1px;
}
/* COMO CSSS */
li,
a {
  font-size: 17px;
}
/* Scrollbar Track */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* COMON STYLE */
:root {
  --primary-color: #1e1e1e;
  --secondary: #6F8760;
  --secondary-light: #a9bd9e;
  --secondary-bg: #f8f7f0;
  --white: #fff;
  --black: #000;
  --white: #fff; /* White is correctly defined here */
  --product-bg: #f4f4f4;
}
/* BUTTON */
p {
  font-size: 17px;
  font-weight: 300;
  opacity: 0.7;
}
img {
  width: 100%;
  max-width: 100%;
}
.Btn {
  button {
    border: none;
    border-radius: 50px;
    padding: 6px 8px;
    padding-left: 25px !important;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 16px;
    border: 1px solid var(--secondary);
    i {
      background-color: var(--secondary-light);
      border-radius: 50%;
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transform: rotate(-40deg);
    }
    &:hover {
      background-color: var(--white);
      transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
      border: 1px solid var(--black);
      i {
        transform: rotate(0);
        transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
      }
    }
  }
}
.Subtitle {
  margin-bottom: 18px;
  span {
    font-size: 15px;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 7px 20px;
    font-weight: 400;
  }
}
.title {
  h2 {
    font-size: 50px;
    font-weight: 400;
  }
}
h3 {
  font-size: 22px;
  font-weight: 500;
}
/* TOP HEADER */
.TopHeader {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 0;
  .NumberOther {
    display: flex;
    align-items: center;
    gap: 15px;
    a {
      color: var(--white);
    }
  }
  span,
  li,
  a {
    font-size: 14px;
    font-weight: 300;
  }
  .Social {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: end;
    ul {
      display: flex;
      align-items: center;
      gap: 8px;
      a {
        color: var(--white);
      }
    }
  }
}
/* HEADER */
header {
  padding: 15px 0;
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    .MobBtn {
      cursor: pointer;
      display: none;
      z-index: 1001;
      span {
        display: none;
        width: 30px;
        height: 3px;
        background: #333;
        margin: 6px 0;
      }
    }
    nav {
      ul {
        display: flex;
        align-items: center;
        gap: 15px;
        li {
          a {
            text-transform: uppercase;
            font-size: 16px;
            color: var(--black);
          }
        }
      }
    }
    .Logo {
      width: 130px;
    }
  }
}
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px); /* Move up slightly */
    transition: opacity 0.4s ease, transform 0.4s ease;
    ul {
      flex-flow: column;
      padding-top: 100px !important;
    }
  }
  nav.menu-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .MobBtn.nav-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .MobBtn.nav-open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .MobBtn {
    display: block;
    span {
      display: block !important;
    }
  }

  .nav-open {
    display: block;
  }
}

/* BANNER */
.Banner {
  background-color: var(--primary-color);
  padding-top: 100px;
  .row {
    margin-bottom: 60px;
    h1 {
      color: var(--white);
      text-transform: capitalize;
      font-size: 60px;
      font-weight: 600;
      span {
        display: block;
        color: var(--secondary);
        transition: opacity 0.5s ease;
        display: inline-block;
      }
    }
    .fade-out {
      opacity: 0;
    }
    .fade-in {
      opacity: 1;
    }
    .Cnt {
      max-width: 330px;
      margin-left: auto;
      margin-right: 0;
      p {
        color: var(--white);
      }
      a {
        display: block;
        i {
          width: 50px;
          height: 50px;
          background-color: var(--white);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          transform: rotate(-40deg);
          color: var(--black);
          &:hover {
            background-color: var(--secondary);
            transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
            transform: rotate(-0deg);
          }
        }
      }
    }
  }
  .Hearo {
    margin-left: 16.5%;
    img {
      width: 100%;
      border-radius: 70px 0px 0px 0px;
    }
  }
}
/* HOME ABOUT */
.HomeAbout {
  margin: 100px 0;
  img {
    width: 100%;
  }
  .title {
    margin-bottom: 30px;
    max-width: 600px;
  }
  .row {
    align-items: end;
    ul {
      li {
        display: flex;
        align-items: start;
        gap: 15px;
        margin: 20px 0;
        &:nth-child(1),
        &:nth-child(2) {
          border-bottom: 1px solid #d4d4d4;
        }
        i {
          font-size: 65px;
        }
        h3 {
          font-size: 22px;
          font-weight: 500;
        }
      }
    }
  }
  .TextSlider {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 16px 0;
    margin-top: 100px;
    width: 100%;
    overflow-x: hidden;
    .Sliderwrap {
      display: flex;
      gap: 100px;
      width: 2600px;
      animation-name: infiniteScroll;
      animation-duration: 20s;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
      h1 {
        position: relative;
        font-size: 60px;
        white-space: nowrap;
        background-clip: text;
        text-transform: uppercase;
        font-weight: 500;
        opacity: 0.2;
      }
    }
  }
}
@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* HOME SERVICE */
/* .HomeService {
  background-color: var(--secondary-bg);
  padding: 100px 0;
  ul {
    margin-top: 40px;
    li {
      padding: 50px 35px;
      background-color: var(--white);
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      margin: 0px 7px;
      i {
        font-size: 80px;
      }
      h3 {
        font-size: 25px;
        font-weight: 400;
        margin-top: 33px;
      }
    }
  }
  .PrevArow,
  .NextArow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    &:hover {
      background-color: var(--secondary);
      transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
    }
  }
  .PrevArow {
    position: absolute;
    top: -80px;
    right: 45px;
    z-index: 9999;
  }
  .NextArow {
    position: absolute;
    top: -80px;
    right: 0;
    z-index: 9999;
  }
} */
.HomeService {
  background-color: var(--secondary-bg);
  padding: 100px 0;
  ul {
    margin-top: 40px;
    li {
      background-color: var(--white);
      border-radius: 12px;
      margin: 0px 7px;
      overflow: hidden;
      aspect-ratio: 1/1;
      position: relative;
      &::after {
        content: "";
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        opacity: 0;
      }
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      i {
        font-size: 80px;
      }
      h3 {
        font-size: 30px;
        font-weight: 400;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--white);
        opacity: 0;
        z-index: 1111;
        text-wrap: nowrap;
      }
      &:hover {
        &::after {
          opacity: 1;
          transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
        }
        h3 {
          opacity: 1;
          transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
        }
      }
    }
  }
  .PrevArow,
  .NextArow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    &:hover {
      background-color: var(--secondary);
      transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
    }
  }
  .PrevArow {
    position: absolute;
    top: -80px;
    right: 45px;
    z-index: 9999;
  }
  .NextArow {
    position: absolute;
    top: -80px;
    right: 0;
    z-index: 9999;
  }
}
/* CENTER BANNER */
.CntBanner {
  height: 50vh;
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* WHY CHOOSE US */
.HomeWhy {
  margin-top: 100px;
  .row {
    align-items: center;
    .Image {
      position: relative;
      img {
        width: 95%;
      }
      .Complete {
        background-color: var(--white);
        border-radius: 50%;
        width: 180px;
        height: 180px;
        border: 4px solid var(--secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: -100px;
        top: 50%;
        transform: translateY(-50%);

        .item {
          text-align: center;
          span {
            font-size: 50px;
            font-weight: 500;
            text-align: center;
            line-height: initial;
          }
          h5 {
            font-size: 20px;
            font-weight: 400;
          }
        }
      }
    }
    .title {
      margin-bottom: 15px;
    }
    .CntMain {
      margin-top: 30px;
      .Flex {
        display: flex;
        align-items: start;
        gap: 16px;
        i {
          font-size: 60px;
        }
        p {
          max-width: 80%;
        }
      }
    }
  }
}
.HomeProject {
  position: relative;
  padding-bottom: 50px;
  margin-top: 100px;
  &::after {
    content: "";
    background-color: var(--secondary-bg);
    width: 100%;
    height: 65%;
    position: absolute;
    bottom: 0;
    z-index: -2;
  }
  .ProjectSlider {
    margin-top: 40px;
    li {
      position: relative;
      margin: 0 10px;
      &:hover {
        .Cnt {
          opacity: 1;
          transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
        }
      }
      .Image {
        aspect-ratio: 1/1;
        width: 100%;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
      .Cnt {
        background-color: var(--secondary);
        padding: 30px;
        border-radius: 14px;
        width: 95%;
        position: absolute;
        bottom: 13px;
        left: 12px;
        opacity: 0;
        span {
          display: block;
          margin-bottom: 7px;
        }
      }
    }
    .slick-list {
      padding: 0 28% 0 0;
    }
  }
  .PrevArow,
  .NextArow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    &:hover {
      background-color: var(--secondary);
      transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
    }
  }
  .PrevArow {
    position: absolute;
    top: -80px;
    right: 45px;
    z-index: 9999;
  }
  .NextArow {
    position: absolute;
    top: -80px;
    right: 0;
    z-index: 9999;
  }
  .counter-section {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    .CountItem {
      background-color: #fff;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.1);
      width: 230px;
      height: 230px;
      display: flex;
      align-items: center;
      justify-content: center;
      h2 {
        font-size: 40px;
        margin-bottom: 0;
      }
      p {
        opacity: 1;
        font-weight: 400;
        font-size: 20px;
      }
    }
  }
}

.Certificate {
  margin-top: 20px;
  li {
    margin: 0 5px;
    background-color: #ffffff;
    border-radius: 8px;
    .Image {
      aspect-ratio: 1/1.3;
      width: 100%;
      padding: 10px;
      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
  }
}
/* TECHNIQ */
.HomeTechniq {
  /* background-color: var(--primary-color); */
  background-color: #282828;
  background-image: url(../image/footer-bg.png);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;

  padding-bottom: 90px;
  .row {
    align-items: center;
    .Cnt {
      padding-top: 55px;
      span {
        color: var(--white);
        border: 1px solid var(--white);
      }
      h2,
      p {
        color: var(--white);
      }
      p {
        margin-top: 20px;
      }
    }
  }
}
/* HOME TESTIMONIAL */
.HomeTestimonial {
  margin-top: 100px;
  margin-bottom: 80px;
  .TestimonialSlider {
    margin-top: -0px;
    margin-top: 60px;
    li {
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 16px;
      margin: 0 10px;
      overflow: hidden;
      position: relative;

      &::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.8) 30%,
          rgba(0, 0, 0, 0) 100%
        );
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
      }

      .Cnt {
        position: absolute;
        bottom: 20px;
        left: 20px;
        z-index: 2;
        opacity: 0;
        transition: opacity 0.3s ease;
        color: #fff;

        h3 {
          margin-bottom: 0;
        }
        span {
          font-weight: 300;
          font-size: 14px;
        }
      }

      &:hover {
        &::after {
          opacity: 1;
        }
        .Cnt {
          opacity: 1;
        }
      }
    }
  }

  .PrevArow,
  .NextArow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    &:hover {
      background-color: var(--secondary);
      transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
    }
  }
  .PrevArow {
    position: absolute;
    top: -115px;
    right: 300px;
    z-index: 9999;
  }
  .NextArow {
    position: absolute;
    top: -115px;
    right: 250px;
    z-index: 9999;
  }
}
/* FOOTER */
footer {
  background-color: #091d37;
  padding-top: 90px;
  .QuuickContact {
    color: var(--white);
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    .row {
      justify-content: space-between;
      align-items: center;
      h2 {
        font-size: 40px;
      }
      a {
        color: var(--white);
        width: 60px;
        height: 60px;
        background-color: var(--secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: relative;
        i {
          color: #000;
          transform: rotate(-40deg);
        }
        &::before {
          content: "";
          border: 2px dashed var(--secondary);
          border-radius: 50%;
          width: 85px;
          height: 85px;
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
          animation: rotateCircle 5s linear infinite;
        }
        &:hover {
          background-color: var(--white);
          transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
          i {
            transform: rotate(0deg);
            transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
          }
        }
      }
    }
  }
  .Menus {
    padding-top: 50px;
    p,
    a,
    h3 {
      color: var(--white);
    }
    h3 {
      margin-bottom: 25px;
      font-weight: 400;
      font-size: 20px;
    }
    .logo {
      margin-bottom: 25px;
      img {
        width: 80%;
      }
    }
    .Links {
      li {
        padding-bottom: 5px;
        a {
          font-size: 15px;
          font-weight: 300;
          margin-bottom: 10px;
          opacity: 0.8;
          &:hover {
            color: var(--secondary);
          }
        }
      }
    }
    .Soccil {
      margin-top: 15px;
      display: flex;
      align-items: center;
      gap: 14px;
      li {
        i {
          border: 0.5px solid var(--white);
          width: 34px;
          height: 34px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--white);
          font-size: 14px;
          &:hover {
            border: 0.5px solid var(--secondary);
            background-color: var(--secondary);
            color: var(--black);
            transition: cubic-bezier(0.075, 0.82, 0.165, 1) 2s;
          }
        }
      }
    }
    .Call {
      span {
        color: var(--secondary);
        font-size: 20px;
        border-bottom: 1px solid var(--secondary);
      }
    }
    padding-bottom: 65px;
  }
  .copy {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-align: center;
    padding: 15px 0;
    p {
      margin: 0;
      font-style: normal;
    }
  }
}
@keyframes rotateCircle {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* ABOUT US PAGE */
.InnerBanner {
  position: relative;
  .Cnt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    h1 {
      font-size: 55px;
      font-weight: 500;
      color: var(--white);
      margin: 0;
    }
    ul {
      margin-top: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
      li {
        font-weight: 400;
        font-size: 18px;
        color: var(--white);
        &:nth-child(2) {
          color: var(--white);
        }
      }
    }
  }
}
/* our mission section */
.OurMision {
  margin-top: 100px;
  .Card {
    background-color: var(--secondary-bg);
    padding: 40px;
    border-radius: 12px;
    i {
      font-size: 64px;
    }
    h3 {
      margin-top: 15px;
    }
  }
}
/* ABOUT */
.About {
  margin-top: 100px;
  .row {
    align-items: center;
    img {
      padding-right: 40px;
    }
    .title {
      margin-bottom: 18px;
    }
  }
}
/* faq */
.WhyAccordian {
  margin-top: 100px;
  background-image: url(../image/why-choose-bg.jpg);
  width: 100%;
  background-repeat: no-repeat;
  padding-bottom: 150px;
  background-position: center;
  background-size: cover;
  .Cnt {
    background-color: var(--primary-color);
    padding: 45px 70px;
    color: #fff;
    .Subtitle {
      span {
        border: 1px solid var(--white);
      }
    }
  }
  .accordion {
    margin-top: 15px;
  }
  .accordion-item {
    background-color: transparent;
    color: var(--white);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .accordion-header {
    padding: 12px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 20px;
    text-transform: capitalize;
  }

  .accordion-content {
    display: none;
    padding: 12px 0px;
    p {
      color: var(--white);
    }
  }
  .accordion-item.active .accordion-content {
    display: block;
  }
  i {
    font-size: 18px;
    transition: transform 0.3s, color 0.3s;
    transform: rotate(-45deg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: transparent;
  }
  .accordion-item.active i {
    color: var(--black);
    width: 35px;
    height: 35px;
    background-color: var(--secondary);
    transform: rotate(0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* SERVICE */
.ServiceGrid {
  margin-top: 100px;
  .row {
    row-gap: 20px;
  }
  .Card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 37px;
    i {
      font-size: 80px;
      margin-bottom: 20px;
      display: block;
    }
    h3 {
      max-width: 65%;
      font-size: 25px;
    }
    p {
      border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      padding-bottom: 10px;
      margin: 10px 0;
      font-size: 15px;
    }
    a {
      display: flex;
      align-items: center;
      color: #000000;
      gap: 10px;
      font-size: 14px;
      font-weight: 400;
      margin-top: 20px;
      &:hover {
        color: var(--secondary);
      }
      i {
        font-size: 18px;
        margin-bottom: 0;
      }
    }
  }
}
/* SERVICE BOTTOM */
.Maintain {
  margin-top: 100px;
  padding: 150px 0;
  background-color: var(--secondary-bg);
  position: relative;
  overflow: hidden;
  img {
    position: absolute;
    right: 0;
    width: 50%;
    top: 0;
    height: 100%;
    object-fit: cover;
  }
  .row {
    align-items: center;
    .Cnt {
      p {
        margin: 33px 0;
      }
      ul {
        display: flex;
        align-items: center;
        border-top: 1px solid rgba(0, 0, 0, 0.3);
        gap: 10px;
        li {
          &:nth-child(1) {
            padding-top: 20px;
            border-right: 1px solid rgba(0, 0, 0, 0.3);
          }
          &:nth-child(2) {
            padding-left: 13px;
            padding-top: 20px;
          }
          h1 {
            font-weight: 500;
          }
          h5 {
            font-weight: 400;
            font-size: 17px;
            text-transform: capitalize;
          }
        }
      }
    }
  }
}
.ServiceDetails {
  margin: 100px 0;
  .col-lg-7 {
    h2 {
      font-size: 39px;
      font-weight: 400;
      margin: 25px 0;
    }
    ul {
      margin: 30px 0;
      display: flex;
      align-items: center;
      gap: 24px;
      flex-flow: row wrap;
      column-gap: 5px !important;
      li {
        width: calc(50% - 12px);
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 17px;
        font-weight: 300;
        opacity: 0.7;
        i {
          color: var(--secondary);
          opacity: 1 !important;
          font-size: 22px;
        }
      }
    }
  }
  .col-lg-5 {
    .OtherService {
      background-color: var(--secondary-bg);
      padding: 35px;
      h2 {
        font-weight: 500;
      }
      ul {
        margin-top: 23px;
        li {
          background-color: var(--white);
          padding: 15px 20px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin: 11px 0;
          a {
            color: var(--primary-color);
            font-size: 19px;
            font-weight: 500;
          }
          i {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 500;
            background-color: var(--secondary);
          }
        }
      }
    }
    .CallNow {
      border: 3px solid var(--secondary);
      padding: 45px 40px;
      margin-top: 30px;
      h2 {
        font-size: 40px;
      }
      p {
        margin: 25px 0;
      }
    }
  }
}
/* PROJECTS PAGE */
.Project {
  margin: 100px 0;
  .row {
    row-gap: 20px;
    .Card {
      position: relative;
      &:hover {
        .Cnt {
          opacity: 1;
          transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
        }
      }
      .Image {
        aspect-ratio: 1/1;
        width: 100%;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
      .Cnt {
        background-color: var(--secondary);
        padding: 30px;
        border-radius: 14px;
        width: 95%;
        position: absolute;
        bottom: 13px;
        left: 12px;
        opacity: 0;
        h3,
        p {
          color: var(--white);
        }
        span {
          display: block;
          margin-bottom: 7px;
        }
      }
    }
  }
}
/* CONTACTUS */
.Contact {
  margin: 100px 0;
  .title {
    text-align: center;
    margin-bottom: 50px;
  }
  iframe {
    width: 100%;
    height: 45vh;
  }
  h3 {
    font-size: 30px;
  }
  p {
    margin: 32px 0;
  }
  .Flex {
    display: flex;
    align-items: start;
    gap: 50px;
    h3 {
      font-size: 23px;
      margin-top: 5px;
    }
    p {
      margin: 0 0px;
    }
    a {
      color: var(--black);
    }
  }
  .Number {
    margin-top: 30px;
    a {
      font-size: 23px;
      color: var(--secondary-light);
      border-bottom: 3px solid var(--secondary);
    }
  }
  h5 {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  form {
    input,
    textarea {
      width: 100%;
      margin: 10px 0;
      padding: 10px 14px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      outline: none;
      font-size: 15px;
    }
    .Btn {
      margin-top: 20px;
    }
  }
}

/* modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  position: relative;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.Brands {
  padding: 50px 0;
  background-color: #000;
  .BrandSldier {
    li {
      border: 1px solid #091d37;
      margin: 0px 8px;
      border-radius: 12px;
      overflow: hidden;
    }
  }
}
