* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: #313131;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  background-color: #fff;
}

.brand-logo {
  height: 60px;
}

.bg-light-theme {
  background-color: #fff3e5;
}

.bg-light-blue {
  background-color: #eaeaef;
}

.section-heading {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  color: #0032af;
}

.section-heading:after {
  content: "";
  width: 64px;
  border-bottom: 5px solid #d9181d;
  display: block;
  padding-bottom: 15px;
  margin: 0px auto;
}

.btn {
  display: inline-flex;
  padding: 20px 28px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 100px;
  line-height: 1;
  align-items: center;
  gap: 12px;
}
.btn.btn-sm {
  padding: 12px 18px;
  font-size: 16px;
  gap: 8px;
}
.btn.btn-white {
  border: 1.5px solid #121212;
  background-color: #fff;
  color: #121212;
}
.btn.btn-white:hover {
  background-color: #d9181d;
  box-shadow: 0px 4.5px 0px 0px #313131;
}
.btn.btn-white-outline {
  border: 1.5px solid #fff;
  background-color: transparent;
  color: #fff;
}
.btn.btn-dark {
  color: #fff;
  border: 1.5px solid #FFF;
  background: #313131;
}
.heading-upper {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  color: #313131;
}

.highlight-title {
  font-size: 40px;
  color: #0032af;
  line-height: 1.2;
  font-weight: 600;
}

.theme-header {
  transition: top 0.3s ease-in-out;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 9;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
/* .theme-header.nav-up {
  top: -84px;
}
.theme-header.nav-down .navbar {
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
} */
.theme-header.bg-white-nav .navbar {
  background-color: transparent;
  box-shadow: none;
}
.theme-header .navbar {
  padding: 12px 0px;
}
.theme-header .nav-item .nav-link {
  padding: 0px;
  line-height: 1;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  margin-right: 48px;
  color: #121212;
  opacity: 1;
  transition: 0.2s;
}
.theme-header .nav-item .nav-link.active {
  color: #d9181d;
}
.theme-header .nav-item:hover .nav-link {
  color: #d9181d;
}

/* .hero-banner {
  padding: 40px 0px;
  background-color: #fff3e5;
  background-image: url(../images/banner.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
} */

.hero-banner {
  width: 100%;
  padding: 40px 0px;
  background-color: #fff3e5;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-size: contain; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-banner .home-banner-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: #0032af;
  position: relative;
  z-index: 2;
}
.hero-banner .home-banner-title span {
  font-weight: 800;
}
.hero-banner .h2 {
  font-size: 42px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.hero-banner #typed {
  font-weight: bold;
  color: #d9181d;
}
.hero-banner .effect-wrapper {
  font-size: 40px;
}
.hero-banner .cursor-text {
  display: inline-block;
  background-color: #b0ff95;
  animation: blinker 800ms infinite;
}
.hero-banner .cursor-text.typing-true {
  animation: none;
}
@keyframes blinker {
  0% {
    background-color: #312D65;
  }
  50% {
    background-color: transparent;
  }
  100% {
    background-color: #312D65;
  }
}
.hero-banner .play-ic {
  max-height: 60px;
}

.section {
  padding: 85px 0px;
}

.soln-card {
  background-color: #fff3e5;
  border-radius: 10px;
  padding: 12px 16px 20px 20px;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.soln-card:hover {
  background-color: #d9181d;
  box-shadow: 5px 4px 0px 0px #313131;
}
.soln-card .img-card {
  max-height: 60px;
  margin-bottom: 20px;
}
.soln-card .card-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: capitalize;
}
.soln-card .card-ic {
  background-image: url("../assets/icons/chev-right-yellow.svg");
  width: 16px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center;
}

.how-card .how-img {
  max-height: 80px;
  max-width: 100%;
  margin-bottom: 12px;
}
.how-card .how-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 8px;
}
.ccs-block {
  gap: 20px;
  display: flex;
}
.ccs-block span {
  font-size: 32px;
  font-weight: 600;
  color: #d9181d;
}

.section.whats-new {
  overflow-x: hidden;
}

.whats-new .para {
  font-size: 20px;
}
.whats-new .whats-new-title {
  font-size: 40px;
  color: #d9181d;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  font-weight: 600;
}
.whats-new .carousel-item img {
  border-radius: 8px;
}

.section.whats-new img {
    max-width: 100%;
    height: 600px;
    /*object-fit: cover;  */
}

.mission-vision-blk {
  box-shadow: 0px 0px 49px rgba(89, 89, 89, 0.2);
  padding: 20px 24px;
  border-left: 3px solid #d9181d;
}
.mission-vision-blk .head {
  font-size: 24px;
  font-weight: 700;
  color: #0032af;
}
.mission-vision-blk .head span {
  color: #d9181d;
}
.mission-vision-blk .para {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0px;
}

.slide-section .carousel-control-next, .slide-section .carousel-control-prev {
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  width: 52px;
  height: 52px;
  background-color: #d9181d;
  opacity: 0.75;
}
.slide-section .carousel-control-next:focus, .slide-section .carousel-control-next:hover, .slide-section .carousel-control-prev:focus, .slide-section .carousel-control-prev:hover {
  opacity: 1;
}
.slide-section .carousel-control-next-icon, .slide-section .carousel-control-prev-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.slide-section .carousel-indicators {
  margin-bottom: -3rem;
}
.slide-section .carousel-indicators [data-bs-target] {
  background-color: #d9181d;
  width: 16px;
  height: 16px;
  border-radius: 100%;
}

.icon-box {
  background-color: #fff;
  padding: 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}
.icon-box img {
  max-height: 68px;
}
.icon-box .desc {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 0px;
  color: #313131;
  text-decoration: none;
}

.swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next, .swiper-button-next {
  border-radius: 100%;
  width: 52px;
  height: 52px;
  background-color: #d9181d;
}
.swiper-button-prev::after, .swiper-rtl .swiper-button-next::after, .swiper-button-next::after {
  color: #fff;
  font-size: 1.2rem;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #d9181d;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  background-color: #d9181d;
}

.swiper-slide {
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.our-clients {
  padding: 60px 0px 120px 0px;
}
.our-clients .slider-block {
  background-color: #fff;
  padding: 60px 30px 40px 30px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
}

.we-serve {
  padding: 60px 0px 50px 0px;
}

.serve-card {
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
}
.serve-card .card-img {
  height: 160px;
  width: 100%;
  overflow: hidden;
}
.serve-card .card-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.serve-card .card-title {
  font-size: 22px;
  text-align: center;
  padding: 16px 16px;
}

.footer {
  padding: 40px 0px 24px 0px;
}
.footer .foot-logo {
  height: 60px;
  margin-bottom: 30px;
}
.footer .foot-menu-title {
  font-size: 24px;
  color: #0032af;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 36px;
}
.footer .foot-link {
  padding-left: 0rem;
  list-style: none;
}
.footer .foot-link li {
  margin-bottom: 16px;
}
.footer .foot-link li a {
  color: #313131;
  text-decoration: none;
  transition: 0.3s;
}
.footer .foot-link li:hover a {
  color: #d9181d;
}
.footer .social-ic-blk {
  display: flex;
  gap: 6px;
  align-items: center;
}
.footer .social-ic-blk .social-ic {
  height: 42px;
  width: 42px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fcb9bc;
  color: #313131;
  cursor: pointer;
  transition: 0.3s;
}
.footer .social-ic-blk .social-ic:hover {
  background-color: #d9181d;
}
.footer .social-ic-blk .social-ic span.bi {
  font-size: 18px;
  line-height: 1;
}
.footer .social-ic-blk .social-ic img {
  height: 18px;
}
.footer .copyright {
  border-top: 1px solid #b9b9b9;
  padding-top: 20px;
  margin-top: 10px;
  text-align: center;
}

.text-orange {
  color: #d9181d;
}

.contact-ic {
  height: 68px;
  width: 68px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #eee;
}
.contact-ic.phone {
  background-color: #d9181d;
}
.contact-ic.mail {
  background-color: #0032af;
}/*# sourceMappingURL=style.css.map */