@import url("animate.css");
@import url("font.css");
@import url("lightbox.min.css");
@import url("vegas.min.css");

:root {
  --primary: #6c8eaf;
  --secondary: #1d1d1b;
}


/* STYLE */
html, body {
	height: 100%;
}
body {
	font-family: 'Poppins', sans-serif;
	font-weight: 200;
	background: #eee;
	color: #333;
	font-size: 18px;
  line-height: 1.8;
}


/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
	font-weight: 300;
	text-transform: uppercase;
	margin: 0 0 30px 0;
	color: var(--primary);
} 

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

a {
	color: var(--primary);
  transition: all .25s;
  outline: none !important;
}
a:hover {
	color: var(--secondary);
	text-decoration: none;
}

small {
	display: block;
	font-size: 65%;
}

strong {
	font-weight: 800;
}

hr {
  margin: 30px 0;
  display: block;
  border-color: #ccc;
}

ul.ul {
  list-style-image: url("../img/ul.png");
  padding-left: 35px;
}
ul.ul li {
  margin-bottom: 10px;
}


/* TWO COLUMS */
.two-cols {
  -moz-column-width: 400px;
  -moz-column-gap: 30px;
  -webkit-column-width: 400px;
  -webkit-column-gap: 30px;
  column-width: 400px;
  column-gap: 30px;
}


/* BUTTON */
.btn {
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
  transition: all .25s;
  padding: 15px 20px;
  border: none !important;
}
.btn:focus {
  box-shadow: none !important;
}

.btn-primary {
  background: var(--primary) !important;
  color: var(--white) !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--secondary) !important;
  color: var(--white) !important;
}

.btn-outline-primary {
  border: 1px solid var(--primary) !important;
  color: var(--primary) !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--secondary) !important;
  border: 1px solid var(--primary) !important;
  color: var(--white) !important;
}


/* SLIDER*/
.slider {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -105;
}
.slider #slider {
  min-height: 100%;
}


/* COVER */
.cover {
  min-height: 300px;
  width: 100%;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cover.cover-lg {
  min-height: 400px;
}


/* HEADER */
header {
  padding: 30px;
  min-height: 500px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
header .header-infos {
  display: block;
  padding: 0 15px;
  background: var(--primary);
}
header .header-infos .header-title {
  font-size: 28px;
  color: var(--white);
}
header .header-infos .header-links {
  display: block;
  margin: 0 auto;
  text-align: center;
}
header .header-infos .header-links a {
  font-size: 38px;
  margin-right: 15px;
  color: var(--white);
}
header .header-infos .header-links a:last-child {
  margin-right: 0;
}
header .header-infos .header-links a:hover {
  color: var(--white);
}
header .header-video {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  z-index: -2;
  width: 100%;
}
header .header-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 40px;
  line-height: 1;
  color: var(--white);
}


/* NAVIGATION */
.navbar {
  background: none !important;
  padding: 0 30px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all .25s;
  z-index: 1000;
}
.navbar-nav {
  padding: 15px;
}
.navbar-light .navbar-nav .nav-link {
  font-weight: 300;
  font-size: 20px;
  color: var(--white);
  padding: 10px 15px !important;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
  background-color: var(--primary);
  color: var(--white);
}

.dropdown-menu {
  border-radius: 0;
  border: none;
  padding: 0;
  min-width: 220px;
}
.dropdown-item {
  padding: 10px 15px;
  color: var(--secondary);
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  color: var(--white);
  background: var(--primary);
}

.navbar-brand {
  padding: 0;
}
.navbar-brand img {
  width: 120px;
  transition: all .25s;
}
.navbar-brand img#logo2 {
  width: 80px;
  display: none;
  transition: all .25s;
}

.navbar-toggler {
  border: none;
  border-radius: 0;
  font-size: 38px;
  color: var(--primary) !important;
  outline: none !important;
}

.navbar.fixed-top {
  box-shadow: 0 0 15px 0 rgba(22,22,22,0.5);
  background: var(--white) !important;
}
.navbar.fixed-top .navbar-nav .nav-link {
  color: var(--secondary);
}
.navbar.fixed-top .navbar-nav .nav-link:hover,
.navbar.fixed-top .navbar-nav .nav-link:focus,
.navbar.fixed-top .navbar-nav .nav-link.active {
  color: var(--white);
}

/* CONTENT */
.content {
  background-color: var(--white);
}

/* MAIN */
main {
  background: #eee;
  padding: 90px 15px;
}
main.bg {
  background-image: url("../img/main-bg.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
}
main.bg-colored {
  background: var(--primary);
  color: var(--white);
}
main.bg-colored a,
main.bg-colored h1,
main.bg-colored h2,
main.bg-colored h3,
main.bg-colored h4,
main.bg-colored h5,
main.bg-colored h6 {
  color: var(--white);
}


/* FOOTER */
footer {
  padding: 30px;
  text-align: center;
  background: #eee;
}
footer hr {
  margin: 15px 0;
}
footer .logo {
  width: 120px;
}
footer .copyright {
  display: block;
  margin: 0;
  text-align: center;
}
footer .links {
  padding: 15px 0 0 0;
}
footer .links a {
  display: inline-block;
  margin-right: 15px;
  font-size: 16px;
}
footer .links a:last-child {
  margin-right: 0;
}
footer .design-by {
  font-size: 14px;
  padding: 5px;
  text-align: center;
}
footer .design-by img {
  width: 30px;
}


/* BIG LINK */
.big-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-transform: uppercase;
  padding: 30px;
  margin-bottom: 30px;
  width: 100%;
  min-height: 300px;
  min-width: 220px;
  background: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border: 0px solid transparent;
  transition: all .25s;
}
.big-link .big-link-title {
  background: var(--primary);
  color: var(--white);
  padding: 5px 10px;
  text-align: center;
  transition: all .25s;
  display: block;
  margin: 0 auto;
  min-width: 120px;
}
.big-link .big-link-title i {
  font-size: 14px;
}
.big-link .big-link-text {
  background: var(--primary);
  color: var(--white);
  padding: 5px 10px;
  text-align: center;
  transition: all .25s;
  display: block;
  position: absolute;
  bottom: -100px;
  right: 30px;
  left: 30px;
}

.big-link:hover {
  border: 10px solid var(--primary);
}
.big-link:hover .big-link-title {
  min-width: 100%;
}

.galerie .big-link {
  min-height: 175px;
  min-width: 100%;
}


/* CARD */
.card {
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 30px;
  display: block;
  transition: all .25s;
}
.card-rating {
  margin-bottom: 15px;
}
.card-rating i {
  color: #e4b700;
}
.card-rating-img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 15px;
}
.card-img {
  display: block;
  width: 100%;
  min-height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
}
.card .card-body .card-title {
  margin-bottom: 0;
  transition: all .25s;
}
.card .card-body .card-title small {
  color: var(--secondary);
}
.card .card-body .card-text {
  font-size: 16px;
  margin-top: 15px;
  line-height: 1.5;
}

.card .card-body .card-title[data-toggle="card"]:hover,
.card .card-body .card-title[data-toggle="card"].active {
  cursor: pointer;
  color: var(--secondary);
}
.card-text-toggle {
  display: none;
}

a.card:hover {
  transform: scale(0.95);
}

.card-img.small {
  min-height: 160px;
  margin-bottom: 15px;
}


/* PARALLAX */
.parallax {
  background: transparent;
  position: relative;
  z-index: 1 !important;
}
.parallax-divider {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}


/* VIDEO/AUDIO SECTION */
#video-section,
#audio-section {
  padding-top: 0;
  padding-bottom: 0;
  display: none;
  position: relative;
}
#video-close,
#audio-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 38px;
  line-height: 1;
  z-index: 1;
}



/* LIGHTBOX */
.lb-image {
  border-radius: 0 !important;
  border: none !important;
}
.lb-dataContainer {
  padding: 15px 0 !important;
}


/* FORM */
.form-control {
  border-radius: 0;
  height: 45px;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.custom-control-input:checked ~ .custom-control-label::before { 
  border-color: var(--primary);
  background-color: var(--primary);
}

.input-group-search {
  border-radius: 0;
}
.input-group-search .input-group-text {
  border-radius: 0;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: all .25s;
  padding: 10px 15px;
  border: 1px solid var(--primary);
}
.input-group-search .input-group-text:hover {
  background: var(--secondary);
}

.drag_drop_box {
  min-height: 280px;
	width: 100%;
  text-align: center;
  border: 3px dashed var(--primary);
  position: relative;
  display: flex;
	align-content: center;
	align-items: center;
	justify-content: space-around;
	padding: 60px;
	color: #888;
	background: repeating-linear-gradient(45deg, #fff, #fff 25px, #eee 25px, #eee 50px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all .25s;
}
.drag_drop_box:hover {
	color: var(--primary);
}
.drag_drop_box input[type="file"].drag_drop {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.has-error .form-control,
.has-error .drag_drop_box {
  border-color: #ce0000;
}
.has-error label,
.has-error .help-block {
  color: #ce0000;
}

.has-success .form-control,
.has-success .drag_drop_box {
  border-color: #119600;
}
.has-success label,
.has-success .help-block {
  color: #119600;
}

#danke {
  display: none;
}


/* TOAST */
#meldung-toast {
	position: fixed;
	right: 30px;
	bottom: 30px;
	border-radius: 0;
  z-index: 1200;
}
#meldung-toast .toast-header {
  background-color: var(--primary);
	color: #fff;
	text-transform: uppercase;
}
#meldung-toast .toast-header .close {
  color: #fff;
}
#meldung-toast .toast-body {
	text-align: center;
	min-width: 300px;
}


/* PAGINATION */
.pagination .page-item .page-link {
  color: var(--primary);
  padding: 5px 10px;
  border-radius: 0;
  box-shadow: none !important;
}
.pagination .page-item .page-link.active {
  color: var(--white);
  background: var(--primary);
}


/* CCM19 */
.ccm-root .ccm-settings-summoner.ccm-show .ccm-settings-summoner--link {
  animation: none !important;
}
.ccm-settings-summoner.ccm-show .ccm-settings-summoner--link {
  box-shadow: none !important;
}
.ccm-settings-summoner {
  width: 45px !important;
  height: 45px !important;
  left: 30px !important;
  right: auto !important;
  bottom: 103.4px !important;
  top: auto !important;
  display: none !important;
}


/* MOBIL */
@media (max-width: 1199.98px) {
  /* HEADER */
  header .header-video {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: 100%;
    min-height: 100%;
  }

  /* NAVIGATION */
  .navbar-brand img {
    width: 100px;
  }
  .navbar-brand img#logo2 {
    width: 70px;
    display: none;
  }
}
@media (max-width: 991.98px) {
  /* NAVIGATION */
  .navbar {
    padding: 0 30px;
  }
  .navbar-nav {
    padding: 0;
  }
  .navbar-collapse {
    background: var(--white);
    margin: 15px 0;
  }
  .navbar-light .navbar-nav .nav-link {
    padding: 5px 15px;
    color: var(--secondary);
  }
  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link:focus,
  .navbar-light .navbar-nav .nav-link.active {
    background: var(--primary);
    color: var(--white);
  }
  
  .dropdown-item {
    padding: 5px 15px 5px 30px;
  }
  
  /* HEADER */
  .header {
    background-image: url("../img/header/start.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media (max-width: 767.98px) {
  /* HEADER */
  header .header-infos {
    padding: 15px;
    margin-bottom: 60px;
  }
  header .header-infos .header-title {
    background: var(--primary);
    font-size: 22px;
    text-align: center;
  }
  header .header-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 40px;
    line-height: 1;
    color: var(--white);
  }
  
  /* BIG LINK */
  .big-link {
    min-width: 100%;
    min-height: 170px;
  }
  .big-link:hover {
    border: none;
    transform: scale(1.05);
  }
}
@media (max-width: 575.98px) {
	/* TYPOGRAPHY */
	h1 { font-size: 32px; }
	h2 { font-size: 28px; }
	h3 { font-size: 24px; }
	h4 { font-size: 20px; }
	h5 { font-size: 16px; }
	h6 { font-size: 12px; }
  
  /* CONTAINER */
  .container {
    padding: 0;
  }
  
  /* VIDEO SECTION */
  #video-close,
  #audio-close {
    position: relative;
    right: auto;
    top: auto;
    display: block;
    text-align: center;
    padding: 15px 0;
  }
}