/* Inner Styles */

/* ///////////////////// */

/* -------------- */
/* SETUP */
/* DESKTOP */
/* TABLET */
/* MOBILE */
/* MINI-MOBILE */
/* SPECIAL BREAKPOINTS */
/* -------------- */

/* DESKTOP //////////////////////////////////////////////////////////////// */
/*
01. Inner Content
*/

/*
-----------------------------------------------------------------------------

01. Inner Content

-----------------------------------------------------------------------------
*/

/******* Splashscreen */

section.__splash {
  background-color: var(--color__light);
}

section.__splash .sec-wrap__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section.__splash .splash-content {
  height: 90vh;
  min-height: 30rem;
}

section.__splash h1.title {
  max-width: 50rem;
  text-align: center;
  margin-bottom: 0.25em;
}

section.__splash address {
  margin-top: 2.5em;
}

section.__splash p {
  max-width: 35rem;
}

section.__splash .logo {
  display: block;
  width: 4rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  opacity: .8;
}

section.__splash .main {
  display: block;
  width: auto;
  max-width: 70vw;
  min-width: 30em;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  transform: translate3d(10%, 0, 0);
}

section.__splash .bg {
  width: 100%;
  height: 20vh;
  min-height: 10rem;
  background-image: url("../img/pattern.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: -4em;
}

section.__splash a:hover {
  opacity: 0.7;
}

section.__splash img.splash {
  margin-top: 4em;
  width: 20rem;
  height: 15rem;
  border-radius: 0.5em;
  border: 0.0625rem solid var(--color__accent);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  object-fit: cover;
  object-position: center top;
}

/* MINI-DESKTOP //////////////////////////////////////////////////////////////// */

@media only screen and (max-width: 120em) {
  section.__splash .main {
    max-width: 70vw;
    min-width: 10em;
  }
}

/* TABLET //////////////////////////////////////////////////////////////// */

@media only screen and (max-width: 55em) {}

/* MOBILE //////////////////////////////////////////////////////////////// */

@media only screen and (max-width: 36em) {}

/* MINI MOBILE //////////////////////////////////////////////////////////////// */

@media only screen and (max-width: 27em) {}