main {
  min-height: 100vh;
}

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

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

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

main .solutionsSection {
  padding: 2% 10%;
}

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

main .solutionsSection .solutionsSectionRow {
  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;
}

@media (max-width: 800px) {
  main .solutionsSection .solutionsSectionRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

main .solutionsSection .solutionsSectionRow .solutionsDetails {
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5;
          flex: 0.5;
}

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

main .solutionsSection .solutionsSectionRow .solutionsDetails h2 {
  font-size: 2rem;
  font-weight: 500;
}

main .solutionsSection .solutionsSectionRow .solutionsDetails p {
  margin: 40px 0;
  line-height: 30px;
}

main .solutionsSection .solutionsSectionRow .solutionsDetails .knowMrBtn {
  display: block;
  background: white;
  color: black;
  height: 45px;
  width: 150px;
  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;
  border-radius: 20px;
  font-size: 1.2rem;
  padding: 5px;
  border: 2px solid white;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

@media (max-width: 800px) {
  main .solutionsSection .solutionsSectionRow .solutionsDetails .knowMrBtn {
    margin: 20px auto;
  }
}

main .solutionsSection .solutionsSectionRow .solutionsDetails .knowMrBtn:hover {
  background: black;
  color: white;
}

main .solutionsSection .solutionsSectionRow .solutionsImg {
  -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;
  position: relative;
}

@media (max-width: 800px) {
  main .solutionsSection .solutionsSectionRow .solutionsImg {
    margin: 50px 0;
  }
}

main .solutionsSection .solutionsSectionRow .solutionsImg::after {
  position: absolute;
  content: "";
  height: 600px;
  width: 600px;
  background: rgba(112, 112, 112, 0.308);
  -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(122, 122, 122, 0.432));
          filter: blur(200px) drop-shadow(0 0 30px rgba(122, 122, 122, 0.432));
  border-radius: 50%;
  top: -17%;
  right: 2%;
  z-index: -1;
  -webkit-animation: bgAnim 4s linear infinite alternate;
          animation: bgAnim 4s linear infinite alternate;
}

@media (max-width: 800px) {
  main .solutionsSection .solutionsSectionRow .solutionsImg::after {
    display: none;
  }
}

main .solutionsSection .solutionsSectionRow .solutionsImg img {
  height: 400px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 800px) {
  main .solutionsSection .solutionsSectionRow .solutionsImg img {
    height: 200px;
  }
}

@-webkit-keyframes bgAnim {
  0% {
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
            filter: blur(200px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
  }
  25% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
            filter: blur(150px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
  }
  50% {
    -webkit-filter: blur(120px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
            filter: blur(120px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
  }
  75% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
            filter: blur(150px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
  }
  100% {
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
            filter: blur(200px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
  }
}

@keyframes bgAnim {
  0% {
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
            filter: blur(200px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
  }
  25% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
            filter: blur(150px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
  }
  50% {
    -webkit-filter: blur(120px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
            filter: blur(120px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
  }
  75% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
            filter: blur(150px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
  }
  100% {
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
            filter: blur(200px) drop-shadow(0 0 30px rgba(112, 112, 112, 0.308));
  }
}

main .solutionsWebDev {
  padding: 12% 0 8% 0;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 800px) {
  main .solutionsWebDev {
    padding: 12% 5% 8% 5%;
  }
}

main .solutionsWebDev h2 {
  font-size: 2rem;
  font-weight: 500;
}

main .solutionsWebDev p {
  margin: 40px 0;
  line-height: 30px;
}

main .solutionsWebDev .knowMrBtn {
  margin: 10px auto;
  display: block;
  background: white;
  color: black;
  height: 45px;
  width: 150px;
  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;
  border-radius: 20px;
  font-size: 1.2rem;
  padding: 5px;
  border: 2px solid white;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

main .solutionsWebDev .knowMrBtn:hover {
  background: black;
  color: white;
}

main .solutionsWebDev img {
  margin-top: 30px;
  height: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 800px) {
  main .solutionsWebDev img {
    margin-top: 60px;
  }
}

main .appSolution {
  padding: 2% 0 6% 0;
  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 .appSolution {
    padding: 10% 5%;
    min-height: 55vh;
    background-size: 200% 62%;
  }
}

main .appSolution .solutionsSectionRow {
  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;
  padding: 0 4%;
}

@media (max-width: 800px) {
  main .appSolution .solutionsSectionRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
  }
}

main .appSolution .solutionsSectionRow .solutionsDetails {
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5;
          flex: 0.5;
}

main .appSolution .solutionsSectionRow .solutionsDetails h2 {
  font-size: 2rem;
  font-weight: 500;
}

main .appSolution .solutionsSectionRow .solutionsDetails p {
  margin: 40px 0;
  line-height: 30px;
  width: 80%;
}

@media (max-width: 800px) {
  main .appSolution .solutionsSectionRow .solutionsDetails p {
    width: 100%;
  }
}

main .appSolution .solutionsSectionRow .solutionsDetails .knowMrBtn {
  display: block;
  background: white;
  color: black;
  height: 45px;
  width: 150px;
  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;
  border-radius: 20px;
  font-size: 1.2rem;
  padding: 5px;
  border: 2px solid white;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

@media (max-width: 800px) {
  main .appSolution .solutionsSectionRow .solutionsDetails .knowMrBtn {
    margin: 20px auto;
  }
}

main .appSolution .solutionsSectionRow .solutionsDetails .knowMrBtn:hover {
  background: black;
  color: white;
}

@media (max-width: 800px) {
  main .appSolution .solutionsSectionRow .solutionsDetails {
    padding: 2%;
  }
}

main .appSolution .solutionsSectionRow .solutionsImg {
  -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 .appSolution .solutionsSectionRow .solutionsImg img {
  margin: 0 auto;
  height: auto;
  max-width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 800px) {
  main .appSolution .solutionsSectionRow .solutionsImg img {
    max-width: 100%;
  }
}

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=solutions.css.map */