:root {
  --vt-font: Roboto, "Helvetica Neue", sans-serif;
  --vt-font-colour: #3b3b3b;
  --vt-font-colour-alt: #646464;
  --vt-gold: #fddb50;
  --vt-gold-gradient: #ffdb74;
  --vt-gold-gradient-alt: #f2be3d;
  --vt-blue: #002add;
  --vt-blue-alt: #000098;
  --vt-link-colour: var(--vt-blue);
  --vt-orange: #f9bc26;
  --vt-section-background: rgba(94, 113, 234, 0.03);
}

html {
  scroll-padding-top: calc(4.5rem - 1px);
  scroll-behavior: smooth;
  height: 100%;
}

body {
  color: var(--vt-font-colour);
  font-family: var(--vt-font);
  height: 100%;
  /* overflow-x: hidden; */
}

section:not(.no-ov) {
  overflow-x: hidden;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1250px;
  }
}

@media (min-width: 1700px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1480px;
  }
}

a {
  color: var(--vt-link-colour);
  text-decoration: none;
}

a:hover:not(.disabled),
a:hover:not(:disabled),
a:hover:not([disabled]) {
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  /* filter: brightness(110%); */
}

.mute {
  opacity: 0.6;
}

.hide {
  display: none;
}

.show-mob {
  display: none;
}

@media (max-width: 550px) {
  .hide-mob {
    display: none!important;
  }
  .show-mob {
    display: inherit!important;
  }
}

.show-tab {
  display: none;
}

@media (max-width: 991px) {
  .hide-tab {
    display: none!important;
  }
  .show-tab {
    display: inherit!important;
  }
}

p {
  font-family: var(--vt-font);
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.7px;
  text-align: left;
  color: var(--vt-font-colour);
}

.text-gold,
.vt-primary,
a.text-gold,
a.vt-primary, {
  color: var(--vt-gold);
  -webkit-transition: color 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.nav-spacer {
  margin-top: 200px;
}

ul.vt-list {
  list-style: none;
  padding-left: 0px;
}

ul.vt-list li {
  margin-bottom: 8px;
  margin-left: 20px;
  position: relative;
}

ul.vt-list li::before {
  position: absolute;
  left: -20px;
  top: 5px;
  content: "\2022";
  color: var(--vt-blue);
  font-weight: bold;
  width: 20px;
  vertical-align: middle;
  font-size: 28px;
  line-height: 16px;
}


/* #nav-logo {
  display: inline;
} */
/* #nav-logo-mob {
  display: none;
} */
/* #nav-burger-closed {
  display: block;
} */
#nav-burger-open {
  /* display: none; */
  color: white!important;
}

#mainNav {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-top: 30px;
  padding-bottom: 30px;
}

#mainNav::before {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  filter: blur(0px);
  backdrop-filter: blur(0px) opacity(0);
  -webkit-backdrop-filter: blur(0px) opacity(0);
}

#mainNav.navbar-shrink {
  padding-top: 20px;
  padding-bottom: 20px;
  /* background: var(--vt-blue); */
  background: none;
  /* overflow: hidden; */
}

#mainNav.navbar-shrink::before {
  position: absolute;
  content: '';
  background: inherit;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: rgba(255,255,255,0.1);
  filter: blur(10px);
  backdrop-filter: blur(4px) opacity(1);
  -webkit-backdrop-filter: blur(4px) opacity(1);
}

#mainNav .navbar-collapse  {
  z-index: 1;
}

#mainNav .navbar-toggler {
  color: #000;
  border: none;
  z-index: 2;
}

#mainNav.navbar-dark .navbar-toggler,
#mainNav.navbar-dark.navbar-shrink .navbar-toggler {
  color: #fff;
}

#mainNav.navbar-shrink .navbar-toggler {
  color: #000;
}

#mainNav.navbar-dark .nav-link.vt-primary,
#mainNav.navbar-dark .nav-link.vt-primary:hover,
#mainNav.navbar-dark.navbar-shrink .nav-link.vt-primary,
#mainNav.navbar-dark.navbar-shrink .nav-link.vt-primary:hover {
  color: var(--vt-gold);
}

#mainNav .nav-link.vt-primary,
#mainNav .nav-link.vt-primary:hover,
#mainNav.navbar-shrink .nav-link.vt-primary,
#mainNav.navbar-shrink .nav-link.vt-primary:hover {
  color: var(--vt-blue);
}

#mainNav.navbar-shrink .vt-primary {
  color: var(--vt-gold);
}

#mainNav .navbar-toggler:focus {
  outline: none;
}

#mainNav .navbar-brand {
  color: #fff;
  font-weight: 700;
  padding: 0px;
  z-index: 2;
}

#mainNav.navbar-dark .navbar-brand,
#mainNav.navbar-dark.navbar-shrink .navbar-brand {
  color: #000;
}

#mainNav.navbar-shrink .navbar-brand {
  color: #fff;
}


#mainNav .navbar-brand > img {
  height: 24px;
}

@media (min-width: 993px) {
  #mainNav .navbar-brand > img {
    height: 32px;
  }
}

#mainNav .navbar-nav .nav-item:hover {
  color: fade(#fff, 80%);
  outline: none;
  background-color: transparent;
}

#mainNav .navbar-nav .nav-item:active,
#mainNav .navbar-nav .nav-item:focus {
  outline: none;
  background-color: transparent;
}

#mainNav .nav-link {
  color: #000;
}

#mainNav.navbar-dark .nav-link,
#mainNav.navbar-dark.navbar-shrink .nav-link {
  color: #fff;
}

#mainNav.navbar-shrink .nav-link{
  color: #000;
}

#mainNav .navbar-nav.ms-auto {
  width: 100%;
}

#mainNav .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--vt-blue);
}

#mainNav .nav-fh {
  width: 100%;
}

#mainNav .navbar-collapse.collapse.show .nav-link,
#mainNav .navbar-collapse.collapsing .nav-link {
  color: #fff;
  position: relative;
}

#mainNav .navbar-collapse.collapse.show .nav-link:hover::after,
#mainNav .navbar-collapse.collapsing .nav-link:hover::after {
  content: "";
  position: absolute;
  left: -8px;
  width: 2px;
  height: 26px;
  background: #ffffff;
  border-radius: 0px 4px 4px 0px;
}

#mainNav .navbar-collapse.collapse.show .nav-link.active::after,
#mainNav .navbar-collapse.collapsing .nav-link.active::after {
  content: "";
  position: absolute;
  left: -8px;
  width: 2px;
  height: 26px;
  background: var(--vt-gold);
  border-radius: 0px 4px 4px 0px;
}

#mainNav .navbar-collapse.collapse.show ul.dropdown-menu.show {
  background: none;
  border: none;
  padding-top: 0px;
  margin-top: 0px;
  padding-bottom: 18px;
}

#mainNav .navbar-collapse.collapse .dropdown-toggle {
  position: relative;
}

#mainNav .nav-log {
  position: relative;
  z-index: 1;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

#mainNav .nav-log .btn {
  width: 100%;
}

@media (min-width: 992px) {
  #mainNav {
    padding-top: 40px;
    padding-bottom: 30px;
    border-bottom: none;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  #mainNav .btn {
    padding: 8px 20px;
  }

  #mainNav .navbar-brand {
    padding: 0.5rem 0;
    color: #fff;
  }

  #mainNav .nav-link {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    padding: 10px 20px;
    color: #000;
    position: relative;
  }

  #mainNav .nav-link:hover::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #000000;
    border-radius: 4px 4px 4px 4px;
  }

  #mainNav.navbar-dark .nav-link:hover::after {
    background: #ffffff;
  }

  #mainNav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--vt-blue);
    border-radius: 4px 4px 4px 4px;
  }

  #mainNav.navbar-dark .nav-link.active::after {
    background: var(--vt-gold);
  }


  #mainNav .nav-link.vt-primary:hover::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--vt-blue);
    border-radius: 4px 4px 4px 4px;
  }

  #mainNav.navbar-dark .nav-link.vt-primary:hover::after {
    background: var(--vt-gold);
  }

  #mainNav .nav-link:hover {
    color: #000;
  }

  #mainNav.navbar-dark .nav-link:hover,
  #mainNav.navbar-dark.navbar-shrink .nav-link:hover {
    color: #fff;
  }

  #mainNav.navbar-shrink .nav-link:hover {
    color: #000;
  }

  #mainNav.navbar-shrink {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #mainNav.navbar-shrink .nav-link {
    padding: 10px 20px;
  }

  #mainNav .navbar-nav.ms-auto {
    justify-content: flex-end;
  }
}

@media (max-width: 991px) {
  #mainNav .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  #mainNav .nav-fh {
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
  }
  #mainNav .navbar-collapse.collapsing {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    background-color: transparent;
  }
  #mainNav .navbar-collapse.collapse.show {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    height: 100vh;
    background-color: transparent;
  }

  /* #mainNav.navbar-dark .navbar-collapse .nav-c-bg {
    background-color: #fff;
    background-image: none;
    background-image: none;
    opacity: 0.95;
  } */

  #mainNav .navbar-collapse .nav-c-bg,
  #mainNav.navbar-shrink .navbar-collapse .nav-c-bg {
    z-index: 0;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    height: 100vh;
    background-color: #283bb0;
    background-image: -o-linear-gradient(279deg, #131c53 0%, #283bb0 100%);
    background-image: linear-gradient(171deg, #131c53 0%, #283bb0 100%);
    opacity: 0.95;
  }

  #mainNav ul.navbar-nav.ms-auto {
    position: relative;
    z-index: 1;
    margin-top: 90px;
    padding: 40px 40px 20px 40px;
  }
  #mainNav .navbar-toggler {
    padding-right: 0px;
  }

  #mainNav .navbar-toggler:focus,
  #mainNav .navbar-toggler:hover {
    box-shadow: none;
  }

  #mainNav .navbar-collapse .dropdown-toggle::after {
    display: unset;
    position: absolute;
    right: 0px;
    top: 16px;
    /* transform: translate(0%, -50%); */
  }

  #mainNav .navbar-collapse ul.dropdown-menu .dropdown-item {
    font-size: 17px;
    font-weight: 300;
    padding-left: 0px;
    color: #fff;
    padding-bottom: 16px;
  }

  #mainNav.navbar-dark .navbar-collapse ul.dropdown-menu .dropdown-item {
    color: #000;
  }

  #mainNav.navbar-shrink .navbar-collapse ul.dropdown-menu .dropdown-item {
    color: #fff;
  }


  #mainNav .navbar-collapse .nav-link {
    font-weight: 500;
    padding-bottom: 16px;
    font-size: 18px;
  }

}

.btn {
  font-family: var(--vt-font);
  padding: 12px 42px 12px 42px;
  border-radius: 2px;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  font-weight: 500;
}

.btn:hover:not(.disabled),
.btn:hover:not(:disabled),
.btn:hover:not([disabled]) {
  cursor: pointer;
  /* filter: brightness(110%) saturate(110%); */
  /* filter: brightness(110%); */
}

.btn-img > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.btn-img > div > img {
  margin-right: 24px;
}

.btn-gold {
  background-image: -o-linear-gradient(330deg, var(--vt-gold-gradient) 3%, var(--vt-gold-gradient-alt) 140%);
  background-image: linear-gradient(120deg, var(--vt-gold-gradient) 3%, var(--vt-gold-gradient-alt) 140%);
  -webkit-box-shadow: 0 3px 6px 0 rgba(16, 60, 119, 0.3);
  box-shadow: 0 3px 6px 0 rgba(16, 60, 119, 0.3);
  border: 0px;
  color: var(--vt-blue-alt);
  box-shadow: 0 0 8px 0 rgba(208, 156, 29, 0.0);
}

.btn-gold:hover:not(.disabled),
.btn-gold:hover:not(:disabled),
.btn-gold:hover:not([disabled]) {
  color: var(--vt-blue-alt);
  box-shadow: 0 0 8px 0 rgba(208, 156, 29, 0.87);
}

.btn-gold-outline,
.btn-primary-outline {
  background: none;
  background-image: none;
  /* border: solid 2px var(--vt-gold); */
  box-shadow: 0px 0px 0px 2px var(--vt-gold) inset;
  color: var(--vt-gold);
}

.btn-gold-outline:hover:not(.disabled),
.btn-gold-outline:hover:not(:disabled),
.btn-gold-outline:hover:not([disabled]),
.btn-primary-outline:hover:not(.disabled),
.btn-primary-outline:hover:not(:disabled),
.btn-primary-outline:hover:not([disabled]) {
  color: var(--vt-blue-alt);
  background: rgba(255, 255, 255, 0.01);
  box-shadow: 0px 0px 0px 0px var(--vt-gold) inset, 0 0 8px 0 rgba(242, 190, 61, 0.8);
  background-image: linear-gradient(86deg, #ffdb74 1%, #f2be3d 112%);
}

#mainNav.navbar-dark .btn-primary-outline,
#mainNav.navbar-dark.navbar-shrink .btn-primary-outline {
  color: var(--vt-gold);
  /* border: solid 2px var(--vt-gold); */
  box-shadow: 0px 0px 0px 2px var(--vt-gold) inset;
}

#mainNav.navbar-dark .btn-primary-outline:hover:not(.disabled),
#mainNav.navbar-dark .btn-primary-outline:hover:not(:disabled),
#mainNav.navbar-dark .btn-primary-outline:hover:not([disabled]),
#mainNav.navbar-dark.navbar-shrink .btn-primary-outline:hover:not(.disabled),
#mainNav.navbar-dark.navbar-shrink .btn-primary-outline:hover:not(:disabled),
#mainNav.navbar-dark.navbar-shrink .btn-primary-outline:hover:not([disabled]) {
  color: var(--vt-blue-alt);
  background: none;
  background-image: linear-gradient(86deg, #ffdb74 1%, #f2be3d 112%);
  box-shadow: 0px 0px 0px 2px var(--vt-gold) inset, 0 0 8px 0 rgba(242, 190, 61, 0.8);
}

#mainNav .btn-primary-outline,
#mainNav.navbar-shrink .btn-primary-outline {
  color: var(--vt-blue);
  /* border: solid 2px var(--vt-blue); */
  box-shadow: 0px 0px 0px 2px var(--vt-blue) inset;
}

#mainNav .btn-primary-outline:hover:not(.disabled),
#mainNav .btn-primary-outline:hover:not(:disabled),
#mainNav .btn-primary-outline:hover:not([disabled]),
#mainNav.navbar-shrink .btn-primary-outline:hover:not(.disabled),
#mainNav.navbar-shrink .btn-primary-outline:hover:not(:disabled),
#mainNav.navbar-shrink .btn-primary-outline:hover:not([disabled]) {
  color: white;
  box-shadow: 0px 0px 0px 2px var(--vt-blue) inset, 0 0 8px 0 rgba(0, 42, 221, 0.69);
  background: var(--vt-blue)
}

.hero-btn {
  position: absolute;
  bottom: 40px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}

#heroEnd {
  position: absolute;
  bottom: 0px;
}

.hero-btn a {
  color: #fff;
}

@media (min-width: 768px) {
  .hero-btn {
    bottom: 20px;
  }
}

.btn-blue {
  background-image: none;
  background: var(--vt-blue);
  box-shadow: 0 2px 6px 0 rgba(0, 42, 221, 0.29);
  color: white;
}

.btn-blue:hover {
  box-shadow: 0 0 8px 0 rgba(0, 42, 221, 0.69);
  color: white;
}

.btn-blue--large {
  padding: 20px 40px 20px 40px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  height: 100px;
}

.btn-blue-outline {
  background: none;
  background-image: none;
  border: solid 2px var(--vt-blue);
  color: var(--vt-blue);
}

.btn-blue-outline:hover:not(.disabled),
.btn-blue-outline:hover:not(:disabled),
.btn-blue-outline:hover:not([disabled]) {
  color: var(--vt-blue);
  background: rgba(255, 255, 255, 0.01);
  box-shadow: 0 0 8px 0 rgba(0, 42, 221, 0.29);
}


.card {
  padding: 24px 24px 24px 24px;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 16px 0 rgba(136, 136, 136, 0.11);
  box-shadow: 0 3px 16px 0 rgba(136, 136, 136, 0.11);
  background-color: #fff;
  border: none;
  margin-bottom: 20px;
}

/* Home - Hero Section */

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 40px);
  /* min-height: 35rem; */
  /* padding-top: 5rem; */
  min-height: 700px;
  max-height: 700px;
  background: var(--vt-blue);
  background-image: -o-linear-gradient(171deg,  rgba(6, 5, 105, 0.47) 3%,  rgba(9, 7, 181, 0.47) 40%, rgba(10, 8, 211, 0.47) 90%), url('/assets/img/hero-bg.webp');
  background-image: linear-gradient(171deg,  rgba(6, 5, 105, 0.47) 3%,  rgba(9, 7, 181, 0.47) 40%, rgba(10, 8, 211, 0.47) 90%), url('/assets/img/hero-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero.h-security {
  background: var(--vt-blue);
  background-image: url('/assets/img/security-bg.png');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.hero.h-assets {
  background: var(--vt-blue);
  background-image: -o-linear-gradient(117deg, rgba(0,0,0,0.3) 2%, rgba(8, 6, 151, 0.3) 61%, rgba(9, 7, 181, 0.3) 69%, rgba(0,0,0,0.3) 110%), url('/assets/img/assets-bg.png');
  background-image: linear-gradient(117deg, rgba(0,0,0,0.3) 2%, rgba(8, 6, 151, 0.3) 61%, rgba(9, 7, 181, 0.3) 69%, rgba(0,0,0,0.3) 110%), url('/assets/img/assets-bg.png');

  /* background-image: url('/assets/img/assets-bg.png'); */
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

/* .hero.hero-slim {
  max-height: 700px;
}
 */
.hero > .container {
  margin-top: 90px;
}

.hero.hero-light {
  background: #ffffff;
  background-image: none;
  background-image: none;
  color: #3b3b3b;
  /* max-height: 900px; */
}

.hero.hero-light p {
  color: unset;
}

.hero.hero-alt {
  min-height: 500px;
}

.hero.hero-blue {
  background-image: linear-gradient(169deg, #131c53 6%, #283bb0 41%, #5e71ea 86%);
}

.hero-content > div:first-of-type {
  z-index: 1;
}

.hero h1,
.hero .h1 {
  font-size: 32px;
  font-weight: medium;
}

.hero h2,
.hero .h2 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
}

.hero h2.hero-sub {
  color: var(--vt-blue);
  font-weight: 400;
}

.hero h3,
.hero .h3 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.8;
}

.hero p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #fff;
}

.hero .hero-img {
  height: auto;
  max-width: 100%;
  max-height: 340px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .hero {
    height: auto;
  }
  .hero.hero-light {
    height: auto;
  }
  .hero-content {
    padding-top: 20px;
    height: 100%;
    flex-wrap: nowrap;
  }
  .hero-content > div {
    flex: 1;
  }
  .hero h1,
  .hero .h1 {
    font-size: 23px;
  }
  .hero h2,
  .hero .h2 {
    font-size: 15px;
  }
  .hero h3,
  .hero .h3 {
    font-size: 20px;
  }
  .hero h2.swiss-security,
  .hero .h2.swiss-security {
    font-size: 12px;
  }
  .hero .swiss-security > img {
    max-height: 36px;
  }
  .hero img.hero-img {
    max-height: 280px;
  }
  .hero .hero-btn {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero h1,
  .hero .h1 {
    font-size: 38px;
  }
}

@media (min-width: 992px) {
  .hero h1,
  .hero .h1 {
    font-size: 40px;
  }

  .hero h2,
  .hero .h2 {
    font-size: 20px;
  }

}

@media (min-width: 1200px) {
  .hero p {
    font-size: 20px;
  }
}

.swiss-security > img {
  max-height: 60px;
  width: auto;
  margin-right: 12px;
}

.hero-content {
  z-index: 1;
}

img.gold-line,
img.blue-line {
  max-height: 4px;
  width: 54px;
  margin: 0px;
}

.hero-btm {
  position: absolute;
  bottom: -1px;
  left: 0px;
  right: 0px;
}

.ripple-wrap {
  position: relative;
  text-align: center;
}

.hero .ripple-wrap {
  min-height: 500px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ripple-wrap .ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  height: 140%;
  pointer-events: none;
}

.ripple-mute {
  opacity: 0.1;
}

.section-bg {
  background: var(--vt-section-background);
}

@media (max-width: 550px) {
  .hero .ripple-wrap {
    min-height: 400px;
  }
  .hero.hero-blue.hero-alt {
    min-height: 300px;
  }
}

/* Home - Stats Section */

.stats-section {
  padding: 60px 0px;
  background: var(--vt-section-background);
}

.stat-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}

.stat-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-item-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-item-info > h2 {
  color: var(--vt-orange);
  font-size: 1em;
  text-align: center;
}

.stat-item-info > p {
  color: var(--vt-blue);
  font-size: 0.8em;
  text-align: center;
}

.stat-divider {
  position: relative;
  flex: 1;
  min-width: 20px;
}

.stat-divider::after {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  right: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--vt-blue);
}

.stat-item-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vt-blue);
  font-size: 50px;
  width: 100%;
}

.stat-item-icon > svg,
.stat-item-icon > img {
  height: 22px;
  width: auto;
  margin: 0px 0px 12px 0px;
}

@media (min-width: 575px) {
  .stat-item-info > h2 {
    font-size: 1.2em;
  }

  .stat-item-info > p {
    font-size: 1em;
  }
}

@media (min-width: 993px) {
  .stat-item {
    flex-direction: row;
    margin: 0px 30px;
  }

  .stat-item-icon {
    width: 40px;
  }

  .stat-item-info {
    text-align: left;
    align-items: start;
  }

  /* .stat-item-info > h2 {
    font-size: 1.5em;
    text-align: left;
  }

  .stat-item-info > p {
    font-size: 1.2em;
    text-align: left;
  } */

  .stat-item-icon > svg,
  .stat-item-icon > img {
    height: 40px;
    margin: 0px 30px 0px 0px;
  }
}

/* Home - Features Section */

.features-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.features-section.fs-blue {
  background: #4b4acb;
}

.features-phone {
  background: var(--vt-section-background);
}

.features-head {
  margin-bottom: 20px;
  text-align: left;
}

.features-head h2,
.features-head h3 {
  color: var(--vt-blue);
  /* font-size: 24px; */
}

.features-head h1 {
  font-size: calc(1rem + 1vw);
}

.features-section.fs-blue .features-head h1,
.features-section.fs-blue .features-head h2,
.features-section.fs-blue .features-head h3 {
  color: #ffffff;
}

.feature-img {
  height: auto;
  width: 100%;
  max-width: 280px;
  max-height: 550px;
  position: relative;
  z-index: 1;
}

.feature-img.lg-f-img {
  max-width: 850px;
  max-height: 550px;
}

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

.features-cards .card {
  align-items: center;
}

.features-cards .fas,
.features-cards .svg-inline--fa {
  font-size: 60px;
  color: var(--vt-blue);
  margin-bottom: 20px;
}

.features-cards h2 {
  color: var(--vt-blue);
  font-size: 24px;
  margin-bottom: 20px;
}

.features-cards p {
  color: #adaeb7;
  font-size: 24px;
  letter-spacing: -1.3px;
}

@media (max-width: 991px) {

  .features-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .row.m-flex-rev {
    flex-direction: column-reverse;
  }

  #features-1.features-section .row:first-of-type > div:first-of-type,
  #features-1.features-section .row:last-of-type > div:last-of-type {
    margin-top: 40px;
  }

  .features-section img.feature-img {
    max-width: 220px;
    max-height: 240px;
  }

  .features-section img.feature-img.lg-f-img {
    max-width: 350px;
    max-height: 350px;
  }

  .features-section .features-head > h3 {
    font-size: 1em;
  }

  .features-section .features-head > h1 {
    font-size: 1.5em;
    font-weight: bold;
  }

  .features-section p {
    font-size: 1em;
    line-height: 1.53;
    letter-spacing: 0.53px;
  }
}

/* Features Phone */

.features-section.features-phone .row {
  padding-top: 0px;
  padding-bottom: 100px;
}

.phone-showcase {
  display: flex;
  flex-direction: row;
}

.ps-phone {
  flex: 1 1 60%;
}

.ps-feat {
  flex: 1 1 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.ps-feat > div:first-of-type {
  margin-bottom: 40px;
}

.ps-feat .ps-img {
  height: 100%;
  width: 100%;
  max-width: 80px;
  max-height: 80px;
  margin-bottom: 12px;
  margin-left: -5px;
}

.ps-feat h2 {
  font-size: 23px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: normal;
  text-align: left;
  color: var(--vt-blue);
}

.ps-feat p {
  font-size: 23px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: -1.38px;
  text-align: left;
  color: var(--vt-font-colour-alt);
}

.ps-phone .ps-img {
  height: auto;
  max-width: 100%;
  max-height: 900px;
  position: relative;
  z-index: 1;
}

.phone-showcase .ripple-wrap .ripple {
  height: 100%;
}

/* Features Wallet */

.features-section.features-wallet {
  padding-bottom: 0px;
}

.features-section.features-wallet .row {
  padding-bottom: 0px;
}

.features-section.features-wallet {
  overflow: hidden;
  background: var(--vt-section-background);
}

.features-section.features-wallet .wallet-img {
  margin-bottom: -100px;
  margin-top: -60px;
}

@media (max-width: 991px) {
  .features-section.features-wallet .wallet-img {
    max-height: 500px;
    margin-top: 0px;
  }

  .ps-phone {
    order: 3;
    flex-basis: 100%;
    margin-top: 40px;
  }

  .phone-showcase {
    flex-wrap: wrap;
  }

  .ps-feat {
    padding: 0px 8px;
  }

  .ps-feat,
  .ps-feat h2,
  .ps-feat p {
    text-align: center;
  }

  .ps-feat h2 {
    font-size: 0.8em;
  }

  .ps-feat p {
    font-size: 0.95em;
    line-height: 1.53;
    letter-spacing: -0.57px;
  }

  .ps-phone .ps-img {
    max-width: 150px;
  }

  .ps-feat .ps-img {
    max-width: 150px;
    margin-left: 5px;
  }

  .phone-showcase .ripple-wrap .ripple {
    height: 150%;
  }

  .features-section.features-phone .row {
    padding-bottom: 60px;
  }
}

/* Features Exchange */

.features-section.features-exchange .row {
  padding-bottom: 0px;
}

.features-section.features-exchange .btn.btn-img.btn-blue.btn-blue--large {
  max-width: 430px;
  width: 100%;
}

@media (max-width: 991px) {
  .features-section.features-exchange .btn.btn-img.btn-blue.btn-blue--large {
    padding: 16px 16px 16px 16px;
    height: 100px;
    width: 100px;
    max-height: 100px;
    max-width: 100px;
  }
  .features-section.features-exchange .btn.btn-img.btn-blue.btn-blue--large > div {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    align-items: center;
    justify-content: space-between;
    text-align: center;
  }
  .features-section.features-exchange .btn.btn-img.btn-blue.btn-blue--large > div > * {
    flex: 1;
  }
  .features-section.features-exchange .btn.btn-img.btn-blue.btn-blue--large > div > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .features-section.features-exchange .btn.btn-img.btn-blue.btn-blue--large > div > img  {
    margin-right: 0px;
    max-width: 25px;
    margin-bottom: 12px;
  }
}


/* Features Assets */

/* .features-section.features-assets .row {
  padding-bottom: 0px;
} */

/* .features-section.features-assets .carousel-inner { */
.features-section.features-assets .carousel-inner {
  padding: 20px 40px 20px 40px;
  background: var(--vt-section-background);
  margin-left: 60px;
  width: calc(100% - 120px);
  height: 600px;
  display: flex;
  align-items: center;
}

.features-section.features-assets .carousel .ripple-wrap .ripple {
  height: 180%;
  opacity: 0.3;
}

.features-section .carousel-indicators {
  margin-bottom: -60px;
}

.carousel .carousel-indicators {
  justify-content: start;
  margin-left: 0px;
  margin-right: 0px;
}

.carousel .carousel-indicators .active[data-bs-target] {
  background-color: var(--vt-blue);
}

.carousel .carousel-indicators [data-bs-target] {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #e2e3e2;
  margin-right: 8px;
}

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

.features-section.features-assets .carousel .carousel-control-next {
  opacity: 1;
  padding-left: 5%;
  width: unset;
}

.features-section.features-assets .carousel .carousel-control-prev {
  opacity: 1;
  padding-right: 5%;
  width: unset;
}

.features-section.features-assets .carousel .carousel-control-next > svg,
.features-section.features-assets .carousel .carousel-control-prev > svg {
  height: 20px;
  width: 20px;
  color: var(--vt-blue);
  opacity: 1;
}

@media (max-width: 991px) {
  .carousel-item,
  .carousel-item p {
    text-align: center;
  }
  .carousel-item .features-head {
    text-align: center;
  }
  .features-section.features-assets .carousel-item {
    /* padding: 0px 0px 80px 0px; */
  }
  .features-section.features-assets .carousel-item > div {
    /* flex-direction: column-reverse; */
  }

  .features-section.features-assets .carousel-item > div > div:last-of-type {
    margin-bottom: 40px;
  }
  .features-section .carousel-indicators {
    margin-bottom: 20px;
  }
  .carousel-control-next,
  .carousel-control-prev {
    display: none;
  }
  .features-section.features-assets .carousel-inner {
    padding: 20px 0px 20px 0px;
    margin-left: 00px;
    width: 100%;
    height: 650px;
  }
}

@media (min-width: 992px) {
  .features-section.features-assets .carousel .feature-img {
    max-height: 320px;
    max-width: 240px;
  }
}

/* Companies Section */

.companies-section {
  padding: 60px 0px;
  background: var(--vt-section-background);
  min-height: 200px;
}

.companies-section .carousel {
  min-height: 60px;
}

.companies-section .carousel .carousel-item > div > div {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.companies-section .carousel img {
  width: 100%;
  max-width: 140px;
}

.companies-section .carousel-indicators {
  bottom: -60px;
}

#companies {
  display: block;
}

#companiesMob {
  display: none;
}

@media (max-width: 991px) {
  #companies {
    display: none;
  }

  #companiesMob {
    display: block;
  }
}

/* Footer */

.footer {
  position: relative;
  padding: 5rem 0;
  background: #283bb0;
  background-image: -o-linear-gradient(9deg, #131c53 2%, #283bb0 40%, #5e71ea 91%);
  background-image: linear-gradient(9deg, #131c53 2%, #283bb0 40%, #5e71ea 91%);
  color: #fff;
}

.footer .container {
  /* padding-top: 180px; */
  /* padding-top: 16vw; */
}

.footer-top {
  position: absolute;
  top: -1px;
  left: 0px;
  right: 0px;
}

.f-signup {
  margin-bottom: 40px;
}

.f-signup img {
  max-width: 150px;
  margin-bottom: 40px;
}

.f-signup h2 {
  font-size: 1.2em;
  margin-bottom: 28px;
  opacity: 0.8;
  font-weight: bold;
}

.f-signup hr {
  width: 50%;
  margin: 40px 0px 30px 0px;
}

.f-signup p {
  font-weight: 300;
  font-size: 1.2em;
  line-height: 1.35;
  opacity: 0.8;
  color: #fff;
}

.footer ul {
  padding-left: 0px;
  list-style-type: none;
}

.footer li {
  margin-bottom: 20px;
}

.footer li,
.footer li a {
  color: #fff;
  opacity: 0.8;
  font-size: 17px;
  text-decoration: none;
}

.footer .f-head {
  font-size: 17px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 36px;
  color: white;
  text-decoration: none;
  position: relative;
}

.footer .f-head.mute {
  opacity: 0.6;
  font-weight: 300;
}

.footer .f-bt {
  margin-top: 60px;
}

.footer .f-bt p {
  opacity: 0.8;
  color: #c6ceff;
}

@media (max-width: 991px) {
  .footer .f-head {
    margin-bottom: 0px;
    padding-bottom: 16px;
    padding-top: 16px;
    border-bottom: 1px solid #3e51c8;
  }
  .footer .f-head::after {
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(0%, -50%);
  }
  .footer .collapse ul,
  .footer .collapsing ul {
    margin-top: 1rem;
  }
  .footer .f-bt {
    flex-direction: column-reverse;
  }
  .footer .f-bt .f-social {
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .footer .f-head {
    opacity: 1;
  }
  .footer .collapse,
  .footer .collapsing {
    display: block;
  }
  .f-signup {
    padding-right: 100px;
    margin-bottom: 0px;
  }
  .f-vc {
    max-width: 200px;
  }
  .footer li,
  .footer li a {
    font-weight: normal;
  }
}

.f-vc {
  text-align: right;
}

.f-vc img {
  max-width: 100px;
  filter: saturate(0%) brightness(100);
  -webkit-filter: saturate(0%) brightness(100);
  opacity: 0.8;
  margin-bottom: 28px;
}

.f-social {
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .f-social {
    justify-content: end;
  }
}


.f-social a > svg,
.f-social a > img {
  max-height: 45px;
  max-width: 45px;
  width: 100%;
}

.f-social a {
  margin-right: 8px;
}

.f-social a:last-of-type {
  margin-right: 0px;
}

/* Affiliate - Features Section */

.dyn-item-list {
  display: flex;
  flex-direction: column;
}

.dyn-item-list > div {
  padding: 18px 0px;
  color: #c1c7f0;
  font-size: 27px;
  font-weight: normal;
  border-bottom: 1px solid #d8ddfc;
  cursor: pointer;
}

.dyn-item-list > div:last-of-type {
  border-bottom: none;
}

.dyn-item-list > div.active {
  font-weight: bold;
  color: #2c40c3;
}

.dyn-items .dyn-item {
  display: none;
}

.dyn-items .dyn-item.active {
  display: block;
}

/* Affiliate Terms */

ul.terms-list {
  margin-top: 20px;
  list-style: none;
  padding-left: 0px;
}

ul.terms-list li {
  margin-bottom: 20px;
}

ul.terms-list li::before {
  content: "\2022";
  color: var(--vt-blue);
  font-weight: bold;
  display: inline-block;
  width: 20px;
  vertical-align: middle;
  font-size: 28px;
  line-height: 16px;
}

/* Careers */

.hero.careers-hero {
  height: auto;
}

.hero.careers-hero > .container {
  margin-top: 120px;
}

.ripple-wrap.careers-img {
  align-items: end;
}

.hero .careers-img .hero-img {
  max-height: 800px;
}

.ripple-wrap.careers-img > .hero-img {
  max-width: 450px;
}

@media (max-width: 993px) {
  .hero.careers-hero > .container {
    margin-top: 40px;
  }
  .ripple-wrap.careers-img > .hero-img {
    max-width: 400px;
  }
}

@media (max-width: 550px) {
  .ripple-wrap.careers-img > .hero-img {
    max-width: 300px;
  }
  .features-head img.gold-line,
  .features-head img.blue-line {
    max-width: 40px;
  }
}

.job-list .accordion-button:not(.collapsed) {
  background: none;
  border-bottom: 0px;
  box-shadow: none;
}

.job-list .accordion-button {
  padding-left: 0px;
}

.job-list .accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.job-list .accordion-button img {
  margin-right: 8px;
  height: 14px;
  width: 14px;
}

.job-list .accordion-button:not(.collapsed) img {
  transform: rotate(90deg);
}

.job-list .job-head {
  font-weight: bold;
  font-size: 18px;
}

.job-list .job-item ul {
  padding-left: 14px;
}

.job-list .job-item h2.accordion-header .accordion-button {
  font-weight: 500;
}

/* Pricing */

.price-cards {
  margin-top: 60px;
  /* display: flex;
  justify-content: center; */
}

.price-cards > .row {
  max-width: 1000px;
  margin: auto;
}

.price-cards .card {
  width: 100%;
  max-width: 300px;
  text-align: center;
  margin: 12px;
}

.price-cards .card > div:first-of-type {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-cards .card img,
.price-cards .card h2,
.price-cards .card h1 {
  margin: 28px 0px;
}

.price-cards .card p {
  margin-bottom: 0px;
  /* margin-top: -20px; */
  height: 28px;
}

.price-cards .card img,
.price-cards .card h2,
.price-cards .card h3,
.price-cards .card p {
  opacity: 0.6;
  text-align: center;
}

.price-cards .card h2 {
  font-size: 25px;
  font-weight: 400;
}

.price-cards .card h1 {
  font-size: 41px;
  color: var(--vt-blue);
}

.price-cards .card h1 span {
  font-size: 20px;
  font-weight: 400;
}

.price-cards .card.primary {
  background: #283cc6;
  color: #fff;
}

.price-cards .card.primary img,
.price-cards .card.primary h2,
.price-cards .card.primary h3 {
  opacity: 1;
}

.price-cards .card.primary h2,
.price-cards .card.primary h1 {
  color: #fff;
}

.price-cards .card.primary img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

@media (max-width: 970px) {
  .price-cards .card {
    padding: 12px 12px 12px 12px;
  }
  .price-cards .card h1 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .price-cards .card {
    padding: 8px 8px 8px 8px;
    margin-top: 12px;
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
  }
  .price-cards .card h1 {
    font-size: 18px;
  }
  .price-cards .card h1 span {
    font-size: 8px;
  }
  .price-cards .card h2 {
    font-size: 18px;
  }
  .price-cards .card h1,
  .price-cards .card h2 {
    margin: 12px 0px;
  }
  .price-cards .card p {
    font-size: 8px;
  }
}

table.vt-table {
  table-layout: fixed;
  text-align: center;
}

table.vt-table > thead > tr > th {
  text-align: center;
  vertical-align: middle;
}

table.vt-table > thead > tr > th {
  background: #efefef;
}

table.vt-table > thead > tr > th:not(:first-of-type) {
  box-shadow: -3px 0 10px 0 rgba(159, 159, 159, 0.1);
  border-bottom: 0px;
}

table.vt-table > tbody > tr > td {
  border-top: hidden;
}

table.vt-table > tbody > tr > td {
  text-align: center;
  vertical-align: middle;
  padding: 20px;
}

table.vt-table > tbody > tr > td span {
  font-size: 12px;
  opacity: 0.6;
}

table.vt-table > tbody > tr:nth-of-type(odd) > * {
  background: #fafafa;
  border-bottom: none;
}

table.vt-table > tbody > tr:nth-of-type(even) > * {
  background: white;
  border-bottom: none;
}

table.vt-table > tbody > tr:nth-of-type(even) > td:not(:first-of-type) {
  box-shadow: -3px 0 10px 0 rgba(159, 159, 159, 0.1);
}

table.vt-table.vt-table-sm-wide {
  max-width: 250px;
}

@media (max-width: 767px) {

  .table-responsive-md {
    overflow-x: scroll;
  }

  table.vt-table.vt-table-scroll {
    table-layout: auto;
  }

  table.vt-table.vt-table-sm-wide {
    max-width: unset;
  }

}

/* Terms Section */


.terms-toc {
  overflow-y: scroll;
  max-height: calc(100vh - 120px);
  min-height: 250px;
}

.terms-toc .accordion-collapse ul {
  margin-bottom: 0px;
}

.terms-toc .accordion-collapse ul li a {
  color: #919191;
}

.terms-toc .accordion-collapse ul li:hover a,
.terms-toc .accordion-collapse ul li::marker {
  color: var(--vt-blue);
}

.terms-toc .accordion-collapse {
  padding: 10px 0px 20px 0px;
}

.terms-toc .accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none;
}

.terms-toc .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.terms-toc h2.accordion-header .accordion-button img {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  position: absolute;
  right: 8px;
}

.terms-toc h2.accordion-header .accordion-button:not(.collapsed) img {
  opacity: 1;
  transform: rotate(90deg);
}

.accordion-button::after {
  content: none;
}

.terms-toc h2.accordion-header .accordion-button {
  color: rgba(0, 42, 221, 0.6);
}

.terms-toc h2.accordion-header .accordion-button:not(.collapsed) {
  color: var(--vt-blue);
  font-weight: bold;
}

.terms-toc .accordion-item {
  border-bottom: 1px solid rgba(0, 42, 221, 0.6);
}

.sticky-top.terms-toc {
  top: 90px;
}

section.error-page .row {
  min-height: calc(90vh - 90px);
}

/* App Page */

.app-img {
  height: auto;
  max-width: 100%;
  max-height: 400px;
  position: relative;
  z-index: 2;
  margin-left: 20px;
  margin-bottom: 150px;
}

.app-img-con {
  position: relative;
}

.app-ic-l .app-img {
  margin-left: 0px;
  margin-right: 20px;
}

.app-accent-bg {
  /* position: absolute;
  width: -webkit-fill-available;
  aspect-ratio: 16 / 10;
  background: linear-gradient(251.5deg, #5067FF -0.96%, #000B50 154.24%);
  border-radius: 4px 0px 0px 100px; */
  position: absolute;
  top: 50%;
  left: 0px;
  right: -250px;
  transform: translateY(-50%);
  background: linear-gradient(251.5deg, #5067FF -0.96%, #000B50 154.24%);
  border-radius: 4px 0px 0px 60px;
  height: 300px;
  max-height: 600px;
  z-index: 0;
}

.app-accent-bg.aab-l {
  left: -250px;
  right: 0px;
  border-radius: 0px 4px 60px 0px;
  background: linear-gradient(99deg, #5067FF -0.96%, #000B50 154.24%);
}

.app-accent-lines {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  top: 0px;
  right: 0px;
  display: flex;
}

.aal-r {
  justify-content: flex-end;
}
.aal-l {
  justify-content: flex-start;
}

.app-a-l {
  background-color: white;
  height: 100%;
  width: 20px;
}
.aal-1 {
  width: 12px;
}
.aal-2 {
  width: 22px;
}
.aal-3 {
  width: 42px;
}

.aal-r .aal-1 {
  margin: 0px 12px 0px 0px;
}
.aal-r .aal-2 {
  margin: 0px 16px 0px 0px;
}
.aal-r .aal-3 {
  margin: 0px 24px 0px 0px;
}

.aal-l .aal-1 {
  margin: 0px 0px 0px 12px;
}
.aal-l .aal-2 {
  margin: 0px 0px 0px 16px;
}
.aal-l .aal-3 {
  margin: 0px 0px 0px 24px;
}

@media (max-width: 767px) {
  .hero-content-app,
  .hero-content-app h2,
  .hero-content-app p,
  .app-img-con {
    text-align: center;
  }
  .app-img {
    height: auto;
    max-width: 100%;
    max-height: 340px;
    position: relative;
    z-index: 2;
    margin-left: 0px;
    margin-bottom: -40px;
  }
  .app-img-wrap {
    overflow-y: hidden;
  }
  .app-accent-bg,
  .aab-r,
  .aab-l {
    left: 20px;
  }
  .app-accent-bg,
  .app-accent-bg.aab-r,
  .app-accent-bg.aab-l {
    background: linear-gradient(180deg, #5067FF -0.96%, #000B50 154.24%);
  }
  .app-accent-bg,
  .app-accent-lines {
    height: 200px;
    top: unset;
    bottom: 0px;
    transform: translateY(0%);
  }
  .app-accent-lines {
    width: 100%;
    left: -250px;
    right: -250px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .app-a-l {
    width: 5000px;
    height: 20px;
  }
  .aal-1 {
    height: 10px;
  }
  .aal-2 {
    height: 20px;
  }
  .aal-3 {
    display: none;
  }
  .aal-r .aal-1,
  .aal-l .aal-1 {
    margin: 10px 0px 0px 0px;
  }
  .aal-r .aal-2,
  .aal-l .aal-2 {
    margin: 20px 0px 0px 0px;
  }
}

.app-stat-con {

}

.card.app-stat {
  margin-bottom: 0px;
  height: 100%;
}

.app-stat h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 23px;
  line-height: 124.4%;
  margin-bottom: 40px;
}

.app-stat p {
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
}

img.img-i {
  height: 32px;
  width: auto;
  max-width: 32px;
  object-fit: contain;
  margin-bottom: 40px;
}

img.lg-img {
  display: block;
  max-width: 100%;
  height: auto;
}
img.sm-img {
  display: none;
  max-width: 100%;
  height: auto;
}

.btn.btn-ios {
  padding: 12px 12px 12px 12px;
}

.btn.btn-ios img {
  max-height: 34px;
}

.btn.btn-square {
  aspect-ratio: 1 / 1;
  padding: 8px 8px 8px 8px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-qr {
  margin-left: 12px;
}

.btn.btn-qr img {
  max-width: 34px;
}

@media (max-width: 767px) {
  .app-stat-con {
    margin-top: 120px;
  }
  .app-stat-con > div {
    margin-bottom: 40px;
  }
  img.lg-img {
    display: none;
  }
  img.sm-img {
    display: block;
  }
  .app-stat h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .app-stat p {
    font-size: 14px;
  }
  img.img-i {
    height: 32px;
    width: auto;
    max-width: 32px;
    object-fit: contain;
    margin-bottom: 40px;
  }
  .app-ic-l .app-img {
    margin-left: 0px;
    margin-right: 0px;
  }
  .app-img-text {
    margin-bottom: 60px;
  }
  .btn.btn-qr {
    display: none;
  }
  .btn.btn-ios {
    padding: 8px 24px 8px 24px;
    margin-bottom: 40px;
    margin-top: 10px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 4200;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(255,255,255);
  background-color: rgba(255,255,255,0.6);
}

.modal-content {
  background-color: var(--vt-blue);
  position: relative;
  margin: auto;
  padding: 20px;
  width: 100%;
  height: 100%;
  max-width: 450px;
  max-height: 450px;
}

.qr-modal .modal-content,
.vtsav-modal .modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.modal-content p,
.modal-content h2 {
  color: #ffffff;
}

.close {
  position: absolute;
  top: 0px;
  right: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: rgba(255,255,255,1);
  text-decoration: none;
  cursor: pointer;
}

.qr-modal img.qr-img {
  max-width: 250px;
}

.vtsav-modal .modal-content {
  background-color: transparent;
  border: none;
  max-width: 350px;
  max-height: 350px;
}

.vtsav-modal img {
  max-width: 350px;
  cursor: pointer;
}

.company-info {
  padding-top: 40px;
  color: #c6ceff;
  font-size: 12px;
}

.glassbooks-foot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination > ul {
  display: flex;
  list-style: none;
  padding: 0px;
  justify-content: center;
}
.pagination > ul li {
  display: flex;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin: 0px 4px;
  border-radius: 4px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.pagination > ul li:hover {
  background-color: rgba(155, 155, 194, 0.15);
}
.pagination > ul li.active {
  background-color: rgba(155, 155, 194, 0.15);
}
.pagination > ul li.active:hover {
  background-color: rgba(155, 155, 194, 0.2);
}
.gbErr {
  background: rgb(221, 51, 92);
  border-radius: 4px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  color: white;
  align-items: center;
  margin: 8px 0px;
}


.grecaptcha-badge,
.rc-anchor,
.rc-anchor.rc-anchor-invisible,
.rc-anchor.rc-anchor-invisible.rc-anchor-light,
.rc-anchor.rc-anchor-invisible.rc-anchor-light.rc-anchor-invisible-hover {
  display: none;
}

.t-pdf-dl-con {
  max-width: 380px;
}

.t-pdf-dl {
  display: flex;
  text-align: right;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .t-pdf-dl-con {
    max-width: unset;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .t-pdf-dl {
    text-align: left;
    justify-content: flex-end;
  }
  .t-pdf-dl img {
    margin-left: 10px;
  }
  .t-pdf-dl div {
    flex: 1;
  }
}

.ribbon {
  background: rgba(94, 113, 234, 0.03);
  padding: 20px 0px;
  display: flex;
  align-items: center;
}

.ribbon h3 {
  margin-bottom: 0px;
}

@media (max-width: 992px) {
  .ribbon h3 {
    font-size: 18px;
  }
}

.wrap-uk {
  position: relative;
}
.wrap-uk > img.hero-img {
  position: absolute;
  top: 0px;
  position: absolute;
  height: calc(100% + 30px);
  max-height: unset;
}

.hero-ribbon {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.ribbon-uk-img {
  position: relative;
}
.ribbon-uk-img > img {
  position: absolute;
  bottom: 0px;
  max-height: 500px;
  left: 50%;
  transform: translateX(-50%);
}

/* staff */

.staff-cards .card {
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding: 40px 20px;
  margin: auto;
  margin-bottom: 20px;
}

.staff-cards .card p,
.staff-cards .card h1,
.staff-cards .card h2,
.staff-cards .card h3 {
  text-align: center;
}

.staff-cards .card h1,
.staff-cards .card h2,
.staff-cards .card h3 {
  color: var(--vt-blue);
  font-size: 1.5rem;
}

.staff-cards .card p {
  margin-bottom: 0px;
}

.staff-cards .card > div:first-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.staff-cards .card > div:first-of-type > img {
  max-width: 100px;
  border-radius: 100%;
  -webkit-box-shadow:inset 0px 0px 0px 10px #bebebe;
  -moz-box-shadow:inset 0px 0px 0px 10px #bebebe;
  box-shadow:inset 0px 0px 0px 10px #bebebe;
}

/* Timeline */

.timeline-section p {
  line-height: 1.5;
  margin-bottom: 0px;
}

.timeline-section > .container > .row:nth-of-type(even):not(:first-child) > div:last-of-type,
.timeline-section > .container > .row:nth-of-type(odd):not(:first-child) > div:first-of-type {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 992px) {
  .timeline-section > .container > .row:nth-of-type(even):not(:first-child) > div:last-of-type,
  .timeline-section > .container > .row:nth-of-type(odd):not(:first-child) > div:first-of-type {
    position: relative;
    padding: 20px;
  }

  .timeline-section > .container > .row:nth-of-type(even):not(:first-child) > div:last-of-type::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 0px;
    bottom: 0px;
    width: 1px;
    background: #707070;
  }
  .timeline-section > .container > .row:nth-of-type(even):not(:first-child) > div:last-of-type::after {
    content: "";
    position: absolute;
    left: -1px;
    top: 0px;
    width: 100px;
    height: 1px;
    background: #707070;
  }

  .timeline-section > .container > .row:nth-of-type(odd):not(:first-child) > div:first-of-type::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 1px;
    background: #707070;
  }
  .timeline-section > .container > .row:nth-of-type(odd):not(:first-child) > div:first-of-type::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100px;
    height: 1px;
    background: #707070;
  }
}

/* Security */

.security-cards .card {
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding: 20px;
  margin: auto;
  margin-bottom: 20px;
  height: 100%;
}

.security-cards .card p,
.security-cards .card h1,
.security-cards .card h2,
.security-cards .card h3 {
  text-align: center;
}

.security-cards .card h1,
.security-cards .card h2,
.security-cards .card h3 {
  color: var(--vt-blue);
  font-size: 1.5rem;
}

.security-cards .card p {
  margin-bottom: 0px;
}

.security-cards .card > div:first-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 24px;
  min-height: 40px;
}
.security-cards .card > div:first-of-type > img {
  max-width: 60px;
  max-height: 40px;
}

.security-cards .card.primary {
  background: #283cc6;
  background-image: linear-gradient(to bottom, #2c40c3, #5e71ea);
  color: #fff;
}

.security-cards .card.primary h2,
.security-cards .card.primary h1,
.security-cards .card.primary p {
  color: #fff;
}
