@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Oswald:500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,900&display=swap');

/*-------------------------------------------------------------------------------
  COPYRIGHT BASTIAN & SCHREIBER GBR
  http://www.bastianschreiber.de
  info@bastianschreiber.de
  -------------------------------------------------------------------------------
  ## Colors
  #FFF500   YELLOW
  #1C1C1C   BLACK
  #F2F2F2   WHITE BACKGROUND

  ## Media Queries
  @media (min-width:576px) {}
  @media (min-width:768px) {}
  @media (min-width:992px) {}
  @media (min-width:1200px) {}

  ## Fonts
  font-family: 'Oswald', sans-serif;
  font-family: 'Source Sans Pro', sans-serif;
  
  ## Table of Contents
  01 Global Rules & Definitions
  02 Header
  03 Footer
  04 Cookie Warning
  05 Page - Home
  06 Page - Work
-------------------------------------------------------------------------------*/

/* =====  01 Global Rules & Definitions  ===================================== */

html{
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
   font-variant-ligatures: no-common-ligatures;
}

body{
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-style: normal;
  font-weight: 400;
  max-width: 100%;
  background-color: #fff;
}

.container {
    width: 100%;
    /*padding-right: 15px;
    padding-left: 15px;*/
    margin-right: auto;
    margin-left: auto
}

#default .container p{
	width: 90%;
	margin: 0 auto;
}

a{
  color: black;
}

a:hover{
  color: #fff500;
  text-decoration: line-through;
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

/* =====  02 Header  ========================================================= */
header{
    width: 90%;
    position: fixed;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 20px;
    z-index: 100;
}

nav {
    width: 100%;
    margin: 0 auto;
    padding-top: 50px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

#nav-toggle {
  background: transparent;
  position: absolute;
  right: 0;
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  transform: translate(0%, -10%);
}

#nav-toggle span,
#nav-toggle span:before {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 36px;
  line-height: 30px;
  background: #fff500;
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  content: '';
}

#nav-toggle span:before {
  height: 36px;
  width: 2px;
  top: -17px;
  left: 17px;
}

#nav-toggle span,
#nav-toggle span:before {
  transition: all 0.7s ease-in-out;
}

#nav-toggle.active span {
  transform: rotate(135deg);
  line-height: 30px;
}

#nav-toggle ul{
  list-style: none;
  position: absolute;
  right: 0;
  top: 50%;
  width: 0px;
  height: 0px;
  writing-mode: vertical-rl;
  color: #fff500;
  float: left;
  line-height: 0px;
}

#nav-toggle.active #ani1 { animation: logo-ani1 0.7s;}
#nav-toggle.active #ani2 { animation: logo-ani2 0.7s;}
#nav-toggle.active #ani3 { animation: logo-ani3 0.7s;}
#nav-toggle.active #ani4 { animation: logo-ani4 0.7s;}

@keyframes logo-ani1 {
    0% {transform: translate(0, -30px); opacity: 0}
    0% {transform: translate(0, -30px); opacity: 0}
    100% {transform: translate(0, 0px); opacity: 1}
}
@keyframes logo-ani2 {
    0% {transform: translate(0, -30px); opacity: 0}
    20% {transform: translate(0, -30px); opacity: 0}
    100% {transform: translate(0, 0px); opacity: 1}
}
@keyframes logo-ani3 {
    0% {transform: translate(0, -30px); opacity: 0}
    40% {transform: translate(0, -30px); opacity: 0}
    100% {transform: translate(0, 0px); opacity: 1}
}
@keyframes logo-ani4 {
    0% {transform: translate(0, -30px); opacity: 0}
    60% {transform: translate(0, -30px); opacity: 0}
    100% {transform: translate(0, 0px); opacity: 1}
}

#nav-toggle li a{
  float: left;
  margin: 0 0 20px 0;
  font-size: 0;
  color: #fff500;
  text-decoration: none;
  
  cursor: pointer;
}

#nav-toggle.active ul{
  width: 36px;
  height: 80vh;
  line-height: 30px;
}

#nav-toggle.active li a{
  font-size: 30px;
}

#nav-toggle.active li a:hover{
  color: #fff500;
  text-decoration: line-through;
}

#nav-toggle.active li:last-child{
  position: absolute;
  bottom: 0;
  cursor: pointer;
}

#nav-toggle.active li:last-child i{
  font-size: 20px
}

.default-header{
    position: absolute;
    top: 0;
}

.default-header nav{
	width: 50px;
	float: right;
	margin: 0;
}

.default-header .header-logo{
  float: left;

}
.default-header .header-logo img{
  height: 30px;
  padding: 10px 0;
}

.default-header nav #nav-toggle{
  top: 5px;
}

.on-focus{
  text-decoration: underline;
}

.default-header #nav-toggle span,
.default-header #nav-toggle span:before{
  background: #1c1c1c;
}

.default-header #nav-toggle a{
  color: #1c1c1c;
}

#default{
	margin-top: 120px;
  min-height: calc(100vh - 179px);
}

/* =====  03 Footer  ========================================================= */

footer{
  background-color: #f2f2f2;
  text-align: center;
}

.footer-menu {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.footer-menu > li {
  position: relative;
  display: block;
  float: left;
}
.footer-menu > li > a {
  position: relative;
  display: block;
  float: left;
  /*padding: 10px 15px;*/
}
.footer-menu > li > a:hover,
.footer-menu > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

.footer-menu {
  display: inline-block;
      padding: 0;
    margin: 0;
}
}
.footer-menu ul {
  text-align: center;
      padding: 0;
    margin: 0;
}
}
.footer-menu-item li {
  display: inline;
}
.footer-menu-item a {
  display: inline-block;
  
  font-size: 12px;
  color: #2d2d2d;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 10px;
}

.back-to-top{
  position: fixed;
  bottom: 5%;
  right: calc(5% + 16px);
  background-color: transparent;
  border: none;
}  

.back-to-top a{
  writing-mode: vertical-rl;
  color: #fff500; 
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 12px;
}

.back-to-top a:hover{
  text-decoration: line-through;
}

/* =====  X4 Cookie  ========================================================= */

.cookie-layer .cookie-layer__text {
    color: #333;
    font-family: "Arial", sans-serif;
    color: #fff;
    font-size: 15px;
    font-size: 0.9rem;
    line-height: 1.25;
    z-index: 999;
}

.cookie-layer__button {
    border: none;
    font-size: 1rem;
    border-radius: 23px;
    background: #333;
    color: #fff;
    line-height: 1;
    height: 46px;
    padding: 12px 35px 13px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

.cookie-layer a{
  color: #fff;
}

.cookie-layer {
    position: fixed;
    right: 2.2rem;
    bottom: 2.8rem;
    padding: 1rem;
    border-radius: .5rem;
    background-image: linear-gradient(to bottom, rgba(62, 62, 62, 0.7), rgba(34, 33, 33, 0.7));
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .9rem;
    width: 30rem;
    max-width: 80%;
    transition: all .3s;
    -webkit-backdrop-filter: blur(0.2rem);
    backdrop-filter: blur(0.2rem);
    z-index: 999;
}

.cookie-layer__button {
    margin-left: 1rem;
    flex-shrink: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: #111114;
    // background-image: linear-gradient(to bottom, #FFF, #000);
}

.cookie-layer p {
    margin: 0;
    line-height: 1.25;
}

.cookie-layer p:not(:first-child) {
    margin-top: .3rem;
}

.cookie-layer.hidden {
    opacity: 0;
    transform: translateY(35%);
    backdrop-filter: none;
}

@media screen and (max-width: 767px) {
    .cookie-layer {
        bottom: 0;
        left: 0;
        right: 0;
        width: auto;
        max-width: none;
        flex-direction: column;
        border-radius: 0;
        text-align: center;
    }

    .cookie-layer__button {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* =====  05 Page - Home  ==================================================== */
section{
  display: block;
  background: #fff;
}

#home{
  height: 100vh;
  background: transparent;
}

#home a span {
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}


.hero section{
  width: 100%;
  height: 100vh;
  background: transparent;
}

.hero .bg{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    z-index: -1;
  }

.logo-inner{
     position: absolute;
    width: 40%;
    padding-left: 30%;
    padding-right: 30%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;

     -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 1s; /* Firefox < 16 */
        -ms-animation: fadein 1s; /* Internet Explorer */
         -o-animation: fadein 1s; /* Opera < 12.1 */
            animation: fadein 1s;
}


@keyframes fadein {
    0% {opacity: 0; transform: translateY(-10%);}
    50% { opacity: 0; transform: translateY(-10%);}
    100%   { opacity: 1; transform: translateY(-50%);}
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    0% {opacity: 0; transform: translateY(-10%);}
    50% { opacity: 0; transform: translateY(-10%);}
    100%   { opacity: 1; transform: translateY(-50%);}
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    0% {opacity: 0; transform: translateY(-10%);}
    50% { opacity: 0; transform: translateY(-10%);}
    100%   { opacity: 1; transform: translateY(-50%);}
}

/* Internet Explorer */
@-ms-keyframes fadein {
    0% {opacity: 0; transform: translateY(-10%);}
    50% { opacity: 0; transform: translateY(-10%);}
    100%   { opacity: 1; transform: translateY(-50%);}
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    0% {opacity: 0; transform: translateY(-10%);}
    50% { opacity: 0; transform: translateY(-10%);}
    100%   { opacity: 1; transform: translateY(-50%);}
}

.logo-inner-img{
      width: 100%;
}

section h1{
  text-align: center;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 20px;
  padding-bottom: 30px;
}

.work-grid-item{
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.work-grid-item img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.content-header{
  position: absolute;
    z-index: 10;
    height: 100%;
    width: 100%;
    font-size: 0px;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.content-header h2, .content-header h3{
  color: #fff500;
  text-align: center;
  margin: 0;
}

.content-header:hover{
  opacity: 1;
  font-size: 20px;
}

.work-grid-title{
  position: absolute;
    top: 50%;
    /* -webkit-transform: translateY(-50%); */
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    color: #ffffff;
    /* font-size: 15px; */
    margin: 0 auto;
    /* padding: 0 10px; */
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.modal-video{
  background-color: #FFF500;
}

.modal-video-close-btn{
  right: 0px;
  width: 25px;
}

.modal-video-close-btn:before, .modal-video-close-btn:after{
  background: #000;
}

.work-grid-container{
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
  /*margin-right: -10px;*/
}

.work-grid-item{
  width: calc(50% - 4px);
  margin: 2px;
  float: left;
}

@media (max-width:768px) {

  .work-grid-item{
    width: 100%;
  }
}


.work-grid-item img{
  width: 100%;
}

.work-btn-container{
  margin: 0 auto;
  text-align: center;
  margin: 40px 0 0 0;
}

.work-btn{
  font-size: 22px;
    font-weight: 400;
  color: #0a0a0a;
  text-transform: none;
  margin: 0px 0px 0px 0px;
    -webkit-transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out;
    -o-transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out;
    transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out;
}

.work-btn.work-btn-outline:not(.work-btn-custom-hover-bg):hover {
  color: #fff500;
  text-decoration: line-through;
}

.work-btn.work-btn-outline {
  
  border-color: #1c1c1c;
     /*border: 1px solid #1c1c1c;*/
   min-width: 192px;
    height: 56px;
    line-height: 54px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
  padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
}

.work-btn.work-btn-outline:not(.work-btn-custom-border-hover):hover {
  border-color: #fff500 !important;
}

.work-btn a {
  color: #0a0a0a;
  font-weight: 500;
  text-decoration: underline;
}
.work-btn a:hover {
  color: #fff500;
  text-decoration: line-through;
}

section #company{
  background-color: #f2f2f2;
}

.company-text{
    display: flex;
    margin-top: 100px;
    margin-bottom: 50px;
}

.company-text span{
  text-align: justify;
}

.company-text h2{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    writing-mode: vertical-rl;
    text-align: left;
    font-size: 3rem;
    line-height: 4.5rem;
    font-weight: 400;
}

@media (max-width:576px) {
	.company-text h2{
		line-height: 3rem; 
	}
	.company-text .left h2{
		left: 40%;
	}
	.company-text .right h2{
		left: 60%;
	}
}

.company-text .left{
    width: 40%;
    float: left;
    margin-left: 10%;
    position: relative;
}

.company-text .right{
    width: 40%;
    margin-right: 10%;
    float: left;
    position: relative;
}

.company-team{
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: 100px auto 0;
}

.company-team-item{
    float: left;
    width: 40%;
    position: relative;
    margin: 0 5%;
}

@media (max-width:576px) {

  .company-team-item{
    width: 80%;
    margin: 0 10%;
  }
}

.company-team-item h2{
  text-align: center;
  font-size: 1rem;
}

.company-team-item img{
  width: 100%;
}

.text-contact{
  text-align: center;
      color: #1e1e1e;
    font-family: Source Sans Pro;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.text-contact p{
  margin: 10px 0;
}

.logo-contact-inner{
  text-align: center;
      margin-bottom: 40px;
}

.logo-contact-img{
  width: 40%;
  height: auto;
  margin: 40px;
}

#work, #company, #contact{
  padding-top: 20vh;
}

#contact{
  padding-bottom: 60px;
}

.contact-link {
  transition: all 0.3 ease;
  color: #000;
  text-decoration: none;
}

.contact-link:hover {
  color: #fff500;
  text-decoration: line-through;
}

/* =====  05 Page - Work  ==================================================== */

/*

TBA

*/