@font-face {
  font-family: 'Univers';
  src: url(../webfonts/Univers/univers-condensed-57-regular.otf);
}

@font-face {
  font-family: 'Univers Condensed';
  src: url(../webfonts/Univers/univers-57-condensed.otf);
}

@font-face {
  font-family: 'Univers Light';
  src: url(../webfonts/Univers/Univers-Light.otf);
}

body,
h1,
h2,
h3 {
    font-family: Roboto, sans-serif;
}

html {
	position:relative;
	min-height:100%;
	width:100%;
	margin:0;
	padding:0;
}

body {
	background:url('../image/bg.jpg') no-repeat, #000000;
	background-position:center top;
	background-size:100%;
	margin-bottom: 60px;
	margin-left:0;
	margin-right:0;
	padding:0;
}

.main-wrapper {
	position:relative;
	width:90%;
	margin:0 auto 150px auto;
	margin-top:40px;
}

.main-wrapper::after {
	display: block;
    content: "";
    clear: both;
}

.left-wrapper {
	float:left;
	width:30%;
}

.left-wrapper .community .item {
	display:block;
	margin:10px 0;
}

.left-wrapper .community .item:first-child {
	margin-top:0px;
}

.left-wrapper .community .content {
	background:#003d7a;
	padding:10px 10px;
	line-height:60px;
	border-radius:4px;
	-webkit-transition: all .3s ease-in-out;
       -o-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out;
}

.left-wrapper .community .item:hover .content {
	opacity:0.7;
}

.left-wrapper .community .content::after {
	display: block;
    content: "";
    clear: both;
}

.left-wrapper .community .discord .content {
	background:#003d7a;
}

.left-wrapper .community .forum .content {
	background:#228B22;
}

.left-wrapper .community .insta .content {
	background:#853CB0;
}

.left-wrapper .community .content .icon {
	width:20%;
	float:left;
	text-align:center;
	font-size:40px;
	color:#fff;
}

.left-wrapper .community .content .desc {
	width:74%;
	margin-left:1%;
	float:left;
	font-family:'Univers';
	color:#fff;
	font-size:25px;
	text-transform:uppercase;
}

.left-wrapper .community .content .caret {
	float:right;
	color:#fff;
	width:4%;
	text-align:center;
	margin-right:1%;
}

.right-wrapper {
	float:right;
	width:65%;
}

.right-wrapper .servers {
	position:relative;
}

.right-wrapper .servers .item {
	float:left;
	width:44%;
	background:#363f6b;
	margin:0 2%;
	text-decoration:none;
	/*padding:15px;*/
	border-radius:4px;
}

.right-wrapper .servers .item:first-child {
	margin-left:0;
}

.right-wrapper .servers .item:last-child {
	margin-right:0;
}

.right-wrapper .servers .item .head {
	color:#ffffff;
	text-transform:uppercase;
	font-family:'Univers';
	padding:15px;
}

.right-wrapper .servers .item .head h2 {
	letter-spacing:2px;
	font-weight:bold;
	font-size:20px;
	padding:0;
	margin:0;
}

.right-wrapper .servers .item .head p {
	padding:0;
	margin:0;
	color:#ffffff;
}

.right-wrapper .servers .item .video {
	padding:0 10px;
}

.right-wrapper .servers .item .video iframe {
	width:100% !important;
	height:210px;
	border:1px solid #e1e2e3;
}

.right-wrapper .servers .item .footer-wrapper {
	position:relative;
	background:#003d7a;
	padding:15px 15px 20px 15px;
	margin-top:15px;
	border-bottom-left-radius:4px;
	border-bottom-right-radius:4px;
}

.right-wrapper .servers .item .footer-wrapper::after {
	position:absolute;
	z-index:1001 !important;
	top:-10px;
	right:0;
	display: block;
    content: "";
    clear: both;
	width:55%;
	background:transparent;
	border-bottom: 20px solid #003d7a;
    border-left: 20px solid transparent;
}

.right-wrapper .servers .item .footer-wrapper .link {
	position:relative;
	z-index:1002 !important;
	margin-top:-10px;
	font-family:'Univers';
	text-transform:uppercase;
	text-align:right;
	font-weight:bold;
	letter-spacing:2px;
	color:#fff;
	font-size:18px;
	line-height:20px;
}

.right-wrapper .servers .item .footer-wrapper .link i {
	color:#fff;
	text-shadow: none;
	font-size:20px;
	margin-left:5px;
}

.right-wrapper .servers .item:hover .footer-wrapper .link i {
	animation: linkZoomIn 3.1s infinite;
}

#footer {
    background:#003d7a;
	position: absolute;
	bottom: 0;
	margin:0 auto 0 auto;
	height: 60px;
	width:99.8%;
}

#footer .copyright {
	text-align:center;
	margin:25px 0 0px 0;
	font-size:12px;
	z-index:1002;
}

#footer .copyright p {
	padding:0;
	margin:0;
	font-family:'Roboto';
	text-transform:uppercase;
	color:#ffffff;
}

#footer .copyright img {
	width:150px;
	margin-top:10px;
}

#footer .copyright a {
	color:#ffffff;
	text-decoration:none;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
}

#footer .copyright a:hover {
	color:#ffffff;
}

.invisible {
	visibility:hidden;
}

.mt-5 {
	margin-top:5px !important;
}

@keyframes linkZoomIn {
    0% {
        transform: scale(1,1);
    }
    50% {
		transform: scale(1.4,1.4);
    }
    100% {
		transform: scale(1.1,1.1);
    }
}