@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: 10px auto 25px;
}
.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;
  }
}
.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: 20px 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: 20px 30px;
  text-align: center;
  border-radius: 8px;
  min-height: 220px;
  margin-top: 25px;
  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;
}
@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;
}
.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;
}
.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: #003254;
}

.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: 40px;
}
.fund-facts .lists__content {
  display: flex;
  gap: 17px;
  margin-bottom: 15px;
}
@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: 8px 0;
  background-color: #000000;
}
footer .copy {
  color: #FFF;
  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);
}
 

@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: 2rem 2rem 3rem;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  display: flex;
  height: 100%;
 
}
.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;
}