main {
  min-height: 100vh;
}

main .clientsContainer {
  padding: 4% 10% 8% 10%;
  text-align: center;
}

main .clientsContainer h2 {
  color: white;
  font-size: 3rem;
  font-weight: 500;
}

main .clientsContainer p {
  margin: 30px 0;
  color: white;
  line-height: 30px;
}

main .clientsLogoMain {
  padding: 2% 10%;
  position: relative;
}

@media (max-width: 800px) {
  main .clientsLogoMain {
    padding: 15% 5%;
  }
}

main .clientsLogoMain .clientsLogoRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 180px;
}

@media (max-width: 800px) {
  main .clientsLogoMain .clientsLogoRow {
    text-align: center;
    margin: 10px 0 40px 0;
  }
}

main .clientsLogoMain .clientsLogoRow .clientImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer {
  height: 250px;
  width: 250px;
  overflow: hidden;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
}

@media (max-width: 800px) {
  main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer {
    height: 80px;
    width: 80px;
  }
}

main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer::after, main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #f70000;
  z-index: 1;
}

main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer::after {
  right: 0;
  bottom: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer::before {
  left: 0;
  top: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer:hover::before, main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer:hover::after {
  width: 100%;
}

main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer:hover .clientInsideContainer::before,
main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer:hover .clientInsideContainer::after {
  height: 100%;
}

main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer .clientInsideContainer {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
}

main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer .clientInsideContainer::after, main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer .clientInsideContainer::before {
  content: "";
  width: 1px;
  height: 0;
  position: absolute;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #eb0000;
  z-index: 1;
}

main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer .clientInsideContainer::after {
  right: 0;
  bottom: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer .clientInsideContainer::before {
  left: 0;
  top: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer span {
  height: 180px;
  width: 180px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer span {
    height: 50px;
    width: 50px;
  }
}

main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer span img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

main .clientsLogoMain .clientsLogoRow .clientImg .clientImgContainer:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

main .testimonials {
  padding: 0 10% 8% 10%;
  background: url("../../assets/Net object.png");
  background-size: 100vw 50vh;
  background-repeat: no-repeat;
  background-position-y: bottom;
}

@media (max-width: 800px) {
  main .testimonials {
    padding: 15% 5%;
    background-size: auto 50vh;
  }
}

main .testimonials .testimonialsContainer h2 {
  color: white;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
}

main .testimonials .testimonialsContainer p {
  margin: 30px 0;
  color: white;
  line-height: 30px;
  text-align: justify;
}

main .testimonials .carouselContainer {
  width: 70%;
  margin: 50px auto 0 auto;
}

@media (max-width: 800px) {
  main .testimonials .carouselContainer {
    width: 100%;
  }
}

main .testimonials .carouselContainer .carouselItem {
  padding: 40px 0;
}

main .testimonials .carouselContainer .carouselItem .carouselItemContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

@media (max-width: 800px) {
  main .testimonials .carouselContainer .carouselItem .carouselItemContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main .testimonials .carouselContainer .carouselItem .carouselItemContainer .testimonialImg {
  -webkit-box-flex: 0.4;
      -ms-flex: 0.4;
          flex: 0.4;
}

main .testimonials .carouselContainer .carouselItem .carouselItemContainer .testimonialImg .testimonialImgContainer {
  height: 300px;
  width: 300px;
  border-radius: 50%;
  background: white;
}

@media (max-width: 800px) {
  main .testimonials .carouselContainer .carouselItem .carouselItemContainer .testimonialImg .testimonialImgContainer {
    height: 200px;
    width: 200px;
  }
}

main .testimonials .carouselContainer .carouselItem .carouselItemContainer .testimonialImg .testimonialImgContainer img {
  width: 100%;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

main .testimonials .carouselContainer .carouselItem .carouselItemContainer .testimonialDetails {
  -webkit-box-flex: 0.6;
      -ms-flex: 0.6;
          flex: 0.6;
}

@media (max-width: 800px) {
  main .testimonials .carouselContainer .carouselItem .carouselItemContainer .testimonialDetails {
    margin-top: 40px;
    text-align: center;
  }
}

main .testimonials .carouselContainer .carouselItem .carouselItemContainer .testimonialDetails .detailSymbol {
  font-size: 1.5rem;
  font-weight: 800;
  max-height: 10px;
}

main .testimonials .carouselContainer .carouselItem .carouselItemContainer .testimonialDetails h4 {
  font-size: 2rem;
  font-weight: 500;
  margin: 12px 0 8px 0;
}

main .testimonials .carouselContainer .carouselItem .carouselItemContainer .testimonialDetails .designation {
  margin: 10px 0;
  color: #cccccc;
  font-size: 1.05rem;
}

main .testimonials .carouselContainer .carouselItem .carouselItemContainer .testimonialDetails p {
  letter-spacing: 1px;
  color: #ececec;
}

main .testimonials .carouselContainer .owl-dots {
  text-align: center;
  padding-top: 15px;
}

main .testimonials .carouselContainer .owl-dots button.owl-dot span {
  width: 0;
  height: 0;
}

main .testimonials .carouselContainer .owl-dots button.owl-dot {
  width: 100px;
  height: 3px;
  border-radius: 0;
  display: inline-block;
  background: #2e2e2e;
  margin: 0 3px;
}

@media (max-width: 800px) {
  main .testimonials .carouselContainer .owl-dots button.owl-dot {
    width: 60px;
  }
}

main .testimonials .carouselContainer .owl-dots button.owl-dot.active {
  background-color: #e7e7e7;
}

main .testimonials .carouselContainer .owl-dots button.owl-dot:focus {
  outline: none;
}

main .companyLogos {
  min-height: 30vh;
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

main .companyLogos .companyLogoContainer {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 800px) {
  main .companyLogos .companyLogoContainer {
    overflow-x: scroll;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 30px;
  }
  main .companyLogos .companyLogoContainer::-webkit-scrollbar {
    display: none;
  }
  main .companyLogos .companyLogoContainer {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
}

main .companyLogos .companyLogoContainer span {
  height: 160px;
  width: 160px;
}

@media (max-width: 800px) {
  main .companyLogos .companyLogoContainer span {
    min-width: 160px;
    margin-right: 40px;
  }
}

main .companyLogos .companyLogoContainer span img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

main .companyLogos .companyLogoContainer span:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

@media (max-width: 800px) {
  main .companyLogos .companyLogoContainer {
    width: 100%;
  }
}
/*# sourceMappingURL=clients.css.map */