/*Buildbank 2.0 CSS3 style sheet*/

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Thin.ttf");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ThinItalic.ttf");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.ttf");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-LightItalic.ttf");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Italic.ttf");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-MediumItalic.ttf");
  font-weight: 400;
  font-style: italic;
}

:root {
  --primary-color: #1d3447;
  --primary-bg: #fff;
  --secondary-color: #fff;
  --secondary-bg: #001c88;
  --tertiary-color: #fff;
  --tertiary-bg: #0029b7;
  --substitute-color: #fff;
  --substitute-bg: #007af4;
  --accent-color: #1d3447;
  --accent-bg: #feca03;
  --alternate-color: #1d3447;
  --alternate-bg: #00cffd;
  --off-color: #1d3447;
  --off-bg: #f2f2f2;
  --hero-bg: linear-gradient(290deg,
      rgba(215, 239, 28, 0.61),
      rgba(42, 3, 2, 0.59) 65.97%,
      rgba(15, 0, 128, 0.63)),
    linear-gradient(130deg,
      #013478 12.61%,
      rgba(0, 72, 129, 0.76) 43.28%,
      #02acdd 81.51%,
      rgb(3, 225, 248));
  --primary-gradient: linear-gradient(#e4e4e4, #f2f2f2 38.66%, #fefefe 80.25%),
    linear-gradient(231deg,
      rgb(211, 216, 225) 1.68%,
      #f2f2f2 20.59%,
      #eee 44.54%,
      rgb(191, 203, 214) 94.54%);
  --primary-gradient-alt: radial-gradient(#f2f2f2 28.99%,
      rgb(191, 203, 214),
      #eee);
  --secondary-gradient: linear-gradient(282deg,
      rgba(0, 48, 180, 0.89),
      rgba(1, 16, 59, 0.59) 53.78%,
      rgba(0, 15, 60, 0.2) 97.9%),
    linear-gradient(219deg, #00cffd, #007af4 18.91%, #025f7f 60.92%);
  --tertiary-gradient: linear-gradient(130deg,
      #c704d9,
      rgba(35, 10, 175, 0.9) 24.37%,
      rgba(0, 206, 252, 0.69) 75.63%,
      rgba(11, 195, 248, 0)),
    linear-gradient(206deg, #0043fc, rgb(120, 151, 250) 43.28%, #0029b7 98.32%);
  --tertiary-gradient-alt: radial-gradient(#e3faff, #333 57.14%);
  --substitute-gradient: linear-gradient(130deg,
      rgba(121, 9, 190, 0.92),
      rgba(35, 10, 175, 0.9) 24.37%,
      rgba(11, 194, 247, 0.21) 82.77%,
      rgba(11, 195, 248, 0)),
    linear-gradient(303deg,
      #007af4,
      #09e0f0 29.83%,
      rgb(4, 212, 242) 60.5%,
      #007af4 98.32%);
  --substitute-gradient-alt: radial-gradient(#7909be,
      #230aaf 52.1%,
      rgb(11, 194, 247) 98.74%);
  --accent-gradient: linear-gradient(101deg,
      rgba(255, 255, 255, 0.88) 12.18%,
      rgba(239, 216, 20, 0.73) 41.18%,
      rgba(254, 197, 10, 0.56) 69.33%),
    linear-gradient(143deg, #ffde00, #fba000);
  --accent-gradient-alt: radial-gradient(#ffffff 36.55%,
      rgb(239, 216, 20) 41.18%,
      rgb(255, 255, 255) 58.82%,
      #fec50a 69.33%);
  --gold-gradient: radial-gradient(#ffde00, #dda900 88.24%);
  --trans-bg: rgba(0, 0, 0, 0.35);
  --glass-bg: rgba(255, 255, 234, 0.25);
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 600;
  --btn-font-size: 12px;
  --sm-font: 14px;
  --reg-font: 15px;
  --md-font: 17px;
  --lg-font: 24px;
  --x-lg-font: 28px;
  --radius: 1.65rem;
  --full-radius: 20rem;
  --font-family: "Plus Jakarta Sans";
  --nav-link-height: 1.2;
  --box-shadow: 0px 0px 30px 4px rgba(0, 0, 0, 0.05);
  --bring-forward: 999;
  --send-backward: 0;
  --bring-to-top: 9999;
}

* {
  margin: 0;
  padding: 0;
  position: relative;
}

html,
body {
  font-family: var(--font-family);
  background: var(--primary-bg);
  color: var(--primary-color);
  font-weight: var(--font-weight-normal);
  font-size: var(--reg-font);
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
  font-style: normal;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.transition,
.transition>* {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

.text-shadow,
*.text-shadow {
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);
}

.fs-italic {
  font-style: italic;
}

.blur,
div.blur {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

nav {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  color: var(--tertiary-color);
}

nav a {
  line-height: var(--nav-link-height);
  padding: 0px;
}

nav .menu_buildbank {
  padding: 0px 20px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
}

nav .menu_buildbank a {
  height: 3.8rem;
  justify-content: center;
  align-items: center;
  display: flex;
  font-weight: var(--font-weight-bold);
}

nav .menu_buildbank .menu_buildbank_dropdown {
  display: none;
  flex: 0 0 auto;
  position: absolute;
  justify-content: flex-start;
  align-items: center;
  font-size: var(--sm-font);
}

nav .menu_buildbank .menu_buildbank_dropdown a {
  height: auto;
  line-height: 2;
  font-size: var(--sm-font);
  font-weight: var(--font-weight-normal);
}

nav .menu_buildbank .menu_buildbank_dropdown a .menu_tip {
  display: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  margin-left: -4rem;
}

nav .menu_buildbank .menu_buildbank_dropdown a:hover>.menu_tip,
nav .menu_buildbank .menu_buildbank_dropdown a:hover>.menu_main_tip {
  display: flex;
  margin-left: 1.2rem;
  -webkit-animation: scale-up-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: scale-up-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

nav .menu_buildbank .menu_buildbank_container {
  display: flex;
  flex: 0 0 auto;
  position: relative;
  justify-content: flex-start;
  align-items: center;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  flex-direction: column;
  box-shadow: var(--box-shadow);
  width: 100%;
  /* height: 0; */
}

nav .menu_buildbank .menu_buildbank_dropdown.regular {
  width: 300px;
  padding: 2.5rem 0;
  left: 0%;
  right: auto;
}

nav .menu_buildbank .menu_buildbank_dropdown.megaMenu {
  width: 80vw;
  padding: 2.5rem 0;
  left: 10%;
  right: auto;
  position: fixed;
}

nav .menu_buildbank .menu_buildbank_dropdown.megaMenu .menu_buildbank_container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

nav .menu_buildbank:hover .menu_buildbank_dropdown {
  display: flex;
  margin-top: 2.5rem;
}

nav .menu_buildbank:hover .menu_buildbank_container {
  height: auto;
}

nav .menu_buildbank .menu_buildbank_dropdown .display-7,
nav .menu_buildbank .menu_buildbank_dropdown .display-7 .bi {
  color: var(--secondary-bg);
  font-weight: var(--font-weight-bold);
}

.reg_buildbank_Menu {
  display: flex;
  padding: 0 1.2rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.reg_buildbank_Menu a {
  font-weight: var(--font-weight-normal);
  height: auto;
  line-height: 1;
}

.reg_buildbank_Menu:hover {
  background: var(--accent-color);
}

/* Theme Color */

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

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

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

.secondary-color {
  color: var(--secondary-bg);
}

.secondary-gradient-color {
  background: var(--secondary-gradient);
  background-color: var(--secondary-bg);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  display: inline-block;
}

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

.tertiary-color {
  color: var(--tertiary-bg);
}

.tertiary-gradient-color {
  background: var(--tertiary-gradient);
  background-color: var(--tertiary-bg);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  display: inline-block;
}

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

.substitute-color {
  color: var(--substitute-bg);
}

.substitute-gradient-color {
  background: var(--substitute-gradient);
  background-color: var(--substitute-bg);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  display: inline-block;
}

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

.accent-color {
  color: var(--accent-bg);
}

.accent-gradient-color {
  background: var(--accent-gradient);
  background-color: var(--accent-bg);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  display: inline-block;
}

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

.alternate-color {
  color: var(--alternate-bg);
}

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

.off-color {
  color: var(--secondary-bg);
}

.secondary-gradient {
  background: var(--secondary-gradient);
  color: var(--secondary-color);
}

.display-3,
.display-4,
.display-6 {
  line-height: 1.2;
}

.display-7 {
  font-size: calc(0.5rem + 0.7vw);
}

.sm-font {
  font-size: var(--sm-font);
}

.reg-font {
  font-size: var(--reg-font);
  line-height: 1.45;
}

.md-font {
  font-size: var(--md-font);
  line-height: 1.35;
}

.lg-font {
  font-size: var(--lg-font);
  line-height: 1.35;
}

.x-lg-font {
  font-size: var(--x-lg-font);
  line-height: 1.325;
}

.bring-forward {
  z-index: var(--bring-forward);
}

.bring-to-top {
  z-index: var(--bring-to-top);
}

.send-backward {
  z-index: var(--send-backward);
}

/* header */

header {
  z-index: 9999;
  display: flex;
  width: 100%;
  position: fixed;
}

header img.brandLogo,
footer img.brandLogo {
  filter: grayscale(1) brightness(100);
  -webkit-filter: grayscale(1) brightness(100);
  margin: 1.5rem 0;
  margin-top: 1.25rem;
  width: 120px;
  max-width: none;
  display: flex;
  flex: 0 0 auto;
}

header.blurHead img.brandLogo {
  filter: none;
  -webkit-filter: none;
}

header.primary,
header.primary *,
header.primary img.brandLogo {
  color: var(--primary-color);
  filter: none;
  -webkit-filter: none;
}

/* hero section */

.hero,
section.hero {
  color: var(--secondary-color);
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-2,
section.hero-2 {
  height: 50vh !important;
}

section.heroBg {
  background: var(--hero-bg);
  background-blend-mode: overlay;
}

/* 
.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 180%;
  height: 160%;
  background: var(--secondary-gradient);
  z-index: 0;
  -webkit-animation: color-change-2x 12s ease-in infinite;
  animation: color-change-2x 12 ease-in infinite; 
} */

/* .hero::after {
  position: absolute;
  top: -70%;
  left: -53%;
  content: "";
  width: 110%;
  height: 130%;
  z-index: 0;
  background: radial-gradient(#04f2fa 28.99%, #010927 45.8%);
  background: radial-gradient(#00f 28.99%, #010927 45.8%); 
  border-radius: 130rem;
  transform: rotate(59deg);
} */

.primary-gradient {
  color: var(--primary-color);
  background: var(--primary-gradient);
  background-blend-mode: darken;
}

.container,
.hero .container,
section.hero .container,
.blurredBg .container {
  z-index: 5;
  width: 80%;
}

/*ui-elements*/
.buildBtn {
  flex: 0 0 auto;
  margin: 0 auto;
  display: flex;
  width: auto;
  justify-self: flex-end;
  align-self: flex-end;
  height: 3rem;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 2rem;
  border-radius: var(--full-radius);
  font-size: var(--sm-font);
  font-weight: var(--font-weight-bold);
}

.ctaBtn {
  border-radius: var(--full-radius);
  height: 3.5rem;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  font-weight: var(--font-weight-bold);
}

.fw-light {
  font-weight: 200 !important;
}

.border-sided,
div.border-sided {
  border-right: 1px solid;
  border-left: 1px solid;
  border-color: rgba(0, 0, 0, 0.05);
}

.border-radius-top,
.border-radius-bottom,
.border-radius-left,
.border-radius-right {
  overflow: hidden;
}

.border-radius-top {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.border-radius-bottom {
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.border-radius-left {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

.border-radius-right {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.hero-product-showcase,
div.hero-product-showcase {
  position: absolute;
  right: 0;
  bottom: 1.2rem;
  padding: 1.2rem;
  width: 500px;
  z-index: 1;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.125);
  border-radius: var(--radius);
}

.buildbank_product_box {
  width: 50%;
  padding: 0.8rem;
}

.buildbank_product_box .product_box {
  border-radius: var(--radius);
  height: 5rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  flex: 0 0 auto;
  padding: 0 1.2rem;
}

.buildbank_product_box .product_box i.bi {
  font-size: var(--md-font);
  color: var(--secondary-bg);
}

.dropdown-img-container,
div.dropdown-img-container {
  height: 9rem;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.img-dropdown-menu,
img.img-dropdown-menu {
  display: flex;
  flex: 0 0 auto;
  margin: 0 auto;
  width: 100%;
}

.buildbank_card {
  min-height: 40vh;
}

.hero-features,
div.hero-features {
  position: relative;
  right: 0;
  bottom: 0;
  padding: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(290deg, rgba(0, 0, 0, 0.125), rgba(0, 0, 0, 0.5));
  margin-top: -9.8rem;
}

.sm-icon,
img.sm-icon {
  width: 2rem;
  height: auto;
  border-radius: 2rem;
  display: flex;
  margin: 0 auto;
}

.radius,
div.radius {
  border-radius: var(--radius);
}

.full-radius,
div.full-radius {
  border-radius: var(--full-radius);
}

.blurHead,
header.blurHead {
  background: rgba(255, 255, 246, 0.725);
  box-shadow: 0px 3px 32px 0px rgba(0, 0, 0, 0.125);
  color: var(--primary-color);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

header.blurHead nav {
  color: var(--primary-color);
}

.trans-bg,
div.trans-bg,
section.trans-bg {
  background: var(--trans-bg);
  color: var(--primary-bg);
}

.trans-blur-bg,
div.trans-blur-bg,
section.trans-blur-bg {
  background: var(--trans-bg);
  color: var(--primary-bg);
}

.glass-blur-bg,
div.glass-blur-bg,
section.glass-blur-bg {
  background: var(--glass-bg);
  color: var(--primary-color);
}

.primary-gradient-blur-bg {
  color: var(--primary-color);
  background: var(--primary-gradient);
  background-blend-mode: darken;
}

.secondary-gradient-blur-bg {
  color: var(--secondary-color);
  background: var(--secondary-gradient);
  overflow: hidden;
}

.tertiary-gradient-blur-bg {
  color: var(--tertiary-color);
  background: var(--tertiary-gradient);
  overflow: hidden;
}

.substitute-gradient-blur-bg {
  color: var(--substitute-color);
  background: var(--substitute-gradient);
}

.accent-gradient-blur-bg {
  color: var(--accent-color);
  background: var(--accent-gradient);
}

.primary-gradient-blur-bg>*,
.secondary-gradient-blur-bg>*,
.substitute-gradient-blur-bg>*,
.accent-gradient-blur-bg>*,
.primary-gradient-blur-bg>*>*,
.secondary-gradient-blur-bg>*>*,
.substitute-gradient-blur-bg>*>*,
.tertiary-gradient-blur-bg>*>*,
.accent-gradient-blur-bg>*>* {
  z-index: 3;
}

.creditCard,
div.creditCard {
  width: 410px;
  height: 250px;
  display: flex;
  flex: 0 0 auto;
  justify-content: space-around;
  align-content: space-around;
  flex-direction: column;
  border-radius: var(--radius);
  padding: 0.95rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cc-chip,
span.cc-chip,
.creditCard span.cc-chip,
div.creditCard span.cc-chip {
  border-radius: var(--radius);
  width: 85px;
  height: 65px;
  background: var(--gold-gradient);
}

.buildViewCustom {
  border-radius: var(--radius);
  overflow: hidden;
  justify-content: center;
}

.viewH,
div.viewH,
span.viewH {
  height: 100vh;
  padding: 0;
}

.viewH_1_2,
div.viewH_1_2,
span.viewH_1_2 {
  height: calc(100vh / 1.25);
  padding: 0;
}

.viewH_2,
div.viewH_2,
span.viewH_2 {
  height: calc(100vh / 2);
  padding: 0;
}

.viewH_2_3,
div.viewH_2_3,
span.viewH_2_3 {
  height: calc(100vh / 2.25);
  padding: 0;
}

.viewH_3,
div.viewH_3,
span.viewH_3 {
  height: calc(100vh / 3);
  padding: 0;
}

.viewH img,
div.viewH img {
  height: 100%;
  display: flex;
  width: auto;
  margin: 0 auto;
}

.dynamic-build-1,
div.dynamic-build-1 {
  position: absolute;
  bottom: 0;
  top: auto;
  z-index: 5;
}

.dynamic-build-2,
div.dynamic-build-2 {
  position: absolute;
  bottom: auto;
  top: 0;
  z-index: 5;
}

.posLeft,
div.posLeft,
span.posLeft {
  left: 0;
}

.posRight,
div.posRight,
span.posRight {
  right: 0;
}

.base-ui-elem,
div.base-ui-elem,
span.base-ui-elem {
  z-index: 0;
}

.primary-gradient-blur-bg>.base-ui-elem,
.secondary-gradient-blur-bg>.base-ui-elem,
.accent-gradient-blur-bg>.base-ui-elem,
.substitute-gradient-blur-bg>.base-ui-elem {
  z-index: 2;
}

.top-left-to-bottom-right {
  -webkit-transform: translate3d(190px, 45px, 0px);
  transform: translate3d(190px, 45px, 0px);
}

.bottom-right-to-top-left {
  -webkit-transform: translate3d(-190px, -45px, 1px);
  transform: translate3d(-190px, -45px, 1px);
}

.accordion,
.accordion * {
  transition: all ease-in 0.5s;
  -webkit-transition: all ease-in 0.5s;
  -moz-transition: all ease-in 0.5s;
  -o-transition: all ease-in 0.5s;
  -ms-transition: all ease-in 0.5s;
}

.accordionHeader * {
  margin-bottom: 0;
}

.buildbank_note {
  border-top-left-radius: 0% !important;
}

/* btn hover effects */
a:hover {
  background: var(--primary-bg);
  color: var(--primary-color);
}

a.bBtn:hover {
  padding: var(--btn-font-size);
  border-radius: var(--radius);
}

.buildBtn:hover,
a.buildBtn:hover {
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.125);
}

a.p-0:hover {
  padding: 0px 17px !important;
}

.primary a:hover,
a.primary:hover,
header .nav a.primary:hover {
  background: var(--secondary-bg);
  color: var(--secondary-color);
}

.secondary a:hover,
a.secondary:hover,
.tertiary a:hover,
a.tertiary:hover,
.alternate a:hover,
a.alternate:hover,
.substitute a:hover,
a.substitute:hover,
header .nav a.accent:hover {
  background: var(--primary-bg);
  color: var(--primary-color);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.primary-gradient a:hover,
a.primary-gradient:hover {
  background: var(--secondary-bg);
  color: var(--secondary-color);
}

.secondary-gradient a:hover,
a.secondary-gradient:hover {
  background: var(--primary-bg);
  color: var(--primary-color);
}

nav a:hover,
.nav a:hover {
  box-shadow: none;
  background: none;
  color: inherit;
  font-weight: var(--font-weight-bold);
}

i.bi.cls-menu {
  position: absolute;
  right: 0;
  padding: 25px 32px;
  top: 0;
  font-weight: 800;
  z-index: 99999;
  cursor: pointer;
  margin-top: -65px;
  font-size: var(--x-lg-font);
}

div.menu-box {
  display: none;
}

div.menu-box .menu-dropdown {
  display: none;
  opacity: 0;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition-delay: 0.5s;
  padding: 40px;
}

.testimonialCard,
div.testimonialCard {
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  flex-wrap: wrap;
  border-top-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  overflow: hidden;
}

.carousel-indicators {
  margin-bottom: -3rem;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--secondary-bg);
}

.accordion-header.collapse {
  display: block;
}

.accordion-item .accordion-button.collapsed {
  display: flex;
}

.accordion-button::after {
  display: block;
}

.form-control {
  height: 60px;
  padding: 0px 15px;
}

textarea.form-control {
  padding: 15px;
}

.tawk-branding,
a.tawk-branding {
  display: none !important;
}

/*@media-quries*/

@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.125rem;
  }

  .display-4 {
    font-size: 3.125rem;
  }

  .display-6 {
    font-size: 2.125rem;
  }
}

@media only screen and (min-device-width: 821px) and (max-device-width: 1024px) and (orientation: landscape) {

  .container,
  .hero .container,
  section.hero .container,
  .blurredBg .container {
    width: 95%;
  }

  nav .menu_buildbank {
    padding: 0px 17px;
  }
}

@media (max-width: 820px) {
  :root {
    --btn-font-size: 10px;
    --sm-font: 14px;
    --reg-font: 14px;
    --md-font: 15px;
    --lg-font: 16px;
    --x-lg-font: 22px;
  }

  header nav {
    display: none;
  }

  .container,
  .hero .container,
  section.hero .container,
  .blurredBg .container {
    width: 95%;
  }

  .h5,
  h5 {
    font-size: var(--md-font);
  }

  .dynamic-build-1,
  div.dynamic-build-1,
  .dynamic-build-2,
  div.dynamic-build-2 {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
  }

  .p-5 {
    padding: 1rem !important;
  }

  .creditCard,
  div.creditCard {
    width: 300px;
    height: 180px;
  }

  .cc-chip,
  span.cc-chip,
  .creditCard span.cc-chip,
  div.creditCard span.cc-chip {
    width: 50px;
    height: 35px;
  }

  span.nav-lines {
    display: block;
    float: none;
    margin-bottom: 5px;
    background: var(--accent-bg);
    width: 20px;
    height: 2px;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
  }

  div.row.sec-bg span.nav-lines {
    background: #00ffb4;
  }

  header .primary span.nav-lines,
  header.sec-bg span.nav-lines {
    background: var(--tertiary-bg);
  }

  span.nav-lines:first-child {
    width: 25px;
  }

  span.nav-lines:last-child {
    width: 30px;
    margin-bottom: 0;
  }

  a.nav-lines-btn:hover span.nav-lines {
    width: 25px;
  }

  a.nav-lines-btn:hover span.nav-lines:first-child {
    width: 30px;
  }

  a.nav-lines-btn:hover span.nav-lines:last-child {
    width: 20px;
  }

  .primary span.nav-lines,
  header.primary span.nav-lines {
    background: var(--off-color);
  }

  .nav-lines-txt {
    float: left;
  }

  .nav-lines-ico {
    float: right;
  }

  .nav-lines-btn {
    float: right;
  }

  .mb-trans-blur-bg,
  div.mb-trans-blur-bg,
  section.mb-trans-blur-bg {
    background: var(--trans-bg);
    color: var(--primary-bg);
  }

  header .container {
    padding: 0 1rem;
  }

  .blurHead,
  header.blurHead {
    padding-bottom: 0;
  }

  .blurHead span.nav-lines,
  header.blurHead span.nav-lines {
    background: var(--secondary-bg);
  }

  header .container a img {
    width: 100px;
  }

  div.menu-box {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    background: var(--primary-bg);
    height: 100%;
    z-index: 9999;
    padding: 40px 0px;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    display: block;
  }

  div.menu-box.shw-menu {
    right: 0;
  }

  div.menu-box ul {
    width: 100%;
    padding: 0px;
    float: left;
  }

  div.menu-box li a {
    font-weight: 500;
    line-height: 2rem;
  }

  div.menu-box ul li a {
    width: 100%;
    display: block;
    float: left;
    line-height: 1.2rem;
    font-weight: 500;
    padding: 0px 20px;
  }

  div.menu-box ul li a i.bi {
    float: right;
    font-size: 20px;
    line-height: 2;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }

  .hero,
  section.hero,
  .viewH,
  div.viewH,
  span.viewH {
    height: 100vh;
  }

  section.hero h1.display-4.mb-5 {
    margin-bottom: 1rem !important;
  }

  h6,
  .h6 {
    font-size: 1.2rem;
  }

  .pe-5 {
    padding-right: 0rem !important;
  }

  .display-2 {
    font-size: calc(1.125rem + 1.5vw);
  }

  .display-7 {
    font-size: calc(0.75rem + 0.95vw);
  }

  .viewH img,
  div.viewH img.w-100 {
    height: auto;
  }

  .viewH.mb-viewH-auto,
  div.viewH.mb-viewH-auto {
    height: auto;
  }

  .d-none.d-md-flex,
  div.d-none.d-md-flex,
  span.d-none.d-md-flex,
  a.d-none.d-md-flex,
  nav.d-none.d-md-flex,
  section.d-none.d-md-flex {
    display: none !important;
  }
}

@media (max-width: 780px) {
  :root {
    --x-lg-font: 18px;
  }

  .container,
  .hero .container,
  section.hero .container,
  .blurredBg .container {
    width: 95%;
  }

  .col-12.col-md-4,
  .col-12.col-md-5,
  .col-12.col-md-6,
  .col-12.col-md-7,
  .col-12.col-md-8,
  .col-12.col-md-9 {
    width: 100%;
  }

  /*custom mobile justifications*/
  .mb-justify-content-center {
    justify-content: center !important;
  }

  .mb-justify-content-start {
    justify-content: flex-start !important;
  }

  .mb-align-items-start {
    align-items: start !important;
  }

  .mb-pos-absolute {
    position: absolute !important;
  }

  .mb-pos-relative {
    position: relative !important;
  }

  .mb-top-0 {
    top: 0 !important;
  }

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

  .mb-left-0 {
    left: 0 !important;
  }

  .mb-right-0 {
    right: 0 !important;
  }

  .mb-mt-5 {
    margin-top: 14.5rem;
  }

  .mb-p-1 {
    padding: 1rem;
  }

  .mb-p-2 {
    padding: 2rem;
  }

  .mb-p-3 {
    padding: 3rem;
  }

  .mb-p-4 {
    padding: 4rem;
  }

  .row,
  div.row {
    --bs-gutter-x: 0;
  }

  .mb-bring-forward {
    z-index: 3;
  }

  .viewH_2,
  div.viewH_2,
  span.viewH_2 {
    min-height: calc(60vh / 2);
    padding: 0;
    max-height: none;
    height: auto;
  }

  .viewH_1_2,
  div.viewH_1_2,
  span.viewH_1_2 {
    min-height: calc(40vh / 1.25);
    padding: 0;
    height: auto;
  }

  .buildbank_card {
    min-height: 25vh;
  }
}