/*-------------------------------------------------------
  Variables
-------------------------------------------------------*/

:root {
  --white: #ffffff;
  --white-rgb: 255, 255, 255;

  --turquoise: #033a3f;
  --turquoise-rgb: 3, 58, 63;

  --blue: #2cdcff;
  --blue-rgb: 194, 251, 255;

  --bone: #d0c8bb;
  --bone-rgb: 208, 200, 187;

  --black: #000000;
  --black-rgb: 0, 0, 0;

  --header-height: 140px;
  --admin-height: 32px;
}

/*-------------------------------------------------------
  Base
-------------------------------------------------------*/

html,
body {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}

body,
html {
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  background: var(--turquoise);
  color: var(--white);
  font-family: "aktiv-grotesk", sans-serif;
}

/*-------------------------------------------------------
  Holding Page
-------------------------------------------------------*/

.holding-page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 0 40px;
  z-index: 99;
  position: relative;
}

.layout-columns-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.background-image {
  width: 300px;
  height: 600px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-size: cover !important;
  background-position: top left !important;
  background-repeat: no-repeat !important;
}

@media screen and (max-width: 1200px) {
  .background-image {
    width: 200px;
    height: 400px;
  }
}

@media screen and (max-width: 860px) {
  .background-image {
    display: none;
  }
}

@media screen and (max-width: 600px) and (max-height: 800px) {
  .holding-page {
    align-items: flex-start;
    height: auto;
  }
}

/*-------------------------------------------------------
  Floating Elements
-------------------------------------------------------*/

.logo,
.footer {
  margin: 40px auto;
  width: 90%;
  text-align: center;
}

.logo {
  width: 280px;
  height: 110px;
}

@media screen and (min-width: 600px) and (min-height: 800px) {
  .logo,
  .footer {
    position: absolute;
    left: 0;
    right: 0;
    margin: 40px auto;
    text-align: center;
  }

  .logo {
    width: 280px;
    height: 110px;
    top: 0;
  }

  .footer {
    bottom: 0;
  }
}

/*-------------------------------------------------------
  Typography
-------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  margin: 0;
}

h1,
h2 {
  font-size: 66px;
  font-weight: 500;
  color: var(--blue);
}

h3,
h4 {
  font-size: 30px;
  font-weight: 500;
}

h5 {
  font-weight: 500;
  color: var(--bone);
}

h5,
p,
a,
li {
  font-size: 18px;
  font-weight: 400;
}

a {
  color: var(--white);
  transition: 0.25s ease all;
}

a:hover,
a:focus {
  color: var(--bone);
}

ol,
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  padding-left: 15px;
  margin: 0 0 5px;
  position: relative;
}

ol {
  display: flex;
  gap: 20px;
}

ol li:before {
  content: "";
  width: 2px;
  height: 100%;
  background: var(--turquoise);
  position: absolute;
  left: 0;
  top: 0;
}

ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--black);
  position: absolute;
  left: 0;
  top: 8px;
}

strong {
  font-weight: 600 !important;
}

.tacenter {
  text-align: center;
}

.general-content > *:not(:last-child) {
  margin: 0 0 20px !important;
}

@media screen and (max-width: 860px) {
  h1,
  h2 {
    font-size: 30px;
  }
}

/*-------------------------------------------------------
  Site Credit
-------------------------------------------------------*/

.site-credit {
  position: fixed;
  left: 20px;
  bottom: 15px;
  opacity: 0.1;
  transition: 0.3s ease all;
}

.site-credit:hover {
  opacity: 0.4;
}

.site-credit img {
  height: 18px;
  width: auto;
}
