/* ------------------------------------------------------------ *\
	main
\* ------------------------------------------------------------ */

.main {
  background-color: var(--body-background-color);
  flex: 1 0 auto;
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------ *\
btn

Basic classes for all buttons throgh out all pages.
\* ------------------------------------------------------------ */

.btn {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  appearance: none;
  border-radius: 0.4rem;
  background-color: var(--button-background-primary);
  border: 0;
  padding: 0 1.5rem;
  min-height: 4.6rem;
  line-height: 4.6rem;
  font-family: var(--button-text-font);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.006em;
  color: var(--button-text-color);
  position: relative;
}

.btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--button-background-primary);
  border-radius: 0.4rem;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

.btn span {
  z-index: 2;
  position: relative;
}

@media (hover: hover) {
  .btn:hover:after {
    opacity: 0;
    visibility: hidden;
  }

  .btn:focus:before {
    opacity: 1;
  }
}

/*  btn blue  */

.btn--blue {
  color: var(--button-text-color);
  background: var(--button-background-secondary);
}

.btn--blue:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--button-background-secondary);
  border-radius: 3px;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

/* ------------------------------------------------------------ *\
section dark
\* ------------------------------------------------------------ */

.section-dark-alt {
  padding: 1.5rem 0 1.3rem;
  background: var(--nav-background-secondary-color);
  color: var(--nav-text-color);
}

.section-dark-alt h2 {
  margin-left: 0.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--nav-text-color);
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .section-dark-alt h2 {
    font-size: 3.4rem;
    letter-spacing: -0.004rem;
  }
}

/* ------------------------------------------------------------ *\
Breadcrumbs
\* ------------------------------------------------------------ */

.breadcrumbs {
  margin-bottom: 0.8rem;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
}

.breadcrumbs ul li {
  position: relative;
}

.breadcrumbs ul li+li {
  margin-left: 0.2rem;
  padding-left: 0.9rem;
}

.breadcrumbs ul li+li:after {
  content: ">";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--nav-text-color);
  font-size: 1.4rem;
}

.breadcrumbs ul li {
  color: var(--nav-text-color);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.57;
}

.breadcrumbs ul li a {
  color: var(--anchor-text-color-white);
  text-decoration: none;
}

/* ------------------------------------------------------------ *\
Section alt
\* ------------------------------------------------------------ */

.section-alt {
  background-color: var(--body-background-color);
  padding: 2.4rem 0;
}

.section-alt .section__head {
  padding: 1.8rem 0;
  background: var(--banner-background-color);
}

.section-alt .section__head h1 {
  font-size: 3.1rem;
  line-height: 1.2;
  letter-spacing: -0.004em;
  font-weight: 700;
  color: var(--banner-text-color);
  margin-bottom: 0;
}

.section-alt h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2.4rem;
}

@media only screen and (max-width: 767px) {
  .section-alt {
    padding-bottom: 2.8rem;
  }

  .section-alt .section__head {
    padding: 1.7rem 0 1.6rem;
  }

  .section-alt .section__head h1 {
    font-size: 2.7rem;
  }

  .section-alt h2 {
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
  }
}

/*  section alt text  */

.section-alt--text {
  padding: 0 0 0.4rem;
  font-size: 1.6rem;
  line-height: 1.2;
}

.section-alt--text .section__body {
  padding: 1.6rem 0rem 1.8rem;
}

.section-alt--text .section__body-inner {
  padding: 0rem 1rem;
  margin-bottom: 1.9rem;
}

.section-alt--text .section__body-inner.support-phone {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-alt--text h2 {
  margin-bottom: 1rem;
  color: var(--header-text-primary);
}

.section-alt--text .section__entry {
  margin-bottom: 1.5rem;
  margin-top: -0.2rem;
}

.section-alt--text .section__entry span {
  text-transform: uppercase;
}

.section__entry ol.roman {
  margin-top: 1rem;
  margin-bottom: 1rem;
  list-style-position: outside;
  padding-left: 3rem;
}

.section__entry ol.roman li {
  text-indent: 0rem;
  margin-left: 0;
  padding-left: 0.5rem;
  margin-bottom: 0.5rem;
}

.section__entry ol.roman p {
  margin-top: 1.5rem;
  margin-left: -2rem;
}

.section__entry ol.roman li::marker {
  font-weight: 500;
}

.section__entry ol.roman ul {
  margin-left: 2rem;
}

.section-alt--text .section__body-inner {
  padding: 0rem 2rem;
  margin-bottom: 1.9rem;
}

.section-alt--text .section__body-inner ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.section-alt--text h3 {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-alt--text h4 {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.section-alt--text p+h4 {
  margin-top: 2.2rem;
}

.section-alt--text .section__subtitle {
  margin-bottom: 0.3rem;
}

.section-alt--text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.section-alt--text h5 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.section-alt--text h5 span {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
}

.section-alt--text address {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 2.3rem;
}

.section-alt--text em {
  font-style: italic;
  font-weight: 400;
  margin-left: -0.8rem;
  display: inline-block;
  max-width: 111.1rem;
  color: var(--body-text-color-emphasis);
  margin-top: 1.9rem;
}

@media only screen and (max-width: 767px) {
  .section-alt--text {
    padding: 0 0 1.4rem;
    font-size: 1.4rem;
  }

  .section-alt--text .section__body {
    padding: 1.8rem 0rem 0.4rem;
  }

  .section-alt--text .section__entry {
    margin-bottom: 2.2rem;
  }

  .section-alt--text h2 {
    margin-bottom: 1.5rem;
  }

  .section-alt--text h3 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .section-alt--text h4 {
    margin-bottom: 0.5rem;
  }

  .section-alt--text p+h4 {
    margin-top: 2rem;
  }

  .section-alt--text h5 {
    margin-bottom: 0.5rem;
  }

  .section-alt--text h5 span {
    display: block;
    margin-top: 0.1rem;
  }

  .section-alt--text p:not(:last-child) {
    margin-bottom: 1.2rem;
  }

  .section-alt--text address {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
  }

  .section-alt--text em {
    margin-top: 2.2rem;
  }

  .section-alt--text .section__body-inner {
    padding: 0rem 2rem;
    margin-bottom: 1.2rem;
  }
}

/* ------------------------------------------------------------ *\
list credits
\* ------------------------------------------------------------ */

.list-credits {
  margin-left: 0.2rem;
  list-style: none;
}

@media only screen and (max-width: 767px) {
  .list-credits {
    margin-left: 0;
  }
}

/* ------------------------------------------------------------ *\
link blue
\* ------------------------------------------------------------ */
.link-blue {
  text-decoration: underline;
  color: var(--anchor-text-color-vibrant);
}

.link-blue:hover {
  text-decoration: none;
}

/* ------------------------------------------------------------ *\
Disclaimer
\* ------------------------------------------------------------ */

.disclaimer {
  background: var(--disclaimer-background-color);
  font-size: 1.2rem;
  line-height: 1.67;
  letter-spacing: -0.018em;
  padding: 2.4rem 0 2.3rem;
  color: var(--disclaimer-text-color-base);
}

.disclaimer .disclaimer__inner {
  max-width: 112rem;
  margin: 0 auto;
}

.disclaimer a {
  color: inherit;
}

@media only screen and (max-width: 767px) {
  .disclaimer {
    padding: 1.5rem 0 1.3rem;
    line-height: 1.33;
    letter-spacing: -0.017em;
  }

  .disclaimer .disclaimer__inner {
    padding-right: 0.2rem;
  }
}