@import url('animate.css');
@import url('imagelightbox.css');
@import url('vegas.min.css');
@import url('fonts.css');
@import url('bootstrap-icons.css');
@import url('fontawesome.min.css');

:root {
  --primary: #00a912;
  --secondary: #222222;
  --tertiary: #c80000;
  
  --white: #ffffff;
  
  --animate-duration: 300ms;
}

html, body {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--secondary);
  background-color: #f5f5f5;
}


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

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

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

small {
  display: block;
  font-size: 65%;
  text-transform: none;
  color: var(--secondary);
}

strong {
  font-weight: 800;
}

hr {
  margin: 45px 0;
}


/* IMAGES */
.content-img {
  border: 1px solid var(--secondary);
}


/* BUTTONS */
.btn {
  border-radius: 0;
  border: none;
  box-shadow: none !important;
}

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

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

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


/* BACKGROUND */
.bg-primary {
  background: rgb(41,115,49);
  background: -moz-linear-gradient(45deg, rgba(41,115,49,1) 0%, rgba(34,175,50,1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(41,115,49,1) 0%, rgba(34,175,50,1) 100%);
  background: linear-gradient(45deg, rgba(41,115,49,1) 0%, rgba(34,175,50,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#297331",endColorstr="#22af32",GradientType=1); 
}


/* INFOLINE  */
.infoline {
  padding: 30px 0;
  background-color: var(--white);
  background-image: url('../img/header/2.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}
.infoline .infoline-logo {
  width: 100%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
}
.infoline .infoline-infos {
  margin: 0;
  line-height: 1.5;
}
.infoline .infoline-infos i.bi,
.infoline .infoline-infos i.fas {
  width: 25px;
  display: inline-block
}


/* HEADER */
header {
  display: block;
  min-height: 400px;
}


/* NAV */
.navbar {
  background-color: var(--primary) !important;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar .navbar-nav {
	width: 100%;
}
.navbar .nav-item {
	max-width: 100%;
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
}
.navbar .nav-link {
	color: var(--white) !important;
	padding: 20px 15px;
	text-transform: uppercase;
	transition: all .25s;
  line-height: 1.25;
  font-weight: 800;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
	color: var(--white) !important;
  border-bottom-color: var(--white);
}

.navbar-brand {
  display: none;
}
.navbar-brand img {
  width: 100%;
  max-width: 220px;
}

.navbar-toggler {
  border: none;
  color: var(--secondary) !important;
  border-radius: 0;
  text-align: left;
  margin: 5px 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar.fixed {
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
  background-color: var(--white) !important;
}
.navbar.fixed .nav-link {
  color: var(--secondary) !important;;
}
.navbar.fixed .nav-link:hover,
.navbar.fixed .nav-link:focus,
.navbar.fixed .nav-link.active {
	color: var(--primary) !important;
  border-bottom-color: var(--primary);
}


.nav-pills .nav-link {
  border-radius: 0;
  background: var(--primary);
  color: #fff;
  transition: all 0.25s;
  margin: 5px;
}
.nav-pills .nav-link:hover, 
.nav-pills .nav-link.active {
  border-radius: 0;
  background: var(--secondary);
  color: #fff;
}


/* MAIN */
main {
  display: block;
  padding: 45px;
  background-color: var(--white);
  min-height: calc(100%);
  position: relative;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
}
main::after {
  content: '';
  width: 0; 
  height: 0; 
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 25px solid var(--white);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}


/* SECTION */
section {
  padding: 60px 0;
  position: relative;
}
section:first-child {
  padding-top: 0;
}


/* FOOTER */
.footer {
  position: relative;
  display: block;
  color: var(--white);
}
.footer a {
  color: var(--white);
}
.footer a:hover {
  color: var(--white);
  opacity: 0.5;
}
.footer .footer-title {
  margin: 15px 0;
  color: var(--white);
}

.footer1 {
  background-color: var(--primary);
  padding: 45px 0;
}

.footer2 {
  background-color: var(--secondary);
  padding: 30px 0;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
.footer2 a:hover {
  color: var(--white);
  opacity: 0.5;
}

.footer .totop {
  position: absolute;
  top: -25px;
  right: 15px;
  font-size: 40px;
  padding: 5px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: var(--secondary);
  line-height: 1;
}
.footer .totop:hover {
  color: var(--primary);
  opacity: 1;
}

.footer .footer-illustration {
  min-height: 200px;
  background-image: url('../img/footer-bg.png');
  background-position: center bottom -10px;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer .seo a {
  transition: none !important;
}


/* MODAL */
.modal-content {
  border-radius: 0;
  border: none;
  box-shadow: none;
  background-color: var(--white);
  color: var(--secondary);
}
.modal-header {
  padding: 30px 30px 0 30px;
  border-bottom: none;
}
.modal-title {
  margin: 0;
}
.modal-body {
  padding: 30px;
}


/* CARD */
.card {
  border: none;
  border-radius: 0;
  background-color: var(--white);
  box-shadow: 0 5px 10px -5px rgba(0,0,0,0.25);
  margin-bottom: 30px;
  position: relative;
}
a.card:hover {
  transform: scale(1.05);
}
.card-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 180px;
  border-radius: 0;
}
.card-title {
  text-align: center;
  font-size: 14px;
  margin: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  word-break: break-all;
}
.card-info {
  background-color: var(--tertiary);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 25px;
  position: absolute;
  top: -15px;
  right: -15px;
  transform: rotate(5deg);
  box-shadow: 3px 3px 3px 0 rgba(0,0,0,0.25);
}


/* NEWS */
.newsitem {
  display: block;
  position: relative;
  background-color: var(--white);
  box-shadow: 0 5px 10px -5px rgba(0,0,0,0.25);
  padding: 15px;
  margin-bottom: 30px;
}
.newsitem .newsitem-img {
  width: 100%;
  max-width: 200px;
}
.newsitem .newsitem-title {
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 15px;
}
.newsitem .newsitem-title small {
  text-transform: none;
  font-weight: 400;
  font-size: 14px;
}
.newsitem .newsitem-text {
  font-size: 16px;
  line-height: 1.5;
}


/* GALLERY */
.gallery {
  margin: 15px 0; 
}
.gallery img {
  margin-bottom: 15px;
  border: 5px solid #fff;
  transition: all 0.25s;
}
.gallery img:hover {
  border-color: #008200;
}
.gallery .ref-img {
  display: block;
  padding: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 160px;
  margin-bottom: 15px;
  position: relative;
}
.gallery .ref-img.vid::after {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  background-image: url('../img/play.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


/* DETAIL INFO */
.detail-info {
  background-color: var(--tertiary);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 25px;
  transform: rotate(.5deg);
  box-shadow: 3px 3px 3px 0 rgba(0,0,0,0.25);
  margin-top: 15px;
  text-align: center;
}



/* FORM */
.form-group {
  margin-bottom: 15px;
}
.form-control,
.form-select {
  border-radius: 0;
  line-height: 2;
}
.form-control:hover,
.form-control:focus,
.form-select:hover,
.form-select:focus {
  box-shadow: none;
  outline: none;
  border-color: var(--primary);
}

.form-check-input:checked {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.form-check-input:focus {
  box-shadow: none;
}

#danke {
  display: none;
}

.has-error .form-control,
.has-error .form-select {
  border-color: var(--tertiary) !important;
}
.has-error label, 
.has-error .help-block {
  color: var(--tertiary) !important;
}

.has-error .form-control::-webkit-input-placeholder,
.has-error .form-select::-webkit-input-placeholder {
  color: var(--tertiary);
}
.has-error .form-control:-moz-placeholder,
.has-error .form-select:-moz-placeholder {
  color: var(--tertiary);
}
.has-error .form-control::-moz-placeholder,
.has-error .form-select::-moz-placeholder {
  color: var(--tertiary);
}
.has-error .form-control:-ms-input-placeholder,
.has-error .form-select:-ms-input-placeholder {
  color: var(--tertiary);
}

/* CCM19 */
.ccm-settings-summoner {
  display: none !important;
}


/* MOBIL */
@media (max-width: 1399.98px) {  }
@media (max-width: 1199.98px) {  }
@media (max-width: 991.98px) { 
  /* INFOLINE */
  .infoline .infoline-logo {
    max-width: 280px;
  }
  .infoline .infoline-infos {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .infoline .infoline-infos .infoline-infos-link {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    font-size: 16px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
  }
  .infoline .infoline-infos .infoline-logo-link {
    width: auto;
    height: auto;
    display: block;
  }
  
  /* HEADER */
  header {
    min-height: 250px;
  }
  
  /* NAV */
  .navbar {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: var(--white) !important;
  }
  .navbar .nav-item {
    text-align: start;
  }
  .navbar .nav-link { 
    padding: 5px 15px;
    border-bottom: none;
    border-top: none;
    border-left: 3px solid var(--secondary);
    color: var(--secondary) !important;
    margin-bottom: 5px;
  }
  .navbar .nav-item:last-child .nav-link {
    margin-bottom: 0;
  }
  .navbar .nav-link:hover,
  .navbar .nav-link:focus,
  .navbar .nav-link.active {
    color: var(--primary) !important;
    border-color: var(--primary);
  }
  
  .navbar-brand {
    display: block !important;
    opacity: 0;
    transition: all .25s;
    margin-left: 30px;
  }
  .navbar.fixed .navbar-brand {
    opacity: 1;
    margin-left: 0;
  }
  
  /* MAIN */
  main {
    padding: 30px;
  }
  
  /* SECTION */
  section {
    padding: 45px 0;
  }
}
@media (max-width: 767.98px) {  
  /* INFOLINE */
  .infoline .infoline-logo {
    max-width: 220px;
  }
  
  /* HEADER */
  header {
    min-height: 180px;
  }
  
  /* FOOTER */
  .footer .footer-illustration {
    min-height: 100px;
    background-position: center bottom -5px;
  }
}
@media (max-width: 575.98px) {  }








