@font-face {
  font-display: swap;
  font-family: 'Marianne';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Marianne-Regular.woff2') format('woff2'),
  url('../fonts/Marianne-Regular.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-family: "Marianne";
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/Marianne-Regular_Italic.woff2') format('woff2'),
  url('../fonts/Marianne-Regular_Italic.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-family: "Marianne";
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Marianne-Bold.woff2') format('woff2'),
  url('../fonts/Marianne-Bold.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-family: "Marianne";
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/Marianne-Bold_Italic.woff2') format('woff2'),
  url('../fonts/Marianne-Bold_Italic.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-family: "Marianne";
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Marianne-Light.woff2') format('woff2'),
  url('../fonts/Marianne-Light.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-family: "Marianne";
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/Marianne-Light_Italic.woff2') format('woff2'),
  url('../fonts/Marianne-Light_Italic.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-family: "Marianne";
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Marianne-Medium.woff2') format('woff2'),
  url('../fonts/Marianne-Medium.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-family: "Marianne";
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/Marianne-Medium_Italic.woff2') format('woff2'),
  url('../fonts/Marianne-Medium_Italic.woff') format('woff');
}

.content-wrapper {
  height: calc(100% - 29rem);
  display: flex;
  gap: 1.25rem;
  margin-bottom: 0;

  &.is-not-answer {
    background-color: #EFF1F5;
    padding: 2.5rem calc(50% - 33.1875rem);

    @media screen and (min-width: 1024px) and (max-width: 1279px) {
      padding: 2.5rem 2rem;
    }

    @media screen and (max-width: 1023px) {
      padding-top: 0;
      padding-bottom: 0;
    }
  }

  @media screen and (max-width: 1023px) {
    padding-top: 0;
    padding-bottom: 0;
  }
}

a, p, h1, span {
  font-family: 'Marianne', sans-serif;
}

.custom-nav {

  nav ul {
    list-style: none;
    margin: 0 auto;
    padding-left: 0;
  }

  nav ul li {
    display: inline-block;
    font-size: 0.7rem;
    color: black;
  }

  nav ul li a, nav ul li a:visited {
    text-decoration: none;
    color: black;
  }

  .breadcrumb ul li+li:before {
    padding: 0.375rem;
    color: black;
    content: url("../images/arrow--point--black--right.svg");
  }

  @media screen and (max-width: 1023px){
    display: none;
  }
}

.custom-breadcrumb {
  align-items: center;
  display: flex;
  gap: 0.625rem;

  &__image {
    height: 0.75rem;
    width: 0.375rem;
  }

  &__link {
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    white-space: nowrap;

    &:last-child {
      flex-shrink: 1;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }
}

@media screen and (max-width: 1023px) {
  .content-wrapper {
    height: calc(100% - 21.375rem);
    padding: 0;
    margin: 1.875rem auto 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .content-wrapper {
    height: calc(100% - 19.875rem);
  }
}


@media screen and (max-width: 50rem) {
  .wrapper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.button--icon {
  align-items: center;
  background-color: #000091;
  border-radius: 4.375rem;
  display: flex;
  min-height: 3.125rem;
  justify-content: center;
  min-width: 3.125rem;
  cursor: pointer;

  &.small {
    min-height: 2.5rem;
    min-width: 2.5rem;
  }

  &.light-blue {
    background-color: #00B5E2;
  }
}
