
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
 /* background: #fff;*/
  color: #444;
  font-family: "Open Sans", sans-serif;
  background-image: url('https://gametwitter.de/forum/wcf/images/alphaBlue3/pageTopBG.png'), url('https://gametwitter.de/forum/wcf/images/alphaBlue3/pageBG.jpg');
  background-position: left -140px, left 180px;
  background-repeat: repeat-x, repeat-x;
  background-color: #000;
  height: inherit;
  
}




a {
  color: rgba(153, 153, 153, 1);
  transition: 0.5s;
}



p {
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family:  sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.topnav {
  overflow: hidden;
  background-color: #333;
  margin-top:-5px;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #4a9afb;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 980px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }

  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 20px 0;
  height: 84px;
  transition: all 0.5s;
  z-index: 997;
	background: #2e2e2e;
	background: -moz-linear-gradient(top, #2e2e2e 0%, #1a1a1a 100%);
	background: -webkit-linear-gradient(top, #2e2e2e 0%, #1a1a1a 100%);
	background: -o-linear-gradient(top, #2e2e2e 0%, #1a1a1a 100%);
	background: linear-gradient(to bottom, #2e2e2e 0%, #1a1a1a 100%);
	border-bottom: 1px solid #4a9afb;
	border-top: 1px solid #4f4f4f;
	box-shadow: 0 2px 0 #2e77c9, 0 1px 0 rgba(0, 0, 0, 0.5) inset, 0 -1px 0 #000 inset;
	border-radius: 5px;
	position: fixed;
	width: 100%;
	top: 0;

}

#header #logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#header #logo h1 a {
  color: #0c2e8a;
  line-height: 1;
  display: inline-block;
}

#header #logo h1 a span {
  color: #50d8af;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header {
    padding: 20px 0;
    height: 74px;
  }
  #header #logo h1 {
    font-size: 34px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 60vh;
  position: relative;
  background: url("../img/intro-carousel/1.jpg") no-repeat;
  background-size: cover;
}

#intro .intro-content {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#intro .intro-content h2 {
  color: #0c2e8a;
  margin-bottom: 30px;
  font-size: 64px;
  font-weight: 700;
}

#intro .intro-content h2 span {
  color: #50d8af;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #intro .intro-content h2 {
    font-size: 34px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 22px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 8px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: left;
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}


.nav-menu a {
  padding: 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #ccc;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 14px;
  outline: none;
}

.nav-menu a:hover {
  color: #fff;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #50d8af;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #555;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #50d8af;
}

#mobile-nav ul .menu-item-active {
  color: #50d8af;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  color: #0c2e8a;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.section-header h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #50d8af;
  bottom: 0;
  left: 0;
}

.section-header p {
  padding: 0;
  margin: 0;
}

/* About Section
--------------------------------*/
#about ,#aboutReforger{
  padding: 60px 0 30px 0;
}

#about .about-img ,#aboutReforger .about-img {
  overflow: hidden;
}

#about .about-img img, ,#aboutReforger .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }
  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .content h2 {
  color: #0c2e8a;
  font-weight: 700;
  font-size: 36px;
  font-family: "Raleway", sans-serif;
}

#about .content h3 {
  color: #555;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

#about .content p {
  line-height: 26px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #50d8af;
}

#about .content ul {
  list-style: none;
  padding: 0;
}

#about .content ul li {
 /* padding-bottom: 10px;*/
}


/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: #081e5b;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover,#call-to-action .cta-btn:focus {
  background: #50d8af;
  border: 3px solid #50d8af;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f2f5f8;
  padding: 0 0 30px 0;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #555;
}

#footer .credits a {
  color: #0c2e8a;
}

.content{
	padding-bottom: 30px;
	width: 1280px;
	background-color: rgba(35, 35, 35, 1);
	padding: 20px;
}

.content:not(:last-child) {
	margin:0 auto;

}

section{
	background: linear-gradient(to bottom, #f5f5f5 0%, #ededed 100%);
	box-shadow: 0 1px 0 #fff inset, 0 -1px 0 #fff inset;
	margin-bottom: 30px;
}

.col-lg-6>content{
	background: linear-gradient(to bottom, #f5f5f5 0%, #ededed 100%);
	box-shadow: 0 1px 0 #fff inset, 0 -1px 0 #fff inset;
}

.contentbox{
	border: 1px solid #ccc;
	padding: 0 10px 10px 10px;
	border-radius: 5px;
	background-color: #fff;
}

.title{
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 15px;
	font-size: 22px;
}

.description a , p a{
	color: #032ba2;
	transition: 0.5s;
	font-weight: bold;
	font-size: medium;
	line-height: 2;
}

.link{
	display: block;
	color: #032ba2;
	font-weight: bold;
}


.box{
	border: 1px solid #ccc;
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 5px;
	background-color:#fff;
}

.listing{
	font-weight:bold;
	color: #000;
}

main{
	margin-top: 85px;
}


.event-img img{
	max-width: 100%;

}
.event-img{
	padding-bottom: 20px;

}

.special ol,
ul {
 list-style-type: square;
}


a:hover, a:active, a:focus{
  color: #333;
  outline: none;
  text-decoration: none;
}

.member{
	display:inline-block;
}
/** CSS für alle **/
@media only screen and (max-width: 599px) {

	.content{
		width: 100%;
	}
}

@media only screen and (min-width: 600px ) {

	.content{
		width: 100%;
	}
}

@media only screen and (min-width: 980px ) {
	
	.content{
		width: 65%;
	}
	
}

@media only screen and (min-width: 1260px ) {
	main{
		
	}
}




