@import url('https://fonts.googleapis.com/css?family=Cabin|Herr+Von+Muellerhoff|Source+Sans+Pro:400,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Poppins:wght@300;400&display=swap');

/*Global styles*/
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --main-font: 'Source Sans Pro', sans-serif;
    --secondary-font: 'Herr Von Muellerhoff', cursive;
    --body-font: 'Cabin', sans-serif;
    --main-font-color-dark: #252525;
    --secondary-font-color: #c59d5f;
    --body-font-color: #515151;
}

html{
  font-family: var(--body-font);
  font-size: 10px;
  color: var(--body-font-color);
  scroll-behavior: smooth;
}

section{
  padding: 1.9rem 0 3.9rem;
}

img{
  width: 100%;
  max-width: 100%;
}

a{
  text-decoration: none;
}

p{
  font-size: 1.6rem;
}

.container{
  width: 100%;
  max-width: 122.5rem;
  margin: 0 auto;
  padding-inline: 2.4rem;
}

/* Headerstyles */
header{
  width: 100%;
  height: 7.2rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(0,0,0,.5),transparent);
}

.logo{
  color: #fff;
  font-size: 2.1rem;
  font-family: var(--main-font);
  text-transform: uppercase;
}

.bigger{
  font-weight: 600;
}

.nav-container{
  background: transparent;
}

.nav{
  height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-self: center;
}

.menu-toggle{
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  cursor: pointer;
  z-index: 1500;
}

.fa-times{
  display: none;
}

.nav-list{
  list-style: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #181818;
  padding: 4.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 1250;
  transform: translateY(-100%);
  transition: transform .25s;
}

.nav::before{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,.8);
  z-index: 1000;
  opacity: 0;
  transform: scale(0);
  transition: opacity .25s;
}

.open .fa-times{
  display: block;
}

.open .fa-bars{
  display: none;
}

.open .nav-list{
  transform: translateY(0);
}

.open .nav::before{
  opacity: 1;
  transform: scale(1);
}

.nav-item{
  border-bottom: 2px solid rgba(255,255,255,.3);
  /*text-align: center;*/
}

.nav-link{
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-right: -2px;
  transition: color .25s;
  text-align: center;
}

.nav-link:hover{
  color: var(--secondary-font-color);
}


/* Herostyles */
.hero{
  width: 100%;
  height: 100vh;
  background: url('/assets/img/bg.jpg') bottom left no-repeat;
  background-position: 70%;
  background-size: cover;
  display: flex;
  align-items: center;
  text-align: center;
}

.sub-headline{
  color: var(--secondary-font-color);
  font-size: 7rem;
  font-family: var(--secondary-font);
  font-weight: 100;
  line-height: 1;
  z-index: 10;
}

.first-letter{
  text-transform: uppercase;
  font-size: 10.3rem;
  position: relative;
  z-index: 0;
}

.sub-filler{
  color: #fff;
  font-family: var(--main-font);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1.2;
}

.headline{
  color: #fff;
  font-size: 3.7rem;
  font-weight: 900;
  font-family: var(--main-font);
  text-transform: uppercase;
  text-align: center;
  padding-inline: 2rem;
  line-height: 1.2;
}

.btn{
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: -2px;
}

.tag{
  position: relative;
  left: -3.6rem;
}

.mini-logo{
  transform: rotate(-9deg);
  width: 5rem;
  top: -3.5rem;
  left: 5.5rem;
  z-index: 0;
  position: relative;
}

/* Discover our Story */
.global-headline{
  text-align: center;
  margin-top: 3.9rem;
}

.big-letter{
  font-size: 5.2rem;
}

.discover-our-story .global-headline{
  margin-top: 6.9rem;
}

.headline-dark{
  color: var(--main-font-color-dark);
  letter-spacing: .5rem;
  margin-right: -.5rem;
}

.spacing{
  margin-top: 3rem;
}

.agentur-info{
  text-align: center;
}

.agentur-description{
  margin-bottom: 3rem;
}

.agentur-description p{
  line-height: 1.6;
  margin-bottom: 2.4rem;
}

.body-btn{
  font-size: 1.5rem;
  color: var(--secondary-font-color);
  position: relative;
  transition: color .5s;
}

.body-btn::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: var(--secondary-font-color);
  transition: background-color .5s;
}

.body-btn:hover,
.body-btn:focus{
  color: var(--main-font-color-dark)
}

.body-btn:hover::before,
.body-btn:focus::before{
  background-color: var(--main-font-color-dark);
}

/* Skill List */
.no-spacing .headline{
  letter-spacing: .5rem;
  margin-right: -.5rem;
}

.no-spacing .sub-headline{
  margin-bottom: -4rem;
}

.skills{
  background: url(/assets/img/table_bg.jpg) top no-repeat;
  background-size: cover;
}

.skills-two{
  background: url(/assets/img/table_two_bg.jpg) bottom no-repeat;
  background-size: cover;
}

.between{
  min-height: 65vh;
  display: flex;
  align-items: center;
}

/*Discover our Skills*/
.image-group{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
}

.discover-our-skills .agentur-description{
  padding-top: 3rem;
}

.bullet-points{
  text-align: center;
}

.first-word{
  font-weight: 900;
}


/* Perfect IT*/
.perfect-it{
  background: url('/assets/img/it_bg.jpg') center no-repeat;
  background-size: cover;
}

/* Button */
.perfect-contact{
  background: url('/assets/img/phone-booth.jpg') center no-repeat;
  background-size: cover;
}

.btn{
  margin-top: 1rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: -2px;
}

.cta-btn{
  margin-top: 2.4rem;
  font-size: 1.1rem;
  background-color: #fff;
  padding: .9rem 1.8rem;
  color: var(--body-font-color);
  border-radius: .4rem;
  transition: background-color .5s;
}

.cta-btn:hover,
.cta-btn:focus{
  color: #fff;
  background-color: var(--secondary-font-color);
}

/* Footer */
footer{
  padding: 7.9rem 0;
  background-color: #121212;
  color: #fff;
  text-align: center;
  position: relative;
}

.back-to-top{
  width: 7rem;
  height: 7rem;
  background-color: #121212;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.back-to-top i{
  display: block;
  color: #fff;
  font-size: 2rem;
  padding: 2rem;
}

.footer-content{
  /*overflow: hidden ;*/
}

.footer-content h4{
  font-size: 1.9rem;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 3px;
  margin-bottom: 3rem;
}

.footer-content-about{
  margin-bottom: 5.4rem;
}

.footer-content-about p{
  line-height: 2;
}

.mini-logo-two{
  transform: rotate(-8deg);
  width: 3rem;
  top: 3.2rem;
  left: 5.5rem;
  z-index: 0;
  position: relative;
}

.social-icons{
  list-style: none;
  margin-bottom: 5.4rem;
  display: flex;
  justify-content: center;
}

.social-icons i{
  font-size: 2rem;
  color: #fff;
  padding: .8rem 2rem;
  opacity: .5;
  transition: color .5s;
}

.social-icons i:hover,
.social-icons i:focus{
  color: var(--secondary-font-color);
}

.impressum-container{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impressum{
  margin-top: -2rem;
  font-family: var(--body-font);
  color: white;
  font-weight: 100;
  text-transform: uppercase;
  line-height: 2;
  font-size: 2rem;
}

.tiny-space{
  margin-top: 4rem;
}

.big-space{
  margin-top: 10rem;
}

.center{
  text-align: center;
  justify-content: center;
  font-size: 1.6rem;
}

.contact{
  line-height: 2;
}
.copyright{
  margin-top: 4rem;
  margin-bottom: -5.9rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.ext_link{
  color: #c59d5f;
}

.container-dark{
  background-color: #181818;
  color:#fff
}

.imp{
  color: #c59d5f;
}

.orange{
  color: #c59d5f;
}
/*
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2147483645;
  box-sizing: border-box;
  width: 100%;
  background-color: #F1F6F4;
}

.cookie-consent-banner__inner {     
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 0;
}

.cookie-consent-banner__copy { 
  margin-bottom: 16px;
}

.cookie-consent-banner__actions {    
}

.cookie-consent-banner__header {
  margin-bottom: 8px;
  
  font-family: "CeraPRO-Bold", sans-serif, arial;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}

.cookie-consent-banner__description {
  font-family: "CeraPRO-Regular", sans-serif, arial;
  font-weight: normal;
  color: #838F93;
  font-size: 16px;
  line-height: 24px;
}

.cookie-consent-banner__cta {
  box-sizing: border-box;
  display: inline-block;
  min-width: 164px;
  padding: 11px 13px;
    
  border-radius: 2px;
  
  background-color: #c59d5f;
   
  color: #FFF;
  text-decoration: none;
  text-align: center;
  font-family: "CeraPRO-Regular", sans-serif, arial;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}

.cookie-consent-banner__cta--secondary { 
  padding: 9px 13px;
  
  border: 2px solid #3A4649;
  
  background-color: transparent;
  
  color: #c59d5f;
}

.cookie-consent-banner__cta:hover {
  background-color: #c59d5f;
}

.cookie-consent-banner__cta--secondary:hover {
  border-color: #838F93;
    
  background-color: transparent;
  
  color: #c59d5f;
}

.cookie-consent-banner__cta:last-child {
  margin-left: 16px;
}*/