@font-face {
  font-family: "Lato Regular";
  src: url(../../assets/fonts/Lato-Regular.woff);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lato Bold";
  src: url(../../assets/fonts/Lato-Bold.woff);
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Lato Italic";
  src: url(../../assets/fonts/Lato-Italic.woff);
  font-style: normal;
}
body {
  font-family: "Lato Regular", sans-serif;
  box-sizing: border-box;
}
body:has(.navbar-collapse.show) {
  height: 100vh;
  overflow: hidden;
}
body.is-open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1136px;
  margin: auto;
  padding: 0 20px;
}
.container.container-lg {
  max-width: 1104px;
}
.container.container-sm {
  max-width: 870px;
}

.section {
  padding: 30px 0;
}

.bg-gray {
  background: #F2F2F2;
}

.heading {
  color: #000000;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
/*  padding-top: 15px;*/
}


@media screen and (max-width: 768px) {
  .heading {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 16px;
/*	        padding-top: 15px;*/
  }
}

p {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.image-wrapper {
  padding: 30px 0;
}
.image-wrapper img {
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .image-wrapper.horizontal-scroll {
    overflow-x: auto;
  }
  .image-wrapper.horizontal-scroll img {
    width: 1100px;
  }
}

.yellow-text {
  text-align: center;
  margin: auto;
  width: 100%;
  margin: 20px 0;
}
@media only screen and (max-width: 768px) {
  .yellow-text {
    margin-top: 10px;
  }
}
.yellow-text span {
  background: #FFFF73;
  padding: 11px 13px;
  display: inline-block;
}

.source {
  text-align: left;
  font-size: 12px;
  display: block;
  margin-top: 15px;
  color: #636466;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #003254;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
header .navbar-brand {
  max-width: 145px;
}
header .navbar-expand-lg .navbar-nav {
  align-items: center;
  gap: 35px;
}
header .navbar-expand-lg .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding: 0;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
header .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu {
  position: absolute;
  top: 46px;
  left: 0;
  background: #8ECBF9;
  padding: 0;
  border: none;
  border-radius: 0;
}
header .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 16px 20px;
  font-size: 16px;
  line-height: 18px;
  color: #003254;
  text-decoration: none;
  white-space: wrap;
}
header .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #FFF;
}
header .navbar-expand-lg .navbar-nav .nav-item .dropdown-toggle::after {
  display: none;
}
header .navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
  color: #8ECBF9;
  font-weight: 700;
}
header .navbar-expand-lg .navbar-nav .nav-item:hover .dropdown-menu {
  display: block;
}
@media screen and (max-width: 992px) {
  header .navbar-expand-lg .navbar-nav .nav-item {
    width: 100%;
  }
  header .navbar-expand-lg .navbar-nav .nav-item .nav-link {
    width: 100%;
  }
  header .navbar-expand-lg .navbar-nav .nav-item .dropdown-menu {
    position: inherit;
    top: 10px;
  }
}
@media screen and (max-width: 768px) {
  header .navbar-expand-lg .navbar-nav {
    padding-top: 40px;
    gap: 30px;
    align-items: flex-start;
  }
  header .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
  }
}
header .navbar-expand-lg .invest-now-btn {
  color: #FFF;
  font-size: 16px;
  line-height: normal;
  background-color: #EF3B24;
  border-radius: 4px;
  padding: 8px 16px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s all ease-in-out;
}
header .navbar-expand-lg .invest-now-btn:hover {
  background-color: #004880;
}
header .navbar-light .navbar-toggler span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 6px auto;
  background: #ffffff;
  transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
header .navbar-light .navbar-toggler:hover span {
  background: #ffffff;
}
header .navbar-light .navbar-toggler:focus {
  outline: none;
  border: 0;
  box-shadow: none;
}
header .navbar-light .navbar-toggler:focus span {
  background: #ffffff;
}
header .navbar-light .navbar-toggler[aria-expanded=true] span:first-of-type {
  transform: rotate(45deg) translate(6px, 6px);
}
header .navbar-light .navbar-toggler[aria-expanded=true] span:nth-of-type(2) {
  opacity: 0;
}
header .navbar-light .navbar-toggler[aria-expanded=true] span:last-of-type {
  transform: rotate(-45deg) translate(5px, -5px);
}
header .navbar-light .navbar-toggler[aria-expanded=false] span {
  transform: none;
  opacity: 1;
}

.close-icon {
  background-image: url("../images/close.svg");
  width: 24px;
  height: 24px;
  position: absolute;
  right: 40px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .banner-container {
    width: 100%;
    max-width: 1236px;
    margin: auto;
    padding: 0 20px;
  }
}
.banner-section .banner-row {
  display: flex;
  align-items: center;
}
.banner-section .banner-row .banner-col.first {
  width: 65%;
}
.banner-section .banner-row .banner-col.second {
  width: 35%;
}
@media only screen and (max-width: 992px) {
  .banner-section .banner-row {
    flex-direction: column;
  }
  .banner-section .banner-row .banner-col.first, .banner-section .banner-row .banner-col.second {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .banner-section {
    padding: 0 25px;
    background: #b9d9f5;
  }
}
.banner-section img {
  width: 100%;
}

form {
  background-color: #E3F2FF;
  width: 100%;
  height: auto;
  padding: 30px 50px;
}
form::-moz-placeholder {
  color: #d9d9d9;
}
form::placeholder {
  color: #d9d9d9;
}
form input {
  width: 100%;
  margin-bottom: 14px;
  padding: 5px 10px;
  border: 1px solid #d9d9d9;
  font-size: 12px;
}
form p {
  color: #003254;
  font-size: 10px;
  line-height: 12px;
}
form button {
  color: #ffffff;
  background-color: #003254;
  width: 100%;
  text-align: center;
  padding: 10px 12px;
  border: none;
  transition: 0.3s all ease-in-out;
  font-size: 12px;
}
form button:hover {
  background-color: #ef3b24;
}

.form-heading {
  font-weight: 700;
  padding-bottom: 14px;
  color: #003254;
  font-size: 17px;
  line-height: 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.invest-float-btn.invest-now {
  margin-bottom: 8px;
}

.invest-float-btn,
.download-float-btn {
  transform: translateX(70%);
  margin-bottom: 4px;
}
.invest-float-btn:hover,
.download-float-btn:hover {
  transform: translateX(0);
  transition-property: 160px, auto;
  transition: all 0.5s ease;
}
.invest-float-btn:hover .float-btn,
.download-float-btn:hover .float-btn {
  border-bottom-left-radius: 0;
}

.float-list {
  position: fixed;
  top: 50%;
  transform: translateY(-40%);
  right: 0;
  z-index: 99;
}

.float-btn {
  background-color: #004880;
  padding: 9.5px 13px;
  color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.float-btn a {
  color: #fff;
  text-decoration: none;
}

.link-group {
  display: flex;
  flex-direction: column;
  color: #000;
  background-color: #E3F2FF;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3490196078);
  border-bottom-left-radius: 8px;
}
.link-group a {
  color: #000;
  font-size: 12px;
  line-height: 14px;
  padding: 9.5px 13px;
  text-decoration: none;
}
.link-group a img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}
.link-group a:hover {
  text-decoration: underline;
}

.float-list-item .link-group a img {
  width: 25px;
  height: 25px;
  filter: invert(0);
}

.is-hidden {
  display: none !important;
}

.invest-now {
  margin: 0px auto 30px;
}
.footer-cta{
  margin: 10px auto 0px !important; 
}
.nav-item .invest-now {
  margin: 0;
}

.hide {
  display: none !important;
}

 
@media screen and (max-width: 768px) {
  .float-list {
    display: none;
  }
  .download span {
    font-size: 15px;
  }
  .invest-now {
    margin: auto 0;
  }
  section#product-overview {
    padding: 10px 0px 20px 0px;
}
}
.timer {
  width: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #B72230;
  padding: 10px;
}

.nfo-title {
  color: #fff;
  font-size: 24px;
}

.timer-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: "Lato Bold";
  color: #1c1c1a;
  margin-right: 42px;
}

.timer-count {
  display: flex;
  align-items: center;
}

.timer-card-count {
  display: inline-block;
  font-size: 32px;
  font-family: "Lato Bold";
  border-radius: 8px;
  margin-bottom: 0;
  line-height: 24px;
  color: #ffffff;
}

.timer-card {
  padding-right: 32px;
}

.timer-label {
  font-size: 13px;
  color: #fff;
  font-family: "Lato Regular";
  line-height: 15px;
  text-align: center;
  margin-bottom: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 12;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
}
.modal.is-visible {
  visibility: visible;
  display: block;
}
.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  display: block;
}
.modal.is-visible .modal-transition {
  opacity: 1;
}
.modal .modal-body {
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .modal .modal-body {
    padding: 0 1rem;
  }
}
.modal .modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}
.modal .modal-overlay.invest-now {
  margin: unset;
}
.modal .modal-wrapper {
  position: absolute;
  z-index: 4;
  width: 30rem;
  left: 50%;
  top: 50%;
  background-color: #e3f2ff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .modal .modal-wrapper {
    width: 90%;
    top: 55%;
    background-color: #e3f2ff;
    box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
    transform: translate(-50%, -50%);
  }
}
.modal .modal-header,
.modal .modal-content {
  padding: 1em;
  background: transparent;
  border: none;
}
.modal .modal-header {
  position: relative;
  border: 0;
}
.modal .modal-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  background: none;
  border: 0;
  cursor: pointer;
  margin: 0;
  z-index: 9;
}
.modal .modal-close:hover {
  color: #777777;
}
.modal .modal-content img {
  margin: 0 auto;
  width: 80px;
}
.modal .modal-content > *:first-child {
  margin-top: 0;
}
.modal .modal-content > *:last-child {
  margin-bottom: 0;
}
.modal .modal-content h2 {
  text-align: center;
  font-weight: 700;
  padding: 18px 0 0;
  margin-bottom: 0;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .modal .modal-content h2 {
    padding: 18px 20px 0;
  }
}
.modal .modal-content .button-red {
  width: 180px;
  padding: 12px 14px;
  margin: 25px 0;
  text-decoration: none;
  background-color: #ef3b24;
}
@media screen and (max-width: 768px) {
  .modal .modal-content .button-red {
    padding: 10px 12px;
    display: flex;
  }
}
.modal .modal-content .button-red:hover {
  background-color: #003254;
  color: #ffffff;
}
.modal .modal-content .button-red .button-text {
  text-align: center;
  color: #ffffff;
  margin: 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .modal .modal-content .button-red .button-text {
    white-space: nowrap;
  }
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .button-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 10px;
  }
}

.divider-line {
  border-bottom: 1px solid #707070;
}

.overflow-body-scroll {
  overflow: hidden;
}

.button-red {
  padding: 10px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EF3B24;
  cursor: pointer;
  text-decoration: none;
}
.button-red .button-text {
  font-size: 16px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
  .button-red:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  }
}

@media screen and (max-width: 992px) {
  .types-of-innovators-swiper .swiper-wrapper {
    padding-bottom: 40px;
  }
}
.types-of-innovators-swiper .swiper-slide {
  height: auto;
}
.types-of-innovators-swiper .swiper-slide .card {
  border: 1px solid #B4B4B4;
  padding: 20px;
  height: 100%;
  background: transparent;
  border-radius: 0;
}
.types-of-innovators-swiper .swiper-slide .card p {
  margin-bottom: 0;
}
.types-of-innovators-swiper .swiper-slide .img-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.types-of-innovators-swiper .swiper-slide .img-wrapper img {
  width: 100%;
  height: auto;
  max-width: 110px;
}
.types-of-innovators-swiper .swiper-slide h5 {
  color: #ED4C14;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
}
.types-of-innovators-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0px !important;
}
.types-of-innovators-swiper .swiper-pagination-bullet-active {
  background: #003254;
}

.who-invest {
  padding: 0px 0 0;
}
@media screen and (max-width: 1200px) {
  .who-invest .swiper-wrapper {
    padding-bottom: 40px;
  }
}
.who-invest .swiper-pagination {
  bottom: 0;
}
.who-invest .swiper-slide {
  height: 100%;
}
.who-invest .cards-wrapper {
  border: 1px solid #f2f2f2;
  background: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  height: 220px;
  margin-top: 10px;
  pointer-events: none;
}
.who-invest .cards-wrapper .card-item {
  margin-bottom: 25px;
}

.product-info h4 {
  font-size: 21px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: -0.61px;
}

.download_box {
    background: #fff;
    padding: 20px;
    width: 96%;
    margin: auto;
    text-align: center;
    color: #000;
    height: 165px;
    border: 1px solid #ccc;
}
.download_box img
{
  margin: auto auto 10px auto;
  display: block;
}
.download_box a
{
  color: #000;
  font-size: 16px;
  text-decoration: none;
}
.slick-dots li
{
  background: transparent;
  border: 2px solid #283747;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
.slick-dots li.slick-active
{
  background: #283747;
}

.slick-dots li button:before
{
  content: '';
}
.download-wrapper-section
{
  padding: 10px 0px 0px 0px;
}
@media screen and (max-width: 768px) {
  .product-info h4 {
    font-size: 16px;
    line-height: 20px;
  }
}
.product-info p {
  font-size: 16px;
  line-height: 16px;
}
.product-info p.source {
  font-size: 12px;
}
.product-info .note {
  font-size: 16px;
  line-height: 16px;
}
@media screen and (max-width: 768px) {
  .product-info .note {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 30px;
  }
}
.product-info .copy-text-2 {
  font-weight: 700;
  margin-bottom: 3px;
}
.product-info ul {
  padding-left: 18px;
  margin-bottom: 4px;
}

.graph-swiper {
  margin-top: 30px;
}
.graph-swiper .card {
  border: 0;
  background: transparent;
}
.graph-swiper .card .card-head {
  height: 100%;
}
.graph-swiper .card .card-head h3 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.graph-swiper .card .card-head img {
  width: 100%;
  max-height: 250px;
  height: auto;
}
.graph-swiper .card .card-body {
  text-align: center;
  padding: 30px 0 0;
}
.graph-swiper .card .card-body h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 0;
}
.graph-swiper .card .card-body p {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .graph-swiper .swiper-wrapper {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .why-bandhan-innovation-fund .swiper-wrapper {
    padding-bottom: 40px;
  }
}
.why-bandhan-innovation-fund .swiper-slide {
  height: auto;
}
.why-bandhan-innovation-fund .card {
  border: none;
  height: 100%;
  border-radius: 0;
  margin-top: 10px;
}
.why-bandhan-innovation-fund .card .card-head {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.why-bandhan-innovation-fund .card .card-head img {
  width: 112px;
  height: 86px;
  max-width: 110px;
}
.why-bandhan-innovation-fund .card .card-body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 140px;
  color: #ffffff;
  padding-top: 25px;
  background-color: #EFEFEF;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: bold;
  flex: 0 0 auto;
}
.why-bandhan-innovation-fund .card .card-body.orange-bg {
  background-image: url("../images/orange-bg.png");
}
.why-bandhan-innovation-fund .card .card-body.red-bg {
  background-image: url("../images/red-bg.png");
}
.why-bandhan-innovation-fund .card .card-footer {
  padding: 20px;
  padding-top: 0;
  text-align: center;
  background-color: #EFEFEF;
  border: none;
  flex: 1;
  border-radius: 0;
  font-size: 16px;
}
.why-bandhan-innovation-fund .card .card-footer.orange-border {
  border-bottom: 5px solid #ED4C14;
}
.why-bandhan-innovation-fund .card .card-footer.red-border {
  border-bottom: 5px solid #B72230;
}
.why-bandhan-innovation-fund .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0px !important;
}
.why-bandhan-innovation-fund .swiper-pagination-bullet-active {
  background: #007aff;
}

.innovation-construct.swiper {
  padding: 20px 0;
}
@media screen and (max-width: 992px) {
  .innovation-construct .swiper-wrapper {
    padding-bottom: 50px;
  }
}
.innovation-construct .swiper-slide {
  height: auto;
}
.innovation-construct .card {
  border: 0;
  background-color: white;
  text-align: center;
  height: 100%;
}
.innovation-construct .card .card-header {
  border: 0;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}
.innovation-construct .card .card-header .top, .innovation-construct .card .card-header .btm {
  background-color: #F2F2F2;
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
.innovation-construct .card .card-header .top:after, .innovation-construct .card .card-header .btm:after {
  content: "";
  height: 100px;
  width: calc(100% + 26px);
  background-color: red;
  position: absolute;
  left: -13px;
  top: 0;
  border-radius: 150px 150px 0 0;
}
.innovation-construct .card .card-header .btm {
  background-color: #ffffff;
  top: 50px;
}
.innovation-construct .card .card-header .btm:after {
  top: auto;
  bottom: 0;
  border-radius: 0 0 150px 150px;
}
.innovation-construct .card .card-header h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  z-index: 2;
}
.innovation-construct .card .card-header p {
  margin-bottom: 0;
  z-index: 2;
}
.innovation-construct .card .card-header.orange-bg {
  color: #fff;
}
.innovation-construct .card .card-header.orange-bg .top:after, .innovation-construct .card .card-header.orange-bg .btm:after {
  background-color: #f16968;
}
.innovation-construct .card .card-header.yellow-bg {
  color: #000;
}
.innovation-construct .card .card-header.yellow-bg .top:after, .innovation-construct .card .card-header.yellow-bg .btm:after {
  background-color: #faeaaf;
}
.innovation-construct .card .card-body .image-wrapper {
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0 auto;
}
.innovation-construct .card .card-body .image-wrapper img {
  width: 50px;
  height: 50px;
}
.innovation-construct .card .card-body p {
  margin-bottom: 0;
  margin-top: 16px;
}
.innovation-construct .card .card-footer {
  border: 0;
  background: transparent;
  padding: 0;
}
.innovation-construct .card .card-footer .gray-bg-text {
  margin-bottom: 0;
  background-color: #D9D9D9;
  font-weight: 700;
}
.innovation-construct .card .card-footer .footer-text {
  padding: 10px 16px 30px;
  margin-bottom: 0;
}
.innovation-construct .card .bg-yellow {
  background-color: #FCBC00;
}
.innovation-construct .card .bg-orange {
  background-color: #FCBC00;
}

.fund-facts .heading {
 margin-bottom:30px;
}
.fund-facts .lists__content {
  display: flex;
  gap: 17px;
  margin-bottom: 15px;
}
.section-pad-top
{
  padding-top: 0px;
}
.banner_section_top
{
  background: #c8eaf1;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fund-facts .lists__content {
    flex-direction: column;
  }
}
.fund-facts .lists__data {
  width: 49%;
  background: #fff;
  padding: 24px 24px 0;
  max-height: 100%;
  border: 1px solid #F2F2F2;
}
@media screen and (max-width: 768px) {
  .fund-facts .lists__data {
    width: 100%;
  }
}
.fund-facts .lists__label {
  font-size: 21px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000000;
}

.fund-manager-section .fund-facts__inner {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .fund-manager-section .fund-facts__inner {
    flex-direction: column;
    gap: 0;
  }
}
.fund-manager-section .fund-facts__inner .image-wrapper {
  width: 14%;
}
@media screen and (max-width: 768px) {
  .fund-manager-section .fund-facts__inner .image-wrapper {
    width: 100%;
    margin: auto;
    max-width: 200px;
  }
}
.fund-manager-section .fund-facts__inner .image-wrapper img {
  width: 100%;
  height: auto;
}
.fund-manager-section .fund-facts__inner .content-wrapper {
  flex: 1;
}
.fund-manager-section .fund-facts__inner .content-wrapper .name {
  font-size: 21px;
  line-height: 21px;
  font-weight: 700;
  margin-bottom: 0;
}
.fund-manager-section .fund-facts__inner .content-wrapper .position {
  font-size: 16px;
  line-height: 21px;
  font-style: italic;
  margin-bottom: 12px;
}

.download-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .download-wrapper .swiper-wrapper {
    padding-bottom: 40px;
  }
}
.download-wrapper .swiper-pagination-bullet-active {
  background: #003254;
}
.download-wrapper .download {
  flex-grow: 1;
  flex-basis: inherit;
}
.download-wrapper .download a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 14px;
  border: 1px solid #f2f2f2;
  height: 175px;
  text-decoration: none;
  cursor: pointer;
  background-color: #FFFFFF;
}
.download-wrapper .download a:hover span {
  color: rgb(51, 153, 232);
}
.download-wrapper .download a .circle-box {
  width: 64px;
  background-color: #003254;
  height: 64px;
  display: inline-flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}
.download-wrapper .download span {
  font-size: 16px;
  color: #1c1c1a;
  font-family: "Lato Bold";
  line-height: 20px;
  margin-top: 12px;
  height: 30px;
}

footer {
  padding: 15px 0;
  background-color: #ECECEC;
}
footer .copy {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  margin: 0;
}

.wrapper-two .image-wrapper {
  text-align: center;
}
.wrapper-two .image-wrapper img {
  max-width: 382px;
  width: 100%;
}/*# sourceMappingURL=style.css.map */

.scroll-to {
font-size: 1.125rem;
white-space: nowrap;
position: fixed;
left: 50%;
bottom: 0;
z-index: 1;
-webkit-transform: translate(-50%, 100%);
transform: translate(-50%, 100%);
text-decoration: none;
padding: 15px 40px;
border-radius: 10px 10px 0 0;
-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
-webkit-transition: all ease-out 0.2s 0s;
transition: all ease-out 0.2s 0s;
}

.scroll-to {
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
 
 .unparallel .cards-wrapper .card-item img, .who-invest .cards-wrapper img
 {
  width: 65px;
 }


    .fund-container {
      max-width: 100%;
      margin: 0 auto;
      background: transparent;
      border: 1px solid #B0B0B0;
      border-radius: 0px;
      padding: 20px 30px;
/*      box-shadow: 0 2px 6px rgba(0,0,0,0.1);*/
    }

  

    .fund-row {
      display: flex;
      flex-wrap: wrap;
      padding: 15px 0;
      border-bottom: 1px solid #B0B0B0;
    }

    .fund-row:last-child {
      border-bottom: none;
    }

    .fund-label {
      flex: 0 0 33%;
      font-weight: bold;
      color: #000;
      font-size: 20px;
    }

    .fund-value {
      flex: 1;
      color: #000;
      line-height: 1.6;
      font-size: 16px;
    }

    .disclaimer {
      font-size: 13px;
      color: #666;
      margin-top: 10px;
    }
@media screen and (max-width: 767px) {


.scroll-to {
padding: 10px 40px;
}
}

.btn.yellow {
  background: #ef3b24;
  border-color: #ef3b24;
  color: #fff;
  font-size: 16px;
}


.unparallel .cards-wrapper {
  border: 1px solid #f2f2f2;
  background: #fff;
  padding: 15px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
/*  display: flex;*/
  height: 280px;
  margin-top: 10px;
 
}
.unparallel .cards-wrapper .card-item {
  flex: 1;
}
.unparallel .cards-wrapper .content-wrapper h4 {
  font-size: 20px;
  line-height: 24px;
  color: #003254;
  padding: 24px 0;
}/*# sourceMappingURL=style.css.map */



@media screen and (max-width: 767px) {
  .desktop-hides{
    display: block!important;
  }
  .mobile-hides{
    display: none!important;
  } 
}
.desktop-hides {
  display: none ;
}
.mobile-hides{
  display: block ;
} 

.newImages .circle-box {
  width: 64px;
  background-color: #003254;
  height: 64px;
  display: inline-flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}

p,li
{
	font-size: 16px;
	color: #000000;
}
 .bg-gray {
    background: #F2F2F2;
  }
.new_content_title {
    padding: 30px 0px;
}
.new_content_title.section2
{
 padding:15px 0px 0px 0px;
}
.rowcenter
{
	align-items: center;
}
.banner-col.second {
    position: absolute;
    width: 30%;
    right: 0;
    top: 0;
}

.content_sec ul li,.content-wrapper ul li
{
	font-size: 16px;
	padding: 0px 0px 10px 0px;
	font-weight: 400;
	position: relative;
}
.content_sec ul li::marker
{
	 color: #EF3B24;
	 font-size: 20px;
}
.content_circle
{
	margin: auto;
	display: block;
}
.content_circle img {
	width: 250px;
    margin: auto;
    display: block;
}
.content_img {
    margin: auto;
    display: block;
}
.content_img img
{
	margin: auto;
	display: block;
	width: 100%;
}
.image-wrapper_center
{
	margin: 30px auto;
	display: block;
	width: auto;
}
.full_width_image
{
	/* width: 100%; */
	margin: auto;
	display: block;
	overflow: auto;
}
.full_width_image img
{
	width: 100%;
	margin: auto;
}
.pad_10
{
	padding: 0px 0px 20px 0px;
}
.image-wrapper_center .imgauto
{
	width: 50%;
	display: block;
	margin: auto;
}
.imgcenter
{
	width: 100%;
	margin: auto;
	display: block;
}
.lists {
    display: block;
    width: 100%;
}
.risko-img-wrp_new img {
    width: 85%;
    margin: auto;
    display: block;
}
.mobilebanner
{
	display: none;
}
.exposure-card .image-wrapper
{
	padding: 25px 0px 0px 0px;
}
.exposure-card .content-wrapper
{
	gap: 20px;
}
.exposure-card h4
{
	padding: 0px;
	font-size: 18px;
}
.smallheading
{
	font-weight: 700;
font-size: 24px;
line-height: 26px;
margin: 0px 0px 20px 0px;
padding: 0;
text-align: center;
}
.content_section p
{
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	padding: 0px 0px 20px 0px;
}
.content_section p span
{
	display: block;
}
.factor_box {
   background: #F9F9F9;
    width: 94%;
    padding: 0px 20px 20px 20px;
    margin: 30px auto 0px auto;
    text-align: center;
}
img.factor_icon {
    margin: 0px auto -20px auto;
    width: 50px;
    position: relative;
    top:-25px;
}
.factor_box h3
{
	font-size: 20px;
	font-weight: 700;
	color: #0C3252;
	margin: 0px 0px 15px 0px;
}
img.factor_full_img {
    width: 100%;
}
.factor_slider_section {
    margin: 30px 0px 0px 0px;
}
.exposure-card img
{
	top:-36px;
	width: 100px;
}
.portfolio_boxes {
/*    display: flex;*/
    width: 100%;
    gap: 10px;
    margin: 30px 0px 0px 0px;
  
}
.portfolio_section
{
	margin: 20px 0px 0px 0px;
}
.portfolio_box {
    background: #F4FAFF;
    text-align: center;
    padding: 20px 0px 20px 0px;
    width: 96%;
    margin: auto;
      height: 260px;
}
.portfolio_box img 
{
	margin: auto;
}
.portfolio_box h4
{
	background: #0C3252;
	color: #fff;
	font-size: 16px;
	padding: 8px 0px;
	margin: 0px 0px 0px 0px;
}
.portfolio_box p
{
	font-size: 16px;
	padding: 20px 20px 0px 20px;
	color: #000;
}
.who-invest-slider-section .cards-wrapper
{
    background: #F2F2F2;
    width: 96%;
    margin: auto;
    text-align: center;
    height: 210px;
    border: 1px solid #D6D6D6;
}
.who-invest-slider-section .card-item img {
    margin: auto;
    display: block;
    padding: 10px 0px 0px 0px;
}
.who-invest-slider-section .card-body {
    padding: 10px 15px 20px 15px;
}
.who-invest-slider-section .card-body p
{
	color: #000;
	font-size: 16px;
}
.who-invest-slider-section .card-body p span
{
	display: block;
}
.download_box {
    background: #fff;
    padding: 20px;
    width: 96%;
    margin: auto;
    text-align: center;
    color: #000;
    height: 165px;
    border: 1px solid #ccc;
}
.download_box img
{
	margin: auto auto 10px auto;
	display: block;
}
.download_box a
{
	color: #000;
	font-size: 16px;
	text-decoration: none;
}
.fund-facts .lists__data
{
	background: transparent;
}
.slick-dots li
{
  background: transparent;
  border: 1px solid #007aff;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
.slick-dots li.slick-active
{
  background: #007aff;
}

.slick-dots li button:before
{
  content: '' !important;
}
.factor_slider_section
{
	overflow:hidden;
}
section.banner-section
{
	height: 374px;

}
.download_box span
{
	font-size: 16px;
	font-weight: 700;
}
.method_box {
    background: #fff;
    width: 80%;
    margin: 15px auto 0px auto;
    text-align: center;
    padding: 15px;
    height: 225px;
}
.method_box img
{
	margin: auto;
	display: block;
	width: 65px;
}
.method_box h4
{
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	padding: 8px 0px;
}
.method_box p
{
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	padding: 0px 0px;
}
.exposure-card
{
	background: #E3F2FF;
}
.fund-facts .lists__data
{
	border: 1px solid #C2C2C2;
	border-radius: 0px;
}
.leader_line_section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: auto;
    position: relative;
}
.leader_line_section:before
{
       content: '';
    position: absolute;
    background: #0C3252;
    width: 72.5%;
    top: 84px;
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
}
.time_line
{
	width: 25%;
	display: block;
	text-align: center;
	height: 170px;
}
.time_line img
{
	width: 70px;
}
.time_dot
{
	width: 10px;
	height: 10px;
	background: #EF3B24;
	border-radius: 50%;
	margin: 10px auto;
}
.martop20
{
	margin-top: 10px;
}
.video_play_section
{
	width: 90%;
	margin: auto;
	display: block;
}
.video_play_section img
{
	width: 100%;
}
.video_play_section  h4
{
	font-size: 24px;
	text-align: center;
	font-weight: 700;
	color: #020203;
	text-align: center;
	margin: 10px 0px;
}
.video_play_section a
{
	text-decoration: none;
	display: block;
}
/* .video_play_section:focus  h4 ,.video_play_section:hover  h4
{
color: #BC0E0D;
} */
section.banner-section
{
	background: #F7FBFF;
}
.source
{
	margin-top: 10px;
}
.video_slider_section {
    margin: 10px 0px 0px 0px;
}
.video_play_section
{
	cursor: pointer;
	
}
.video_play_section iframe
{
	width: 100%;
}
.video_slider_section
{
	width: 80%;
	margin: 10px auto 0px auto;
}
@media (min-width: 993px) and (max-width: 1199px) {

	.banner-col.second
	{
		width: 350px;
	}
	form
	{
		width: 100%;
		padding: 15px;
	}
	.fund-facts .lists__data
	{
		width: 48%;
	}
}
@media screen and (max-width:992px){
	.banner-col.second {
    position: relative;
    width: 100%;
    right: auto;
    top: 0;
	}
	.method_box{
		justify-content: center;
		display: flex;
		flex-direction: column;
	}
}
 @media screen and (max-width: 768px) {
.image-wrapper_center .imgauto,.risko-img-wrp_new img
{
	width: 90%;
	display: block;
	margin: auto;
}
.fund-facts .lists__content
{
	width: 100%;
 }
 .full_width_image img
{
	width: 600px;
	margin: auto;
}
.content_img img {
    margin: 20px auto 20px auto;
    display: block;
    width: 100%;
}
.content_sec {
    padding: 0px 20px 0px 0px;
}
.new_content_title {
    padding: 0px 0px 0px 0px;
}
.mark-text {
    word-break: break-all;
    margin: 0;
}

.extra-padding {
    padding: 12px !important;
}
.fund-facts .lists__content
{
	margin-bottom: 0;
}
.fund-facts .lists__content
{
	padding: 0;
}
form
{
	padding: 20px 20px 20px 20px;
}
form p
{
	margin-bottom: 0;
}
.who-invest
{
	padding: 0;
}
.new_content_title.section2
{
	padding: 0;
}
.who-invest .cards-wrapper
{
	margin-top:10px;
}
.mobilebanner
{
	display: block;
}
.desktopbanner
{
	display: none;
}

.portfolio_boxes
{
	display: block;
}
.portfolio_box
{
	width: 96%;
	margin: 20px auto;

}
form
{
	width: 100%;
}
section.banner-section
{
	padding-bottom: 20px;
	height: auto;
}
body
{
	overflow-x: hidden !important;
}
.mar_top_40
{
	margin-top: 40px;
}
.content_section p span
{
	display: inline;
}
section.banner-section
{
	background: #F7FBFF;
}
.content_sec ul li, .content-wrapper ul li
{
	text-align: justify;
}
.heading
{
	font-size: 26px;
}
.factor_box
{
	margin: 30px auto 20px auto;
}
.who-invest-slider-section .cards-wrapper
{
	margin: 0px auto 10px auto;
}
.method_box
{
	margin: 15px auto;
}
.download-wrapper-section  .slick-dots li
{
	border: 1px solid #007aff;
}
.download-wrapper-section  .slick-dots li.slick-active {
    background: #007aff;
}
.slick-dots li
{
	border: 1px solid #283747;
}
 .slick-dots li.slick-active {
    background: #007aff;
}
.leader_line_section
{
	width: 96%;
}
.time_line img
{
	width: 50px;
}
.time_line p
{
	font-size: 12px;
}
.leader_line_section:before
{
	width: 68%;
	top:63px;
}
.time_line
{
	height: 130px;
}
.download_box
{
	margin: 10px auto 20px auto;
}
}

.slick-dots li
{
width: 10px;
height: 10px;
}
.slick-dots li.slick-active {
    background: #283747;
}
.download-wrapper-section .slick-dots li,.slick-dots li
{
  border: 1px solid #283747;
}
.download-wrapper-section .slick-dots li.slick-active
{
   background: #283747;
}
.unparallel .cards-wrapper .card-item img,.who-invest .cards-wrapper img
{
  margin: auto;
  display: block;
}
.unparallel .cards-wrapper,.why-bandhan-innovation-fund .card,.who-invest .cards-wrapper
{
  margin: 0px 10px;
}
.bse-india-slider
{
  margin-top: 10px;
}
@media screen and (max-width: 768px) {

.fund-facts .lists__data
{
  height: auto;
  padding: 10px;
}
.fund-facts .lists__data p
{
  margin-bottom: 0;
}
.fund-facts .lists__content
{
  gap: 0;
}
.video_slider_section
{
  width: 100%;
}
.invest-now
{
  margin: 0px auto 30px auto;
}
.why-bandhan-innovation-fund .swiper-wrapper
{
  padding-bottom: 0;
}
.why-bandhan-innovation-fund .card .card-footer
{
  margin-bottom: 40px;
}
.unparallel .swiper-slide
{
  height: 320px !important;
}
.unparallel .cards-wrapper
{
  padding: 10px;
}
.why-bandhan-innovation-fund .card .card-footer.orange-border
{
  margin-bottom: 0;
}
    .download_box {
        margin: 10px auto 0px auto;
    }
/*.why-bandhan-innovation-fund .card
{
  height: 400px;
}*/
.why-bandhan-innovation-fund .card .card-footer
{
  margin-bottom: 0;
}
.fund-row
{
  display: block;
}
}
.m-t-10{
  margin-top: 10px;
}