/*--------------------------------------------------------------
  Fonts
--------------------------------------------------------------*/

@import url('https://use.typekit.net/irj4xcg.css');

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

:root {
  --white: #fff;
  --white-rgb: 255, 255, 255;
  --lgrey: #bdc3c7;
  --lgrey-rgb: 189, 195, 199;
  --grey: #767a7c;
  --grey-rgb: 118, 122, 124;
  --charcoal: #2e2e2e;
  --black: #000;
  --black-rgb: 0, 0, 0;

  --font-primary: neue-haas-grotesk-display, sans-serif;
}

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

html {
  width: 100%;
  height: 100vh;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--black);
  height: 100vh;
  background-color: var(--white);
  background-image: url(../assets/img/logo-mark-pattern-tile.svg);
  background-size: 48px;
  background-position: -8px -8px;
  background-repeat: repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
  Typogrpahy
--------------------------------------------------------------*/

h1 {
  color: var(--black);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin: 50px 0;
}

h2 {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
}

h3,
h4,
h5,
h6 {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
}

strong {
  font-weight: 600;
}

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

a:hover {
  color: var(--grey);
}

p,
p a {
  color: var(--grey);
  font-weight: 400;
}

p a:hover {
  color: var(--black);
}

@media screen and (max-width: 720px) {
  h1 {
    font-size: 32px;
  }
}

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

.fitoutdoors-holding {
  padding: 40px;
}

.fitoutdoors-holding .container {
  max-width: 900px;
  text-align: center;
}

.fitoutdoors-logo {
  max-width: 240px;
  height: auto;
}

.fitoutdoors-holding .flex-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px 30px;
}

.fitoutdoors-holding .flex-layout h3 {
  margin: 0;
}

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

a.thrive-credit {
  position: fixed;
  bottom: 15px;
  right: 15px;
  opacity: 10%;
  transition: 0.25s ease all;
}

a.thrive-credit:hover {
  opacity: 40%;
}

a.thrive-credit img {
  max-width: 60px;
  height: auto;
  display: block;
}
