* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

input, button, textarea {
  font-family: inherit;
}

textarea {
  resize: none;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.3;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

[class*=__container] {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.page,
.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.disclaimer {
  margin-block: 3.125rem;
}
.disclaimer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}

.header-disclaimer {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin-bottom: 3.125rem;
}
@media (max-width: 767.98px) {
  .header-disclaimer {
    max-width: 280px;
  }
}
.header-disclaimer__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.header-disclaimer__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0 1.25rem;
}
.header-disclaimer__title {
  font-family: "Bauhaus-93", sans-serif;
  line-height: 1;
  -webkit-text-stroke: 0.125rem rgb(242, 196, 250);
  font-size: 4.0625rem;
  text-align: center;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .header-disclaimer__title {
    font-size: 3.75rem;
  }
}
@media (max-width: 767.98px) {
  .header-disclaimer__title {
    font-size: 1.25rem;
    -webkit-text-stroke: 0.0125rem rgb(242, 196, 250);
  }
}
.header-disclaimer__title > span {
  display: block;
  color: rgb(78, 7, 87);
}
.header-disclaimer__title > span span {
  color: rgb(244, 78, 18);
}

.content-disclaimer {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.content-disclaimer__buttons {
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .content-disclaimer__buttons {
    margin-bottom: calc(30px + 20 * (100vw - 320px) / 480);
  }
}
.content-disclaimer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 800px) {
  .content-disclaimer__list {
    gap: calc(15px + 15 * (100vw - 320px) / 480);
  }
}
.content-disclaimer__link {
  display: inline-block;
  padding: 0.9375rem 1.875rem;
  color: #fff;
  font-weight: 700;
  background: #800000;
  border-radius: 0.625rem;
  font-size: 18px;
}
@media (max-width: 800px) {
  .content-disclaimer__link {
    font-size: calc(16px + 2 * (100vw - 320px) / 480);
  }
}
.content-disclaimer__link {
  border: 0.125rem solid transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .content-disclaimer__link:hover {
    background: transparent;
    color: #800000;
    border-color: #800000;
  }
}
.content-disclaimer__link-decline {
  font-weight: 400;
  color: gray;
  background: rgba(128, 128, 128, 0.3);
}
@media (any-hover: hover) {
  .content-disclaimer__link-decline:hover {
    background: transparent;
    border-color: gray;
    color: gray;
  }
}
.content-disclaimer__text {
  margin: 0 auto;
  line-height: 1.5;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 800px) {
  .content-disclaimer__text {
    font-size: calc(14px + 2 * (100vw - 320px) / 480);
  }
}
.content-disclaimer__text {
  text-align: justify;
  font-size: 0.875rem;
}
.content-disclaimer__sublink {
  color: #800000;
  text-decoration: underline;
}

.footer {
  padding: 20px 0;
}
.footer__copy {
  text-align: center;
  font-size: 14px;
}

.footer-menu {
  margin-bottom: 0.9375rem;
}
.footer-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4688rem;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 26.875rem) {
  .footer-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 430px) {
  .footer-menu__item:not(:last-child) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-menu__item:not(:last-child)::after {
    content: "|";
    display: inline-block;
    padding-left: 0.4688rem;
  }
}
.footer-menu__link {
  font-size: 14px;
  color: #000;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .footer-menu__link:hover {
    text-decoration: none;
  }
}