:root {
  --tf-blue: #2160ad;
  --text-on-tf-blue: #fff;

  --primary: #ffdd00;
  --text-on-primary: #212b36;

  --bg: #ffffff;
  --bg-transparent: rgba(250, 250, 250, 0.17);
  --dark-bg: #22262f;
  --paper-on-dark-bg: #2d323e;

  --paper-on-bg: #fafafa;

  --heading-on-dark-bg: #ededed;
  --text-on-dark-bg: #adadad;

  --link-color: #2a64c5;
  --nav-text-color: #263846;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
}

p,
span,
a,
h1,
h2,
h3,
h4,
h5,
h6,
li {
  font-family: 'Inter', sans-serif;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ul {
  list-style-type: none;
}

ol {
  padding-left: 1rem;
}

img {
  max-width: 100%;
}

.text-light {
  color: var(--heading-on-dark-bg);
}

.text-link {
  color: var(--link-color);
}

/* ------------- */
/*    Utility    */
/* ------------- */
.section-spacing {
  padding: 7rem 0;
}

.section-spacing-l {
  padding: 9rem 0;
}

.withOverlay {
  position: relative;
  z-index: 1;
}

.withOverlay::before {
  inset: 0;
  z-index: -1;
  content: '';
  position: absolute;
  background-color: rgba(0, 0, 0, 0.35);
}

.darkBackground {
  background-color: var(--dark-bg);
}
.darkBackground h1,
.darkBackground h2,
.darkBackground h3,
.darkBackground h4,
.darkBackground h5,
.darkBackground h6 {
  color: var(--heading-on-dark-bg);
}
.darkBackground p,
li {
  color: var(--text-on-dark-bg);
}

.primary-btn {
  color: var(--text-on-primary);
  width: fit-content;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  background-color: var(--primary);
}

a.primary-btn:hover {
  color: var(--text-on-primary);
}

/* -------------- */
/*   Navigation   */
/* -------------- */
.navbar {
  padding: 0 !important;
  background-color: var(--tf-blue) !important;
}

.navbar > .container-fluid {
  padding-left: 0;
  display: flex;
  justify-content: flex-start;
}

.navbar-nav {
  padding: 1rem;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--text-on-tf-blue);
}

.nav-link-login {
  width: fit-content;
  border: 1.5px solid var(--text-on-tf-blue);
  padding: 0.25rem 1.25rem !important;
  border-radius: 0.5rem;
}

.nav-link-language {
  border: none;
  background-color: transparent;
}

.home-link i {
  color: var(--text-on-tf-blue);
}

.navbar-brand-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand-divider {
  height: 45px;
  width: 2px;
  background-color: var(--paper-on-bg);
  border-radius: 1px;
}

.navbar-brand {
  height: 100%;
  padding-block: 0;
  display: flex;
  align-items: center;
}

.navbar-brand.tf-brand {
  margin-left: 1.5rem;
}

.navbar-brand > img {
  height: '100%';
}

.wu-brand img {
  height: 50px;
  width: auto;
}

.tf-brand img {
  max-height: 18px;
  width: auto;
}

.navbar-toggler {
  margin-left: auto;
  border-color: var(--text-on-tf-blue);
}

.navbar-toggler-icon {
  height: 20px;
  width: 20px;

  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(255,255,255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/* .nav-item {
    flex: 1;
}
.nav-item:nth-of-type(3),
.nav-item:nth-of-type(4) {
    flex: 2;
} */

@media (min-width: 768px) {
  .wu-brand img {
    height: 60px;
  }

  .tf-brand img {
    max-height: 30px;
  }
}

@media (min-width: 992px) {
  .nav-link {
    font-size: 0.75rem;
  }
}

@media (min-width: 1200px) {
  .nav-link {
    font-size: 1rem;
  }

  .wu-brand img {
    height: 80px;
  }

  .tf-brand img {
    max-height: 30px;
  }
}

/* -------------- */
/*     Footer     */
/* -------------- */
.footer__banner {
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
  background-color: var(--paper-on-dark-bg);
  isolation: isolate;
}

.footer__banner::before {
  content: '';
  position: absolute;
  height: 400px;
  width: 400px;
  border-radius: 200px;
  background-color: #383e4d;
  right: -10%;
  z-index: -1;
}

.footer__banner_btn {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  align-self: stretch;
  background-color: #383e4d;
  position: relative;
  padding: 2rem;
  color: var(--paper-on-bg);
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.footer__banner_btn:hover {
  color: var(--text-on-dark-bg);
}

.footer__section {
  flex: 0 0 calc(100% - 1rem);
  display: flex;
  margin-top: 2rem;
  flex-direction: column;
}

.footer__row {
  gap: 1rem;
}

.footer-brand-divider {
  width: 156px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--paper-on-bg);
}

@media (min-width: 768px) {
  .footer__section {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (min-width: 992px) {
  .footer__section {
    flex: 0 0 calc(25% - 1rem);
  }
}

@media (min-width: 1200px) {
  .footer__section {
    flex: 0 0 calc(20% - 1rem);
  }
}

.footer__section__list {
  gap: 0.25rem;
  display: flex;
  flex-direction: column;
}

.footer__text {
  font-size: 0.875rem;
}

.footer__text a {
  text-decoration: none;
  color: var(--text-on-dark-bg);
  transition: color 0.25s ease-in-out;
}

.footer__text a:hover {
  color: var(--paper-on-bg);
}

.footer__heading {
  opacity: 0.45;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.footer__hr {
  border: none;
  height: 1px;
  background-color: var(--text-on-dark-bg);
}

.footer__hr.right {
  width: 20%;
  align-self: flex-end;
  margin-right: 3rem;
}

/* ----------------- */
/*   Scroll To Top   */
/* ----------------- */
.scrollToTop {
  z-index: 9;
  right: 4rem;
  width: 3rem;
  height: 3rem;
  bottom: 4rem;
  border: 1px solid var(--bg);
  opacity: 1;
  position: fixed;
  transition: all 0.25s ease-in-out;
  visibility: visible;
  border-radius: 1.5rem;
  background-color: var(--paper-on-dark-bg);
}

.scrollToTop i {
  color: var(--paper-on-bg);
}

.scrollToTop.hidden {
  opacity: 0;
  visibility: hidden;
}
