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% 2% 2% 10%;
}

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

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

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

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

@media (max-width: 800px) {
  main .solutionsSection .solutionsSectionRow .solutionsDetails p {
    margin: 40px 0px;
  }
}

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

main .solutionsSection .solutionsSectionRow .solutionsImg::after {
  position: absolute;
  content: "";
  height: 600px;
  width: 600px;
  background: rgba(153, 35, 6, 0.308);
  -webkit-filter: blur(260px) drop-shadow(0 0 30px rgba(153, 35, 6, 0.432));
          filter: blur(260px) drop-shadow(0 0 30px rgba(153, 35, 6, 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 {
  margin: 30px 0;
  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(153, 35, 6, 0.363));
            filter: blur(200px) drop-shadow(0 0 30px rgba(153, 35, 6, 0.363));
  }
  25% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(153, 35, 6, 0.527));
            filter: blur(150px) drop-shadow(0 0 30px rgba(153, 35, 6, 0.527));
  }
  50% {
    -webkit-filter: blur(140px) drop-shadow(0 0 30px rgba(153, 35, 6, 0.521));
            filter: blur(140px) drop-shadow(0 0 30px rgba(153, 35, 6, 0.521));
  }
  75% {
    -webkit-filter: blur(150px) drop-shadow(0 0 30px rgba(153, 35, 6, 0.466));
            filter: blur(150px) drop-shadow(0 0 30px rgba(153, 35, 6, 0.466));
  }
  100% {
    -webkit-filter: blur(200px) drop-shadow(0 0 30px rgba(153, 35, 6, 0.342));
            filter: blur(200px) drop-shadow(0 0 30px rgba(153, 35, 6, 0.342));
  }
}

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

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

@media (max-width: 800px) {
  main .solutionsAV {
    padding: 6% 0 18% 0;
    min-height: 55vh;
    background-size: 100% 20vh;
  }
}

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

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

@media (max-width: 800px) {
  main .solutionsAV p {
    margin: 40px 12px;
  }
}

main .solutionsAV .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 !important;
  transition: all 0.25s linear !important;
}

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

main .solutionsAV .imageContainer {
  position: relative;
}

main .solutionsAV .imageContainer::after {
  position: absolute;
  content: "";
  height: 100px;
  width: 65%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(241, 238, 54, 0.39)), color-stop(rgba(250, 91, 255, 0.308)), to(rgba(218, 37, 37, 0.308)));
  background: linear-gradient(to right, rgba(241, 238, 54, 0.39), rgba(250, 91, 255, 0.308), rgba(218, 37, 37, 0.308));
  -webkit-filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.432));
          filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.432));
  border-radius: 50%;
  top: 82%;
  left: 20%;
  bottom: 0;
  z-index: 0;
  -webkit-animation: bgAnim2 6s linear infinite alternate;
          animation: bgAnim2 6s linear infinite alternate;
}

@media (max-width: 800px) {
  main .solutionsAV .imageContainer::after {
    top: 82%;
    left: 0%;
    height: 50px;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(241, 238, 54, 0.267)), color-stop(rgba(250, 91, 255, 0.205)), to(rgba(218, 37, 37, 0.212)));
    background: linear-gradient(to right, rgba(241, 238, 54, 0.267), rgba(250, 91, 255, 0.205), rgba(218, 37, 37, 0.212));
    -webkit-filter: blur(20px) drop-shadow(0 0 10px rgba(153, 6, 6, 0.432));
            filter: blur(20px) drop-shadow(0 0 10px rgba(153, 6, 6, 0.432));
    -webkit-animation: bgAnimMob 6s linear infinite alternate;
            animation: bgAnimMob 6s linear infinite alternate;
  }
}

main .solutionsAV .imageContainer img {
  display: block;
  margin: 80px 0 0 0;
  width: 100%;
  position: relative;
  z-index: 2;
}

@-webkit-keyframes bgAnim2 {
  0% {
    -webkit-filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.363));
            filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.363));
    opacity: 0.2;
  }
  25% {
    -webkit-filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.527));
            filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.527));
    opacity: 0.4;
  }
  50% {
    -webkit-filter: blur(20px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.521));
            filter: blur(20px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.521));
    opacity: 0.6;
  }
  75% {
    -webkit-filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.466));
            filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.466));
    opacity: 0.8;
  }
  100% {
    -webkit-filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.342));
            filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.342));
  }
}

@keyframes bgAnim2 {
  0% {
    -webkit-filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.363));
            filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.363));
    opacity: 0.2;
  }
  25% {
    -webkit-filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.527));
            filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.527));
    opacity: 0.4;
  }
  50% {
    -webkit-filter: blur(20px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.521));
            filter: blur(20px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.521));
    opacity: 0.6;
  }
  75% {
    -webkit-filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.466));
            filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.466));
    opacity: 0.8;
  }
  100% {
    -webkit-filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.342));
            filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.342));
  }
}

@-webkit-keyframes bgAnimMob {
  0% {
    -webkit-filter: blur(20px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.363));
            filter: blur(20px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.363));
    opacity: 0.2;
  }
  25% {
    -webkit-filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.527));
            filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.527));
    opacity: 0.4;
  }
  50% {
    -webkit-filter: blur(20px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.521));
            filter: blur(20px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.521));
    opacity: 0.6;
  }
  75% {
    -webkit-filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.466));
            filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.466));
    opacity: 0.8;
  }
  100% {
    -webkit-filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.342));
            filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.342));
  }
}

@keyframes bgAnimMob {
  0% {
    -webkit-filter: blur(20px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.363));
            filter: blur(20px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.363));
    opacity: 0.2;
  }
  25% {
    -webkit-filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.527));
            filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.527));
    opacity: 0.4;
  }
  50% {
    -webkit-filter: blur(20px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.521));
            filter: blur(20px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.521));
    opacity: 0.6;
  }
  75% {
    -webkit-filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.466));
            filter: blur(30px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.466));
    opacity: 0.8;
  }
  100% {
    -webkit-filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.342));
            filter: blur(40px) drop-shadow(0 0 30px rgba(153, 6, 6, 0.342));
  }
}

main .appSolution {
  padding: 0 0 10% 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% 2% 15% 2%;
    min-height: 55vh;
    background-size: 100% 20vh;
  }
}

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

@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;
    padding: 0 6%;
  }
}

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

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

@media (max-width: 800px) {
  main .appSolution .solutionsSectionRow .solutionsDetails h2 {
    font-size: 1.2rem;
  }
}

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.6;
      -ms-flex: 0.6;
          flex: 0.6;
  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: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}

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

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

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