* {
	margin: 0;
	padding: 0;
}

html, body {
	height: 100%;
}

body {
	background-color: #263350;
	font-family: Arial;
}

#wrap {
	position: relative;
	max-width: 1500px;
	margin: 0 auto;
	min-height: 100%;
}

header {
	position: relative;
	z-index: 10;
}

header ul {
	list-style: none;
	line-height: 40px;
	padding: 20px 20px 0;
}

header ul li {
	display: inline-block;
}

header ul li a {
	color: white;
    text-decoration: none;
    padding: 8px 10px;
    font-weight: 600;
    margin-right: 5px;
    border-radius: 2px;
    background-color: #22bcb0;
    transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
}

header ul li a:hover {
	background-color: #3cee8c;
}

i.facebook, i.twitter, i.instagram, i.steam, i.youtube, i.tiktok, i.mail, i.discord {
	position: relative;
    top: 6px;
	display: inline-block;
	background-image: url('../img/icons.png');
    width: 24px;
    height: 24px;
    background-position: 0 0;
}

i.twitter {
    background-position: -24px 0;
}
i.instagram {
    background-position: -48px 0;
}
i.mail {
	background-position: -72px 0;
}
i.youtube {
	background-position: -96px 0;
}
i.tiktok {
	background-position: -120px 0;
}
i.steam {
	background-position: -144px 0;
}
i.discord {
	background-position: -168px 0;
}

#title {
	background-color: #7fc7eb;
	padding: 50px 0;
	margin: 80px 0;
}

#logo {
	position: relative;
	text-align: center;
	z-index: 5;
}

main {
	position: relative;
	padding: 0 10px;
	z-index: 10;
	top: 20px;
}

main section > article {
	max-width: 600px;
	margin: 20px auto;
}

main section p, main section ul {
	margin: 10px auto 20px;
	color: white;
	text-align: left;
}
main section ul li {
	margin-bottom: 10px;
	margin-left: 20px;
}

img {
	max-width: 100%;
}

.container {
	max-width: 1000px;
	text-align: center;
	margin: 0 auto;
	padding: 0 20px;
}
.container .col {
	display: inline-block;
	width: 100%;
    position: relative;
    vertical-align: top;
}

.mb {
	margin-bottom: 15px;
}

.mb2 {
	margin-bottom: 30px;
}

.mb3 {
	margin-bottom: 45px;
}

.mb4 {
	margin-bottom: 60px;
}

h1 {
	color: white;
	font-size: 40px;
	text-align: center;
	margin-bottom: 30px;
}

h2, h2 > a {
	color: white;
	font-size: 32px;
	text-align: left;
	margin: 30px 0;
	font-weight: normal;
	text-decoration: none;
}

h3, h3 > a {
	color: white;
	font-size: 24px;
	text-align: left;
	margin-bottom: 30px 0;
	font-weight: normal;
	text-decoration: none;
}


a {
	color: white;
	text-decoration: none;
}
a:focus, a:hover, a:active {
	color: #22bcb0;
}

footer {
	position: relative;
	max-width: 1500px;
	margin: 20px auto 0;
	padding: 10px 10px 0;
	color: white;
	z-index: 10;
}

.fact-sheet {
	color: white;
	text-align: left;
}

.fact-sheet h2, .fact-sheet h3 {
	text-align: left;
}

label {
	color: white;
	font-weight: bold;
}
p {
	color: white;
}

.cta-list {
	text-align: center;
}

.cta {
	position: relative;
	display: inline-block;
	width: 120px;
	padding: 40px 10px;
	margin: 0 auto;
	text-align: center;
	z-index: 20;
	cursor: pointer;
}

.cta label {
	cursor: pointer;
	font-size: 12px;
}

.cta-bg {
	width: 92%;
	height: 92%;
    position: absolute;
    top: 10px;
    background-color: #e14036;
    margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 0;
}

.cta label {
	position: relative;
    display: block;
    font-size: 12px;
    padding-bottom: 10px;
    font-weight: bold;
    color: #fff;
	z-index: 2;
}

.cta:nth-child(odd) .cta-bg {
	transform: perspective(200px) rotateX(-30deg);
	-webkit-transform: perspective(200px) rotateX(-30deg);
	-o-transform: perspective(200px) rotateX(-30deg);
	-moz-transform: perspective(200px) rotateX(-30deg);
}

.cta:nth-child(even) .cta-bg {
	transform: perspective(200px) rotateX(30deg);
	-webkit-transform: perspective(200px) rotateX(30deg);
	-o-transform: perspective(200px) rotateX(30deg);
	-moz-transform: perspective(200px) rotateX(30deg);
	top: -3px;
}

@media only screen and (min-width: 510px) {
	main {
		top: -80px;
	}
	
	.cta {
		display: inline-block;
		position: relative;
		top: -80px;
		width: 120px;
		padding: 40px 20px;
		margin: 0 auto;
		text-align: center;
		z-index: 20;
	}

	.cta-bg {
		max-width: 400px;
	    height: 80px;
	    position: absolute;
	    top: 20px;
	    background-color: #e14036;
	    margin-left: auto;
		margin-right: auto;
		left: 0;
		right: 0;
		text-align: center;
		z-index: 0;
	}

	.cta:nth-child(even) .cta-bg {
		transform: perspective(200px) rotateX(30deg);
		-webkit-transform: perspective(200px) rotateX(30deg);
		-o-transform: perspective(200px) rotateX(30deg);
		-moz-transform: perspective(200px) rotateX(30deg);
		top: 13px;
	}
	
}

@media only screen and (min-width: 806px) {
	.cta {
		top: -110px;
		width: 220px;
		padding: 50px 20px;
	}

	.cta-bg {
		max-width: 400px;
	    height: 120px;
	    position: absolute;
	    top: 20px;
	    background-color: #e14036;
	    margin-left: auto;
		margin-right: auto;
		left: 0;
		right: 0;
		text-align: center;
		z-index: 0;
	}

	.cta label {
		font-size: 20px;
	}

	.cta:nth-child(even) .cta-bg {
		top: 5px;
	}
}

@media only screen and (min-width: 576px) {
	.col-sm-3 {
		width: 24% !important;
	}
	.col-sm-4 {
		width: 33% !important;
	}
	.col-sm-6 {
		width: 49% !important;
	}
	.col-sm-8 {
		width: 66% !important;
	}
	.col-sm-9 {
		width: 74% !important;
	}
}

@media only screen and (min-width: 860px) {
	.col-md-3 {
		width: 24% !important;
	}
	.col-md-4 {
		width: 33% !important;
	}
	.col-md-6 {
		width: 49% !important;
	}
	.col-md-8 {
		width: 66% !important;
	}
	.col-md-9 {
		width: 74% !important;
	}
}


@media only screen and (min-width: 992px) {
	#title {
		background-color: #7fc7eb;
		padding: 50px 0;
		margin-top: 80px;
	}
}



#hex-list {
	position: relative;
	list-style-type: none;
	margin: 30px auto;
	padding: 2px 4px 60px 4px;
	max-width: 1040px;
	display: flex;
	flex-wrap: wrap;
}

.hex {
	position: relative;
	width: 200px;
	height: 173px;
	margin: 4px;
}

.hex > div.sponsored {
	position: absolute;
	background-image: url("../img/sponsored-outline.svg");
	top: -5px;
	left: -5px;
	width: 210px;
	height: 242px;
}

.hex > div.outline {
	position: absolute;
	top: -5px;
	left: -5px;
	width: 210px;
	height: 242px;
}

.outer {
	position: relative;
	overflow: hidden;
	visibility: hidden;
    -webkit-transform: rotate(120deg);
       -moz-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
         -o-transform: rotate(120deg);
            transform: rotate(120deg);
    width: 200px;
	height: 400px;
	margin-top: -84px;
}

.outer .in {
	position: fixed;
    overflow: hidden;
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(-60deg);
       -moz-transform: rotate(-60deg);
        -ms-transform: rotate(-60deg);
         -o-transform: rotate(-60deg);
            transform: rotate(-60deg);
}

.outer .in2 {
    width: 100%;
    height: 100%;
    visibility: visible;
    -webkit-transform: rotate(-60deg);
       -moz-transform: rotate(-60deg);
        -ms-transform: rotate(-60deg);
         -o-transform: rotate(-60deg);
            transform: rotate(-60deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.in article {
	position: relative;
	display: block;
	text-align: center;
	overflow: hidden;
	margin: 0;
	height: 232px;
}

.in article:hover {
	cursor: pointer;
}

#hex-list article .content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

#hex-list article img {
	width: auto;
	position: relative;
	transition: 0.5s filter, 0.5s -webkit-filter;
}

#hex-list article .content.sponsored {
	background-image: url("../img/white-outline.svg");
}

#hex-list article .content .inner-content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -100%;
	background-image: url("../img/yellow-fill.svg");

	transition: left 0.5s, 
		-webkit-transform 0.5s,
		-moz-transform 0.5s,
		-ms-transform 0.5s,
		-o-transform 0.5s,
		transform 0.5s;

    -webkit-transform: rotate(-120deg);
       -moz-transform: rotate(-120deg);
        -ms-transform: rotate(-120deg);
         -o-transform: rotate(-120deg);
            transform: rotate(-120deg);
}
body.dark-blue article .content .inner-content, body.light-blue article .content .inner-content {
	background-image: url("../img/blue-fill.svg");
}

.hex:hover article img {
	opacity: 0.25;
}


.outline {
	position: absolute;
}

.outline .green {
	stroke: #7bd200;
}

#popup {
	align-items: center;
	justify-content: center;
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	background-color: rgba(0,0,0,.85);
	z-index: 100;
	text-align: center;
	color: #fff;
}

#popup img {
	max-height: 90%;
	max-width: 95%;
}

@media only screen and (max-width: 1920px) {
	/* HALF SIZE */
	#hex-list.small {
		padding: 0 0 30px
	}
	#hex-list.small .hex {
		width: 100px;
		height: 86px;
		margin: 2px;

	}
	#hex-list.small .hex > div.sponsored {
		top: -2px;
		left: -2px;
		width: 104px;
		height: 121px;
	}
	#hex-list.small .hex > div.outline {
		top: -2px;
		left: -2px;
		width: 104px;
		height: 121px;
	}
	#hex-list.small .outer {
	    width: 100px;
		height: 200px;
		margin-top: -42px;
	}
	#hex-list.small .in article {
		height: 116px;
	}
	#hex-list.small article img {
		height: 116px;
	}
	#hex-list.small article .content.sponsored {
		width: 100px;
		height: 116px;
	}
}

/* HALF SIZE NORMAL FOR MOBILES */
@media only screen and (max-width: 456px) {
	#hex-list {
		padding: 0 0 30px;
	}
	.hex {
		width: 100px;
		height: 86px;
		margin: 2px;

	}
	.hex > div.sponsored {
		top: -2px;
		left: -2px;
		width: 104px;
		height: 121px;
	}
	.hex > div.outline {
		top: -2px;
		left: -2px;
		width: 104px;
		height: 121px;
	}
	.outer {
        width: 100px;
		height: 200px;
		margin-top: -42px;
	}
	.in article {
		height: 116px;
	}
	#hex-list article img {
		height: 116px;
	}
	#hex-list article .content.sponsored {
		width: 100px;
		height: 116px;
	}
}

/* SHOW 2:1:2 HALF SIZE */
@media screen and (max-width: 328px) {
	#hex-list {
		width: 208px;
	}
	#hex-list.small .hex:nth-child(3n+3), #hex-list.large .hex:nth-child(3n+3) {
		margin-left: 54px;
	}
	.hex:before, .hex:after {
		width: 100px;
		height: 116px;
		top: 0;
	}
	.hex:nth-child(3n+1):before {
		content: '';
	    left: -104px;
	}
	.hex:nth-child(3n+3):before {
		content: '';
	    left: -104px;
	}
	.hex:nth-child(3n+2):after {
		content: '';
	    left: 104px;
	}
	.hex:nth-child(3n+3):after {
		content: '';
	    left: 104px;
	}
	.hex:first-child:after {
		content: '';
	    top: -91px;
	    left: 52px;
	}
	.hex:last-child:before {
		content: '';
	    top: 91px;
	    left: -52px;
	}
}

/* SHOW 3:2:3 HALF SIZE */
@media screen and (min-width: 329px) and (max-width: 456px) {
	#hex-list {
		max-width: 312px;
	}
	#hex-list.small .hex:nth-child(5n+4), #hex-list.large .hex:nth-child(5n+4) {
		margin-left: 54px;
	}
	.hex:before, .hex:after {
		width: 100px;
		height: 116px;
		top: 0;
	}
	.hex:nth-child(5n+1):before {
		content: '';
	    left: -104px;
	}
	.hex:nth-child(5n+4):before {
		content: '';
	    left: -104px;
	}
	.hex:nth-child(5n+5):after {
		content: '';
	    left: 104px;
	}
	.hex:nth-child(5n+3):after {
		content: '';
	    left: 104px;
	}
	.hex:nth-child(-n+2):after {
		content: '';
	    top: -91px;
	    left: 52px;
	}
	.hex:nth-last-child(-n+2):before {
		content: '';
	    top: 91px;
	    left: -52px;
	}
}

/* SHOW 2:1:2 */
@media only screen and (min-width: 457px) and (max-width: 666px) {
	#hex-list {
		max-width: 416px;
	}
	#hex-list.large .hex:nth-child(3n+3) {
		margin-left: 108px;
	}
	#hex-list.large .hex:before, #hex-list.large .hex:after {
		width: 200px;
		height: 232px;
	    top: 0;
	}
	#hex-list.large .hex:nth-child(3n+1):before {
		content: '';
	    left: -208px;
	}
	#hex-list.large .hex:nth-child(3n+3):before {
		content: '';
	    left: -208px;
	}
	#hex-list.large .hex:nth-child(3n+3):after {
		content: '';
	    left: 208px;
	}
	#hex-list.large .hex:nth-child(3n+2):after {
		content: '';
	    left: 208px;
	}
	#hex-list.large .hex:nth-child(-n+1):after {
		content: '';
	    top: -182px;
	    left: 104px;
	}
	#hex-list.large .hex:nth-last-child(-n+1):before {
		content: '';
	    top: 182px;
	    left: -104px;
	}

	/* HALF SIZE */
	#hex-list.small {
		max-width: 416px;
	}
	#hex-list.small .hex:nth-child(7n+5) {
		margin-left: 54px;
	}
	#hex-list.small .hex:before, #hex-list.small .hex:after {
		width: 100px;
		height: 116px;
		top: 0;
	}
	#hex-list.small .hex:nth-child(7n+1):before {
		content: '';
	    left: -104px;
	}
	#hex-list.small .hex:nth-child(7n+5):before {
		content: '';
	    left: -104px;
	}
	#hex-list.small .hex:nth-child(7n+7):after {
		content: '';
	    left: 104px;
	}
	#hex-list.small .hex:nth-child(7n+4):after {
		content: '';
	    left: 104px;
	}
	#hex-list.small .hex:nth-child(-n+3):after {
		content: '';
	    top: -91px;
	    left: 52px;
	}
	#hex-list.small .hex:nth-last-child(-n+3):before {
		content: '';
	    top: 91px;
	    left: -52px;
	}
}

/* SHOW 3:2:3 */
@media only screen and (min-width: 667px) and (max-width: 880px) {
	#hex-list.large {
		max-width: 624px;
	}
	#hex-list.large .hex:nth-child(5n+4) {
		margin-left: 108px;
	}
	#hex-list.large .hex:before, #hex-list.large .hex:after {
		width: 200px;
		height: 232px;
	    top: 0;
	}
	#hex-list.large .hex:nth-child(5n+1):before {
		content: '';
	    left: -208px;
	}
	#hex-list.large .hex:nth-child(5n+4):before {
		content: '';
	    left: -208px;
	}
	#hex-list.large .hex:nth-child(5n+5):after {
		content: '';
	    left: 208px;
	}
	#hex-list.large .hex:nth-child(5n+3):after {
		content: '';
	    left: 208px;
	}
	#hex-list.large .hex:nth-child(-n+2):after {
		content: '';
	    top: -182px;
	    left: 104px;
	}
	#hex-list.large .hex:nth-last-child(-n+2):before {
		content: '';
	    top: 182px;
	    left: -104px;
	}

	/* HALF SIZE */
	#hex-list.small {
		max-width: 520px;
	}
	#hex-list.small .hex:nth-child(9n+6) {
		margin-left: 54px;
	}
	#hex-list.small .hex:before, #hex-list.small .hex:after {
		width: 100px;
		height: 116px;
		top: 0;
	}
	#hex-list.small .hex:nth-child(9n+1):before {
		content: '';
	    left: -104px;
	}
	#hex-list.small .hex:nth-child(9n+6):before {
		content: '';
	    left: -104px;
	}
	#hex-list.small .hex:nth-child(9n+9):after {
		content: '';
	    left: 104px;
	}
	#hex-list.small .hex:nth-child(9n+5):after {
		content: '';
	    left: 104px;
	}
	#hex-list.small .hex:nth-child(-n+4):after {
		content: '';
	    top: -91px;
	    left: 52px;
	}
	#hex-list.small .hex:nth-last-child(-n+4):before {
		content: '';
	    top: 91px;
	    left: -52px;
	}
}

/* SHOW 4:3:4 */
@media only screen and (min-width: 881px) and (max-width: 1080px) {
	#hex-list.large {
		max-width: 832px;
	}
	#hex-list.large .hex:nth-child(7n+5) {
		margin-left: 108px;
	}
	#hex-list.large .hex:before, #hex-list.large .hex:after {
		width: 200px;
		height: 232px;
		top: 0;
	}
	#hex-list.large .hex:nth-child(7n+1):before {
		content: '';
	    left: -208px;
	}
	#hex-list.large .hex:nth-child(7n+5):before {
		content: '';
	    left: -208px;
	}
	#hex-list.large .hex:nth-child(7n+7):after {
		content: '';
	    left: 208px;
	}
	#hex-list.large .hex:nth-child(7n+4):after {
		content: '';
	    left: 208px;
	}
	#hex-list.large .hex:nth-child(-n+3):after {
		content: '';
	    top: -182px;
	    left: 104px;
	}
	#hex-list.large .hex:nth-last-child(-n+3):before {
		content: '';
	    top: 182px;
	    left: -104px;
	}

	/* HALF SIZE */
	#hex-list.small {
		max-width: 520px;
	}
	#hex-list.small .hex:nth-child(9n+6) {
		margin-left: 54px;
	}
	#hex-list.small .hex:before, #hex-list.small .hex:after {
		width: 100px;
		height: 116px;
		top: 0;
	}
	#hex-list.small .hex:nth-child(9n+1):before {
		content: '';
	    left: -104px;
	}
	#hex-list.small .hex:nth-child(9n+6):before {
		content: '';
	    left: -104px;
	}
	#hex-list.small .hex:nth-child(9n+9):after {
		content: '';
	    left: 104px;
	}
	#hex-list.small .hex:nth-child(9n+5):after {
		content: '';
	    left: 104px;
	}
	#hex-list.small .hex:nth-child(-n+4):after {
		content: '';
	    top: -91px;
	    left: 52px;
	}
	#hex-list.small .hex:nth-last-child(-n+4):before {
		content: '';
	    top: 91px;
	    left: -52px;
	}
}

@media only screen and (min-width: 1081px) and (max-width: 1920px) {
	/* SHOW 5:4:5 */
	#hex-list.large {
		max-width: 1040px;
	}
	#hex-list.large .hex:nth-child(9n+6) {
		margin-left: 108px;
	}
	#hex-list.large .hex:before, #hex-list.large .hex:after {
		width: 200px;
		height: 232px;
		top: 0;
	}
	#hex-list.large .hex:nth-child(9n+1):before {
		content: '';
	    left: -208px;
	}
	#hex-list.large .hex:nth-child(9n+6):before {
		content: '';
	    left: -208px;
	}
	#hex-list.large .hex:nth-child(9n+9):after {
		content: '';
	    left: 208px;
	}
	#hex-list.large .hex:nth-child(9n+5):after {
		content: '';
	    left: 208px;
	}
	#hex-list.large .hex:nth-child(-n+4):after {
		content: '';
	    top: -182px;
	    left: 104px;
	}
	#hex-list.large .hex:nth-last-child(-n+4):before {
		content: '';
	    top: 182px;
	    left: -104px;
	}

	/* HALF SIZE */
	#hex-list.small {
		max-width: 728px;
	}
	#hex-list.small .hex:nth-child(13n+8) {
		margin-left: 54px;
	}
	#hex-list.small .hex:before, #hex-list.small .hex:after {
		width: 100px;
		height: 116px;
		top: 0;
	}
	#hex-list.small .hex:nth-child(13n+1):before {
		content: '';
	    left: -104px;
	}
	#hex-list.small .hex:nth-child(13n+8):before {
		content: '';
	    left: -104px;
	}
	#hex-list.small .hex:nth-child(13n+7):after {
		content: '';
	    left: 104px;
	}
	#hex-list.small .hex:nth-child(13n+13):after {
		content: '';
	    left: 104px;
	}
	#hex-list.small .hex:nth-child(-n+6):after {
		content: '';
	    top: -91px;
	    left: 52px;
	}
	#hex-list.small .hex:nth-last-child(-n+6):before {
		content: '';
	    top: 91px;
	    left: -52px;
	}
}

@media screen and (min-width: 1921px) {
	/* SHOW 5:4:5 */
	#hex-list {
		max-width: 1040px;
	}
	.hex:nth-child(9n+6) {
		margin-left: 108px;
	}
	.hex:before, .hex:after {
		width: 200px;
		height: 232px;
	}
	.hex:nth-child(9n+1):before {
		content: '';
	    top: 0;
	    left: -208px;
	}
	.hex:nth-child(9n+6):before {
		content: '';
	    top: 0;
	    left: -208px;
	}
	.hex:nth-child(9n+9):after {
		content: '';
	    top: 0;
	    left: 208px;
	}
	.hex:nth-child(9n+5):after {
		content: '';
	    top: 0;
	    left: 208px;
	}
	.hex:nth-child(-n+4):after {
		content: '';
	    top: -182px;
	    left: 104px;
	}
	.hex:nth-last-child(-n+4):before {
		content: '';
	    top: 182px;
	    left: -104px;
	}
}
