@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Rubik:wght@400;600&display=swap');

/*font-family: 'Cairo', sans-serif;
font-family: 'Rubik', sans-serif;*/

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  font-size: 14px;
}

.wrapper {
  min-height: 100%;
  /* Equal to height of footer */
  /* But also accounting for potential margin-bottom of last child */
  margin-bottom: -62px;
}
.footer, .push {
  height: 62px;
}


/*TEXT*/
h1,h2 {
  font-family: 'Cairo', sans-serif;
  color: white;
  font-weight: 400;

}

h1 {
  font-size: 24px;
  text-align: center;
  padding: 0;
  margin: 0;
  font-weight: 700;
  line-height: 26px;
}

h2 {
  font-size: 16px;
  line-height: 24px;
}

p, a, h3, form {
  font-family: 'Rubik', sans-serif;
}

p, h3 {
  color: white;
}

p, h1, h2, h3 {
  width: 96%;
  margin: 0 auto;
  display: block;
  max-width: 960px;
  margin-bottom: 20px;
}



a {
  text-decoration: none;
}

div.social-wrapper {
  display: none;
  position: absolute;
  margin: 0 auto;
  right: 5px;
  top: 5px;
}

/*HEADER*/

header {
  height: 80px;
  position:  relative;
  z-index: 2000;
}

img#logo {
  height: 60px;
  position: absolute;
  left: 10px;
  top: 10px;
}

img#hamburger {
  height: 12px;
  position: absolute;
left: 50%;
transform: translate(-50%);
top: 26px;
}

nav.main-navigation {
  position: relative;
  width: 100%;
  top: 60px;
  left: -9999px;
}

nav.main-navigation a {
  display: block;
  width: 100%;
  text-align: center;
  height: 20px;
  padding-bottom: 2px;
    padding-top: 8px;
  background: url('../images/link-bg.jpg');
}

nav.main-navigation a:link {
  color: white;
}

nav.main-navigation a:visited {
  color: white;
}

nav.main-navigation a:active {
  color: white;
}

a:link {
  color: white;
  font-weight: 700;
}

a:visited {
  color: white;
  font-weight: 700;
}

a:active {
  color: white;
  font-weight: 700;
}

a:hover {
  color: #F04C1F;
  font-weight: 700;
}

/*MAIN*/

main {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.main-news-background {
  background: url('../images/bg.png');
}

p.trailer-button:hover {
  background: #F04C1F;
}

/*HOMEPAGE*/

.trailer-button {
  width: 230px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 40%);
  background: url('../images/news-bg.png');
}

img.intro-text {
  width: 280px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
}


/*NEWS*/

main.main-news-background {
  border-top-style: solid;
  border-color: #F04C1F;
  border-width: 1px;
}

div.news-container {
  display: grid;
  grid-template-columns: auto auto;
  width: 96%;
    padding-bottom: 5px;
  padding: 2%;
  margin: 0 auto;

}

img.news-image {
  width: 100%;
  display: block;
}

div.news-grid {
  position: relative;
  padding: 4px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-top-style: solid;
  border-color: #F04C1F;
  border-width: 1px;
  background: url('../images/news-bg.png');
}

div.news-grid h2 {
  position: relative;
  padding: 0;
  margin: 0;
  margin-top: -5px;
}

.category-bold {
  color: #F04C1F;
  font-weight: 700;
}


/*ABOUT*/

div.about-container {
  background: url('../images/bg.png');
  padding-top: 2%;
  padding-bottom: 2%;
  margin-bottom: 20px;
  border-top-style: solid;
  border-color: #F04C1F;
  border-width: 1px;
}

img.about-images {
  width: 50%;
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
}




/*TRAILER*/

video#vid {
  display: block;
  width: 96%;
  margin: 2%;
}


/*PRODUCTION STILLS*/

div.gallery-container {
  width: 80%;
  margin: 0 auto;
  border-style: solid;
  border-color: #F04C1F;
  border-width: 2px;
  position: relative;
  display: block;
}

img.gallery-image {
  width: 96%;
  margin: 2%;
  display: block;

  z-index: 50;
}

img.arrows {
  width: 30px;
  position: absolute;
  top: 50%;
  z-index: 100;
}

img#left-arrow {
  transform: translate(-16px, -50%);
}

img#right-arrow {
  right: 0;
  transform: translate(16px, -50%);
}


/*CONTACT PAGE*/

textarea, input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin-top: 5px;
    border-style: none;
    padding: 5px;
    font-family: 'Rubik', sans-serif;
}

input {
  height: 30px;
}

input[type=submit] {
  background: url('../images/bg.png');
  color: white;
  border-style: solid;
  border-color: #F04C1F;
  border-width: 1px;
  font-weight: 700;
}

input[type=submit]:hover {
  background: #F04C1F;
}

form {
  width: 70%;
  max-width: 400px;
  margin: 0 auto;
  border-style: solid;
  border-color: #F04C1F;
  border-width: 2px;
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background: url('../images/bg.png');
}

form label {
  color: white;
}

/*FOOTER*/
footer {

}

div.social-wrapper-footer {
  margin: 0 auto;
  position: relative;
  text-align: center;
}

img.social-logos {
  height: 20px;
}


@media only screen and (orientation:landscape) {

  html {
    background: url(../images/background-small-landscape.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

}


@media only screen and (orientation:portrait) {

  html {
    background: url(../images/background-small-portrait.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

}



@media only screen and (min-width: 1024px) {

  h1 {
    margin-top: 40px;
  }

  div.banner {
    height: 30px;
    display: block;
    background: black;
  }

  div.social-wrapper {
    display: block;
    position: absolute;
    margin: 0 auto;
    right: 5px;
    top: 5px;
  }

  div.lamb-wrapper {
    display: block;
    position: absolute;
    margin: 0 auto;
    left: 5px;
    top: 5px;
  }

  img.social-logos {
    height: 20px;
  }

  header {
    background: url('../images/link-bg-large.jpg');
    height: 60px;
  }

  div.navigation-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  img#hamburger {
    display: none;
  }

  nav.main-navigation {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
  }

  nav.main-navigation a {
    display: inline-block;
    width:13.9%;
    text-align: center;
    height: auto;
    margin: 0;
    padding: 0;
    padding-bottom: 0;
      padding-top: 0;
    background: none;
    line-height: 60px;
  }

  nav.main-navigation a:hover {
    background: url('../images/link-bg-large-hover.jpg');
  }


  main.main-news-background {
    margin-top: 40px;
  }

  div.gallery-container {
    width: 920px;
    transform: translate(-160px, 0);
  }


}

@media only screen and (min-width: 1281px) {




}
