.page-header {
  background-color: #f7bca6;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

@media screen and (width >= 1088px) {
  .page-header {
    margin-bottom: 5rem;
  }
}

.page-header__content {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

@media screen and (width >= 1088px) {
  .page-header__content {
    padding-bottom: max(4.375rem, 15% - 43px);
  }
}

.page-header__content--inner {
  text-align: center;
  max-width: 37.5rem;
  padding: max(4.375rem, 15%) 2rem;
}

@media screen and (width >= 1088px) {
  .page-header__content--inner {
    text-align: left;
  }
}

.page-header__content--inner h1 {
  margin-bottom: 1.25rem;
}

.page-header__content--inner p {
  color: #0a0a0a;
  font-size: 1.375rem;
  font-weight: 200;
  line-height: 1.375rem;
}

@media screen and (width >= 1088px) {
  .page-header__content--inner p {
    font-size: 1.5625rem;
    line-height: 1.5625rem;
  }
}

.page-header__image {
  z-index: 10;
  position: relative;
}

.page-header__image img {
  width: calc(100% - 3.125rem);
  margin-left: 3.125rem;
  display: block;
}

@media screen and (width >= 1088px) {
  .page-header__image img {
    width: 100%;
    margin-left: 0;
  }
}

.page-header:after {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 20%;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (width >= 1088px) {
  .page-header:after {
    height: 15%;
  }
}

.navbar-header {
  z-index: 1;
  clear: both;
  flex-direction: row;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  display: flex;
  position: relative;
}

.navbar-header > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.navbar-header > ul > .nav-item {
  margin-left: 0;
  padding-left: 0;
  position: relative;
}

.navbar-header > ul > .nav-item a {
  color: #333;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  transition: all .3s ease-in;
  position: relative;
}

.navbar-header > ul > .nav-item a:after {
  content: "";
  background: #f7bca6;
  width: 0%;
  height: .1875rem;
  transition: all .3s ease-in;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-header > ul > .nav-item a.active:after, .navbar-header > ul > .nav-item a:hover:after {
  width: 100%;
}

#navbar {
  background-color: #fff;
  padding: 1rem 0;
  position: relative;
}

#navbar:before {
  content: "";
  background-color: #f7bca6;
  width: 25%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (width >= 1088px) {
  #navbar {
    padding: 1.82781rem 0;
  }
}

#navbar .block-language {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (width >= 1088px) {
  #navbar .block-language {
    margin-left: 1.25rem;
    position: relative;
  }
}

#navbar .block-language .links li.is-active {
  display: none;
}

#navbar .block-language .links li a {
  color: #333;
  letter-spacing: .168125rem;
  text-transform: uppercase;
  align-items: center;
  font-size: .8125rem;
  font-weight: 400;
  display: flex;
  position: relative;
}

#navbar .block-language .links li a:after {
  content: "";
  background: #f7bca6;
  width: 0%;
  height: .1875rem;
  transition: all .3s ease-in;
  position: absolute;
  bottom: 0;
  left: 0;
}

#navbar .block-language .links li a.active:after, #navbar .block-language .links li a:hover:after {
  width: 100%;
}

#navbar .logo img {
  width: 7.75rem;
  height: auto;
  display: block;
}

@media screen and (width >= 1088px) {
  #navbar .logo {
    padding-left: 2rem;
  }
}

#navbar .navbar-header .nav-item.dropdown:hover .nav-link.dropdown:after, #navbar .navbar-header .nav-item.dropdown:focus-within .nav-link.dropdown:after {
  width: 100%;
}

#navbar .navbar-header .nav-item.dropdown:hover a.dropdown:before, #navbar .navbar-header .nav-item.dropdown:focus-within a.dropdown:before {
  transform: rotate(180deg);
}

#navbar .navbar-header .nav-item.dropdown a.dropdown {
  align-items: center;
  gap: 10px;
  display: flex;
  position: relative;
}

#navbar .navbar-header .nav-item.dropdown a.dropdown:before {
  content: "";
  order: 2;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  transition: transform .3s ease-in-out;
}

#navbar .navbar-header .nav-item.dropdown:hover .dropdown-menu, #navbar .navbar-header .nav-item.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

#navbar .navbar-header .nav-item.dropdown .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  border: none;
  border-radius: 0;
  min-width: 15.625rem;
  height: auto;
  padding: 2em;
  transition: opacity .25s ease-in-out, visibility .25s ease-in-out;
  display: block;
  position: absolute;
  top: calc(100% - .375rem);
  left: auto;
}

#navbar .navbar-header .nav-item.dropdown .dropdown-menu__inner ul {
  flex-direction: column;
  gap: 5px;
  padding: 0;
  display: flex;
}

#navbar .navbar-header .nav-item.dropdown .dropdown-menu__inner li {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: inline-flex;
  margin-left: 0 !important;
}

#navbar .navbar-header .nav-item.dropdown .dropdown-menu__inner li a {
  color: #000;
  width: 100%;
  display: flex;
  position: relative;
}

#navbar .navbar-header .nav-item.dropdown .dropdown-menu__inner li a:after {
  background: #000;
}

footer {
  padding: 2.5rem 0;
}

@media screen and (width >= 1088px) {
  footer {
    padding: 5rem 0;
  }
}

footer h6 {
  color: #333;
  text-transform: uppercase;
  font-family: multipleSansProAlt, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1rem;
}

footer p, footer address {
  color: #333;
  font-size: .875rem;
  font-style: normal;
  font-weight: normal;
  line-height: 2.5em;
}

footer p i, footer address i {
  margin-right: .625rem;
}

footer p a, footer address a {
  color: #333;
}

footer p a:hover, footer p a:focus, footer address a:hover, footer address a:focus {
  text-decoration: underline;
}

footer .contentbase .columns .column:last-child h6 {
  opacity: 0;
  overflow: hidden;
}

