@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap");
body {
  font-family: "Nunito", sans-serif;
}
a {
  text-decoration: none !important;
}
nav.navbar {
  position: absolute;
  width: 100%;
  top: 0px;
  z-index: 1000;
  padding-bottom: 16px;
  padding-top: 16px;
}

.nav-sticky.fixed {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.container {
  justify-content: flex-end;
}
.rightcontainer {
  justify-content: flex-end;
}
nav .navbar-brand img {
  width: 200px;
}
nav .navbar-nav .nav-item {
  font-family: "Nunito", sans-serif;
  margin: auto;
  color: #292930;
  font-weight: 600;
  margin: 0px 25px;
}
nav .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 8px 0px;
}
nav .navbar-nav .nav-item .nav-link.active::after,
nav .navbar-nav .nav-item .nav-link:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #ffac2f, #5956e8);
  border-radius: 5px;
}
nav .navbar-nav .btn-dark {
  border-radius: 7px;
  background: #292930;
  color: #fff !important;
  padding: 12px 20px 12px 20px !important;
  font-weight: 600;
}

/* .navbar-nav li:hover {
  border-bottom: 2px solid blue;
} */

/* Hero Container */
.hero-slider {
  position: relative;
  background: linear-gradient(111deg, #e9f7ff 9.95%, #fff1db 85.17%);
  /* background: url(./images/hero-slider.svg); */
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}
.hero-slider::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0;
  background-image: url(../images/hero-slider-right.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.hero-slider .right-content {
  position: relative;
}
.hero-slider .right-content .image-content {
  position: relative;
}
.hero-slider .right-content .image-content::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(../images/main-slide.svg);
  background-size: 500px 500px;
  background-repeat: no-repeat;
  background-position: center;
}
.container-section {
  width: 90%;
  display: flex;
}
.hero-slider .left-content {
  width: 100%;
  margin: auto;
}
.hero-slider .left-content h2 {
  color: #292930;
  font-family: "Nunito", sans-serif;
  font-size: 53px;
  font-style: normal;
  font-weight: 800;
  line-height: 110.5%;
}
.hero-slider .left-content span {
  color: #ffb545;
  font-family: "Nunito", sans-serif;
}
.hero-slider .left-content p {
  color: #555;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 156.5%;
}
.hero-slider .left-content .btn-outline-secondary {
  padding: 15px 25px 15px 25px;
  border-radius: 7px;
  border: 1.5px solid #292930;
  color: #292930;
}
/* .hero-slider .left-content .btn-outline-secondary:hover {
  background-color: #292930;
  color: #fff;
} */
/* Sweep To Right */
.hero-slider .left-content .btn-outline-secondary.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  border-radius: 7px;
}
.hero-slider .left-content .btn-outline-secondary.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #292930;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 7px;
}
.hero-slider .left-content .btn-outline-secondary.hvr-sweep-to-right:hover,
.hero-slider .left-content .btn-outline-secondary.hvr-sweep-to-right:focus,
.hero-slider .left-content .btn-outline-secondary.hvr-sweep-to-right:active {
  color: white;
}
.hero-slider
  .left-content
  .btn-outline-secondary.hvr-sweep-to-right:hover:before,
.hero-slider
  .left-content
  .btn-outline-secondary.hvr-sweep-to-right:focus:before,
.hero-slider
  .left-content
  .btn-outline-secondary.hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.hero-slider .left-content button {
  display: flex;
  font-family: "Nunito", sans-serif;
  padding: 14px 21px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  border: 1.5px solid #292930;
}
.hero-slider .headerimage {
  width: 100%;
} /* End of Hero Container */

/* Media query for smaller screens */
@media (max-width: 768px) {
  .left-container {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .left-container h2 {
    font-size: 32px;
    font-weight: 800;
  }
  .left-container p {
    font-size: 12px;
    font-weight: 600;
  }
  .left-container button {
    padding: 8px;
  }
  .right-container {
    width: 100%;
  }
  .right-container img {
    width: 100%;
  }
  .headerimage {
    width: 100%;
  }
}

/* Media query for even smaller screens, e.g., mobile devices */
@media (max-width: 480px) {
  .right-container img {
    width: 100%;
  }
  .headerimage {
    width: 100%;
  }
}

/* Media query for smaller screens */
/* @media (max-width: 768px) {
  .container-section {
    flex-direction: column;
  }
  .cards {
    flex-direction: column;
  }
  .card {
    width: 90%; 
    margin: 10px 0px;
  }
} */

/* Media query for even smaller screens, e.g., mobile devices */
/* @media (max-width: 480px) {
  .container-section {
    flex-direction: column;
  }
  .cards {
    flex-direction: column;
  }
  .card {
    width: 90%;
    margin: 10px 0px;
  }
} */

/* About Us section  */
.connection h1.heading {
  color: #242331;
  font-size: 32px;
  text-transform: capitalize;
}
.connection .card.active {
  border-radius: 20px;
  background: rgba(52, 62, 129, 0.03);
}
.connection .card:hover {
  border-radius: 20px;
  background: rgba(52, 62, 129, 0.03);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.connection .card img {
  width: 275px;
  margin-left: auto;
  margin-right: auto;
}
.connection .card.active .card-body a {
  color: #343e81;
  text-decoration: dashed;
  position: relative;
}
.connection .card.active .card-body a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #343e81;
}
.connection .card .card-body{
  padding: 15px 25px;
}
.connection .card .card-body .card-text{
  color: #797979;
}
.connection .card .card-body a {
  color: #242331;
  text-decoration: dashed;
  position: relative;
}
.connection .card .card-body a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #242331;
}
.connection .card .card-body a .aboutuscontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-image: url('images/Background.png'); */
}
.container-section1 {
  width: 90%;
  display: flex;
}
.about-us .heading h1 {
  font-size: 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.about-us .heading h1 .icon {
  background-color: #ffb545;
  color: #866c12;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  font-weight: 100;
}
.about-us .list-content h6 {
  color: #343e81;
  font-size: 18px;
  font-weight: 600;
}
.about-us .list-content p {
  color: #737b89;
}
.left-container1 h2 {
  color: #292930;
  font-family: "Nunito", sans-serif;
  font-size: 34.142px;
  font-style: normal;
  font-weight: 500;
  line-height: 43.42px;
}
.left-container1 span {
  color: #ffb545;
  font-family: "Nunito", sans-serif;
}
.left-container1 p {
  color: #737b89;
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.26px;
}
.left-container1 button {
  display: flex;
  font-family: "Nunito", sans-serif;
  padding: 14px 21px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  border: 1.5px solid #292930;
}
.heading {
  color: #343e81;
  font-family: "Nunito", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  /* text-transform: uppercase; */
  gap: 10px;
}
.heading img {
  width: auto;
}
.right-container1 img {
  /* display: flex; */
  margin: auto;
  width: 520px;
} /* End of Hero Container */

/* Media query for smaller screens */
/* @media (max-width: 768px) {
  .container-section1 {
    flex-direction: column;
  }
  .left-container1 {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .left-container1 h2 {
    font-size: 32px;
    font-weight: 800;
  }
  .left-container1 p {
    font-size: 12px;
    font-weight: 600;
  }
  .left-container1 button {
    padding: 8px;
  }
  .right-container1 {
    width: 100%;
  }
  .right-container1 img {
    width: 80%;
  }
} */

/* Media query for even smaller screens, e.g., mobile devices */
/* @media (max-width: 480px) {
  .right-container1 img {
    width: 80%;
  }
} */

/* Services Section */
.services {
  background-color: #292930;
}
.services .heading h1 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.services .heading h1 .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #343e81;
  color: #ffac2f;
  display: inline-block;
  text-align: center;
  letter-spacing: 0px;
}
.services .heading h1 .icon i{
  -webkit-text-stroke: 1px #343e81;
}
.services h2 {
  color: white;
}
.services .card {
  border-radius: 20px;
  border: 1px solid #424245;
  background: linear-gradient(180deg, #36363e 0%, #292930 100%);
}
.services .card .card-body{

}
.services .card .card-body .icon {
  background: #292930;
  width: 150px;
  height: 150px;
  line-height: 150px;
  border-radius: 50%;
  text-align: center;
}
.services .card .card-body .icon img {
  width: 70px;
  object-fit: cover;
}
.services .card .card-body .btn2 {
  color: #525255;
  display: inline-block;
  padding: 15px 70px 15px 70px;
  border-radius: 7px;
  border: 1px solid #535355;
}
/* .services .card .card-body .btn2:hover {
  background: #ffdc60;
  color: #292930;
} */

/* Sweep To Right */
.services .card .card-body .btn2.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  border-radius: 7px;
}
.services .card .card-body .btn2.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffdc60;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 7px;
}
.services .card .card-body .btn2.hvr-sweep-to-right:hover,
.services .card .card-body .btn2.hvr-sweep-to-right:focus,
.services .card .card-body .btn2.hvr-sweep-to-right:active {
  color: #292930;
}
.services .card .card-body .btn2.hvr-sweep-to-right:hover i,
.services .card .card-body .btn2.hvr-sweep-to-right:focus i,
.services .card .card-body .btn2.hvr-sweep-to-right:active i {
  color: #5956E8;
}
.services .card .card-body .btn2.hvr-sweep-to-right:hover:before,
.services .card .card-body .btn2.hvr-sweep-to-right:focus:before,
.services .card .card-body .btn2.hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.cards-service {
  justify-content: center;
  align-items: center;
  margin: auto;
}
/* .card-service {
  border: 1px solid grey;
  border-radius: 16px !important;
} */
.card-service:hover {
  background-color: #242331;
}
.card-service img {
  width: 60%;
  margin: auto;
}
.card-service h5 {
  color: white;
  font-family: "Nunito", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.card-service p {
  color: white;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 157.4%;
}
.btn2 {
  color: white;
  font-family: "Nunito", sans-serif;
  font-size: 17.297px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .container-section {
    flex-direction: column;
  }
  .cards-service {
    flex-direction: column;
  }
  .card-service {
    width: 100%; /* Adjust the height for smaller screens as needed */
    margin: 10px 0px;
  }
}

/* Media query for even smaller screens, e.g., mobile devices */
@media (max-width: 480px) {
  .container-section {
    flex-direction: column;
  }
  .cards-service {
    flex-direction: column;
  }
  .card-service {
    width: 90%; /* Adjust the height for smaller screens as needed */
    margin: 10px 0px;
  }
}
/* End of Services Section */

.work-section .card {
  background: linear-gradient(111deg, #e9f7ff 9.95%, #fff1db 85.17%);
  border-radius: 20px;
}
.work-section .card .card-body {
  padding: 70px 10px;
}
.work-section .card .card-body .heading h1 {
  color: #343e81;
  font-size: 28px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.work-section .card .card-body .heading h2 {
  color: #292930;
  font-size: 38px;
  font-weight: 500;
  font-family: "Nunito", sans-serif;
  text-transform: capitalize;
}
.work-container {
  width: 90%;
  margin: auto;
  border-radius: 12px;
  background-image: url("images/work.png");
}
.inner-container {
  width: 80%;
  margin: auto;
}
.imagemain {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin: auto;
}
.img3 {
  width: 80%;
  margin: auto;
}
.rightbox {
  width: 50%;
  padding: 0px 15px;
  align-items: center;
}
.image2 img {
  width: 86px;
  object-fit: cover;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .image1 {
    flex-direction: column;
  }
  .imagemain {
    width: 100%;
    margin: auto;
  }
  .imagemain img {
    width: 80%;
  }
  .rightbox {
    width: 100%;
  }
  .image2 img {
    width: 54px;
  }
}

/* Media query for even smaller screens, e.g., mobile devices */
@media (max-width: 480px) {
  .image1 {
    flex-direction: column;
  }
  .imagemain {
    width: 100%;
    margin: auto;
  }
  .imagemain img {
    width: 80%;
  }
  .rightbox {
    width: 100%;
  }
  .image2 img {
    width: 54px;
  }
}

/* consultation Section */
.consultation {
  position: relative;
  background-color: #292930;
}
.consultation .card-consult {
  color: white !important;
}
.consultation .card-consult:nth-child(1n) h2 span {
  color: #5956e8;
}
.consultation .card-consult:nth-child(2n) h2 span {
  color: #ffac2f;
}
.consultation .card-consult:nth-child(3n) h2 span {
  color: #ffdc60;
}
.consultation .card-consult:nth-child(4n) h2 span {
  color: #38e55e;
}
.consultation .card {
  position: relative;
  border-radius: 20px;
  z-index: -1;
}
.consultation .card::before {
}
.consultation .card .card-body {
  position: relative;
  padding: 50px 50px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  background-image: url(../images/newsletter2.png);
}
.consultation .card .card-body::before {
  content: "";
  position: absolute;
  background-image: url(../images/newsletter.png);
  border-radius: 20px;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.consultation .card .card-body h1 {
  font-weight: 600;
}
.container2 {
  display: flex;
  width: 80%;
  margin: auto;
}
.right button {
  display: flex;
  color: white;
  padding: 10px 21px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  background: #292930;
  box-shadow: 0px 1px 2px 0px rgba(105, 81, 255, 0.05);
}

/* Media query for smaller screens */
/* @media (max-width: 768px) {
  .container2 {
    flex-direction: column;
  }
  .left {
    width: 100%;
  }
  .right {
    width: 100%;
  }
  .text-area {
    flex-direction: column;
  }
  .card-consult {
    display: contents;
  }
} */

/* Media query for even smaller screens, e.g., mobile devices */
/* @media (max-width: 480px) {
  .card-consult {
    width: 90%;
    margin: auto;
  }
  .text-area {
    flex-direction: column;
  }
  .container2 {
    flex-direction: column;
  }
  .left {
    width: 100%;
  }
  .right {
    width: 100%;
  }
} */

/* Testimonials */
.testimonials .heading h1 {
  color: #343e81;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.testimonials .heading h1 span {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #343e81;
  color: #ffac2f;
  display: inline-block;
  text-align: center;
  letter-spacing: 0px;
}
.testimonials .heading h1 span i{
  -webkit-text-stroke: 1px #343e81;

}
.testimonials .testimonial-carousel .card {
  border-radius: 20px;
  background: linear-gradient(110deg, #e9f7ff -8.74%, #fff1db 111.4%);
}
.testimonials .testimonial-carousel .card .card-body {
  padding: 30px 30px;
}
.testimonials .testimonial-carousel .card .card-body hr {
  opacity: 0.2;
}
.testimonials .testimonial-carousel .card .card-body .name {
  font-weight: 700;
}
.testimonials .testimonial-carousel .card .card-body .designation {
  color: #555;
}
.testimonials .testimonial-carousel .card .card-body .bg-white {
  padding: 30px 28px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(146, 146, 146, 0.25);
  height: 180px;
  overflow: hidden;
}
.blogs .heading h1 {
  color: #343e81;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 4px;
  text-transform: uppercase !important;
}
.blogs .heading h1 span {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #343e81;
  color: #ffac2f;
  display: inline-block;
  text-align: center;
  letter-spacing: 0px;
}
.blogs .heading h1 span i{
  -webkit-text-stroke: 1px #343e81;

}
.blogs .blog-carousel .item .card {
  border-radius: 20px;
  background: #f9f9f9;
}
.blogs .blog-carousel .item .card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}
.blogs-inner .card {
  border-radius: 20px;
  background: #f9f9f9;
}
.blogs-inner .card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}


.card-testimonials {
  width: 100%;
  justify-content: center;
  align-items: center;
}
.text-header {
  width: 80%;
  margin: auto;
  align-items: center;
}
.text-header img {
  width: 39px;
  height: 39px;
}
.text-area1 {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.text-area1 h2 {
  color: #343e81;
  font-family: "Nunito", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0px;
  line-height: 156.5%;
  letter-spacing: 4.32px;
  text-transform: uppercase;
}

.text-area1 img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-area3 h3 {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  text-align: center;
}
.card-testimonials1 {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cards-testimonials1 {
  justify-content: center;
}
.card-testimonial {
  width: 45%;
  /* margin: 10px 20px ; */
  margin: auto;
}
.outer-container {
  width: 100%;
  padding: 15px 0px;
  border-radius: 7px;
  background: linear-gradient(151deg, #fff8f8 10.38%, #f5f7ff 95.44%);
}
.head {
  width: 100%;
  justify-content: space-between;
}
.inner-container1 {
  width: 80%;
  margin: auto;
  padding: 15px;
  border-radius: 8px;
  background-color: white;
}
.star-rating {
  display: flex;
  align-items: center;
}
.star-rating img {
  width: 21px;
  height: 21px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .cards-testimonials1 {
    flex-direction: column;
  }
  .card-testimonial {
    width: 90%;
  }
}

/* Media query for even smaller screens, e.g., mobile devices */
@media (max-width: 480px) {
  .text-area1 h2 {
    font-size: 25px;
  }
  .cards-testimonials1 {
    flex-direction: column;
  }
  .card-testimonial {
    width: 90%;
  }
  .hero-slider{
    height: 100vh;
  }
  .testimonials .testimonial-carousel .card .card-body .bg-white{
    height: unset;
  }
  .about-us .heading h1{
    font-size: 28px;
    letter-spacing: 1px;
  }
  .about-us .heading h1 .icon{
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .left-container1 h2{
    font-size: 28px;
  }
  .services .heading h1{
    font-size: 28px;
    letter-spacing: 1px;
  }
  .services .heading h1 .icon{
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .testimonials .heading h1{
    font-size: 28px;
    letter-spacing: 1px;
  }
  .testimonials .heading h1 span{
    width: 50px;
    height: 50px;
    line-height: 50px
  }
  .blogs .heading h1{
    font-size: 28px;
    letter-spacing: 1px;
  }
  .blogs .heading h1 span{
    width: 50px;
    height: 50px;
    line-height: 50px
  }
}
@media (max-width: 424px) {
  .text-area1 h2 {
    font-size: 19px;
  }
  .text-area3 h3 {
    font-size: 15px !important;
  }
  .star-rating img {
    width: 15px;
    height: 15px;
  }
  .text-area3 img {
    width: 32px;
  }
}

/* Insights */
.btn-insight {
  color: #242331;
  font-family: "Nunito", sans-serif;
  font-size: 17.297px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
}

/* footer */
.footer-section {
}
.footer-section .footer-top {
  background-color: #292930;
  color: white;
  padding: 50px 0px 20px 0px;
}
.footer-section .footer-top .left-section {
  padding-right: 15px;
  position: relative;
}
.footer-section .footer-top .left-section img.logo{
  width: 200px;
}
.footer-section .footer-top .left-section::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -16px;
  bottom: 0;
  width: 1px;
  height: 263px;
  background-color: #dfdfe0;
}
.footer-section .footer-top .right-section {
  padding-left: 15px;
}
.footer-section .footer-top .right-section form .input-container #email {
  width: 100%;
  padding: 10px 17px;
  border: none;
  border-radius: 50px;
  display: inline-block;
  height: 50px;
}
.footer-section .footer-top .border-end,
.footer-section .footer-top .border-start {
  border-color: #dfdfe0;
}
.footer-section .footer-bottom {
  background-color: #292930;
  color: white;
  padding: 20px 0px 20px 0px;
  border-top: 2px solid #dfdfe0;
}
.footer-section .footer-bottom ul li {
  color: #9a9ea6;
  font-weight: 400;
}
.footer-section .footer-bottom ul li a {
  color: #9a9ea6;
  font-weight: 400;
}
.footer-section .footer-bottom .copyright .social-links li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
}
.footer-section .footer-bottom .copyright .social-links li a {
  background-color: #fff;
  color: #ffb545;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
}
/* .left-section {
  width: 50%;
  padding: 21px 45px;
  border-bottom: 0.5px solid white;
}
.right-section {
  width: 50%;
  padding: 21px 45px;
  border-left: 0.1px solid white;
  border-bottom: 0.5px solid white;
} */
form {
  width: 100%;
}

.input-container {
  position: relative;
  width: 90%;
}

/* #email {
  width: 100%;
  padding: 10px 17px;
  border: none;
  border-radius: 50px;
  display: inline-block;
  height: 50px;
} */

#submit-button {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  background-color: #ffb545;
  color: white;
}
.contact {
  justify-content: space-between;
}
.contact img {
  width: 48px;
  height: 48px;
}
.lower-container {
  justify-content: space-evenly;
}
.lower-container ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0px;
  text-decoration: none;
  padding: 0px;
}
.lower-container li {
  color: #9a9ea6;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  text-decoration: none;
  list-style: none;
}
.copyright {
  width: 100%;
  margin: auto;
  justify-content: space-between;
}
.copyright img {
  width: 36px;
  height: 36px;
}
.icons p {
  color: #9a9ea6;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  text-decoration: none;
  list-style: none;
}
.footer-section p {
  color: #9a9ea6;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.footer-section a {
  color: #ffb545;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .upper-container {
    flex-direction: column;
  }
  .links ul {
    /* flex-direction: column; */
    margin: auto;
  }
  /* .copyright{
        flex-direction: column;
     } */
  .left-section {
    width: 100%;
  }
  .right-section {
    width: 100%;
  }
}

/* Media query for even smaller screens, e.g., mobile devices */
@media (max-width: 480px) {
  .upper-container {
    flex-direction: column;
  }
  .links ul {
    flex-direction: column;
  }
  .copyright {
    width: 95%;
    flex-direction: column;
  }
  .left-section {
    width: 100%;
  }
  .right-section {
    width: 100%;
  }
  .links li {
    margin: 0px 10px;
  }
}
@media (max-width: 425px) {
  .upper-container {
    flex-direction: column;
  }
  .links ul {
    flex-direction: column;
  }
  .contact {
    flex-direction: column;
  }
  .copyright {
    width: 95%;
    flex-direction: column;
  }
  .left-section {
    width: 100%;
  }
  .right-section {
    width: 100%;
  }
}
@media (max-width: 332px) {
  .upper-container {
    flex-direction: column;
  }
  .links ul {
    flex-direction: column;
  }
  .contact {
    flex-direction: column;
  }
  .copyright {
    width: 95%;
    flex-direction: column;
  }
  .left-section {
    width: 100%;
    padding: 21px 25px;
  }
  .right-section {
    width: 100%;
    padding: 21px 25px;
  }
}

.main-timeline {
  position: relative;
}

.main-timeline:before {
  content: "";
  display: block;
  width: 0px;
  height: 80%;
  background: transparent;
  border: 1px dashed #e38676;
  margin: 0 auto;
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
}

.main-timeline .timeline {
  margin-bottom: 40px;
  position: relative;
}
.main-timeline .timeline:nth-child(1n) {
  display: flex;
  align-items: center;
}
.main-timeline .timeline:nth-child(2n) {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.main-timeline .timeline:nth-child(3n) {
  display: flex;
  align-items: center;
}
.main-timeline .timeline:nth-child(4n) {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.main-timeline .timeline:after {
  content: "";
  display: block;
  clear: both;
}

.main-timeline .icon {
  width: 70px;
  height: 70px;
  line-height: 65px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  font-size: 22px;
  font-weight: bold;
}

.main-timeline .icon:before,
.main-timeline .icon:after {
  content: attr(data-count);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.33s ease-out 0s;
}

.main-timeline .icon:before {
  background: #fff;
  border: 5px solid rgba(255, 181, 69, 0.76);
  left: 0px;
}

.main-timeline .icon:after {
  border: 5px solid rgba(255, 181, 69, 0.76);
  left: 0px;
}

.main-timeline .timeline:hover .icon:before {
  left: 0px;
}

.main-timeline .timeline:hover .icon:after {
  left: 0px;
}

.main-timeline .date-content {
  width: 50%;
  float: left;
  margin-top: 22px;
  position: relative;
  text-align: center;
}

/* .main-timeline .date-content:before {
  content: "";
  width: 36.5%;
  height: 2px;
  background: #c6c6c6;
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
} */

.main-timeline .date-outer {
  width: 125px;
  height: 125px;
  font-size: 16px;
  text-align: center;
  margin: auto;
  z-index: 1;
}

.main-timeline .date-outer:before,
.main-timeline .date-outer:after {
  content: "";
  width: 125px;
  height: 125px;
  margin: 0 auto;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.33s ease-out 0s;
}

.main-timeline .date-outer:before {
  background: #fff;
  border: 2px solid #232323;
  left: -6px;
}

.main-timeline .date-outer:after {
  border: 2px solid #c6c6c6;
  left: 6px;
}

.main-timeline .timeline:hover .date-outer:before {
  left: 6px;
}

.main-timeline .timeline:hover .date-outer:after {
  left: -6px;
}

.main-timeline .date {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 27%;
  left: 0;
}

.main-timeline .month {
  font-size: 18px;
  font-weight: 700;
}

.main-timeline .year {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #232323;
  line-height: 36px;
}

.main-timeline .timeline-content {
  width: 50%;
  padding: 75px 75px 75px 50px;
  float: right;
}

.main-timeline .title {
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 15px 0;
}

.main-timeline .description {
  margin-bottom: 0;
  color: #555;
  font-size: 18px;
}

.main-timeline .timeline:nth-child(2n) .date-content {
  float: right;
}

.main-timeline .timeline:nth-child(2n) .date-content:before {
  left: 10px;
}

.main-timeline .timeline:nth-child(2n) .timeline-content {
  padding: 20px 50px 20px 0;
  text-align: right;
}

.main-breadcrumb {
  background: linear-gradient(111deg, #e9f7ff 9.95%, #fff1db 85.17%);
  text-align: center;
  height: 300px;
  overflow: hidden;
}
.main-breadcrumb .breadcrumb .breadcrumb-item {
  position: relative;
  background: #f4f6fb;
  color: #292930;
  font-size: 36px;
  padding-bottom: 15px;
  font-weight: 800;
  z-index: 2;
}
.main-breadcrumb .breadcrumb .breadcrumb-item span {
  color: #343e81;
}
.main-breadcrumb .breadcrumb .breadcrumb-item::before {
  content: "";
  position: absolute;
  background-image: url(../images/breadcrumb.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 350px;
  height: 350px;
  line-height: 350px;
  bottom: -180px;
  left: -90px;
  z-index: -1;
}
/* .main-breadcrumb .breadcrumb .breadcrumb-item::after {
  content: "";
  position: absolute;
  background-image: url(../images/breadcrumb-pattern.png);
  width: 100%;
  height: 100%;
} */
.blogs-inner .heading h1 {
  color: #292930;
  font-weight: 600;
  text-transform: capitalize;
}
.blogs-inner .item .card {
  border-radius: 20px;
  background: #f9f9f9;
}
.blogs-inner .item .card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}
.blogs-inner .item .card .card-body .btn-insight {
  text-decoration: none;
}
.blog-view .recent-blogs {
  position: sticky;
  top: 85px;
}
.blog-view .recent-blogs .card {
  border-radius: 20px;
  border: 1px solid #ffac2f;
  background: #fff;
}
.blog-view .recent-blogs .card .card-body a {
  color: #303030;
  display: block;
}
.blog-view .recent-blogs .card .card-body h6 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 600;
}
.contact-us .card {
  border: 16px solid transparent;
  border-width: 2px;
  border-image-slice: 1;
  border-style: solid;
  border-radius: 10px;
  border-image-source: linear-gradient(
    105.61deg,
    #343e81 -1.1%,
    #ffb545 100.93%
  );
}
.contact-us .card .card-body {
  padding: 35px 35px;
}
.contact-us .card .card-body h1 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}
.contact-us .card .card-body h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.contact-us .card .card-body p {
  font-family: "Mulish", sans-serif;
}
.contact-us .card .card-body .contact-details {
  padding-left: 0px;
}
.contact-us .card .card-body .contact-details li {
  list-style: none;
  color: #343e81;
  margin: 12px 0px;
  font-family: "Mulish", sans-serif;
}
.contact-us .card .card-body .contact-details li a {
  color: #2d2d2d;
  font-family: "Mulish", sans-serif;
}
.contact-us .card .card-body .contact-details li i {
  width: 25px;
  text-align: center;
}

.contact-us .card .card-body .social-icons {
  padding-left: 0px;
}
.contact-us .card .card-body .social-icons li {
  list-style: none;
  color: #343e81;
  margin: 8px 8px 8px 0px;
  display: inline-block;
  text-align: center;
}
.contact-us .card .card-body .social-icons li a {
  color: #2d2d2d;
  background: #f4eee5;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}
.contact-us .card .card-body form input.form-control {
  height: 50px;
  border-radius: 12px;
}
.contact-us .card .card-body form .form-control {
  border-radius: 12px;
}
.contact-us .card .card-body form .btn-dark {
  border-radius: 12px;
  background: #000;
  padding: 10px 25px;
}
@media only screen and (max-width: 991px) {
  .offcanvas.offcanvas-start {
    width: 300px;
  }
  .offcanvas .offcanvas-header .offcanvas-title img {
    width: 90px;
  }
  .offcanvas .offcanvas-body ul {
    padding-left: 0px;
  }
  .offcanvas .offcanvas-body ul li {
    list-style: none;
  }
  .offcanvas .offcanvas-body ul li a {
    display: block;
    color: #212529;
    text-decoration: none;
    padding: 10px 10px;
  }
  .offcanvas .offcanvas-body ul li a.active {
    background: #f2fbff;
    border-radius: 8px;
  }
  .offcanvas .offcanvas-body ul li a.active::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    color: #0a87c9;
    right: 25px;
    position: absolute;
  }
  .offcanvas .offcanvas-body ul li a.btn-dark {
    color: #fff;
  }
  .offcanvas .offcanvas-body ul.sign-btn li a{
    background: #343e81;
    color: #fff;
    display: block;
  }
  nav.navbar{
    padding-top: 3px;
    padding-bottom: 3px;
  }
  .navbar-light .navbar-toggler {
    border: unset;
  }
  .navbar-light .navbar-toggler:focus {
    box-shadow: none;
  }
  .menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-timeline .date-content {
    margin-top: 35px;
  }
  .main-timeline .date-content:before {
    width: 22.5%;
  }
  .main-timeline .timeline-content {
    padding: 10px 0 10px 30px;
  }
  .main-timeline .title {
    font-size: 17px;
  }
  .main-timeline .timeline:nth-child(2n) .timeline-content {
    padding: 10px 30px 10px 0;
  }
}

@media only screen and (max-width: 768px) {
  .offcanvas.offcanvas-start {
    width: 300px;
  }
  .offcanvas .offcanvas-header .offcanvas-title img {
    width: 130px;
  }
  .offcanvas .offcanvas-body ul {
    padding-left: 0px;
  }
  .offcanvas .offcanvas-body ul li {
    list-style: none;
  }
  .offcanvas .offcanvas-body ul li a {
    display: block;
    color: #212529;
    text-decoration: none;
    padding: 10px 10px;
    
  }
  .offcanvas .offcanvas-body ul li a.active {
    background: #f2fbff;
    border-radius: 8px;
  }
  .offcanvas .offcanvas-body ul li a.active::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    color: #0a87c9;
    right: 25px;
    position: absolute;
  }
  .offcanvas .offcanvas-body ul li a.btn-dark {
    color: #fff;
  }
  .offcanvas .offcanvas-body ul.sign-btn li a{
    background: #343e81;
    color: #fff;
    display: block;
  }

  .offcanvas .offcanvas-body ul.sign-btn li{
    border-right: 2px solid #fff ;
  }
  /* .offcanvas .offcanvas-body .sign-btn:last-child li{
    border-color: #343e81;
  } */
  .navbar-light .navbar-toggler {
    border: unset;
  }
  .navbar-light .navbar-toggler:focus {
    box-shadow: none;
  }
  .menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .hero-slider {
    height: 75vh;
  }
  .hero-slider::before {
    background-image: none;
  }
  .hero-slider .left-content {
    width: 92%;
  }
  .hero-slider .left-content h2 {
    font-size: 32px;
  }
  .hero-slider .left-content p {
    font-size: 16px;
  }
  .main-timeline:before {
    margin: 0;
    left: 35px;
    top: 65px;
  }
  .main-timeline .timeline {
    margin-bottom: 20px;
  }
  .main-timeline .timeline:last-child {
    margin-bottom: 0;
  }
  .main-timeline .timeline-content {
    text-align: left;
  }
  .main-timeline .timeline:nth-child(2n) {
  }
  .main-timeline .timeline:nth-child(2n) .timeline-content {
    text-align: left;
  }
  .main-timeline .timeline:nth-child(4n) .timeline-content {
    text-align: left;
  }
  .main-timeline .icon {
    margin: auto 0;
  }
  .main-timeline .date-content {
    width: 95%;
    float: right;
    margin-top: 0;
    display: none;
  }
  .main-timeline .date-content:before {
    display: none;
  }
  .main-timeline .date-outer {
    width: 110px;
    height: 110px;
  }
  .main-timeline .date-outer:before,
  .main-timeline .date-outer:after {
    width: 110px;
    height: 110px;
  }
  .main-timeline .date {
    top: 30%;
  }
  .main-timeline .year {
    font-size: 24px;
  }
  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(2n) .timeline-content {
    width: 100%;
    text-align: left;
    padding: 10px 0px 10px 80px;
  }
  .main-timeline .title {
    margin-bottom: 5px;
  }
  .main-timeline p {
    margin-bottom: 0;
    color: #555;
    font-size: 16px;
  }
  .consultation .card .card-body {
    padding: 30px 30px;
  }
  .consultation .card .card-body h1 {
    font-size: 25px;
  }
  .card-service {
    width: 100%;
  }
}
@media only screen and (max-width: 480px){
  nav .navbar-brand img{
    width: 185px;
  }
  .hero-slider{
    height: 100vh;
  }
  .main-timeline:before{
    left: 25px;
  }
  .main-timeline .icon{
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
  .main-timeline .icon:before{
    border: 2px solid rgba(255, 181, 69, 0.76)
  }
  .main-timeline .icon:after{
    border: 2px solid rgba(255, 181, 69, 0.76)
  }
  .consultation .card .card-body{
    padding: 15px 15px;
  }
  .footer-section .footer-bottom ul li{
    margin-bottom: 12px;
  }
  .main-breadcrumb{
    height: 240px;
  }
}
@media only screen and (max-width: 425px) {
  .hero-slider{
    height: 100vh;
  }
  .hero-slider::before {
    background-image: unset;
  }
  .hero-slider .left-content {
    width: 100%;
  }
  .hero-slider .left-content h2 {
    font-size: 28px;
  }
  .hero-slider .left-content p {
    font-size: 16px;
  }
  .consultation .card .card-body {
    padding: 25px 25px;
  }
  .main-timeline .icon {
    width: 60px;
    height: 60px;
    line-height: 52px;
  }
  .main-timeline:before {
    height: 75%;
    top: 75px;
    left: 28px;
  }
  .main-timeline .title {
    margin-bottom: 0px;
  }
  .consultation .card .card-body h1 {
    font-size: 22px;
  }
  .connection h1.heading {
    font-size: 28px;
  }
  .about-us .heading h1 {
    font-size: 28px;
  }
  .services .heading h1 {
    font-size: 28px;
  }
  .work-section .card .card-body .heading h2 {
    font-size: 28px;
  }
  .testimonials .heading h1 {
    font-size: 28px;
  }
  .blogs .heading h1 {
    font-size: 28px;
  }

  .left-container1 h2 {
    font-size: 28px;
  }
  .footer-section .footer-bottom ul li {
    margin-bottom: 10px;
  }
  .main-breadcrumb {
    height: 250px;
  }
  .consultation .card .card-body{
    padding: 0px 20px;
  }
  .consultation .card .card-body h1{
    font-size: 22px;
  }
  .consultation .card .card-body h5{
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .main-timeline:before {
    left: 28px;
  }
}
/* * {
  box-shadow: 0px 0px 0px 1px red;
} */
