/*-----------------------------------------------------------*/
.dp-header {
  overflow: hidden;
  width: 100%;
  max-width: 1048px;
  text-align: center;
  display: block;
  position: relative;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.4em;
  background-color: #fff;
  --FONT-CLARINS: "ClarinsRegular", "Clarins";
  --FONT-GOTHAM-LIGHT: "Gotham_Light";
  --FONT-GOTHAM-BOOK: "Gotham SSm book A", "Gotham SSm book B", "Gotham Book", Helvetica, Arial, sans-serif;
  --FONT-GOTHAM-MEDIUM: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium", "GothamMedium", Helvetica, Arial, sans-serif;
  font-family: var(--FONT-GOTHAM-BOOK);
  color: #333333;
}

.dp-header__background {
  display: block;
  width: 100%;
}

.dp-header__background img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.dp-header__content {
  display: block;
  padding: 0 16px;
}

.dp-header__main-title {
  font-size: 60px;
  margin: 0 auto;
  font-weight: normal;
  padding-top: 24px;
  padding-bottom: 16px;
  font-family: var(--FONT-CLARINS);
  line-height: 1em;
  color: #333333;
}

.dp-header__main-title span {
  display: block;
}

.dp-header__main-title br {
  display: none;
}

.dp-header__secondary-title {
  text-transform: uppercase;
  font-weight: normal;
  font-family: var(--FONT-GOTHAM-BOOK);
  margin: 0 auto;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.4em;
  letter-spacing: 3.5px;
}

.dp-header__bold-text {
  font-size: 14px;
  line-height: 1.4em;
  margin: 0 auto;
  max-width: 680px;
  font-weight: normal;
  font-family: var(--FONT-GOTHAM-MEDIUM);
}

.dp-header__bold-text+.dp-header__bold-text,
.dp-header__bold-text+.dp-header__text {
  margin-top: 20px;
}

.dp-header__text {
  font-size: 14px;
  line-height: 1.4em;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 680px;
  font-weight: normal;
  font-family: var(--FONT-GOTHAM-BOOK);
}

.dp-mentions {
  width: calc(100% - 40px);
  margin: 0px auto;
  max-width: 1264px;
  padding-bottom: 64px;
}

.dp-mentions__text {
  font-size: 11px;
  opacity: 0.5;
  margin: 0 auto;
  line-height: 1.4em;

}

.dp-header__nav {
  margin: 0 auto;
  padding-top: 32px;
  margin-bottom: 4px;
}

.dp-header__nav ul {
  padding: 0;
  margin: 0 auto;
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  z-index: 10;
  background-color: #fff;
  max-width: 1024px;
  row-gap: 24px;
  column-gap: 40px;
}

.dp-header__nav ul li {
  min-width: 150px;
  text-align: center;
}

.dp-header__nav ul li a {
  border-radius: 36px;
  padding: 0 16px;
  height: 36px;
  border: 1px #B0A9A5 solid;
  line-height: 36px;
  display: block;
  font-family: var(--FONT-GOTHAM-MEDIUM);
  color: #333;
  text-decoration: none;
  background-color: #fff;
  font-size: 12px;
  outline: 0;
}

.dp-header__nav ul li a:hover,
.dp-header__nav ul li a[data-selected="1"] {
  border: 1px #be0f34 solid;
  color: #be0f34;
}

.dp-header__nav ul li a:focus-visible {
  box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #6893D2;
}

@media (max-width: 1023px) and (min-width: 762px) {
  .dp-header__background img {
    width: 1048px;
    margin-left: calc(50% - 524px);
    max-width: 1048px;
  }
}

@media (max-width: 761px) {
  .dp-header__main-title {
    font-size: 45px;
    padding: 15px 0px;
  }

  .dp-header__main-title br {
    display: block;
  }

  .dp-header__nav {
    padding-bottom: 40px;
  }

  .dp-header__nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .dp-header__nav ul li {
    flex-basis: 160px;
    margin: 5px;
  }

  .dp-header__nav ul li a {
    border-radius: 20px;
    height: 40px;
    line-height: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .dp-header__nav ul li a span {
    display: none;
  }
}