/****************************************
* Typography
****************************************/

h2 {
  font-size: 30px;
}

/****************************************
* Header
****************************************/

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
}

header .d-flex {
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  max-width: 1000px;
}

header .nav-toggler {
  display: none;
}

header .logo img {
  width: 220px;
}

.anchor::before {
  content: '';
  display: block;
  margin: -95px 0 0;
  background-color: transparent;
  height: 95px;
  visibility: hidden;
}

/****************************************
* Navigation
****************************************/

nav {
  position: unset;
  display: flex;
  box-shadow: none;
  width: unset;
  max-width: unset;
  max-height: 100%;
  overflow: visible;
}

nav ul {
  flex-direction: row;
  border: none;
  padding: 0;
}

nav a {
  font-size: 14px;
  padding: 0 .25rem;
}

nav .btn + .btn {
  margin-left: 1rem;
}

/****************************************
* Banner
****************************************/

.banner {
  overflow: unset;
  height: calc(352px + (610 - 352) * (100vw - 768px) / (1400 - 768));
  max-height: 610px;
}

.banner .trail {
  top: unset;
  bottom: 0;
  left: 2rem;
  width: 30%;
  height: 100%;
}

.banner .d-flex {
  text-align: left;
}

/****************************************
* Card
****************************************/

.card.border .d-grid > div + div::before {
  top: 0;
  left: -1rem;
  width: 2px;
  height: 100%;
}

/****************************************
* Gallery slider
****************************************/

.gallery-container svg {
  /* width: 150%; */
}

/****************************************
* Horizontal scroll container
****************************************/

.scroll-item {
  flex: 0 0 calc(50% - 1rem);
}

/****************************************
* Contact form
****************************************/

#contact .background {
  background-position: 10%;
}

#contact .card {
  margin: 0 0 0 auto;
  width: 50%;
}

/****************************************
* Footer
****************************************/

footer {
  text-align: left;
}

footer .badge {
  margin: 0;
}

footer .social {
  justify-content: flex-start;
}

