html,
body {
  scroll-behavior: smooth;
}
.nowrap {
	white-space: nowrap;
}
.mobile-btn {
	display: none;
}

.gateways-wrapper {
	position: relative;
	background: #fff;
}
.gateways-stage {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-position: center center;
	background-size: cover;
	opacity: 1;
	overflow: hidden;
	z-index: 2;
}
.gateways-stage.fixed {
	position: fixed;
}
.gateways-stage:before {
	content: '';
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 1px; 
	height: 100%;
}
.gateways-stage > .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-position: center center;
	background-size: cover;
	opacity: 0;
	transform: scale(1.5);
}
.gateways-stage > .bg.visible {
	opacity: 1;
	transform: scale(1);
	transition: all 0.25s ease;
}
.gateways-stage > .inner {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 5px);
	z-index: 2;
	text-align: center;
	transition: all 0.25s ease;
}
.gateways-stage.detail-visible > .inner {
	margin-left: -25%;
	transition: all 0.25s ease;
	opacity: 0;
}
.gateways-stage .inner-container {
	position: relative;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 0;
	
	width: 100%;
	max-width: none;
	padding: 60px 0;
}
.gateways-stage .inner-container > * {
	position: relative;
	z-index: 2;
}
.gateways-stage h2 {
	font-size: 28px;
	color: #fff;
	line-height: 1.4em;
	text-transform: uppercase;
	width: 90%;
	max-width: 800px;
	margin-bottom: 20px;
	
	margin-left: auto;
	margin-right: auto;
	font-size: 23px;
}
.gateways-stage h2 .highlight {
	color: #ffaf8c;
}
.gateways-stage h2 .sm {
	font-size: 0.8em;
}
.gateways-stage h1 {
	font-size: 100px;
	color: #ffaf8c;
	width: 90%;
	margin: 0 auto 60px auto;
	cursor: pointer;
	
	font-size: 80px;
}
.gateways-stage h1 .pretext {
	color: #fff; 
	font-size: 0.4em;
	text-transform: uppercase;
	letter-spacing: 0.15em;
}
.gateways-stage h1 .title {
	position: relative;
	text-transform: lowercase;
}
.gateways-stage h1 .title:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ffaf8c;
}
.gateways-stage h1 .caret {
	font-size: 0.5em;
	font-weight: normal;
}
.gateways-stage .stage-btns {
	width: 90%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.gateways-stage .btn-gateway {
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding: 7px 25px 5px;
	font-family: 'Banera', serif;
	color: #fff !important;
	text-decoration: none;
	border-radius: 60px;
	white-space: nowrap;
	line-height: 1em;
	font-size: 14px;
	overflow: hidden;
	margin: 0 8px 8px 0;
	transition: all 0.25s ease;
}
.gateways-stage .btn-gateway > * {
	position: relative;
	z-index: 2;
}
.gateways-stage .btn-gateway .title {
	text-transform: uppercase;
}
.gateways-stage .btn-gateway:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0.2;
	transition: all 0.25s ease;
	z-index: 1;
}
.gateways-stage .btn-gateway:hover {
	color: #d56b3c !important;
	transition: all 0.25s ease;
}
.gateways-stage .btn-gateway:hover:before {
	opacity: 1;
	transition: all 0.25s ease;
}
.gateways-stage .btn-gateway.selected:before {
	background: #f47d49;
	opacity: 1;
	transition: all 0.25s ease;
}
.gateways-stage .btn-gateway.selected:hover {
	color: #fff !important;
	transition: all 0.25s ease;
}
.gateways-stage .btn-gateway.selected:hover:before {
	background: #f89569;
	transition: all 0.25s ease;
}
.gateways-stage .inner-container:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: -5px;
	width: calc(100% + 5px);
	height: 100%;
	z-index: 1;
	
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5); 
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);

	animation-name: fadeIn;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#7b0994+0,e40973+100&0.95+0,0.95+100 */
	background: linear-gradient(to right,  rgba(123,9,148,0.95) 0%,rgba(228,9,115,0.95) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */	
}


	

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.gateways-stage .detail {
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	opacity: 0;
	color: #fff;
	z-index: 3;
}
.gateways-stage.detail-visible .detail {
	left: 0;
	opacity: 1;
	transition: all 0.25s ease;
}
.gateways-stage .detail .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.gateways-stage .detail .fg {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 2;
	
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.2+0,0.85+100 */
	/* background: linear-gradient(45deg,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.85) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ 
	
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#4e0026+0,270032+100&0.9+0,0.9+100 */
background: linear-gradient(to bottom,  rgba(78,0,38,0.9) 0%,rgba(39,0,50,0.9) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	
-webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.8); 
box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.8);
}
.gateways-stage .detail .fg .detail-inner {
	position: relative;
	height: 100%;
}
.gateways-stage .detail .fg .detail-inner:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 1px;
	height: 100%;
}
.gateways-stage .detail .fg .detail-inner .txt {
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 5px);
	padding: 160px 0 100px;
}
.gateways-stage .detail .fg .btn-close-detail {
	display: block;
	position: absolute;
	top: 105px;
	right: 5px;
	color: #fff !important;
	text-decoration: none;
	width: 25px;
	height: 25px;
	opacity: 0.8;
	transition: all 0.25s ease;
	
	display: none;
}
	.gateways-stage .detail .fg .btn-close-detail:hover {
		opacity: 1;
		transition: all 0.25s ease;
	}
	.gateways-stage .detail .fg .btn-close-detail:before {
		content: '';
		position: absolute;
		top: calc(50% - 1px);
		left: 0;
		display: block;
		width: 100%;
		height: 1px;
		background: #fff;
		transform: rotate(45deg);
	}
	.gateways-stage .detail .fg .btn-close-detail:after {
		content: '';
		position: absolute;
		top: calc(50% - 1px);
		right: 0;
		display: block;
		width: 100%;
		height: 1px;
		background: #fff;
		transform: rotate(-45deg);
	}
.gateways-stage .detail .fg-arrow {
	position: absolute;
	display: block;
	top: calc(50% - 26px);
	left: calc(50% - 26px);
	width: 50px;
	height: 50px;
	border: 2px solid #fff;
	line-height: 50px;
	border-radius: 100%;
	background: #fff;
	color: #ad087a !important;
	text-align: center;
	text-decoration: none;
	font-size: 30px;
	font-family: 'Banera', serif;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.85); 
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.85);	
	z-index: 9;
	transform: scale(1);
	transition: all 0.25s ease;
}
.gateways-stage .detail .fg-arrow .fa {
	line-height: 46px;
}
	.gateways-stage .detail .fg-arrow:hover {
		transform: scale(1.2);
		transition: all 0.25s ease;
	}

.gateways-stage .detail .txt-inner {
	width: 80%;
	max-width: 650px;
	margin: 0 auto;
}
.gateways-stage .detail .txt-inner a {
	color: #ffaf8c!important;
	font-size: 16px;
}
.gateways-stage .detail h1 {
	font-size: 40px;
	line-height: 1.1em;
	margin: 0 0 20px 0;
}
.gateways-stage .detail h2 {
	margin: 0 0 20px 0;
	max-width: none;
}
.gateways-stage .detail h3 {
	font-size: 20px;
	line-height: 1.2em;
	margin: 0;
	color: #ffaf8c;
}
.gateways-stage .detail .txt-inner .event-cities {
	columns: 2;
}
.gateways-stage .detail .languages {
	columns: 2;
}

.sec-gateway {
	position: relative;
	height: 100vh;
	z-index: 1;
	opacity: 0;
}
.sec-gateway .detail {
	display: none;
}

@media (max-width:1130px) {
	.gateways-stage .inner-container {
		padding: 60px 0;
	}
	.gateways-stage h2 {
		font-size: 22px;
		margin-bottom: 30px;
	}
	.gateways-stage h1 {
		font-size: 60px;
		line-height: 0.65em;
		margin-bottom: 50px;
	}
	.gateways-stage .btn-gateway {
		font-size: 12px;
		padding-left: 12px;
		padding-right: 12px;
	}
}
@media (max-width:800px) {
	.gateways-stage .inner-container {
		padding: 30px 0;
	}
	.gateways-stage .stage-btns {
		display: none;
	}
	.gateways-stage h2 {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.gateways-stage h1 {
		font-size: 40px;
		margin-bottom: 20px;
	}
	.gateways-stage .mobile-btn {
		display: block;
		position: absolute;
        width: 30px;
        height: 30px;
        border-radius: 100%;
        background: #fff;
        color: #a6087d !important;
        text-decoration: none;
        font-size: 14px;
        line-height: 30px;
        text-align: center;
		-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5); 
		box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);	
	}
	.gateways-stage .mobile-btn .fa {
		line-height: 30px;
	}
	.gateways-stage .mobile-btn-up {
        top: -15px;
        left: calc(50% - 15px);
	}
	.gateways-stage .mobile-btn-down {
		bottom: -15px;
		left: calc(50% - 15px);
	}
	
	.gateways-stage .detail .fg-arrow {
		left: calc(10% - 26px);
	}
	.gateways-stage .detail .fg {
		left: 10%;
		width: 90%;
	}
	.gateways-stage .detail .fg .detail-inner .txt {
		padding-top: 100px;
	}
	.gateways-stage .detail h1 {
		font-size: 30px;
	}
}