@font-face {
  font-family: "Open Sans Light";
  src: url(fonts/OpenSans-Light.ttf);
}
@font-face {
  font-family: "Noto Sans";
  src: url(fonts/NotoSans-Regular.ttf);
}
@font-face {
  font-family: "Gothic";
  src: url(fonts/GOTHIC.TTF);
}
:root {
  --primary-color: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Gothic", sans-serif;
  line-height: 1.5;
  background: black;
}

a {
  text-decoration: none;
  color: white;
}

.content {
  z-index: 2;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.showcase {
  height: 100vh;
  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;
  text-align: center;
  color: #fff;
  padding: 20px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .showcase {
    margin-left: 5%;
  }
}
@media screen and (max-width: 550px) {
  .showcase {
    width: 90%;
  }
}
.showcase .logo {
  max-height: 763px;
  height: 90%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .showcase .logo {
    max-height: 500px;
  }
}
@media screen and (max-width: 550px) {
  .showcase .logo {
    display: none;
  }
}
.showcase .logo_alt {
  display: none;
}
@media screen and (max-width: 550px) {
  .showcase .logo_alt {
    display: block;
    width: 100%;
    margin-bottom: 3rem;
  }
}
.showcase h2 {
  font-size: 4rem;
  font-weight: 300;
}
@media screen and (max-width: 979px) {
  .showcase h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .showcase h2 {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 480px) {
  .showcase h2 {
    font-size: 2rem;
  }
}
.showcase h3 {
  margin-bottom: 5rem;
  font-size: 2rem;
  font-weight: 300;
  width: 85%;
}
@media screen and (max-width: 767px) {
  .showcase h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .showcase h3 {
    font-size: 1.2rem;
  }
}
.showcase p {
  text-align: center;
  margin-top: 50px;
}
.showcase p a {
  font-size: 1rem;
  transition: opacity 0.3s ease-in-out;
}
.showcase p a:hover {
  opacity: 0.8;
}
footer {
  background-color: #fff;
  padding: 2rem 1rem;
  text-align: right;
}
footer p {
  font-size: 0.8rem;
  color: #035768;
  font-weight: 300;
  line-height: 2;
  font-family: "Open Sans Light", sans-serif;
}
footer p a {
  color: #035768;
  text-decoration: none;
}
footer p span:after {
  content: "|";
  margin: 0 5px;
}
footer p span:last-child:after {
  content: "";
}

.law {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1500px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 2rem;
  color: white;
}
.law h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.law h2 {
  font-size: 1.7rem;
  margin-top: 2rem;
  margin-bottom: 0.2rem;
}
.law p {
  margin-bottom: 2rem;
  line-height: 1.8;
}
.law p a {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
