@font-face {
  font-family: "Tilt Neon";
  src: url(/fonts/TiltNeon.ttf);
}
@font-face {
  font-family: "Goldman";
  src: url(/fonts/Goldman-Regular.ttf);
}
#home #headerimage,
#home #home-text,
#home .hero-bg,
#home .hero-fg {
  height: 500px;
}
#home nav {
  z-index: 10;
}
#home #headerimage {
  width: 100%;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/images/hero-bg.png");
  text-align: center;
  position: relative;
}
#home .hero-fg {
  width: 100%;
  background-attachment: scroll;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 30%;
  background-image: url("/images/hero-fg.png");
  text-align: center;
}
@media (max-width: 1500px) {
  #home .hero-fg {
    background-size: 36%;
  }
}
@media (max-width: 1100px) {
  #home .hero-fg {
    background-size: 50%;
  }
}
@media (max-width: 820px) {
  #home .hero-fg {
    background-size: 68%;
  }
}
@media (max-width: 600px) {
  #home .hero-fg {
    background-size: 90%;
  }
}
@media (max-width: 480px) {
  #home .hero-fg {
    background-size: 100%;
  }
}
#home #hero-text {
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
}
#home #hero-text .hidden {
  display: none;
}
#home #hero-text .lineoftext {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #e6af6c;
  text-shadow: 0 0 15px #e6af6c;
  font-weight: bold;
}
@media (max-width: 800px) {
  #home #hero-text .lineoftext {
    font-size: 50px;
  }
}
@media (max-width: 610px) {
  #home #hero-text .lineoftext {
    font-size: 40px;
  }
}
@media (max-width: 400px) {
  #home #hero-text .lineoftext {
    font-size: 30px;
  }
}
#home .hero-line {
  position: relative;
  margin-top: -5rem;
  height: 10rem;
  background: url('/images/line.svg') center / 100% auto no-repeat;
}
#home #content {
  background-color: #272727;
}
#home h2 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 35px;
  letter-spacing: 0.05em;
}
#home h3,
#home p {
  text-align: center;
}
#home #services {
  margin-top: 25px;
  margin-bottom: 50px;
  text-align: center;
}
#home #services .col-md-6 {
  text-align: center;
}
#home #services .card-container {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
#home #services .card-container .card {
  background-color: #272727;
  border: 4px solid #e6af6c;
  padding: 4rem 2rem;
  border-radius: 3px;
  width: 350px;
  position: relative;
  transform: skewY(-4deg);
  box-shadow: 6px 6px #111;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
#home #services .card-container .card h3 {
  margin-top: 0;
  transform: skewY(4deg);
  color: white;
}
#home #services .card-container .card p {
  color: white;
  transform: skewY(4deg);
}
#home #services .card-container .card:hover {
  transform: skewY(-4deg) scale(1.05);
  box-shadow: 8px 8px #111;
  transition: all 0.4s ease-in-out;
}
#home .kontakt {
  margin-top: 20px;
  color: white;
  height: 400px;
  background-image: url('/images/home2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 0;
  position: relative;
}
#home .kontakt p.graybox {
  background-color: rgba(85, 85, 85, 0.5);
}
#home .kontakt div:first-child {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e6af6c;
  opacity: 35%;
  width: 100%;
  height: 100%;
}
#home .kontakt div:nth-child(2) {
  width: 100%;
  position: absolute;
  height: 204px;
  top: calc(50% - 102px);
  left: 0;
}
#home .kontakt div:nth-child(2) > p:first-child {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 0;
}
#home .kontakt div:nth-child(2) > p:nth-child(2) {
  font-size: 20px;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
