@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Inter:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --colorBlue: #132B3F;
  --colorOrange: #E9523F;
}
* {
  transition-duration: .3s;
}
.hidden {
  opacity: 0;
}
*::-webkit-scrollbar {
  position: absolute;
  width: 7px;
  height: 7px;
}
*::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
  border: solid 2px rgba(0, 0, 0, 0);
  border-radius: 100px;
}
*::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .2);
  border-radius: 100px;
  border: solid 2px rgba(0, 0, 0, 0);
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--colorOrange);
  width: 12px;
  height: 12px;
}
body {
  margin: 0;
  background-color: var(--colorBlue);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  color: white;
  font-size: 1rem;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}
h1 {
  font-size: 3.2rem;
}
h2 {
  font-size: 2.2rem;
}
h3 {
  margin-top: .7rem;
  font-size: 1.4rem;
}
p, li {
  margin-top: 0;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
  transition-duration: .2s;
}
a:hover {
  filter: invert(.6);
}
a.button1 {
  display: inline-block;
  background-color: var(--colorOrange);
  color: var(--colorBlue);
  padding: .7rem 2rem;
  margin: 1rem 0;
  border-radius: 1rem;
}
a.button1:hover {
  filter: invert(0);
  background-color: var(--colorBlue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 3px 0 var(--colorOrange);
}


.slideNext {
    display: inline-block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: solid 1px white;

    font-family: "Cal Sans", sans-serif;
      font-weight: 400;
      font-style: normal;
    text-decoration: none;
}
.slideNext img {
    width: 2rem;
    margin-bottom: -1rem;
    margin-right: .6rem;
}




#legals {
    position: fixed;
    width: 100%;
    text-align: right;
    z-index: 9;
    bottom: 0;
    right: 0;
    padding: .6rem;
    opacity: .4;
}
#legals a {
    text-decoration: underline;
}
#legals div {
    display: inline-block;
    vertical-align: bottom;
}
#legalsText {
    width: calc(100% - 2.5rem);
    position: relative;
	z-index: 0;
    transform: translateX(calc(100% + 5rem));
    overflow: hidden;
    margin-bottom: .3rem;
    opacity: .6;

    font-size: .8rem;
    letter-spacing: -.5px;

    transition-duration: .5s;
}
#legalsButton {
	position: relative;
	z-index: 2;
}
#legalsButton img {
    width: 1.3rem;
    margin-left: .7rem;
}

#legals:hover {
    opacity: 1;
}
#legals:hover #legalsText {
    transform: translateX(0);
}