* {
  font-family: "Lato", sans-serif;
  color: #fff;
}

body {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  line-height: 1.4rem;
}

.d-none {
  display: none;
}

h2 {
  font-size: 1.5em;
  margin-bottom: 1vh;
  font-weight: 600;
}

p {
  padding: 0;
  margin: 0;
}

a {
  color: #cf4500;
}
.locale-select a {
  font-size: smaller;
}
.selected-locale {
  font-weight: bolder;
  color: #ccc;
}

.pn-link {
  color: #fff;
  text-decoration: none;
}

.pn-span {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: block;
  text-transform: uppercase;
  padding-bottom: none !important;
  padding-top: 1rem;
}

.inline-link {
  text-decoration: none;
  display: inline-block;
}

#canv {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
}

@keyframes logoAnimation {
  0% {
    transform: scale(0.1);
  }

  50% {
    transform: scale(2.3);
  }

  100% {
    transform: scale(1);
  }
}

.animated-logo {
  animation: logoAnimation 2s;
}

.container {
  z-index: 999 !important;
  position: relative;
  max-width: 640px;
  padding-left: 20px;
  padding-right: 20px;
}

.navbar {
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
  z-index: 99999 !important;
}

.bg-dark {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.navbar-brand {
  div {
    color: white;
    font-size: 1.5rem;
    display: inline-block;
  }
}
.navbar-brand:hover,
.navbar-brand:focus {
  color: #fff;
}

.navbar-toggler {
  color: #fff;
  background: rgba(255, 255, 255, 0.4);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.3rem;
  height: 1.4rem;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.nav-link {
  color: #fff !important;
}

.nav-link.active {
  color: #cf4500 !important;
}

#cookies-eu-banner {
  background-color: #000;
  color: #fff;
  z-index: 9999;
  position: absolute;
  padding: 12px;
  bottom: 0;
  border: 1px solid #cf4500;
  margin: 20px;
  align-self: center;
}

.co-funded-logo {
  width: 100px !important;
}

.footer {
  text-align: center;
  padding: 12px;
  color: rgb(151, 192, 227);
  z-index: 999;
  margin-top: 10px;
  position: relative;
  bottom: 20px;
  width: 100%;
  opacity: 0.8;

  * {
    font-size: 1rem;
    text-decoration: none;
    font-weight: 300;
    font-style: normal;
  }

  a {
    margin-left: 8px;
    margin-right: 8px;
  }
  a {
    color: #6c757d; /* A slightly more noticeable gray */
    text-transform: uppercase;
    font-size: 0.9rem;
  }
  a:hover {
    color: #fff;
  }

  .copyright {
    font-size: 1rem;
    margin-top: 12px;
  }

  .co-funded-logo {
    width: 190px !important;
    display: block;
    margin: 12px auto;
  }
}

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

.divider {
  background-color: rgba(207, 69, 0, 0.8);
  height: 8px;
  width: 200px;
  margin: 1.5rem auto;
  /* Center horizontally and add vertical margin */
  display: flex;
  align-items: center;
  opacity: 0.1;
  /* Center vertically */
}

.text-primary,
.lead {
  color: #fff;
}

.btn-outline-primary {
  color: #fff;
  border-color: #fff;
}

.btn-outline-primary:hover {
  border-color: #cf4500;
  background: transparent;
}

.ai-first-page-row {
}

.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeIn {
  animation-name: fadeIn;
}

.animate__fadeInDown {
  animation-name: fadeInDown;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

.animate__pulse {
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    display: none;
  }

  to {
    opacity: 1;
    display: block;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    color: rgba(207, 69, 1);
    transform: translate3d(0, 100%, 0);
  }

  to {
    color: #fff;
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}
