main {
  min-height: 100vh;
  overflow: hidden;
}

main .solutionContainer {
  position: relative;
  padding: 6% 0 2% 0;
}

main .solutionContainer .smallContainer {
  padding: 0 10%;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

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

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

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

main .solutionContainer .enquireNowLink {
  position: absolute;
  z-index: 2;
  top: 10%;
  right: -3%;
  background: white;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  padding: 0 2%;
  height: 40px;
  width: 200px;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

@media (max-width: 800px) {
  main .solutionContainer .enquireNowLink {
    font-size: 0.85rem;
    top: 6%;
    right: -114px;
  }
}

main .solutionContainer .enquireNowLink:hover {
  right: -2%;
}

main .solutionContainer .imgContainer {
  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 .solutionContainer .imgContainer {
    padding: 0 10%;
  }
}

main .solutionContainer .imgContainer img {
  margin: 40px auto;
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 800px) {
  main .solutionContainer .imgContainer img {
    max-width: 100%;
  }
}

main .solutionsSection {
  padding: 2% 0;
}

main .solutionsSection .solutionsSectionRow {
  padding: 0 10%;
  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 {
    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 {
    text-align: left;
  }
}

main .solutionsSection .solutionsSectionRow .solutionsDetails h2 {
  font-size: 5rem;
  font-weight: 500;
  width: 70%;
}

@media (max-width: 800px) {
  main .solutionsSection .solutionsSectionRow .solutionsDetails h2 {
    font-size: 2rem;
    width: 100%;
  }
}

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

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

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;
}

main .solutionsSection .solutionsSectionRow .solutionsImg::after {
  position: absolute;
  content: "";
  height: 500px;
  width: 500px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(82, 82, 82, 0.39)), to(rgba(163, 163, 163, 0.308)));
  background: linear-gradient(to right, rgba(82, 82, 82, 0.39), rgba(163, 163, 163, 0.308));
  -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(155, 155, 155, 0.432));
          filter: blur(200px) drop-shadow(0 0 30px rgba(155, 155, 155, 0.432));
  border-radius: 50%;
  top: -20%;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transform: translate(-13%, 10px);
          transform: translate(-13%, 10px);
  -webkit-animation: bgAnim 4s linear infinite alternate;
          animation: bgAnim 4s linear infinite alternate;
}

@media (max-width: 800px) {
  main .solutionsSection .solutionsSectionRow .solutionsImg::after {
    top: 45%;
    height: 300px;
    width: 300px;
    -webkit-transform: translate(15%, 0);
            transform: translate(15%, 0);
    background: -webkit-gradient(linear, left top, right top, from(rgba(131, 131, 131, 0.39)), to(rgba(31, 31, 31, 0.308)));
    background: linear-gradient(to right, rgba(131, 131, 131, 0.39), rgba(31, 31, 31, 0.308));
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(27, 27, 27, 0.432));
            filter: blur(200px) drop-shadow(0 0 30px rgba(27, 27, 27, 0.432));
    -webkit-animation: bgAnimMob 6s linear infinite alternate;
            animation: bgAnimMob 6s linear infinite alternate;
  }
}

main .solutionsSection .solutionsSectionRow .solutionsImg img {
  z-index: 2;
  height: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@-webkit-keyframes bgAnim {
  0% {
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(126, 126, 126, 0.363));
            filter: blur(200px) drop-shadow(0 0 30px rgba(126, 126, 126, 0.363));
  }
  25% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(153, 153, 153, 0.527));
            filter: blur(150px) drop-shadow(0 0 30px rgba(153, 153, 153, 0.527));
  }
  50% {
    -webkit-filter: blur(120px) drop-shadow(0 0 30px rgba(167, 167, 167, 0.521));
            filter: blur(120px) drop-shadow(0 0 30px rgba(167, 167, 167, 0.521));
  }
  75% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(153, 153, 153, 0.466));
            filter: blur(150px) drop-shadow(0 0 30px rgba(153, 153, 153, 0.466));
  }
  100% {
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(180, 180, 180, 0.342));
            filter: blur(200px) drop-shadow(0 0 30px rgba(180, 180, 180, 0.342));
  }
}

@keyframes bgAnim {
  0% {
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(126, 126, 126, 0.363));
            filter: blur(200px) drop-shadow(0 0 30px rgba(126, 126, 126, 0.363));
  }
  25% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(153, 153, 153, 0.527));
            filter: blur(150px) drop-shadow(0 0 30px rgba(153, 153, 153, 0.527));
  }
  50% {
    -webkit-filter: blur(120px) drop-shadow(0 0 30px rgba(167, 167, 167, 0.521));
            filter: blur(120px) drop-shadow(0 0 30px rgba(167, 167, 167, 0.521));
  }
  75% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(153, 153, 153, 0.466));
            filter: blur(150px) drop-shadow(0 0 30px rgba(153, 153, 153, 0.466));
  }
  100% {
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(180, 180, 180, 0.342));
            filter: blur(200px) drop-shadow(0 0 30px rgba(180, 180, 180, 0.342));
  }
}

@-webkit-keyframes bgAnimMob {
  0% {
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(102, 102, 102, 0.363));
            filter: blur(200px) drop-shadow(0 0 30px rgba(102, 102, 102, 0.363));
  }
  25% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(46, 46, 46, 0.527));
            filter: blur(150px) drop-shadow(0 0 30px rgba(46, 46, 46, 0.527));
  }
  50% {
    -webkit-filter: blur(120px) drop-shadow(0 0 30px rgba(20, 20, 20, 0.521));
            filter: blur(120px) drop-shadow(0 0 30px rgba(20, 20, 20, 0.521));
  }
  75% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(56, 56, 56, 0.466));
            filter: blur(150px) drop-shadow(0 0 30px rgba(56, 56, 56, 0.466));
  }
  100% {
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(114, 114, 114, 0.342));
            filter: blur(200px) drop-shadow(0 0 30px rgba(114, 114, 114, 0.342));
  }
}

@keyframes bgAnimMob {
  0% {
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(102, 102, 102, 0.363));
            filter: blur(200px) drop-shadow(0 0 30px rgba(102, 102, 102, 0.363));
  }
  25% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(46, 46, 46, 0.527));
            filter: blur(150px) drop-shadow(0 0 30px rgba(46, 46, 46, 0.527));
  }
  50% {
    -webkit-filter: blur(120px) drop-shadow(0 0 30px rgba(20, 20, 20, 0.521));
            filter: blur(120px) drop-shadow(0 0 30px rgba(20, 20, 20, 0.521));
  }
  75% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(56, 56, 56, 0.466));
            filter: blur(150px) drop-shadow(0 0 30px rgba(56, 56, 56, 0.466));
  }
  100% {
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(114, 114, 114, 0.342));
            filter: blur(200px) drop-shadow(0 0 30px rgba(114, 114, 114, 0.342));
  }
}

main .solutionsInteractive {
  margin: 60px 0;
  text-align: center;
  padding: 0 10%;
}

main .solutionsInteractive h2 {
  font-size: 4rem;
  font-weight: 500;
}

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

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

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

main .solutionsInteractive img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main .userSolution {
  padding: 1% 0 0 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 .userSolution {
    padding: 15% 5% 0 5%;
    min-height: 55vh;
    background-size: 200% 62%;
  }
}

main .userSolution .solutionsSectionRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 2;
  padding: 0 10%;
}

@media (max-width: 800px) {
  main .userSolution .solutionsSectionRow {
    padding: 0 2%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: center;
  }
}

main .userSolution .solutionsSectionRow .solutionsDetails {
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5;
          flex: 0.5;
  padding: 45px 5%;
}

@media (max-width: 800px) {
  main .userSolution .solutionsSectionRow .solutionsDetails {
    padding: 0;
    text-align: left;
  }
}

main .userSolution .solutionsSectionRow .solutionsDetails h2 {
  font-size: 5rem;
  font-weight: 500;
  width: 90%;
}

@media (max-width: 800px) {
  main .userSolution .solutionsSectionRow .solutionsDetails h2 {
    font-size: 2rem;
    width: 100%;
  }
}

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

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

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

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

@media (max-width: 800px) {
  main .userSolution .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=crmSolutions.css.map */