body {
  font-family: "Be Vietnam Pro", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea {
  font-family: "Be Vietnam Pro", sans-serif;
}

:root {
  --bs-primary: #1d437f;
  --bs-primary-rgb: 29, 67, 127;
  --bs-primary-hover: #4aa3d3;
  --bs-primary-active: #4aa3d3;
  --bs-secondary: #4aa3d3;
  --bs-secondary-rgb: 74, 163, 211;
  --bs-tertiary: #8a2be2;

  --bs-tertiary-rgb: 0, 0, 255;
  --bs-link-color-rgb: 29, 67, 127;
  --bs-link-color: #1d437f;
}
.dropdown-menu {
  --bs-dropdown-link-active-bg: var(--bs-primary);
}

.bg-body-tertiary {
  background: linear-gradient(0deg, #f8f9fa 0%, #e9ecef 100%);
}

.nav-link {
  font-weight: normal; /* Normal weight */
  display: inline-block;
  color: var(--bs-primary);
  font-size: larger;
}

.nav-link:hover {
  color: var(--bs-primary-hover);
}

.nav-link.active {
  color: var(--bs-primary-active);
}

.btn {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-btn-border-radius: 0.25rem;
}

@media (max-width: 800px) {
  .lang-position {
    position: absolute;
    top: 2em;
    right: 2em;
  }

  .lang-position a {
    display: inline-block;
  }
}

.text-gradient {
  background: linear-gradient(
    135deg,
    #1d437f,
    #357bbd,
    #4aa3d3,
    #357bbd,
    #1d437f
  );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;

  background-size: 200%;
}

.text-gradient-2 {
  background: linear-gradient(
    135deg,
    #0000ff,
    /* Blue */ #8a2be2,
    /* BlueViolet */ #4b0082,
    /* Indigo */ #8a2be2,
    /* BlueViolet */ #4b0082,
    /* Indigo */ #8a2be2 /* BlueViolet */
  );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;

  background-size: 200%;
}

.jumbotron {
  position: relative;
}

.bg-wave-top {
  background-image: url("/images/wave-top.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 7.5%;
}

.bg-wave-top-gray {
  background-image: url("/images/wave-top-gray.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 7.5%;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.btn {
  padding: 0.5em 2em;
  background: linear-gradient(135deg, #1d437f, #357bbd, #357bbd, #1d437f);
}

.link-primary {
  color: var(--bs-primary);
  font-weight: bold;
  text-decoration: none;
}

.link-primary:hover {
  text-decoration: underline;
}

.footer-bottom {
  background-image: url("/images/footer-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.tracking-tight {
  letter-spacing: -0.05em;
}

.text-tertiary {
  color: var(--bs-tertiary);
}

.bg-wave {
  background-image: url("/images/gradient-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.customer-logos {
  display: flex;
  overflow: auto;
  white-space: nowrap;
  position: relative;
}

.customer-logos .customer-logo {
  display: inline-block;
  animation: float-left-right 20s linear infinite;
}

.customer-logos .customer-logo:nth-child(n) {
  animation-delay: 0;
}

@keyframes float-left-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
