/*
		IMPORT
*/
@import url("animate.css");
@import url("font.css");
@import url("fontawesome.css");
@import url("lightbox.css");

/* RED:	#990014 */

/*
		STYLE
*/
html, body {
	font-size: 18px;
	font-family: 'Open Sans', sans-serif;
	color: #828080;
	background: #fff;
  font-weight: 400;
}


/*
		TYPOGRAPHY
*/
h1, h2, h3, h4, h5, h6 {
	font-weight: 200;
	margin: 0 0 15px 0;
	color: #990014;
	text-transform: uppercase;
  line-height: 1.5;
}
h2, h3, h4, h5, h6 {
  color: #828080;
}

p {
	line-height: 1.8;
	margin: 15px 0;
  
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto;
}

a {
	color: #990014;
	transition: all .25s;
	cursor: pointer;
}
a:hover {
	color: #7c0010;
	text-decoration: none;
}

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

.main-title::after {
	content: '';
	display: block;
	width: 180px;
	height: 7px;
	border-top: 2px solid #990014;
	border-bottom: 2px solid #990014;
	margin-top: 5px;
}

.animated {
	animation-duration: 0.5s;
}

strong {
  font-weight: 600;
}

ul.ul li {
	line-height: 1.5;
	list-style-image: url("../img/ul-arrow.png");
	margin-bottom: 15px;
}


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

.btn-primary {
	background: #990014;
}
.btn-primary:hover {
	background: #74000f;
}
.btn-danger {
	background: #990014;
}
.btn-secondary {
	background: #828080;
}


/*
		INFOLINE
*/
.infoline {
	background: #990014;
	padding: 15px 0;
  position: relative;
}
.infoline p {
	margin: 0;
	color: #fff;
	line-height: 1.5;
}
.infoline .logo {
  width: 150px;
  display: inline-block;
  vertical-align: middle;
}
.infoline .logo-text {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5;
  font-weight: 600;
  font-size: 18px;
  margin-left: 15px;
  text-transform: uppercase;
	text-align: left;
}


/*
    NAVIGATION
*/
.navbar.bg-light {
	background: #828080 !important;
}
.navbar {
  padding: 0;
}
.navbar .navbar-nav {
	width: 100%;
}
.navbar .nav-item {
	max-width: 100%;
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
}
.navbar-light .navbar-nav .nav-link {
	color: #fff;
	padding: 15px;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
	color: #990014;
	background: #fff;
}

.navbar-light .navbar-toggler {
	color: #fff;
  border: none;
	border-radius: 0;
	padding: 5px 15px;
	font-size: 38px;
	outline: none !important;
}
.navbar-light .navbar-brand {
  color: #fff !important;
  font-size: 18px;
}

.dropdown .dropdown-menu {
  transition: all .25s;
  overflow: hidden;
  transform-origin: top center;
  transform: scale(1,0);
  display: block;
  min-width: 220px;
  border-radius: 0;
  padding: 0;
  background: #828080;
  border: none;
}
.dropdown:hover .dropdown-menu {
  transform: scale(1);
}
.dropdown-item {
  padding: 10px 15px;
  background: #828080;
  color: #fff;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background: #fff;
  color: #990014;
}



/*
		HEADER
*/
header {
	height: 400px;
  background-image: url(../img/header/header1.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
  position: relative;
}
header .subnav {
  position: absolute;
  right: 15px;
  top: 15px;
}
header .subnav .subnav-item {
  display: flex;
  height: 45px;
  width: 45px;
  align-items: center;
  background: #fff;
  border: 1px solid #990014;
  border-radius: 50%;
  font-size: 22px;
  margin-bottom: 10px;
}
header .subnav .subnav-item i {
  margin: auto auto;
  display: block;
}


/*
		MAIN
*/
main {
	background: #fff;
	padding: 30px 0;
}
main.set-bg {
  background: #eee;
}


/*
		FOOTER
*/
footer {
	background: #828080;
  position: relative;
  
  background-image: url("../img/footer2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  min-height: 300px;
  transition: all .25s;
}
footer .footer-content {
  position: absolute;
  left: 400px;
}
footer .footer-content p {
  line-height: 1.55;
  color: #828080;
  font-size: 16px;
  margin: 5px 0;
}
footer .footer-content p strong {
  color: #990014;
}
footer .footer-content a {
  display: block;
  color: #828080;
}
footer .footer-content a:hover {
  color: #990014;
}
footer .footer-content i {
  width: 30px;
  display: inline-block;
}


/*
    CARD 
*/
.card {
  border-radius: 0;
  border: none;
  background: #eee;
  transition: all .25s;
  color: #828080;
	margin-bottom: 15px;
}
.card .card-title {
  transition: all .25s;
  color: #990014;
}
.card .card-img-top {
  border-radius: 0;
  opacity: 1;
  transition: all .25s;
}
.card .card-img-top {
	border-radius: 0;
}
.card:hover,
.card.active {
  background: #990014;
  color: #fff;
}
.card:hover .card-title,
.card.active .card-title {
  color: #fff;
}
.card:hover .card-img-top,
.card.active .card-img-top {
  opacity: 0.75;
}
.card .card-text.set {
	min-height: 300px;
}

.card-set .card-title {
	margin-bottom: 0;
	transition: all .25s;
	font-size: 18px;
}
.card-set .card-title i.fas {
	transition: all .25s;
	font-size: 22px;
}
.card-set .card-text {
	display: none;
	font-size: 16px;
	color: #fff;
}
.card-set .card-img .card-img-resize {
	position: relative;
	display: block;
}
.card-set .card-img .card-img-resize span {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 1;
	color: #fff;
	font-weight: bold;
	font-size: 22px;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
	line-height: 1;
}
.card-link {
	cursor: pointer;
}

.accordion .card {
	margin-bottom: 15px;
}
.accordion .card:hover {
	background: #eee;
  color: #828080;
}

.accordion .card-header {
	padding: 0;
	background: #eee;
	border-radius: 0;
}
.accordion .card-header .btn {
	display: block;
	width: 100%;
	padding: 15px;
	text-align: left;
	color: #990014;
	border-radius: 0;
}
.accordion .card-header .btn:hover,
.accordion .card-header .btn:focus {
	text-decoration: none;
	background: #990014;
	color: #fff;
}


/*
		FORM
*/
.form-control {
	border-radius: 0;
	border-color: #828080;
}
.form-control:focus {
	box-shadow: none;
	border-color: #828080;
}

.has-error .form-control {
	border-color: #dc3545;
}

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

#danke {
	display: none;
}


/*
		LIST
*/
.list {}
.list .list-item {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #828080;
}
.list .list-item:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}
.list .list-title {
	font-size: 22px;
}
.list .list-price {
	font-weight: bold;
	font-size: 26px;
}

/* ccm19 */
.ccm-root .ccm-settings-summoner--icon {
  background-color: #990014;
}



/*
		RESPONSIVE
*/
@media (max-width: 1199.98px) {
  /*
      HEADER
  */
  header {
    height: 250px;
    background-position: center right;
  }
  
  /*
      FOOTER
  */
  footer .footer-content {
    left: 300px;
  }
	
	
	.card .card-text.set {
		min-height: 360px;
	}
}
@media (max-width: 991.98px) {
	/*
      FOOTER
  */
  footer .footer-content {
    left: 180px;
  }
  
  
  /*
      CARD
  */
  .card {
    margin-bottom: 15px;
  }
	.card .card-text.set {
		min-height: auto;
	}
}
@media (max-width: 767.98px) {
  /*
      HEADER
  */
  header {
    background-position: center right -120px;
  }
  
  /*
      NAVIGATION
  */
  .navbar {
    padding: 5px 15px;
  }
  .navbar .nav-item {
    text-align: left;
  }
  .dropdown .dropdown-menu {
    transform: scale(1);
  }
  .dropdown-item {
    padding: 5px 15px 5px 30px;
  }

  
  /*
      FOOTER
  */
  footer {
    background-image: none;
  }
  footer .footer-content {
    position: relative;
    display: block;
    padding: 15px 0;
    left: 0;
  }
  footer .footer-content p {
    color: #fff;
    line-height: 1.5;
    font-size: 18px;
  }
  footer .footer-content p strong,
  footer .footer-content a {
    color: #fff;
  }
}
@media (max-width: 575.98px) {
	/*
      TYPOGRAPHY
  */
  h1 {
    font-size: 40px;
  }
}







