@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary: #32285D;
  --primary-mid: #403387;
  --secondary: #F47920;
  --stroke: #EAEDF0;
  --red: #FF0000;
  --white: #FFFFFF;
  --black: #000000;
  --grey: #87898A;
  --grey-lite: #f2f5f8;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--stroke);
  border-radius: 8px;
  height: 42px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--stroke);
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

@media (max-width: 767px) {

  html {
    scroll-padding-top: 50px;
  }

}

body {
  background: var(--white);
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:active,
a:hover {
  color: var(--grey);
  outline: 0;
  text-decoration: none;
}

a:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

/* Custom Bootstrap CSS */

.container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1400px) {
  .container-fluid {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* Custom Bootstrap CSS ---- Ends */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

main {
  flex: 1;
  padding-top: 90px;
}

@media (max-width: 991px) {
  main {
    padding-top: 50px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  background: var(--white);
  transition: all 0.3s ease-out;
}

.site-header.scrolled {
  padding: 10px 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.site-header .logo {
  float: left;
}

.site-header .logo a {
  display: block;
  width: 333px;
  height: 50px;
  background-image: url(assets/images/bharat-collect-logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  text-indent: -9999px;
}

.main-nav {
  float: right;
}

.main-nav ul,
.main-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav ul li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 97;
  margin: 0 15px;
}

.main-nav ul li a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.main-nav ul li a:hover {
  color: var(--primary);
}

.main-nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.main-nav ul li.spl a {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 20px;
  padding: 0 20px;
}

.main-nav ul li.spl a::after {
  content: none;
}

.main-nav ul li.spl a:hover {
  opacity: 0.75;
}

.main-nav ul li ul {
  display: none;
  position: absolute;
  left: 1px;
  top: 50px;
  margin: 0 0 0 -1px;
  padding: 0;
  list-style: none;
  width: 200px;
  background-color: var(--primary);
}

.main-nav ul li:hover>ul {
  display: block;
}

.main-nav ul li ul li {
  display: block;
  float: left;
  margin: 0;
}

.main-nav ul li ul a {
  display: block;
  padding: 12px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  height: auto !important;
  width: 200px;
}

.main-nav ul li ul a::after {
  content: none;
}

.main-nav ul li ul a:hover {
  background-color: var(--primary-mid);
  color: var(--white);
}

.main-nav ul li ul ul {
  left: 200px;
  top: 0px;
  margin: 0 0 0 -1px;
}

@media (max-width: 1199px) {

  .main-nav ul li {
    margin: 0 5px;
  }

  .main-nav ul li a {
    font-size: 14px;
  }
}

/* mobile view nav */
@media (max-width: 991px) {

  .site-header {
    padding: 10px 0;
  }

  .site-header .logo a {
    width: 200px;
    height: 30px;
  }

  .main-nav {
    display: block;
    float: none;
    position: fixed;
    z-index: 1000;
    top: -100%;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    width: 100%;
    padding: 50px;
    background: var(--white);
    transition: all 0.3s ease-out;
  }

  .main-nav ul li {
    margin: 0;
    display: block;
  }

  .main-nav ul li a {
    position: static;
    display: block;
    padding: 15px 7px;
    letter-spacing: normal;
    font-size: 20px;
    line-height: 24px;
    height: inherit;
  }

  .main-nav ul li a::after {
    content: none;
  }

  .main-nav ul li.menu-item-has-children a:before {
    content: none;
  }

  .main-nav ul li.spl a {
    margin: 0;
    height: inherit;
    line-height: inherit;
    padding: 10px 5px;
    text-align: center;
  }

  .main-nav ul li ul {
    display: block;
    position: inherit;
    left: inherit;
    top: inherit;
    margin: inherit;
    padding: inherit;
    width: inherit;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background-color: inherit;
  }

  .main-nav ul li ul li {
    border-bottom: none;
    float: none;
  }

  .main-nav ul li ul a {
    padding: 10px 10px 10px 20px !important;
    background-color: inherit;
    background-image: none;
    font-size: 16px;
    width: inherit;
    border-bottom: none;
    color: var(--black);
  }

  .main-nav ul li ul a:hover {
    color: var(--primary);
    background-color: inherit;
  }

  .main-nav ul li ul li ul {
    padding: 0 0 0 20px;
    left: inherit;
  }

  .main-nav.show-menu {
    top: 0px;
  }
}

/* mobile view nav --- ends */
.mobile-nav-icon {
  display: none;
  position: absolute;
  z-index: 1;
  right: 15px;
  top: 12px;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 width=%2716%27 height=%2716%27%3E%3Cpath d=%27M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5%27 fill=%27grey%27 /%3E%3C/svg%3E');
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.mobile-nav-close {
  display: none;
  position: absolute;
  z-index: 1;
  right: 15px;
  top: 10px;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 width=%2716%27 height=%2716%27%3E%3Cpath d=%27M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8z%27 fill=%27grey%27 /%3E%3C/svg%3E');
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

@media (max-width: 991px) {

  .mobile-nav-icon,
  .mobile-nav-close {
    display: block;
  }
}

.site-footer {
  background-color: var(--primary-mid);
  color: var(--white);
}

.site-footer .logo a {
  display: block;
  width: 333px;
  height: 50px;
  background-image: url(assets/images/bharat-collect-logo-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  text-indent: -9999px;
}

.site-footer .details {
  padding: 60px 0 20px 0;
}

.site-footer .details h4 {
  font-size: 20px;
}

.site-footer .details ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .details li {
  margin-bottom: 10px;
}

.site-footer .details a {
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
}

.site-footer .details a:hover {
  opacity: 0.5;
}

.site-footer .details .mail {
  padding: 8px 8px 8px 24px;
  background: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 width=%2716%27 height=%2716%27%3E%3Cpath d=%27M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586zm3.436-.586L16 11.801V4.697z%27 fill=%27white%27 /%3E%3C/svg%3E');
  background-size: 16px;
  background-position: left center;
  background-repeat: no-repeat;
}

.site-footer .details .phone {
  padding: 8px 8px 8px 24px;
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 width=%2716%27 height=%2716%27%3E%3Cpath d=%27M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z%27 fill=%27white%27 /%3E%3C/svg%3E');
  background-size: 16px;
  background-position: left center;
  background-repeat: no-repeat;
}

.site-footer .details .social-links li {
  display: inline-block;
  margin-right: 10px;
}

.site-footer .details .social-links a {
  display: block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  text-indent: -9999px;
  background-size: 28px;
  background-position: center;
  background-repeat: no-repeat;
}

.site-footer .details .social-links a.linkedin {
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 width=%2716%27 height=%2716%27%3E%3Cpath d=%27M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z%27 fill=%27white%27 /%3E%3C/svg%3E');
}

.site-footer .details .social-links a.x {
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 width=%2716%27 height=%2716%27%3E%3Cpath d=%27M12.6.75h2.454l-5.36 6.142L16 15.25h-4.937l-3.867-5.07-4.425 5.07H.316l5.733-6.57L0 .75h5.063l3.495 4.633L12.601.75Zm-.86 13.028h1.36L4.323 2.145H2.865z%27 fill=%27white%27 /%3E%3C/svg%3E');
}

.site-footer .details .social-links a.facebook {
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 width=%2716%27 height=%2716%27%3E%3Cpath d=%27M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951%27 fill=%27white%27 /%3E%3C/svg%3E');
}

.site-footer .details .social-links a.instagram {
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 width=%2716%27 height=%2716%27%3E%3Cpath d=%27M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.9 3.9 0 0 0-1.417.923A3.9 3.9 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.9 3.9 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.9 3.9 0 0 0-.923-1.417A3.9 3.9 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599s.453.546.598.92c.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.5 2.5 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.5 2.5 0 0 1-.92-.598 2.5 2.5 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233s.008-2.388.046-3.231c.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92s.546-.453.92-.598c.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92m-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217m0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334%27 fill=%27white%27 /%3E%3C/svg%3E');
}

.site-footer .info {
  padding: 15px;
  text-align: center;
  font-size: 13px;
  background-color: var(--primary);
  color: var(--white);
}

@media (max-width: 991px) {

  .site-footer .logo a {
    width: 200px;
    height: 30px;
  }
}

.hero-section {
  background-image: url(assets/images/hero-bg.svg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 60%;
  padding: 40px 0 80px 0;
}

.hero-section h1 {
  margin-bottom: 30px;
  font-size: 3vw;
  font-weight: 300;
}

@media (max-width: 991px) {

  .hero-section {
    padding: 40px 0;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 32px;
  }
}

.hero-carousel .carousel-inner {
  max-width: 85%;
  aspect-ratio: 1 / 1;
  text-align: center;
  background-color: var(--white);
  border-radius: 50%;
  padding: 5% 0;
  margin: 0 auto;
}

.hero-carousel .carousel-inner img {
  max-width: 65%;
}

.hero-carousel .carousel-inner h3 {
  font-size: 1.3vw;
  font-weight: 600;
  max-width: 70%;
  margin: 20px auto 0 auto;
}

.hero-carousel .carousel-control-next,
.hero-carousel .carousel-control-prev {
  opacity: 1;
}

.hero-carousel .carousel-control-next-icon,
.hero-carousel .carousel-control-prev-icon {
  background-color: orange;
  background-size: 50%;
  border-radius: 50%;
}

@media (max-width: 767px) {

  .hero-carousel .carousel-inner {
    max-width: 95%;
    border-radius: 20%;
  }

  .hero-carousel .carousel-inner h3 {
    font-size: 14px;
  }
}

.section-container {
  padding: 80px 0;
  background-repeat: no-repeat;
  background-size: 100px;
}

.section-container.curve-rgt-wt {
  background-image: url(assets/images/section-curve-rgt-wt.svg);
  background-position: right top;
}

.section-container.curve-lft-wt {
  background-image: url(assets/images/section-curve-lft-wt.svg);
  background-position: left top;
}

.section-container.curve-rgt-gr {
  background-image: url(assets/images/section-curve-rgt-gr.svg);
  background-position: right top;
}

.section-container.curve-lft-gr {
  background-image: url(assets/images/section-curve-lft-gr.svg);
  background-position: left top;
}

.section-container.curve-rgt-dk {
  background-image: url(assets/images/section-curve-rgt-dk.svg);
  background-position: right top;
}

.section-container.curve-lft-dk {
  background-image: url(assets/images/section-curve-lft-dk.svg);
  background-position: left top;
}

.section-container h2 {
  font-size: 42px;
  color: var(--primary);
  text-align: center;
}

.section-container h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--secondary);
  text-align: center;
}

h5 {
  /* font-size: 24px; */
  font-weight: 500;
  color: var(--secondary);
  /* text-align: center; */
}

.section-container h4 {
  color: var(--primary);
}

.section-dark {
  background-color: var(--primary);
  color: var(--white);
}

.section-dark h2,
.section-dark h4 {
  color: var(--white);
}

.section-grey {
  background-color: var(--grey-lite);
}

@media (max-width: 991px) {

  .section-container {
    background-size: 50px;
  }

  .section-container h2 {
    font-size: 32px;
  }

  .section-container h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {

  .section-container {
    padding: 40px 0;
  }

  .section-container h2 {
    font-size: 28px;
  }

  .section-container h3 {
    font-size: 18px;
  }
}

.section-icon {
  width: 100px;
}

@media (max-width: 767px) {
  .section-icon {
    width: 75px;
  }
}

.custom-points {
  margin: 0 0 0 15px;
  padding: 0;
  list-style: none;
}

.custom-points li {
  padding: 0 0 20px 30px;
  background-image: url(assets/images/icon-tick.svg);
  background-position: left 2px;
  background-repeat: no-repeat;
  background-size: 20px;
}

.icon-linkedin {
  position: absolute;
  z-index: 1;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 width=%2716%27 height=%2716%27%3E%3Cpath d=%27M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z%27 fill=%27midnightblue%27 /%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  background-color: var(--white);
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  overflow: hidden;
}

.section-title {
  padding: 80px 0;
  background-color: var(--grey-lite);
  text-align: center;
}

.section-title h1 {
  font-size: 42px;
  color: var(--primary);
  text-align: center;
}

.section-title h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--secondary);
  text-align: center;
}

@media (max-width: 767px) {

  .section-title {
    padding: 40px 0;
  }

}

.custom-carousel .carousel-control-prev,
.custom-carousel .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  z-index: 10;
  opacity: 1;
}

.custom-carousel .carousel-control-prev {
  left: -70px;
}

.custom-carousel .carousel-control-next {
  right: -70px;
}

.custom-carousel .carousel-control-prev-icon,
.custom-carousel .carousel-control-next-icon {
  background-color: orange;
  background-size: 50%;
  border-radius: 50%;
  padding: 10px;
}
