main {
  min-height: 100vh;
}

main .aboutContainer {
  padding: 4% 6% 8% 6%;
  text-align: center;
}

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

@media (max-width: 800px) {
  main .aboutContainer h2 {
    font-size: 2rem;
  }
}

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

main .aboutCardsSection {
  padding: 0 10%;
}

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

main .aboutCardsSection .aboutCardsRow {
  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: 0px;
}

@media (max-width: 800px) {
  main .aboutCardsSection .aboutCardsRow {
    gap: 10px;
  }
}

main .aboutCardsSection .aboutCardsRow .aboutCard {
  background: #141414;
  height: 24rem;
  width: 28%;
  text-align: center;
  border: 1px solid #141414;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  padding: 5%;
  position: relative;
  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 .aboutCardsSection .aboutCardsRow .aboutCard::after, main .aboutCardsSection .aboutCardsRow .aboutCard::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #fff;
}

main .aboutCardsSection .aboutCardsRow .aboutCard::after {
  right: 0;
  bottom: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

main .aboutCardsSection .aboutCardsRow .aboutCard::before {
  left: 0;
  top: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

main .aboutCardsSection .aboutCardsRow .aboutCard:hover::before, main .aboutCardsSection .aboutCardsRow .aboutCard:hover::after {
  width: 100%;
}

main .aboutCardsSection .aboutCardsRow .aboutCard:hover .aboutCardContainer::before,
main .aboutCardsSection .aboutCardsRow .aboutCard:hover .aboutCardContainer::after {
  height: 100%;
}

@media (max-width: 800px) {
  main .aboutCardsSection .aboutCardsRow .aboutCard {
    height: 15rem;
  }
}

main .aboutCardsSection .aboutCardsRow .aboutCard .aboutCardContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .aboutCardsSection .aboutCardsRow .aboutCard .aboutCardContainer::after, main .aboutCardsSection .aboutCardsRow .aboutCard .aboutCardContainer::before {
  content: "";
  width: 1px;
  height: 0;
  position: absolute;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #fff;
}

main .aboutCardsSection .aboutCardsRow .aboutCard .aboutCardContainer::after {
  right: 0;
  bottom: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

main .aboutCardsSection .aboutCardsRow .aboutCard .aboutCardContainer::before {
  left: 0;
  top: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

@media (max-width: 800px) {
  main .aboutCardsSection .aboutCardsRow .aboutCard span:nth-child(1) {
    height: 40px;
  }
}

main .aboutCardsSection .aboutCardsRow .aboutCard span:nth-child(1) img {
  width: 65%;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

main .aboutCardsSection .aboutCardsRow .aboutCard span:nth-child(2) {
  font-size: 1.2rem;
  margin-top: 50px;
  height: 30px;
  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;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

@media (max-width: 800px) {
  main .aboutCardsSection .aboutCardsRow .aboutCard span:nth-child(2) {
    font-size: 1rem;
  }
}

main .aboutCardsSection .aboutCardsRow .aboutCard:hover {
  background: black;
  border: 1px solid #dfdfdf;
}

main .aboutCardsSection .aboutCardsRow .aboutCard:hover span:nth-child(1) img {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

main .aboutCardsSection .aboutCardsRow .aboutCard:hover span:nth-child(2) {
  letter-spacing: 1px;
}

@media (max-width: 800px) {
  main .aboutCardsSection .aboutCardsRow .aboutCard:hover span:nth-child(2) {
    letter-spacing: unset;
  }
}

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

@media (max-width: 800px) {
  main .aboutFounder {
    padding: 15% 5%;
    min-height: 55vh;
    background: unset;
  }
}

main .aboutFounder .aboutFounderRow {
  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: 150px;
}

@media (max-width: 800px) {
  main .aboutFounder .aboutFounderRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
    margin: 100px 0;
  }
  main .aboutFounder .aboutFounderRow:nth-child(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main .aboutFounder .aboutFounderRow .abtFounderImg {
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5;
          flex: 0.5;
  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 .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer {
  height: 320px;
  width: 320px;
  overflow: hidden;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
}

@media (max-width: 800px) {
  main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer {
    height: 230px;
    width: 230px;
  }
}

main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer::after, main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #fff;
  z-index: 1;
}

main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer::after {
  right: 0;
  bottom: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer::before {
  left: 0;
  top: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer:hover::before, main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer:hover::after {
  width: 100%;
}

main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer:hover .abtFounderInsideContainer::before,
main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer:hover .abtFounderInsideContainer::after {
  height: 100%;
}

main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer .abtFounderInsideContainer::after, main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer .abtFounderInsideContainer::before {
  content: "";
  width: 1px;
  height: 0;
  position: absolute;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #fff;
  z-index: 1;
}

main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer .abtFounderInsideContainer::after {
  right: 0;
  bottom: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer .abtFounderInsideContainer::before {
  left: 0;
  top: 0;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -webkit-transform: rotate(-45deg) scale(3.5) translate(-6px, 31%);
          transform: rotate(-45deg) scale(3.5) translate(-6px, 31%);
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

main .aboutFounder .aboutFounderRow .abtFounderImg .abtFounderImgContainer:hover img {
  -webkit-filter: grayscale(0.5);
          filter: grayscale(0.5);
}

main .aboutFounder .aboutFounderRow .founderSecondImg img {
  -webkit-transform: rotate(-45deg) scale(1.8) translate(25px, 16%) !important;
          transform: rotate(-45deg) scale(1.8) translate(25px, 16%) !important;
}

main .aboutFounder .aboutFounderRow .abtFounderDetails {
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5;
          flex: 0.5;
}

@media (max-width: 800px) {
  main .aboutFounder .aboutFounderRow .abtFounderDetails {
    padding-top: 80px;
  }
}

main .aboutFounder .aboutFounderRow .abtFounderDetails h2 {
  font-size: 2.8rem;
  font-weight: 500;
}

@media (max-width: 800px) {
  main .aboutFounder .aboutFounderRow .abtFounderDetails h2 {
    font-size: 2rem;
  }
}

main .aboutFounder .aboutFounderRow .abtFounderDetails p {
  margin: 30px 0;
  color: white;
  line-height: 30px;
  text-align: justify;
}

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

@media (max-width: 800px) {
  main .companyLogos {
    min-height: 20vh;
  }
}

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 */
  }
}

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

main .companyLogos .logoCaroselContainer {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

main .companyLogos .logoCaroselContainer .swiper-container {
  width: 100%;
  height: 100%;
}

main .companyLogos .logoCaroselContainer .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  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 .companyLogos .logoCaroselContainer .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main .companyLogos .logoCaroselContainer .swiper-slide .skGrayImg img {
  -webkit-filter: contrast(0.2);
          filter: contrast(0.2);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

main .companyLogos .logoCaroselContainer .swiper-slide span {
  height: 160px;
  width: 160px;
}

@media (max-width: 800px) {
  main .companyLogos .logoCaroselContainer .swiper-slide span {
    min-width: 100px;
    margin-right: 40px;
  }
}

main .companyLogos .logoCaroselContainer .swiper-slide span img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

main .companyLogos .logoCaroselContainer .swiper-slide span:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
/*# sourceMappingURL=about.css.map */