@import url("animate.min.css");
@import url("fontawesome.min.css");
@import url("fonts.css");
@import url("lightbox.min.css");
@import url("owl.carousel.min.css");
@import url("owl.theme.default.min.css");
@import url("vegas.min.css");

:root {
  --primary: #1795d4;
  --secondary: #666666;
  --tertiary: #6fcbf3;
  --white: #ffffff;
  --danger: #c30000;
  
  --animate-duration: 600ms;
  --animate-delay: 0.6s;
}


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


/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  margin: 0 0 30px 0;
  line-height: 1.3;
  color: var(--primary);
  text-transform: uppercase;
}
h2, h3, h4, h5, h6 {
  margin: 30px 0;
  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(--primary);
	text-decoration: none;
	transition: all 0.25s;
}
a:hover {
	color: var(--secondary);
	text-decoration: none;
}

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

strong {
	font-weight: 600;
}

hr, .hr {
  height: 1px;
	margin: 75px 0;
  position: relative;
  border-color: var(--primary);
  background-color: var(--primary);
}
.hr::after {
  content: '';
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  background-image: url("../img/hr.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  position: absolute;
  margin-top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid var(--white);
}

.special-list {
  font-weight: 600;
  min-width: 180px;
  display: inline-block;
  vertical-align: middle;
}

ul.ul {
  list-style-image: url("../img/ul.png");
}


/* BUTTONS */
.btn {
  transition: all .25s;
  border: none;
  border-radius: 5px 5px 5px 15px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: none !important;
  margin-bottom: 15px;
}
.btn:hover,
.btn:focus,
.btn.active {
  transform: scale(1.025);
}

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


/* IMAGES */
.content-img {
  border-radius: 10px 10px 10px 25px;
  margin-bottom: 30px;
  border: 1px solid var(--secondary);
}

.content-img.float-start,
.content-img.float-end {
  width: 100%;
  max-width: 300px;
}

.content-img.float-start {
  margin-right: 25px;
}


/* VIDEO */
.video {
  width: 100%;
  border-radius: 10px 10px 10px 25px;
  margin: 15px 0;
  border: 1px solid var(--secondary);
}


/* SECTION */
section {
  display: block;
  position: relative;
  padding: 60px 0;
}

section#start {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border-radius: 25px 25px 25px 75px;
}
.section-start-wrapper {
  position: relative;
  background-color: var(--white);
  display: block;
  min-height: 100%;
  padding: 30px;
}
.section-start-wrapper.small {
  min-height: 500px;
}
section#start .to-content {
  position: absolute;
  left: 50%;
  bottom: 45px;
  transform: translateX(-50%);
  font-size: 32px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: rgba(255,255,255,0.75);
  color: var(--secondary);
  border-radius: 10px 10px 10px 25px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.25);
  transition: all .25s;
  
  animation-name: to-content;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}
section#start .to-content:hover {
  color: var(--primary);
  background-color: var(--white);
}

@keyframes to-content {
  0% {
    padding-top: 0;
  }
  50% {
    padding-top: 15px;
  }
  100% {
    padding-top: 0;
  }
}

section.parallax {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 350px;
}


/* SUBNAV */
.subnav {
  position: fixed;
  right: 0;
  bottom: 75px;
  display: block;
  background-color: var(--primary);
  z-index: 500;
  text-align: center;
  border-radius: 5px 0 0 15px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.25);
  transition: all .25s;
  margin-bottom: none !important;
}
.subnav a {
  display: block;
  font-size: 28px;
  padding: 5px 15px;
  border-bottom: 1px solid #ccc;
  color: var(--white);
}
.subnav a:first-child {
  border-radius: 5px 0 0 0;
}
.subnav a:last-child {
  border-radius: 0 0 0 15px;
}
.subnav a:hover {
  color: var(--white);
  background-color: var(--tertiary);
}
.subnav a:last-child {
  border-bottom: none;
}


/* NAV */
.navbar {
  background-color: rgba(255,255,255,0.75) !important;
  border-radius: 10px 10px 10px 25px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.25);
  position: absolute;
  left: calc(50% - 150px);
  top: 90px;
  transform: translateX(calc(-50% + 75px));
  z-index: 1000;
  padding-top: 30px;
  padding-bottom: 30px;
  width: calc(100% - 150px);
  max-width: 1320px;
  transition: all .25s;
  margin: 0 75px;
}
.navbar .navbar-nav {
	width: 100%;
}
.navbar .nav-item .nav-link {
  color: var(--secondary) !important;
  font-size: 20px;
  font-weight: 400;
}
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link:focus,
.navbar .nav-item .nav-link.active {
  color: var(--primary) !important;
}
.navbar .nav-item {
	max-width: 100%;
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
}

.dropdown-menu {
  padding: 15px;
  border-radius: 15px 15px 15px 30px;
  border: none;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.25);
}
.dropdown-item {
  border-radius: 10px 10px 10px 15px;
  color: var(--secondary) !important;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  color: var(--white) !important;
  background-color: var(--secondary) !important;
}

.nav-logo {
  width: 290px;
  padding: 0 25px 0 25px;
  transition: all .25s;
}

.navbar-brand img {
  width: 100%;
  max-width: 150px;
}

.navbar-toggler {
  border-radius: 0;
  border: none;
  box-shadow: none !important;
  padding: 0;
}

.navbar.fixed-top {
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  max-width: 100%;
  transform: none;
  background-color: var(--white) !important;
  border-radius: 0px;
  margin: 0;
  width: 100%;
}
.navbar.fixed-top .nav-logo {
  width: 230px;
}


/* FOOTER */
footer {
  display: block;
  position: relative;
  background-color: var(--secondary);
  color: var(--white);
  background-image: url("../img/logo-footer2.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
}
footer .container-wrap {
  padding: 75px 0;
}

footer a {
  margin-right: 10px;
  color: var(--white);
  opacity: 1;
}
footer a:hover,
footer a.active {
  color: var(--white);
  opacity: 0.5;
}

footer p {
  text-align: left;
}
footer h3 {
  color: var(--white);
  margin: 0;
}
footer .hr {
	margin: 60px 0;
  border-color: var(--white);
  background-color: var(--white);
}
footer .hr::after {
  background-image: url("../img/hr3.png");
  background-color: var(--white);
  border-color:var(--secondary);
}
footer .spacer {
  width: 135px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}
footer i {
  display: inline-block;
  width: 25px;
}

footer .to-top {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-around;
  right: 75px;
  top: -30px;
  border-radius: 7.5px 7.5px 7.5px 15px;
  font-size: 25px;
  border: 5px solid var(--secondary);
}
footer .to-top:hover {
  opacity: 1;
  background-color: var(--primary);
}

footer .copyright,
footer .footer-nav {
  margin: 0;
}

.branding {
	padding: 10px 0;
	background: #333;
	display: block;
}
.branding a {
	margin: 0;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	display: block;
	opacity: 1;
}
.branding a:hover {
  opacity: 0.5;
}
.branding a img {
	width: 25px;
}


/* CONTENT BOX */
.content-box {
  display: block;
  padding: 30px;
  border-radius: 15px 15px 15px 30px;
  background-color: var(--primary);
  color: var(--white);
  margin: 15px 0;
}
.content-box h3 {
  color: var(--white);
  margin: 0;
  line-height: 1.2;
  font-size: 22px;
  margin-bottom: 15px;
}
.content-box .content-box-tel {
  margin: 0;
  font-size: 35px;
  line-height: 1.25;
  text-align: left;
}


/* CARDS */
.card {
  padding: 15px;
  border-radius: 10px 10px 10px 25px;
  margin-bottom: 30px;
  border-color: var(--secondary);
  background-color: var(--white);
}
.card-img-top {
  border-radius: 5px 5px 5px 15px;
}
.card-body {
  padding: 0;
}
.card-title {
  margin-top: 0;
}
.card-text {
  font-size: 16px;
  line-height: 1.5;
}

.card.card-box .card-img-top {
  margin-bottom: 15px;
}
.card.card-box .card-title {
  text-align: center;
  font-size: 18px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}
.card.card-box .card-title small {
  font-weight: 400;
  font-size: 14px;
  display: block;
  min-height: 54px;
}
.card.card-box .card-body {
  text-align: center;
}
.card.card-box .card-body .card-footer {
  background-color: none !important;
  background: none !important;
  padding: 15px 0 0 0;
  border-top: 1px solid var(--secondary);
}

a.card {
  color: var(--secondary);
}
a.card:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.025);
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.25);
}


/* ACCORDION */
.accordion {
  display: block;
}
.accordion-item {
  margin-bottom: 15px;
  border-radius: 0px !important;
  border: none;
}
.accordion-header {
  border-radius: 0px !important;
  margin: 0;
}
.accordion-button {
  border-radius: 10px 10px 10px 25px !important;
  background-color: var(--secondary);
  color: var(--white);
  transition: all .25s;
}
.accordion-button:hover,
.accordion-button:focus,
.accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: none;
}
.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}


/* MODAL */
.modal-content {
  border: none;
  border-radius: 10px 10px 10px 25px;
}
.modal-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 30px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.modal-header .modal-title {
  color: var(--white);
  margin: 0;
}
.modal-header .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}
.modal-body {
  padding: 30px;
}
.modal-body p {
  text-align: left;
}
.modal-body p:first-child {
  margin-top: 0;
}
.modal-body p:last-child {
  margin-bottom: 0;
}
.modal-body a {
  color: var(--secondary);
}
.modal-body a:hover {
  color: var(--primary);
}
.modal-footer {
  padding: 30px;
}


/* VEGAS */
.vegas-content-scrollable {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.vegas-content {
  min-height: 100%;
  position: relative;
  padding: 45px !important;
  border-radius: 25px 25px 25px 75px;
}
.vegas-slide {
  border-radius: 25px 25px 25px 75px !important;
}


/* VIDEO */
.vid {
  display: block;
  position: relative;
  min-height: 280px;
  width: 100%;
  background-color: #eee;
  border-radius: 10px 10px 10px 25px;
  background-image: url("../img/content/2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.vid::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 60px;
  width: 60px;
  background-image: url("../img/play-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all .25s;
}
.vid:hover::after {
  height: 80px;
  width: 80px;
}


/* FORM */
.form-control,
.form-select {
	border-radius: 0px;
	border: none;
	border-bottom: 1px solid var(--secondary);
	padding-left: 0;
	transition: all .25s;
}
.form-control:focus,
.form-select:focus {
	box-shadow: none;
	border-bottom-color: var(--primary);
	padding-left: 15px;
}

.form-group {
	margin-bottom: 30px;
}

.form-check-input:checked {
	border-color: var(--primary);
	background-color: var(--primary);
}

/* FORM - ERROR */
.has-error .form-control,
.has-error .form-select,
.has-error label {
	border-bottom-color: var(--danger);
	color: var(--danger);
}

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

#danke {
	display: none;
}


/* PRAXIS SLIDER */
.praxis-slider {
  max-width: 100%;
  min-height: 280px;
  display: block;
  border: 1px solid var(--secondary);
  border-radius: 10px 10px 10px 25px;
}
.praxis-slider .vegas-content {
  min-height: 100%;
  position: relative;
  padding: 45px !important;
  border-radius: 10px 10px 10px 25px;
}
.praxis-slider .vegas-slide {
  border-radius: 10px 10px 10px 25px !important;
}

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


/* MOBIL */
@media (max-width: 1399.98px) { }
@media (max-width: 1199.98px) { 
  /* NAV */
  .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
    top: 30px;
    transform: translateX(calc(-50% + 30px));
    width: calc(100% - 60px);
    left: calc(50% - 60px);
    margin: 0 30px;
  }
  .nav-logo {
    width: 220px;
    padding: 0 25px 0 25px;
  }
  .navbar .nav-item .nav-link {
    color: var(--secondary) !important;
    font-size: 16px;
    font-weight: 400;
  }
  .dropdown-menu {
    box-shadow: none;
  }
  .dropdown-item {
    font-size: 16px;
  }
  
  /* SUBNAV */
  .subnav {
    bottom: 0;
    left: 0;
    border-radius: 0px !important;
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: -60px;
  }
  .subnav a {
    font-size: 22px;
    border-bottom: none;
    border-right: 1px solid #ccc;
    border-radius: 0px !important;
    width: 100%;
  }
  .subnav a:last-child {
    border-right: none;
  }
  
  /* SECTION */
  section {
    padding: 30px 0;
  }
  section#start {
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border-radius: 25px 25px 25px 75px;
  }
  .section-start-wrapper {
    padding: 15px;
  }
  .section-start-wrapper.small {
    min-height: 350px;
  }
  
  /* FOOTER */
  footer .to-top {
    right: 30px;
  }
  
  .branding {
    margin-bottom: 49.6px;
  }
}
@media (max-width: 991.98px) { 
  /* IMAGES */
  .content-img.float-start,
  .content-img.float-end {
    width: 100%;
    max-width: 400px;
    float: none !important;
    margin: 0 auto 30px auto;
    display: block;
  }
  
  /* NAV */
  .nav-logo {
    display: none;
  }
  .navbar .nav-item {
    text-align: left;
  }
  .navbar .nav-item .nav-link {
    padding: 5px 15px;
  }
  .navbar-collapse {
    max-height: 300px;
    overflow: auto;
  }
  
  /* VEGAS */
  .vegas-content {
    padding: 15px !important;
  }
}
@media (max-width: 767.98px) { }
@media (max-width: 575.98px) { }











