/* Ubuntu font */
/* ubuntu-regular - latin */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ubuntu-v15-regular.eot"); /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/ubuntu-v15-regular.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/ubuntu-v15-regular.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/ubuntu-v15-regular.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/ubuntu-v15-regular.ttf")
      format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/ubuntu-v15-regular.svg#Ubuntu")
      format("svg"); /* Legacy iOS */
}
/* ubuntu-italic - latin */
@font-face {
  font-family: "Ubuntu";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ubuntu-v15-italic.eot"); /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/ubuntu-v15-italic.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/ubuntu-v15-italic.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/ubuntu-v15-italic.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/ubuntu-v15-italic.ttf")
      format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/ubuntu-v15-italic.svg#Ubuntu")
      format("svg"); /* Legacy iOS */
}
/* ubuntu-700 - latin */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/ubuntu-v15-700.eot"); /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/ubuntu-v15-700.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/ubuntu-v15-700.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/ubuntu-v15-700.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/ubuntu-v15-700.ttf") format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/ubuntu-v15-700.svg#Ubuntu")
      format("svg"); /* Legacy iOS */
}

/* color codes */
:root {
  --white: #ffffff;
  --black: #000000;
  --orange: #f5821f;
  --lightgrey: #f8f9fa;
  --yellow: #f9ff33;
  --grey: #808080;
  --secondary-black: #212529;
  --lavendor: #e6eeff;
  --primary-white: #f3f3f3;
  --primary-grey: #dee2e6;
  --secondary-grey: #d0d0d0;
  --them-grey: #696969;
  --font-ubuntu: "Ubuntu", sans-serif;
  --border-grey: #dee2e6;
  --footergrey: #f5f5f5;
  --green: #28a745;
  --input-grey: #ececec;
  --profile-grey: #a2a0a0;
  --tagline-grey: #404040;
  --muted-grey: #6c757d;
  --body-grey: #444;
  --purple: #2d2f6c;
  --smoke-white: #f1f1f1;
  --smoke-orange: #fff1e8;
}

/* global code */
body {
  font-family: "Ubuntu", sans-serif;
  list-style: none;
  margin: 0;
}
* {
  box-sizing: border-box;
  color: var(--black);
}

/* reset */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 0.5rem;
}
p {
  margin: 0;
  margin-bottom: 1rem;
}
a {
  text-decoration: none;
}
a:focus {
  outline: none;
}
button:focus {
  outline: none;
}
small {
  font-size: 80%;
  font-weight: 400;
}

/* flex-code */
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.display-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
.flex-row-space-around {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.flex-row-space-between {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style-type: none;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.justify-content-center {
  justify-content: center;
}
.align-items-center {
  align-items: center;
}
.justify-content-between {
  justify-content: space-between;
}
.align-items-stretch {
  align-items: stretch;
}

/* image */
.img-fluid {
  max-width: 100%;
  height: auto;
}
.carousel__control:last-of-type .navigation-icon {
  transform: rotate(180deg);
}
.product-carousel-container
  .product-nav-button.next-button
  .carousel__control
  .navigation-icon {
  transform: rotate(180deg);
}
.product-carousel-container
  .product-nav-button.prev-button
  .carousel__control
  .navigation-icon {
  transform: rotate(0);
}
.navigation-icon:hover {
  fill: var(--orange);
}
.social-link-img {
  height: 25px;
  width: auto;
}
.faq-down-arrow {
  height: 20px;
  width: auto;
}
.star-checked {
  height: 27px;
  width: auto;
}
.check-arrow {
  height: 18px;
  width: auto;
  display: flex;
}

/* text-css */
.text-line-height {
  line-height: 1.5;
}
.font-bold {
  font-weight: bold;
}
.font-global {
  font: 400 1rem/1.5 var(--font-ubuntu);
}
.theme-sub-heading-text {
  font: 17px/26px var(--font-ubuntu);
}
.theme-heading-text {
  font: 700 40px/46px var(--font-ubuntu);
  margin: 2rem 0;
}
.theme-sub-heading {
  font: normal 700 23px/30px var(--font-ubuntu);
}
.text-center {
  text-align: center;
}

/* text-color */
.font-secondary-black {
  color: var(--secondary-black);
}
.theme-text-primary {
  color: var(--orange);
}
.text-light {
  color: var(--lightgrey);
}
.text-success {
  color: var(--green);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--smoke-white);
  min-width: 190px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.dropdown-content a {
  color: var(--black);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 768px) {
  .theme-mobile-center-text {
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .theme-sub-heading-text {
    font-size: 15px;
  }
  .theme-sub-heading {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .theme-heading-text {
    font: 700 32px/42px var(--font-ubuntu);
  }
}

/* button */
.myshubhlife-roundbtn {
  font-size: 15px;
  padding: 12px 18px;
  color: var(--white);
  font-weight: bold;
  background-color: var(--orange);
  border: none;
  cursor: pointer;
  border-radius: 40px;
}
.unfilled-btn {
  color: var(--black);
  background-color: var(--white);
  border: 3px solid var(--orange);
  margin-left: 20px;
}

/* shadow */

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* list */
.list-unstyled {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1rem;
  margin-top: 0;
}

/* banner */
.extended-banner {
  padding-bottom: 6rem !important;
}
.banner-section {
  background: transparent linear-gradient(180deg, #fafafa, #e7f1ff) 0 0
    no-repeat padding-box;
}
.banner-section .banner-text {
  padding: 100px 0 0;
}
.banner-section .banner-title {
  font: 700 42px/50px var(--font-ubuntu);
}
.banner-section .banner-img {
  width: 100%;
}
.page-heading {
  min-height: 250px;
}

@media screen and (max-width: 600px) {
  .banner-section .banner-text {
    padding: 70px 0 0 5px;
  }
  .banner-section .banner-title {
    text-align: center;
    font: 700 29px/40px var(--font-ubuntu);
  }
  .banner-section .banner-top-text {
    text-align: center;
  }
  .banner-section .banner-button {
    justify-content: center;
  }
}

/* grid code */
.s-col-6,
.s-col-8,
.s-col-12,
.s-col-lg-12,
.s-col-lg-4,
.s-col-4,
.s-col-3,
.s-col-lg-2,
.s-col-lg-3,
.s-col-sm-6,
.s-col-lg-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.s-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.s-col-sm-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

/* target screen code */
@media screen and (min-width: 567px) {
  .container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .s-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .s-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .s-col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .s-col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .s-col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .s-col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .s-col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .s-col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .s-col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .s-col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  .s-col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* margin-padding */

/* mt- margin-top,
  mb:- margin-bottom,
  pt:-padding-top,
  pb:-padding-bottom,
  pl:- padding-left,
  pr:- padding-right,
  my:-margin-top & margin-bottom,
  py:-padding-top & padding-bottom
  px:- padding-left and padding-right */

.mt-3,
.my-3 {
  margin-top: 3rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 3rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: 1rem !important;
}
.pt-1,
.py-1 {
  padding-top: 1rem !important;
}
.pl-1,
.px-1 {
  padding-left: 1rem !important;
}
.pr-1,
.px-1 {
  padding-right: 1rem !important;
}
.pb-05,
.py-05 {
  padding-bottom: 0.5rem !important;
}
.pt-05,
.py-05 {
  padding-top: 0.5rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 3rem !important;
}
.pt-3,
.py-3 {
  padding-top: 3rem !important;
}
.mg-0 {
  margin: 0;
}
.mb-05,
.my-05 {
  margin-bottom: 0.5rem !important;
}
.mt-05,
.my-05 {
  margin-top: 0.5rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: 1rem !important;
}
.mt-1,
.my-1 {
  margin-top: 1rem !important;
}
.mb-15,
.my-15 {
  margin-bottom: 1.5rem !important;
}
.mt-15,
.my-15 {
  margin-top: 1.5rem !important;
}
.py-15 {
  padding: 1.5rem 0;
}
.p-15 {
  padding: 1.5rem !important;
}
@media screen and (min-width: 768px) {
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 3rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 3rem !important;
  }
  .p-md-3 {
    padding: 3rem !important;
  }
  .mb-md-15,
  .my-md-15 {
    margin-bottom: 1.5rem !important;
  }
  .mt-md-15,
  .my-md-15 {
    margin-top: 1.5rem !important;
  }
}

/* table */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--secondary-black);
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}
.table-bordered {
  border: 1px solid var(--border-grey);
}
th {
  text-align: inherit;
}
.table td,
.table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid var(--border-grey);
}
.table-bordered td,
.table-bordered th {
  border: 1px solid var(--border-grey);
}
.table thead th {
  vertical-align: bottom;
  border: 2px solid var(--border-grey);
}
.table-bordered thead td,
.table-bordered thead th {
  border-bottom-width: 2px;
}
/* lending table */
.centre {
  display: flex;
  justify-content: center;
}
.color-blue {
  color: blue;
}
/* background */
.bg-light {
  background: var(--lightgrey);
}
.bg-white {
  background: var(--white);
}

.cursor-hover {
  cursor: pointer;
}
.position-relative {
  position: relative;
}
.h-100 {
  height: 100%;
}

/* Border */

.border-bottom {
  border-bottom: 1px solid var(--border-grey);
}

/* -------------------------------------------------------------------------------------------------- */

/* css file : style.css if needed later create a file to css folder  and  paste this code  */
.card-shadow {
  box-shadow: 0 0 0.25rem 0.1rem rgba(0, 0, 0, 0.15);
}
.myshubhlife-hero-section {
  background-image: linear-gradient(var(--white), var(--lavendor));
}
.myshubhlife-product-offering {
  margin-top: 10%;
  margin-bottom: 5%;
  font-size: 30px;
  font-weight: bold;
}
.product-offering-card {
  background: var(--white);
  border: none;
  width: inherit;
  display: flex;
  flex-direction: column;
}
.product-offering-icon {
  height: 50px;
  width: auto;
}
.product-offering-card-heading {
  padding: 0.5rem 0.5rem 0 0.5rem;
  color: var(--purple);
}
.product-offering-heading {
  color: var(--purple);
  text-align: center;
  margin: 15px 0;
}
.product-offering-card-body {
  padding: 0 1rem;
  text-align: center;
}
.product-offering-card-content {
  font-size: 16px;
  margin-bottom: 20px;
}
.feature-container {
  flex-grow: 1;
}
.feature-heading {
  margin-bottom: 50px;
}
.feature-title {
  margin-bottom: 10px;
}
.features {
  margin-bottom: 30px;
}
.features-content-img {
  max-width: 55px;
  height: 55px;
}
.feature-rating-card {
  background: var(--orange);
  border-radius: 10px;
}
.features-content-item {
  max-width: 50%;
  flex: 0 0 50%;
  padding-right: 15px;
  align-items: center;
}
.features-content {
  margin-top: 10px;
  margin-left: 10px;
  flex: 1;
}
.feature-customer-card {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 2rem;
  margin-left: 2rem;
  margin-bottom: 1rem;
  margin-right: 9rem;
  color: var(--white);
}
.feature-customer-card-rating {
  font-size: 40px;
  font-weight: bold;
  color: var(--white);
}
.feature-customer-card-rating-hr-line,
.feature-customer-card-star-rating {
  margin-left: 2rem;
  margin-right: 2rem;
  font-size: 30px;
  margin-top: 20px;
}
.feature-customer-card-star-rating-info {
  font-size: 16px;
  margin-top: 2rem;
  line-height: 1.4;
  margin-left: 2rem;
  margin-bottom: 4rem;
  margin-right: 2rem;
  color: var(--white);
  width: 118px;
}
.why-financial-wellness {
  margin: 35px auto;
  position: relative;
}
.financial-wellness-item {
  flex: 0 0 50%;
}
.investment-img {
  width: 500px;
}
.why-financial-wellness-main-content {
  margin-bottom: 20px;
  font-size: 18px;
}
.why-financial-wellness-main-content-heading {
  font-size: 20px;
}
.why-financial-wellness-main-content-footer {
  font-size: 14px;
}
.why-financial-wellness-content {
  margin-left: 30px;
  margin-top: -20px;
  margin-bottom: 20px;
}
.why-patner-with-us-heading {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}
.why-patner-with-us-heading-content {
  margin-top: 10px;
}
.td-lender-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.w-60 {
  width: 70%;
}
.lending-patner-heading {
  padding: 3rem;
  font: 700 18px/30px var(--font-ubuntu);
}
.our-lending-patner-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 20rem));
  justify-content: center;
}
.our-lending-patner-card-image {
  border: 1px solid var(--primary-white);
}
.our-lending-patner-card-image .partner-name {
  color: var(--grey);
  font: 700 15px/18px var(--font-ubuntu);
}
.lending-partner-card {
  margin-bottom: 3rem;
}
.our-lending-patner-card-image:hover {
  box-shadow: 10px 10px 5px var(--primary-white);
}
.our-lending-patner-card-container h4 {
  color: var(--grey);
}
.myshubhlife-address {
  padding-right: 15px;
  padding-left: 15px;
}
.myshubhlife-field {
  margin: 0 3em;
  padding: 0 1.5rem;
}
.contact-input {
  width: 100%;
  padding: 12px 12px;
  outline: none;
  resize: none;
  border: 0;
  border-bottom: 2px solid var(--secondary-grey);
}
.contact-input:focus {
  border-bottom: 2px solid var(--orange);
}
.input-field:before {
  content: attr(type);
}
.contact-submit {
  width: 100%;
  font-size: 16px;
  color: var(--white);
  padding: 15px 12px;
  border: none;
  border-radius: 3px;
  background: var(--orange);
  cursor: pointer;
}
.media-card-body {
  padding: 1.25rem;
}
.media_card {
  flex: 0 0 29%;
  margin: 2%;
  transition: 0.5s;
  border-radius: 3px;
}
.media-card-img {
  width: 100%;
  height: 200px;
  vertical-align: middle;
  border-bottom: 1px solid var(--primary-grey);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.card-date {
  color: var(--grey);
}
.card-title {
  font-size: 20px;
}
.card-read-more {
  color: var(--orange);
  font-weight: bold;
  text-decoration: none;
}
.career {
  background: var(--lightgrey);
}
.carrer-img {
  max-width: 100%;
}
.carrer-content {
  padding: 0 3rem;
  background-color: var(--lightgrey);
  display: flex;
  align-self: center;
}
.carrer-section-img {
  background-color: var(--lightgrey);
}
.carrer-text {
  padding: 1.5rem;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}
.carrer-sub-heading {
  padding: 3rem 1rem;
  text-align: center;
  font-size: 17px;
}
.carrer-text-primary {
  color: var(--orange);
}
.paragraph-content {
  padding: 1rem;
  font: 400 1rem/1.5 var(--font-ubuntu);
  color: var(--border-grey);
}
.paragraph-content.principles p.paragraph-heading {
  margin-bottom: 0.5rem;
}
.paragraph-heading {
  font-size: 23px;
  font-weight: bold;
}
.paragraph-text {
  color: var(--body-grey);
  word-break: break-word;
}
ol.paragraph-text,
ol.paragraph-text ul,
ul.paragraph-text {
  padding-left: 20px;
}
.square-list {
  list-style-type: square;
}
.text-zero-margin-bottom {
  margin-bottom: 0;
}
.contact-us-banner {
  min-height: 350px;
}
.cards-negetive-tm {
  margin-top: -4.5rem !important;
}
.myshubhlife-product-offering-cards > div {
  display: flex;
  align-items: stretch;
}
.myshubhlife-product-offering-cards > li {
  list-style: none;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 769px) {
  .myshubhlife-hero-section,
  .feature-section,
  .why-financial-wellness,
  .contact-us,
  .media-card-section,
  .bank-statement-section {
    flex-direction: column;
  }
  .hero-section-title {
    margin-left: auto;
    text-align: center;
  }
  .feature-heading {
    text-align: center;
  }
  .feature-container {
    max-width: 100%;
    flex-wrap: nowrap;
  }
  .features-content-img {
    width: auto;
    height: 50px;
  }
  .myshubhlife-field {
    margin: 0;
    padding: 0;
  }
  .myshubhlife-product-offering {
    text-align: center;
  }
  .product-offering-card {
    margin: 1rem;
    width: inherit;
    display: flex;
    flex-direction: column;
  }
  .action-container {
    justify-content: center;
  }
  .hero-section-banner-image {
    max-width: 100%;
  }
  .feature-rating-card {
    max-width: 100%;
  }
  .investment-img {
    width: 300px;
  }
  .why-financial-wellness-financial-plan {
    max-width: 100%;
    text-align: justify;
  }
  .why-financial-wellness-financial-plan .why-financial-wellness-title {
    text-align: initial;
  }
  .testimonial-container .testimonial-slider .customer_comment {
    margin-left: auto;
    margin-right: auto;
  }
  .myshubhlife-address,
  .media-section-main-title,
  .carrers-section-main-title {
    text-align: center;
  }
  .carrer-content {
    padding: 0;
  }
  .lending-patner-heading {
    padding: 1rem;
  }
  .tool-bar {
    min-height: 0 !important;
  }
}
@media screen and (max-width: 600px) {
  .features-content {
    flex: unset;
    font-size: 14px;
  }
}

/* ----------------------------------------------------------------------------------------------------------- */

/* Css file : header.css - if needed later create a file to css folder  and  paste this code  */

.tool-bar {
  width: 100%;
  height: auto;
  position: fixed;
  left: 0;
  z-index: 500;
  top: 0;
  display: block;
  min-height: 100px;
}
.navigation-links {
  padding: 0 0 0 30px;
  margin: 0;
}
.navigation-links li {
  padding: 5px 15px;
}
.playstore-text {
  position: absolute;
  z-index: -1;
  color: transparent;
}
.nav-logo {
  z-index: 1;
}
.nav-logo .hamburger-icon {
  display: none;
}
.spacer {
  flex: 1 1;
}
.navbar-logo {
  width: 180px;
  margin-top: 5px;
  margin-bottom: 20px;
}
.navigation-links a,
.policy {
  text-decoration: none;
  color: var(--black);
  font: 600 1rem/1.5 var(--font-ubuntu);
}
.navigation-links a:hover,
.top-navigation-links a:hover {
  color: var(--orange);
}
.tool-bar.bg-white .navbar-logo {
  display: flex;
  align-items: center;
  /* margin-top: -40px; */
}
.toolbar-navigation {
  padding: 10px 10px 0;
}
.toolbar-navigation h1 {
  font-size: 2.5rem;
}
.toolbar-buttons {
  margin: 0 5px;
  display: none;
}
.toolbar-buttons .navbar-playstore {
  width: 100px;
}
.top-nav ul {
  display: flex;
  float: right;
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
  flex-wrap: nowrap;
}
.top-nav ul li {
  display: inline;
  padding-left: 10px;
  margin-left: 10px;
  font-weight: 600;
  font-size: 14px;
}
.top-nav ul li img {
  width: 110px;
}
.ekagratalogo {
  width: 180px;
  height: 30px;
}
.mobile-menu {
  display: none;
}
.parent-container .myshubhlife-roundbtn {
  box-shadow: 0 3px 40px rgba(245, 130, 31, 0.25);
  border: 2px solid var(--orange);
  border-radius: 32px;
  padding: 10px 20px;
  font: 700 1rem/1.5rem var(--font-ubuntu);
}
@media screen and (max-width: 769px) {
  .tool-bar.bg-white .navbar-logo {
    margin-top: 0;
  }
  .top-nav {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu img {
    height: 39px;
    width: auto;
  }
  .toolbar-buttons .navbar-playstore {
    display: block;
  }
  li.mobile-menu:last-child {
    margin-top: 20px;
  }
  li.mobile-menu .unfilled-btn {
    margin: 20px 0;
  }
  .navigation-links {
    position: fixed;
    width: 70%;
    max-width: 400px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: var(--white);
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
    padding: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: auto;
  }
  .navigation-links.active {
    left: 0;
    background: var(--white);
    transform: translateX(0);
    transition: all 1s ease;
  }
  .navigation-links.inactive {
    transition: all 1s ease;
    transform: translateX(-100%);
  }
  .navigation-links.active + div.backdrop {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-top: 0;
  }
  .navigation-links li {
    padding: 15px;
  }
  .nav-logo {
    display: flex;
    margin: 0 0 0 25px !important;
  }
  .nav-logo h1 {
    padding: 0rem;
    margin: 0rem;
  }
  .nav-logo .hamburger-icon {
    display: flex;
    cursor: pointer;
    margin-bottom: 18px;
  }
  .dropdown-content {
    position: relative;
    box-shadow: none;
    margin-top: 15px;
  }
}
@media screen and (max-width: 991px) {
  .parent-container .myshubhlife-roundbtn {
    padding: 10px 10px;
    font-size: 14px;
    border-radius: 25px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .navbar-logo {
    height: 31px;
    width: auto;
  }
  .toolbar-buttons {
    display: block;
  }
  .parent-container .myshubhlife-roundbtn {
    font-size: 12px;
    line-height: 1.5;
    width: 140px;
    padding: 10px 12px;
  }
}

@media screen and (max-width: 1025px) {
  .navbar-logo {
    margin: 0 25px 18px;
  }
  .nav-logo {
    margin: 18px 25px;
  }
}

@media screen and (max-width: 1199px) and (min-width: 770px) {
  .nav-logo {
    margin: 18px 10px;
  }
  .navigation-links li {
    padding: 5px 7px;
  }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
  .navigation-links li a {
    font-size: 16px;
  }
  .navigation-links {
    padding: 0 0 0 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 770px) {
  .nav-logo .navbar-logo {
    height: 30px;
    width: auto;
    margin: 0;
  }
  .navigation-links {
    padding: 0;
  }
  .navigation-links li a {
    font-size: 13px;
  }
}
@media screen and (max-width: 770px) {
  .toolbar-buttons {
    display: block;
  }
}

/* Menu Highlight Css */

#index-body .tool-bar .home-nav a,
#products-body .tool-bar .products-nav a,
#subh-saathi-body .tool-bar .subh-saathi-nav a,
#blogs-body .tool-bar .blogs-nav a,
#about-us-body .tool-bar .about-us-nav a,
#contact-us-body .tool-bar .contact-us-nav a,
#collection-body .tool-bar .collection-nav a,
#fair-practice-body .tool-bar .fair-nav a,
#covid-resources-body .tool-bar .covid-resources-nav a,
#fair-practice-body .tool-bar .policies-code .fairpractice,
#grievance-policy-body .tool-bar .policies-code .customer-policy,
#collection-body .tool-bar .policies-code .collection-code,
#fair-practice-body .tool-bar .policies-code .policy,
#grievance-policy-body .tool-bar .policies-code .policy,
#collection-body .tool-bar .policies-code .policy {
  color: var(--orange);
}

/* ------------------------------------------------------------------------------------------------------------------ */

/* Css File : carousel.css - if needed later create a file to css folder  and  paste this code  */
.carousel {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.carousel__control {
  position: absolute;
  outline: 0;
  transition: all 0.5s;
  border-radius: 35px;
  z-index: 1000;
  border: 0;
  height: 43px;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.carousel__control {
  background: transparent;
  border-radius: 50%;
  z-index: 10;
  width: 43px;
}
.carousel__control {
  position: absolute;
  z-index: 2;
  text-align: center;
  display: block;
  color: var(--white);
  font-size: 20px;
  display: block;
}
.carousel__control {
  color: var(--black);
  font-size: 25px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  font-family: revicons;
}
.carousel__control:hover {
  cursor: pointer;
}
.carousel__control:first-of-type {
  left: 2px;
}
.carousel__control:last-of-type {
  right: 2px;
}
.product-list {
  position: absolute;
  margin: 0;
  padding: 0;
  transition: transform 0.3s;
  transform: translateX(0px);
  list-style: none;
  height: 300px;
}
.media-list,
.customer-track,
.financial-track,
.product-offering-list,
.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, transition;
  overflow: unset;
  transition: transform 400ms ease-in-out 0s;
}
.financial-track {
  margin-bottom: 20px;
}
.product-list {
  align-items: center;
}
.product-list__item {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  padding: 1rem;
  flex: 1 1 auto;
  position: relative;
  width: 222px;
}
.featured-partner-section .partner-img {
  max-height: 120px;
  max-width: 150px;
  width: auto;
  padding: 20px;
}
.product-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
}
.product-carousel-container .product-nav-button {
  position: relative;
  display: flex;
  align-items: center;
  position: absolute;
}
.product-carousel-container .product-nav-button.next-button .carousel__control,
.product-carousel-container .product-nav-button.prev-button .carousel__control {
  position: relative;
  left: unset;
  right: unset;
}
.product-carousel-container .product-nav-button.prev-button {
  left: -20px;
}
.product-carousel-container .product-nav-button.next-button {
  right: -20px;
}

@media screen and (max-width: 768px) {
  .product-carousel-container .product-nav-button.prev-button {
    left: 14px;
  }
  .product-carousel-container .product-nav-button.next-button {
    right: 14px;
  }
}

/* Media Carousel */
.media-list .media-list__item {
  width: 370px;
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.product-offering-list .product-offering-list__item {
  width: auto;
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

@media screen and (max-width: 600px) {
  .media-list .media-list__item {
    width: 333px;
  }
  .product-offering-list .product-offering-list__item {
    width: auto;
  }
  .product-carousel-container .product-nav-button.prev-button {
    left: 2px;
  }
  .product-carousel-container .product-nav-button.next-button {
    right: 2px;
  }
}

.media-list .media-list__item .card-body .theme-card-title {
  font: 700 18px/25px var(--font-ubuntu);
  margin-bottom: 0.5rem;
}
.theme-card-subtitle {
  font: normal 14px/18px var(--font-ubuntu);
  color: var(--muted-grey);
}
.theme-card-read-more {
  font: 700 14px/18px var(--font-ubuntu);
  color: var(--orange);
}
.media-list__item div.h-100 {
  width: 100%;
}
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
  flex-shrink: 0;
  width: inherit;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem;
  flex: 1 1 auto;
}

/* Customer Carousel */
.testimonial-section {
  margin: 0 0 5rem;
}
.customer-list,
.financial-list {
  position: relative;
  overflow: hidden;
}
.customer-item,
.fiancial-item {
  flex: 1 1 auto;
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  padding: 1rem;
}
.testimonial-section .testimonial-comment {
  max-width: 600px;
  width: auto;
  padding: 20px 10px;
  margin: 0 auto;
}
.testimonial-section .testimonial-name {
  font: 700 16px/20px var(--font-ubuntu);
}
.testimonial-section .testimonial-location {
  font: 400 14px/20px var(--font-ubuntu);
}
.testimonial-image {
  width: 120px;
  border-radius: 50%;
  box-shadow: 0 3px 40px rgba(103, 103, 103, 0.16);
}
.customer-dot-list,
.financial-dot-list {
  position: absolute;
  bottom: 0;
  display: flex;
  left: 0;
  right: 0;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.customer-dot-list button,
.financial-dot-list button {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
  box-shadow: none;
  transition: background 0.4s;
  border: 2px solid grey;
  padding: 0;
  margin: 0 10px;
  outline: 0;
  cursor: pointer;
}

.customer-dot-list .customer-dot--active button,
.financial-dot-list .financial-dot--active button {
  background: var(--black);
}

.customer-container,
.financial-container {
  padding-bottom: 30px;
}

/* -------------------------------------------------------------------------------------------------- */

/* Css File : ./css/footer.css -if needed later create a file to css folder  and  paste this code  */
.footer-section {
  background: var(--black);
  position: relative;
  display: block;
}
.footer-section .built-with-love span {
  color: red;
  font-size: 15px;
}
.footer-section .footer-logo {
  height: 101px;
  width: auto;
}
.footer-section .footer-company-info .text-light {
  font: 400 16px/1.5 var(--font-ubuntu);
  color: var(--white);
  line-height: 31px;
}
.footer-section a.text-light {
  color: var(--footergrey) !important;
}
.footer-section .footer-heading {
  font: 400 20px/1.5 var(--font-ubuntu);
  color: var(--white);
}
.footer-section .footer-link {
  padding: 6px 0;
  font: 400 14px/1.5 var(--font-ubuntu);
}
.footer-section .footer-link a:hover {
  color: var(--orange) !important;
  cursor: pointer;
}
.footer-section .footer-social-icons {
  color: var(--white);
  margin-right: 25%;
}
.sub-container {
  padding: 10px 10px 0 !important;
}

.footer-bottom .text-light {
  font: 400 13px/1.5 var(--font-ubuntu);
}

@media screen and (min-width: 992px) {
  .mb-lg-0 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1025px) {
  .sub-container {
    padding: 0 !important;
  }
}
@media screen and (max-width: 600px) {
  .footer-section {
    padding: 20px !important;
  }
  .footer-section .last-footer-col {
    max-width: 75%;
    flex: 0 0 75%;
  }
}

/* app-download-section */
.bottom-mobile-app-section .mobile-app-img {
  height: 525px;
  width: auto;
}
.bottom-mobile-app-section .bottom-playstore {
  height: 56px;
  width: auto;
}

@media screen and (max-width: 600px) {
  .bottom-mobile-app-section {
    flex-direction: column-reverse;
  }
  .bottom-mobile-app-section .play-store-icon {
    text-align: center;
    padding: 30px 20px;
  }
}

/* ----------------------------------------------------------------------------------------------------------- */

/* Css File : about-us.css - if needed later create a file to css folder  and  paste this code */

/* about-us-story */
.about-us-sub-text {
  font: 700 20px/25px var(--font-ubuntu);
  margin: 15px 0;
}

/* our-team */
.about-us-container .founder-profile-cards {
  padding: 10px 31px;
}
.about-us-container .middle,
.about-us-container .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.65);
  overflow: hidden;
  width: 100%;
  height: 0;
  z-index: 5;
  transition: 0.5s ease;
}
.about-us-container .cursor-hover:hover .middle {
  height: 100%;
}
.about-us-container .text {
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font: 700 20px var(--font-ubuntu);
}
.about-us-container .profile-image-wrapper {
  padding: 20px 0;
  position: relative;
  margin: auto;
  height: 201px;
  width: fit-content;
}
.about-us-container .profile-image-wrapper .profile-img {
  object-fit: contain;
  width: 161px;
  height: 161px;
  border-radius: 50%;
}
.about-us-container .founder-profile-cards .profile-image-wrapper {
  padding: 20px 10px;
  height: 170px;
}
.about-us-container .founder-profile-cards .profile-image-wrapper .profile-img {
  border-radius: 25%;
  height: 130px;
  width: auto;
}
.about-us-container .profile-image-wrapper .profile-linkedin-img {
  position: absolute;
  top: 120px;
  right: 10px;
}
.about-us-container .profile-name {
  font: 700 16px/20px var(--font-ubuntu);
}
.about-us-container .profile-designation-text {
  font: normal 12px/15px var(--font-ubuntu);
  color: var(--profile-grey);
}
.about-us-container .profile-tagline-text {
  font: italic 300 14px/18px var(--font-ubuntu);
  color: var(--tagline-grey);
}
.about-us-container .profile-wrapper {
  position: relative;
  height: 300px;
  margin: auto;
  cursor: pointer;
  padding: 20px 10px;
}
.about-us-container .profile-wrapper:hover .overlay {
  height: 100%;
}
.about-us-container .member-cards {
  margin: 10px 0;
}
.about-us-container .profile-wrapper .profile-linkedin-img {
  position: absolute;
  top: 150px;
  right: 33px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-container .founder-img {
    flex: unset;
    max-width: unset;
  }
  .about-us-container .founder-tagline {
    flex: unset;
    max-width: unset;
    padding: 0 25px;
  }
  .about-us-container .member-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* ----------------------------------------------------------------------------------------------------------- */

/* Css File : faq.css - if needed later create a file to css folder  and  paste this code */

.faq-container .card {
  position: relative;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.25rem;
}
.faq-container .faq-card {
  padding: 1px;
  border: none;
}
.faq-container .accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.faq-container .card-header {
  padding: 1.5rem 1.25rem !important;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.faq-container .card-header:hover {
  cursor: pointer;
}
.faq-container .accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}
.faq-container .card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.faq-container .faq-title-heading {
  font: 700 17px/20px var(--font-ubuntu);
  flex: 1;
}
.faq-container .collapse:not(.show) {
  display: none;
}
.faq-container .faq-card .theme-sub-heading-text {
  color: rgb(128, 128, 128);
  flex: 1 1 auto;
  padding: 1.25rem;
}

/* ----------------------------------------------------------------------------------------------------------- */

/* Css File : modal.css - if needed later create a file to css folder  and  paste this code */
.modal {
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 10000;
  padding-top: 40px;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.theme-modal-backdrop {
  position: fixed;
  background: rgba(6, 6, 6, 0.019);
  width: 100%;
  height: 100%;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.banner-home-anchor {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .modal-xl,
  .modal-lg {
    max-width: 500px;
    margin: 1.75rem auto;
  }
}
@media screen and (min-width: 992px) {
  .modal-xl,
  .modal-lg {
    max-width: 800px;
  }
}
@media screen and (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal .modal-dialog {
  margin: 2rem auto !important;
}
.modal-content {
  position: relative;
  width: calc(100% - 20px);
  pointer-events: auto;
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .modal-content {
    width: 100%;
  }
}
.modal-header {
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal .modal-header {
  border-bottom: 0;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close.home-close {
  font-size: 1.8rem;
}
.close:hover {
  opacity: 0.75;
  cursor: pointer;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.modal-header .close {
  padding: 0.5rem 1rem;
  margin: -1rem -1rem -1rem auto;
}
.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal .modal-body {
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;
}
.modal .modal-body.index-modal {
  width: 100%;
  padding-top: 15px;
}
.details-profile-cards .profile-image-wrapper {
  padding: 10px;
  width: 190px;
  position: relative;
  height: 190px;
  margin: 20px auto;
}
.details-profile-cards .profile-image-wrapper .profile-img {
  border-radius: 5%;
}
.details-profile-cards .profile-image-wrapper .profile-linkedin-img {
  position: absolute;
  top: 155px;
  right: 80px;
}
.details-profile-cards .profile-designation-text {
  font-size: 15px;
}
.details-profile-cards .theme-sub-heading-text {
  text-align: left;
}
.product-modal-img-web {
  width: inherit;
  object-fit: cover;
}

/* ----------------------------------------------------------------------------------------------------------- */

/* Css File : subh-sathi.css - if needed later create a file to css folder  and  paste this code */

/* Subh Saathi Banner */
.banner-section .banner-button .theme-btn-primary {
  min-width: 130px;
  box-shadow: 0 3px 40px rgba(245, 130, 31, 0.2);
  border: 2px solid var(--orange);
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 700;
}

/* membership-section */
.gold-membership-section .gold-products-individual {
  flex: 0 0 33%;
  width: 100%;
  padding-top: 0.5rem;
}
.gold-membership-section .gold-products-individual .rounded-shadow-img {
  width: auto;
  object-fit: cover;
  height: 120px;
  padding: 20px;
  border-radius: 50%;
  background: var(--white) 0 0 no-repeat padding-box;
  box-shadow: 0 3px 40px hsla(0, 0%, 40.4%, 0.16);
  opacity: 1;
}
.gold-membership-section .gold-products-individual .pro-text {
  padding: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--secondary-black);
}

@media screen and (max-width: 600px) {
  .gold-membership-section .s-row {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .gold-membership-section .gold-products-individual {
    flex: 0 0 50%;
  }

  .gold-membership-section .gold-products-individual .pro-text {
    font-size: 14px;
  }
}

/* video-section */
.shubh-saathi-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.shubh-saathi-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.shubh-saathi-video-container {
  width: 70%;
  display: flex;
  justify-content: center;
}
.shubh-saathi-video {
  flex: 0 0 50%;
  height: 420px;
  border-radius: 10px;
  margin: 10px;
}
@media screen and (max-width: 600px) {
  .shubh-saathi-video {
    flex: 0 0 100%;
    border-radius: 10px;
    height: 200px;
  }
  .shubh-saathi-video-container {
    flex-wrap: wrap;
  }
}

/* Loan documents terms and conditions section  */

.document-selection-section {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dropdown-label {
  font-size: 1rem;
  font-weight: bold;
}

.document-dropdown {
  padding: 10px 17px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #2c247d;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.document-dropdown option {
  background-color: white;
  color: #2c247d;
}

.document-dropdown option:hover {
  background-color: #f5821f;
  color: white;
}

.language-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.language-tab {
  padding: 2px 12px;
  border: 2px solid #f5821f;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  background-color: white;
  color: #f5821f;
}

.language-tab.active {
  font-weight: bold;
  background-color: #f5821f;
  color: white;
  border-color: #f5821f;
  transform: scale(1.1);
}

.terms-and-condition-section {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

@media (max-width: 768px) {
  .document-selection-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .language-tabs {
    justify-content: flex-start;
  }
}

/* benefits section */

.benefit-section {
  margin: 50px auto;
  padding: 30px 0;
}
@media screen and (max-width: 600px) {
  .benefit-section {
    padding: 0;
    margin: 0;
  }
}

/* page not found css */

.page-not-found-container .banner-section {
  padding-top: 4rem;
}
.page-not-found {
  text-align: center;
  padding: 10px;
}

.text404style {
  color: gray;
  font-size: 50px;
  font-weight: 600;
  font-size: 50px;
  padding-top: 50px;
}

.not-found-image {
  width: 80%;
  display: block;
  margin: auto;
  padding: 20px 0;
}
.go-to-home {
  padding: 5px !important;
  margin: 20px;
}

@media (max-width: 700px) {
  .not-found-image {
    width: 100%;
  }
}
.whatsapp-icon-container {
  position: fixed;
  bottom: 15px;
  right: 100px;
}
.whatsapp-icon {
  width: auto;
  height: 70px;
}
@media (max-width: 767px) {
  .whatsapp-icon-container {
    bottom: 5px;
    right: 20px;
  }
  .whatsapp-icon {
    width: auto;
    height: 60px;
  }
}
/* covid 19 resources */
.important_linl_wrap {
  word-wrap: break-word;
}
@media (max-width: 767px) {
  .resources {
    font-size: 1rem;
    white-space: pre-line;
  }
  .financial-wellness-item {
    flex: 0 0 100%;
  }
}
.d-table {
  display: table;
}
.gap-1 {
  gap: 10%;
}
.pd-10 {
  padding: 10px;
}
.link {
  display: flex;
}
.partner-name-table {
  text-align: center;
  color: var(--tagline-grey);
}
.display-flex {
  display: flex;
}
#align-center {
  text-align: center;
  vertical-align: middle;
}

ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
  font-weight: 300;
  font-size: 16px;
}

ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}

ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}

li ol > li {
  margin: 0;
}

li ol > li:before {
  content: counters(item, ".") " ";
}

.font-heading {
  font-size: 22px;
  font-weight: 600;
}

.shadow-card {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 400px) {
  .shadow-card {
    padding: 10px;
  }
}
.rounded-shadow-img {
  width: 140px;
  object-fit: cover;
  height: 130px;
  padding: 20px;
  border-width: 1px;
  border-radius: 100px;
  background: var(--smoke-orange) 0% 0% no-repeat padding-box;
  box-shadow: 0 3px 40px hsla(0, 0%, 40.4%, 0.16);
  opacity: 1;
  margin: 0 auto;
}

.shadow-card-body {
  border-radius: 10px;
  padding: 30px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 25%;
}

.shadow-card-heading {
  margin-top: 0.5rem;
  color: var(--purple);
  text-align: center;
}

.shadow-card-info {
  font-size: 1.1rem;
  line-height: 1.3;
  text-align: left;
}

#card-info-center {
  text-align: center;
}

.w-full {
  width: 100%;
}

.banner-img-container {
  width: inherit;
  height: inherit;
  overflow: hidden;
  max-width: 100%;
}

.banner-img-container .banner-img-wrapper {
  width: 100%;
  display: flex;
  max-width: inherit;
  animation: slide 10s infinite;
  -webkit-animation: slide 10s infinite;
  -moz-animation: slide 10s infinite;
}

.banner-img-container .banner-img-wrapper img {
  width: auto;
  height: auto;
  max-width: inherit;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-100%);
  }
  55% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-200%);
  }
  80% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(-300%);
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(0);
  }
  30% {
    -webkit-transform: translateX(-100%);
  }
  50% {
    -webkit-transform: translateX(-100%);
  }
  55% {
    -webkit-transform: translateX(-200%);
  }
  75% {
    -webkit-transform: translateX(-200%);
  }
  80% {
    -webkit-transform: translateX(-300%);
  }
  100% {
    -webkit-transform: translateX(-300%);
  }
}

@-moz-keyframes slide {
  0% {
    -moz-transform: translateX(0);
  }
  25% {
    -moz-transform: translateX(0);
  }
  30% {
    -moz-transform: translateX(-100%);
  }
  50% {
    -moz-transform: translateX(-100%);
  }
  55% {
    -moz-transform: translateX(-200%);
  }
  75% {
    -moz-transform: translateX(-200%);
  }
  80% {
    -moz-transform: translateX(-300%);
  }
  100% {
    -moz-transform: translateX(-300%);
  }
}
