* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --background-color: #000000;
  --text-color: #fff;
  --link-color: #ff8400;
}
html {
  font-size: 10px;
}
body {
  background: var(--background-color);
  color: var(--text-color);
  font-size: 1.6rem;
}
.lang-link.text-white {
  position: absolute;
  right: 38px;
  top: 10px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 1;
  text-decoration: none;
}
header .navbar {
  min-height: 100px;
}
.navbar-brand img {
  max-width: 140px;
}
.site-logo {
  display: flex;
  align-items: flex-start;
}

.logo-name {
  display: flex;
  flex-direction: column;
  margin-top: 1.6rem;
  font-size: 9px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link {
  color: var(--link-color);
  font-size: 1.28rem;
  margin-right: 0.5rem;
}
.navbar-dark .navbar-nav .nav-item:not(:last-child) {
  position: relative;
}
.navbar-dark .navbar-nav .nav-item:not(:last-child)::after {
  content: "|";
  color: #ff8400;
  position: absolute;
  top: 44%;
  right: 0px;
  transform: translateY(-50%);
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M24 6h-24v-4h24v4zm0 4h-24v4h24v-4zm0 8h-24v4h24v-4z' style='&%2310; fill: %23fff;&%2310;'/%3E%3C/svg%3E");
  width: 3rem;
  height: 3rem;
  background-size: cover;
}
.btn {
  font-size: 1.6rem;
}
.close {
  font-size: 2rem;
}
.h5,
h5 {
  font-size: 1.5rem;
}
.section-hero h1 {
  max-width: 90%;
  margin: 1rem auto 1.5rem;
  font-size: 1.8rem;
}

.section-hero h4 {
  max-width: 90%;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  section.section-hero {
    background: var(--background-color);
    margin-top: -30px;
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .section-hero h1 {
    margin-top: 1rem;
    max-width: 90%;
  }

  .section-hero h4 {
    max-width: 80%;
  }

  div#navbarNav {
    text-align: center;
  }
  .site-logo {
    transform-origin: 0 0;
    transform: scale(0.8);
  }
  .navbar-toggler {
    margin-left: auto;
  }
}
