@import url("fontawesome.min.css");
@import url("fonts.css");
@import url("lightbox.css");
@import url("vegas.min.css");
@import url("aos.css");

:root {
	--primary: #a23c3c;
	--secondary: #555555;
}

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

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

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

.special {
	text-align: center;
	background: var(--primary);
	padding: 5px 15px;
	margin: 0;
}

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

small {
	font-family: 'Poppins';
	display: block;
	font-size: 65%;
	text-transform: none;
	font-weight: 200;
}

strong {
	font-weight: 600;
}

hr {
	border-color: #444;
}

ul.ul {
	list-style: square;
}

.eeboo {
	font-weight: 800;
	font-family: 'Roboto Mono';
	color: var(--primary);
	margin-right: 5px;
}
.gmbh {
	font-weight: 200;
	font-family: 'Roboto Mono';
	color: var(--secondary);
}

/* BUTTONS */
.btn {
	border-radius: 0;
	border: none;
	transition: all .25s;
	margin-bottom: 5px;
}
.btn:focus {
	box-shadow: none !important;
}

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

/* FORM */
.form-control {
	border-radius: 0;
	border: none;
	border-bottom: 1px solid #ccc;
	padding-left: 0;
}
.form-control:focus {
	box-shadow: none;
	border-color: var(--secondary);
}

.has-error .form-control {
	border-color: var(--primary);
}
.has-error label,
.has-error .help-block {
	color: var(--primary);
}

/* NAV */
.navbar {
	font-family: 'Roboto Mono' !important;
	background-color: var(--white) !important;
	padding-top: 15px;
	padding-bottom: 15px;
	transition: all .25s !important;
}
.navbar .nav-link {
	color: var(--primary) !important;
	text-transform: lowercase;
	padding: 10px 0 !important;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	margin-right: 20px;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
	color: var(--primary) !important;
	border-bottom-color: var(--white);
}
.navbar .nav-item:last-child .nav-link {
	margin-right: 0;
}

.navbar .navbar-brand {
	color: var(--primary) !important;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 300;
}
.navbar .navbar-brand small {
	text-align: right;
	font-weight: 300;
	color: var(--secondary);
}
.navbar .navbar-brand img {
	width: 220px;
	transition: all .25s;
}


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

.navbar.set {
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: var(--white) !important;
	box-shadow: 0 0 10px 0 rgba(55,55,55,0.5);
}
.navbar.set .nav-link {
	color: var(--primary) !important;
}
.navbar.set .nav-link:hover,
.navbar.set .nav-link:focus,
.navbar.set .nav-link.active {
	color: var(--secondary) !important;
	border-bottom-color: var(--secondary);
}
.navbar.set .navbar-brand {
	color: var(--primary) !important;
}
.navbar.set .navbar-brand img {
	width: 190px;
}


/* SECTION */
section {
	background-color: var(--white);
	position: relative;
}
section:nth-child(even) {
	background-color: #f5f5f5;
}

section .container {
	padding-top: 60px;
	padding-bottom: 60px;
}
section .section-header {
	display: flex;
	align-items: center;
	justify-content: space-around;
	text-align: center;
	min-height: 280px;
	background-color: var(--primary);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
section .section-header h2 {
	color: var(--white);
	margin: 0;
	font-size: 40px;
}

section#start {
	display: flex;
	align-items: center;
	justify-content: space-around;
	min-height: 100%;
	background-color: transparent;
}
section#start .centered-content {
	width: 100%;
	max-width: 1100px;
	padding: 30px;
	text-align: center;
	text-shadow: 2px 2px 2px rgba(55,55,55,0.05);
}
section#start .centered-content .centered-text {
	font-size: 50px;
	color: var(--white);
	margin: 0;
}
section#start .centered-content .centered-text small {
	font-size: 40px;
}
section#start .centered-content img {
	width: 100%;
	max-width: 600px;
}

section .section-title i {
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: space-around;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	font-size: 22px;
}

/* FOOTER */
footer {
	background-color: var(--secondary);
	color: var(--white);
	padding: 45px 0;
}
footer h3,
footer a {
	color: var(--white);
}
footer a:hover {
	color: var(--white);
	opacity: 0.5;
}
footer .footer-logo {
	width: 220px;
}


/* TO TOP */
.to-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 50px;
	height: 50px;
	display: none;
	justify-content: space-around;
	align-items: center;
	background: var(--white);
	font-size: 25px;
	border-radius: 50%;
	box-shadow: 2px 2px 2px 0 rgba(55,55,55,0.5);
}

/* CARD */
.card {
	border-radius: 0;
	margin-bottom: 30px;
}
.card .card-img-top {
	border-radius: 0;
}
.card .card-body {
	padding: 15px;
}
.card .card-icon {
	display: inline-block;
	vertical-align: middle;
	font-size: 50px;
	margin: 0;
	margin-right: 15px;
	line-height: 1;
}
.card .card-text {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	font-size: 16px;
	line-height: 1.2;
}
.card .card-text small {
	font-size: 12px;
}

.card .card-gallery {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	padding: 0 10px;
}
.card .card-gallery .card-gallery-item {
	min-height: 80px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	margin: 5px;
	transition: all .25s;
}
.card .card-gallery .card-gallery-item:hover {
	transform: scale(1.05);
}

.accordion .card {
	border: none;
	margin-bottom: 10px;
}
.accordion .card .card-header {
	border: none;
	background: var(--secondary);
	color: var(--white);
	transition: all .25s;
}
.accordion .card .card-header:hover {
	background: var(--primary);
}
.accordion .card .card-header .btn-link {
	color: var(--white);
	text-decoration: none;
	text-align: left;
}
.accordion .card .card-header .btn-link:focus {
	box-shadow: none;
}
.accordion .card .card-body {
	background: #f5f5f5;
}


/* MEMBER */
.member {
	display: flex;
	align-items: center;
	flex-direction: row;
	margin-bottom: 30px;
}
.member .member-img {
	width: 60px;
	height: 60px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;
	margin-right: 15px;
	background-color: #f5f5f5;
	display: block;
}
.member .member-name {
	line-height: 1.2;
	font-size: 20px;
	color: var(--secondary) !important;
}

.member .member-mail {
	line-height: 1.2;
	font-size: 12px;
	color: var(--secondary) !important;
}

/* PARALLAX */
.parallax {
	display: block;
	position: relative;
	min-height: 400px;
}

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



/* MOBIL */
@media (max-width: 1199.98px) { }
@media (max-width: 991.98px) { 
	/* NAV */
	.navbar {
		background-color: var(--white) !important;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.navbar .nav-link {
		color: var(--primary) !important;
		border: none;
		border-left: 1px solid transparent;
		padding: 5px 15px !important;
		margin: 0;
	}
	.navbar .nav-link:hover,
	.navbar .nav-link:focus,
	.navbar .nav-link.active {
		color: var(--secondary) !important;
		border-left-color: var(--secondary);
	}
	.navbar .navbar-brand {
		color: var(--primary) !important;
	}
	
	.navbar.set {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	/* SECTION */
	section#start .centered-content h1 {
		font-size: 60px;
	}
	section#start .centered-content h1 small {
		font-size: 30px;
	}
}
@media (max-width: 767.98px) { 
	/* SECTION */
	section#start .centered-content h1 {
		text-align: center;
	}
	section#start .centered-content h1 small {
		font-size: 20px;
	}
}
@media (max-width: 575.98px) { 
	/* SECTION */
	section#start .centered-content h1 {
		font-size: 50px;
	}
	section#start .centered-content h1 small {
		font-size: 17px;
	}
}