html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
  scroll-behavior: smooth;
}

@media (max-width: 1370px) {
  html {
    font-size: 52.5%;
  }
}

/* @media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 60.5%;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 52.5%;
  }
} */

@font-face {
  font-family: domaine;
  src: url("../fonts/domaine-regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: domaine;
  src: url("../fonts/domaine-bold.woff2") format("woff2");
  font-weight: 700;
}

@font-face {
  font-family: gellix;
  src: url("../fonts/gellix-regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: gellix;
  src: url("../fonts/gellix-semibold.woff2") format("woff2");
  font-weight: 600;
}

.gform_required_legend {
  display: none !important;
}

:root {
  --header-height: 105px;
  --primary-color: #fbc23d;
  --new-primary-color: #046307;
  --primary-color-dark: #674802;
  --heading-color: #362600;
  --text-color: #362600;
  --white: #ffffff;
  --black: #000000;
  --btn-color: #fbc23d;
  --light-bg: #f1f1f1;
  --light-bg2: #eaebee;
  --dark-bg: #07173b;
  --dark-bg2: #101828;
  /*--bg-theme-light: #fff0ce;
  --bg-theme-gray: #fffaee;*/
	
  --bg-theme-light: #b4e7acfa;
  --bg-theme-gray: #b4e7acfa;
  --bs-aspect-ratio: 56.25%;
  --font-1_2rem: 1.2rem;
  --font-1_4rem: 1.4rem;
  --font-1_6rem: 1.6rem;
  --font-1_8rem: 1.8rem;
  --font-2rem: 2rem;
  --font-2_2rem: 2.2rem;
  --font-2_4rem: 2.4rem;
  --font-2_6rem: 2.6rem;
  --font-2_8rem: 2.8rem;
  --font-3rem: 3rem;
  --font-3_2rem: 3.2rem;
  --font-3_4rem: 3.4rem;
  --font-3_6rem: 3.6rem;
  --font-4rem: 4rem;
  --font-4_2rem: 4.2rem;
  --font-5_6rem: 5.6rem;
  --font-6rem: 6rem;
  --font-7_2rem: 7.2rem;
  --font-8rem: 8rem;
  --mt-1_6rem: 1.6rem;
  --mt-2_4rem: 2.4rem;
  --mt-3_2rem: 3.2rem;
  --mb-1_6rem: 1.6rem;
  --mb-2rem: 2rem;
  --mb-2_4rem: 2.4rem;
}

@media (max-width: 1480px) {
  :root {
    --font-8rem: 7rem;
  }
}

@media (max-width: 1199px) {
  :root {
    --font-8rem: 4.2rem;
    --font-7_2rem: 3.6rem;
    --font-6rem: 3.6rem;
    --font-2_4rem: 2rem;
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 90px;
    --font-6rem: 3.4rem;
    --font-4rem: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
}

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

body {
  position: relative;
  font-family: domaine;
  font-weight: 300;
  font-size: var(--font-1_6rem);
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-height: 100vh;
  color: var(--text-color);
}

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

h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

p {
  font-size: var(--font-1_6rem);
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1290px;
  margin: auto;
}

@media (max-width: 1199px) {
  .container {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

input:focus-visible {
  outline: none;
}

:focus-visible {
  outline: none;
}

.bg-theme-light {
  background-color: var(--bg-theme-light);
}

.bg-theme-gray {
  background-color: var(--bg-theme-gray);
}

.sec-padd {
  padding: 12rem 0;
}

.sec-paddTop {
  padding-top: 12rem;
}

.sec-paddBottom {
  padding-bottom: 12rem;
}

@media(max-width: 991px) {
  .sec-padd {
    padding: 8rem 0;
  }

  .sec-paddTop {
    padding-top: 8rem;
  }

  .sec-paddBottom {
    padding-bottom: 8rem;
  }
}

@media(max-width: 768px) {
  .sec-padd {
    padding: 6rem 0;
  }

  .sec-paddTop {
    padding-top: 6rem;
  }

  .sec-paddBottom {
    padding-bottom: 6rem;
  }
}

.sec-padd-80 {
  padding: 8rem 0;
}

.sec-paddTop-80 {
  padding-top: 8rem;
}

.sec-paddBottom-80 {
  padding-bottom: 8rem;
}

@media(max-width: 768px) {
  .sec-padd-80 {
    padding: 6rem 0;
  }

  .sec-paddTop-80 {
    padding-top: 6rem;
  }

  .sec-paddBottom-80 {
    padding-bottom: 6rem;
  }
}

.sec-padd-16rem {
  padding: 16rem 0;
}

.sec-paddTop-16rem {
  padding-top: 16rem;
}

.sec-paddBottom-16rem {
  padding-bottom: 16rem;
}

@media (max-width: 991px) {
  .sec-padd-16rem {
    padding: 12rem 0;
  }
  
  .sec-paddTop-16rem {
    padding-top: 12rem;
  }
  
  .sec-paddBottom-16rem {
    padding-bottom: 12rem;
  }
}

@media (max-width: 768px) {
  .sec-padd-16rem {
    padding: 8rem 0;
  }
  
  .sec-paddTop-16rem {
    padding-top: 8rem;
  }
  
  .sec-paddBottom-16rem {
    padding-bottom: 8rem;
  }
}

@media (max-width: 600px) {
  .sec-padd-16rem {
    padding: 6rem 0;
  }
  
  .sec-paddTop-16rem {
    padding-top: 6rem;
  }
  
  .sec-paddBottom-16rem {
    padding-bottom: 6rem;
  }
}

img {
  display: block;
}

.align-center {
  align-items: center;
}

.btn {
  display: inline-block;
  font-family: gellix;
  font-weight: 600;
  background-color: var(--new-primary-color);
  color: var(--white);
  font-size: var(--font-1_6rem);
  line-height: 1.25;
  padding: 1rem 2.8rem;
  white-space: nowrap;
  border: 2px solid var(--new-primary-color);
  border-radius: 5px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-lg {
  font-size: var(--font-2rem);
  line-height: 1.2;
  padding: 1.6rem 6.6rem;
}

@media (max-width: 768px) {
  .btn-lg {
    font-size: var(--font-2rem);
    padding: 1.4rem 6.6rem;
  }
}

.btn--white {
  background-color: var(--white);
  color: var(--heading-color);
  border-color: var(--heading-color);
}

.btn--light {
  background-color: var(--white);
  color: var(--heading-color);
  border-color: var(--white);
}

.btn:hover,
.btn--white:hover,
.btn--light:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
  color: var(--white);
}

.sup,
sup {
  font-size: 55%;
  top: -0.75em;
  display: inline-block;
  cursor: pointer;
}

.text-center {
  text-align: center;
}

.section-title .title {
  font-size: var(--font-7_2rem);
  margin-bottom: var(--mb-2_4rem);
  color: var(--heading-color);
}

.section-title .description {
  font-size: var(--font-2_4rem);
  margin-bottom: var(--mb-1_6rem);
  line-height: 1.5;
}

h2.inner-title {
  font-size: var(--font-6rem);
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-56 {
  margin-bottom: 5.6rem;
}

.mb-72 {
  margin-bottom: 7.2rem;
}

@media (max-width: 991px) {
  .mb-72 {
    margin-bottom: 5.6rem;
  }
}

@media (max-width: 768px) {
  .mb-72 {
    margin-bottom: 4rem;
  }
}

.mb-120 {
  margin-bottom: 12rem;
}

@media (max-width: 1280px) {
  .mb-120 {
    margin-bottom: 10rem;
  }
}

@media (max-width: 1199px) {
  .mb-120 {
    margin-bottom: 6rem;
  }
}

@media (max-width: 991px) {
  .mb-120 {
    margin-bottom: 5.6rem;
  }
}

@media (max-width: 768px) {
  .mb-120 {
    margin-bottom: 4rem;
  }
}

hr {
  margin: 1rem 0;
  color: var(--bg-theme-light);
  border: 0;
  border-top: 1px solid;
}

.scroller-scrollbar .swiper-scrollbar {
  position: unset;
  width: calc(100% - 8rem);
  height: 10px;
  margin: 7rem auto 5px;
  background-color: var(--bg-theme-gray);
}

.scroller-scrollbar .swiper-scrollbar-drag {
  background-color: var(--new-primary-color);
}

.scroller-scrollbar .swiper-button-next,
.scroller-scrollbar .swiper-button-prev {
  width: 7px;
  height: 12px;
  bottom: 3px;
  top: unset;
  font-weight: 600;
  color: var(--heading-color);
}

.scroller-scrollbar .swiper-button-next:after,
.scroller-scrollbar .swiper-button-prev:after {
  font-size: var(--font-1_4rem);
}

.overflow_hidden {
  overflow: hidden;
}

/*  */
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--header-height);
  padding: 15px 0;
  display: flex;
  align-items: center;
  transition: transform .2s;
  z-index: 9;
}

@media (max-width: 991px) {
  .header {
    padding: 10px 0;
  }
}

.header.show {
  position: fixed;
  animation: header-show .3s ease-out;
  background-color: var(--white);
  border-bottom: 1px solid var(--bg-theme-light);
}

@keyframes header-hide {
  0% {
    transform: translateZ(0)
  }

  to {
    transform: translate3d(0, -100%, 0)
  }
}

@keyframes header-show {
  0% {
    transform: translate3d(0, -100%, 0)
  }

  to {
    transform: translateZ(0)
  }
}

.header .header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  .header .header__inner {
    position: unset;
  }
}

.header .header__logo {
  font-family: gellix;
}

.header .header__logo a {
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.header .header__logo .logo__title {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--heading-color);
  text-shadow: 0px 1px;
  margin-bottom: 6px;
  letter-spacing: 1.4px;
}

@media (max-width: 768px) {
  .header .header__logo .logo__title {
    font-size: 2rem;
  }
}

@media (max-width: 380px) {
  .header .header__logo .logo__title {
    font-size: 1.9rem;
  }
}

@media (max-width: 360px) {
  .header .header__logo .logo__title {
    font-size: 1.8rem;
  }
}

.header .header__logo .logo__subtitle {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--heading-color);
  letter-spacing: 1.2px;
}

@media (max-width: 768px) {
  .header .header__logo .logo__subtitle {
    font-size: 1.5rem;
  }
}

.header .header__logo img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 50%;
  padding: 2px;
  background: var(--new-primary-color);
}

@media (max-width: 768px) {
  .header .header__logo img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 380px) {
  .header .header__logo img {
    width: 45px;
    height: 45px;
  }
}

.header__nav .nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 991px) {
  .header__nav {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: var(--white);
    border-top: 1px solid #f2f4f7;
    padding: 2rem 3rem;
    overflow: auto;
    display: none;
  }

  .header__nav .nav-list {
    display: block;
  }
}

.header__nav .nav-list .btn {
  margin-left: 15px;
}

@media (max-width: 991px) {
  .header__nav .nav-list .btn {
    margin: 0;
    margin-top: 1.6rem;
  }
}

.header__nav .nav-item {
  margin: 0 1rem;
}

@media (max-width: 991px) {
  .header__nav .nav-item {
    margin: 0;
  }
}

.header__nav .nav-link {
  position: relative;
  font-family: gellix;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 600;
  padding: 2rem 0;
  color: var(--text-color);
  text-transform: capitalize;
  transition: all 0.3s;
  color: var(--primary-color-dark);
}

@media (max-width: 991px) {
  .header__nav .nav-link {
    display: inline-flex;
    padding: 1.6rem 0;
  }
}

.header__nav .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-dark);
  transition: width 0.2s ease-in-out;
}

.header__nav .nav-link:hover::before,
.header__nav .nav-link.active::before {
  width: 100%;
}

.header__nav .nav-link:hover {
  color: #34322f;
}

.header .hamburger {
  display: none;
}

@media (max-width: 991px) {
  .header .hamburger {
      display: flex;
      align-items: center;
      width: 22px;
      height: 22px;
      margin-left: 16px;
  }

  .header .hamburger .hamburger__open {
      position: relative;
      width: 22px;
      height: 2px;
      background-color: #333;
      border-radius: 1px;
      transition: all .6s ease-out;
      z-index: 2;
  }
  
  .header .hamburger .hamburger__open::before,
  .header .hamburger .hamburger__open::after {
      content: "";
      position: absolute;
      width: 22px;
      height: 2px;
      background-color: #333;
      border-radius: 1px;
      transition: all .6s ease-out;
  }
  
  .header .hamburger .hamburger__open::before {
      transform: translateY(-7px);
  }
  
  .header .hamburger .hamburger__open::after {
      transform: translateY(7px);
  }

  .header .hamburgerClose .hamburger__open {
      background-color: transparent;
  }

  .header .hamburgerClose .hamburger__open::before {
      transform: rotate(45deg);
  }

  .header .hamburgerClose .hamburger__open::after {
      transform: rotate(-45deg);
  }
}


/*  */
.hero-banner {
  padding-bottom: 8rem;
}

@media (max-width: 991px) {
  .hero-banner {
    padding-bottom: 5.6rem;
  }
}

.hero-banner .hero-banner__inner {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  grid-column-gap: 65px;
}

@media (max-width: 1199px) {
  .hero-banner .hero-banner__inner {
    grid-template-columns: 0.8fr 1fr;
    grid-column-gap: 50px;
  }
}

@media (max-width: 991px) {
  .hero-banner .hero-banner__inner {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-banner .hero-banner__inner {
    grid-template-columns: 1fr;
    grid-row-gap: 4rem;
  }
}

.hero-banner .text-content {
  padding-top: 4rem;
}

@media (max-width: 991px) {
  .hero-banner .text-content {
    padding-top: 2rem;
  }
  .hero-banner.loan-banner .text-content {
    padding-top: 4rem;
  }
}

@media (max-width: 768px) {
  .hero-banner.loan-banner .text-content {
    padding-top: 2rem;
  }
}

.hero-banner .text-content .title {
  font-size: var(--font-8rem);
  line-height: 1;
  margin-bottom: var(--mb-1_6rem);
}

.hero-banner .text-content p {
  width: 85%;
  margin-bottom: 4rem;
}

@media (max-width: 1280px) {
  .hero-banner .text-content p {
    width: 90%;
  }
}

@media (max-width: 1199px) {
  .hero-banner .text-content p {
    font-size: var(--font-1_8rem);
  }
}

@media (max-width: 768px) {
  .hero-banner .text-content p {
    width: 100%;
  }

  .hero-banner .text-content .btn {
    width: 100%;
    text-align: center;
  }
}

.hero-banner .text-content .note {
  display: block;
  font-family: gellix;
  font-size: var(--font-1_2rem);
  line-height: 1.25;
  margin-top: var(--mt-3_2rem);
}

.hero-banner .text-content .note a {
  text-decoration: underline;
}

.hero-banner .text-content .note-rate {
  display: flex;
  align-items: center;
  font-family: gellix;
  font-size: var(--font-1_2rem);
  line-height: 1.25;
  margin-top: 4.8rem;
}

.hero-banner .text-content .note-rate img {
  max-width: 68px;
  height: auto;
}

.hero-banner .text-content .note-rate span {
  display: block;
  margin-left: 1.6rem;
}

.hero-banner .img-content {
  position: relative;
  max-width: 800px;
  overflow: hidden;
  margin-left: auto;
}

.hero-banner .img-content img {
  /* filter: grayscale(); */
  /* aspect-ratio: auto; */
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.loan-banner .hero-banner__inner {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .loan-banner .hero-banner__inner {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 0rem;
  }
}

.loan-banner .text-content .title {
  margin-bottom: 4rem;
}

@media (max-width: 1199px) {
  .loan-banner .text-content .title {
    margin-bottom: 2.4rem;
  }
}

.loan-banner .text-content p {
  width: 80%;
  font-size: var(--font-2_4rem);
}

@media (max-width: 1199px) {
  .loan-banner .text-content p {
    width: 100%;
    margin-bottom: 3.2rem;
  }
}

@media (max-width: 991px) {
  .loan-banner .text-content br {
    display: none;
  }
}

.loan-banner .img-content {
  border-top-left-radius: 45%;
  max-width: 600px;
  margin-top: var(--mt-1_6rem);
}

@media (max-width: 768px) {
  .loan-banner .img-content {
    order: -1;
    margin-left: 0;
    margin-top: 2rem !important;
  }
}

.loan-banner .img-content img {
  /*background-color: #ffd9b1;*/
	background-color: #18620d;
  filter: unset;
  height: 100%;
  margin-bottom: -1px;
  object-fit: cover;
}

/*  */
.happy-clients .happy-clients__inner {
  padding-top: 5.6rem;
  padding-bottom: 5.6rem;
  border-radius: 9rem 0 9rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

@media (max-width: 768px) {
  .happy-clients .happy-clients__inner {
    column-gap: 2rem;
    row-gap: 3.2rem;
  }
}

@media (max-width: 600px) {
  .happy-clients .happy-clients__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.happy-clients .happy-clients__content {
  flex: 0 0 auto;
  width: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .happy-clients .happy-clients__content {
    flex: 0 0 48%;
  }
}

.happy-clients .happy-clients__content .title {
  font-size: var(--font-6rem);
}

.happy-clients .happy-clients__content .text {
  font-family: gellix;
  display: block;
  font-size: var(--font-2_4rem);
  line-height: 1;
  margin-top: 0.8rem;
}

@media (max-width: 991px) {
  .happy-clients .happy-clients__content .text {
    font-size: var(--font-1_6rem);
  }
}

/*  */
.business-events .section-title {
  margin: auto;
  padding-bottom: 8rem;
}

@media (max-width: 1199px) {
  .business-events .section-title br {
    display: none;
  }
}

@media (max-width: 991px) {
  .business-events .section-title {
    padding-bottom: 3rem;
  }
}

.business-events .business-events__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
 .business-events .business-events__content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
 }   
}

.business-events .business-events__content:not(:first-child) {
  margin-top: 6.4rem;
}

.business-events .business-events__content .img-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-events .business-events__content .text-content {
  padding: 6.4rem;
  background-color: var(--bg-theme-gray);
}

@media (max-width: 991px) {
  .business-events .business-events__content .text-content {
    padding: 3.2rem;
  }
}

.business-events .business-events__content .title {
  font-size: var(--font-4rem);
  padding-right: 15px;
  margin-bottom: var(--mb-2_4rem);
}

@media (max-width: 991px) {
  .business-events .business-events__content .title {
    padding-right: 0;
  }
}

.business-events .business-events__content p {
  font-size: var(--font-2rem);
  padding-right: 30px;
  margin-bottom: 3.2rem;
}

@media (max-width: 991px) {
  .business-events .business-events__content p {
    padding-right: 0;
    margin-bottom: 3.2rem;
  }
}

@media (max-width: 1199px) {
  .business-events .business-events__content p {
    font-size: var(--font-1_8rem);
  }
}

.business-events .business-events__content .icon {
  width: 55px;
  min-width: 55px;
  height: 55px;
  margin-right: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .business-events .business-events__content .icon {
    margin-right: 20px;
  }
}

.business-events .business-events__content .icon img {
  width: 55px;
  height: 55px;
  max-width: 55px;
  max-height: 55px;
}

@media (max-width: 768px) {
.business-events .business-events__content .icon img {
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
}
}

.business-events .business-events__content .list {
  margin-bottom: 4rem;
}

.business-events .business-events__content .items {
  width: 90%;
  font-family: gellix;
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  font-size: var(--font-2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 3.2rem;
}

@media (max-width: 991px) {
  .business-events .business-events__content .items {
    width: 100%;
    margin-bottom: 1.6rem;
  }
}

.business-events__premier {
  width: 100%;
  padding: 4.8rem 6rem;
  background-color: var(--bg-theme-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 4rem;
}

@media (max-width: 991px) {
  .business-events__premier {
    padding: 4rem 4rem;
  }
}

@media (max-width: 600px) {
  .business-events__premier {
    padding: 3rem 3rem;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2.4rem;
  }
}

.business-events__premier .img-content {
  width: 100px;
  min-width: 100px;
}

.business-events__premier .img-content img,
.business-events__premier .img-content svg {
  width: 100%;
  height: auto;
}

.business-events__premier .text-content {
  padding-right: 4rem;
}

.business-events__premier .text-content .title {
  font-size: var(--font-2_4rem);
}

.business-events__premier .text-content p {
  font-size: var(--font-2rem);
  margin-top: 0.8rem;
}

/*  */
.our-securities .section-title .title {
  margin-bottom: var(--mb-1_6rem);
}

.our-securities__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
}

@media (max-width: 768px) {
  .our-securities__container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.our-securities__content img {
  width: 55px;
  height: auto;
  margin-top: 4rem;
  margin-bottom: var(--mb-1_6rem);
}

@media (max-width: 991px) {
  .our-securities__content img {
    margin-top: 3rem;
  }
}

.our-securities__content .title {
  font-size: var(--font-3_2rem);
  margin-bottom: 0.8rem;
}

.our-securities__content p {
  max-width: 330px;
}

/*  */
.our-customers__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
}

@media (max-width: 768px) {
  .our-customers .section-title {
    text-align: center;
  }
  .our-customers__content {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 30px;
  }
}

@media (max-width: 480px) {
  .our-customers .section-title br {
    display: none;
  }
}

.our-customers__content blockquote img {
  width: 80px;
  height: auto;
  margin-bottom: 4rem;
}

.our-customers__content blockquote p {
  font-size: var(--font-2_8rem);
  margin-bottom: 4rem;
}

@media (max-width: 1199px) {
  .our-customers__content blockquote p {
    font-size: var(--font-2rem);
  }
}

.cust-details {
  display: flex;
  align-items: center;
  font-family: gellix;
  font-size: var(--font-2rem);
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .cust-details {
    font-size: var(--font-1_8rem);
  }
}

.cust-details span {
  display: block;
}

/* .cust-details .detailsLeft {
  width: 220px;
  min-width: 220px;
  border-right: 1px solid #ffe099;
} */

/* @media (max-width: 1199px) {
  .cust-details .detailsLeft {
    width: 180px;
    min-width: 180px;
  }
}

@media (max-width: 991px) {
  .cust-details .detailsLeft {
    width: auto;
    min-width: 150px;
  }
}

@media (max-width: 600px) {
  .cust-details .detailsLeft {
    width: auto;
    min-width: 120px;
  }
} */

.cust-details .detailsRight {
  padding-left: 4rem;
}

.cust-details .detailsRight span {
  display: flex;
  align-items: center;
}

.cust-details .detailsRight img {
  width: 48px;
  height: auto;
  margin-right: 1.5rem;
}

@media (max-width: 600px) {
  .cust-details .detailsRight img {
    width: 40px;
  }
}

.our-customers__content .img-content {
  max-width: 500px;
  margin-left: auto;
}

@media (max-width: 768px) {
  .our-customers__content .img-content {
    max-width: 165px;
    margin: auto;
    order: -1;
  }
}

.our-customers__content .img-content img {
  width: 100%;
  height: auto;
  border-radius: 90% 0 90% 90%;
}

/*  */
.awards-company__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 3rem;
  margin-bottom: 8.8rem;
}

@media (max-width: 991px) {
  .awards-company__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin-bottom: 5rem;
  }
  .awards-company__container img {
    margin: auto;
  }
}

@media (max-width: 768px) {
  .awards-company__container img {
    width: auto;
    max-width: 100%;
    max-height: 45px;
    height: auto;
    margin: auto;
    object-fit: contain;
  }
}

.awards-listing {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-content: center;
  column-gap: 3rem;
  row-gap: 8rem;
}

@media (max-width: 991px) {
  .awards-listing {
    row-gap: 4rem;
  }
}

@media (max-width: 768px) {
  .awards-listing {
    grid-template-columns: repeat(1, 1fr);
  }
}

.awards-listing__content {
  grid-column: span 2;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .awards-listing__content {
    grid-column: span 1;
    display: flex;
    align-items: center;
  }
}

.awards-listing__content:nth-child(4) {
  grid-column: 2 / span 2;
}

@media (max-width: 768px) {
  .awards-listing__content:nth-child(4) {
    grid-column: unset;
  }
}

.awards-listing__content img {
  width: 80px;
  max-width: 80px;
  height: auto;
  margin-right: 2.4rem;
}

@media (max-width: 991px) {
  .awards-listing__content img {
    width: 48px;
    max-width: 48px;
  }
}

.awards-listing__content .title {
  font-size: var(--font-2_4rem);
  line-height: 1.25;
}

/*  */
.get-apply {
  background-color: var(--new-primary-color);
}

.get-apply .get-apply__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 2rem;
}
.get-apply__container .title {
    color: var(--white);
}
@media (max-width: 768px) {
  .get-apply .get-apply__container {
    flex-direction: column;
    row-gap: 3rem;
    align-items: flex-start;
  }
}

.get-apply .title {
  font-size: var(--font-6rem);
}

@media (max-width: 1199px) {
  .get-apply .title br {
    display: none;
  }
}

.get-apply .btn-content {
  max-width: 405px;
}
.get-apply .btn-content p {
    color: var(--white);
}
@media (max-width: 991px) {
  .get-apply .btn-content {
    max-width: 280px;
  }
}

.get-apply .btn-content p {
  font-size: var(--font-2rem);
  margin-top: var(--mt-1_6rem);
}

@media (max-width: 768px) {
  .get-apply .btn-content {
    max-width: 100%;
  }
  .get-apply .btn-content p {
    margin-top: 2rem;
  }
}

/*  */
.footer-top {
  background-color: #140e00;
}

.footer-top__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  grid-column-gap: 30px;
}

@media (max-width: 991px) {
  .footer-top__container {
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 30px;
  }
  .footer-top__container .footer-widget:last-child {
    grid-column: span 3;
  }
}

@media (max-width: 600px) {
  .footer-top__container {
    grid-template-columns: 1fr;
  }
  .footer-top__container .footer-widget:last-child {
    grid-column: span 1;
  }
}

.footer-widget .title {
  font-size: var(--font-2_4rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .footer-widget .title {
    margin-bottom: 1rem;
  }
}

.footer-widget .list li {
  width: 100%;
  padding: 0.8rem 0;
  line-height: 1.8rem;
}

.footer-widget .list li a {
  font-family: gellix;
  font-size: var(--font-2rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 1199px) {
  .footer-widget .list li a {
    font-size: var(--font-1_4rem);
  }
}

.footer-widget .list li a:hover {
  color: #fff0ce;
}

.footer-widget p {
  font-family: gellix;
  color: var(--white);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .footer-widget p {
    font-size: var(--font-1_4rem);
  }
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 1.2rem;
}

@media (max-width: 991px) {
  .footer-social {
    justify-content: flex-start;
  }
}

.footer-social a {
  margin-right: 4rem;
  color: var(--white);
}

.footer-social a:hover {
  color: #fff0ce;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-copyright {
  background-color: #2b2727;
  padding: 15px 0;
  text-align: center;
}

.footer-copyright p {
  font-family: gellix;
  color: var(--white);
}

.inside-banner__container {
  padding-top: 10.4rem;
}

@media (max-width: 991px) {
  .inside-banner__container {
    padding-top: 6rem;
  }
}

.inside-banner .text-content {
  text-align: center;
}

@media (max-width: 600px) {
  .inside-banner .text-content br {
    display: none;
  }
}

.inside-banner .title {
  font-size: var(--font-8rem);
  line-height: 1;
}

.inside-banner .description {
  font-size: var(--font-2rem);
  margin-top: var(--mt-2_4rem);
  margin-bottom: var(--mb-1_6rem);
}

.inside-banner img {
  width: 100%;
  height: auto;
  margin-top: -20px;
}

@media (max-width: 1199px) {
  .inside-banner img {
    margin-top: 4rem;
  }
}

/*  */

.about-video .text-content {
  text-align: center;
  padding: 0 3rem;
  /* margin-bottom: 5.6rem; */
}

@media (max-width: 768px) {
  .about-video .text-content {
    padding: 0;
  }
}

.about-video .title {
  font-size: var(--font-6rem);
  margin-bottom: 4.8rem;
}

@media (max-width: 768px) {
  .about-video .title {
    margin-bottom: 3.6rem;
  }
}

.about-video p {
  font-size: var(--font-2rem);
  margin-bottom: 2rem;
}

@media (max-width: 1199px) {
  .about-video p {
    font-size: var(--font-1_6rem);
  }
}

.about-video .video-content {
  max-width: 960px;
  height: auto;
  margin: auto;
}

.about-video .video-content .video {
  position: relative;
  width: 100%;
}

.about-video .video-content .video:before {
  content: "";
  display: block;
  padding-top: var(--bs-aspect-ratio);
}

.about-video .video-content .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*  */
.our-story {
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .our-story {
    padding-bottom: 2rem;
  }
}

.our-story .card {
  margin-bottom: 6rem;
}

@media (max-width: 991px) {
  .our-story .card {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .our-story .card {
    margin-bottom: 0;
  }
}

.our-story .card__header {
  margin-bottom: var(--mb-1_6rem);
}

.our-story .card__header img {
  width: 100%;
  height: auto;
}

.our-story .card__body {
  padding: 0 2.4rem;
}

@media (max-width: 991px) {
  .our-story .card__body {
    padding: 0;
  }
}

.our-story .card__body .date {
  display: block;
  font-family: gellix;
  font-size: var(--font-1_4rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--new-primary-color);
  margin-bottom: var(--mb-1_6rem);
}

.our-story .card__body .title {
  font-size: var(--font-3_2rem);
  line-height: 1.1;
  color: var(--heading-color);
  margin-bottom: var(--mb-1_6rem);
}

@media (max-width: 768px) {
  .our-story .card__body .title {
    font-size: var(--font-2_8rem);
  }
}

.our-story .card__body p {
  font-size: var(--font-2rem);
}

/*  */
.our-investors__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

@media (max-width: 991px) {
  .our-investors__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}

.our-investors__inner .text-content {
  padding-right: 7rem;
}

@media (max-width: 991px) {
  .our-investors__inner .text-content {
    padding-right: 0;
  }
}

.our-investors__inner .section-title .title {
  margin-bottom: 4rem;
}


@media (max-width: 991px) {
  .our-investors__inner .section-title .title {
    margin-bottom: 2.4rem;
  }
}

.our-investors__inner .section-title p {
  font-size: var(--font-2rem);
}

.our-investors__inner .list-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .our-investors__inner .list-content {
    margin-top: 1rem;
  }
}

.our-investors__inner .list-content .img-box {
  min-width: 200px;
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .our-investors__inner .list-content .img-box {
    min-width: unset;
    flex: 1 1 30%;
  }
}

.our-investors__inner .list-content .img-box img {
  max-width: 150px;
  width: auto;
  height: auto;
}

@media (max-width: 991px) {
  .our-investors__inner .list-content .img-box img {
    max-width: 100px;
    max-height: 45px;
  }
}

@media (max-width: 600px) {
  .our-investors__inner .list-content .img-box img {
    max-height: 40px;
  }
}

@media (max-width: 480px) {
  .our-investors__inner .list-content .img-box img {
    max-height: 30px;
  }
}


/*  */
.we-work .section-title {
  margin-bottom: 4.8rem;
}

.we-work__container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 30px;
}

@media (max-width: 991px) {
  .we-work__container {
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 30px;
  }
}

@media (max-width: 768px) {
  .we-work__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .we-work__container {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}

@media (max-width: 480px) {
  .we-work__container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.we-work__container .img-content {
  position: relative;
  margin-bottom: var(--mb-2_4rem);
}

@media (max-width: 768px) {
  .we-work__container .img-content {
    margin-bottom: var(--mb-1_6rem);
  }
}

.we-work__container .img-content {
  position: relative;
}

.we-work__container .img-content .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: gellix;
  font-size: var(--font-1_2rem);
  font-weight: 700;
  line-height: 0;
  padding: 1.5rem 1.6rem;
  background-color: var(--bg-theme-light);
  border-radius: 0 10px 0 0;
}

.we-work__container .img-content img {
  width: 100%;
  height: auto;
}

.we-work__container .title {
  font-size: var(--font-1_6rem);
  text-transform: uppercase;
}

/*  */
.text-banner {
  padding: 5.6rem 0;
}

@media (max-width: 768px) {
  .text-banner {
    padding: 3rem 0;
  }
}

.text-banner .text-banner__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  grid-column-gap: 25px;
}

@media (max-width: 768px) {
  .text-banner .text-banner__inner {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
}

.text-banner p {
  font-family: gellix;
  font-size: var(--font-2_4rem);
}

/*  */
.quick-business__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  margin-top: 6.4rem;
}

@media (max-width: 991px) {
  .quick-business__inner {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 20px;
    margin-top: 4.4rem;
  }
}

@media (max-width: 520px) {
  .quick-business .section-title br {
    display: none;
  }
}

.quick-business__content {
  background-color: var(--bg-theme-light);
  padding: 4rem;
  text-align: center;
}

.quick-business__content img {
  max-width: 100%;
  height: auto;
  margin: auto;
}

.quick-business__content .title {
  font-size: var(--font-3_2rem);
  margin-top: var(--mt-2_4rem);
  margin-bottom: var(--mb-1_6rem);
}

.quick-business__content p {
  font-size: var(--font-2rem);
  margin-top: var(--mt-1_6rem);
}

/*  */
.banner-premier .banner-premier__inner {
  padding: 5.2rem 3rem;
  border: 5px solid ##18620d; /*#ffd9b1;*/
  border-bottom-right-radius: 9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 7.8rem;
}

@media (max-width: 768px) {
  .banner-premier .banner-premier__inner {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2rem;
  }
}

.banner-premier__inner .img-content {
  min-width: 148px;
}

@media (max-width: 768px) {
  .banner-premier__inner .img-content {
    min-width: 80px;
    max-width: 80px;
  }
  .banner-premier__inner .img-content img {
    width: 100%;
    height: auto;
  }
}

.banner-premier__inner .text-content .title {
  font-size: var(--font-3_6rem);
  margin-bottom: var(--mb-1_6rem);
}

@media (max-width: 991px) {
  .banner-premier__inner .text-content .title {
    font-size: var(--font-3_2rem);
  }
}

@media (max-width: 768px) {
  .banner-premier__inner .text-content .title {
    font-size: var(--font-2_8rem);
  }
}

@media (max-width: 600px) {
  .banner-premier__inner .text-content .title {
    font-size: var(--font-2_4rem);
  }
}

.banner-premier__inner .text-content p {
  font-size: var(--font-2rem);
}

/*  */
.services-steps__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  grid-column-gap: 8rem;
  align-items: center;
}

.services-steps__inner .img-content img {
  width: 100%;
  height: auto;
  display: none;
}

.services-steps__inner .img-content.img-content-radius {
  height: 100%;
}

@media (max-width: 768px) {
  .services-steps__inner .img-content.img-content-radius {
    height: auto;
  }
}

.services-steps__inner .img-content.img-content-radius img {
  border-top-left-radius: 90%;
  border-top-right-radius: 90%;
  padding-right: 2rem;
  height: 100%;
  max-height: 580px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1370px) {
  .services-steps__inner .img-content.img-content-radius img {
    max-height: 500px;
  }
}

@media (max-width: 1199px) {
  .services-steps__inner .img-content.img-content-radius img {
    padding-right: 0;
    max-height: 430px;
  }
}

@media (max-width: 768px) {
  .services-steps__inner .img-content.img-content-radius img {
    height: auto;
    max-height: unset;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
  }
}

.services-steps__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
}

@media (max-width: 991px) {
  .services-steps__inner {
    grid-template-columns: 1.8fr 2fr;
    grid-column-gap: 4rem;
  }
}

@media (max-width: 768px) {
  .services-steps__inner {
    grid-template-columns: 1fr;
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }
}

.services-steps__inner .text-content {
  padding-left: 6.6rem;
  padding-right: 1.6rem;
}

@media (max-width: 1199px) {
  .services-steps__inner .text-content {
    padding-left: 4.6rem;
  }
}

@media (max-width: 991px) {
  .services-steps__inner .text-content {
    padding-left: 0;
  }
}

.services-steps__inner .step_list {
  position: relative;
}

.services-steps__inner .step_list:not(:last-child) {
  margin-bottom: 5rem;
}

.services-steps__inner .step_list img {
  position: absolute;
  width: 55px;
  height: 55px;
  left: 0;
  top: 0;
}

.services-steps__inner .step_list .step_list-content {
  padding-left: 8.5rem;
}

.services-steps__inner .step_list .title {
  font-size: var(--font-3_2rem);
  margin-bottom: var(--mb-2_4rem);
}

@media (max-width: 991px) {
  .services-steps__inner .step_list .title {
    font-size: var(--font-2rem);
    margin-bottom: var(--mb-1_6rem);
  }
}

.services-steps__inner .step_list p {
  font-size: var(--font-2rem);
}

@media (max-width: 1199px) {
  .services-steps__inner .step_list p {
    font-size: var(--font-1_6rem);
  }
}

/* */
.business-checking__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 3rem;
}

@media (max-width: 991px) {
  .business-checking__inner {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 3rem;
  }
}

.business-checking__inner .text-content {
  padding-right: 7rem;
}

@media (max-width: 991px) {
  .business-checking__inner .text-content {
    padding-right: 0;
  }
}

.business-checking__inner .text-content .inner-title {
  margin-bottom: var(--mb-2_4rem);
}

@media (max-width: 991px) {
  .business-checking__inner .text-content .inner-title br {
    display: none;
  }
}

.business-checking__inner .text-content p {
  font-size: var(--font-2_4rem);
}

.business-checking__inner .list li {
  position: relative;
  padding-left: 8rem;
  min-height: 55px;
  display: flex;
  align-items: center;
}

.business-checking__inner .list li:not(:last-child) {
  margin-bottom: 4rem;
}

@media (max-width: 991px) {
  .business-checking__inner .list li:not(:last-child) {
    margin-bottom: 2.4rem;
  }
}

.business-checking__inner .list li img {
  position: absolute;
  width: 55px;
  height: 55px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.business-checking__inner .list li h3 {
  font-size: var(--font-3_2rem);
}

@media (max-width: 1199px) {
  .business-checking__inner .list li h3 {
    font-size: var(--font-2_8rem);
  }
}

@media (max-width: 991px) {
  .business-checking__inner .list li h3 {
    font-size: var(--font-2_4rem);
  }
}

.business-checking__inner .list-content {
  font-size: var(--font-2_4rem);
}

/*  */
.expert-support__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-column-gap: 5rem;
}

@media (max-width: 768px) {
  .expert-support__inner {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 3rem;
  }
}

.expert-support__inner .inner-title {
  margin-bottom: 4rem;
}

@media (max-width: 991px) {
  .expert-support__inner .inner-title {
    margin-bottom: 2.4rem;
  }
}

.expert-support__inner .text-content p {
  font-size: var(--font-2rem);
}

.expert-support__inner .text-content p:not(:last-child) {
  margin-bottom: var(--mb-2rem);
}

.expert-support__inner .img-content {
  margin-left: auto;
}

@media (max-width: 991px) {
  .expert-support__inner .img-content {
    order: -1;
  }
}

@media (max-width: 768px) {
  .expert-support__inner .img-content {
    margin-left: 0;
  }
}

.expert-support__inner .img-content img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 90% 90% 0 0;
}

/*  */
.faqs-main .inner-title {
  margin-bottom: 5.6rem;
}

@media (max-width: 991px) {
  .faqs-main .inner-title {
    margin-bottom: 4rem;
  }
}

.faqs-main .accordion-item:first-child {
  border-top: 1px solid var(--bg-theme-light);
}

.faqs-main .accordion-item {
  border-bottom: 1px solid var(--bg-theme-light);
}

.faqs-main .accordion-item .accordion-header {
  position: relative;
  font-size: var(--font-2_4rem);
  padding: 3rem 0;
  padding-right: 3rem;
  cursor: pointer;
}

.faqs-main .accordion-item .accordion-header::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url("../images/icons/plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.25s ease-in-out;
}

.faqs-main .accordion-item.active .accordion-header {
  color: var(--new-primary-color);
}

.faqs-main .accordion-item.active .accordion-header::before {
  transform: translateY(-50%) rotate(135deg);
}

.faqs-main .accordion-item .accordion-body__content {
  padding: 3rem 0;
}

@media (max-width: 991px) {
  .faqs-main .accordion-item .accordion-body__content {
    padding-top: 0;
  }
}

.faqs-main .accordion-item .accordion-body {
  display: none;
}

.faqs-main .accordion-item .accordion-body ol,
.faqs-main .accordion-item .accordion-body p,
.faqs-main .accordion-item .accordion-body ul {
  font-size: var(--font-2rem);
  line-height: 1.4;
}

.faqs-main .accordion-item .accordion-body a {
  color: var(--new-primary-color);
  font-weight: 600;
}

/*  */

.other-products__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .other-products__container {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 3rem;
  }
}

.other-products__content {
  padding: 4rem;
  background-color: var(--bg-theme-light);
}

@media (max-width: 991px) {
  .other-products__content {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .other-products__content {
    padding: 3rem 2rem;
  }
}

.other-products__content:first-child {
  border-bottom-right-radius: 30%;
}

.other-products__content:last-child {
  background-color: #18620d;/*#ffd9b1;*/
  border-top-right-radius: 30%;
}

@media (max-width: 991px) {
  .other-products__content:first-child {
    border-bottom-right-radius: 10rem;;
  }
  .other-products__content:last-child {
    border-top-right-radius: 10rem;
  }
}

.other-products__content img {
  width: 55px;
  height: auto;
  margin-bottom: var(--mb-2_4rem);
}

.other-products__content .title {
  font-size: var(--font-4rem);
  min-height: 80px;
  margin-bottom: var(--mb-1_6rem);
}

@media (max-width: 1199px) {
  .other-products__content .title {
    font-size: var(--font-3rem);
  }
}

@media (max-width: 991px) {
  .other-products__content .title {
    min-height: auto;
  }
}

.other-products__content p {
  font-size: var(--font-2_4rem);
  margin-bottom: 4rem;
}

/*  */
.related-content {
  background-color: var(--heading-color);
}

.related-content .section-title {
  margin-bottom: 6.4rem;
}

@media (max-width: 768px) {
  .related-content .section-title {
    margin-bottom: 4rem;
  }
}

.related-content .section-title .title,
.related-content .section-title p {
  color: var(--white);
}

.related-content__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 3rem;
}

@media (max-width: 991px) {
  .related-content__container {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 2rem;
  }
}

.related-content__container .img-content {
  min-height: 195px;
  background-color: #18620d; /*#ffd9b1;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-content__container .img-content img {
  width: 115px;
  height: auto;
}

.related-content__container .text-content {
  padding: 2.4rem 2.4rem 2.4rem;
  background-color: #ffffff;
}

.related-content__container .text-content span {
  display: block;
  font-family: gellix;
  font-size: var(--font-1_4rem);
  font-weight: 600;
  margin-bottom: var(--mb-2_4rem);
}

.related-content__container .text-content .title {
  font-size: var(--font-3_2rem);
  line-height: 1.1;
  margin-bottom: var(--mb-1_6rem);
}

@media (max-width: 768px) {
  .related-content__container .text-content .title {
    font-size: var(--font-2_8rem);
  }
}

.related-content__container .text-content p {
  font-size: var(--font-2rem);
}

/*  */
.what-loan__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  margin-top: 5.6rem;
}

@media (max-width: 991px) {
  .what-loan__container {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 3.2rem;
    grid-row-gap: 3rem;
  }
}

@media (max-width: 768px) {
  .what-loan br {
    display: none;
  }
}

.what-loan__container .what-loan__content {
  text-align: center;
  padding: 0 28px;
}

@media (max-width: 1199px) {
  .what-loan__container .what-loan__content {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .what-loan__container .what-loan__content {
    text-align: left;
  }
}

.what-loan__container .terms-content {
  text-align: left;
  padding-right: 5.6rem;
}

.what-loan__container .what-loan__content img {
  margin: auto;
}

@media (max-width: 991px) {
  .what-loan__container .what-loan__content img {
    margin: 0;
  }
}

.what-loan__container .terms-content img {
  margin: 0;
}

.what-loan__container .what-loan__content .title {
  font-size: var(--font-3_2rem);
  margin-top: var(--mt-2_4rem);
  margin-bottom: var(--mb-1_6rem);
}

@media (max-width: 1199px) {
  .what-loan__container .what-loan__content .title {
    font-size: var(--font-2_8rem);
  }
}

@media (max-width: 991px) {
  .what-loan__container .what-loan__content .title br {
    display: none;
  }
}

@media (max-width: 768px) {
  .what-loan__container .what-loan__content .title {
    margin-top: var(--mt-1_6rem);
    margin-bottom: 1.6rem;
  }
}

.what-loan__container .what-loan__content p {
  font-size: var(--font-2rem);
}

@media (max-width: 1199px) {
  .what-loan__container .what-loan__content p {
    font-size: var(--font-1_8rem);
  }
}

.Waitlist {
  margin-bottom: 5.6rem;
  scroll-margin-top: 50px;
}

.Waitlist__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 6rem;
}

@media (max-width: 991px) {
  .Waitlist__inner {
    display: block;;
  }
}

/* @media () */

.Waitlist__inner .text-content {
  max-width: 510px;
  width: 100%;
}

@media (max-width: 991px) {
  .Waitlist__inner .text-content {
    max-width: 100%;
    margin-bottom: 4rem;
  }
}

.Waitlist__inner .form-content {
  max-width: 590px;
  width: 100%;
  background-color: #f5f6fa;
}

@media (max-width: 991px) {
  .Waitlist__inner .form-content {
    max-width: 100%;
  }
}

.Waitlist__inner .inner-title {
  margin-bottom: 4.8rem
}

.Waitlist__inner .Waitlist_list {
  position: relative;
  margin-bottom: 4rem;
}

@media (max-width: 991px) {
  .Waitlist__inner .Waitlist_list {
    margin-bottom: 3rem;
  }
}

.Waitlist__inner .Waitlist_list img {
  position: absolute;
  left: 0;
  top: 0;
  width: 55px;
  height: 55px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .Waitlist__inner .Waitlist_list img {
    position: unset;
    margin-bottom: 1.6rem;
  }
}

.Waitlist__inner .Waitlist_list .title {
  font-size: var(--font-3_2rem);
}

@media (max-width: 1199px) {
  .Waitlist__inner .Waitlist_list .title {
    font-size: var(--font-2_8rem);
  }
}

.Waitlist__inner .Waitlist_list p {
  font-size: var(--font-2rem);
  margin-top: var(--mt-1_6rem);
}

.Waitlist__inner .Waitlist_list-content {
  padding-left: 7.9rem;
}

@media (max-width: 991px) {
  .Waitlist__inner .Waitlist_list-content {
    padding-left: 0;
  }
}

.Waitlist__inner .content-top {
  padding: 4rem;
  background-color: var(--new-primary-color);
}

.Waitlist__inner .content-top {
  padding: 4rem;
  background-color: var(--new-primary-color);
}

@media (max-width: 991px) {
  .Waitlist__inner .content-top {
    padding: 3rem;
  }
}

.Waitlist__inner .content-top .subtitle {
  font-size: var(--font-4rem);
  margin-bottom: var(--mb-1_6rem);
}

.Waitlist__inner .content-top p {
  font-size: var(--font-2rem);
  margin-bottom: var(--mb-1_6rem);
}

.Waitlist__inner .content-bottom {
  padding: 4rem 4rem 5.6rem;
}

@media (max-width: 991px) {
  .Waitlist__inner .content-bottom {
    padding: 3rem;
  }
}

.secondary-banner {
  height: 350px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--bg-theme-light);
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .secondary-banner {
    height: auto;
    min-height: 200px;
    padding-bottom: 1.6rem;
  }
}

.secondary-banner .title {
  font-size: var(--font-5_6rem);
}

@media (max-width: 991px) {
  .secondary-banner .title {
    font-size: var(--font-4_2rem);
  }
} 

.privacy-terms__container h2 {
  font-size: var(--font-2_4rem);
  margin: 4rem 0 2.4rem;
}

.privacy-terms__container h2:first-child {
  margin-top: 0;
}

.privacy-terms__container h3 {
  font-size: var(--font-1_8rem);
  margin: 4rem 0 2.4rem;
}

.privacy-terms__container p {
  margin-bottom: 1.6rem;
}

.privacy-terms__container ul {
  padding-left: 6rem;
  list-style: disc;
  margin-bottom: 2.6rem;
}

@media (max-width: 991px) {
  .privacy-terms__container ul {
    padding-left: 4rem;
  }
}

@media (max-width: 768px) {
  .privacy-terms__container ul {
    padding-left: 3rem;
  }
}

.privacy-terms__container ul li {
  list-style: disc;
}

.gfield_required {
  /* display: none !important; */
}

.get-started__container {
  padding: 4rem 6rem 6rem;
  background-color: #f3f3f3;
}

@media (max-width: 991px) {
  .get-started__container {
    padding: 3rem;
  }
}

.get-started__container .title {
  font-size: var(--font-3rem);
  line-height: 1.1;
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid #e6e6ed;
}

.Waitlist .gform_range-slider label,
.Waitlist .gform-field-label,
.get-started__container .gform_range-slider label,
.get-started__container .gform-field-label {
  width: 100%;
  font-family: gellix !important;
  display: block !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  margin-bottom: 1.4rem !important;
  line-height: 1.1 !important;
  color: var(--heading-color) !important;
}

.Waitlist div.gfield .ginput_container input:focus,
.Waitlist div.gfield .ginput_container select:focus,
.Waitlist fieldset.gfield .ginput_container input:focus,
.Waitlist fieldset.gfield .ginput_container select:focus,
.get-started__container div.gfield .ginput_container input:focus,
.get-started__container div.gfield .ginput_container select:focus,
.get-started__container fieldset.gfield .ginput_container input:focus,
.get-started__container fieldset.gfield .ginput_container select:focus {
  outline: none !important;
  box-shadow: none !important;
}

.Waitlist div.gfield .ginput_container input::placeholder,
.Waitlist fieldset.gfield .ginput_container input::placeholder,
.get-started__container div.gfield .ginput_container input::placeholder,
.get-started__container fieldset.gfield .ginput_container input::placeholder {
  color: #82828a !important;
}

.Waitlist div.gfield .ginput_container input,
.Waitlist fieldset.gfield .ginput_container input,
.Waitlist div.gfield .ginput_container select,
.Waitlist fieldset.gfield .ginput_container select,
.get-started__container div.gfield .ginput_container input,
.get-started__container fieldset.gfield .ginput_container input,
.get-started__container div.gfield .ginput_container select,
.get-started__container fieldset.gfield .ginput_container select {
  font-family: gellix !important;
  width: 100%;
  min-height: 50px;
  font-size: 1.5rem !important;
  background-color: var(--white);
  color: var(--heading-color) !important;
  border: 0 !important;
  padding: 6px 25px;
}

@media (max-width: 768px) {
  .Waitlist div.gfield .ginput_container input,
  .Waitlist fieldset.gfield .ginput_container input,
  .Waitlist div.gfield .ginput_container select,
  .Waitlist fieldset.gfield .ginput_container select,
  .get-started__container div.gfield .ginput_container input,
  .get-started__container fieldset.gfield .ginput_container input,
  .get-started__container div.gfield .ginput_container select,
  .get-started__container fieldset.gfield .ginput_container select {
    min-height: 50px;
  }
}

.Waitlist .gfield--type-checkbox input:focus,
.get-started__container .gfield--type-checkbox input:focus {
  box-shadow: none !important; 
  outline: none !important;
}

.Waitlist .gfield--type-checkbox .gfield-choice-input,
.get-started__container .gfield--type-checkbox .gfield-choice-input {
  width: 18px !important;
  height: 18px !important;
  min-height: 14px !important;
  padding: 0 !important;
}

.Waitlist .gform_footer .gform_button:focus,
.get-started__container .gform_footer .gform_button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.Waitlist .gform_footer .gform_button,
.get-started__container .gform_footer .gform_button {
  display: inline-block !important;
  font-family: gellix !important;
  background-color: var(--new-primary-color) !important;
  color: var(--white) !important;
  font-size: var(--font-1_6rem) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  padding: 1rem 2.8rem !important;
  white-space: nowrap !important;
  border: 2px solid var(--new-primary-color) !important;
  border-radius: 5px !important;
  text-transform: capitalize !important;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.Waitlist .gform_footer .gform_button:hover,
.get-started__container .gform_footer .gform_button:hover {
  background-color: var(--primary-color-dark) !important;
  border-color: var(--primary-color-dark) !important;
  color: var(--white) !important;
}

.gform-theme--foundation .gform_fields {
  column-gap: 20px !important;
}

.gform_range-slider {
  position: relative !important;
}

@media (max-width: 768px) {
  .Waitlist .gform-theme--foundation .gform_fields,
  .get-started__container .gform-theme--foundation .gform_fields {
    grid-template-columns: repeat(1, 1fr) !important;
    row-gap: 30px !important;
  }
  .gform-theme--foundation .gfield--width-half {
      grid-column: span 12 !important;
  }
  .gform-theme--foundation .gfield {
    grid-column: span 12 !important;
  }
}

.gform_validation_errors {
  display: none !important;
}

.gform-theme--framework .gfield_validation_message {
  font-family: gellix !important; 
}

body .gform_wrapper .noUi-target {
  margin-bottom: 0;
}

body .gform_wrapper .noUi-horizontal .noUi-handle {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  top: -7px !important;
  background-color: var(--primary-color-dark) !important;
  box-shadow: none !important;
}

body .gform_wrapper .noUi-target {
  height: 8px !important;
}

body .gform-theme--framework .gfield--type-nurslider .noUi-connect {
  background-color: var(--primary-color-dark) !important;
}

body .gform_wrapper .noUi-handle:before, 
body .gform_wrapper .noUi-handle:after {
  display: none !important;
}

.instruction.validation_message {
  display: none !important;
}

.gform_confirmation_message {
  font-size: var(--font-2_4rem);
}

.thank-you {
  height: calc(100vh - 333px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
}

@media (max-width: 1370px) {
  .thank-you {
    height: calc(100vh - 284px);
  }
}

@media (max-width: 1199px) {
  .thank-you {
    height: calc(100vh - 271px);
  }
}

@media (max-width: 768px) {
  .thank-you {
    height: calc(100vh - 400px);
  }
}

.thank-you .title {
  font-size: var(--font-3rem);
  line-height: 1.4;
}

@media (max-width: 575px) {
  .thank-you .title br {
    display: none;
  }
}

.gform-theme--foundation .ginput_address_city, .gform-theme--foundation .ginput_address_country, .gform-theme--foundation .ginput_address_state, .gform-theme--foundation .ginput_address_zip {
  inline-size: 100% !important; 
}