
/* loader */
.loader.active{
  display: flex;
}
.loader{
  display: none;
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
	margin: 0;
  width: 100%;
	justify-content: center;
	align-items: center;
	height: 100vh;
  z-index: 99999;
	background-color: #000614;
  background-image: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,153,212,0) calc(15% + 100px), rgba(0,99,138,0) calc(85% + 100px), rgba(0,0,0,0.15) 100%);
}
body.loader-active{
  overflow: hidden;
}
.spinner {
  display: grid;
  grid-template-columns: repeat(3, 20px);
  grid-template-rows: repeat(3, 20px);
  grid-gap: 5px;
  justify-items: center;
  align-items: center;
}
.square {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0, 0, 255, 0.5);
  animation: scaleInOut 1s infinite;
}
@keyframes scaleInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.7);
  }
}

/* comman */
body{
  margin: 0;
  overflow-x: hidden;
  font:normal 75% Arial, Helvetica, sans-serif;
  font-family: 'Poppins', sans-serif;
}
*{
  box-sizing: border-box;
}
img{
  height: 100%;
  width: 100%;
}
ul{
  padding: 0;
  margin: 0;
}
.button{
  border-radius: 5px;
  border: 2px solid #329ec9;
  padding: 10px 30px;
  background-color: transparent;
  font-weight: 600;
  color: #329ec9;
  position: relative;
  box-shadow: 1px 1px 10px #00000040;
  overflow: hidden;
  font-size: 16px;
}
.button::after{
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  left: -100%;
  background-color: #329ec9;
  width: 100%;
  transition: all 0.5s;
  z-index: -1;
}
.button:hover{
  transition: all 0.5s;
  border: 2px solid #fff;
  color: #fff;
}
.button:hover::after{
  left: 0;
  transition: all 0.5s;
}
section{
  padding: 75px 0;
  overflow: hidden;
}
.heading{
  position: relative;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 20px;
}
.heading::after{
  position: absolute;
  content: "";
  height: 4px;
  width: 60px;
  background-color: #329ec9;
  left: 0;
  bottom: 0;
}
.heading::before{
  position: absolute;
  content: "";
  height: 4px;
  width: 10px;
  background-color: #329ec9;
  left: 70px;
  bottom: 0;
}
.heading.center::after{
  left: 50%;
  transform: translateX(-70%);
}
.heading.center::before{
  left: 50%;
  transform: translateX(240%);  
}
.bg-blue{
  background-color: #eef7fb;
}
::-moz-selection { 
  color: #fff;
  background: #000614;
}
::selection {
  color: #fff;
  background: #000614;  
}
.animation-section{
  position: relative;
  overflow: hidden;
}
.animation-2,
.animation{
  position: absolute;
  height: 400px;
  width: 400px;
  top: -200px;
  right: -100px;
}
.animation-2 img{
  animation: circle 20s linear infinite;
}
@keyframes circle{
  0%{
    transform:rotate(0deg);
  
  }
  100%{
    transform:rotate(360deg)
  }
}
.animation img{
  animation: circle2 20s linear infinite;
}
@keyframes circle2{
  0%{
    transform:rotate(360deg);
  
  }
  100%{
    transform:rotate(0deg)
  }
}

/* header */
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 25px 30px;
  z-index: 99;
  transition: all 0.5s;
  border-bottom: 2px solid transparent;
}
.navbar-brand{
  color: #fff;
  font-weight: 600;
  font-size: 30px;
}
.nav-link{  
  font-size: 16px;
  margin: 0 15px;
  color: #fff;
}
.nav-link:hover{
  color: #329ec9;
}
.navbar-nav .nav-link.active{
  color: #329ec9;
  border-bottom: 2px solid #329ec9;
}
.navbar{
  padding: 0;
}
.header.scrolled{
  box-shadow: 0px 5px 8px #00000030;
  padding: 15px 30px;
  transition: all 0.5s;
  background-color: #fff;
  border-bottom: 2px solid #329ec9;
}
.header.scrolled .navbar-brand{
  color: #329ec9;
}
.header.scrolled .nav-link{
  color: #000000;
}

/* hero-section */
.hero-img img{
  object-fit: contain;
}
.hero-section{
  display: flex;
  align-items: center;
  position: relative;
  min-height: 100vh;
}
.hero-content img{
  height: 100px;
  width: auto;
  margin-bottom: 20px;
}
.hero-content h1 span{
  color: #329ec9;
}
.hero-content p{
  font-size: 16px;
  color: #fff;
  max-width: 750px;
  margin: 0 auto 30px;
}
.hero-content h1{
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 59px;
  line-height: 1.2;
  color: #fff;
}
/* Hero section-animation */
canvas {
  display: block;
}
#particles-js-blur{
  opacity: 0.3;
  filter: blur(3px);
}
#particles-js-blur,
#particles-js {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
#particles-js{
  background-image: url(../images/Bg.jpg);
}
.count-particles{
  background: #000614;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.js-count-particles{
  font-size: 1.1em;
}
#stats{
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}
.count-particles{
  border-radius: 0 0 3px 3px;
}

/* counter-section */
.project-counter{
  position: relative;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  max-width: 1199px;
  margin: -70px auto 25px;
  border: 2px solid #329ec9;
  padding: 30px;
  border-radius: 20px;
  justify-content: space-around;
}
.project-counter div{
  width: 25%;
  text-align: center;
  border-right: 2px solid #fff;
}
.project-counter div:last-child{
  border: 0;
}
.project-counter h6{
  color: #329ec9;
  font-size: 30px;
  margin-bottom: 10px;
}
.project-counter span{
  color: #fff;
  font-size: 20px;
}

/* our-services */
.our-services{
  position: relative;
  background-color: #eef7fb;
}
.services-card.responsive{
  background-color: #dcc2ff;
}
.services-card.maintenance{
  background-color: #4ed1e2;
}
.services-card.seo{
  background-color: #b4ddbf;
}
.services-card.document{
  background-color: #f8dcb4;
}
.services-card.quality{
  background-color: #f2c6b9;
}
.services-card.quality-code{
  background-color: #edb8ee;
}
.our-services .col-lg-4{
  margin-bottom: 25px;
}
.our-services-heading p{
  /* max-width: 700px; */
  font-size: 18px;
  color: #000614;
}
.our-services-heading{
  margin-bottom: 20px;
}
.services-card:hover{
  box-shadow: 0px 8px 10px #00000020;
}
.services-card{
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 20px;
}
.services-card div img{
  width: 30px;
}
.services-card p{
  font-size: 16px;
}
.services-card h6{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.services-card div{
  margin-bottom: 20px;
  height: 64px;
  width: 64px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* technology section */
.technology-box img{
  width: 50px;
  height: 50px;
}
.technology-box{
  margin: 0 15px 30px;
  box-shadow: 0 3px 16px 16px rgba(163, 227, 243, 0.15);
  max-width: calc(16.66% - 30px);
  padding: 25px;
  background-color: #fff;
  text-align: center;
}
.technology-box h6{
  font-size: 20px;
  color: #222;
  font-weight: 600;
  margin-top: 20px;
}


/* help section */
.help-box{
  margin-bottom: 80px;
}
.help .col-lg-4 .help-box:last-child{
  margin-bottom: 0;
}
.help-box h6{
  font-size: 22px;
  color: #000614;
  margin-bottom: 10px;
}
.help-box p{
  font-size: 16px;
  color: #000614;
  margin-bottom: 0;
  max-width: 350px;
}
.help-box img{
  height: 30px;
  width: 30px;
  color: #329ec9;
  margin-bottom: 15px;
}
.help-img h3{
  color: #fff;
  font-size: 26px;
  max-width: 250px;
  line-height: 1.5;
}
.help-img a{
  margin-top: auto;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
}
.help-img svg{
  margin-top: auto;
  margin-bottom: 40px;
  font-size: 30px;
  color: #fff;
}
.help-img{
  padding: 50px 10px;
  z-index: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 500px;
  position: relative;
  width: 100%;
  border-radius: 10px;
  background-position: 90%;
  background-size: cover;
  background-image: url(../images/technology-bg.jpeg);
}
.help-img::after{
  content: "";
  height: 100%;
  z-index: -1;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border-radius: 10px;
  background: linear-gradient(160.02deg, rgba(50, 158, 201, 0.30) 0%, rgba(50, 158, 201, 0.70) 0.01%, rgba(49, 156, 199, 0.47) 16.03%, rgba(0, 6, 20, 0.70) 47.64%, rgba(0, 6, 20, 0.97) 99.27%);
}

/* our clients */
.clients{
  background-color: #eef7fb;
}
.client-carousel .item img{
  height: 75px;
  margin: 0 auto;
  width: auto;
  filter: grayscale(1);
  transition: all 0.4s;
}
.client-carousel .item:hover img{
  filter: none;
  cursor: pointer;
  transition: all 0.4s;
}

/* contact-us-section */
.contact-us-input{
  margin-top: 30px;
  position: relative;
}
.contact-us-input input{
  padding: 15px 20px;
  border: 2px solid #329ec9;
  font-size: 16px;
  color: #329ec9;
  border-radius: 5px;
  width: 100%;
}
.contact-us-input .button{
  top: 50%;
  transform: translateY(-50%);
  box-shadow: none;
  color: #fff;
  background-color: #329ec9;
  position: absolute;
  width: max-content;
  right: 5px;
}

/* testimonial */
.testimonial{
  height: 500px;
  position: relative;
  background-image: url(../images/testimonial.jpg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.testimonial-heading{
  text-align: center;
  font-size: 30px;
  color: #fff;
  margin-bottom: 30px;
}
.testimonial::after{
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #329ec9;
  opacity: 0.8;
  content: "";
  position: absolute;
}

/* footer */
.footer{
  border-top: 2px solid #329ec9;
  background-color: #eef7fb;
  padding-top: 50px;
}
.footer p{
  font-size: 16px;
  color: #000614;
  margin: 0 20px 0 0;
}
.sub-footer{
  border-top: 1px solid lightgray;
  padding: 10px 0;
}
.footer-icon{
  list-style: none;
  display: flex;
}
.footer-icon li{
  margin-right: 10px;
}
.footer-icon li:last-child{
  margin: 0;
}
.footer-icon li a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  height: 40px;
  width: 40px;
  border-radius: 50px;
  background-color: #13E8E9;
  color: #fff;
}
.sub-footer{
  margin-top: 25px;
}
.sub-footer a{
  font-size: 14px;
  color: #000614;
  text-decoration: none;
}
.footer-content h1{
  margin-bottom: 20px;
  color: #000614;
}
.footer-content p{
  font-size: 18px;
  color: #000614;
  margin-top: -80px;
}
.footer-link li a{
  align-items: center;
  display: flex;
  font-size: 16px;
  color: #000614;
  text-decoration: none;
}
.footer-link li{
  margin-bottom: 15px;
  list-style: none;
}
.footer-link li a p{
  margin: 0;
}
.footer-link li span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  height: 40px;
  min-width: 40px;
  border-radius: 50px;
  background-color: #13E8E9;
  color: #fff;
  margin-right: 10px;
}


/* contact-us-page */
.sub-page-hero{
  min-height: 400px;
}
.page-heading{
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.contact-info p{
  font-size: 18px;
}
.contact-info .footer-link li span{
  margin-right: 20px;
}
.contact-info .footer-link li{
  margin-bottom: 30px;
  max-width: 400px;
}
.contact-form{
  background-color: #eef7fb;
  border-radius: 20px;
  padding: 50px;
}
.contact-form h6{
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-form textarea,
.contact-form input{
  margin-bottom: 20px;
  font-size: 16px;
  color: #000614;
  width: 100%;
  border: 1px solid #329ec9;
  border-radius: 5px;
  padding: 10px 20px;
}
.contact-form label{
  font-size: 14px;
  color: #000614;
  margin-bottom: 5px;
}
.contact-form input[type=submit]{
  background-color: #329ec9;
  color: #fff;
  transition: all 0.5s;
}
.contact-form input[type=submit]:hover{
  background-color: #fff;
  color: #329ec9;
  transition: all 0.5s;
}

/* services-page */
.portfolio-card{
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.5s;
  border: 2px solid #fff;
  padding: 10px;
  box-shadow: 0 0 10px #00000040;
}
.portfolio-card svg{
  font-size: 20px;
}
.portfolio-card:hover{
  cursor: pointer;
  border: 2px solid #329ec9;
  transition: all 0.5s;
}
.portfolio-card h6{
  color: #000614;
  font-size: 20px;
}
.portfolio-card img{
  border-radius: 10px;
  margin-bottom: 20px;
}
.our-portfolio{
  background-color: #eef7fb;
}
.our-portfolio .col-lg-4{
  margin-bottom: 25px;
}

/* carrer  */
.benefite-content ul li{
  list-style: none;
  font-weight: 600;
  color: #000614;
  font-size: 18px;
  margin-bottom: 5px;
}
.benefite-content ul li svg{
  margin-right: 10px;
  font-size: 15px;
}
.main-position-box{
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px #00000030;
  background-color: #fff;
  padding: 20px;
  border: 2px solid #fff;
  transition: all 0.5s;
}
.main-position-box:hover{
  transition: all 0.5s;
  border: 2px solid #329ec9;
}
.main-position-box .card-heading{
  font-size: 20px;
  color: #329ec9;
  padding-bottom: 20px;
  border-bottom: 1px solid #329ec9;
}
.main-position-box .card-content h6{
  font-size: 18px;
}
.main-position-box .card-content{
  padding-top: 10px;
}
.main-position-box .card-content .experience{
  font-size: 18px;
  color: #000614;
}
.sub-content li{
  margin-bottom: 5px;
}
.sub-content{
  margin-left: 10px;
  margin-bottom: 20px;
  color: #000614;
  font-size: 14px;
  list-style: none;
}
.sub-content svg{
  margin-right: 10px;
}
.main-position-box .card-content a{
  color: #329ec9;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1;
  margin: 10px 0;
}
.main-position-box .card-content a:hover svg{
  margin-left: 15px;
  transition: all 0.5s;
}
.main-position-box .card-content a svg{
  transition: all 0.5s;
  margin-left: 5px;
}

/* services-page services-section */
.services .col-lg-4{
  margin-bottom: 25px;
}
.services-page-card{
  height: 100%;
  background: #fff;
  padding: 24px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
}
.services-page-card span svg{
  height: auto;
  width: 32px;
}
.services-page-card p{
  font-size: 16px;
  font-weight: 500;
}
.services-page-card h6{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.services-page-card span{
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin-bottom: 20px;
}
.services-page-card:hover span{
  background: #fff !important;
}
.services-page-card:hover{
  color: #fff;
}
.services-page-card span path{
  fill: #fff;
}
.services-page-card.purple span{
  background: linear-gradient(137.01deg, #b99efe 4.72%, #5946f1 97.59%);;
  box-shadow: 0px 5px 10px rgba(93, 73, 242, 0.5);
}
.services-page-card.purple:hover{
  box-shadow: 0px 5px 10px rgb(93 73 242 / 50%);
  background: linear-gradient(137.01deg, #b99efe 4.72%, #5946f1 97.59%);
}
.services-page-card.purple:hover span path{
  fill: #5d49f280;
}
.services-page-card.pink span{
  background: linear-gradient(137.01deg, #fe9ee9 4.72%, #f146ad 97.59%);
  box-shadow: 0px 5px 10px rgb(242 73 225 / 50%);
}
.services-page-card.pink:hover{
  box-shadow: 0px 5px 10px rgb(242 73 225 / 50%);
  background: linear-gradient(137.01deg, #fe9ee9 4.72%, #f146ad 97.59%);
}
.services-page-card.pink:hover span path{
  fill: #f146ad;
}
.services-page-card.green span{
  background: linear-gradient(135deg, #aeffec 0%, #009e78 100%);
  box-shadow: 0px 5px 10px rgb(93 73 242 / 50%);
}
.services-page-card.green:hover{
  box-shadow: 0px 0px 30px #28b492;
  background: linear-gradient(135deg, #aeffec 0%, #009e78 100%);
}
.services-page-card.green:hover span path{
  fill: #009e78;
}
.services-page-card.orange span{
  background: linear-gradient(137.01deg, #ffb57c 4.72%, #ff894b 97.59%);
  box-shadow: 0px 4px 10px rgb(255 137 75 / 50%);
}
.services-page-card.orange:hover{
  box-shadow: 0px 4px 10px rgb(255 137 75 / 50%);
  background: linear-gradient(137.01deg, #ffb57c 4.72%, #ff894b 97.59%);
}
.services-page-card.orange:hover span path{
  fill: #ff894b;
}
.services-page-card.blue span{
  background: linear-gradient(137.01deg, #97c1ff 4.72%, #1f79ff 97.59%);
  box-shadow: 0px 4px 10px #5f9fff;
}
.services-page-card.blue:hover{
  box-shadow: 0px 4px 10px #5f9fff;
  background: linear-gradient(137.01deg, #97c1ff 4.72%, #1f79ff 97.59%);
}
.services-page-card.blue:hover span path{
  fill: #1f79ff;
}
.services-page-card.red span{
  background: linear-gradient(137.01deg, #ff97a3 4.72%, #e45266 97.59%);
  box-shadow: 0px 4px 10px rgb(255 80 103 / 50%);
}
.services-page-card.red:hover{
  box-shadow: 0px 4px 10px rgb(255 80 103 / 50%);
  background: linear-gradient(137.01deg, #ff97a3 4.72%, #e45266 97.59%);
}
.services-page-card.red:hover span path{
  fill: #e45266;
}
.services-page-card.light-green span{
  background: linear-gradient(137.01deg, #b6fa97 4.72%, #45ba0e 97.59%);
  box-shadow: 0px 4px 10px rgb(35 108 0 / 50%);
}
.services-page-card.light-green:hover{
  box-shadow: 0px 4px 10px rgb(35 108 0 / 50%);
  background: linear-gradient(137.01deg, #b6fa97 4.72%, #45ba0e 97.59%);
}
.services-page-card.light-green:hover span path{
  fill: #45ba0e;
}
.services-page-card.sky-blue span{
  background: linear-gradient(137.01deg, #9edbfe 4.72%, #1fd7ff 97.59%);
  box-shadow: 0px 4px 9px #9edbfe;
}
.services-page-card.sky-blue:hover{
  box-shadow: 0px 4px 9px #9edbfe;
  background: linear-gradient(137.01deg, #9edbfe 4.72%, #1fd7ff 97.59%);
}
.services-page-card.sky-blue:hover span path{
  fill: #1fd7ff;
}
.services-page-card.yellow span{
  background: linear-gradient(137.01deg, #fedd9e 4.72%, #ffb31f 97.59%);
  box-shadow: 0px 5px 10px rgb(255 182 39 / 50%);
}
.services-page-card.yellow:hover{
  box-shadow: 0px 5px 10px rgb(255 182 39 / 50%);
  background: linear-gradient(137.01deg, #fedd9e 4.72%, #ffb31f 97.59%);
}
.services-page-card.yellow:hover span path{
  fill: #ffb31f;
}

.slogn-margin{
  margin-top: 100px;
}
.process-flow-image{
  width: 40% !important;  
  height: 100% !important;
  margin-top: 25px !important;
}

.width-size{
  max-width: fit-content !important;
}

.img-size{
          width: 20%;
      }
      
@media screen and (max-width: 768px) {
  .img-size {
    width: auto;
    margin-left: -44px;
  }
}