@charset "UTF-8";

@font-face {
  font-family: "OverusedGroteskRoman";
  src: url("../fonts/OverusedGroteskRoman.eot");
  src:
    url("../fonts/OverusedGroteskRoman.eot") format("embedded-opentype"),
    url("../fonts/OverusedGroteskRoman.woff2") format("woff2"),
    url("../fonts/OverusedGroteskRoman.woff") format("woff"),
    url("../fonts/OverusedGroteskRoman.ttf") format("truetype"),
    url("../fonts/OverusedGroteskRoman.svg#OverusedGroteskRoman") format("svg");
}

body {
  font-family: "OverusedGroteskRoman", var(--default-font-family);
}
:root {
  --default-font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu,
    "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB",
    "Microsoft Yahei UI", "Microsoft Yahei", "Source Han Sans CN", sans-serif;
}

html,
body {
  height: 100%;
}
html {
  font-size: 100%;
}
body {
  position: relative;
  color: white;
  -webkit-font-smoothing: antialiased;
  background: black url("../images/bg.jpg") center center no-repeat;
  background-size: cover;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: color-mix(in srgb, black 70%, transparent);
  pointer-events: none;
  z-index: -1;
}
h1,
h2,
h3,
h4 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}
a:link,
a:visited {
  color: white;
  -moz-transition:
    color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  -webkit-transition:
    color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  -ms-transition:
    color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  transition:
    color 0.2s ease-in-out,
    border-bottom-color 0.2s ease-in-out;
  text-decoration: none;
  border-bottom: solid 1px;
}
a:hover {
  color: white;
  border-bottom-color: transparent;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Base-styles ............................. */

.box_margin {
  margin-bottom: 60px;
}
.box_margin2 {
  margin-bottom: 30px;
}
.sml_in {
  display: inline-block;
}

/* Header ............................................................... */

.content {
  position: relative;
  height: 100%;
  min-height: 620px;
}
.content a {
  white-space: nowrap;
}
.content_in {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 150%;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.content_in img {
  width: 100%;
  max-width: 400px;
}
.content_in h1 {
  font-size: 250%;
  line-height: 1.2;
}
.content_in h2 {
  font-size: 130%;
  line-height: 1.3;
}

/* Footer ............................................................... */

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer li {
  display: inline-block;
}

/* Effects ............................. */

a {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* RESPONSIVE STRUCTURE
--------------------------------------- */

@media screen and (max-width: 1440px) {
  .box_margin {
    margin-bottom: 30px;
  }
  .content_in img {
    width: 100%;
    max-width: 300px;
  }
  .content_in {
    font-size: 130%;
  }
  .content_in h1 {
    font-size: 200%;
  }
  .content_in h2 {
    font-size: 125%;
  }
  .footer {
    padding: 10px 30px;
  }
}

@media screen and (max-width: 767px) {
  .content_in img {
    max-width: 250px;
  }
  .content_in {
    font-size: 120%;
  }
  .footer,
  .footer div {
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .content {
    min-height: inherit;
  }
  .content_in img {
    max-width: 200px;
  }
}

@media screen and (max-width: 480px) {
  .content_in {
    font-size: 90%;
  }
  .sml > .row > div {
    width: 100%;
    margin-left: 0;
  }
}
