@import "./_variable.css";
body {
  background: var(--default-bg-color1);
  color: var(--primary-text-color);
  font-family: "Open Sans", sans-serif;
  position: relative;
}

a {
  color: var(--action-text-color);
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: var(--action-hover-text-color);
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 10px 0;
  padding: 0;
}

img {
  width: 100%;
  margin-top: 8%;
}

marquee {
  background: var(--secondary-action-hover-text-color);
  color: var(--default-bg-color1);
  font-size: 14px;
  font-weight: 600;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: var(--default-bg-color1);
  box-shadow: 0 2px 15px -2px rgba(0, 0, 0, 0.2);
}
/* #header .container {
  max-width: 90%;
  padding: 0;
} */

#header.header-scrolled,
#header.header-pages {
  border-bottom: 1px solid var(--header-border-bottom-color);
}

.modal {
  z-index: 10000;
}

#header .logo h1 {
  font-size: 28px;
  margin-right: 1em;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo .text-light {
  margin-top: 20px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: var(--secondary-text-color);
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin-left: -1em;
  width: 180px;
  height: auto;
  margin-top: 0;
}

#header .logo .logo-text-1 {
  color: var(--action-hover-text-color);
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav2 li {
  margin: -18px 8px;
}

.nav2 li a {
  font-size: 13px;
  padding: 9px 1px;
}

@media (max-width: 416px) {
  .nav2 li a {
    font-size: 16px;
    padding: 10px 20px;
    font-weight: 500;
  }
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: var(--action-text-color);
  padding: 8px;
  transition: 0.3s;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: var(--action-hover-text-color);
  text-decoration: none;
}

.main-nav .btn-secondary:hover {
  color: #fff;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: -85px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: var(--default-bg-color1);
  box-shadow: 0px 0px 30px var(--default-box-shadow);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: var(--action-text-color);
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: var(--action-hover-text-color);
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}
/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: var(--secondary-bg-color);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: var(--default-bg-color1);
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav .btn-secondary {
  color: var(--action-hover-text-color);
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #74b5fc;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: var(--action-text-color);
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: var(--default-overlay-color);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: var(--default-bg-color1);
}

.product-card {
  padding: 10px 30px;
}

.product-card:hover {
  border-radius: 5px;
  background-color: var(--default-bg-color2);
  box-shadow: 5px 5px 20px 2px var(--primary-box-shadow);
}

.product-card a {
  padding: 10px 0 10px 0 !important;
  font-size: 12px !important;
  letter-spacing: 1px;
  font-weight: 600;
}

.product-card h4 {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--ternary-text-color);
}

.sign-up {
  font-size: 20px;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1250px;
  }
}

@media (max-width: 416px) {
  .mobile-view {
    top: 82%;
    background: #000;
  }
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

.landing-header {
  margin-top: 6em;
}

.landing-header .large-text {
  font-size: 26px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  color: #000;
}

.landing-header .small-text {
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: normal;
  color: #000;
}

#header-slide img {
  margin-top: 0;
}

#intro {
  width: 100%;
}

#intro .intro-img {
  width: 40%;
  float: left;
  margin-top: 0;
}

#intro .intro-info {
  margin-top: 6px;
  width: 50%;
  float: right;
}

#intro .intro-info h2 {
  color: var(--primary-text-color);
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
  animation: slideInRight;
  animation-duration: 2s;
}

#intro .intro-info h2 div {
  color: var(--secondary-action-hover-text-color);
  text-decoration: underline;
  margin-bottom: 10px;
}

#intro .intro-info h4 {
  color: var(--primary-text-color);
  font-size: 18px;
  letter-spacing: 1px;
  animation: slideInDown;
  animation-duration: 2s;
}

#intro .intro-info h4 span {
  color: blue;
  text-decoration: underline;
  font-size: 22px;
  font-weight: 600;
}

.divider {
  width: 100%;
  /*height: 1px;
   margin: auto;
  background: var(--ternary-text-color);*/
  margin: 28px 0;
}

.counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 25px;
  display: block;
  color: #0a2744;
}

.counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: var(--primary-text-color);
}

.counter-text-wrapper .counter-text-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.36;
  color: #0a2745;
  margin-top: 29px;
}

.counter-text-wrapper .counter-text {
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: normal;
  color: #2b3d51;
  margin-top: 11px;
  padding-right: 0;
  width: 400px;
  height: 52px;
}

@media (max-width: 416px) {
  .counter-text-wrapper .counter-text-heading {
    font-size: 24px;
  }
  #intro .intro-info {
    display: none;
  }
  #intro .intro-img {
    width: 100%;
  }
  #intro .col-6 {
    flex: 0 0 32%;
  }
  .mobile-btn {
    display: block !important;
    margin-top: 15px;
  }
  .owl-carousel.owl-loaded {
    display: none;
  }
  .web_slide {
    display: none;
  }
  .mobile_slide {
    display: block !important;
  }
}
/*--------------------------------------------------------------
# Intro-II Section
--------------------------------------------------------------*/

.intro-II-wrapper {
  padding: 30px 0 30px 0;
}

#intro-II .intro-II-image img {
  width: 200px;
  height: auto;
}

#intro-II .intro-II-description .app-icons img {
  width: 70px;
  padding: 10px 10px 10px 0;
}

#intro-II .intro-II-description .small-text {
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: var(--primary-text-color);
}

#intro-II .intro-II-description .large-text {
  font-size: 28px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  color: var(--action-hover-text-color);
}

@media (max-width: 416px) {
  .intro-II-wrapper {
    padding-bottom: 0;
  }
  .footer_link {
    flex-direction: column;
  }
}
/*--------------------------------------------------------------
# Creation step Section
--------------------------------------------------------------*/

#creation-step {
  padding: 6px 0 70px 0;
  position: relative;
}

#creation-step .large-text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.36;
  color: var(--secondary-text-color);
}

#creation-step .small-text {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #000;
}

#creation-step h5 {
  font-size: 30px;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--action-hover-text-color);
}

#timeline-wrap {
  margin: 5% 8%;
  top: 100;
  position: relative;
}

#timeline-image img {
  width: 20%;
  padding: 20px;
  margin-top: 2%;
}

#timeline-text span {
  width: 20%;
}

#timeline {
  height: 2px;
  width: 100%;
  background-color: #aabbc4;
  position: relative;
}

.marker {
  font-size: 1.4em;
  text-align: left;
  position: absolute;
  margin-left: -35px;
  width: min-content;
}

.marker .icon-container {
  line-height: 50px;
  color: #fff;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-action-hover-text-color) !important;
}

.marker .heading {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  width: max-content;
  color: var(--action-hover-text-color);
}

.marker .description {
  color: var(--primary-text-color);
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 10px 10px 0;
}

.marker:hover {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.mfirst {
  top: -25px;
}

.m2 {
  top: -25px;
  left: 32.5%;
}

.m3 {
  top: -25px;
  left: 66%;
}

.mlast {
  top: -25px;
  left: 100%;
}

@media (max-width: 416px) {
  #timeline {
    display: none;
  }
  #creation-step {
    padding-bottom: 50px;
  }
  #creation-step .large-text {
    font-size: 24px;
  }
  #timeline-wrap {
    height: 100vh;
    margin: 2em 0 0 0;
  }
  .marker {
    margin-left: 0;
    width: 50%;
    left: 72%;
    transform: translateX(-50%);
  }
  .mfirst {
    top: 0;
  }
  .m2 {
    top: 7.2em;
  }
  .m3 {
    top: 16em;
  }
  .marker .description {
    letter-spacing: 0;
    font-weight: 400;
    padding: 0;
  }
  .mlast {
    top: 26em;
  }
  .marker .heading {
    width: auto;
  }
  #timeline-image {
    margin-top: 0;
    float: left;
  }
  #timeline-image img {
    width: 50%;
    padding: 20px;
    margin-top: 7%;
    margin-left: -196px;
  }
  .m-32 {
    margin-top: 2.28em !important;
  }
  .m-85 {
    margin-top: 6em !important;
  }
  .m-47 {
    margin-top: 3em !important;
  }
}
/*--------------------------------------------------------------
# feature Section
--------------------------------------------------------------*/

#feature {
  padding-bottom: 100px;
}

#feature .small-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-text-color);
}

#feature .large-text {
  font-size: 28px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  color: var(--secondary-text-color);
}

#feature .feature-card-wrapper {
  margin-top: 32px;
  display: flex;
}

#feature .feature-card-wrapper .feature-card {
  display: flex;
  flex-direction: column;
  max-width: 296px;
  height: 450px;
  border-radius: 8px;
  position: relative;
  margin-right: 16px;
  background-color: var(--card-bg-color);
  padding: 10px 29px;
}

#feature .owl-dots {
  margin-top: 5px;
  text-align: center;
  position: absolute;
  top: 100%;
  right: 0;
  display: block;
  outline: none;
}

#feature .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#feature .owl-dot.active {
  background-color: #007bff;
}

#feature .owl-carousel .owl-item img {
  width: 60%;
}

#feature .feature-card-wrapper .feature-card .text-box {
  display: flex;
  flex-direction: column;
}

#feature .feature-card-wrapper .feature-card .text-box .large-text {
  font-size: 21px;
  margin-bottom: 10px;
}

#feature .search-icon {
  color: #74b5fc;
  font-size: 110px;
  margin: 9% 0;
}

#feature .feature-card-wrapper .feature-card .text-box .small-text {
  font-size: 14px;
  line-height: 25px;
  overflow: hidden;
  height: 130px;
}

#feature .feature-card-wrapper .feature-card .text-box a {
  font-size: 13px;
  color: var(--action-hover-text-color);
}

#feature .feature-card-wrapper .feature-card .card-btn {
  margin-top: 29px;
}
/*--------------------------------------------------------------
# Intro-II Section
--------------------------------------------------------------*/

#Offer {
  background: var(--card-bg-color);
  padding: 50px 20px;
}

#Offer .large-text {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.36;
  color: var(--secondary-text-color);
  margin-left: 25%;
}

#Offer .Search-box {
  height: 50px;
  width: 100%;
  border-radius: 24px;
  border: 2px solid var(--secondary-text-color);
  padding: 8px 16px;
  outline: none;
  margin-top: 3%;
}

#Offer .search-data {
  margin-top: 18%;
  padding: 40px 70px;
  border-radius: 80px;
  background: #fff;
  width: 100%;
}

#Offer .search-data .title {
  font-size: 20px;
  position: relative;
  letter-spacing: 1px;
}

#Offer .search-data .title span {
}

.increment-triangle {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 16px solid green;
  position: absolute;
  left: 44%;
  top: 0px;
}

.decrement-triangle {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 16px solid red;
  position: absolute;
  left: 44%;
  top: 5px;
}

#Offer .search-data .digit {
  font-size: 34px;
  font-weight: 600;
  color: #444;
  letter-spacing: 1px;
}

@media (max-width: 416px) {
  #Offer {
    padding: 20px 0;
  }
  #Offer .Search-box {
    width: 100%;
    margin-left: 0;
  }
  #Offer .Offer-wrapper img {
    width: 70%;
  }
  #Offer .large-text {
    margin-left: 20%;
    font-size: 25px !important;
  }
  #Offer .search-data .title {
    font-size: 18px;
  }
  .increment-triangle {
    border-left: 6px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid green;
  }
  .decrement-triangle {
    border-left: 6px solid transparent;
    border-right: 7px solid transparent;
    border-top: 11px solid red;
    top: 2px;
  }
  #Offer .search-data .digit {
    font-size: 24px;
  }
  #Offer .search-data .increment {
    font-size: 14px;
  }
  #Offer .search-data {
    margin: 15% 0;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    flex-direction: row;
  }
}
/*--------------------------------------------------------------
# Query Section
--------------------------------------------------------------*/

#query .query-wrapper {
  margin: 2em 0;
}

#query .query-wrapper .large-text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.36;
  color: var(--secondary-text-color);
}

#query .query-wrapper .small-text {
  width: 50%;
  margin: 50px;
  font-size: 16px;
  font-weight: 400;
}

#query .query-wrapper .small-text a {
  color: var(--action-hover-text-color);
}

@media (max-width: 416px) {
  #query .query-wrapper .small-text {
    width: 100%;
    margin: 14px;
  }
}
/*--------------------------------------------------------------
# Partner's Section
--------------------------------------------------------------*/

#Partners {
  padding: 0 0 50px 0;
  color: #000;
}

#Partners .partner-text {
  position: relative;
}

#Partners .partner-text .large-text {
  font-size: 35px;
  font-weight: 700;
  position: relative;
  color: #00ff00;
}

#Partners .partner-text .earn-profit {
  text-align: left;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 600;
}

#Partners .partner-text .description {
  opacity: 0.7;
}

#Partners .partner-text .large-text::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  background-color: #00ff00;
  bottom: 0;
  left: 0;
}

#Partners .partner-text .small-text {
  font-size: 24px;
  opacity: 0.7;
  letter-spacing: 1px;
  margin: 1.3em 0;
}

#Partners .ux-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 40px;
}

#Partners .ux-container .refer-icon {
  width: 100px;
  height: 100px;
  background-color: darkblue;
  border-radius: 50%;
  text-align: center;
}

#Partners .ux-container .refer-icon .fa {
  font-size: 40px;
  line-height: 2.3;
}

@media (max-width: 416px) {
  #Partners .partner-text .large-text {
    line-height: 1.5;
  }
  #Partners .partner-text .small-text {
    font-size: 18px;
    margin-top: 1em;
  }
  #Partners .partner-steps {
    padding: 80px 0 0 0;
  }
  #Partners .partner-steps img {
    width: 5em;
  }
  .mr-30 {
    margin-right: 30px;
  }
}
/*--------------------------------------------------------------
# referral
--------------------------------------------------------------*/

#referral {
  padding: 10px 0;
  background: #1489fd;
  color: #fff;
}

#referral h5 {
  font-weight: 700;
}

#referral .benifits {
  padding: 20px 0;
  background: white;
  border-radius: 74px;
}

@media (max-width: 416px) {
  #referral .benifits .d-flex {
    flex-direction: column;
  }
}

#referral .referral_item .referral_img {
  width: 80px;
  height: 80px;
  background: blue;
  border-radius: 100%;
  padding: 0.5rem;
}

#referral .referral_item .referral_img img {
  width: 100%;
  margin: 0;
}

#referral .referral_item span {
  color: #000;
  font-weight: 500;
}
/*--------------------------------------------------------------
# why us
--------------------------------------------------------------*/

#why-us {
  margin: 50px 0;
}

#why-us .why-us-wrapper .small-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.38;
  color: var(--secondary-text-color);
}

#why-us .why-us-wrapper .large-text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.36;
  color: var(--secondary-text-color);
  padding-right: 0;
  width: auto;
  margin-bottom: 15px;
}

#why-us .why-us-wrapper .why-us-content {
  width: 75%;
}

#why-us .why-us-wrapper .why-us-content .why-us-description .description {
  margin-top: 15px;
  padding: 20px;
}

#why-us .why-us-wrapper .why-us-content .why-us-description .large-text {
  font-size: 21px;
  line-height: 1.33;
  letter-spacing: 0.5px;
  color: #0a2745;
  padding-bottom: 0px;
}

#why-us .why-us-wrapper .why-us-content .why-us-description .small-text {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #2b3d51;
}

#why-us .why-us-wrapper .why-us-img {
  width: 40%;
  height: auto;
}

@media (max-width: 416px) {
  #why-us .why-us-wrapper .why-us-content {
    width: auto;
  }
  #why-us .why-us-wrapper .why-us-content .why-us-description .description {
    padding: 0px;
  }
  #why-us .why-us-wrapper .why-us-img {
    width: 100%;
    margin-top: 20%;
  }
  #why-us .invest-btn {
    margin-top: 10%;
  }
}
/*--------------------------------------------------------------
# Recommendation 
--------------------------------------------------------------*/

#recommendation {
  padding: 40px 0 30px 0;
}

#recommendation .large-text {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}
/*--------------------------------------------------------------
# Earn label
--------------------------------------------------------------*/

#earn-label {
  margin: 50px 0;
  background: var(--card-bg-color);
  padding: 70px;
}

.earn-label .earn-money-img {
  width: 400px;
  height: auto;
}

.earn-label .earn-money-text {
  width: 60%;
  display: flex;
  flex-direction: column;
}

.earn-label .earn-money-text .large-text {
  font-size: 22px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  color: #0a2745;
}

.earn-label .earn-money-text .small-text {
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: normal;
  color: #2b3d51;
  margin-top: 11px;
}

@media (max-width: 416px) {
  #earn-label {
    padding: 70px 0;
  }
  .earn-label .earn-money-img {
    width: 100%;
  }
  .earn-label .earn-money-text {
    width: auto;
    margin-top: 10%;
  }
}
/*--------------------------------------------------------------
# Earn label
--------------------------------------------------------------*/

#percent-label {
  padding: 70px;
}

.percent-label .percent-img img {
  width: 100%;
  height: auto;
}

.percent-label .percent-text .small-text {
  width: 510px;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #0a2745;
  margin: 20px 0;
}

.percent-label .percent-text .large-text {
  font-size: 28px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  color: #0a2745;
}

@media (max-width: 416px) {
  #percent-label {
    padding: 0;
  }
  .percent-label .percent-text .small-text {
    width: 100%;
  }
  .percent-label .percent-img img {
    width: 100%;
    margin: 12% 0;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#contact-us {
  padding: 70px 70px;
  position: relative;
}

#contact-us .contact-us-form {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  width: 40%;
  background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
  text-align: center;
}

#contact-us .contact-us-form .large-text {
  font-size: 24px;
  padding-top: 18px;
  font-weight: 700;
  color: var(--secondary-text-color);
}

#contact-us .contact-us-form .small-text {
  font-size: 12px;
  margin: 10px 0;
  color: var(--action-hover-text-color);
  font-weight: 700;
}

#contact-us .contact-us-form form {
  display: flex;
  flex-direction: column;
  padding: 30px 60px 60px 60px;
}

#contact-us .contact-us-form form input[type="text"] {
  margin: 0 0 20px 0;
  padding: 8px 10px;
  border: 1px solid var(--header-border-bottom-color);
  border-radius: 5px;
  outline: none;
  font-size: 14px;
}

#contact-us .contact-us-details {
  width: 50%;
}

#contact-us .contact-us-details .contact-text {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000;
}

#contact-us .contact-us-details .contact-text a {
  font-weight: 600;
}

#contact-us .contact-us-details span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 40px;
}

#contact-us .contact-us-details span i {
  color: #fff;
  background: var(--secondary-action-hover-text-color);
  padding: 7px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 12px;
}

@media (max-width: 416px) {
  #contact-us {
    padding: 70px 0;
  }
  #contact-us .contact-us-details {
    width: auto;
    margin-bottom: 10%;
  }
  #contact-us .contact-us-form {
    width: 100%;
  }
  #contact-us .contact-us-form form {
    padding: 40px;
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: var(--card-bg-color);
  padding: 0 0 30px 0;
  color: #000;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  color: #000;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: Book Antiqua;
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #000;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #007bff;
  color: #000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #0067d5;
  color: #000;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #000;
}

#footer .footer-top .footer-links ul a:hover {
  color: #74b5fc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #007bff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #0062cc;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}

#mySidenav a {
  position: fixed;
  transition: 0.3s;
  width: fit-content;
  text-decoration: none;
  font-size: 20px;
  color: black;
  border-radius: 5px 0 0 5px;
  z-index: 1000;
}

#mySidenav a:hover {
  right: 0;
}

#about {
  background: #fff;
  padding: 100px 0 50px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #007bff;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #007bff;
  font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
  background: #007bff;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

#blog {
  right: -88px;
  top: 260px;
  border: 1px solid #f32121;
}

#about-us-header {
  background: url(../images/invest-bg.png) center bottom no-repeat;
  background-size: cover;
  width: 100%;
  padding: 100px 0;
  color: var(--default-bg-color2);
  margin-top: 3em;
}

#about-us-header .text-section .large-text {
  text-transform: capitalize;
  letter-spacing: 2px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

#about-us-header .text-section .small-text {
  opacity: 0.8;
  font-size: 18px;
  letter-spacing: 1px;
}

.special {
  text-decoration: underline;
  color: #007bff;
}

.img-fluid {
  width: 80%;
}

#about .large-text {
  text-align: center;
  font-size: 40px;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

#about .large-text span {
  color: var(--action-hover-text-color);
  font-size: 40px;
}
/* Equity service page */

#equity-header {
  background: #d5eaff;
  background-size: cover;
  width: 100%;
  padding: 150px 0 50px 0;
  color: #000;
}

#about-equity .container {
  box-shadow: 0 3px 17px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
}

#equity-header .register-form form {
  width: 24em;
  padding: 50px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  background: linear-gradient(-70deg, #0a2745 45%, rgba(0, 0, 0, 0) 45%), #fff;
}

#equity-header .register-form form input {
  border-radius: 20px;
}

#equity-header .img-section img {
  width: 600px;
}

#equity-header .text-section .large-text {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 416px) {
  #equity-header .text-section .large-text {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
  }
}

#equity-header .text-section .small-text {
  opacity: 0.8;
  font-size: 34px;
  letter-spacing: 1px;
}

.special {
  text-decoration: underline;
  color: #007bff;
  line-height: 1;
  font-family: Book Antiqua;
  font-weight: 600;
  letter-spacing: 1px;
}

#about-equity {
  padding: 100px 0;
}

#about-equity .small-text {
  margin-top: 0.8em;
  padding-right: 28%;
}

#about-equity .large-text {
  font-size: 28px;
  font-weight: 600;
  color: var(--secondary-text-color);
}

#about-equity .left {
  display: flex;
  flex-direction: column;
  padding: 0 50px;
  width: 80%;
}

#about-equity .right {
  display: flex;
  flex-direction: column;
}

@media (max-width: 416px) {
  .font_30 {
    font-size: 30px;
  }
  #header .flex {
    flex-direction: row;
  }
  #about-equity .left {
    padding: 0;
    width: 100%;
  }
  #equity-header .img-section img {
    width: 100%;
  }
  #about-equity .small-text {
    padding: 0;
  }
}

.check-icon {
  vertical-align: middle;
  font-size: 24px;
  color: var(--secondary-action-hover-text-color);
  margin-right: 1%;
}

.app-icon {
  color: blue;
  font-family: "FontAwesome";
  font-size: 28px;
  letter-spacing: 1px;
}

.app-icon .app-I {
  color: silver;
}

.app-icon .app-II {
  color: #00ff00;
}

#av {
  background-color: transparent;
  z-index: 2147483639;
  max-height: 100%;
  position: fixed;
  display: none;
  right: 19px;
  bottom: 73px;
  border: 0px;
  width: 360px;
  height: 77%;
  max-width: 100%;
  opacity: 1;
}

#va_img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  z-index: 100;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: 1s ease infinite pulse;
  animation: 1s ease infinite pulse;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: pulse;
}

#va_img:hover {
  cursor: pointer;
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #007bff;
    box-shadow: 0 0 0 0 #007bff;
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(21, 101, 192, 0);
    box-shadow: 0 0 0 20px rgba(21, 101, 192, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #007bff;
    box-shadow: 0 0 0 0 #007bff;
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(21, 101, 192, 0);
    box-shadow: 0 0 0 20px rgba(21, 101, 192, 0);
  }
}

#close_img {
  text-align: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #74b5fc, #007bff);
  color: #fff;
  border-radius: 50px;
  z-index: 100;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-align: center;
  align-items: center;
}

#close_img:hover {
  cursor: pointer;
  -webkit-animation: none;
  animation: none;
}

.animate_class_name {
  animation: 1s ease-out 0s 1 fadeInUp;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  animation: 1s ease-out 0s 1 fadeInDown;
}

#close {
  position: fixed;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  top: 0;
  right: 8px;
  display: none;
  cursor: pointer;
  z-index: 999999999999;
  background-color: transparent;
  animation: 1s ease-out 0s 1 fadeInUp;
}

@media only screen and (max-width: 600px) {
  #close {
    right: 21px !important;
  }
}

@media only screen and (max-width: 600px) {
  #close i {
    font-size: 41px !important;
  }
}

#close i {
  color: #fff;
  font-size: 20px;
}

#home {
  position: fixed;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  top: 12%;
  right: 36px;
  display: none;
  cursor: pointer;
  z-index: 999999999999;
  background-color: transparent;
  animation: 1s ease-out 0s 1 fadeInUp;
}

@media (max-width: 2560px) {
  #home {
    top: 56%;
  }
  #av {
    width: 424px;
    height: 40%;
  }
}

@media (max-width: 1920px) {
  #home {
    top: 34%;
  }
  #av {
    width: 445px;
    height: 60%;
  }
}

@media (max-width: 1440px) {
  #home {
    top: 18%;
  }
  #av {
    width: 424px;
    height: 75%;
  }
}

@media (max-width: 1366px) {
  #home {
    top: 14%;
  }
  #av {
    width: 360px;
    height: 77%;
  }
}

@media (max-width: 1024px) {
  #home {
    top: 15%;
  }
  #av {
    width: 360px;
    height: 77%;
  }
}

.nav-margin-left {
  margin-left: 28px;
}

@media (max-width: 900px) {
  .nav-margin-left {
    margin-left: 0;
  }
}

.news-modal {
  max-width: 60%;
}

.news_logo {
  width: 30%;
  padding-bottom: 20px;
}

.news_heading {
  position: relative;
  padding: 5px 5px;
  color: #fff;
  background-color: #1d88f0;
  font-size: 18px;
  border-radius: 10px;
  font-weight: 600;
}

.news_details {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#new-brief {
  font-size: 14px;
  height: 200px;
  overflow: auto;
}

.description-icon {
  font-size: 60px;
  padding: 24px 0;
  color: #74b5fc;
}

#header-slider {
  padding-top: 100px;
}

.bg-1 {
  background: url("../images/slides/mutualfunds.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#header-slider .large-text {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.5;
  margin: auto;
  color: #fff;
}

.alert-popup {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
}

.overlay-alert-bg {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  display: block;
  z-index: 1000;
}

.link_input {
  padding: 5px;
  border: 1px solid #ccc;
  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  background-color: rgb(232, 240, 254);
}
/*==================================================
 * Effect 7
 * ===============================================*/

.effect7 {
  position: relative;
  /*-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
            box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;*/
}

.effect7:before,
.effect7:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  top: 0;
  bottom: 0;
  left: 10px;
  right: 10px;
  -moz-border-radius: 100px / 10px;
  border-radius: 100px / 10px;
}

.effect7:after {
  right: 10px;
  left: auto;
  -webkit-transform: skew(8deg) rotate(3deg);
  -moz-transform: skew(8deg) rotate(3deg);
  -ms-transform: skew(8deg) rotate(3deg);
  -o-transform: skew(8deg) rotate(3deg);
  transform: skew(8deg) rotate(3deg);
}

.or_text {
  color: blue;
  font-weight: 500;
}

.big-text {
  font-size: 26px;
  font-weight: 700;
  color: var(--secondary-text-color);
}

.percent_img {
  width: 20%;
  margin: auto;
}

.closing_link {
  float: left;
  list-style: none;
  list-style-type: none;
  border-right: 0px solid #d9d9d9;
  /* height: 100%; */
  /* background-color: #E3E3E3; */
  display: inline-block !important;
}

.closing_button {
  color: #000000 !important;
  border: 0px;
  font-size: 11px;
  margin-right: 6px !important;
  padding: 5px 4px !important;
  text-decoration: none !important;
  background: #dbf2db !important;
  height: 28px;
  margin-top: 10px;
  width: 25px !important;
  cursor: pointer;
}

.select_closing_button {
  color: #000000 !important;
  background: #ccccff !important;
  border: 0px;
  margin-right: 6px !important;
  padding: 5px 4px !important;
  text-decoration: none !important;
  font-size: 11px;
  height: 28px;
  margin-top: 10px;
  width: 25px !important;
}

.row_button {
  color: #000000 !important;
  border: 0px;
  font-size: 12px;
  margin-right: 6px !important;
  padding: 5px 8px !important;
  text-decoration: none !important;
  background: #dbf2db !important;
  margin-top: 10px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 3px;
  border: none;
  margin-left: 4px;
  color: #000;
  line-height: 20px;
}

.select_row_button {
  color: #000000 !important;
  background: #ccccff !important;
  border: 0px;
  margin-right: 6px !important;
  padding: 5px 8px !important;
  text-decoration: none !important;
  font-size: 12px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 3px;
  border: none;
  margin-left: 4px;
  color: #000;
  line-height: 20px;
}

.selected {
  color: #0100f8;
  cursor: pointer;
}

.nonseselected {
  color: #343434;
  cursor: pointer;
}

.eod_text {
  margin: 0;
  color: #575757;
  font-size: 13px;
}

.mcx_btn {
  float: right;
}

.closing_div {
  background: #e3e3e3;
  padding: 12px;
}

.closing_div input {
  background: #fff;
  color: #000;
  padding-left: 5px;
  border-radius: 3px;
}

#div_tagname span {
  font-size: 17px;
  color: #484855;
  text-transform: uppercase;
  border-bottom: 4px solid #8c8cb9;
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
  font-weight: 600;
}

.mypets1 {
  width: 100% !important;
  cursor: hand;
  cursor: pointer;
  padding: 5px 0px 5px 15px;
  margin: 0px;
  color: #212121;
  font-family: Calibri;
  font-size: 14px;
  font-weight: normal;
  vertical-align: middle;
  background: url(https://d3mk17sz92ezh7.cloudfront.net/static/sharewealth/images/plus.jpg) no-repeat 0% 50%;
}

.openpet1 {
  width: 100%;
  color: #212121 !important;
  font-family: Calibri;
  font-size: 14px;
  font-weight: normal;
  vertical-align: middle;
  padding: 5px 0px 5px 15px;
  margin: 0px;
  background: url(https://d3mk17sz92ezh7.cloudfront.net/static/sharewealth/images/minus.jpg) no-repeat 0% 50%;
}

.abttxt {
  font-size: 14px;
  text-align: justify;
  line-height: 20px;
}

.detail_head {
  border-bottom: 2px solid #8c8cb9;
  font-size: 14px;
  margin-bottom: 5px;
  margin-top: 5px;
  font-family: Calibri;
  font-weight: bold;
}

.reg_addr tbody tr td {
  font-size: 13px;
  font-weight: normal;
  font-family: "Calibri";
  border: solid 1px #cacaca;
  color: #5f5f5f;
  border-top: none;
  padding: 10px 10px 4px 6px;
}

.reg_addr thead tr th {
  background: #e5e5e5;
  font-size: 12px;
  font-weight: 600;
  border: solid 1px #c1c1c1;
  color: #535353;
  border-top: none;
  border-bottom: none;
  text-align: center;
  padding: 15px;
}

.reg_addr tbody tr td:first-child {
  text-align: left;
  border-left: none;
}

.reg_addr tbody tr td:last-child {
  text-align: left;
  border-right: none;
}

.reg_addr thead tr th:first-child {
  text-align: left;
  border-left: none;
}

.reg_addr thead tr th:last-child {
  text-align: left;
  border-right: none;
}

.company_info_head {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #135192;
  text-decoration: none;
  font-weight: bold;
  background-color: #e3e3e3;
  padding: 12px;
}

.indiceslink {
  color: #0100f8;
  cursor: pointer;
}

.non_indiceslink {
  color: #343434;
  cursor: pointer;
}

button.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 5px 10px;
  margin-bottom: 10px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-size: 14px;
  font-weight: bold;
}

button.accordion.active,
button.accordion:hover {
  background-color: #ddd;
}

div.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  font-size: 14px;
  text-align: justify;
  line-height: 20px;
}

.show {
  display: block !important;
}

button.accordion:after {
  content: "\02795";
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

button.accordion.active:after {
  content: "\2796";
}

.scheme_link {
  cursor: pointer;
  color: #0088cc !important;
}

.styled-table1 {
  margin: 10px 0;
}

.styled-table1 td {
  font-size: 13px;
  font-weight: normal;
  border: solid 1px #cacaca;
  color: #5f5f5f;
  border-top: none;
  padding: 10px 10px;
}

.styled-table1 tbody tr {
  border: 1px solid #dddddd;
}

.styled-table1 tbody tr td {
  border: 1px solid #dddddd;
}

.styled-table1 tbody tr:nth-of-type(even) {
  background-color: transparent;
}

.styled-table1 th {
  background: #e5e5e5;
  font-size: 13px;
  font-weight: 600;
  border: solid 1px #c1c1c1;
  color: #535353;
  border-top: none;
  border-bottom: none;
  padding: 15px;
}

.search_icon {
  color: #0100f8;
  cursor: pointer;
  font-size: 20px;
  /*
  border: 1px solid;*/
  padding: 5px;
  margin-right: 1em;
  white-space: nowrap;
}

.search_div {
  background: #fff;
  width: 73%;
  margin-top: 5em;
  height: 73%;
}

@media (max-width: 416px) {
  .search_icon {
    margin-bottom: 7px;
    margin-right: 34px;
  }
  .search_div {
    width: 100%;
  }
}

.searchData {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 9999;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  padding: 0;
}
/* The Close Button (x) */

.close_div {
  position: absolute;
  right: 2px;
  top: -16px;
  color: #000;
  font-size: 45px;
}

.close_div:hover,
.close_div:focus {
  color: #000;
  cursor: pointer;
}

.effect8 {
  position: relative;
}

.effect8:before,
.effect8:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  top: 10px;
  /*bottom:10px;*/
  left: 0;
  right: 0;
}
/* Add Zoom Animation */

.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
  /*border: 5px solid #9AD3DE;*/
  /*
  box-shadow: 0px 1px 1px rgba(000,000,000,0.5),inset 1px 2px 0px rgba(255,255,255,0.4);*/
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.wrapper {
  max-width: 650px;
}

.pt_5 {
  padding-top: 5em;
}

.wrapper .search-input {
  position: relative;
  background-color: #fff;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.search-input input {
  height: 55px;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 60px 0px 20px;
  font-size: 18px;
}

.search-input .icon {
  height: 55px;
  width: 55px;
  line-height: 55px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  font-size: 20px;
}

.search-input .autocom-box {
  /* padding: 10px 8px; */
  max-height: 280px;
  overflow-y: auto;
  opacity: 1;
}

.search-input.active .autocom-box {
  padding: 10px 8px;
  opacity: 1;
}

.autocom-box li {
  list-style: none;
  padding: 8px 12px;
  width: 100%;
  cursor: default;
  border-radius: 3px;
  display: block;
}

.search-input.active .autocom-box li {
  display: block;
}

.autocom-box li:hover {
  background-color: #efefef;
}

input[type="search" i]::-webkit-search-cancel-button {
  display: none !important;
}

[class$="-legend"] {
  list-style: none;
  cursor: pointer;
  padding-left: 0;
}

[class$="-legend"] li {
  display: inline-block;
  padding: 0 5px;
}

[class$="-legend"] li.hidden {
  text-decoration: line-through;
}

[class$="-legend"] li span {
  border-radius: 100%;
  display: inline-block;
  height: 15px;
  margin-right: 10px;
  width: 15px;
}

#share_pie_charts {
  width: 320px;
  margin: auto;
}

#legend {
  text-align: center;
}

.zoom_btn {
  background-color: white;
  border-style: solid;
  border-color: #021d39;
  border-width: 1px;
  color: #000000;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: 1px;
  padding: 3px;
  display: inline;
  cursor: pointer;
}

.zoom_btn_selected {
  background-color: #021d39;
  border-style: solid;
  border-color: #021d39;
  border-width: 1px;
  color: #ffffff;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 3px;
  margin: 1px;
  display: inline;
  cursor: pointer;
}
/*============== popUp banner  ==================*/

.hover_bkgr_fricc {
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: none;
  height: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.hover_bkgr_fricc .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.hover_bkgr_fricc > div {
  background-color: #fff;
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 80%;
  min-height: 100px;
  margin-top: 80px;
  width: 60%;
  position: relative;
  border-radius: 8px;
  padding: 1px 1%;
}

.hover_bkgr_friccb {
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: none;
  height: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.hover_bkgr_friccb .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.hover_bkgr_friccb > div {
  background-color: #fff;
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 80%;
  min-height: 100px;
  margin-top: 80px;
  width: 60%;
  position: relative;
  border-radius: 8px;
  padding: 1px 1%;
}

.popupCloseButton {
  background-color: #fff;
  border: 3px solid #999;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  font-family: arial;
  font-weight: bold;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 25px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.popupCloseButton:hover {
  background-color: #ccc;
}

.hovernew {
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: none;
  height: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.hovernew .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.hovernew > div {
  background-color: #fff;
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 80%;
  min-height: 100px;
  margin-top: 80px;
  width: 60%;
  position: relative;
  border-radius: 8px;
  padding: 1px 1%;
}

.newpopupCloseButton {
  background-color: #fff;
  border: 3px solid #999;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  font-family: arial;
  font-weight: bold;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 25px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.newpopupCloseButton:hover {
  background-color: #ccc;
}

.hovernew_QuizBanner {
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: none;
  height: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.hovernew_QuizBanner .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.hovernew_QuizBanner > div {
  background-color: #fff;
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 80%;
  min-height: 100px;
  margin-top: 80px;
  width: 60%;
  position: relative;
  border-radius: 8px;
  padding: 1px 1%;
}
.hovernew_QuizBanner > div img {
  margin: 2% 1% 2% 0%;
}

.hovernew_sebiBanner {
  display: block;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  height: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10000;
}


.hovernew_sebiBanner .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.hovernew_sebiBanner > div {
  background-color: #fff;
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 80%;
  min-height: 100px;
  margin-top: 80px;
  width: 60%;
  position: relative;
  border-radius: 8px;
  padding: 1px 1%;
}
.hovernew_sebiBanner > div img {
  margin: 2% 1% 2% 0%;
}
/* =========================================== */
.hovernew_nseBanner {
  display: block;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  height: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 100000;
}
.hovernew_nseBanner .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.hovernew_nseBanner > div {
  background-color: #fff;
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 80%;
  min-height: 100px;
  margin-top: 80px;
  width: 35%;
  position: relative;
  border-radius: 8px;
  padding: 1px 1%;
}
.hovernew_nseBanner > div img {
  margin: 2% 1% 2% 0%;
}
/* =========================================== */
.newpopupCloseButton_sebiBanner,  .newpopupCloseButton_nseBanner{
  background-color: #fff;
  border: 3px solid #999;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  font-family: arial;
  font-weight: bold;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 25px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.newpopupCloseButton_sebiBanner:hover, .newpopupCloseButton_nseBanner:hover {
  background-color: #ccc;
}

.newpopupCloseButton_QuizBanner {
  background-color: #fff;
  border: 3px solid #999;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  font-family: arial;
  font-weight: bold;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 25px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
}

.newpopupCloseButton_QuizBanner:hover {
  background-color: #ccc;
}

.trigger_popup_fricc {
  cursor: pointer;
  font-size: 20px;
  margin: 20px;
  display: inline-block;
  font-weight: bold;
}

.baneer-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.36;
  color: #0700f9;
  margin-top: 10px;
}

.banner_list li {
  list-style: none;
  padding: 5px 15px;
  text-align: left;
  line-height: 25px;
  margin-left: -33px;
}
@media only screen and (max-width: 600px) {
  .banner_list li {
    list-style: none;
    padding: 0px 5px;
    text-align: left;
    line-height: 18px;
    margin-left: -33px;
    font-size: 10px;
  }

  .hover_bkgr_fricc > div {
    max-width: 80%;
    margin-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .hover_bkgr_fricc > div {
    width: 100%;
  }
  .baneer-heading {
    font-size: 20px;
  }

  .banner_list {
    margin-left: -9px;
  }
}
/* [data-aos^=fade][data-aos^=fade].aos-animate {
        opacity: 1;
        transform: translateZ(0);
    }
    
    body[data-aos-easing=ease-in-out] [data-aos] {
        transition-timing-function: ease-in-out;
    }
    
    body[data-aos-duration="1000"] [data-aos] {
        transition-duration: 1s;
    }
    
    [data-aos^=fade][data-aos^=fade] {
        transition-property: opacity, transform;
    } */

.section-bg {
  background-color: rgb(213, 234, 255);
}

section {
  padding: 10px 0;
}

section {
  display: block;
}
/* .container {
        box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
        background: rgb(213, 234, 255);
    } */
/* .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1497px;
    }
    
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        width: 100%;
        padding-right: var(--bs-gutter-x, .75rem);
        padding-left: var(--bs-gutter-x, .75rem);
        margin-right: auto;
        margin-left: auto;
    } */

.row {
  display: flex;
  flex-wrap: wrap;
}

#icon-box {
  color: white;
  background-color: rgb(12, 42, 197);
  text-transform: uppercase;
  padding: 10px;
  margin-right: 20%;
  margin-left: 20%;
  text-align: center;
  margin-block: auto;
}

.p-5 {
  padding: 3rem !important;
}

.justify-content-center {
  justify-content: center !important;
}

.flex-column {
  flex-direction: column !important;
}

.d-flex {
  display: flex !important;
}

.col-lg-10 {
  flex: 0 0 auto;
  width: 50%;
}

.why-us .video-box {
  position: relative;
}

/* .col-lg-2 {
  flex: 0 0 auto;
  width: 50%;
} */
/* *,
     ::after,
     ::before {
        box-sizing: border-box;
    } */
/* .row {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-top: var(--bs-gutter-y);
    } */

h2 .font-primary {
  font-family: "Montserrat", sans-serif;
}

#rocket_img {
  height: 100%;
  width: auto;
}

#headng {
  color: black;
  font-weight: bold;
  color: rgb(12, 42, 197);
}

.text-center {
  text-align: center !important;
}

p {
  font-size: 16px;
}

.description {
  font-size: 32px;
}
/*============== End of popup banner ==============*/

@media (max-width: 416px) {
  #mob_slideripo #headng {
    font-size: 40px;
    margin: 0;
  }
  #mob_slideripo .description {
    margin: 0;
    font-size: 16px;
  }
  #mob_slideripo .icon-box p {
    font-size: 14px !important;
    margin: 5px;
  }
}

.disclaimer_logo img {
  width: 20%;
  margin-top: 2%;
}
