.hero-section {
  height: 100dvh;
  width: 100dvw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero-section .logo-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero-section .logo-container .hero-logo-h1,
.hero-section .logo-container .hero-logo-h2 {
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
}
.hero-section .logo-container .hero-logo-h1 {
  width: 420px;
  top: 0;
  left: 0;
}
.hero-section .logo-container .hero-logo-h2 {
  width: 360px;
  bottom: 0;
  right: 0;
}
.hero-section .hero-logo-fixed {
  position: none;
}

.hero-links-container {
  height: 0px;
  width: 450px;
  margin-top: 50px;
  overflow: hidden;
  display: none;
  justify-content: space-between;
  align-items: center;
}
.hero-links-container .hero-link-primary {
  width: 180px;
  height: 100%;
  background-color: #424f5f;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-links-container .hero-link-primary a {
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: white;
  font-weight: bold;
}
.hero-links-container .hero-link-secondary {
  width: 180px;
  height: 100%;
  border: 1px solid #424f5f;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-links-container .hero-link-secondary a {
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: #424f5f;
  font-weight: bold;
}

.about-section {
  height: -moz-fit-content;
  height: fit-content;
  width: 100dvw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-section svg {
  width: 100%;
}
.about-section h1 {
  font-family: "Roboto Mono", monospace;
  font-size: 80px;
  position: absolute;
  top: 10px;
}
.about-section p {
  position: absolute;
}
.about-section p:nth-child(2) {
  top: 300px;
  left: 50px;
  font-family: "Poppins", sans-serif;
  width: 480px;
  font-size: 18px;
  text-align: left;
  font-weight: 400;
}
.about-section p:nth-child(4) {
  top: 250px;
  right: 100px;
  font-family: "Poppins", sans-serif;
  width: 450px;
  font-size: 18px;
  text-align: left;
}

.ft-works-section,
.pf-works-section {
  padding-top: 100px;
  padding-bottom: 100px;
  height: -moz-fit-content;
  height: fit-content;
  width: 100dvw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.ft-works-section h1,
.pf-works-section h1 {
  font-family: "Roboto", sans-serif;
  font-size: 75px;
  width: 100%;
  margin-inline-start: 4.5rem;
}
.ft-works-section .ft-works-carousel-container,
.ft-works-section .pf-works-carousel-container,
.pf-works-section .ft-works-carousel-container,
.pf-works-section .pf-works-carousel-container {
  width: 100%;
  height: 34.375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  overflow-y: hidden;
  overflow-x: scroll;
  gap: 20px;
}
.ft-works-section .ft-works-carousel-container::-webkit-scrollbar,
.ft-works-section .pf-works-carousel-container::-webkit-scrollbar,
.pf-works-section .ft-works-carousel-container::-webkit-scrollbar,
.pf-works-section .pf-works-carousel-container::-webkit-scrollbar {
  display: none;
}
.ft-works-section .ft-works-carousel-container .scroll-card,
.ft-works-section .pf-works-carousel-container .scroll-card,
.pf-works-section .ft-works-carousel-container .scroll-card,
.pf-works-section .pf-works-carousel-container .scroll-card {
  height: 95%;
  width: 24%;
  flex: 0 0 auto;
  transition: 0.3s ease-in-out;
}
.ft-works-section .ft-works-carousel-container .scroll-card:hover,
.ft-works-section .pf-works-carousel-container .scroll-card:hover,
.pf-works-section .ft-works-carousel-container .scroll-card:hover,
.pf-works-section .pf-works-carousel-container .scroll-card:hover {
  transform: scale(1.05);
  margin-inline: 2rem;
}
.ft-works-section .ft-works-carousel-container .scroll-card .card-img-container,
.ft-works-section .pf-works-carousel-container .scroll-card .card-img-container,
.pf-works-section .ft-works-carousel-container .scroll-card .card-img-container,
.pf-works-section .pf-works-carousel-container .scroll-card .card-img-container {
  height: 80%;
  width: 100%;
  background-color: rgba(128, 128, 128, 0.348);
  border-radius: 2rem;
  overflow: hidden;
}
.ft-works-section .ft-works-carousel-container .scroll-card .card-img-container img,
.ft-works-section .ft-works-carousel-container .scroll-card .card-img-container video,
.ft-works-section .pf-works-carousel-container .scroll-card .card-img-container img,
.ft-works-section .pf-works-carousel-container .scroll-card .card-img-container video,
.pf-works-section .ft-works-carousel-container .scroll-card .card-img-container img,
.pf-works-section .ft-works-carousel-container .scroll-card .card-img-container video,
.pf-works-section .pf-works-carousel-container .scroll-card .card-img-container img,
.pf-works-section .pf-works-carousel-container .scroll-card .card-img-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ft-works-section .ft-works-carousel-container .scroll-card .card-info-container,
.ft-works-section .pf-works-carousel-container .scroll-card .card-info-container,
.pf-works-section .ft-works-carousel-container .scroll-card .card-info-container,
.pf-works-section .pf-works-carousel-container .scroll-card .card-info-container {
  margin-top: 10px;
}
.ft-works-section .ft-works-carousel-container .scroll-card .card-info-container h1,
.ft-works-section .pf-works-carousel-container .scroll-card .card-info-container h1,
.pf-works-section .ft-works-carousel-container .scroll-card .card-info-container h1,
.pf-works-section .pf-works-carousel-container .scroll-card .card-info-container h1 {
  font-family: "Poppins", sans-serif;
  margin-left: 2px;
  font-size: 20px;
}
.ft-works-section .ft-works-carousel-container .scroll-card .card-info-container p,
.ft-works-section .pf-works-carousel-container .scroll-card .card-info-container p,
.pf-works-section .ft-works-carousel-container .scroll-card .card-info-container p,
.pf-works-section .pf-works-carousel-container .scroll-card .card-info-container p {
  font-family: "Roboto", sans-serif;
  margin-left: 2px;
}
.ft-works-section .ft-works-carousel-container::-webkit-scrollbar,
.pf-works-section .ft-works-carousel-container::-webkit-scrollbar {
  display: none;
}

.services-section {
  padding-top: 80px;
  padding-bottom: 80px;
  height: 1000px;
  width: 100dvw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.services-section .service-head {
  font-family: "Roboto", sans-serif;
  font-size: 80px;
  width: 100%;
  margin-inline-start: 4.5rem;
}

.services-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}

.service-tag-container {
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-tag-container .service-title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
}

.swipe-card-container {
  height: 600px;
  width: 70%;
  display: flex;
  justify-content: center;
}

.swipe-carousel {
  position: relative;
  height: 400px;
  width: 300px;
  margin: auto;
  perspective: 1000px;
}

.card {
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 12px;
  background-color: rgb(201, 201, 201);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease, opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.card .swipe-card-img-container {
  height: 80%;
  background-color: red;
  border-radius: 1rem;
  overflow: hidden;
}
.card .swipe-card-img-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card .swipe-card-content h3 {
  opacity: 0;
}
.card .swipe-card-content p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.card:nth-child(1) {
  transform: rotate(-15deg);
  z-index: 5;
}

.card:nth-child(2) {
  transform: rotate(-7deg);
  z-index: 4;
}

.card:nth-child(3) {
  transform: rotate(7deg);
  z-index: 3;
}

.card:nth-child(4) {
  transform: rotate(15deg);
  z-index: 2;
}

.mobile-testi-container {
  display: none;
}

.testimonials-section {
  height: -moz-fit-content;
  height: fit-content;
  width: 100dvw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.testimonials-section h1 {
  font-family: "Roboto", sans-serif;
  font-size: 80px;
  width: 100%;
  margin-inline-start: 4.5rem;
}
.testimonials-section svg {
  width: 100%;
}

.testi-card {
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  position: absolute;
}
.testi-card .base {
  background: #d9d9d9;
  padding: 1rem;
  border-radius: 12px;
  width: 250px;
  height: 70px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Roboto", sans-serif;
}
.testi-card .base h3 {
  font-size: 1rem;
  margin: 0;
  font-weight: bold;
}
.testi-card .base .designation {
  font-size: 0.85rem;
  margin: 0;
  color: black;
}
.testi-card .base .quote,
.testi-card .base hr {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  margin-top: 0;
}
.testi-card .base .quote {
  font-size: 0.85rem;
}
.testi-card:hover .base {
  height: 200px;
  width: 340px;
}
.testi-card:hover .base .quote,
.testi-card:hover .base hr {
  opacity: 1;
  max-height: 300px;
  margin-top: 10px;
}
.testi-card:hover .base h3 {
  margin-top: 10px;
}

.pos-1 {
  top: 250px;
  left: 200px;
}

.pos-2 {
  top: 150px;
  left: 600px;
}

.pos-3 {
  top: 500px;
}

.pos-4 {
  bottom: 100px;
  right: 50px;
}

.testi-card {
  transition: all 0.3s ease;
}
.testi-card .base {
  transition: all 0.4s ease;
}
.testi-card.active .base {
  height: 200px;
  width: 320px;
}
.testi-card.active .base .quote,
.testi-card.active .base hr {
  opacity: 1;
  max-height: 300px;
  margin-top: 10px;
}
.testi-card.active .base h3 {
  margin-top: 10px;
}

.clients-section {
  width: 100dvw;
  height: -moz-fit-content;
  height: fit-content;
}

.clients-container {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 180px;
  overflow-x: scroll;
  margin-top: 10px;
}
.clients-container::-webkit-scrollbar {
  display: none;
}
.clients-container .client-scroll-container {
  height: 150px;
  width: 150px;
  flex: 0 0 auto;
}
.clients-container .client-scroll-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease-in-out;
}
.clients-container .client-scroll-container img:hover {
  filter: grayscale(0%);
}

@media (max-width: 600px) {
  .hero-section {
    height: 110dvh;
  }
  .hero-section .logo-container {
    height: -moz-fit-content;
    height: fit-content;
  }
  .hero-section .logo-container .hero-logo-h1 {
    width: 80%;
    position: relative;
    top: auto;
    left: auto;
  }
  .hero-section .logo-container .hero-logo-h2 {
    width: 70%;
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }
  .hero-section .hero-links-container {
    width: 100%;
    height: 100px;
    gap: 20px;
    margin-top: 30px;
    display: flex;
    padding-inline: 5px;
  }
  .hero-section .hero-links-container .hero-link-primary,
  .hero-section .hero-links-container .hero-link-secondary {
    width: 100%;
    height: 50px;
  }
  .hero-section .hero-links-container .hero-link-primary a,
  .hero-section .hero-links-container .hero-link-secondary a {
    font-size: 16px;
  }
  .about-section {
    flex-direction: column;
    text-align: center;
  }
  .about-section h1 {
    font-size: 40px;
    position: relative;
    top: auto;
  }
  .about-section p {
    position: relative;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    padding: 20px 0;
    font-size: 14px !important;
  }
  .about-section p:nth-child(4) {
    text-align: left;
  }
  .about-section svg {
    height: 300px;
  }
  .ft-works-section h1,
  .pf-works-section h1 {
    font-size: 50px !important;
    margin-left: 20px;
  }
  .ft-works-section .ft-works-carousel-container,
  .ft-works-section .pf-works-carousel-container,
  .pf-works-section .ft-works-carousel-container,
  .pf-works-section .pf-works-carousel-container {
    height: 550px;
  }
  .ft-works-section .ft-works-carousel-container .scroll-card,
  .ft-works-section .pf-works-carousel-container .scroll-card,
  .pf-works-section .ft-works-carousel-container .scroll-card,
  .pf-works-section .pf-works-carousel-container .scroll-card {
    width: 80%;
    margin: 0 10px;
  }
  .ft-works-section .ft-works-carousel-container .scroll-card:hover,
  .ft-works-section .pf-works-carousel-container .scroll-card:hover,
  .pf-works-section .ft-works-carousel-container .scroll-card:hover,
  .pf-works-section .pf-works-carousel-container .scroll-card:hover {
    transform: none;
    margin-inline: 0;
  }
  .ft-works-section .ft-works-carousel-container .scroll-card .card-info-container h1,
  .ft-works-section .pf-works-carousel-container .scroll-card .card-info-container h1,
  .pf-works-section .ft-works-carousel-container .scroll-card .card-info-container h1,
  .pf-works-section .pf-works-carousel-container .scroll-card .card-info-container h1 {
    font-size: 18px !important;
  }
  .ft-works-section .ft-works-carousel-container .scroll-card .card-info-container p,
  .ft-works-section .pf-works-carousel-container .scroll-card .card-info-container p,
  .pf-works-section .ft-works-carousel-container .scroll-card .card-info-container p,
  .pf-works-section .pf-works-carousel-container .scroll-card .card-info-container p {
    font-size: 14px;
  }
  .services-section {
    height: auto;
    overflow-x: hidden;
  }
  .services-section .service-head {
    font-size: 50px !important;
    margin-left: 20px;
  }
  .services-container {
    flex-direction: column;
  }
  .services-container .service-tag-container {
    width: 100%;
    height: auto;
    padding: 20px 0;
  }
  .services-container .service-tag-container .service-title {
    font-size: 30px !important;
  }
  .services-container .swipe-card-container {
    width: 100%;
    height: 500px;
  }
  .services-container .swipe-card-container .swipe-carousel .card {
    width: 270px;
    height: 400px;
    margin: 0 5%;
  }
  .services-container .swipe-card-content p {
    font-size: 13px !important;
  }
  .testimonials-section {
    height: auto;
  }
  .testimonials-section h1 {
    font-size: 40px !important;
    margin-left: 20px;
  }
  .testimonials-section svg {
    display: none;
  }
  .mobile-testi-container {
    display: flex;
    height: 300px;
    width: 400px;
    justify-content: space-evenly;
    align-items: center;
    gap: 50px;
    overflow-x: scroll;
  }
  .mobile-testi-container::-webkit-scrollbar {
    display: none;
  }
  .testi-desk {
    display: none !important;
  }
  .testi-card {
    flex: 0 0 auto;
    position: unset;
  }
  .clients-container {
    gap: 40px;
    padding: 0 20px;
  }
  .clients-container .client-scroll-container {
    height: 100px;
    width: 100px;
  }
  h1 {
    font-size: 40px !important;
  }
  h2 {
    font-size: 32px !important;
  }
  p {
    font-size: 16px !important;
  }
}/*# sourceMappingURL=home.css.map */




