@import url('bootstrap-icons.min.css');
@import url('fonts.css');

:root {
  --bs-primary: #a60e0e;
  --bs-secondary: #222222;
}

html, body {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--bs-secondary);
  height: 100%;
}

/* TYPOGRAPHY */
h1, .h1, 
h2, .h2, 
h3, .h3, 
h4, .h4, 
h5, .h5, 
h6, .h6 {
  font-family: 'Michroma', 'Roboto', sans-serif;
  font-weight: 900;
  margin: 30px 0;
  line-height: 1.25;
}
h1, .h1 {
  margin-top: 0;
  font-size: 40px;
}
h2, .h2 {
  font-size: 35px;
}
h3, .h3 {
  font-size: 30px;
}
h4, .h4 {
  font-size: 25px;
} 
h5, .h5 {
  font-size: 20px;
} 
h6, .h6 {
  font-size: 18px;
}

.headline::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 32px;
  background-color: var(--bs-primary);
  transform: skewX(-10deg);
  margin-right: 15px;
  margin-left: 5px;
}

h1 small, .h1 small, 
h2 small, .h2 small, 
h3 small, .h3 small, 
h4 small, .h4 small, 
h5 small, .h5 small, 
h6 small, .h6 small {
  letter-spacing: 0;
  font-weight: 300;
  margin-left: 30px;
}

p {
  margin: 15px 0;
  text-align: justify;
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
  transition: all .5s;
}
a:hover {
  color: var(--bs-secondary);
  text-decoration: none;
}

small {
  font-size: 75%;
  display: block;
  font-weight: 300;
}

strong,
.fw-bold {
  font-weight: 600;
}

hr {
  display: block;
  margin: 75px 0;
  border-width: 1px;
  border-color: var(--bs-primary);
  opacity: 1;
}

.ul {
  margin: 0;
  padding-left: 0;
}

.vid-fluid {
  display: block;
  width: 100%;
}

/* BUTTONS */
.btn  {
  border-radius: 0;
  border: none;
  padding: 10px 25px;
  margin: 0 10px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: end;
  z-index: 1;
}
.btn.w-100 {
  width: calc(100% - 20px) !important;
}

.btn-primary {
  position: relative;
  background-color: transparent !important;
}
.btn-primary::before {
  content: '';
  background-color: var(--bs-primary);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: skewX(-10deg);
  transition: all .5s;
}
.btn-primary:hover::before {
  background-color: #830a0a;
}

.btn-secondary {
  position: relative;
  background-color: transparent !important;
}
.btn-secondary::before {
  content: '';
  background-color: var(--bs-secondary);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: skewX(-10deg);
  transition: all .5s;
}
.btn-secondary:hover::before {
  background-color: #111111;
}

/* IMAGES */
.img-content {
  display: block;
  position: relative;
  width: 100%;
  min-height: 450px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.img-content::after {
  content: '';
  display: block;
  position: absolute;
  top: -15px;
  bottom: -15px;
  left: 15px;
  width: 60px;
  background-color: var(--bs-primary);
  transform: rotate(10deg);
}
.img-content-sm {
  min-height: 300px;
}

/* TEXT */
.text-primary {
  color: var(--bs-primary) !important;
}

/* BACKGROUND */
.bg-primary {
  background-color: var(--bs-primary) !important;
}
.bg-secondary {
  background-color: var(--bs-secondary) !important;
}
.bg-grey {
  background-color: #f5f5f5 !important;
}

/* NAV */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  color: var(--bs-white);
  padding: 30px;
  background-color: transparent !important;
  transition: all .5s;
}
.navbar-menu {
  font-size: 45px;
  line-height: 1;
  color: var(--bs-white);
  transition: all .5s;
}
.navbar-menu:hover {
  color: var(--bs-primary);
}
.navbar-logo {
  max-width: 220px;
  transition: all .5s;
}

.navbar.fixed-top {
  position: fixed;
  background-color: var(--bs-secondary) !important;
  padding: 15px 30px;
}
.navbar.fixed-top .navbar-logo {
  max-width: 160px;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.header-small {
  min-height: 400px;
}
.header-small .header-video {
  left: 50%;
  top: 25%;
  transform: translate(-50%, -50%);
}
.header-small::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(22,22,22,.75);
  z-index: 1;
}
.header-video {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  z-index: -1;
  width: 100%;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.header-content::after {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(22,22,22,.75);
  z-index: -1;
}
.header-logo {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
  padding-bottom: 15px;
}
.header-title {
  font-size: 50px;
  text-transform: uppercase;
  color: var(--bs-white);
  text-align: center;
  line-height: 1.2;
  font-family: 'Michroma', 'Roboto', sans-serif;
  overflow: hidden;
}
.header-text {
  font-size: 25px;
  text-align: center;
  color: var(--bs-white);
  margin-top: 15px;
}
.header hr {
  margin: 30px auto;
  width: 520px;
}
.header-to-section {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 45px;
  color: var(--bs-white);
}
.header-to-section:hover {
  color: var(--bs-white);
  opacity: .25;
}

/* SECTION */
.section {
  display: block;
  padding: 45px 30px;
  z-index: 2;
  background-color: var(--bs-white);
}
.section-split {
  padding: 0;
}
.section-split .container-fluid {
  padding: 0;
}
.section-split .img-content {
  /* min-height: calc(100vh - 76px); */
  min-height: 100%; 
}
.section-split .section-content {
  padding: 45px;
}

.section-scroll .section {
  position: sticky;
  top: 76px;
}

/* CONTAINER */
.container-fluid {
  max-width: 1820px;
}
.container-fluid-full {
  max-width: 100%;
}

/* FOOTER */
.footer {
  display: block;
  position: relative;
  background-color: var(--bs-secondary);
  padding: 120px 30px 30px 30px;
  color: #666;
  background-image: url('../img/footer-logo.png');
  background-repeat: no-repeat;
  background-size: 300px;
  background-position: top 30px center;
}
.footer a {
  color: #666;
}
.footer a:hover {
  color: var(--bs-white);
}

/* OFFCANVAS */
.offcanvas-title {
  margin: 0;
  font-size: 22px;
  color: var(--bs-primary);
}
.offcanvas-header {
  padding: 30px 30px 15px 30px;
}
.offcanvas-header .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  opacity: 1;
  transition: all .5s;
}
.offcanvas-header .btn-close:hover {
  opacity: .25;
}
.offcanvas-body {
  padding: 15px 30px 30px 30px;
}
.offcanvas-backdrop {
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  opacity: 1 !important;
  background-color: rgba(22,22,22,.5) !important;
  transition: all .5s;
}

.offcanvas#menu {
  right: 0;
  top: 45px;
  bottom: 0;
  width: 450px;
  max-width: calc(100% - 45px);
  background-color: var(--bs-secondary);
  transition: all .25s !important;
}
.offcanvas#menu .nav .nav-link {
  color: var(--bs-white);
  transition: all .5s;
  font-size: 22px;
  font-style: italic;
  padding: 0;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
}
.offcanvas#menu .nav .nav-link:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.offcanvas#menu .nav .nav-link::before {
  content: '';
  display: inline-block;
  width: 7.5px;
  height: 20px;
  background-color: var(--bs-primary);
  transform: skewX(-12deg);
  margin-right: 15px;
  margin-left: 5px;
  transition: all .5s;
}
.offcanvas#menu .nav .nav-link:hover,
.offcanvas#menu .nav .nav-link.active {
  color: var(--bs-primary);
}
.offcanvas#menu .nav .nav-link:hover::before,
.offcanvas#menu .nav .nav-link.active::before {
  background-color: var(--bs-white);
}
.offcanvas#menu .offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.offcanvas#menu .menu-infos {
  color: var(--bs-white);
  font-size: 20px;
}
.offcanvas#menu .menu-infos i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 16px;
  color: var(--bs-white);
  margin-right: 15px;
  position: relative;
  margin-left: 10px;
}
.offcanvas#menu .menu-infos i::after {
  content: '';
  background-color: var(--bs-primary);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: skewX(-10deg);
}
.offcanvas#menu .menu-infos .menu-info-item {
  display: block;
  color: var(--bs-white);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
  transition: all .5s;
}
.offcanvas#menu .menu-infos .menu-info-item:hover {
  color: var(--bs-primary);
}
.offcanvas#menu .menu-infos .menu-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.offcanvas#menu .menu-infos .offcanvas-title {
  margin-bottom: 15px;
}

/* ADS */
.slick-ads { 
  border-top: 15px solid var(--bs-primary);
  border-bottom: 15px solid var(--bs-primary);
  background-color: var(--bs-secondary);
}
.slick-ad-item {
  width: 100%;
  max-width: 550px;
  overflow: hidden;
}
a.slick-ad-item img {
  transition: all .5s;
}
a.slick-ad-item:hover img {
  transform: scale(1.15);
}
.slick-arrow {
  z-index: 150;
  top: 0 !important;
  bottom: 0 !important;
  transform: none !important;
  width: 80px !important;
  height: 100% !important;
  background-color: rgba(255,255,255,.15) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transition: all .5s;
}
.slick-arrow:hover {
  background-color: rgba(255,255,255,.5) !important;
}
.slick-prev {
  left: 0 !important;
  background-image: url('../img/slick-left.png') !important;
  background-position: center !important;
  background-size: 20px !important;
  background-repeat: no-repeat !important;
}
.slick-next {
  right: 0 !important;
  background-image: url('../img/slick-right.png') !important;
  background-position: center !important;
  background-size: 20px !important;
  background-repeat: no-repeat !important;
}
.slick-prev::before, .slick-next::before {
  display: none !important;
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}
.form-control,
.form-select {
  border-radius: 0;
  border: 1px solid var(--bs-secondary);
  box-shadow: none !important;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--bs-primary);
}


.form-check-input {
  border-color: var(--bs-secondary) !important;
	background-color: var(--bs-secondary);
  border-radius: 0 !important;
}
.form-check-input:checked {
	border-color: var(--bs-primary) !important;
	background-color: var(--bs-primary);
}
.form-check-input:focus {
  box-shadow: none !important;
}

.has-error .form-control,
.has-error .form-select {
  border-color: var(--bs-danger);
}

.has-error label,
.has-error .form-label,
.has-error .help-block {
  color: var(--bs-danger);
}

#danke {
  display: none;
}

/* CONTACT */
.contact-info {
  display: flex;
  flex-direction: column;
  margin: 15px 10px;
}
.contact-info-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 15px;
}
.contact-info-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  font-size: 18px;
  color: var(--bs-secondary);
  padding: 10px 20px;
  width: 100%;
  transition: all .25s;
}
.contact-info-title i {
  display: inline-block;
  width: 40px;
  color: var(--bs-white);
  margin-right: 15px;
  font-size: 22px;
}
.contact-info-title::after {
  content: '';
  background-color: var(--bs-white);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  transform: skewX(-10deg);
}
.contact-info-title::before {
  content: '';
  background-color: var(--bs-primary);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: skewX(-10deg);
  width: 60px;
  transition: all .5s;
}
.contact-info-item:hover .contact-info-title {
  color: var(--bs-white);
}
.contact-info-item:hover .contact-info-title::before {
  width: 100%;
}

/* CARD-FLIP */
.card-flip {
  width: 100%;
  height: 600px;
  perspective: 1500px;
  margin-top: 30px;
}
.card-flip .card-content {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.75, 0, 0.85, 1);
}
.card-flip .card-title {
  color: var(--bs-white);
  margin: 0 0 15px 0;
  font-size: 22px;
}
.card-flip .card-text strong {
  font-size: 16px;
}
.card-flip .card-text {
  font-size: 14px;
}
.card-flip label {
  cursor: pointer;
}
.card-input-control {
  display: none;
}
.card-input-control:checked ~ .card-content {
  transform: rotateY(180deg);
}
.card-front,
.card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  padding: 45px;
}
.card-front .card-inner,
.card-back .card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  transform: translateZ(80px);
}
.card-front {
  background-color: var(--bs-primary);
  background-size: cover;
  background-position: center center;
  background-image: url('../img/card-arrow.png'), url('../img/card-back-bg.jpg');
  background-repeat: no-repeat, no-repeat;
  background-position: right 30px bottom 30px, center;
  background-size: 120px, cover;
  transition: all .25s;
}
.card-front:hover {
  background-position: right 25px bottom 35px, center;
}
.card-back {
  transform: rotateY(180deg);
  background-color: var(--bs-secondary);
  color: var(--bs-white);
  background-image: url('../img/card-arrow.png'), url('../img/card-back-bg.jpg');
  background-repeat: no-repeat, no-repeat;
  background-position: right 30px bottom 30px, center;
  background-size: 120px, cover;
  transition: all .25s;
}
.card-back:hover {
  background-position: right 25px bottom 35px, center;
}
.card-back .card-inner {
  align-items: start;
}
.card-back .card-title {
  margin: 0;
}
.card-back .btn {
  margin-left: auto;
}

/* CARD */
.card {
  border-color: var(--bs-secondary);
  border-radius: 0;
  margin-bottom: 30px;
}


/* MOBIL */
@media (max-width: 1399.98px) { }
@media (max-width: 1199.98px) { 
  .header-video {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: 100%;
    min-height: 100%;
  }
  .header-small {
    min-height: 300px;
  }
  .header-small .header-video {
    left: 50%;
    top: auto;
    transform: translateX(-50%);
  }
}
@media (max-width: 991.98px) {
  /* TYPOGRAPHY */
  h2, .h2 {
    font-size: 30px;
  }
  h3, .h3 {
    font-size: 26px;
  }
  h4, .h4 {
    font-size: 22px;
  }
  h5, .h5 {
    font-size: 18px;
  }
  h6, .h6 {
    font-size: 16px;
  }

  .headline::before {
    height: 26px;
    width: 10px;
  }

  /* IMAGES */
  .img-content {
    margin-bottom: 30px;
    min-height: 350px !important;
  }

  /* HEADER */
  .header-title {
    font-size: 40px;
  }

  /* SECTION */
  .section {
    position: relative;
    top: auto !important;
  }
  .section-split .img-content {
    margin-bottom: 0;
  }
  .section-split .section-content {
    padding: 45px;
  }

  /* NAV */
  .offcanvas#menu .nav .nav-link {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .offcanvas#menu .nav .nav-link::before {
    height: 14px;
    width: 5px;
  }
}
@media (max-width: 767.98px) {
  /* HEADER */
  .header-title {
    font-size: 32px;
  }

  /* SLICK */
  .slick-arrow {
    width: 50px !important;
  }
  .slick-prev, .slick-next {
    background-size: 10px !important;
  }
}
@media (max-width: 575.98px) {
  /* TYPOGRAPHY */
  h2, .h2 {
    font-size: 26px;
  }
  h3, .h3 {
    font-size: 22px;
  }
  h4, .h4 {
    font-size: 18px;
  }
  h5, .h5 {
    font-size: 18px;
  }
  h6, .h6 {
    font-size: 16px;
  }

  .headline::before {
    display: none;
  }

   /* IMAGES */
  .img-content {
    min-height: 250px !important; 
  }

  /* HEADER */
  .header-title {
    font-size: 22px;
  }
  .header-text {
    font-size: 16px;
  }
  .header-logo {
    max-width: 240px;
  }
  .header hr {
    width: 320px;
  }

  /* NAV */
  .navbar,
  .navbar.fixed-top {
    padding: 15px;
  }
  .navbar.fixed-top .navbar-logo,
  .navbar-logo {
    max-width: 140px;
  }

  /* SECTION */
  .section {
    padding: 30px 15px;
  }
  .section-split {
    padding: 0;
  }
  .section-split .section-content {
    padding: 30px;
  }

  /* FOOTER */
  .footer {
    font-size: 16px;
  }

  /* CARD-FLIP */
  .card-flip {
    height: auto;
  }
  .card-front,
  .card-back {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 100%;
    backface-visibility:visible;
    transform-style:unset;
    padding: 30px;
    transform: rotateY(0deg);
    background-image: none;
  }
  .card-flip .card-title {
    font-size: 16px;
  }
  .card-input-control:checked ~ .card-content {
    transform: rotateY(0deg);
  }
}