@font-face {
  font-family: 'ablationbold';
  src: url('fonts/ablation_bold-webfont.woff2') format('woff2'),
       url('fonts/ablation_bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}




@font-face {
  font-family: 'ablationregular';
  src: url('fonts/ablation-webfont.woff2') format('woff2'),
       url('fonts/ablation-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}




@font-face {
  font-family: 'emithascript';
  src: url('fonts/emitha-script-webfont.woff2') format('woff2'),
       url('fonts/emitha-script-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}




@font-face {
  font-family: 'poppinsregular';
  src: url('fonts/poppins-regular-webfont.woff2') format('woff2'),
       url('fonts/poppins-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}



body {
  display: flex;
  justify-content: center;
  background: #999999;
  font-family: ablationregular, sans-serif;
  color: #fff;
}

#wrapper {
  max-width: 1600px;
  position: relative;
}

.bild {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.black-col {
  background: #000000;
}

#Logo {
  position: absolute;
  top: 0;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
}

#Logo img {
  width: 100%;
  height: auto;
}

.tb-1 {
  padding: 2rem 1rem;
  margin-top: 14rem;
  font-size: 1.5rem;
}

.tb-2 {
  padding: 2rem 1rem;
  font-size: 2.5rem;
  font-family: ablationbold, sans-serif;
}

#Signature {
  font-family: poppins, sans-serif;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  text-align: center;
}

#Signature div {
  font-family: emithascript, script;
  font-size: 4rem;
  transform: rotate(-12deg);
}

#LogoSub {
  font-family: poppins, sans-serif;
  position: absolute;
  top: 10rem;
  right: 50%;
  font-size: 1.5rem;
  margin-right: 1.5rem;

}

#Box-1 {
  position: absolute;
  bottom: 0;
  padding: 1rem;
  background: #636362;
  width: 30%;
  color: #000;
  font-size: 2rem;
}

#Box-1 h2 {
  font-family: ablationbold, sans-serif;
}

#Box-1 h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

#Box-1 p {
  margin-bottom: 0.5rem;
}

#Box-2 {
  position: absolute;
  bottom: 280px;
  left: 25%;
  padding: 1rem;
  background: #BEBDBD;
  width: 30%;
  color: #000;
  font-size: 2rem;
}

#Box-2 h2 {
  font-family: ablationbold, sans-serif;
}

#Box-2 h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

#Box-2 p {
  margin-bottom: 0.5rem;
}

#buttons {
  position: absolute;
  width: 20%;
  display: flex;
  gap: 1rem;
  justify-content: space-around;
  left: 30%;
  bottom: 1rem;
  padding: 0 1rem;
}

#buttons img {
  width: 100%;
  max-width: 125px;
  height: auto;
  opacity: 0.8;
  transition: all 300ms ease;
}

#buttons a:hover img {
  opacity: 1;
}


@media screen and (max-width: 992px) {
  #Box-1, #Box-2, #buttons {
    position: relative;
    width: 100%;
    left: 0;
    bottom: inherit;
  }

  #Signature {
    bottom: 45%;
  }

  #buttons {
    padding: 2rem 5rem;
    background: #000;
  }

  #LogoSub {
    right: 0;
    width: 100%;
    text-align: center;
    margin-top: -75px;
    margin-right: 0;
  }

  #Logo {
    width: 95%;
  }
}