@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-VariableFont_wght.ttf');
    font-style: normal;
    font-weight: 200 700;
    font-display: swap;
}

@font-face {
    font-family: 'Sentient';
    font-style: normal;
    font-weight: 200 700;
    src: url('../fonts/Sentient-Variable.woff2');
}

* {box-sizing: border-box;}

:root {
    --primary-colour: var(--black-colour);
    --secondary-colour: #fddb06;
    --highlight-colour: #D62828;
    --white-colour: white;
    --black-colour: #0B1215;
    --blue-colour: #1F4D7A;
    --primary-font: 'Outfit';
    --secondary-font: 'Sentient';
}

::selection {
    background: var(--secondary-colour);
    color: var(--black-colour);
}

body  {
    margin: 0;
    font-family: var(--primary-font), sans-serif;
    background: var(--black-colour);
    color: var(--white-colour);
    overflow-x: hidden;
}

h1 {
    font-family: 'Sentient';
    font-weight: 400;
    text-align: center;
    font-size: 3em;
    line-height: 1em;
    padding-top: 2em;
}

h2 {
    font-weight: 400;
    line-height: 1em;
    margin-top: .4em;
    font-weight: 600;
    font-size: 2em;
    text-align: center;
}

p {font-size: 1.2em;line-height: 1.4;font-weight: 400;}

.center {
    text-align: center;
}

.container {
    padding: 0 1.2em;
    margin-right: 0.2em;
    margin-left: 0.2em;
}

.container-short {
        margin: 0 auto 0 auto;
        max-width: 800px;
    
    }

.bg-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #0B1215;
}

.bg-gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.0) 40%);
}

.hero-image {
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    height: 70dvh;
    width: 100%;
    background-position: center;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.hero-image-template {
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100dvh;
    width: 100%;
    background-position: center;
    text-align: center;
    top: 0;
    margin: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.home-text {
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 1;
    text-decoration: none;
}

.home-text.home {
    position: absolute;
    bottom: 10vh;
    text-align: center !important;
    max-width: 1000px;
}

.home-text h1 {
    text-align: center;
    text-shadow: 0px 0px 8px rgba(0,0,0,.6);
    font-size: 4em;
    padding: 0;
    color: var(--secondary-colour);
    margin-bottom: .3em;
}

.home-text-lower {
    position: absolute;
    text-align: center;
    width: 100%;
    left: 0px;
    bottom: 10vh;
    color: #fff;
    z-index: 0;
    padding-bottom: 0;
}

.home-text h2 {font-size: 1.4em;font-weight: 500;text-shadow: 0px 0px 8px rgba(0,0,0,.6);}

.home-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2em;
}

.button {
    text-align: center;
    text-decoration: none;
    color:var(--black-colour);
    background-color: var(--secondary-colour);
    padding: 10px 30px;
    border-radius: 4px;
    margin: 0 auto auto auto;
    display: inline-block;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  text-shadow:  none;
  font-weight: 500;
  border-color: var(--black-colour);
  border-width: 0.2px;
  border-style: solid;
  text-transform: uppercase;
}

.button:hover{
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  background-color:var(--black-colour);
  color: var(--white-colour);
  border-color: var(--white-colour);
}

.cr_button {color:var(--white-colour);
    background-color: var(--black-colour);
    cursor: pointer;
    padding: 10px 30px;
    border-radius: 4px;
    border-color: var(--black-colour);
    border-width: 0.2px;
    border-style: solid;
    font-family: var(--primary-font);
    font-weight: 500;font-size: 1em;
}

.custom_form_label {
    display: flex;
    flex-wrap: wrap;
}

.custom_form_label label {
    font-size: 1.2em;
    font-family: var(--primary-font);
    font-weight: 600;
    margin-top: 1em;
}

.custom_form_label input {
    background: none repeat scroll 0 0 #ffffff;
  border-radius:3px;
  border: 1px solid #ccc;
  padding: 12px;
  font-family: var(--primary-font);
  font-size: 16px;
  width: 100%;
  line-height: 150%;
  margin-top: 10px;
}

.submit_container {text-align: center;}

.form-terms {font-size: .8em;}


.flexIt {
    display: flex;
  align-items: center;
}

.text-box {
    padding: 1em;
    border-radius: 4px;
    position: relative;
    text-align: left;
}

.text-box.newsletter {
    background-color: var(--secondary-colour);
    border-radius: 10px;
    color: var(--black-colour);
    max-width: 600px;
    margin: auto;
}

.block-half {
    min-height: 50vh; 
    margin: auto;
}

.footer {
    padding: 2em;
}

.footer p {
    text-align: center;
    font-size: .8em;
}

@media only screen and (min-width: 600px) {
    .home-text.home {
        left: 25px;
        text-align: center;
    }
    .home-text h1 {
        text-align: left;
        font-size: 6em;
        line-height: 0.9em;
    }

    .home-text-lower {
        left: 25px;
        text-align: left;
    }

    .home-text h2 {font-size: 2em;text-align: left;}

    .home-buttons {
        justify-content: left;
    }
}

@media only screen and (min-width: 1000px) {
     .home-text h1 {
        text-align: left;
        font-size: 8em;
        line-height: 0.9em;
    }
}


@media only screen and (max-height: 700px) {
    .home-text h1 {
        font-size: 4em;
    }

}