/**
* Template Name: BizPage
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import"https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Montserrat:300,400,500,700";

body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}
p { color:#1c1c1c; font-size:17px; }
a {
  /* color: #fff; */
  transition: 0.5s;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #18d36e;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #a80d34;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2ce782;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #a80d34;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background:#fff;
  box-shadow: 0 12px 13px -10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.top-header {
  background: #18335e;
  padding:10px 0;
  width:100%;
  color:#fff;
  text-align:center;
}
.bottom-header {
  background: #fff;
  padding:10px 0;
  width:100%;
  height: 100px;
}
.bottom-header p { font-size:17px; }
.bottom-header p span { color:#bf0034; font-weight:600; font-size:19px; }
.bottom-header h4 { color:#bf0034; font-weight:700; font-size:21px; margin:0; }
.navbar { top:-60px; }
.naac { top:0px; position: relative; }
#header.header-transparent {
  background: #fff;
}

#header.header-scrolled {
  background:#fff;
  height:100px;
}

#header .logo {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#header .logo a {
  color: #fff;
}
.text-right { text-align:right; }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #a80d34;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  color: #666666;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #a80d34;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #a80d34;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #a80d34;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height:auto;
  overflow: hidden;
  position: relative;
}

@media (max-height: 500px) {
  #hero {
    height:auto;
  }
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

#hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
}

#hero .carousel-fade {
  overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#hero .carousel-indicators li {
  cursor: pointer;
  list-style-type: none;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #a80d34;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #a80d34;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
#main { background:#fff url("../images/banner-bg.jpg") repeat-x scroll top; }

section {
  overflow: hidden;
}
.col-lg-25 {
    flex: 0 0 auto;
    width:20%;
}
/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #a80d34;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* Featured Services Section
--------------------------------*/
#featured-services {
  background:#fff;
  position: relative;
  padding:50px 0;
  z-index: 99;
}
h2.title { color:#1c1c1c; font-weight:600; font-size:25px; }
#featured-services .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size:41px;
  display: block;
  color:#2d4980;
}

#featured-services .counters p {
  padding: 0;
  margin: 0;
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color:#1c1c1c;
}
#featured-services .counters p span { font-size:19px; color:#1c1c1c; font-weight: normal; width:100%; }
#featured-services .counters span.plus::after { content:"+"; }
#featured-services .counters span.lpa::after { content:"LPA"; }
#highlight {
  background:#fee8d1;
  position: relative;
  padding:40px 0 40px 30px;
  z-index: 99;
  border-left:30px solid #bf0034;
}
img.highlight-img { position:absolute; top:-123px; }
h2.sub-title {
  color: #1c1c1c;
  font-weight: 600;
  font-size: 21px;
}
ul.bullet-list { margin:0; padding:0; width:100%; list-style:none; }
ul.bullet-list li { margin:0 0 15px 0; font-size:19px; color:#1c1c1c; font-weight: normal; width:100%; }

#industry .card-header {
  background: #1c1c1c;
  color: #fff;
  font-weight: 600;
  font-size:31px;
}
ul.industry-list { margin:0; padding:0; width:100%; list-style:none; float:left; }
ul.industry-list li { margin:0 1%; padding:0 0 10px 0; width:18%; float:left; text-align:center; border-radius:10px; border:1px solid #ccc; min-height: 95px; font-size:17px; }
ul.industry-list li span { background:#bf0034; color: #fff; font-weight:500; font-size:19px; width:100%; float:left; border-radius:10px; margin:0 0 10px 0; }
ul.industry-list li.border-none { border:none; }
.marketkey-slider .swiper-slide { text-align:center; }
.marketkey-slider .swiper-slide p { margin:10px 0 0 0; color:#fff; font-weight:700; font-size:19px; }
.marketkey-slider .swiper-slide img { 
   border:5px solid #fff;
   border-radius:10px;
   box-shadow:1px 2px 3px #000;
   transition: filter .5s ease-in-out;
  width:100%;
}
.marketkey-slider .swiper-slide img:hover {
  border: 5px solid #bf0034;
  box-shadow: 0px 0px 0px #000;
}
.marketkey-slider .swiper-button-next, .marketkey-slider .swiper-button-prev { color:#bf0034; }
.engineering-slider .swiper-button-next, .engineering-slider .swiper-button-prev { color:#bf0034; }
.clients-slider .swiper-button-next, .clients-slider .swiper-button-prev { color:#bf0034; }
.awards-slider .swiper-button-next, .awards-slider .swiper-button-prev { color:#bf0034; }
.achivements {
  padding:50px 0;
  background:url("../images/bg1.jpg") no-repeat scroll bottom;
  background-size:100% 100%;
}
h3.circle-text { margin: 0 auto; color:#bf0034; font-weight:600; font-size:31px; border:8px solid #2a427b; border-radius:50%; width:150px; height:150px; }
h3.circle-text span { color:#1c1c1c; }
.achivements p { color:#1c1c1c; font-weight:500; font-size:19px; line-height:31px; }
#services {
  padding:50px 0;
  background:#fff;
}
ul.certifications-list { margin:8px 0; padding:0; width:100%; list-style:none; float:left; }
ul.certifications-list li { margin:0 2%; padding:0; width:auto; float: left; }
ul.certifications-list li img {
    height: 50px;
}
.glance {
  background: #fff url("../images/glance-bg.jpg") repeat-x scroll top;
  padding:60px 0;
}
.glance h3 { color:#fff; font-weight:600; font-size:25px; }
#placement-holder { background:#fff; padding:30px 50px; border:1px solid #ccc; z-index: 999999; }
#placement-holder h3 { color:#bf0034; font-size:19px; margin-top:7px; margin-bottom:0; }
#placement-holder p { margin:0; }
.eligibility-title { margin:0; padding:10px; color:#313f63; font-size:19px; border:1px solid #ccc; border-radius:10px; }
img.eligibility-img {
  float: left;
  margin-left: -20px;
  padding-right:10px;
}
#awards { background:#304a7d; padding:50px 0; }
#apply { background:#fff; padding:50px 0; }
h2.apply-title { background:#304a7d; padding:5px 10px; color:#fff; font-weight: 600;  font-size: 25px; width: 250px; margin: 0 auto; border-top-left-radius:10px; border-top-right-radius:10px; }
.step-holder { background:#bf0034; height: 150px; }
ul.step-list { margin:0; padding:0; width:100%; list-style:none; float:left; }
ul.step-list li { margin:0; padding:30px 0; width:20%; float:left; text-align:center; color:#fff; }
ul.step-list li img { margin-bottom:5px; height:40px; }
.arrow-bg {
  background:url("../images/arrow-bg.png") no-repeat scroll 0 0;
  height: 150px;
  background-size: 100% 100%;
}
.faq {
  background:#fff;
  padding:0 0 50px 0;
}
.faq h2 { color: #1c1c1c;   font-weight: 600; font-size: 25px; }
.faq .faq-container .faq-item {
  background-color:#bf0034;
  position: relative;
  padding: 20px;
  border-bottom: 1px solid #fff;
  overflow: hidden;
}
.faq .faq-container .faq-item.faq-active {
  background-color:#fff;
}
.faq .faq-container .faq-item.faq-active h3 {
	color:#a21035;
}
.faq .faq-container .faq-item.faq-active h3 span {
	color:#000;
	margin: 0 5px;
}
.faq .faq-container .faq-item:first-child {
  border-radius:10px 10px 0 0;
}
.faq .faq-container .faq-item:last-child {
  border-radius:0 0 10px 10px;
}
.faq .faq-container .faq-item i { color:#fff; }
.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color:#fff;
}
.faq .faq-container .faq-item h3 span {
	color:#fbb732;
	margin: 0 5px;
}
.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  color:#000;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0;
  color: #fff;
  font-size: 15px;
}

#footer .footer-top {
  background:url("../images/footer-bg.jpg") no-repeat scroll 0 0;
  background-size: 100% 100%;
  padding:40px 0;
  text-align:left;
}

#footer .footer-top h4 {
  font-size:21px;
  margin:20px 0 5px 0;
  padding:0;
  font-weight: 700;
  color: #fff;
}

#footer .footer-top p {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 0;
  color: #fff;
}

img.footer-img { border:5px solid #fff; border-radius:10px; }
#footer .copyright {
  text-align: left;
  padding: 30px 0;
}
#footer .copyright p { margin:0; color: #fff; }
#footer .copyright a {
  color: #fff;
}
#footer .copyright a:hover {
  color: #bf0034;
}
a.splite_sideEnquiry {
  cursor: pointer;
  border-radius: 3px;
  height: auto;
  padding: 5px;
  width:250px;
  position: fixed;
  text-align: center;
  text-decoration: none;
  z-index: 1001;
  background: #a80d34;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 32px;
  top: 35%;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  right: -105px;
  cursor: pointer;
}