/* 

---------- CONTENTS ----------

* TYPOGRAPHY

* GLOBAL VARIABLES

* RESET

* GENERIC HTML TAGS

* BUTTON THEMES

* NAVIGATION

* HEADER SECTION

* TRAILER POPUP

* STICKY SUBSCRIBE

* MAILCHIMP BANNER

* social SECTION

* PITCH SECTION

* GALLERY SECTION

* PRESSKIT SECTION

* CONTACT SECTION

* FOOTER

* PRIVACY PAGE

*/

/* TYPOGRAPHY */
@font-face {
  font-family: "Agency FB";
  src: url("../assets/fonts/new/agency-fb.ttf");
}

@font-face {
  font-family: "Bebas Neue Pro Middle";
  src: url("../assets/fonts/new/bebas-neue-pro-middle.woff");
}

/* GLOBAL VARIABLES */
:root {
  --button-yellow: #ffc107;

  --main-black: #000000;
  --main-white: #ffffff;

  --main-text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;

  --text-black: #262626;
}

/* RESET */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  height: 100%;
  scroll-behavior: smooth;
}

/* GENERIC HTML TAGS */
a {
  color: var(--main-white);
}

button {
  background: none;
  border: none;
}

button:focus {
  outline: none;
}

button:hover,
img:hover {
  cursor: pointer;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
a,
a > *,
button,
li {
  font-family: "Agency FB";
}

h1 {
  font-size: 6.25vh;
}

h2 {
  color: var(--text-black);
  font-size: 5vh;
  text-align: center;
  white-space: nowrap;
}

h3 {
  font-size: 4vh;
}

p {
  font-family: "Bebas Neue Pro Middle";
}

section {
  overflow: hidden auto;
  width: 100vw;
}

@media screen and (max-width: 767px),
  screen and (max-height: 580px) and (orientation: landscape) {
  h1,
  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }
}

/* BUTTON THEMES */
a.btn--primary {
  align-items: center;
  display: flex;
  justify-content: center;
}

.btn--primary {
  background-image: url("../assets/img/shaders/primary-btn-shader.jpg");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  border: solid 2px var(--main-black);
  color: var(--main-white) !important;
  font-size: 2vh;
  height: 5.5vh;
  position: relative;
  text-shadow: var(--main-text-shadow);
  text-transform: uppercase;
  transition: box-shadow 0.5s ease;
  width: 20vh;

  -moz-box-shadow: 2px 2px 0 0px rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 2px 2px 0 0px rgba(0, 0, 0, 0.7);
  box-shadow: 2px 2px 0 0px rgba(0, 0, 0, 0.7);
}

.btn--primary::after {
  content: "";
  border: solid 1px #ecbb71;
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
}

.btn--primary:hover,
.steam_btn:hover {
  box-shadow: 0px 0px 0px 0px var(--main-black) !important;
}

.btn--skew {
  transform: skew(-7.5deg);
}

.btn--skew > * {
  display: inline-block;
  transform: skew(7.5deg);
}

.steam_btn {
  align-items: center;
  background-image: url("../assets/img/shaders/steam-btn-shader.png");
  background-position: bottom;
  background-size: calc(100% + 10px);
  background-repeat: no-repeat;
  box-shadow: 2px 2px #464646;
  color: var(--main-white);
  display: flex;
  font-size: 2vh;
  height: 5.5vh;
  justify-content: center;
  text-transform: uppercase;
  transition: box-shadow 0.5s ease;
  width: 20vh;
}

.steam_btn::after {
  border: solid 1px #9d9d9d;
  content: "";
  height: calc(100% - 2px);
  left: 1px;
  position: absolute;
  top: 1px;
  width: calc(100% - 2px);
}

.steam_btn > span {
  align-items: center;
  display: flex;
  justify-content: center;
  text-shadow: var(--main-text-shadow);
  white-space: nowrap;
  width: 100%;
}

.steam_btn img {
  height: 2.6vh;
  margin: 0 5px 0 12px;
}

@media screen and (max-width: 767px) {
  .steam_btn {
    height: 5.5vh;
    width: 20vh;
  }

  .steam_text--mobile {
    display: inline !important;
  }

  .steam_text--desktop {
    display: none !important;
  }
}

@media screen and (max-height: 580px) and (orientation: landscape) {
  .btn--primary {
    font-size: 14px;
    height: 35px;
    width: 128px;
  }

  .steam_btn {
    font-size: 14px;
    height: 36px;
    width: 122px;
  }

  .steam_btn img {
    height: 20px;
  }
}

/* NAVIGATION */
.navbar {
  background: var(--main-white);
  color: var(--text-black);
  height: 8vh;
  margin-right: 0;
  padding: 0 !important;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 999;
}

.nav_cta {
  margin-right: 100px;
}

.privacy-navbar > a {
  height: 100%;
}

.nav_innerContainer {
  margin: 0px;
  padding: 0;
}

.nav_logo {
  height: 60%;
  margin-left: 100px;
}

@media (max-width: 960px) {
  .nav_logo {
    margin-left: 60px;
  }
}

.privacy-navbar .nav_logo {
  margin-top: 15px;
}

.nav_link--steam,
.burger-menu {
  margin-right: 100px;
}

.burger-menu {
  cursor: pointer;
  display: none;
}

@media (max-width: 960px) {
  .nav_link--steam,
  .burger-menu {
    margin-right: 60px;
  }
}

@media screen and (max-width: 767px) {
  .burger-menu {
    display: block;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 999;
  }

  .nav_logo {
    margin-left: 20px;
    width: auto;
    z-index: 999;
  }

  .nav_cta {
    display: none;
    visibility: hidden;
  }

  .nav-link a {
    color: var(--text-black);
  }

  .nav_link--steam {
    margin-right: 0;
  }

  .nav_inner {
    align-items: center;
    background: var(--main-white);
    display: flex;
    height: 100vh;
    justify-content: center;
    position: absolute;
    opacity: 0;
    top: 0;
    transition: opacity 0.25s ease;
    width: 100%;
    visibility: hidden;
    z-index: 10;
  }

  .nav_inner.active {
    opacity: 1;
  }

  .nav_innerContainer {
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    height: 80%;
    justify-content: space-evenly;
    margin-top: 4vh;
    padding-left: 0;
  }

  .nav_inner li {
    cursor: pointer;
    font-size: 32px;
  }
}

@media screen and (max-height: 580px) and (orientation: landscape) {
  .navbar {
    height: 60px;
  }
}

/* HEADER */
.header {
  height: 92vh;
  position: relative;
  width: 100vw;
}

.header a {
  margin-right: 30px;
}

.header_videoWrapper {
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
  background-color: #000000;
}

.header_video {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.mobile_bg {
  display: none;
}

@media (max-aspect-ratio: 16/9) {
  .header_video {
    width: auto;
    height: 100%;
  }
}

@media (max-aspect-ratio: 16/9) and (min-width: 1400px) {
  .header_video {
    width: auto;
    height: 120%;
  }
}

@media (min-aspect-ratio: 16/9) {
  .header_video {
    width: 100%;
    height: auto;
  }
}

/* @media screen and (max-width: 767px) {
  .header_video {
    display: none;
  }

  .mobile_bg {
    display: block;
    height: 100%;
    left: 50%;
    margin-right: -50%;
    position: relative;
    top: 50%;
    transform: translate(-50%, -50%);
  }
} */

.header_content {
  bottom: 10vh;
  display: flex;
  flex-flow: column;
  height: 100%;
  justify-content: flex-end;
  padding-left: 10vh;
  position: relative;
}

.header_textContainer {
  margin-bottom: 30px;
  max-width: 500px;
}

.header_textContainer h1 {
  color: var(--main-white) !important;
  text-shadow: var(--main-text-shadow);
}

@media (max-width: 767px) {
  .header {
    height: 84vh;
  }
  .header_content {
    align-items: center;
    bottom: unset;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    margin-top: 0;
    padding-left: 0;
    width: 100vw;
  }

  .header_content > * {
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    text-align: center;
  }

  .header_textContainer h1 {
    max-width: 400px;
    width: 80vw;
  }

  .header_btnContainer .steam_btn {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

@media screen and (max-height: 580px) and (orientation: landscape) {
  
  .header_btnContainer .steam_btn {
    height: 35px;
    font-size: 14px;
    width: 130px;
  }
}

/* TRAILER POPUP */
.header_popup {
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  height: 100vh;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 999;
}

.header_popup.hidden {
  display: none;
}

.header_iframe {
  height: calc(75vw * 0.5625);
  width: 75vw;
}

/* STICKY SUBSCRIBE */
.subscribeContainer {
  background-image: url("../assets/img/shaders/subscribe-shader.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  bottom: 50px;
  position: fixed;
  right: 80px;
  z-index: 1;
}

.subscribe_btn {
  opacity: 0.9;
}

.subscribe_logo {
  bottom: -30px;
  right: -74px;
  position: absolute;
  z-index: 10;
}

.subscribe_close {
  bottom: 54px;
  position: absolute;
  right: -47px;
  /* z-index: 999; */
}

.subscribe_background {
  bottom: -50px;
  pointer-events: none;
  position: absolute;
  right: -80px;
  z-index: -1;
}

@media (max-width: 767px) {
  .subscribeContainer {
    display: none;
  }
}

/* MAILCHIMP BANNER */
.mc-banner {
  bottom: 0;
  top: unset !important;
}
/* END */

/* social SECTION */
.social_section {
  background-color: var(--main-white);
  height: 8vh;
  min-height: 36px;
  margin: 0;
  padding-left: 64px;
  padding-right: 4px;
  width: 100vw;
  display:none;
  align-items: stretch;
  justify-content: space-evenly;
  position: fixed;
  bottom: 0;
  z-index: 2; 
}

.social_header_section {
  width: auto;
  flex-grow: 1;
  justify-content: flex-end;
  height: 8vh;
  min-height:26px;
  margin: 0 20px;
}

.social_section a,
.social_header_section a {
  align-items: center;
  display: flex;
  height: 100%;
}

.social_socialImg {
  height: 38%;
  min-height:26px;
  margin-right: 30px;
}

@media (max-width: 1000px) {
  .social_header_section {
    justify-content: center;
    margin: 0;
  }
  .social_socialImg {
    margin-right: 16px;
  }
}

@media (max-width: 767px) {
  .social_header_section {
    display: none;

  }
  .social_section {
    display: flex;
  }

  .social_socialImg {
    height: 26px;
    margin: unset;
  }
}

/* PITCH SECTION */
.pitch_section {
  align-items: center;
  background-image: url("../assets/img/backgrounds/about-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 20px 0;
}

.pitch_textContainer {
  backface-visibility: initial;
  flex-basis: unset;
  color: var(--main-white);
  margin: 60px 0px;
  max-width: 860px;
  padding: 25px;
  transform: skew(-3deg);
  width: 66vw;

  -moz-box-shadow: 2px 2px 0 0px rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 2px 2px 0 0px rgba(0, 0, 0, 0.7);
  box-shadow: 2px 2px 0 0px rgba(0, 0, 0, 0.7);
}

.pitch_textContainer h2 {
  color: #ffffff;
  text-align: left;
}

.pitch_textContainer--top {
  margin: 60px 0px 0px 0px;
}

.pitch_textContainer::after {
  background-color: #202425;
  background-image: url("../assets/img/shaders/about-shader.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: -60px top;
  content: "";
  height: 100%;
  opacity: 0.925;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.pitch_textContainer::before {
  border: solid 1px #706f70;
  content: "";
  height: calc(100% - 4px);
  left: 2px;
  position: absolute;
  top: 2px;
  width: calc(100% - 4px);
}

.pitch_textContainer > * {
  transform: skew(3deg);
}

.pitch_text--secondary {
  font-size: 18px;
  letter-spacing: 1px;
}

.pitch_secondaryContainer {
  border-right: solid 2px #5a5c5c;
}

.pitch_text--main {
  color: var(--main-white);
  line-height: 1.75em;
  margin-bottom: 25px;
  padding: 0 6px;
  text-align: left;
  text-shadow: var(--main-text-shadow);
}

.pitch_text--bullet {
  color: var(--main-white);
  line-height: 1em;
  padding: 16px 0 0;
  text-align: left;
  text-shadow: var(--main-text-shadow);
}

.pitch_text--bullet:first-child {
  padding: 0;
}

.pitch_logoContainer {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.pitch_logoContainer img {
  left: -5px;
  margin: 0 15px;
  pointer-events: none;
  position: relative;
}

.pitch_mobileImg {
  display: none;
}

.col-indent {
  padding:0px 50px;
}

@media (max-width: 1200px) {
  .pitch_section {
    background-position: 20% top;
  }
}

@media (max-width: 767px) {
  .pitch_section {
    background: #262626;
    padding: 20px 0 0 0;

    background-image: url("../assets/img/shaders/about-mobile-shader.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 0px 700px;
  }

  .pitch_section > * {
    text-align: center;
  }

  .pitch_textContainer {
    margin: unset;
    transform: skew(0deg);
    width: unset;

    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .pitch_textContainer h2 {
    text-align: center;
  }

  .pitch_textContainer::after,
  .pitch_textContainer::before {
    content: none;
  }

  .pitch_textContainer > * {
    transform: skew(0deg);
  }

  .pitch_text--main {
    margin-bottom: 30px;
    text-align: center;
  }

  .pitch_secondaryContainer {
    border: none;
  }

  .pitch_logoContainer {
    margin-top: 2rem;
  }

  .pitch_logoContainer img {
    height: 65px;
    left: unset;
  }

  .pitch_mobileImg {
    display: block;
    margin-top: 20px;
    width: 100vw;
  }

  .pitch_text--bullet {
    text-align: center;
  }

  .row-indent {
    margin:40px 12%;
  }
}

/* GALLERY SECTION */
.gallery_section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

.gallery_section h2 {
  background-image: url("../assets/img/shaders/presskit-shader.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  margin-bottom: 0;
  padding: 3vh 0;
}

.gallery_img:hover {
  cursor: grab;
}

.tns-outer {
  position: relative;
}

.tns-controls {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 0;
  left: 0;
  justify-content: space-between;
  padding: 0 10px;
  position: absolute;
  top: calc(50% + 15px);
  width: 100%;
}

.tns-controls:focus {
  outline: none;
}

.tns-controls button {
  position: relative;
  top: -20px;
}

.tns-arrow {
  height: 40px;
}

.tns-nav {
  bottom: 20px;
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
}

.tns-nav button {
  background-image: url("../assets/img/icons/gallery-circle.png");
  background-size: contain;
  background-repeat: no-repeat;
  height: 8px;
  margin: 0 10px;
  width: 8px;
}

.tns-nav button.tns-nav-active {
  background-image: url("../assets/img/icons/gallery-circle-full.png");
}

.tns-visually-hidden {
  display: none;
}

@media screen and (orientation: portrait) {
  .gallery_section h2 {
    background-image: url("../assets/img/shaders/presskit-shader-mobile.png");
  }
}

@media (max-width: 767px) {
  .tns-controls button {
    top: -12.5px;
  }

  .tns-arrow {
    height: 25px;
  }
}

/* PRESSKIT SECTION */
.presskit_section {
  align-items: center;
  background-image: url("../assets/img/shaders/presskit-shader.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  display: flex;
  justify-content: center;
  padding: 5vh 0 calc(5vh + 8px) 0;
}

.presskit_section h2 {
  margin-bottom: 15px;
}

@media screen and (orientation: portrait) {
  .presskit_section {
    background-image: url("../assets/img/shaders/presskit-shader-mobile.png");
  }
}

/* CONTACT SECTION */
.contact_section {
  align-items: center;
  background-image: url("../assets/img/backgrounds/contact-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 5vh 0 calc(5vh + 8px) 0;
}

.contact_section h2 {
  color: var(--main-white);
  margin-bottom: 10px;
}

.contact_socialContainer h2 {
  margin-bottom: 20px;
}

.contact_section p {
  color: var(--main-white);
  font-size: 26px;
}

.contact_subscribeContainer {
  align-items: center;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  margin-bottom: 40px;
}

.contact_iconsContainer {
  align-items: center;
  justify-content: center;
  width: 600px;
}

.contact_socialIcon {
  height: 35px;
  margin: 0 20px;
}

@media (max-width: 767px) {
  .contact_subscribeContainer p {
    padding: 0 20px;
    text-align: center;
  }

  .contact_iconsContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    margin: 10px 0 0 0;
    max-width: 400px;
    width: 80vw;
  }

  .contact_socialIcon {
    align-self: center;
    justify-self: center;
    margin: 20px;
  }

  .contact_socialIcon--mbBottom {
    margin: 20px 20px 0 20px;
  }
}

@media screen and (max-height: 580px) and (orientation: landscape) {
  .presskit_section {
    padding: 20px 0;
  }
}

/* FOOTER */
footer {
  padding: 40px 80px;
  margin-bottom: 5vh;
}

footer a {
  font-family: "Bebas Neue Pro Middle";
}

footer h2 {
  text-align: left;
}

footer h2,
footer p {
  color: #000000 !important;
}

.footer_row {
  align-items: center;
  justify-content: flex-start;
  display: flex;
  margin-bottom: 20px;
  width: 100%;
}

.footer_section {
  margin: 0 40px;
}

.footer_subsection {
  margin: 0 40px 20px;
}

.footer_about,
.footer_content {
  height: 10vh;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  margin:0;
}

.footer_logo {
  cursor: inherit;
  margin-left: 0;
  width: 310px;
}

.footer_about p {
  max-width: 550px;
}

.footer_contentLink {
  color: red !important;
  position: relative;
  text-decoration: underline !important;
  /* z-index: 1; */
}

.footer_links {
  margin-bottom: 20px;
}

.footer_links > * {
  color: red !important;
  font-size: 12px;
}

.footer_links a {
  margin: 3px;
  text-decoration: underline !important;
  text-transform: uppercase;
}

.footer_legal p {
  font-size: 10px;
  margin: 0;
}

@media screen and (max-width: 1400px) {
  .footer_section {
    margin: 0 20px;
  }
  .footer_subsection {
    margin: 0 20px 20px;
  }
}

@media screen and (max-width: 1400px) {
  .footer_content {
    flex-basis: 330px;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1030px) {
  footer {
    padding: 40px;
  }

  .footer_section {
    margin: 0 15px;
  }
}

@media screen and (max-width: 980px) {
  footer h2 {
    text-align: center;
  }

  .footer p {
    max-width: unset !important;
  }

  .footer_row {
    margin-bottom: 0;
  }

  .footer_row p {
    margin-bottom: 0;
    margin-top: 1rem;
  }

  .footer_row,
  .footer_section,
  .footer_legal {
    align-items: center;
    flex-flow: column nowrap;
    justify-content: center;
  }

  .footer_section {
    display: flex;
    margin: 20px 0;
  }

  .footer_subsection {
    text-align: center;
    margin: 20px 0;
  }

  .footer_about,
  .footer_content {
    height: unset;
    flex-basis: auto;
  }

  .footer_logo {
    max-width: 95vw;
  }

  .footer_links {
    margin-bottom: 20px;
  }

  .footer_contentLink {
    margin-top: 10px;
  }

  .footer_legal {
    display: flex;
    margin-top: 10px;
  }

  .footer_row p,
  .footer_legal p {
    text-align: center;
    max-width: 400px;
  }
}

/* PRIVACY PAGE */
.privacy_section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.privacy_section > *,
.privacy_section > * > * {
  font-family: "Bebas Neue Pro Middle" !important;
}

.privacy_section h1 {
  margin-bottom: 50px;
  text-align: center;
}

.privacy_section h2,
.privacy_section h3 {
  text-align: left;
  white-space: initial;
}

.privacy_section h3 {
  font-size: 3.75vh;
}

.privacy_section li {
  list-style: initial;
}
