@charset "utf-8";
/* CSS Document */

/*---------- Google Fonts ----------*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
	--white: #FFFBFD;
	--black: #000000;
	--themeblack: #1D1D1B;
	--yellow: #EDE42B;
	--orange: #D35528;
}

figure {
	margin: 0;
}

body {
	font-family: "Outfit", sans-serif;
	background-color: var(--themeblack);
	color: var(--white);
	font-size: 20px;
	font-weight: 400;
	line-height: 150%;
}

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	text-decoration: none;
	transition: all ease-in-out 300ms;
	-webkit-transition: all ease-in-out 300ms;
	-ms-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	-moz-transition: all ease-in-out 300ms;
}

.container-fluid,
.container {
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	margin-left: -15px;
	margin-right: -15px;
}

.row>* {
	padding-left: 15px;
	padding-right: 15px;
}

p {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	margin: 0;
}

p a {
	text-decoration: none;
	color: inherit;
}

p a:hover {
	text-decoration: none;
	color: #BBEADD;
}

ul li,
ol li {
	font-size: 20px;
	line-height: 150%;
	color: var(--white);
}

ul li a,
ol li a {
	text-decoration: none;
	color: inherit;
}

ul li a:hover,
ol li a:hover {
	text-decoration: none;
	color: var(--yellow);
}

h1 {
	font-size: 74px;
	line-height: 112px;
	font-weight: 600;
}

h2 {
	font-size: 74px;
	line-height: 88px;
	font-weight: 500;
}

h3 {
	font-size: 56px;
	line-height: 84px;
	font-weight: 600;
}

h4 {
	font-size: 48px;
	line-height: 72px;
	font-weight: 600;
}

h5 {
	font-size: 32px;
	line-height: 48px;
	font-weight: 500;
}

h6 {
	font-size: 21px;
	line-height: 40px;
	font-weight: 400;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.form-control:focus {
	box-shadow: none;
	border-color: transparent;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

textarea {
	resize: none;
}

/* common style */
.block-title {
	color: var(--yellow);
	font-size: 70px;
	font-weight: 400;
	line-height: 114%;
}

.block-title * {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	margin: 0;
}

.section-title {
	color: var(--yellow);
	font-size: 50px;
	font-weight: 400;
	line-height: 120%;
}

.section-title * {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0;
}

.sub-title {
	color: var(--white);
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 155%;
	letter-spacing: 7.2px;
}

.sub-title * {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	margin: 0;
}

/* common style */


/* buttons */
.common-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 5px 5px 5px 12px;
	color: var(--white);
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: 0.2px;
	border-radius: 30px;
	background-image: linear-gradient(90deg, #ECD12A 0%, #E9862A 30%, #E6432B 70%, #ECD12A 100%);
	background-size: 130% 100%;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}

.common-btn span {
	margin-left: 10px;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	background: #D35528;
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.40) inset;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transition: all ease-in-out 300ms;
	-webkit-transition: all ease-in-out 300ms;
	-ms-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	-moz-transition: all ease-in-out 300ms;
}

.common-btn:hover {
	background-position: 200% center;
}

.common-btn:hover span {
	color: var(--yellow);
	transform: translateX(0px) scale(0.9);
	-webkit-transform: translateX(0px) scale(0.9);
	-moz-transform: translateX(0px) scale(0.9);
	-ms-transform: translateX(0px) scale(0.9);
	-o-transform: translateX(0px) scale(0.9);
}

/* buttons */


/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/
.navbar-brand {
	width: 100%;
	max-width: 199px;
	display: inline-block;
	margin: 0;
	padding: 0;
}

.header-content {
	padding: 20px 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/*==================================================================*/
/*========== Header End ==========*/
/*==================================================================*/

/* banner */
.banner-section {
	padding: 50px 0 40px 0;
	overflow: hidden;
}

.banner-content {
	position: relative;
}

.banner-sky-bg {
	display: block !important;
	position: absolute;
	left: 50%;
	transform: translateX(-50%) !important;
	-webkit-transform: translateX(-50%) !important;
	-moz-transform: translateX(-50%) !important;
	-ms-transform: translateX(-50%) !important;
	-o-transform: translateX(-50%) !important;
}

.sun-block {
	position: relative;
	display: flex;
	justify-content: center;
}

.sun-block img {
	border: 10px solid var(--themeblack);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.banner-info {
	position: relative;
	text-align: center;
	margin: 50px 0 0;
}

.banner-detail * {
	color: var(--white);
	text-align: center;
	font-size: 20px;
	line-height: 150%;
}

.banner-detail {
	width: 100%;
	max-width: 100%;
}

.banner-info .common-btn-block {
	margin: 20px 0 0;
}

.banner-info .common-btn-block .common-btn{
	text-transform: none !important;
	font-weight: 400;
}
/* banner */

/* celera section */
.celera-section {
	padding: 54px 0 0;
	position: relative;
	min-height: 1000px;
	overflow: hidden;
}

.celera-sun-logo{
	width: 100%;
	max-width: 144px;
	display: block;
	margin: 0 auto;
}

.celera-big-logo {
	width: 292px;
	max-width: 292px;
}

.celera-sky-bg-image {
	position: absolute;
	left: 50%;
	transform: translateX(-50%) !important;
	-webkit-transform: translateX(-50%) !important;
	-moz-transform: translateX(-50%) !important;
	-ms-transform: translateX(-50%) !important;
	-o-transform: translateX(-50%) !important;
}

.celera-content {
	position: relative;
	text-align: center;
}

.celera-top-block {
	padding-top: 25px;
}

.celera-big-logo {
	display: inline-block;
	margin: 20px 0 0;
}

.cloud-bottom-shape {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) !important;
	-webkit-transform: translateX(-50%) !important;
	-moz-transform: translateX(-50%) !important;
	-ms-transform: translateX(-50%) !important;
	-o-transform: translateX(-50%) !important;
}

.energy-drink {
	display: block !important;
	position: absolute;
	z-index: 9;
	bottom: 0;
	left: calc(-137px + 50vw);
	transform: translateY(100%);
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
}

.celera-center-block {
	display: flex;
	justify-content: space-between;
}

.celera-top-block {
	text-align: center;
}

.celera-top-block .sub-title {
	display: block;
	margin: 25px 0 0;
}

.celera-center-block {
	margin: 130px 0 0;
}

.celera-center-child-block {
	text-align: left;
}

.celera-center-child-block .common-detail {
	margin: 20px 0 0;
}

.celera-center-child-block .common-btn-block {
	margin: 30px 0 0;
}

.celera-center-child-block .section-title *{
	text-transform: none;
}

.celera-center-block>*:last-child {
	text-align: right;
}

.celera-circle-block {
	margin: 48px 0 0 -180px;
	position: relative;
	overflow: visible;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: rgba(255, 251, 253, 0.05);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.circle-svg {
	width: 100%;
	height: 100%;
	animation: rotate 20s linear infinite;
	-webkit-animation: rotate 20s linear infinite;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.celera-small-circle {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 85px;
	height: 85px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: rgba(255, 251, 253, 0.02);
	transform: translate(-50%, -50%);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.celera-small-circle img{
	max-width: 75%;
}

.celera-circle-block text{
	font-size: 17px;
	letter-spacing: 2px;
}
/* celera section */

/* partner-section */
.partner-section {
	position: relative;
	padding: 55px 0 0;
	overflow: hidden;
	min-height: 608px;
}

.partner-bg-sky {
	position: absolute;
	left: 50%;
	transform: translate(-50% , 4.5%) !important;
	-webkit-transform: translate(-50% , 4.5%) !important;
	-moz-transform: translate(-50% , 4.5%) !important;
	-ms-transform: translate(-50% , 4.5%) !important;
	-o-transform: translate(-50% , 4.5%) !important;
}

.partner-block {
	position: relative;
	margin: 106px 0 0;
}

.partner-wrp {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.partner-wrp-right {
	margin-left: auto;
	margin-bottom: 7px;
}

.partner-wrp .common-detail {
	margin: 15px 0 0;
}

.search-box {
	display: flex;
	align-items: center;
	background-color: transparent;
	width: 380px;
	margin-left: auto;
	padding: 14px 20px 14px 25px;
	background: rgba(255, 251, 253, 0.02);
	border: 1px solid rgba(255, 251, 253, 0.20);
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.search-box .form-control {
	background: none;
	border: none;
	color: var(--white);
	padding: 0 10px 0 0;
}

.search-box .form-control::placeholder {
	color: var(--white);
	font-size: 20px;
	font-weight: 400;
	line-height: 150%;
}

.search-icon {
	padding-left: 10px;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
}

.search-icon figure {
	display: flex;
	cursor: pointer;
}

.form-control:focus {
	box-shadow: none;
}

.partner-member-block {
	width: 100%;
	max-width: 1420px;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	padding: 130px 0 0;
	margin: 0 auto;
}

.partnership-member-item {
	padding: 10px;
	display: block;
	cursor: pointer;
	width: 236px;
	height: 119px;
	background: none;
	filter: drop-shadow(0px 8px 19px rgba(0, 0, 0, 0.10)) drop-shadow(0px 34px 34px rgba(0, 0, 0, 0.09)) drop-shadow(0px 76px 46px rgba(0, 0, 0, 0.05)) drop-shadow(0px 135px 54px rgba(0, 0, 0, 0.01)) drop-shadow(0px 211px 59px rgba(0, 0, 0, 0.00));
	transition: 0.3s;
	-webkit-transition: 0.2s !important;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.partnership-member-item:hover {
	background: linear-gradient(90deg, #ECD12A 0%, #E9862A 50%, #E6432B 100%);
}

.partnership-member-item figure {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.partnership-member-item:hover figure {
	display: none;
}

.partnership-member-item figure img {
	max-height: 100%;
}

.partner-memeber-detail {
	display: none;
	text-align: center;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	width: 100%;
}

.partner-memeber-detail * {
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	line-height: 155%;
}

.partner-memeber-detail>*:not(:last-child) {
	margin-bottom: 5px;
}

.partnership-member-item:hover .partner-memeber-detail {
	display: flex;
}

.joining-info {
	margin: 351px 0 0;
	text-align: center;
}

.joining-info * {
	color: var(--white);
	font-size: 20px;
	font-weight: 300;
	line-height: 150%;
}

.joining-info a {
	position: relative;
	display: inline-block;
	background: linear-gradient(90deg, #E86F2B 0%, #E6432B 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-decoration: none;
}

.joining-info a:hover {
	color: var(--yellow);
	background: none;
	background-clip: unset;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: var(--yellow);
}

.joining-info a::after {
	position: absolute;
	content: "";
	background: linear-gradient(90deg, #E86F2B 0%, #E6432B 100%);
	height: 1px;
	left: 0;
	right: 0;
	bottom: 3px;
}

.joining-info a:hover::after {
	background: var(--yellow);
}

.common-block-part {
	width: 100%;
	max-width: 653px;
	position: relative;
	margin: 100px 0 0;
}

.common-block-part .common-detail {
	margin: 15px 0 0;
}

/* partner-section */

/* map */
.map-section {
	padding: 95px 0 100px;
}

.map-content{
	position: relative;
}

.map-content .section-title *{
	text-transform: none;
}

.map-coming-soon-section .section-title{
	font-size: 70px;
	position: absolute;
	top: 50px;
	z-index: 9;
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}

.map-block {
	position: relative;
}

.map-coming-soon-section .map-block{
	filter: blur(5px);
	-webkit-filter: blur(5px);
}

.map-coming-soon-section .map-block::after{
	position: absolute;
	content: "";
	background: rgba(0, 0, 0, 0.01);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

.map-location-point {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.map-location-point a {
	position: relative;
	z-index: 9999;
	text-decoration: none !important;
	text-align: center;
	display: inline-flex;
	align-items: center;
	flex-direction: column;
	color: var(--white);
	font-size: 20px;
	font-weight: 700;
	line-height: 150%;
}

.map-location-point a span {
	padding: 0;
	display: inline-block;
	background: none;
	transition: all 0.3s ease;
	will-change: background;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.map-location-point a>* {
	padding-bottom: 10px;
}

.map-location-point a.location-link img {
	content: url("../images/location.svg");
	transition: 0.3s ease;
}

.map-location-point a.location-link:hover img {
	content: url("../images/location-hover-icon.svg") !important;
}

.map-location-point a:hover span {
	background: linear-gradient(90deg, #ECD12A 0%, #E9862A 50%, #E6432B 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent !important;
}

.map-location-point-1 {
	transform: translate(-210%, 5%);
	-webkit-transform: translate(-210%, 5%);
	-moz-transform: translate(-210%, 5%);
	-ms-transform: translate(-210%, 5%);
	-o-transform: translate(-210%, 5%);
}

.map-location-point-2 {
	transform: translate(-50%, -225%);
	-webkit-transform: translate(-50%, -225%);
	-moz-transform: translate(-50%, -225%);
	-ms-transform: translate(-50%, -225%);
	-o-transform: translate(-50%, -225%);
}

.map-location-point-3 a {
	flex-direction: row;
}

.map-location-point-3 a>* {
	padding-bottom: 0;
	padding-right: 10px;
}

.map-location-point-3 {
	transform: translate(80%, -360%);
	-webkit-transform: translate(80%, -360%);
	-moz-transform: translate(80%, -360%);
	-ms-transform: translate(80%, -360%);
	-o-transform: translate(80%, -360%);
}

.map-location-point-4 a {
	flex-direction: row-reverse;
}

.map-location-point-4 a>* {
	padding-bottom: 0;
	padding-left: 10px;
}

.map-location-point-4 {
	z-index: 99;
	transform: translate(-10%, -80%);
	-webkit-transform: translate(-10%, -80%);
	-moz-transform: translate(-10%, -80%);
	-ms-transform: translate(-10%, -80%);
	-o-transform: translate(-10%, -80%);
}

.map-location-point-5 a {
	flex-direction: row;
}

.map-location-point-5 a>* {
	padding-bottom: 0;
	padding-right: 10px;
}

.map-location-point-5 {
	transform: translate(100%, -140%);
	-webkit-transform: translate(100%, -140%);
	-moz-transform: translate(100%, -140%);
	-ms-transform: translate(100%, -140%);
	-o-transform: translate(100%, -140%);
}

.map-location-point-6 a {
	flex-direction: row;
}

.map-location-point-6 a>* {
	padding-bottom: 0;
	padding-right: 10px;
}

.map-location-point-6 {
	z-index: 99;
	transform: translate(125%, -40%);
	-webkit-transform: translate(125%, -40%);
	-moz-transform: translate(125%, -40%);
	-ms-transform: translate(125%, -40%);
	-o-transform: translate(125%, -40%);
}

.map-location-point-7 {
	transform: translate(92%, 0%);
	-webkit-transform: translate(92%, 0%);
	-moz-transform: translate(92%, 0%);
	-ms-transform: translate(92%, 0%);
	-o-transform: translate(92%, 0%);
}

.map-location-point a span {
	display: inline-block;
}

.map-location-point-8 {
	transform: translate(12%, 185%);
	-webkit-transform: translate(12%, 185%);
	-moz-transform: translate(12%, 185%);
	-ms-transform: translate(12%, 185%);
	-o-transform: translate(12%, 185%);
}

.map-location-point-9 {
	transform: translate(110%, 355%);
	-webkit-transform: translate(110%, 355%);
	-moz-transform: translate(110%, 355%);
	-ms-transform: translate(110%, 355%);
	-o-transform: translate(110%, 355%);
}

.map-location-point-9 a {
	flex-direction: row;
}

.map-location-point-9 a>* {
	padding-bottom: 0;
	padding-right: 10px;
}

.map-location-point-10 {
	transform: translate(60%, 295%);
	-webkit-transform: translate(60%, 295%);
	-moz-transform: translate(60%, 295%);
	-ms-transform: translate(60%, 295%);
	-o-transform: translate(60%, 295%);
}

.map-location-point-11 {
	transform: translate(145%, 760%);
	-webkit-transform: translate(145%, 760%);
	-moz-transform: translate(145%, 760%);
	-ms-transform: translate(145%, 760%);
	-o-transform: translate(145%, 760%);
}

.map-location-point-11 a {
	flex-direction: row;
}

.map-location-point-11 a>* {
	padding-bottom: 0;
	padding-right: 10px;
}

/* map */

/* error 404 */
.error-404-content {
	padding: 100px 0;
	text-align: center;
}

.error-404-content>*:not(:last-child) {
	margin-bottom: 25px;
}

.error-404-title * {
	color: var(--yellow);
	font-size: 100px;
	font-weight: 400;
	line-height: 110%;
	margin: 0;
}

/* error 404 */

/*==================================================================*/
/*========== New Class Add Start ==========*/
/*==================================================================*/

/*==================================================================*/
/*========== New Class Add End ==========*/
/*==================================================================*/


/*==================================================================*/
/*========== Footer Start ==========*/
/*==================================================================*/
.footer {
	position: relative;
	margin: -80px 0 0;
	overflow: hidden;
}

.partner-footer {
	overflow: hidden;
	margin: 0;
	padding: 180px 0 50px;
	min-height: 265px;
}

.partner-footer .footer-content {
	top: 25px;
}

.partner-footer-bottom-shape {
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%) !important;
	-webkit-transform: translatex(-50%) !important;
	-moz-transform: translatex(-50%) !important;
	-ms-transform: translatex(-50%) !important;
	-o-transform: translatex(-50%) !important;
}

.footer-content {
	position: relative;
	z-index: 9;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.social-media-list {
	display: flex;
	align-items: center;
}

.social-media-list>*:not(:last-child) {
	margin-right: 20px;
}

.social-media-title {
	color: var(--yellow);
	font-size: 20px;
	font-weight: 400;
	line-height: 155%;
}

.social-media-list ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.social-media-list ul li:not(:last-child) {
	margin-right: 15px;
}

.social-media-list ul li a {
	display: flex;
	align-items: center;
	font-size: 30px;
	color: var(--yellow);
}

.social-media-list ul li a svg{
	width: 20px;
}

.social-media-list ul li a svg path{
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.footer-copyright * {
	font-size: 20px;
	font-weight: 400;
	line-height: 155%;
	color: var(--yellow);
}

.social-media-list ul li a:hover {
	color: var(--orange);
}

.social-media-list ul li a:hover span{
	color: var(--orange);
}

.social-media-list ul li a:hover svg path{
	stroke: var(--orange);
	fill: var(--orange);
}

.social-media-list ul li a > *:not(:last-child){
	margin-right: 20px;
}

.social-media-list ul li a span{
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}
/*==================================================================*/
/*========== Footer End ==========*/
/*==================================================================*/