/* Google fonts import nunito and poppins */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600&display=swap");

/* CSS Reset  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}

:root {
  --primary-color: #4154f1;
  --secondary-color: #012970;
  --text-color: #444444;
  --navbar-color: #013289;
}

.logo {
  width: 170px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}



body {
  font-family: "Poppins", sans-serif;
}

/* utility class start here  */
.btn__custom {
  padding: 10px 30px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  border-radius: 5px;
  transition: 0.3s ease;
}

.btn__custom:hover {
  color: #fff !important;
  box-shadow: rgb(65, 84, 241, 0.5) 0px 5px 15px;
}

.section-header {
  text-align: center;
  padding-bottom: 20px;
}
.section-header h2 {
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #4154f1;
  text-transform: uppercase;
}

/* navbar styling start here  */
.nav-link {
  color: var(--navbar-color) !important;
  font-size: 16px !important;
  letter-spacing: 1;
  font-family: "Nunito", sans-serif !important;
  font-weight: 700;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}
/* navbar styling end here  */
/* banner styling start here  */
.banner__container {
  background: url("../img/hero-bg.png");
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner__content h1 {
  font-size: 3rem !important;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner__content p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: 1;
  padding-bottom: 20px;
}
/* banner styling end here  */
/* projectio styling start here  */
.project .project__box {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
/* projectio styling end here  */
/* count styling start here  */
.project {
  padding: 70px 0 60px;
}
.project .project__box {
  display: flex;
  align-items: center;
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 10px;
}
.project .project__box i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: #4154f1;
}
.project .project__box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #0b198f;
}
.project .project__box p {
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}
/* count styling End here  */
/* about section styling start here  */
.about__content span {
 color: #4154f1;
 letter-spacing: 2px;
 display: inline;   
 margin-bottom: 05px;
 font-weight: 500;
}

.about__content h2 {
  font-size: 2rem;
  font-weight: 700;
}

.about__content p {
  font-size: 1rem;
  letter-spacing: 1px;
}
/* about section styling end here  */
/* service section styling start here  */
.services .service-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}
.services .service-box .icon {
  font-size: 36px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}
.services .service-box h3 {
  color: #444444;
  font-weight: 700;
}
.services .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 20px;
}
.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}
.services .service-box.blue {
  border-bottom: 3px solid #2db6fa;
}
.services .service-box.blue .icon {
  color: #2db6fa;
  background: #dbf3fe;
}
.services .service-box.blue .read-more {
  color: #2db6fa;
}
.services .service-box.blue:hover {
  background: #2db6fa;
}
.services .service-box.orange {
  border-bottom: 3px solid #f68c09;
}
.services .service-box.orange .icon {
  color: #f68c09;
  background: #fde3c4;
}
.services .service-box.orange .read-more {
  color: #f68c09;
}
.services .service-box.orange:hover {
  background: #f68c09;
}
.services .service-box.green {
  border-bottom: 3px solid #08da4e;
}
.services .service-box.green .icon {
  color: #08da4e;
  background: #cffddf;
}
.services .service-box.green .read-more {
  color: #08da4e;
}
.services .service-box.green:hover {
  background: #08da4e;
}
.services .service-box.red {
  border-bottom: 3px solid #e9222c;
}
.services .service-box.red .icon {
  color: #e9222c;
  background: #fef7f8;
}
.services .service-box.red .read-more {
  color: #e9222c;
}
.services .service-box.red:hover {
  background: #e9222c;
}
.services .service-box.purple {
  border-bottom: 3px solid #b50edf;
}
.services .service-box.purple .icon {
  color: #b50edf;
  background: #f8e4fd;
}
.services .service-box.purple .read-more {
  color: #b50edf;
}
.services .service-box.purple:hover {
  background: #b50edf;
}
.services .service-box.pink {
  border-bottom: 3px solid #f51f9c;
}
.services .service-box.pink .icon {
  color: #f51f9c;
  background: #feecf7;
}
.services .service-box.pink .read-more {
  color: #f51f9c;
}
.services .service-box.pink:hover {
  background: #f51f9c;
}
.services .service-box:hover h3, .services .service-box:hover p, .services .service-box:hover .read-more {
  color: #fff;
}
.services .service-box:hover .icon {
  background: #fff;
}
/* service section styling  end here  */
/* client section styling start here  */
.clients .clients-slider .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}
.clients .clients-slider .swiper-slide img:hover {
  opacity: 1;
}
.clients .clients-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4154f1;
}
.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4154f1;
}
/* client section styling End here  */
/* contact styling start here  */
.contact .info-box {
  color: #444444;
  background: #fafbff;
  padding: 30px;
}
.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  background: #fafbff;
  padding: 30px;
  height: 100%;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #4154f1;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

span a {
  text-decoration: none;
}

/* back to top styling start here  */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/* back to top styling end here  */
/* contact styling end here  */
/* Media Query Start here  */
/* media query for 991px start here  */
@media (max-width: 991px) {
  .banner__content h1 {
    font-size: 2.5rem !important;
  }

  .about__content h2 {
    font-size: 1.5rem;
    font-weight: 700;
  }
}
/* media query for 991px end here */
/* media query for 768px start here  */
@media (max-width: 768px) {
  .banner__content {
    order: 2;
  }

  .banner__image {
    order: 1;
  }
  .banner__content h1 {
    font-size: 2rem !important;
  }

  .about__content h2 {
    font-size: 1.3rem;
    font-weight: 700;
  }
}
/* media query for 768px end here */
/* media query for 350px start here  */
@media (max-width: 350px) {
  .banner__content h1 {
    font-size: 1.5rem !important;
  }

  .about__content h2 {
    font-size: 1rem;
    font-weight: 700;
  }
}
/* media query for 350px end here */
/* Media Query End here  */
