:root {
    --mainColor: #212529!important;
	--secondColor: #ffca33!important;
	--lowerSecondColor: #daa412!important;
    --blueColor: #0d0e1b!important;
    --footerCompanyColor: #399e50!important;
    --footerColor: #343a40!important;
    --transparent: transparent!important;
	--black: #0e0e0e!important;
  }

* {
	margin: 0px;
	padding: 0px;
	list-style: none;
	border: none;
	text-decoration: none;
	font-family: 'Open Sans', sans-serif;
	font-family: 'Roboto', sans-serif;
	font-family: 'Oswald', sans-serif;
}

@font-face {
	font-family: kaushan;
	src: url(../font/kaushanScript/KaushanScript-Regular.ttf);
}

.color-second {
    color: var(--secondColor);
}

.bg-secondary {
	background-color: var(--lowerSecondColor)!important;
}

.bg-secondary:hover {
	background-color: var(--secondColor)!important;
}

.hr-second {
    background-color: var(--blueColor);
    border-top: 1px solid var(--secondColor);
}

body{
    background-color:black;
    overflow-x: hidden;
	/* background-color:#fff; */
}

a{
	text-decoration:none;
	outline:none;
	color:inherit;
}
a:hover{
	text-decoration:none;
	outline:none;
	color:inherit;
}
section{
	display:block;
	max-width: 1920px;
	width: 100%;
	margin:auto;
}

/*******************************************************
	mobile navigation
*******************************************************/

  #mobile-nav-toggle {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999;
	margin: 8px 10px 0 0;
	border: 0;
	background: none;
	font-size: 24px;
	display: none;
	transition: all 0.4s;
	outline: none;
	cursor: pointer;
  }
  
  #mobile-nav-toggle i {
	color: #fff;
  }
  
  /* Mobile Nav Styling */
  
  #mobile-nav {
	position: fixed;
	top: 0;
	padding-top: 18px;
	bottom: 0;
	z-index: 998;
	background: rgba(0, 0, 0, 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: var(--mainColor);
  }
  
  #mobile-nav ul .menu-item-active {
	color: var(--mainColor);
  }
  
  #mobile-body-overly {
	width: 100%;
	height: 100%;
	z-index: 997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(0, 0, 0, 0.6);
	display: none;
  }
  
  @media (max-width: 1060px) {
	#mobile-nav-toggle {
	  display: inline;
	}
  }

  /* 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;
  }


/********************************************************
	starter
********************************************************/
.starter {
	padding-top: 30px;
    background-color: var(--blueColor);
}

@media (max-width:550px) {

	.starter h1 {
		font-size: 26px;
	}
}

/********************************************************
	About
********************************************************/
.about {
	padding-top: 50px;
    /* background-color: var(--blueColor); */
    background-color: var(--black);
}

.fact {
	padding: 40px 0px;
	color: var(--secondColor);
	width: 100%;
	height: 100%;
	display: -ms-flexbox!important;
	display: flex!important;
	-ms-flex-direction: column!important;
    flex-direction: column!important;
	-ms-flex-align: center!important;
	align-items: center!important;
	-ms-flex-pack: center!important;
    justify-content: center!important;
}

.fact .factNumber {
	font-size: 40px;
}

.fact .factCaption {
	border-top: 3px solid;
    padding-top: 8px;
}

.news {
    padding-top: 30px;
	background-color: var(--blueColor);
	padding-bottom: 30px;
}

.sponsors {
    background-color: var(--blueColor);
}

/********************************************************
	Links
********************************************************/
.links {
	
	/* padding: 100px 50px; */
	padding: 40px 50px;
	background: #1e1e26;
	border: 1px solid #80808026;
	color: #fff;
}

.links h2 {
	border-bottom: 4px solid var(--secondColor);
	padding: 20px 0px;
	font-size: 32px;
	font-weight: 600;
	font-family: kaushan;
}

.links p {
	font-size: 25px;
	margin: 10px 0px;
	padding: 15px 40px;
	background: var(--blueColor);
	border: 1px solid #80808026;
	border-radius: 6px;
	cursor: pointer;
	transition: .5s ease-in-out;
}

.links p:hover {
	/* background: var(--mainColor); */
	background: #d2c237;
	color: var(--black);
}

.links p img {
	width: 40px;
	margin: 0;
	margin-right: 10px;
}

.links p:hover img {
	/* Start the shake animation and make the animation last for 0.5 seconds */
	animation: shake 0.5s;

	/* When the animation is finished, start again */
	animation-iteration-count: 1;
}

@media (max-width:765px) {
	.links h2 {
		font-size: 20px;
		margin: auto;
    	margin-bottom: 15px;
	}

	.links p {
		font-size: 15px;
		margin: 5px 0px;
		padding: 5px 30px;
		background: var(--blueColor);
		border: 1px solid #80808026;
		border-radius: 6px;
		cursor: pointer;
		transition: .5s ease-in-out;
	}
}

@keyframes shake {
	0% { transform: translate(1px, 1px) rotate(0deg); }
	10% { transform: translate(-1px, -2px) rotate(-1deg); }
	20% { transform: translate(-3px, 0px) rotate(1deg); }
	30% { transform: translate(3px, 2px) rotate(0deg); }
	40% { transform: translate(1px, -1px) rotate(1deg); }
	50% { transform: translate(-1px, 2px) rotate(-1deg); }
	60% { transform: translate(-3px, 1px) rotate(0deg); }
	70% { transform: translate(3px, 1px) rotate(-1deg); }
	80% { transform: translate(-1px, -1px) rotate(1deg); }
	90% { transform: translate(1px, 2px) rotate(0deg); }
	100% { transform: translate(1px, -2px) rotate(-1deg); }
}


/********************************************************
	Team
********************************************************/
.team {
	/* background-color: var(--blueColor); */
	padding-top: 100px;
	padding-bottom: 100px;
    background-color: var(--black);
}

.teamContainer {
	/* background-color: gray; */
	padding-bottom: 40px;
	margin: auto;
	width: 90%;
	color: #fff;
}

.teamContainer ul {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.teamContainer li {
	padding: 0px 40px;
	border-right: 1px solid gray;
}

.teamContainer li:last-child {
	border: 0;
}

.teamContainer .firstRow {
	background-color: rgb(27, 27, 35);
	/* background: linear-gradient(to right, rgba(27, 27, 35,.8), rgba(27, 27, 35,1)); */
	background: linear-gradient(to right, rgba(27, 27, 35,.8), transparent);
	margin: 0;
	padding: 40px 0;
	border: 1px solid #80808026;
}

.teamContainer .secondRow {
	background-color: #1e1e26;
	margin: 0;
	padding-top: 50px;
	padding-bottom: 50px;
	border: 1px solid #80808026;
}

.teamContainer .thirdRow {
	background-color: #16171c;
	margin: 0;
	padding-top: 0px;
	/* padding-bottom: 150px; */
	border: 1px solid #80808026;
}

.teamContainer .placementRow {
	padding-top: 15px;
	/* padding-bottom: 80px; */
}

.teamContainer .placementRow .placement {
	width: 150px;
	height: 150px;
	margin-top: 40px;
	margin-bottom: 40px;
	/* padding: 40px; */
	border-radius: 100%;
	border: 1px solid var(--secondColor);
	/* width: 150px!important; */
	background-color: #fff;
	color: var(--secondColor);
    
	border: 1px solid #80808026; 
	display: -ms-flexbox!important; 
	display: flex!important;
	-ms-flex-direction: column!important;
    flex-direction: column!important;
	-ms-flex-align: center!important;
	align-items: center!important;
	-ms-flex-pack: center!important;
	justify-content: center!important;
}

.teamContainer .placementRow .placement:hover {
	-webkit-box-shadow: 0px 0px 33px 0px var(--secondColor);
    -moz-box-shadow: 0px 0px 33px 0px var(--secondColor);
    box-shadow: 0px 0px 33px 0px var(--secondColor);
}

.teamContainer .placementRow .placement img {
	width: 60%!important;
	transition: all 1s;
}

.teamContainer .placementRow .placement img:hover {
	width: 80%!important;
}

.teamContainer .sponsorRow {
	background-color: #16171c;
	margin: 0;
	padding: 35px 0px 25px 0px;
	border: 1px solid #80808026;
}

.teamContainer .matches .secondRow .category {
	display: flex!important;
	align-items: center!important;
	justify-content: center!important;
	cursor: pointer;
}

.teamContainer .matches .secondRow .category .categoryBtn i {
	/* border: 5px solid var(--lowerSecondColor); */
	/* background-color: #fff; */
	color: var(--lowerSecondColor);
	font-size: 50px;
	padding: 5px;
}

.teamContainer .matches .secondRow .category:hover .categoryBtn i {
	color: var(--secondColor);
}

.teamContainer .matches .secondRow .category .categoryText p {
	color: var(--lowerSecondColor);
    font-weight: 600;
    font-size: 25px;
    padding: 0px;
    padding-left: 15px;
    margin: 0px;
}

.teamContainer .matches .secondRow .category:hover .categoryText p {
	color: var(--secondColor);
}

@media(max-width: 670px) {

	.teamContainer .matches .secondRow {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.teamContainer .matches .secondRow .category .categoryBtn i {
		font-size: 30px;
	}
	
	.teamContainer .matches .secondRow .category .categoryText p {
		font-size: 18px;
	}
}

@media(max-width: 480px) {

	.teamContainer .matches .secondRow {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.teamContainer .matches .secondRow .category .categoryBtn i {
		font-size: 22px;
	}
	
	.teamContainer .matches .secondRow .category .categoryText p {
		font-size: 14px;
		font-weight: 400;
		padding-left: 4px;
	}
}

.teamContainer .matchRow {
	background-color: #16171c;
	margin: 0;
	padding: 0px 0px 0px 0px;
	border: 1px solid #80808026;
}

.teamContainer .playerRow {
	background: radial-gradient(#1e1e26, transparent 80%);
	border-bottom: 1px solid #80808026;
    padding: 1.5rem 0;
	/* background: linear-gradient(to right,transparent 5%, var(--blueColor) 50%, transparent 95%); */
}

.teamContainer .playerRow:hover {
	/* background: radial-gradient(var(--secondColor), transparent 80%); */
	/* background: radial-gradient(ellipse at left, var(--secondColor), transparent 60%); */
	background: radial-gradient(circle at 10% 35%, var(--secondColor), transparent 40%);
	/* background: linear-gradient(to right, #1e1e26 5%, var(--secondColor) 50%, rgba(27,27,35) 95%); */
}

.teamContainer .matchRow {

}

.teamContainer .matchRow .match {
	border: 1px solid #80808026;
	/* background: linear-gradient(to right, rgba(27, 27, 35,.8), transparent);  already rlly good*/
	background: linear-gradient(to right, rgba(27, 27, 35,.8), var(--lowerSecondColor), transparent);
	/* background: linear-gradient(to right, rgba(27, 27, 35,.8), var(--secondColor), transparent); */
	margin-top: .25rem;
	padding: 1.5rem!important;
}

.teamContainer .teamLogo {
	width: 100px;
}

.teamContainer .teamName {
	font-size: 35px;
	font-weight: 600;
	color: var(--secondColor);
}

.teamContainer .teamMotto {
	font-family: kaushan;
	font-weight: bold;
	/* color: var(--secondColor); */
}

.teamContainer .statsProperty, .teamContainer .statsNumber, .teamContainer .statsDescription {
	margin: 0;
	padding: 0;
}

.teamContainer .statsProperty {
	font-weight: bolder;
	font-size: 30px;
}

.teamContainer .statsDescription {
	font-weight: bolder;
	font-size: 12px;
}

.teamContainer .statsNumber {
	font-weight: bolder;
	font-size: 30px;
}

.teamContainer .teamFlag {
	height: 30px;
	padding-right: 10px;
}

.teamContainer .player {
	width: 100%;
	height: 100%;
	display: -ms-flexbox!important;
	display: flex!important;
	-ms-flex-direction: column!important;
    flex-direction: column!important;
	-ms-flex-align: center!important;
	align-items: center!important;
	-ms-flex-pack: center!important;
    justify-content: center!important;
}

.teamContainer .player .playerPicture {
	width: 100%;
	height: 300px;
	cursor: pointer;
	overflow: hidden;
}

@media (max-width: 480px) {
	.teamContainer {
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
		width: 100%;
	}
	
	.teamContainer .secondRow li {
		padding: 0px 5px;
	}
}

@media (max-width: 580px) {
	.teamContainer .firstRow ul {
		flex-direction: column;
		width: 100%;
	}

	.teamContainer .firstRow li {
		padding: 0px 5px;
		border: 0;
	}

	.teamContainer .firstRow .teamName {
		font-size: 20px;
		text-align: center;
	}

	.teamContainer .firstRow .teamMotto {
		font-size: 17px;
		text-align: center;
	}
}

@media (max-width:1150px) {
	.teamContainer .player .playerPicture {
		width: 100%;
		height: 230px;
		cursor: pointer;
		overflow: hidden;
	}
}

.teamContainer .player .playerPicture:hover {
	/* background: radial-gradient(#1e1e26, transparent 80%); */
	background: radial-gradient(ellipse at top, var(--secondColor), transparent 60%);
}

.teamContainer .player .playerNick {
	font-family: kaushan;
	font-weight: 600;
	font-size: 30px;
	color: var(--secondColor);
}

.teamContainer .player .playerPicture img {
	position: relative;
	/* height: 350px; */
	width: 100%;
	transition:all 0.5s;
}

.teamContainer .player .playerPicture img:hover {
	transform: translateX(-8px);
	width: 110%;
}

.teamContainer .player .popupBox {
	position: relative;
	display: inline-block;
	/* border-bottom: 1px dotted black; If you want dots under the hoverable text */
}

/* Tooltip text */
.teamContainer .player .popupBox .popupBoxTextRight{
	visibility: hidden;
	width: 600px;
	height: auto;
	padding: 60px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;

	/* Position the tooltip text - see examples below! */
	position: absolute;
	/* top: 200px; */
	top: -80px;
	left: 180px;
	z-index: 150;
	border: 1px solid #80808026;

	-webkit-box-shadow: 0 0 5px 0 var(--secondColor);
    box-shadow: 0 0 5px 0 var(--secondColor);
}

.teamContainer .player .popupBox .popupBoxTextTopMid{
	visibility: hidden;
	width: 600px;
	height: auto;
	padding: 60px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;

	/* Position the tooltip text - see examples below! */
	position: absolute;
	top: -440px;
	left: -300px;
	z-index: 150;
	border: 1px solid #80808026;

	-webkit-box-shadow: 0 0 5px 0 var(--secondColor);
    box-shadow: 0 0 5px 0 var(--secondColor);
}

.teamContainer .player .popupBox .popupBoxTextLeft{
	visibility: hidden;
	width: 600px;
	height: auto;
	padding: 60px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;

	/* Position the tooltip text - see examples below! */
	position: absolute;
	top: -80px;
	left: -780px;
	z-index: 150;
	border: 1px solid #80808026;

	-webkit-box-shadow: 0 0 5px 0 var(--secondColor);
    box-shadow: 0 0 5px 0 var(--secondColor);
}

/* Show the tooltip text when you mouse over the tooltip container */
.teamContainer .player:hover .popupBox .popupBoxTextRight,
.teamContainer .player:hover .popupBox .popupBoxTextTopMid,
.teamContainer .player:hover .popupBox .popupBoxTextLeft{
	visibility: visible;
}

.teamContainer .playerPicture-md {
	width: 100%;
}

.teamContainer .playerPicture-md img {
	width: 100%;
}

.teamContainer .playerDetails-mdContainer {
	display: flex!important;
	display: -ms-flexbox!important;
    justify-content: center!important;
	-ms-flex-pack: center!important;
	-ms-flex-align: center!important;
	align-items: center!important;
}

.teamContainer .playerDetails-md {
	/* background: radial-gradient(ellipse, var(--secondColor), transparent 60%); */
}

.teamContainer .playerDetails-md p{
	margin: 0px!important;
	padding: 0px!important;
}

.teamContainer .playerDetails-md .playerNick {
	left: -3px;
	padding-bottom: 0;
	margin-bottom: 0!important;
	font-family: kaushan;
	font-weight: 600;
	font-size: 30px;
	color: var(--secondColor);
}

.teamContainer .playerDetails-md .playerAttribute {
	/* display: inline; */
	background-color: var(--blueColor);
	padding: 8px;
	font-weight: bolder;
    font-size: 12px;
}

.teamContainer .playerDetails-md .weapon {
	
}

.teamContainer .playerDetails-md .weapon img {
	padding-top: 15px;
	width: 100%;
}


.teamContainer .subline {
	position: relative;
}

.teamContainer .subline h3 {
	margin-left: 80px;
	padding: 5px 10px;
	font-weight: 600;
	font-size: 40px;
	color: var(--secondColor);
	text-shadow: 0 0 15px black!important;
}

.teamContainer .subline::before {
	content: '';

    /* border-style: solid; */
    /* border-width: 10px 10px 10px 30px; */
    border-color: transparent #dd4397 transparent transparent;
    position: absolute;
	left: 25px;
	top: 15px;


	width: 0px;
	height: 0px;
	-webkit-transform:rotate(360deg);
	border-style: solid;
	border-width: 15px 0 15px 40px;
	border-color: transparent transparent transparent var(--secondColor);

	/* width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 15px 10px 0;
	border-color: transparent #dd4397 transparent transparent;  
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px; */
}

.blog-boxes {
    position: relative;
	margin-top: 30px;
	color: #fff;
}

.blog-boxes .boxes {
    position: relative;
    margin-top: 30px;
    transition: 1s;
}

.blog-boxes .boxes:hover {
    -webkit-box-shadow: 0 0 20px 0 var(--secondColor);
    /* -webkit-box-shadow: 0 0 20px 0 #FF9010; */
    box-shadow: 0 0 20px 0 var(--secondColor);
    /* box-shadow: 0 0 20px 0 #FF9010; */
    cursor: pointer;
}

.blog-boxes .boxes .blog-image {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 350px;
}

.blog-boxes .boxes .blog-details {
    position: absolute;
    left: 50px;
    right: 25px;
    bottom: 30px;
}

.blog-boxes .boxes .blog-details h3 {
	font-weight: bolder;
	text-shadow: 0 0 5px black;
	color: var(--secondColor);
}

.blog-boxes .boxes .blog-details .green-box {
	/* background: #FF9010; */
	background: var(--secondColor);
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px;
	color: #FFFFFF;
	text-shadow: 0 0 5px black;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 20px;
    text-align: center;
    outline: none;
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    -moz-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    -ms-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    -o-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.matches {

}

.matchContributors {
	width: 100%;
	display: -ms-flexbox!important;
	display: flex!important;
	-ms-flex-direction: row!important;
    flex-direction: row!important;
	-ms-flex-align: center!important;
	align-items: center!important;
	-ms-flex-pack: center!important;
	justify-content: center!important;
	/* TODO: add d-flex align-items-center.... */
}

.matchContributors .vs {
	padding: 10px;

}

.matchContributors .clan {
	height: 100%;
	display: -ms-flexbox!important;
	display: flex!important;
	-ms-flex-direction: column!important;
    flex-direction: column!important;
	-ms-flex-align: center!important;
    align-items: center!important;
}

.matchContributors .clan .clanName {
	/* color: #fff; */
	color: #fff;
	padding: 5px;
	padding-top: 10px;
	font-weight: bolder;
	font-size: 15px;
	text-align: center;
}

.matchContributors .clan img {
	width: 100px;
	height: 100px;
}

.matchContributors span {
	color: #fff;
	font-size: 32px;
	font-weight: bolder;
}

.matchDetails {
	width: 100%;
	height: 100%;
	display: -ms-flexbox!important;
	display: flex!important;
	-ms-flex-direction: column!important;
    flex-direction: column!important;
	-ms-flex-align: center!important;
	align-items: center!important;
	-ms-flex-pack: center!important;
    justify-content: center!important;
}

.matchDetails .matchCaption {
	margin: auto;
	color: #fff;
	display: -ms-flexbox!important;
	display: flex!important;
	-ms-flex-direction: column!important;
    flex-direction: column!important;
	-ms-flex-align: start!important;
	align-items: flex-start!important;
	-ms-flex-pack: start!important;
    justify-content: start!important;
}

.matchDetails .matchCaption .upcomming {
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	background-color: black;
	align-self: flex-start;
	font-weight: bolder;
	font-size: 12px;
}

@media (max-width: 990px) {
	.matchDetails .matchCaption {
		-ms-flex-align: center!important;
		align-items: center!important;
		-ms-flex-pack: center!important;
		justify-content: center!important;
	}

	.matchDetails .matchCaption .upcomming {
		align-self: center;
	}

	.matchCaption .caption {
		text-align: center;
	}
}

.matchDetails .matchCaption .caption {
	margin: 0;
	font-weight: 600;
	font-size: 30px;
}

.matchDetails .matchCaption .date {
	margin: 0;
}

.matchResult {
	margin: 0;
	width: 100%;
	height: 100%;
	display: -ms-flexbox!important;
	display: flex!important;
	-ms-flex-direction: column!important;
    flex-direction: column!important;
	-ms-flex-align: center!important;
	align-items: center!important;
	-ms-flex-pack: center!important;
	justify-content: center!important;
	color: #fff;
	font-weight: 600;
	font-size: 50px;
}

.matchResult p {
	margin: 0;
}

@media (max-width: 990px) {
	.matchResult {
		padding-top: 20px;
	}
}

@media(max-width: 670px) {

	.matchResult {
		margin: 0;
		font-weight: 500;
		font-size: 30px;
	}

	.matchDetails .matchCaption .caption {
		margin: 0;
		font-weight: 500;
		font-size: 22px;
	}

	.matchContributors span {
		font-size: 25px;
		font-weight: bold;
	}

	.matchDetails .matchCaption .upcomming {
		padding: 3px;
		padding-left: 7px;
		padding-right: 7px;
		align-self: center;
		font-weight: bolder;
		font-size: 12px;
	}

	.matchContributors .clan .clanName {
		padding: 5px;
		padding-top: 8px;
		font-weight: bold;
		font-size: 12px;
		text-align: center;
	}
	
	.matchContributors .clan img {
		width: 85px;
		height: 85px;
	}
}

@media(max-width: 480px) {

	.matchResult {
		margin: 0;
		font-weight: 400;
		font-size: 20px;
	}

	.matchDetails .matchCaption .caption {
		margin: 0;
		font-weight: 400;
		font-size: 17px;
	}

	.matchContributors span {
		font-size: 15px;
		font-weight: 400;
	}

	.matchDetails .matchCaption .upcomming {
		padding: 2px;
		padding-left: 5px;
		padding-right: 5px;
		align-self: center;
		font-weight: bolder;
		font-size: 10px;
	}

	.matchContributors .clan .clanName {
		padding: 5px;
		padding-top: 5px;
		font-weight: 400;
		font-size: 10px;
		text-align: center;
	}
	
	.matchContributors .clan img {
		width: 70px;
		height: 70px;
	}
}

.matchStream {
	margin: 0;
	width: 100%;
	height: 100%;
	display: -ms-flexbox!important;
	display: flex!important;
	-ms-flex-direction: column!important;
    flex-direction: column!important;
	-ms-flex-align: center!important;
	align-items: center!important;
	-ms-flex-pack: center!important;
	justify-content: center!important;
	color: #fff;
	font-weight: 400;
	font-size: 30px;
}

.matchStream p {
	margin: 0;
}

@media (max-width: 990px) {
	.matchStream {
		padding-top: 20px;
	}
}

/* ==================================================
  Newsletter Styling
  ================================================== */

.newsletter {
	background-color: #1e1e26;
	padding-top: 65px;
	padding-bottom: 65px;
}

.newsletter h3 {
	font-family: kaushan;
	color: var(--secondColor);
	text-align: center;
	font-size: 30px;
    font-weight: 800;
}

.newsletter .newsletterBtns {
	border-radius: .25rem;
	background-color: unset;
	color: #0000;
	display: flex!important;
	flex-direction: column;
	align-items: center!important;
	justify-content: center!important;
	padding: 15px;
}

.newsletter .newsletterBtns .btn {
	background-color: var(--lowerSecondColor);
	margin-top: 20px;
    font-weight: 900;
    font-size: 20px;
}

.newsletter .newsletterBtns .btn:hover,
.newsletter .newsletterBtns .btn:active {
	background-color: var(--secondColor);
}

/* ==================================================
  Clips
  ================================================== */
.clips {
	background-color: var(--blueColor);
	padding-top: 100px;
	padding-bottom: 50px;
}

.clips .clipsContainer {
	/* background-color: gray; */
	padding-bottom: 40px;
	margin: auto;
	width: 90%;
	color: #fff;
}

.clips .clipsContainer ul {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.clips .clipsContainer li {
	padding: 0px 40px;
	border-right: 1px solid gray;
}

.clips .clipsContainer li:last-child {
	border: 0;
}

.clips .clipsContainer .firstRow {
	background-color: rgb(27, 27, 35);
	/* background: linear-gradient(to right, rgba(27, 27, 35,.8), rgba(27, 27, 35,1)); */
	background: linear-gradient(to right, rgba(27, 27, 35,.8), transparent);
	margin: 0;
	padding: 40px 0;
	border: 1px solid #80808026;
}

.clips .clipsContainer .secondRow {
	background-color: #1e1e26;
	margin: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	border: 1px solid #80808026;
}

.clips .clipsContainer .secondRow .x {
	background: var(--blueColor);
	width: 100%;
	margin-bottom: 15px;
    padding: 5px;
    padding-top: 0px;
    color: #fff;
    border-radius: 15px;
	border: 5px solid #80808026;
	transition: 1s;
}

.clips .clipsContainer .secondRow .x:hover {
	box-shadow: 0px 0px 33px 0px var(--secondColor);
}

.clips .clipsContainer .secondRow .x .date {
	font-size: 12px;
    font-weight: 600;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
}

.clips .clipsContainer .secondRow .x .thumb img{
	width: 100%;
}

.clips .clipsContainer .secondRow .x .title p{
	font-family: kaushan;
    color: var(--secondColor);
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.clips .clipsContainer .secondRow .x .title small {
	font-size: 13px;
}

.clips .clipsContainer .secondRow .x .btn {
	background-color: var(--lowerSecondColor);
	margin-bottom: 10px;
	width: 50%;
}

.clips .clipsContainer .secondRow .x .btn:hover {
	background-color: var(--secondColor);
}

.clips .clipsContainer .secondRow .arrow {
	cursor: pointer;
}

.clips .clipsContainer .secondRow .arrow:hover {
	color: var(--lowerSecondColor);
}

.clips .clipsContainer .secondRow .active {
	color: var(--secondColor);
}

.clips .clipsContainer .secondRow .other:hover {
	color: var(--lowerSecondColor);
}

.clips .clipsContainer .thirdRow {
	background-color: #16171c;
	margin: 0;
	padding-top: 0px;
	/* padding-bottom: 150px; */
	border: 1px solid #80808026;
}

.clips .clipsContainer .teamLogo {
	width: 100px;
}

.clips .clipsContainer .teamName {
	font-size: 35px;
	font-weight: 600;
	color: var(--secondColor);
}

.clips .clipsContainer .teamMotto {
	font-family: kaushan;
	font-weight: bold;
	/* color: var(--secondColor); */
}

@media (max-width: 480px) {
	.clips .clipsContainer {
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
		width: 100%;
	}
	
	.clips .clipsContainer .secondRow li {
		padding: 0px 5px;
	}
}

/* ==================================================
  Contact Styling
  ================================================== */

.contact {
	padding-top: 0px;
	padding-bottom: 50px;
	background-color: var(--blueColor);
}

.contact label {
	color: #fff;
}

.contact p {
	color: #fff;
}

.contact h2 {
	color: var(--secondColor);
	font-weight: 700!important;
	text-align: center!important;
	padding: 50px 0px 30px;
}

.contact h3 {
	color: var(--lowerSecondColor);
}

.contact .contactField {
	background-color: var(--blueColor);
	color: #fff;
	padding-left: 10px;
	border: 0;
	border-bottom: 2px solid var(--lowerSecondColor);
    border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	transition: ease all .7s;
}

.contact .contactField:hover {
	border-bottom: 2px solid var(--secondColor);
}

.contact .contactField:focus {
	background-color: var(--blueColor);
	padding-left: 10px;
	border: 0;
	border-radius: .25rem;
	box-shadow: 0px 0px 0px 0.2rem var(--secondColor);
}

.contact .contactTextarea {
	background-color: var(--blueColor);
	color: #fff;
	padding-left: 10px;
	border: 2px solid var(--lowerSecondColor);
    border-radius: .25rem;
	transition: ease all .7s;
}

.contact .contactTextarea:hover {
	border-bottom: 2px solid var(--secondColor);
}

.contact .contactTextarea:focus {
	background-color: var(--blueColor);
	padding-left: 10px;
	border: 0;
	border-radius: .25rem;
	box-shadow: 0px 0px 0px 0.2rem var(--secondColor);
}

.contact .active:hover {
	color: var(--lowerSecondColor);
}

.container {
    max-width: 1295px;
}


.container-fluid {
	max-width: 1920px;
	width: 100%;
	margin:auto;
}

.sponsorX {
    /* width: 70%; */
	height: 100px;
	margin-top: 40px;
	margin-bottom: 40px;
	/* width: 150px!important; */
	background-color: var(--black);
	color: var(--secondColor);
    -webkit-box-shadow: 0px 0px 33px 0px var(--secondColor);
    -moz-box-shadow: 0px 0px 33px 0px var(--secondColor);
    box-shadow: 0px 0px 33px 0px var(--secondColor);
	border: 1px solid #80808026; 
	display: -ms-flexbox!important; 
	display: flex!important;
	-ms-flex-direction: column!important;
    flex-direction: column!important;
	-ms-flex-align: center!important;
	align-items: center!important;
	-ms-flex-pack: center!important;
	justify-content: center!important;
}

.sponsorX img {
	width: 60%!important;
	transition: all 1s;
}

.sponsorX img:hover {
	width: 80%!important;
}

.parallax {
	color: #fff;
	margin: 0;
    padding: 0;
    height: 350px;
}

.parallax1 {

    /* The image used */
    background-image: url("../img/parallax/parallax1.png");

    /* Full height */
    /* height: 100%; */
    height: 500px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .3;
}

.parallax2 {
    /* The image used */
    background-image: url("../img/parallax/parallax2.png");

    /* Full height */
    /* height: 100%; */
    height: 500px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .3;
}

.parallax3 {
    /* The image used */
    background-image: url("../Icon/MSFertigLogo.png");

    /* Full height */
    /* height: 100%; */
    height: 350px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .3;
}

.parallax3Content {
	position: relative;
	top: -350px;
	height: 350px;
	width: 100%;
}

.parallax3Content h2 {
	font-family: kaushan;
	color: var(--secondColor);
}

.parallax3Content hr {
	width: 45%;
	margin: 25px auto;
	/* background-color: var(--blueColor); */
    border-top: 3px solid var(--secondColor);
}

.header-svg {
    position: relative;
    height: 0px;
    /* fill: var(--black); */
    fill: var(--blueColor);
    z-index: 99;
}

.header-svg svg {
    position: relative;
    top: -98px;
    bottom: 0;
    left: 0;
    height: 100px;
    width: 100%;
    vertical-align: middle;
    overflow: hidden;
}

.bottom-svg {
    position: relative;
    height: 0px;
    /* fill: var(--black); */
    fill: var(--blueColor);
    z-index: 99;
}

.bottom-svg svg{
    position: relative;
    top: 0px;
    bottom: 0;
    left: 0;
    height: 100px;
    width: 100%;
    vertical-align: middle;
    overflow: hidden;
}

h2{
	font-size:50px;
}
@media (max-width:1024px){
h2{
	font-size:40px;
}
}
@media (max-width:991px){
h2{
	font-size:35px;
}
}

@media (max-width:991px){
h2{
	font-size:30px;
}
}
@media (max-width:767px){
.container{
	width:100%;
	max-width:100%;
}
h2{
	font-size:25px;
}
}
/*** ### Header ### ***/
header {
	top:0px;
	left:0px;
	z-index: 900;
    width:100%;
    min-height: 80vh;
    /* background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,0)), url("../img/backgrounds/csback.png") center no-repeat; */
    background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.6)), url("../img/backgrounds/background_ms_fertig_short.jpg") 0px -100px no-repeat;
    /* background-size: cover; */
    background-size: cover;
	transition:all 0.5s;
}

@media (max-width:2800px) {
	header {
		background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.6)), url("../img/backgrounds/background_ms_fertig_short.jpg") 0px -210px no-repeat;
		background-size: cover;
	}
}

@media (max-width:1370px) {
	header {
		background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.6)), url("../img/backgrounds/background_ms_fertig_short.jpg") 0px -70px no-repeat;
		background-size: cover;
	}
}

@media (max-width:1170px) {
	header {
		background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.6)), url("../img/backgrounds/background_ms_fertig_short.jpg") 0px 0px no-repeat;
	}
}

@media (max-width: 1060px) {
	header{
		min-height: 40vh;
		/* background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,0)), url("../img/backgrounds/csback.png") center no-repeat; */
		background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.2)), url("../img/backgrounds/background_ms_fertig_short.jpg") 50% 40% no-repeat;
		/* background-size: cover; */
		background-size: cover;
		position:relative;
		/* background:#0d0e1b; */
	}
}

@media (max-width:720px) {
	header{
		min-height: 40vh;
		/* background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,0)), url("../img/backgrounds/csback.png") center no-repeat; */
		background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.2)), url("../img/backgrounds/background_ms_fertig_short.jpg") 50% 50% no-repeat;
		/* background-size: cover; */
		background-size: initial;
		position:relative;
		/* background:#0d0e1b; */
	}
}

header.change{
	background:#0d0e1b;
}
header.change .top-bar{
	display:none;
}
header .top-bar{
	position:relative;
	border-bottom:1px solid #40434d;
	height:50px;
	line-height:50px;
	transition:all 0.5s;
}
header .top-bar p{
	display:inline-block;
	vertical-align:middle;
	line-height:normal;
	color:rgba(255,255,255,0.7);
	font-size: 13px;
	line-height: 51px;
	font-weight:400;
}
header .top-bar .top-links{
	position:relative;
	text-align:right;
	color:rgba(255,255,255,0.7);
	font-size: 12px;
	text-transform: uppercase;
	font-weight:400;
}
header .top-bar .top-links a{
	position:relative;
	display:inline-block;
	vertical-align:middle;
	line-height:normal;
	margin:0px 0px 0px 10px;
	text-decoration:none;
	outline:none;
	color:inherit;
}
header .logo{
	position:relative;
	display:inline-block;
	vertical-align:middle;
}
header .logo img{
	display:inline-block;
	vertical-align:middle;
	max-width:160px;
	width:100%;
    margin-top:-50px;
    transform: translateX(-100rem);
	animation: slideIn .5s forwards;
	transition: 1.5s all ease;
}

header .logo img:hover {
	width: 120%;
	max-width: 180px;
}
header.change .logo img{
	max-width:100px;
	margin-top:0px;
}
header .top-icons{
	position:relative;
	text-align:right;
	margin:10px 0px;
}
header .top-icons a{
	display:inline-block;
	vertical-align:top;
	width:50px;
	height:50px;
	line-height: 46px;
	background:#0d0e1b;
	border-radius:50%;
	text-align:center;
	font-size: 16px;
	color:#FFFFFF;
	border:1px solid #1a1a22;
	margin:0px 0px 0px 5px;
}

header .top-icons a:hover {
    /* color: #FF9010; */
    color: var(--secondColor);
    -webkit-box-shadow: 0px 0px 33px -6px var(--secondColor);
    -moz-box-shadow: 0px 0px 33px -6px var(--secondColor);
    box-shadow: 0px 0px 33px -6px var(--secondColor);
}


.iconsSmall {
	align-self: flex-start;
    position: relative;
	text-align: left;
	/* padding-top: 30px; */
    margin-top: 15px;
}

.iconsSmall a {
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 40px;
    margin: 3px;
    line-height: 40px;
    background: #0d0e1b;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    color: #FFFFFF;
    border: 1px solid #1a1a22;
}

.iconsSmall a:hover {
	color: var(--secondColor);
    -webkit-box-shadow: 0px 0px 33px -6px var(--secondColor);
    -moz-box-shadow: 0px 0px 33px -6px var(--secondColor);
    box-shadow: 0px 0px 33px -6px var(--secondColor);
}

.icons {
	align-self: flex-start;
    position: relative;
	text-align: left;
	/* padding-top: 30px; */
    margin-top: 10px;
}

.icons a {
    display: inline-block;
    vertical-align: top;
    width: 50px;
    height: 50px;
    margin: 5px;
    line-height: 46px;
    background: #0d0e1b;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    color: #FFFFFF;
    border: 1px solid #1a1a22;
}

.icons a:hover {
	color: var(--secondColor);
    -webkit-box-shadow: 0px 0px 33px -6px var(--secondColor);
    -moz-box-shadow: 0px 0px 33px -6px var(--secondColor);
    box-shadow: 0px 0px 33px -6px var(--secondColor);
}

@media (max-width:600px) {
	.icons a {
		display: inline-block;
		vertical-align: top;
		width: 30px;
		height: 30px;
		margin: 5px;
		line-height: 28px;
		background: #0d0e1b;
		border-radius: 50%;
		text-align: center;
		font-size: 12px;
		color: #FFFFFF;
		border: 1px solid #1a1a22;
	}
}

@media (max-width:350px) {
	.icons a {
		display: inline-block;
		vertical-align: top;
		width: 15px;
		height: 15px;
		margin: 5px;
		line-height: 12px;
		background: #0d0e1b;
		border-radius: 50%;
		text-align: center;
		font-size: 8px;
		color: #FFFFFF;
		border: 1px solid #1a1a22;
	}
}

.navigation {
    position: relative;
    
}
.navigation nav{
	position:relative;
}
.navigation nav ul {
	margin: 0px;
	padding: 0px;
	text-align: right;
}
.navigation nav ul li {
	position: relative;
	display: inline-block;
	vertical-align: middle;
    margin: 0px 17px;
    transform: translateX(100rem);
    animation: slideIn .5s forwards;
}

.navigation nav ul li:nth-child(1) {
    animation-duration: 0s;
}

.navigation nav ul li:nth-child(2) {
    animation-duration: 0.5s;
}

.navigation nav ul li:nth-child(3) {
    animation-duration: 1s;
}

.navigation nav ul li:nth-child(4) {
    animation-duration: 1.5s;
}

.navigation nav ul li:nth-child(5) {
    animation-duration: 2s;
}

.navigation nav ul li:nth-child(6) {
    animation-duration: 2.5s;
}

.navigation nav ul li:last-child {
    margin: 0px 0px;
}

.navigation nav ul li a {
	position: relative;
	/* display: inline-block; */
	vertical-align: middle;
	text-decoration: none;
	color: #ffffff !important;
	font-size: 12px;
	outline: none;
	font-weight: 600;
	text-transform: uppercase;
	padding: 5px 0px;
	border-bottom:1px solid transparent;
	margin:25px 0px;
}

.navigation nav ul li a:hover {
    color: var(--secondColor)!important;
}

.editnbt button{
	background-color: #07070f;
    font-size: 9pt;
    border: 1px solid #20212d;
    border-radius: unset;
}

.editnbt{
	position: absolute;
    right: 0;
    width: 81px;
    left: 0;
    margin: auto;
    top: -26px;
}
.navigation nav ul li .dropdown-box{
	position:absolute;
	z-index:99;
	top:100%;
	padding:5px 0px;
	background:#0d0e1b;
	width:100%;
	min-width:200px;
	display:none;
}
.navigation nav ul li .dropdown-box a{
	display:block;
	margin:auto;
	line-height:normal;
	padding:10px 15px;
	color:#FFFFFF;
	font-size:14px;
	text-align:left;
	font-weight:400;
	font-family: 'Open Sans', sans-serif;
}
.navigation nav ul li:hover .dropdown-box{
	display:block;
}
.device-nav {
	position:absolute;
	top:50%;
	right: 0px;
	cursor: pointer;
	color: #FFFFFF;
	font-size: 25px;
	display: none;
	z-index:1000;
	transform:translate(-50%,-50%);
}

@media (max-width:3000px){
	.navigation nav ul li {
		margin:0px 10px;
	}
	.navigation nav ul li a {
		font-size: 16px;
		margin:20px 0px;
	}
	header .top-icons a{
		width:45px;
		height:45px;
		line-height:45px;
		margin:0px 0px 0px 2px;
	}
}

@media (max-width:1200px) {
	.navigation nav ul li a {
		font-size: 13px;
		margin:20px 0px;
	}	
}

@media only screen and (max-width: 1060px) {
header .logo img{
	max-width:100px;
	margin-top:0px;
}
.device-nav {
	display: block;
}
.navigation {
	margin: 0px;
	/* background:#0d0e1b; */
	position:relative;
	padding:5px 15px;
}
.navigation nav {
	margin: 0;
	max-height: 0;
	overflow: hidden;
	clear: both;
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	z-index: 999;
	background: #0d0e1b;
}
.navigation nav, .navigation nav ul, .navigation nav ul li, .navigation nav ul li a {
    display: block;
    width: 100%;
}
.navigation nav ul {
	text-align: left;
	padding: 60px 0px 20px 0px;
}
.navigation nav ul li {
	width: 100%;
	text-align: left;
}
.navigation nav ul li a {
	text-decoration: none;
	width: 100%;
	display: block;
	padding:10px 15px;
	margin:0px;
}
.navigation nav ul li:before{
	display:none;
}
.navigation nav.reveal {
	max-height: 1170px;
	width: 100%;
	z-index: 999;
	background: #0d0e1b;
}
header.change{
	position:fixed;
}
header.change .logo img{
	max-width:80px;
}
.navigation nav ul li:hover .dropdown-box{
	display:none;
}
.navigation nav ul li .dropdown-box{
	position:relative;
	display:block;
	border:none;
	padding:0px 20px;
	display:none;
	border:none;
	box-shadow:none;
}
}
/*** ### Hero Section ### ***/
.hero-section{
	position:relative;
	background:url(../images/slide1.png) no-repeat center center;
	background-size:cover !important;
	background-repeat:no-repeat !important;
	background-position:top center !important;
	z-index:2;
	max-height:955px;
	height: calc(100vh - 90px);
	height: -webkit-calc(100vh - 90px);
	height:    -moz-calc(100vh - 90px);
	height:     -ms-calc(100vh - 90px);
	height:     -o-calc(100vh - 90px);
}
.hero-section:before{
	position:absolute;
	content:"";
	left:0px;
	top:0px;
	bottom:0px;
	width:100%;
	background:rgba(13, 14, 27, 0.73);
	z-index:-1;
}
.hero-section .hero-text{
	position:relative;
	background-size:100% 100%;
	max-width: 700px;
	width:100%;
}


.catcenter2 {
    background-color: #0d0e1b;
    border-top: 1px solid #20212d;
    border-right: 1px solid #20212d;
    padding: 23px 20px;
    height: 100%;
    border-bottom: 1px solid #20212d;
}

.robie {
    border-bottom: 1px solid #20212d;
}

.catcenter55 {
    border-right: 1px solid #20212d;
    border-left: 1px solid #20212d;
}

.box {
    position: relative;
    background-color: #484848;
    background: #07070f;
    border: 1px solid #20212d;
    outline: none;
    font-size: 15px;
    font-weight: 300;
    color: #717389;
}

.catcenter35 {
    background-color: #07070f;
    border-top: 1px solid #20212d;
    border-right: 1px solid #20212d;
    height: 100%;
    position: relative;
    padding: 8px 0px;
    border-bottom: 1px solid #20212d;
    border-left: 1px solid #20212d;
}

.catcenter-inner {
    height: 100%;
    position: relative;
    padding: 20px 20px;
    background-color: #484848;
    background: #07070f;
    border: 1px solid #20212d;
    outline: none;
    font-size: 15px;
    font-weight: 300;
    color: #717389;
}

.catcenter {
    height: 100%;
    position: relative;
    padding: 26px 20px;
    background-color: #484848;
    background: #07070f;
    border: 1px solid #20212d;
    outline: none;
    font-size: 15px;
    font-weight: 300;
    color: #717389;
}


.hero-section .hero-text h1{
	color:#FFFFFF;
	font-size:80px;
	line-height:80px;
	font-weight:700;
	margin:0px;
	padding:0px;
	text-align:left;
	text-transform:uppercase;
}
.hero-section .hero-text h1 span{
	color:#17b51b;
}
.hero-section .hero-text p{
	color: #cacaca;
	font-size: 22px;
	line-height: 36px;
	font-weight:300;
	margin:15px 0px;
	padding:0px;
	text-align:left;
}
.hero-section .hero-text a{
	position:relative;
	text-decoration:none;
	outline:none;
	border:none;
	
	font-weight:700;
	font-size: 15px;
	text-transform:uppercase;
	color:#FFFFFF;
	line-height:50px;
	padding: 8px 50px;
	display:inline-block;
	vertical-align:middle;
	letter-spacing:0.3px;
	font-family: 'Roboto', sans-serif;
}
.hero-slider .slick-dots{
	position:relative;
	width:100%;
	bottom:40px;
	text-align:center;
	display:block;
	margin-bottom:-25px;
}
.hero-slider .slick-dots li{
	width:10px;
	height:10px;
	background:none;
	background:rgba(255,255,255,0.3);
	transition:all 0.5s;
	border-radius:50%;
}
.hero-slider .slick-dots li.slick-active{
	width:10px;
	height:10px;
	background:rgba(255,255,255,1);
}
@media (max-width:1550px){
.hero-section{
	height:auto;
}
.hero-section .hero-text{
	margin-top:200px;
	margin-bottom:150px;
}
.hero-section .hero-text h1{
	font-size:60px;
	line-height:60px;
}
}
@media (max-width:991px){
.hero-section .hero-text{
	margin-top:75px;
	margin-bottom:75px;
}
}
@media (max-width:767px){
.hero-section:before{
	width:100%;
}
.hero-section .hero-text h1{
	font-size:35px;
	line-height:35px;
}
}

/*** ### Brands Section ### ***/
.brands-section{
	position:relative;
	background:#0d0e1b;
}
.brands-section .brand-wraper{
	position:relative;
}
.brands-section .brand-box{
	position:relative;
	height:100%;
	padding:15px;
	background:#07070f;
	text-align:center;
	display:inline-block;
	vertical-align:middle;
	width: 300px;
	line-height: 72px;
	height: 126px;
	margin: 0 5px;
}

.brands-section .brand-box a{
	position:relative;
	top:50%;
	display:block;
	margin:auto;
	transform:translate(0%,-50%);
}
.brands-section .brand-box .white{
	display:none;
}
.brands-section .brand-box:hover .black{
	display:none;
}
.brands-section .brand-box:hover .white{
	display:block;
	filter: brightness(100);
}
/*** ### Latest Blog ### ***/
.latest-blog{
	position:relative;
	background:#0d0e1b;
	padding:50px 0px;
}
.latest-blog input{
	position:relative;
	color:#FFFFFF;
	font-size: 50px;
	font-weight:400;
	width: 100%;
	background-color: transparent;
	margin:0px;
	padding:0px 0px 15px 0px;
	text-transform:uppercase;
	text-align:center;
}
.latest-blog input:before{
	position:absolute;
	content:"";
	bottom:0px;
	left:50%;
	margin-left:-25px;
	width:50px;
	height:5px;
	
	-webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-moz-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-ms-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-o-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.our-team input{
	position:relative;
	color:#FFFFFF;
	font-size: 50px;
	font-weight:400;
	width: 100%;
	background-color: transparent;
	margin:0px;
	padding:0px 0px 15px 0px;
	text-transform:uppercase;
	text-align:center;
}
.our-team input:before{
	position:absolute;
	content:"";
	bottom:0px;
	left:50%;
	margin-left:-25px;
	width:50px;
	height:5px;
	
	-webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-moz-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-ms-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-o-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.our-matches input{
	position:relative;
	color:#FFFFFF;
	font-size: 50px;
	font-weight:400;
	width: 100%;
	background-color: transparent;
	margin:0px;
	padding:0px 0px 15px 0px;
	text-transform:uppercase;
	text-align:center;
}
.our-matches input:before{
	position:absolute;
	content:"";
	bottom:0px;
	left:50%;
	margin-left:-25px;
	width:50px;
	height:5px;
	
	-webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-moz-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-ms-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-o-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}

.live-stream input{
	position:relative;
	color:#FFFFFF;
	font-size: 50px;
	font-weight:400;
	width: 100%;
	background-color: transparent;
	margin:0px;
	padding:0px 0px 15px 0px;
	text-transform:uppercase;
	text-align:center;
}
.live-stream input:before{
	position:absolute;
	content:"";
	bottom:0px;
	left:50%;
	margin-left:-25px;
	width:50px;
	height:5px;
	
	-webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-moz-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-ms-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-o-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}



.latest-blog h2{
	position:relative;
	color:#FFFFFF;
	font-weight:400;
	margin:0px;
	padding:0px 0px 15px 0px;
	text-transform:uppercase;
	text-align:center;
}
.latest-blog h2:before{
	position:absolute;
	content:"";
	bottom:0px;
	left:50%;
	margin-left:-25px;
	width:50px;
	height:5px;
	
	-webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-moz-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-ms-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-o-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}
.latest-blog .blog-boxes{
	position:relative;
	margin-top:30px;
}
.latest-blog .blog-boxes .boxes{
	position:relative;
	margin-top:30px;
	transition:1s;
}



.plbox{
	position:relative;
	background-size: cover;
	background-position: center;
	height: 295px;
}


.latest-blog .blog-boxes .boxes .blog-image{
	position:relative;
	background-size: cover;
	background-position: center;
	height: 350px;
}
.latest-blog .blog-boxes .boxes .blog-image img{
	width:100%;
}
.latest-blog .blog-boxes .boxes .blog-details{
	position:absolute;
	left: 50px;
	right:25px;
	bottom:30px;
}
.latest-blog .blog-boxes .boxes .blog-details .green-box{
	position:relative;
	display:inline-block;
	vertical-align:top;
	margin-bottom:20px;
	
	color:#FFFFFF;
	font-weight:700;
	font-size:12px;
	text-transform:uppercase;
	letter-spacing:1px;
	padding:5px 20px;
	text-align:center;
	outline:none;
	-webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
	-moz-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
	-ms-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
	-o-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
	clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}
	
.latest-blog .blog-boxes .boxes .blog-details h3{
	color:#FFFFFF;
	font-size:30px;
	font-weight:400;
	margin:0px;
	padding:0px;
	text-transform:uppercase;
}
@media (max-width:1024px){
.latest-blog{
	padding:30px 0px;
}
.latest-blog .blog-boxes{
	margin-top:10px;
}
.latest-blog .blog-boxes .boxes{
	margin-top:20px;
}
.latest-blog .blog-boxes .boxes .blog-details{
	left:20px;
	right:20px;
	bottom:20px;
}	
.latest-blog .blog-boxes .boxes .blog-details h3{
	font-size:25px;
}
}
/*** ### Our Team ### ***/
.our-team{
	position:relative;
	background:#07070f;
	padding:50px 0px;
}
.our-team h2{
	position:relative;
	color:#FFFFFF;
	font-weight:400;
	margin:0px;
	padding:0px 0px 15px 0px;
	text-transform:uppercase;
	text-align:center;
}
.our-team h2:before{
	position:absolute;
	content:"";
	bottom:0px;
	left:50%;
	margin-left:-25px;
	width:50px;
	height:5px;
	-webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-moz-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-ms-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-o-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}
.our-team  ul.nav-bars{
	margin:30px 0px 0px 0px;
	padding:0px;
	list-style:none;
	text-align:center;
	display:block;
}
.our-team  ul.nav-bars > li{
	position:relative;
	margin:10px 2%;
	display:inline-block;
	vertical-align:middle;
}
.our-team  ul.nav-bars > li > a{
	display:inline-block;
	vertical-align:middle;
}
.our-team  ul.nav-bars > li > a img{
	display:inline-block;
	vertical-align:middle;
}
.our-team  ul.nav-bars > li > a .green{
	display:none;
}
.our-team  ul.nav-bars > li > a:hover .auto{
	display:none;
}
.our-team  ul.nav-bars > li > a.active .auto{
	display:none;
}
.our-team  ul.nav-bars > li > a:hover .green{
	display:block;
}
.our-team  ul.nav-bars > li > a.active .green{
	display:block;
	filter: brightness(100);
}
.our-team .team-area{
	position:relative;
	margin-top:20px;
}
.our-team .team-area .boxes{
	position:relative;
	margin:15px auto;
	display:block;
	width:100%;
	max-width:270px;
	cursor:pointer;
}
.our-team .team-area .boxes .details{
	position:relative;
	padding:15px 0px 0px 0px;
}
.our-team .team-area .boxes .details .icons{
	position:relative;
	text-align:center;
	margin-top:10px;
}
.our-team .team-area .boxes .details .icons a{
	display:inline-block;
	vertical-align:top;
	width:50px;
	height:50px;
	margin: 5px;
	line-height: 46px;
	background:#0d0e1b;
	border-radius:50%;
	text-align:center;
	font-size: 16px;
	color:#FFFFFF;
	border:1px solid #1a1a22;
}

.our-team .team-area .boxes .details h3{
	color:#FFFFFF;
	font-size:16px;
	font-weight:400;
	margin:15px 0px 10px 0px;
	padding:0px;
	text-align:center;
	text-transform:uppercase;
}
.our-team .team-area .boxes .details h4{
	color:#727489;
	font-size:15px;
	font-weight:300;
	margin:0px;
	padding:0px;
	text-align:center;
	text-transform:uppercase;
}

@media (max-width:576px){
.our-team .team-area .boxes .details .icons a{
	width:40px;
	height:40px;
	line-height:40px;
	font-size:15px;
}

.our-team .team-area .boxes .details h3{
	font-size:14px;
	padding:0px 10px;
}
}
/*** ### Our Matches ### ***/
.our-matches{
	position:relative;
	background:#0d0e1b;
	padding:50px 0px;
}
.our-matches h2{
	position:relative;
	color:#FFFFFF;
	font-weight:400;
	margin:0px;
	padding:0px 0px 15px 0px;
	text-transform:uppercase;
	text-align:center;
}
.our-matches h2:before{
	position:absolute;
	content:"";
	bottom:0px;
	left:50%;
	margin-left:-25px;
	width:50px;
	height:5px;
	-webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-moz-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-ms-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-o-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}
.our-matches-counter{
	position:relative;
	margin-top:50px;
	padding:50px 0px;
	z-index:2;
}
.our-matches-counter:before{
	position:absolute;
	content:"";
	right:0px;
	top:0px;
	bottom:0px;
	width:53%;
	z-index:-1;
	-webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
	-moz-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
	-ms-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
	-o-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
	clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.our-matches-counter .match-boxes{
	position:relative;
}
.our-matches-counter .match-boxes.left{
	position:relative;
	text-align:left;
}
.our-matches-counter .match-boxes.right{
	position:relative;
	text-align:right;
}
.our-matches-counter .match-boxes .items{
	position:relative;
	display:inline-block;
	vertical-align:top;
}
.our-matches-counter .match-boxes img{
	display:block;
	margin:auto;
}
.our-matches-counter .match-boxes p{
	color:#FFFFFF;
	font-size:16px;
	margin:0px;
	padding:0px;
	text-align:center;
	text-transform:uppercase;
}
.our-matches-counter .match-boxes p.black{
	color:#000000;
}
.our-matches-counter .counter-box{
	position:relative;
	margin:20px 0px;
}
.our-matches-counter .counter-box p{
	color:#FFFFFF;
	font-size:14px;
	margin:0px;
	padding:0px;
	text-align:center;
	text-transform:uppercase;
}
.our-matches-counter .counter-box ul.counter{
	position:relative;
	margin:15px 0px;
	padding:0px;
	list-style:none;
	text-align:center;
}
.our-matches-counter .counter-box ul.counter li{
	display:inline-block;
	vertical-align:middle;
	margin:0px;
	padding:0px;
	width:70px;
	height:70px;
	line-height:70px;
	font-size:32px;
	color:#141414;
	font-weight:700;
	font-family: 'Open Sans', sans-serif;
}
.our-matches-counter .counter-box ul.counter li span{
	display:block;
	text-align:center;
	border-radius:10px;
	font-weight:700;
	color:#FFFFFF;
	font-family: 'Open Sans', sans-serif;
	background:#0d0e1b;
}

.our-matches-counter .counter-box ul.counter li.colon{
	width:auto;
}
@media (max-width:1024px){
.our-matches-counter{
	margin-top:30px;
	padding:30px 15px;
}
.our-matches-counter .match-boxes p{
	font-size:15px;
}
.our-matches-counter .counter-box ul.counter li{
	margin:0px;
	padding:0px;
	width:60px;
	height:60px;
	line-height:60px;
	font-size:25px;
}
}
@media (max-width:767px){
.our-matches-counter:before{
	top:auto;
	height:55%;
	width:100%;
	-webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
	-moz-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
	-o-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
	-ms-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
}
.our-matches-counter .match-boxes.left{
	text-align:center;
}
.our-matches-counter .match-boxes.right{
	text-align:center;
}
}
.our-matches-list{
	position:relative;
}
.our-matches-list h3{
	color:#FFFFFF;
	font-size:16px;
	font-weight:500;
	margin:0px;
	padding:0px;
	text-transform:uppercase;
	font-family: 'Roboto', sans-serif;
}
.our-matches-list h4{
	font-size:30px;
	font-weight:700;
	margin:15px 0px;
	padding:0px;
	text-transform:uppercase;
	font-family: 'Roboto', sans-serif;
}
.our-matches-list p{
	color:#848484;
	font-size:12px;
	font-weight:400;
	margin:0px;
	padding:0px;
	text-transform:uppercase;
	font-family: 'Roboto', sans-serif;
}
.our-matches-list .iner-box{
	position:relative;
	border:1px solid #311e1c;
	margin-top:50px;
	background:#07070f;
}
.our-matches-list .main-list{
	position:relative;
	border-bottom:1px solid #422313;
	padding:20px 50px;
}
.our-matches-list .main-list:last-child{
	border-bottom:none;
}
.our-matches-list .main-list button.match-btn{
	position:relative;
	display:inline-block;
	vertical-align:top;
	padding:10px 20px;
	margin:15px 15px 0px 0px;
	
	color:#0d0e1b;
	font-weight:400;
	font-size:12px;
	text-transform:uppercase;
	border:none;
	outline:none;
	font-family: 'Roboto', sans-serif;
}
.our-matches-list .main-list .match-details{
	position:relative;
	padding:20px 0px;
}
.our-matches-list .main-list .main-description{
	position:relative;
	text-align:center;
}
.our-matches-list .main-list .main-description .team-image{
	position:relative;
	padding: 30px;
	background-size: cover;
}
.our-matches-list .main-list .main-description .team-image img{
	display:block;
	margin:auto;
}
.our-matches-list .main-list .main-description .team-name{
	display:inline-block;
	vertical-align:top;
	margin:5px 0px 0px 0px;
	padding:8px 0px;
	color:#848484;
	background:#000000;
	font-size:14px;
	font-weight:500;
	text-align:center;
	width:100%;
	max-width:132px;
	
	font-family: 'Roboto', sans-serif;
}
.our-matches-list .main-list .main-description .vs{
	display:inline-block;
	vertical-align:top;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	color:#FFFFFF;
	background:#000000;
	font-weight:14px;
	font-weight:400;
	font-family: 'Roboto', sans-serif;
}
@media (max-width:1160px){
.our-matches {
	padding:30px 0px;
}
.our-matches-list .iner-box{
	margin-top:30px;
}
.our-matches-list h3{
	font-size:15px;
}
.our-matches-list h4{
	font-size:25px;
}
.our-matches-list .main-list{
	padding:20px 30px;
}
.our-matches-list .main-list button.match-btn{
	padding:10px 15px;
	margin:15px 10px 0px 0px;
}
.our-matches-list .main-list .main-description .team-name{
	font-size:12px;
}
}
@media (max-width:991px){
.our-matches-list h4{
	font-size:22px;
}
.our-matches-list .main-list{
	padding:20px 15px;
}
.our-matches-list .main-list button.match-btn{
	padding:5px 12px;
	margin:10px 5px 0px 0px;
}
.our-matches-list .main-list .main-description .team-name{
	font-size:12px;
}
}

@media (max-width:767px){
.our-matches-list h4{
	font-size:20px;
}
.our-matches-list .main-list button.match-btn{
	padding:5px;
	margin:10px 2px 0px 0px;
	font-size:12px;
}
.our-matches-list .main-list .main-description .vs{
	width:30px;
	height:30px;
	line-height:30px;
	font-weight:12px;
}
}

@media (max-width:360px){
.our-matches-list .main-list button.match-btn{
	margin:10px 1px 0px 0px;
	font-size:10px;
}
}
/*** ### Live Stream ### ***/
.live-stream{
	position:relative;
	background:#07070f;
	padding:50px 0px;
}
.live-stream h2{
	position:relative;
	color:#FFFFFF;
	font-weight:400;
	margin:0px;
	padding:0px 0px 15px 0px;
	text-transform:uppercase;
	text-align:center;
}
.live-stream h2:before{
	position:absolute;
	content:"";
	bottom:0px;
	left:50%;
	margin-left:-25px;
	width:50px;
	height:5px;
	
	-webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-moz-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-ms-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-o-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}
.live-stream .stream-boxes{
	position:relative;
	margin-top:25px;
}
.live-stream .stream-boxes .boxes{
	position:relative;
	background:#0d0e1b;
	padding:10px;
	margin-top:25px;
}
.live-stream .stream-boxes .boxes p{
	position:relative;
	display:inline-block;
	vertical-align:middle;
	color:#FFFFFF;
	font-size: 17px;
	font-weight:500;
	margin:0px;
	padding:5px 10px;
	font-family: 'Roboto', sans-serif;
}
.live-stream .stream-boxes .boxes p.view{
	font-size:10px;
}
.live-stream .stream-boxes button.action-btn{
	position:relative;
	display:inline-block;
	vertical-align:middle;
	padding:0px 20px;
	height:30px;
	margin:0px;
	color:#FFFFFF;
	border:none;
	font-size:14px;
	font-weight:500;
	text-transform:uppercase;
	text-decoration:none;
	outline:none;
	font-family: 'Roboto', sans-serif;
}
.live-stream .stream-boxes .boxes button.offline{
	background:#e01111;
}
.live-stream .stream-boxes .boxes button.online{
	background:#37bb0f;
}

.live-stream .stream-boxes .boxes .game-image{
	position:relative;
	margin:10px 0px;
}
.live-stream .stream-boxes .boxes .game-image img{
	width:100%;
}
@media (max-width:1024px){
.live-stream .stream-boxes{
	padding:30px 0px;
}
.live-stream .stream-boxes .boxes p{
	font-size:12px;
}
.live-stream .stream-boxes .boxes p.view{
	font-size:10px;
}
.live-stream .stream-boxes .boxes button.action-btn{
	font-size:12px;
}
}
/*** ### Contact Us ### ***/
.contact-us{
	position:relative;
	background:#0d0e1b;
	padding:50px 0px;
}
.contact-us h2{
	position:relative;
	color:#FFFFFF;
	font-weight:400;
	margin:0px;
	padding:0px 0px 15px 0px;
	text-transform:uppercase;
	text-align:center;
}
.contact-us h2:before{
	position:absolute;
	content:"";
	bottom:0px;
	left:50%;
	margin-left:-25px;
	width:50px;
	height:5px;
	-webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-moz-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-ms-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	-o-clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
	clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}
.contact-us .contact-form{
	position:relative;
	margin-top:50px;
}
.contact-us .contact-form input{
	position:relative;
	width:100%;
	height: 66px;
	background:#07070f;
	border:1px solid #20212d;
	outline:none;
	font-size:15px;
	font-weight:300;
	color:#717389;
	padding: 0px 21px;
	margin-bottom:30px;
}
.contact-us .contact-form input::-webkit-input-placeholder {
	opacity:1;
	color:#717389;
}
.contact-us .contact-form input::-moz-placeholder {
	opacity:1;
	color:#717389;
}
.contact-us .contact-form input:-ms-input-placeholder { 
	opacity:1;
	color:#717389;
}
.contact-us .contact-form input:-moz-placeholder {
	opacity:1;
	color:#717389;
}
.contact-us .contact-form textarea{
	position:relative;
	width:100%;
	height: 230px;
	background:#07070f;
	border:1px solid #20212d;
	outline:none;
	font-size:15px;
	font-weight:300;
	color:#717389;
	padding: 15px 19px;
	margin-bottom:30px;
	resize:none;
}
.contact-us .contact-form textarea::-webkit-input-placeholder {
	opacity:1;
	color:#717389;
}
.contact-us .contact-form textarea::-moz-placeholder {
	opacity:1;
	color:#717389;
}
.contact-us .contact-form textarea:-ms-input-placeholder { 
	opacity:1;
	color:#717389;
}
.contact-us .contact-form textarea:-moz-placeholder {
	opacity:1;
	color:#717389;
}
.contact-us .contact-form button{
	position:relative;
	max-width: 241px;
	height: 71px;
	width:100%;
	color:#FFFFFF;
	display:block;
	margin:auto;
	font-weight:700;
	font-size:16px;
	text-transform:uppercase;
	letter-spacing:1px;
	text-align:center;
	outline:none;
	-webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
	-moz-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
	-ms-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
	-o-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
	clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}
@media (max-width:1024px){
.contact-us{
	padding:30px 0px;
}
.contact-us .contact-form {
	margin-top:30px;
}
.contact-us .contact-form input{
	height:50px;
}
.contact-us .contact-form textarea{
	height:175px;
}
.contact-us .contact-form button{
	max-width:220px;
	height:50px;
	font-size:15px;
}
}

@media (max-width:767px){
.contact-us .contact-form input{
	height:50px;
	margin-bottom:20px;
}
.contact-us .contact-form textarea{
	height:175px;
	margin-bottom:20px;
}
}
/*** ### top Footer ### ***/
.top-footer{
	position:relative;
	background:#07070f;
	padding:50px 0px 0px 0px;
	z-index:2;
}
.top-footer .boxes{
	position:relative;
	margin-bottom:30px;
}
.top-footer .boxes .footer-logo{
	position:relative;
	display:inline-block;
	vertical-align:top;
	max-width:200px;
	width:100%;
}
.top-footer .boxes h2{
	color:#ffffff;
	font-weight:400;
	font-size:16px;
	margin:0px;
	padding:40px 0px 0px 0px;
	text-transform:uppercase;
}
.top-footer .boxes p{
	margin:15px 0px 0px 0px;
	padding:0px;
	font-size:14px;
	line-height:25px;
	letter-spacing:1px;
	color:#999b9f;
	font-weight:300;
}
.footer-social-btn{
	position:relative;
	text-align:left;
	margin-top:20px;
}
.footer-social-btn a{
	position:relative;
	display:inline-block;
	vertical-align:top;
	width:45px;
	height:45px;
	line-height:50px;
	text-align:center;
	outline:none;
	border:none;
	border-radius:50%;
	text-decoration:none;
	background:#1c1e22;
	font-size:16px;
	color:#999b9f;
	margin:0px 5px 0px 0px;
}
.top-footer .boxes .footer-nav{
	position:relative;
	margin-top:30px;
}
.top-footer .boxes .footer-nav ul{
	margin:0px;
	padding:0px;
	list-style:none;
}
.top-footer .boxes .footer-nav ul li{
	position:relative;
	display:inline-block;
	vertical-align:top;
	float: left;
	/* width:100%; */
	margin: 0px 28px 15px 0px;
	padding:0px;
}
.top-footer .boxes .footer-nav ul li a{
	color:#999b9f;
	font-size:14px;
	font-weight:400;
	margin:0px;
	padding:0px;
	text-decoration:none;
	outline:none;
	letter-spacing:1px;
	border-bottom:1px solid transparent;
	text-transform:uppercase;
}

.top-footer .boxes .wp-discord{
	position:relative;
	display:block;
	margin:auto;
}
@media (max-width:1160px){
.top-footer .boxes .footer-logo{
	max-width:150px;
}
.top-footer{
	padding:30px 0px 50px 0px;
}
.top-footer .boxes .footer-nav ul li{
	margin:0px 0px 10px 0px;
}
.footer-social-btn a{
	margin:0px 2px 0px 0px;
}
}
@media (max-width:767px){
.top-footer .boxes .footer-nav{
	margin-top:20px;
}
}

/* ==================================================
  Footer Styling
  ================================================== */

  .footer {
    background: #111;
    color: white;
    border-top: 1px solid;
	border-color: var(--secondColor);
	transition: 1s;
  }
  
  .footer .active:hover {
	color: var(--secondColor);
  }

  .footer a {
    color: white;
  }
  
  .footer .links ul {
      list-style-type: none;
  }
  .footer .links li a {
      color: white;
      transition: color .2s;
  }
  .footer .links li a:hover {
      text-decoration: none;
      color: #4180CB;
  }

  .footer .about-company {
      color: var(--secondColor);
  }

  .footer .about-company i {
      font-size: 25px;
  }
  .footer .about-company a {
      color: white;
      transition: color .2s;
  }
  .footer .about-company a:hover {
      color: #4180CB;
  }
  .footer .location i {
      font-size: 18px;
  }
  .footer .copyright p {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
  }
  /*.footer h2 {
    padding: 0;
    margin: 0;
  }*/
  .footer p {
    color: #fff;
  }
  
  #footer h2 {
    color: var(--secondColor);
    font-size: 30px;
  }
  
  .phrase {
    color: grey;
    font-size: 18px !important;;
  }

  /* ==================================================
  Footer Social Media Styling
  ================================================== */

  .socialMediaWrapper {
    display: flex!important;
    display: -ms-flexbox!important;
    display: -webkit-box!important;

    flex-direction: row!important;
    -ms-flex-direction: row!important;
    -webkit-box-direction: normal!important;
    webkit-box-orient: horizontal!important;

    justify-content: flex-end!important;
    -ms-flex-pack: end!important;
    -webkit-box-pack: end!important;

  }

  .socialMediaIconWrapper {
    display: flex!important;
    display: -ms-flexbox!important;
    display: -webkit-box!important;

    flex-direction: column!important;
    -ms-flex-direction: column!important;
    -webkit-box-direction: normal!important;
    -webkit-box-orient: vertical!important;

    justify-content: center!important;
    -ms-flex-pack: center!important;
    -webkit-box-pack: center!important;

    align-items: center!important;
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;

    height: 100%!important;
    margin: 5px;
    padding-bottom: 2px;
    border-width: 5px;
    border-color: var(--mainColor);
    border-radius: 100%;
    background-color: var(--mainColor);
  }

  .socialMediaIconWrapper:hover,
  .socialMediaIconWrapper:hover .socialMediaIcon {
    border-color: var(--secondColor);
    background-color: var(--secondColor);
  }

  .socialMediaIcon {
    margin: 10px;
    height: 40px;
    text-align: center;
    width: 40px;
    background-color: var(--mainColor);
    font-size: 30px;
    color: #fff;
    cursor: pointer;
  }

  @media (max-width: 61.9em) {
    .socialMediaWrapper {
      justify-content: flex-end!important;
      -ms-flex-pack: end!important;
      -webkit-box-pack: end!important;
    }
  }

  @media (max-width: 575px) {
    .socialMediaWrapper {
      margin-top: 20px;
      margin-bottom: 20px;
      justify-content: flex-start!important;
      -ms-flex-pack: start!important;
      -webkit-box-pack: start!important;
    }
  }

/*** ### Footer ### ***/
/* footer{
	position:relative;
	border-top:1px solid #202027;
	padding:30px 0px;
}
footer p{
	margin:0px;
	padding:0px;
	color:#999b9f;
	font-size:14px;
	font-weight:400;
	letter-spacing:1px;
	text-align:center;
} */

@keyframes slideIn {
    from{

    }
    to{
        transform: translateX(0);
    }
}