@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
:root {
  --bs-primary:#3147FF;
  --bs-primary-rgb:49, 71, 255;
  --l2-primary:#1a5f8c;
  --l2-primary-rgb:162, 89, 255;
  --l2-secondary:#13253b;
  --l2-secondary-rgb:10, 16, 47;
  --l3-primary:#FFC900;
  --l3-primary-rgb:255, 201, 0;
  --l4-primary:#4B2AAD;
  --l4-primary-rgb:75, 42, 173;
  --l5-primary:#FF9966;
  --l5-primary-rgb:255, 153, 102;
  --l5-secondary:#1B1C1D;
  --l5-secondary-rgb:27, 28, 29;
  --l6-primary:#3147FF;
  --l6-primary-rgb:49, 71, 255;
  --l7-primary:#191919;
  --l7-primary-rgb:25, 25, 25;
  --l7-secondary:#1a5f8c;
  --l7-secondary-rgb:162, 89, 255;
  --l8-primary:#C1FF00;
  --l8-primary-rgb:193, 255, 0;
  --l9-primary:#324438;
  --l9-primary-rgb:50, 68, 56;
  --l9-secondary:#F4B905;
  --l9-secondary-rgb:244, 185, 5;
  --l10-primary:#2D2B92;
  --l10-primary-rgb:45, 43, 146;
  --l10-secondary:#FFD874;
  --l10-secondary-rgb:255, 216, 116;
  --body-color:#13253b;
  --body-color-rgb:10, 16, 47;
  --black-2:#121212;
  --black-2-rgb:18, 18, 18;
  --black-3:#1B1C1D;
  --black-3-rgb:27, 28, 29;
  --black-4:#191919;
  --black-4-rgb:25, 25, 25;
  --cream:#FDFBF9;
  --cream-rgb:253, 251, 249;
  --offwhite:#FAF9F5;
  --offwhite-rgb:250, 249, 245;
  --font-family-base:Inter, sans-serif;
  --font-family-heading:Plus Jakarta Sans, sans-serif;
  --font-wight-heading:800;
  --font-dm-sans:DM Sans, sans-serif;
}

/*** scrollbar Start ***/
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-image: radial-gradient(circle farthest-corner at 0% 50%,
            #2791d6,
            #2281bd);
}

::-webkit-scrollbar-track {
    background-color: #f2f5f9 ;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:focus {
    background-color: #f2f2f2;
}

::-webkit-scrollbar-thumb:focus,
::-webkit-scrollbar-thumb:hover {
    background-color: #f2f2f2;
}

/* .scour-background {
  background-color: var(--l2-primary) !important;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-base);
  font-size: 1rem;
  line-height: 1.56;
}

span,
a {
  display: inline-block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: initial;
}

img {
  display: block;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-heading);
  font-family: var(--font-family-heading);
}

p {
  font-size: 16px;
  line-height: 1.67;
  margin-bottom: initial;
  color: rgba(10, 16, 47, 0.8);
}
@media (min-width: 576px) {
  p {
    font-size: 18px;
  }
}

.position-relative {
  position: relative;
}

.list-style-bullet li {
  display: flex;
  column-gap: 8px;
}
.list-style-bullet li::before {
  content: "";
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-width: 8px;
  min-height: 8px;
  max-height: 8px;
  border-radius: 500px;
  background-color: #13253b;
  top: 10px;
  position: relative;
}

.inner-block-title {
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.0208333333em;
  font-size: 20px;
  font-family: var(--font-family-base);
}
@media (min-width: 768px) {
  .inner-block-title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .inner-block-title {
    font-size: 24px;
  }
}

.feature-card {
  background: #FFFFFF;
  border: 2px solid #13253b;
  border-radius: 10px;
  padding: 30px;
  cursor: pointer;
  transition: 300ms;
}
.feature-card__icon {
  padding-bottom: 10px;
}
.feature-card__icon img {
  width: 120px;
}
.feature-card__title {
  padding-bottom: 0px;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: var(--body-color);
}
.feature-card p {
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
  color: rgba(var(--body-color-rgb), 0.8);
  margin-bottom: 20px;
  min-height: 170px;
}

.howdoes .feature-card p { 
  min-height: auto;
  margin-bottom: 0px;
}

.feature-card p span {
  font-weight: 600;
}
.feature-card:hover {
  box-shadow: 10px 10px rgba(var(--body-color-rgb));
  border-radius: 10px;
}

.feature-card-3 {
  padding: 28px;
  border: 4px solid #13253b;
  border-radius: 10px;
  height: 100%;
  transition: all 0.2s ease-in-out;
  background: #F5EFEB;
}
.feature-card-3__icon-wrapper {
  padding-bottom: 30px;
}
.feature-card-3__title {
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.0208333333em;
  font-size: 20px;
  color: var(--body-color);
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .feature-card-3__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .feature-card-3__title {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .feature-card-3:hover {
    transform: rotate(-3deg);
    background-color: #fff;
  }
}



.list-social {
  --color: #13253b;
  --backgroundColor: rgba(10, 16, 47, 0.1);
  --hovBackground: #3147FF;
  --hovColor: #FFFFFF;
  display: inline-flex;
  column-gap: 12px;
  list-style: none;
  flex-wrap: wrap;
  margin-bottom: 0;
  position: relative;
  z-index: 99;
}
.list-social li a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
  border-radius: 500px;
  font-size: 17px;
  background: var(--backgroundColor);
  color: var(--color);
  transition: 0.4s;
}
.list-social li a:hover {
  color: var(--hovColor);
  background-color: var(--hovBackground);
  border-color: var(--hovBackground);
}
.list-social--dark {
  --border-color: rgba(255, 255, 255, 0.1);
  --color: #FFFFFF;
  --hovBackground: #FFFFFF;
  --hovColor: #13253b;
}
.list-social--hvr-black {
  --hovBackground: #13253b;
  --hovColor: #FFFFFF;
}
.list-social--hvr-primary-l3 {
  --hovBackground: var(--l3-primary);
  --hovColor: #13253b;
}
.list-social--primary-l5 {
  --backgroundColor: rgba(253, 251, 249, 0.1);
  --border-color: rgba(255, 255, 255, 0);
  --color: #FFFFFF;
  --hovBackground: #FF9966;
  --hovColor: var(--black-2);
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.site-menu-main {
  margin-bottom: 0;
  padding-left: 0;
}
@media (min-width: 992px) {
  .site-menu-main {
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
  }
}
.site-menu-main li {
  list-style: none;
}
.site-menu-main ul {
  list-style: none;
  margin-left: 0;
}
.site-menu-main a {
  text-decoration: none;
}

.site-menu-main .nav-item {
  display: inherit;
}
.site-menu-main .nav-link-item {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  transition: 0.3s;
}
.site-menu-main .nav-link-item:hover {
  color: var(--l2-primary);
}
@media (min-width: 992px) {
  .site-menu-main .nav-link-item {
    padding-top: 25px !important;
    padding-bottom: 23px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    color: #13253b;
  }
  .site-menu-main .nav-link-item:hover {
    color: var(--l2-primary);
  }
}
@media (min-width: 1200px) {
  .site-menu-main .nav-link-item {
    padding-top: 15px !important;
    padding-bottom: 13px !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}

.site-menu-main .sub-menu {
  z-index: 500;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, top 0.3s ease, margin-top 0.3s ease, background-color 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: -999;
  display: flex;
  column-gap: 92px;
  min-width: 227px;
  margin-top: 25px;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu {
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
  }
}
.site-menu-main .sub-menu_list {
  width: 100%;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu_list {
    padding: 12px 0;
  }
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu:not(.child-sub)::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 22px;
    height: 15px;
    width: 15px;
    background-color: white;
    transform: rotate(45deg) translateY(-11px);
    z-index: 999;
  }
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu .sub-menu {
    top: 0 !important;
    left: 100%;
  }
}
.site-menu-main .sub-menu--row {
  display: flex;
}
.site-menu-main .sub-menu--item {
  color: #13253b !important;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.75;
  transition: 0.4s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu--item {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
  }
  .site-menu-main .sub-menu--item:not(.site-menu-main .sub-menu--item:last-child) {
    margin-bottom: 7px;
  }
}
.site-menu-main .sub-menu--item > a {
  transition: 0.4s;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu--item > a {
    transition: 0.4s;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 25px;
    padding-right: 25px;
    color: inherit;
  }
}
.site-menu-main .sub-menu--item > a > i {
  min-width: 10px;
  max-width: 10px;
  min-height: 10px;
  max-height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-menu-main .sub-menu--item:hover > a {
  color: red;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu--item:first-child a {
    padding-top: 0;
    padding-bottom: 2px;
  }
}
.site-menu-main .sub-menu--item:last-child {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
.site-menu-main .sub-menu--item:last-child a {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .site-menu-main .sub-menu_item .child-sub ~ .sub-menu {
    margin-top: 30px;
    padding-top: 5px;
  }
}
.site-menu-main .sub-menu_item.nav-item-has-children a {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 992px) {
  li.nav-item-has-children {
    position: relative;
  }
}
li.nav-item-has-children .fa-angle-down,
li.nav-item-has-children .fa-angle-right {
  transition: 0.4s;
}
@media (min-width: 992px) {
  li.nav-item-has-children:hover > .sub-menu {
    top: 100%;
    margin-top: 0;
    visibility: visible;
    opacity: 1;
    z-index: 99;
    pointer-events: visible;
    border-radius: 8px;
  }
  li.nav-item-has-children:hover .fa-angle-down {
    transform: rotate(180deg);
  }
}
@media (min-width: 992px) {
  li.nav-item-has-children:hover .drop-trigger:not(.child-sub)::before {
    top: 88%;
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
  }
}
li.nav-item-has-children.child-item:hover .fa-angle-right {
  transform: rotate(90deg);
}

.site-menu-main > li .sub-menu > ul > li > a {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 14px 21px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
  cursor: pointer;
}
@media (min-width: 992px) {
  .site-menu-main > li .sub-menu > ul > li > a {
    padding: 9px 21px;
    font-size: 16px;
    color: #13253b;
  }
}
.site-menu-main > li .sub-menu > ul > li > a .menu-item-text {
  position: relative;
  transition: all 0.3s ease;
}
.site-menu-main > li .sub-menu > ul > li > a .menu-item-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: auto;
  right: 0;
  height: 2px;
  width: 0;
  background-color: #202030;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .site-menu-main > li .sub-menu > ul > li > a .menu-item-text::after {
    bottom: 2px;
  }
}
.site-menu-main > li .sub-menu > ul > li > a:hover .menu-item-text {
  transform: translateX(5px);
}
.site-menu-main > li .sub-menu > ul > li > a:hover .menu-item-text::after {
  left: 0;
  right: auto;
  width: 100%;
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

/*responsive*/
@media (max-width: 991px) {
  .site-header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .site-header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #13253b;
    width: 24px;
    position: relative;
  }
  .site-header .mobile-menu-trigger span:before,
  .site-header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #13253b;
  }
  .dark-mode-texts .mobile-menu-trigger span {
    background-color: #FFFFFF;
  }
  .dark-mode-texts .mobile-menu-trigger span:before,
  .dark-mode-texts .mobile-menu-trigger span:after {
    background-color: #FFFFFF;
  }
  .site-header .mobile-menu-trigger span:before {
    top: -6px;
  }
  .site-header .mobile-menu-trigger span:after {
    top: 6px;
  }
  .site-header .item-right {
    align-items: center;
  }
  .site-header .menu-block {
    position: fixed;
    width: 470px;
    max-width: 100%;
    background-color: #13253b;
    right: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(100%);
    padding: 0 16px 60px;
    z-index: 1099;
  }
  .site-header .menu-block.active {
    transform: translate(0%);
  }
  .site-menu-main > li {
    line-height: 1;
    margin: 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-menu-main > li > a {
    line-height: 50px;
    padding: 18px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .site-menu-main > li > a {
    display: block;
  }
}
@media (max-width: 991px) {
  .site-menu-main > li > a i {
    position: absolute;
    top: 5px;
    right: 0;
    transform: rotate(-90deg);
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .menu-block .mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    top: 0;
    padding-top: 20px;
    padding-bottom: 30px;
    background-color: #13253b;
  }
  .site-header .menu-block .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    visibility: hidden;
  }
  .site-header .menu-block .mobile-menu-head.active .current-menu-title {
    visibility: visible;
  }
  .site-header .menu-block .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 40px;
  }
  .mobile-menu-head .logo{width: 70px;}
}
@media (max-width: 991px) and (min-width: 992px) {
  .site-header .menu-block .mobile-menu-head .mobile-menu-close {
    color: #000000;
  }
}
@media (max-width: 991px) {
  .site-header .menu-block .site-menu-main {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .site-menu-main > li .sub-menu {
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    margin: 0;
    padding: 0 10px 10px 10px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
    overflow-x: hidden;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .site-menu-main > li .sub-menu_list {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .site-menu-main > li .sub-menu.child-sub {
    padding-left: 36px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .site-menu-main > li .sub-menu.child-sub .sub-menu_list {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .site-menu-main > li .sub-menu.active {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    z-index: 99;
    padding-top: 20px;
  }
  .site-menu-main .sub-menu_list .sub-menu_item:first-child a {
    padding-top: 0;
  }
  .site-menu-main > li .sub-menu > ul > li > a,
  .site-menu-main > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }
  .site-menu-main > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }
  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
  }
  .menu-overlay.transition {
    transition: all 0.5s ease;
  }
  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}
/*Custom Css for menu*/
@media (min-width: 992px) {
  .site-menu-main a {
    display: flex;
    align-items: center;
  }
  .site-menu-main i {
    margin-left: 15px;
    font-size: 15px;
  }
}
@media (min-width: 1200px) and (min-width: 992px) {
  .site-header--menu-center .menu-block-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.nav-item-has-children a {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .reveal-header .site-navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .reveal-header .nav-link-item {
    color: #13253b !important;
  }
}

@media (min-width: 992px) {
  .reveal-header li.nav-item-has-children:hover > .sub-menu {
    top: 100%;
  }
  .reveal-header li.nav-item-has-children:hover > .sub-menu.megamenu {
    top: 100%;
  }
}

.menu-block.active {
  overflow-y: auto;
}

@media (min-width: 480px) {
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
}
/*Preloader css*/
div#loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

div#loading img {
  z-index: 9999;
  width: 25%;
}
@media (min-width: 567px) {
  div#loading img {
    width: 17%;
  }
}
@media (min-width: 768px) {
  div#loading img {
    width: 15%;
  }
}
@media (min-width: 992px) {
  div#loading img {
    width: 7%;
  }
}

.preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #ffffff !important;
}

.preloader img {
  width: 500px;
}

/*Header Css StaRT*/
.site-navbar {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .site-navbar {
    flex-flow: row nowrap;
    justify-content: flex-start;
    padding-top: 0px;
  }
}
.site-navbar .menu-block-wrapper {
  flex-grow: 1;
  align-items: center;
}
@media (min-width: 992px) {
  .site-navbar .menu-block-wrapper {
    display: flex !important;
    flex-basis: auto;
    justify-content: center;
  }
}

.site-header {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #fff;
  box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.05);
}
.site-header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.site-header--sticky:not(.mobile-sticky-enable) {
  position: absolute !important;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
@media (min-width: 992px) {
  .site-header--sticky:not(.mobile-sticky-enable) {
    position: fixed !important;
    transition: 0.4s;
  }
  .site-header--sticky:not(.mobile-sticky-enable).scrolling {
    transform: translateY(-100%);
    transition: 0.4s;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header {
    transform: translateY(0%);
    box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
    z-index: 1000;
    background-color: #fff;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header .brand-logo .logo-dark {
    display: block;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header .brand-logo .logo-light {
    display: none;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header.bg--primary {
    background-color: var(--bs-primary);
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header.bg--primary .nav-link-item {
    color: #fff !important;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header.bg--primary .btn-scour--header-secondary {
    color: #fff !important;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header.bg--primary .btn-fill--up {
    --btn-border-color: #fff;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header .btn-link {
    color: var(--color-headings-2);
  }
}
.site-header--sticky.mobile-sticky-enable {
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  position: fixed !important;
  transition: 0.4s;
}
.site-header--sticky.mobile-sticky-enable.scrolling {
  transform: translateY(-100%);
  transition: 0.4s;
}
.site-header--sticky.mobile-sticky-enable.reveal-header {
  transform: translateY(0%);
  box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
  z-index: 9999;
  height: 100%;
  background-color: transparent !important;
}
.site-header--sticky.mobile-sticky-enable.reveal-header .site-navbar {
  background-color: #fff;
  padding: 15px 10px;
  border-radius: 5px;
  box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
}
@media (min-width: 768px) {
  .site-header--sticky.mobile-sticky-enable.reveal-header {
    height: auto;
  }
}
.site-header--menu-center .container {
  position: relative;
}
.site-header--menu-center .menu-block-wrapper {
  position: static;
}
@media (min-width: 992px) {
  .site-header--menu-center .menu-block {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .site-header--menu-left .container-fluid .sub-menu.megamenu {
    left: 50%;
    transform: translateX(-50%) translateY(10px);
  }
}
@media (min-width: 992px) {
  .site-header--menu-left .container-fluid .nav-item.has-megamenu:hover > .sub-menu {
    transform: translateX(-50%) translateY(-2px);
    left: 50%;
  }
}
.site-header--menu-left .menu-block .site-menu-main {
  justify-content: flex-start;
  padding-left: 15px;
}
@media (min-width: 1200px) {
  .site-header--menu-left .menu-block {
    width: 100%;
  }
}
.site-header--menu-right .menu-block {
  margin-left: auto;
}
@media (min-width: 992px) {
  .site-header--menu-right > .container-fluid .sub-menu.megamenu {
    left: 100%;
    transform: translateX(-100%) translateY(10px);
  }
}
@media (min-width: 992px) {
  .site-header--menu-right > .container-fluid .nav-item.has-megamenu:hover > .sub-menu {
    transform: translateX(-100%) translateY(-10px);
    left: 100%;
  }
}
.site-header--dark .nav-link-item {
  color: #fff;
}
.site-header--dark .btn {
  color: #fff;
}
.site-header--dark .btn--outline {
  border-color: #fff;
}
.site-header--dark .btn--outline:hover {
  background-color: #fff;
  color: var(--bs-primary);
}
.site-header--dark .btn:hover {
  color: var(--bs-primary);
}
.site-header--dark .logo-light {
  display: none;
}
.site-header--dark .logo-dark {
  display: block;
}
.site-header .header-cta-btn-wrapper {
  display: none;
  margin-left: 30px;
}
@media (min-width: 992px) {
  .site-header .header-cta-btn-wrapper {
    display: flex;
    align-items: center;
    column-gap: 30px;
  }
}
.site-header .header-cta-btn-wrapper a {
  --bs-btn-padding-y: 12px;
}
.site-header .header-cta-btn-wrapper a .icon {
  margin-right: 10px;
}
.site-header .header-cta-btn-mobile {
  display: block;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .site-header .header-cta-btn-mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .site-header .transition {
    transition: all 0.5s ease;
  }
}

@media (min-width: 480px) {
  .header-btns {
    margin-right: 15px;
  }
}
@media (min-width: 992px) {
  .header-btns {
    margin-right: 0;
  }
}

.brand-logo {
  display: flex;
}
.brand-logo img {
  max-height: 100px;
}
.brand-logo .logo-dark {
  display: none;
}

.dynamic-sticky-bg.reveal-header {
  background: var(--bg);
}
.dynamic-sticky-bg.dark-mode-texts .menu-block.active .nav-link-item {
  color: red !important;
}
.dynamic-sticky-bg.dark-mode-texts .menu-social-share li a {
  color: var(--color-headings-2);
}

.sticky-bg-white.reveal-header {
  background: #fff;
}
.sticky-bg-white.reveal-header .dark-version-logo {
  display: none !important;
}
.sticky-bg-white.reveal-header .light-version-logo {
  display: block !important;
}
.sticky-bg-white.reveal-header .menu-sep-left {
  position: relative;
}
.sticky-bg-white.reveal-header .menu-sep-left::before {
  content: "";
  border-left: rgba(255, 0, 0, 0.5) !important;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 26px;
  z-index: 9;
}

/* Landing Specific Header Adjustment */
/* Header */
/* ========== Component : Button Style  ============= */
.btn-scour {
  --btn-spacing-y: 18px;
  --btn-spacing-x: 42px;
  --btn-radius: 3px;
  --btn-bg: #3147FF;
  --btn-color: #fff;
  --btn-border-width: 1px;
  --btn-border-color: #3147FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  z-index: 0;
  position: relative;
  border-width: var(--btn-border-width);
  border-style: solid;
  border-color: var(--btn-border-color);
  border-radius: var(--btn-radius);
  padding-left: var(--btn-spacing-x);
  padding-right: var(--btn-spacing-x);
  padding-top: var(--btn-spacing-y);
  padding-bottom: var(--btn-spacing-y);
  background-color: var(--btn-bg);
  color: var(--btn-color);
  transition: all 0.3s;
}
.btn-scour:not(.btn-fill--up):not(.btn-fill--down):not(.btn-fill--slide):not(.btn-fill--slide-reverse):not(.btn-fill--slide-left):not(.btn-shadow):not(.btn-shadow--reverse) {
  transition: all 0.3s ease-in-out;
}
.btn-scour:not(.btn-fill--up):not(.btn-fill--down):not(.btn-fill--slide):not(.btn-fill--slide-reverse):not(.btn-fill--slide-left):not(.btn-shadow):not(.btn-shadow--reverse):hover {
  background-color: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  border-color: var(--btn-hover-border-color);
}
.btn-scour--header {
  --btn-spacing-y: 13px;
  --btn-spacing-x: 33px;
}
.btn-scour--header-secondary {
  background: none;
  border: none;
  padding: 0;
  color: #13253b;
}
.btn-scour .play-icon {
  position: relative;
  height: 16px;
  width: 16px;
  background-color: #000;
  border-radius: 500px;
}
.btn-scour .play-icon::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 7px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(6px, 4px);
}

.btn-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #13253b;
  transition: 0.3s;
  text-decoration: none;
}

.btn-arrow {
  display: inline-flex;
  column-gap: 10px;
}
.btn-arrow:hover::after {
  left: 5px;
}
.btn-arrow::after {
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-size: inherit;
  position: relative;
  top: 1px;
  left: 0px;
  transition: 0.4s left;
  color: inherit;
}

/* ---------- Button Shadow ---------- */
.btn-shadow {
  z-index: 1;
  --btn-shadow-bg: #13253b;
  --btn-shadow-border-color: #13253b;
  --btn-shadow-border-width: 1px;
}
.btn-shadow::before {
  content: "";
  background-color: var(--btn-shadow-bg);
  position: absolute;
  left: 5px;
  top: 6px;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: inherit;
  border-width: var(--btn-shadow-border-width);
  border-style: solid;
  border-color: var(--btn-shadow-border-color);
  transition: 0.4s;
}
.btn-shadow:hover::before {
  left: 0px;
  top: 0px;
}
.btn-shadow--center::before {
  left: 0;
}
.btn-shadow:after {
  content: "";
  background-color: var(--btn-bg);
  position: absolute;
  border-width: var(--btn-border-width);
  border-style: solid;
  border-color: var(--btn-border-color);
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
}
.btn-shadow--reverse::before {
  left: 0;
  top: 0;
}
.btn-shadow--reverse:hover::before {
  left: 5px;
  top: 6px;
}
.btn-shadow--reverse-center:hover::before {
  left: 0;
}

/* ---------- Button Fill Up ---------- */
.btn-fill--up {
  --btn-fill-bg: #fff;
  --btn-fill-color: $black;
  --btn-fill-border-color: #3147FF;
  overflow: hidden;
}
@keyframes fill-up-initial {
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
  }
}
@keyframes fill-up-end {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.btn-fill--up:hover {
  background-image: linear-gradient(270deg, #02964e, #02964e);
  box-shadow: 0 25px 20px -20px rgba(0,0,0,.45);
}
.btn-fill--up span {
  position: relative;
  z-index: 10;
  display: block;
  font-size: 20px;
}
.btn-fill--up::before {
  position: absolute;
  top: -110%;
  left: -10%;
  padding-bottom: 120%;
  width: 120%;
  height: 0;
  border-radius: 50%;
  background: var(--btn-fill-bg);
  content: "";
  -webkit-transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}
.btn-fill--up::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--btn-fill-bg);
  content: "";
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1), -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.btn-fill--up:hover span {
  /* animation: fill-up-initial 0.3s forwards, fill-up-end 0.3s forwards 0.3s; */
}
.btn-fill--up:hover::before {
  /* -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1), -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1); */
}
.btn-fill--up:hover::after {
  /* -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 0.05s;
  transition-duration: 0.05s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); */
}
.btn-fill--down {
  z-index: 1;
  overflow: hidden;
}
.btn-fill--down::before, .btn-fill--down::after {
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.btn-fill--down::before {
  background: var(--btn-fill-bg);
  opacity: 0.7;
}
.btn-fill--down::after {
  background: var(--btn-fill-bg);
}
.btn-fill--down:hover {
  color: var(--btn-fill-color);
}
.btn-fill--down:hover::before {
  transform: translate3d(0, 100%, 0);
}
.btn-fill--down:hover::after {
  transform: translate3d(0, 100%, 0);
  transition-delay: 0.175s;
}

@keyframes slide-left-initial {
  100% {
    -webkit-transform: translate3d(0, -105%, 0);
    transform: translate3d(0, -105%, 0);
  }
}
@keyframes slide-left-end {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.btn-outline {
  --btn-bg: transparent;
  --btn-color: ;
  --btn-border-width:2px;
  --btn-border-color:#13253b;
  --btn-hover-bg: #13253b;
  --btn-hover-color: #FFFFFF;
  --btn-hover-border-color: #13253b;
}

.btn-primary-l02 {
  --btn-bg: #13253b;
  --btn-color: #fff;
  --btn-border-color: #1baf2c;
  --btn-fill-bg: #fff;
  --btn-fill-color: $black;
  --btn-fill-border-color: #1baf2c;;
}

.btn-secondary-l02 {
  /* --btn-bg: #13253b;
  --btn-color: #fff;
  --btn-border-color:#13253b;
  --btn-fill-bg:#1a5f8c;
  --btn-fill-color:#fff;
  --btn-fill-border-color:#1a5f8c; */
  --btn-bg: #1baf2c;
  --btn-color: #fff;
  --btn-border-color: #1baf2c;
  --btn-fill-bg: #1baf2c;
  --btn-fill-color: #fff;
  --btn-fill-border-color: #1baf2c;
}

.btn-outline-l02 {
  --btn-bg: transparent;
  --btn-color: #13253b;
  --btn-border-width:2px;
  --btn-border-color:#13253b;
  --btn-fill-bg:#1a5f8c;
  --btn-fill-color:#fff;
  --btn-fill-border-color:#1a5f8c;
}

/* ========== Button Utilities  ============= */
.rounded-pill {
  --btn-radius: 500px;
}

.btn-padding-x-33 {
  --btn-spacing-x: 33px;
}

.ticker-item {
  display: flex;
  column-gap: 24px;
}

@keyframes ticker {
  0% {
    transform: translateX(0, 0, 0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.content {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;
}
@media (min-width: 992px) {
  .content {
    align-items: initial;
    row-gap: 48px;
  }
}
.content-text-block {
  text-align: center;
}
@media (min-width: 992px) {
  .content-text-block {
    text-align: initial;
    padding-right: 52px;
  }
}
@media (min-width: 1200px) {
  .content-text-block {
    padding-right: 0;
  }
}
.content-text-block p {
  line-height: 1.67;
  color: rgba(10, 16, 47, 0.8);
}
.content-text-block p:first-of-type {
  margin-top: 20px;
}
.content-text-block p:not(:first-of-type) {
  margin-top: 20px;
}
.content-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(10, 16, 47, 0.1);
}
.content-list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.content-list-item {
  display: flex;
  column-gap: 12px;
  font-size: 18px;
  line-height: 1.67;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
.content-list-item img {
  max-width: 22px;
  max-height: 22px;
  position: relative;
  top: 3px;
}
.content-list-item p {
  margin-bottom: initial;
}

@media (max-width: 991px) {
  .content-image--mobile-width {
    display: inline-block;
    max-width: 320px;
  }
}
@media (max-width: 479px) {
  .content-image--mobile-width {
    max-width: 260px;
  }
}



.loading {
  overflow: hidden;
}

.preloader-wrapper {
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 99999999 !important;
  position: fixed;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* ========== Home 2 : Hero Section Style ============= */
.home-2_hero-section .row--custom {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 35px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .home-2_hero-section .row--custom {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.home-2_hero-image-block {
  position: relative;
  margin-left: 27px;
}
.home-2_hero-image img {
  width: 92%;
}
.home-2_hero-image-shape {
  position: absolute;
  right: -9%;
  top: -14%;
  width: 17%;
}
.home-2_hero-image-man-1 {
  position: absolute;
  left: -7%;
  top: 30%;
  width: 13.3%;
}
.home-2_hero-image-man-1 img {
  width: 100%;
}
.home-2_hero-image-man-2 {
  position: absolute;
  right: -7%;
  bottom: 8%;
  width: 15%;
}
.home-2_hero-image-man-2 img {
  width: 100%;
}
.home-2_hero-content {
  max-width: 681px;
}
.home-2_hero-content-text {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .home-2_hero-content-text {
    text-align: initial;
  }
}
.home-2_hero-content-text p {
  max-width: 590px;
}
@media (min-width: 992px) {
  .home-2_hero-content-text {
    margin-bottom: 50px;
  }
}
.home-2_hero-button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .home-2_hero-button-group {
    justify-content: initial;
    margin-bottom: 20px;
  }
}
.home-2_hero-button-group .btn-outline {
  width: 239px;
}
@media (min-width: 576px) {
  .home-2_hero-button-group .btn-outline {
    width: initial;
  }
}
.home-2_hero-content-button__bottom-text span {
  display: flex;
  justify-content: center;
  column-gap: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #13253b;
}
@media (min-width: 992px) {
  .home-2_hero-content-button__bottom-text span {
    justify-content: initial;
  }
}

.home-2_feature-section {
  /* background: rgba(162, 89, 255, 0.03); */
}


@media (min-width: 1400px) {
  .home-2_content-section-1 {
    padding-bottom: 150px;
  }
}
.home-2_content-section-1 .row--custom {
  --bs-gutter-y: 40px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-2_content-section-1 .row--custom {
    align-items: center;
    --bs-gutter-x: 25px;
  }
}
@media (min-width: 992px) {
  .home-2_content-section-1 .content .content_text-block p {
    max-width: 635px;
  }
}
.home-2_content-section-1 .content .content-list-item {
  font-family: "Inter", sans-serif;
}
.home-2_content-image-1 img {
  width: 100%;
}

.home-2_content-section-2 .row--custom {
  --bs-gutter-y: 40px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-2_content-section-2 .row--custom {
    align-items: center;
    --bs-gutter-x: 24px;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
@media (min-width: 992px) {
  .home-2_content-image-2 {
    max-width: 451.46px;
  }
}
.home-2_content-image-2 img {
  width: 100%;
}

.home-2_content-section-3 .row--custom {
  justify-content: center;
}
.home-2_content-section-3 .section-heading {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .home-2_content-section-3 .section-heading {
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .home-2_content-section-3 .section-heading {
    margin-bottom: 80px;
  }
}
.home-2_content-section-3 .section-heading p {
  line-height: 1.67;
  color: rgba(10, 16, 47, 0.8);
}
.home-2_content-image-3 {
  position: relative;
}
.home-2_content-image-3 img {
  width: 100%;
}

.cta-home-2 {
  background: #1a5f8c;
  position: relative;
}
.cta-home-2-shape-wrapper {
  display: none;
}
@media (min-width: 680px) {
  .cta-home-2-shape-wrapper {
    display: block;
  }
}
.cta-home-2-shape-1 {
  position: absolute;
  left: 8%;
  top: 12%;
}
.cta-home-2-shape-2 {
  position: absolute;
  right: 6%;
  bottom: 0;
}
/* .cta-home-2-shape-1 img,.cta-home-2-shape-2 img{
  width: 130px;
} */
.cta-home-2__title {
  margin-bottom: 0;
  color: #fff;
}
.cta-home-2 .cta-content-block {
  max-width: 770px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media (min-width: 680px) {
  .cta-home-2 .cta-content-block {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .cta-home-2 .cta-content-block {
    row-gap: 30px;
  }
}
.cta-home-2 .cta-content-block .btn-secondary-l02 {
  --btn-fill-bg: #fff;
  --btn-fill-color: $black;
}

.home-2_integration-section .row--custom {
  --bs-gutter-y: 40px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-2_integration-section .row--custom {
    --bs-gutter-x: 24px;
    align-items: center;
    flex-direction: row-reverse;
  }
}
.home-2_integration-section .content {
  text-align: center;
}
@media (min-width: 992px) {
  .home-2_integration-section .content {
    text-align: initial;
  }
}
@media (min-width: 992px) {
  .home-2_integration-section p {
    max-width: 506px;
    color: rgba(10, 16, 47, 0.8);
  }
}
@media (min-width: 992px) {
  .home-2_integration-image {
    max-width: 472px;
  }
}
.home-2_integration-image img {
  width: 100%;
}


@keyframes fadeUp {
  from {
    transform: translateY(250px);
  }
  to {
    transform: translateY(0px);
  }
}


.footer-title {
  font-family: var(--font-family-base);
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0em;
}
@media (min-width: 576px) {
  .footer-title {
    font-size: 20px;
  }
}

.copyright-border {
  border-top-width: 1px;
  border-top-style: solid;
  border-color: rgba(var(--body-color-rgb), 0.1);
}

.copyright-inner {
  padding-top: 18px;
  padding-bottom: 18px;
  margin-top: 40px;
}
@media (min-width: 576px) {
  .copyright-inner {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .copyright-inner {
    margin-top: 80px;
  }
}
.copyright-inner p {
  font-size: 16px;
  margin-bottom: 0;
}

.footer-list {
  display: flex;
  flex-direction: column;
  row-gap: 17px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  font-weight: 400;
}
@media (min-width: 576px) {
  .footer-list {
    font-size: 18px;
  }
}
.footer-list a {
  color: var(--body-color);
}

.footer-store-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 13px;
  margin-top: 37px;
}
.footer-store-buttons img{
  width: 200px;
}

/* Footer Dark and Light Global */
[class*=footer--dark] {
  color: rgba(255, 255, 255, 0.8);
}
[class*=footer--dark] p {
  color: inherit;
}
[class*=footer--dark] .footer-title {
  color: #fff;
}
[class*=footer--dark] a {
  color: rgba(255, 255, 255, 0.8);
}
[class*=footer--dark] .copyright-border {
  border-color: rgba(255, 255, 255, 0.1);
}

[class*=footer--light] {
  color: rgba(var(--body-color-rgb), 0.8);
}
[class*=footer--light] .footer-title {
  color: var(--body-color);
}
[class*=footer--light] a {
  color: rgba(var(--body-color-rgb), 0.8);
}
[class*=footer--light] a.footer-link {
  text-decoration: underline;
  margin-bottom: 24px;
}
[class*=footer--light] a:hover {
  color: var(--bs-primary);
}
[class*=footer--light] .copyright-border {
  border-color: rgba(var(--body-color-rgb), 0.1);
}

/* Footer Section Padding */
.footer-padding-default {
  padding-top: 60px;
}
@media (min-width: 576px) {
  .footer-padding-default {
    padding-top: 40px;
  }
}

/* Footer Variations By Color */
.footer--dark-v1 {
  background: #13253b;
}
.footer--dark-v1 .list-social {
  --color: #fff;
  --backgroundColor: rgba(255, 255, 255, 0.1);
  --hovBackground: #3147FF;
  --hovColor: #fff;
}
.footer--dark-v1 .copyright-inner {
  border: 0;
}
.footer--dark-v1 .copyright-block {
  background: rgba(255, 255, 255, 0.05);
}

/* Footer Variations By Color */
.footer--dark-v2 {
  background: var(--black-2);
}
.footer--dark-v2 .list-social {
  --color: #fff;
  --backgroundColor: rgba(255, 255, 255, 0.1);
  --hovBackground: #3147FF;
  --hovColor: #fff;
}
.footer--dark-v2 .copyright-inner {
  border: 0;
}
.footer--dark-v2 .copyright-block {
  background: rgba(255, 255, 255, 0.05);
}

.footer-l01 a:hover {
  color: var(--bs-primary);
}

.footer-l02 {
 /* background-color: #F5F5F5;*/
}
.footer-l02 .footer-title {
  color: #13253b;
}
.footer-l02 .footer-list a {
  color: rgba(10, 16, 47, 0.8);
}
.footer-l02 .list-social li a:hover {
  background-color: var(--black-2);
  color: #fff;
}
.footer-l02 a:hover {
  color: var(--l2-primary);
}

.footer-l03 .copyright-border {
  border-color: transparent;
}
.footer-l03 li {
  line-height: 1.67;
}
.footer-l03 .copyright-block {
  background-color: #FAF9F5;
}
.footer-l03 .list-social li a:hover {
  background-color: var(--l3-primary);
  color: #13253b;
}
.footer-l03 a:hover {
  color: var(--l3-primary);
}

.footer-l04 {
  background-color: #F5EFEB;
  line-height: 1.67;
}
.footer-l04 .list-social li a:hover {
  background-color: var(--l4-primary);
  color: #fff;
}
.footer-l04 a:hover {
  color: var(--l4-primary);
}

.footer-l05 {
  color: rgba(var(--cream-rgb), 0.8);
}
.footer-l05 .footer-title {
  color: #FDFBF9;
}
.footer-l05 a {
  color: rgba(var(--cream-rgb), 0.8);
}
.footer-l05 a:hover {
  color: var(--l5-primary);
}

.footer-l08 {
  padding-top: 60px;
}
@media (min-width: 992px) {
  .footer-l08 {
    padding-top: 100px;
  }
}
.footer-l08 .list-social li a:hover {
  background-color: var(--l8-primary);
  color: var(--black-2);
}
.footer-l08 a:hover {
  color: var(--l8-primary);
}

.footer-l10 {
  background-color: var(--l10-primary);
}
.footer-l10 .list-social li a:hover {
  background-color: var(--l10-secondary);
  color: var(--l10-primary);
}
.footer-l10 a:hover {
  color: var(--l10-secondary);
}

/* ==========  Footer Style v1  ============= */
.footer {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 576px) {
  .footer {
    font-size: 18px;
  }
}
.footer__content-block {
  max-width: 416px;
}
.footer__content-block .footer-brand {
  margin-bottom: 33px;
}
.footer__content-text {
  margin-bottom: 24px;
}
.footer a.footer-link {
  text-decoration: underline;
  margin-bottom: 24px;
}
.footer .row--list-block {
  justify-content: space-between;
  --bs-gutter-y:40px ;
}
.footer .row--footer-main {
  --bs-gutter-y:40px ;
}

/* ==========  Footer Style v2  ============= */
.footer-v2 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 576px) {
  .footer-v2 {
    font-size: 18px;
  }
}
.footer-v2__content-block {
  max-width: 500px;
}
.footer-v2__content-block .footer-brand {
  margin-bottom: 10px;
}
.footer-v2__content-block .footer-brand .logo {
 width: 120px;
 margin-top: -14px;
}
.footer-v2__content-text {
  margin-bottom: 24px;
}
.footer-v2__content-text p{
  line-height: 27px;
}
.footer-v2 a.footer-link {
  text-decoration: underline;
  margin-bottom: 24px;
}
.footer-v2__list-block .row--list-block{
  margin-top: -50px;
}
@media (min-width: 1400px) {
  .footer-v2__list-block {
    width: 750px;
  }
}
.footer-v2 .row--list-block {
  justify-content: space-between;
  --bs-gutter-y:40px;
}
.footer-v2 .row--footer-main {
  --bs-gutter-y:40px;
  justify-content: space-between;
}

/* ==========  Footer Style v2  ============= */
.footer-v3 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}
@media (min-width: 576px) {
  .footer-v3 {
    font-size: 18px;
  }
}
.footer-v3__content-block {
  max-width: 320px;
}
.footer-v3__content-block .footer-brand {
  margin-bottom: 33px;
}
.footer-v3__content-text {
  margin-bottom: 24px;
}
.footer-v3 a.footer-link {
  text-decoration: underline;
  margin-bottom: 24px;
}
@media (min-width: 1400px) {
  .footer-v3__list-block {
    width: 893px;
  }
}
.footer-v3 .row--list-block {
  justify-content: space-between;
  --bs-gutter-y:40px;
}
.footer-v3 .row--footer-main {
  --bs-gutter-y:40px;
  --bs-gutter-x:40px;
  justify-content: space-between;
}
.footer-v3__copyright-section {
  display: flex;
  column-gap: 30px;
  row-gap: 30px;
  flex-wrap: wrap;
  padding-top: 34px;
  padding-bottom: 34px;
  margin-top: 80px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (min-width: 992px) {
  .footer-v3__copyright-section {
    text-align: initial;
    justify-content: space-between;
    flex-direction: row;
  }
}

.faq-grid-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 25px;
}
@media (min-width: 992px) {
  .faq-grid-layout {
    justify-content: space-between;
  }
}
.faq-grid-layout > * {
  border-bottom: 1px solid #13253b;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.faq-grid-layout > *:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px;
}
@media (min-width: 992px) {
  .faq-grid-layout > * {
    max-width: 440px;
  }
  .faq-grid-layout > *:nth-last-child(-n+2) {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  .faq-grid-layout > * {
    max-width: 526px;
  }
}
@media (min-width: 1400px) {
  .faq-grid-layout > * {
    max-width: 578px;
  }
}

.faq-grid-single .faq-grid__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0em;
  margin-bottom: 15px;
  font-family: var(--font-family-base);
}
@media (min-width: 576px) {
  .faq-grid-single .faq-grid__title {
    font-size: 20px;
  }
}
.faq-grid-single p {
  font-size: 16px;
  line-height: 1.67;
  font-weight: 400;
}
@media (min-width: 576px) {
  .faq-grid-single p {
    font-size: 18px;
  }
}

.faq-filter-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 18px;
  justify-content: center;
}
@media (min-width: 992px) {
  .faq-filter-list {
    justify-content: initial;
    flex-direction: column;
    row-gap: 24px;
  }
}
.faq-filter-list .faq-title {
  color: #13253b;
}
.faq-filter-list .faq-title:hover {
  color: #3147FF;
}

/* ========== Brand Section Style ============= */
.brand-section .brands-wrapper-inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .brand-section .brands-wrapper-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .brand-section .brands-wrapper-inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.brand-section .brand-heading {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .brand-section .brand-heading {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .brand-section .brand-heading {
    margin-bottom: 60px;
  }
}
@media (min-width: 1400px) {
  .brand-section .brand-heading {
    margin-bottom: 80px;
  }
}
.brand-section .brand-heading__title {
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(10, 16, 47, 0.7);
  font-family: var(--font-family-base);
}
@media (min-width: 576px) {
  .brand-section .brand-heading__title {
    font-size: 20px;
  }
}
.brand-section .brand-heading-2 {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .brand-section .brand-heading-2 {
    margin-bottom: 40px;
  }
}
.brand-section .brands-wrapper {
  display: flex;
  flex-wrap: wrap;
  row-gap: 35px;
  justify-content: center;
}
@media (min-width: 1200px) {
  .brand-section .brands-wrapper {
    justify-content: space-between;
  }
}
.brand-section .brands-wrapper.filter-grayscale img {
  width: 100%;
  max-width: auto;
  filter: grayscale(100%);
}
@media (min-width: 1200px) {
  .brand-section .brands-wrapper.filter-grayscale img {
    width: auto;
    max-width: 100%;
  }
}
.brand-section .single-brand {
  padding-left: 15px;
  padding-right: 15px;
  width: 51%;
}
@media (min-width: 480px) {
  .brand-section .single-brand {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .brand-section .single-brand {
    width: 33.333%;
  }
}
@media (min-width: 992px) {
  .brand-section .single-brand {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .brand-section .single-brand {
    width: auto;
  }
}
.brand-section .single-brand img {
  max-width: 100%;
}
.brand-section .single-brand-2 {
  padding-left: 15px;
  padding-right: 15px;
  width: 34%;
}
@media (min-width: 768px) {
  .brand-section .single-brand-2 {
    width: 33.333%;
  }
}
@media (min-width: 992px) {
  .brand-section .single-brand-2 {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .brand-section .single-brand-2 {
    width: auto;
  }
}
.brand-section .single-brand-2 img {
  max-width: 100%;
}

.bg-primary-l2 {
  background-color: var(--l2-primary);
}

.bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.object-image {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

.absolute-center {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.link-box {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 42px;
  padding-right: 42px;
  text-align: center;
  color: #fff;
  display: inline-block;
  border-radius: 3px;
  font-weight: 700;
  font-size: 16px;
}
.link-box a {
  color: #fff;
  text-decoration: underline;
}

.section-divider {
  position: relative;
  z-index: -99;
}
.section-divider img {
  width: 100%;
  margin-top: -1px;
}

.border-bottom-dark {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 576px) {
  .section-button {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .section-button {
    margin-top: 80px;
  }
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.section-padding.has-section-heading {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .section-padding.has-section-heading {
    padding-top: 70px;
  }
}
@media (min-width: 992px) {
  .section-padding.has-section-heading {
    padding-top: 121px;
  }
}

.section-padding-bottom {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding-bottom {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-bottom {
    padding-bottom: 134px;
  }
}

.section-padding-top:not(.has-section-heading) {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .section-padding-top:not(.has-section-heading) {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-top:not(.has-section-heading) {
    padding-top: 134px;
  }
}
.section-padding-top.has-section-heading {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .section-padding-top.has-section-heading {
    padding-top: 70px;
  }
}
@media (min-width: 992px) {
  .section-padding-top.has-section-heading {
    padding-top: 121px;
  }
}

.section-padding-95 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding-95 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
}

.section-padding-100 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding-100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.section-padding-120 {
  padding-top: 160px;
  padding-bottom: 60px;
  /* background: #37b844; */
}
@media (min-width: 676px) {
  .section-padding-120 {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-120 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .section-padding-120 {
    padding-top: 200px;
    padding-bottom: 40px;
    /* border-bottom:1px solid rgba(var(--body-color-rgb), 0.1); */
    /* background: #37b844; */
  }
}

.section-padding-top-120 {
  padding-top: 60px;
}
@media (min-width: 676px) {
  .section-padding-top-120 {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-top-120 {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .section-padding-top-120 {
    padding-top: 120px;
  }
}

.section-padding-bottom-95 {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding-bottom-95 {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-bottom-95 {
    padding-bottom: 95px;
  }
}

.padding-top-100 {
  padding-top: 40px;
}
@media (min-width: 576px) {
  .padding-top-100 {
    padding-top: 60px;
  }
}
@media (min-width: 992px) {
  .padding-top-100 {
    padding-top: 100px;
  }
}

.padding-bottom-100 {
  padding-bottom: 40px;
}
@media (min-width: 576px) {
  .padding-bottom-100 {
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .padding-bottom-100 {
    padding-bottom: 100px;
  }
}

.padding-top-120 {
  padding-top: 60px;
}
@media (min-width: 576px) {
  .padding-top-120 {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .padding-top-120 {
    padding-top: 120px;
  }
}

.padding-bottom-120 {
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .padding-bottom-120 {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .padding-bottom-120 {
    padding-bottom: 60px;
  }
}

.padding-bottom-150 {
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .padding-bottom-150 {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .padding-bottom-150 {
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .padding-bottom-150 {
    padding-bottom: 150px;
  }
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-20 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.gutter-y-default {
  --bs-gutter-y: 24px;
}

.section-heading {
  margin-bottom: 40px;
}
@media (min-width: 575px) {
  .section-heading {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .section-heading {
    margin-bottom: 20px;
  }
}
.section-heading--white .section-heading__title {
  color: #fff;
}
.section-heading--row {
  row-gap: 30px;
}
.section-heading--row > .row {
  justify-content: space-between;
  align-items: flex-end;
  --bs-gutter-y: 30px;
}
.section-heading--row .section-heading__title {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .section-heading--row .section-heading__button {
    text-align: right;
  }
}

.heading-xl {
  line-height: 1.11;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.0111111111em;
  margin-bottom: 24px;
}
@media (min-width: 480px) {
  .heading-xl {
    font-size: 42px;
  }
}
@media (min-width: 576px) {
  .heading-xl {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .heading-xl {
    font-size: 64px;
  }
}
@media (min-width: 1200px) {
  .heading-xl {
    font-size: 76px;
  }
}
@media (min-width: 1400px) {
  .heading-xl {
    font-size: 90px;
  }
}
.heading-xl--general-sans {
  font-weight: 600;
  font-family: "General Sans", sans-serif;
  line-height: 1.04;
  letter-spacing: initial;
}
.heading-xl--dm-sans {
  font-family: "DM Sans", sans-serif;
}
.heading-xl--public-sans {
  font-family: "Public Sans", sans-serif;
}
.heading-xl--syne {
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-family: "Syne", sans-serif;
}
.heading-xl--general-sans {
  line-height: 1.11;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.0111111111em;
  line-height: 1.04;
  letter-spacing: 0em;
  font-family: "General Sans", sans-serif;
}
@media (min-width: 480px) {
  .heading-xl--general-sans {
    font-size: 42px;
  }
}
@media (min-width: 576px) {
  .heading-xl--general-sans {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .heading-xl--general-sans {
    font-size: 64px;
  }
}
@media (min-width: 1200px) {
  .heading-xl--general-sans {
    font-size: 76px;
  }
}
@media (min-width: 1400px) {
  .heading-xl--general-sans {
    font-size: 90px;
  }
}
.heading-xl--v2 {
  line-height: 1.11;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.0111111111em;
  letter-spacing: initial;
  line-height: 1.07;
}
@media (min-width: 480px) {
  .heading-xl--v2 {
    font-size: 42px;
  }
}
@media (min-width: 576px) {
  .heading-xl--v2 {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .heading-xl--v2 {
    font-size: 64px;
  }
}
@media (min-width: 1200px) {
  .heading-xl--v2 {
    font-size: 76px;
  }
}
@media (min-width: 1400px) {
  .heading-xl--v2 {
    font-size: 90px;
  }
}

.heading-md {
  font-size: 32px;
  line-height: 1.26;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .heading-md {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .heading-md {
    font-size: 42px;
  }
}
@media (min-width: 1200px) {
  .heading-md {
    font-size: 46px;
  }
}
.heading-md--dm-sans {
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  letter-spacing: -0.021739em;
}
.heading-md--v3 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
}
@media (min-width: 576px) {
  .heading-md--v3 {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .heading-md--v3 {
    font-size: 44px;
  }
}
@media (min-width: 1200px) {
  .heading-md--v3 {
    font-size: 50px;
  }
}
.heading-md--general-sans {
  font-weight: 600;
  font-family: "General Sans", sans-serif;
}

.heading-sm {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-family: var(--font-family-base);
}
@media (min-width: 576px) {
  .heading-sm {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .heading-sm {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .heading-sm {
    font-size: 40px;
  }
}

.heading-xs {
  font-weight: 600;
  letter-spacing: -0.033333em;
  font-family: "General Sans", sans-serif;
  line-height: 1.4;
  font-size: 24px;
  font-family: var(--font-family-base);
}
@media (min-width: 768px) {
  .heading-xs {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .heading-xs {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .heading-xs {
    font-size: 30px;
  }
}

.heading-xs-2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0em;
  font-family: var(--font-family-base);
}
@media (min-width: 576px) {
  .heading-xs-2 {
    font-size: 20px;
  }
}

.justify-center {
  justify-content: center;
}

.h-full {
  height: 100%;
}

.fw-400 {
  font-weight: normal;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

@media (min-width: 768px) {
  .text-md-initial {
    text-align: initial !important;
  }
}

@media (min-width: 992px) {
  .text-lg-initial {
    text-align: initial !important;
  }
}

.text-primary-l02 {
  color: var(--l2-primary);
}

.bg-white {
  background: #FFFFFF;
}

.bg-cream {
  background-color: #FDFBF9;
}

.bg-cream-dark {
  background-color: #F5EFEB;
}

.bg-black {
  background-color: var(--body-color);
}

.bg-black-2 {
  background-color: #121212;
}

.bg-black-3 {
  background-color: #1B1C1D;
}

.bg-orange {
  background: #E35523;
}

.bg-primary-l6 {
  background: #3147FF;
}

.bg-primary-l09 {
  background: #324438;
}

.bg-secondary-l09 {
  background: #F4B905;
}

.bg-offwhite-2 {
  background: #FFF4D9;
}

.bg-light-2 {
  background-color: #FAF9F5;
}

.bg-offwhite-3 {
  background: #F5F3EA;
}

.bg-offwhite-dark {
  background: #EBDECE;
}

.bg-primary-opacity-l2 {
  background-color: rgba(var(--l2-primary-rgb), 0.03);
}

.text-black {
  color: var(--body-color) !important;
}

.text-black-2 {
  color: #121212;
}

.text-black-3 {
  color: #221F1A;
}

.text-l7-primary {
  color: #191919;
}

.text-l5-secondary {
  color: #1B1C1D;
}

.text-cream {
  color: #FDFBF9;
}

.text-offwhite-2 {
  color: #FFF4D9;
}

.hero-content__title {
  font-size: 80px;
}
.btn-scour span {
    /* display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px; */
}

.home-1_service-section {
  position: relative;
}
.home-1_service-section-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.home-1_service-section-wrapper {
  border-top: 1px solid rgba(10, 16, 47, 0.1);
  padding-top: 60px;
}
@media (min-width: 576px) {
  .home-1_service-section-wrapper {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .home-1_service-section-wrapper {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .home-1_service-section-wrapper {
    padding-top: 120px;
  }
}
.home-1_service-section {
  position: relative;
}
.home-1_service-section-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.home-1_service-section-wrapper {
  border-top: 1px solid rgba(10, 16, 47, 0.1);
  padding-top: 60px;
}
@media (min-width: 576px) {
  .home-1_service-section-wrapper {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .home-1_service-section-wrapper {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .home-1_service-section-wrapper {
    padding-top: 10px;
  }
}

.service-card {
  padding: 40px;
  display: flex;
  column-gap: 40px;
  border-radius: 10px;
  border: 2px solid green;
  transition: 0.3s;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 25px;
  background: #fff;
}
@media (min-width: 576px) {
  .service-card {
    flex-direction: initial;
    align-items: initial;
    text-align: initial;
  }
}
@media (min-width: 992px) {
  .service-card {
    padding: 20px;
  }
}
.service-card__icon {
  color: #0A102F;
  max-width: 100px;
}
.service-card__icon svg,
.service-card__icon img {
  width: 100%;
}
.service-card__icon svg path,
.service-card__icon img path {
  fill: currentColor;
}
.service-card__title {
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.0208333333em;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  color: #0A102F;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .service-card__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .service-card__title {
    font-size: 24px;
  }
}
.service-card p {
  margin-bottom: 14px;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: rgba(10, 16, 47, 0.8);
}
@media (min-width: 576px) {
  .service-card p {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .service-card p {
    margin-bottom: 10px;
  }
}
.service-card:hover .service-card__icon {
  color: #3147FF;
}
.service-card:hover .service-card__link {
  color: #3147FF;
}
.service-card:hover .service-card__link:after {
  left: 4px;
}
/* .service-card.hvr-fill:hover {
  background: #1a5f8c47;
  border-color: #1a5f8c47;
} */
.service-card.background-2 {
  background: #FFFFFF;
  border: 0px;
  border-radius: 10px;
}
.service-card.background-2:hover {
  box-shadow: 0px 4px 60px rgba(10, 16, 47, 0.06);
}

span.feature-icon {
  font-size: 66px;
}

.howdoes img {
  width: 60px;
}

@media only screen and (max-width: 600px) {
  .hero-content__title {
      font-size: 40px;
  }
  .main-button {
    width: 100% !important;
  }
  .service-card {
    padding: 0px;
  }
  .heading-md{
    font-size: 25px;
  }
  .home-2_hero-image-block {
    margin-left: 0;
  }
  .home-2_hero-section{
    padding-bottom: 20px;
  }
  .home-2_feature-section{
    padding-top: 10px;
  }
  .home-1_service-section-wrapper{
    padding-top: 30px;
  }
  .section-padding-100{
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.load-mask {
  width: 100%;
  height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background-color: #3e3e7c;
  opacity: 0.5;
  overflow: auto;
  z-index: 999999;
}
.load-mask .load-mask-loading-container {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
  margin: 40px auto;
}
.load-mask .load-mask-loading {
  border: 2px solid transparent;
  border-color: transparent #fff transparent #fff;
  -moz-animation: rotate-loading 1.5s linear 0s infinite normal;
  -moz-transform-origin: 50% 50%;
  -o-animation: rotate-loading 1.5s linear 0s infinite normal;
  -o-transform-origin: 50% 50%;
  -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
  -webkit-transform-origin: 50% 50%;
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}
.load-mask .load-mask-loading-text {
  animation: loading-text-opacity 2s linear 0s infinite normal;
  color: #ffffff;
  font-family: "Helvetica Neue, " Helvetica ", " "arial";
  font-size: 10px;
  font-weight: bold;
  margin-top: 45px;
  opacity: 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  width: 100px;
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
@keyframes loading-text-opacity {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
