/* Color Tokens */
.primary {
	color: #FF0009; /* $primary */
}

.secondary {
	color: #D7D7D7; /* $secondary */
}

.tertiary {
	color: #FFF212; /* $tertiary */
}

.light {
	color: #FEFEFE; /* $light */
}

.dark {
	color: #201E1E; /* $dark */
}
/* End Color Tokens */

/* Corporate Banner Area */
.banner-area {
	position: relative;
	background-image: url(../images/banner-areaBG.jpg);
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	padding: 0;
	overflow: hidden;
}

.banner-area:before {
	content: '';
	width: 80%;
	height: 130%;
	background-image: url(../images/Campaign2_2023.png);
	position: absolute;
	background-size: contain;
	background-position: bottom left;
	background-repeat: no-repeat;
	/* top: -70px; */
	left: -2%;
	z-index: 2;
}

.banner-area:after {
	content: '';
	width: 40%;
	height: 100%;
	background-image: url(../images/Campaign_2023.png);
	position: absolute;
	background-size: contain;
	background-position: bottom right;
	background-repeat: no-repeat;
	right: 0;
	z-index: 2;
	bottom: -2%;
}

.banner-area .info {
	padding: 4.5em 2%;
	opacity: 1;
	transition: opacity 1s ease 3.25s;
	position: relative;
	z-index: 2;
	display: table;
	margin: auto;
	width: auto;
	text-align: center;
	box-shadow: 0 0 4em rgba(255,255,255,0.7);
	background-image: radial-gradient(ellipse at 50% 50%,rgba(255,255,255,0.83) 0%,rgba(255,255,255,0.2) 100%);
}

.banner-area .info .info-tagline {
	text-align: left;
}

.banner-area.sp .info .info-tagline {
	display: table;
	margin: auto;
}

.ready .banner-area .info {
	opacity: 1;
}

.banner-area .info .info-tagline > strong {
	font-size: 5em;
	position: relative;
	-webkit-transform: translateY(.5em);
	-ms-transform: translateY(.5em);
	transform: translateY(.5em);
	transition: transform 1s ease 3.25s;
	text-transform: uppercase;
	font-weight: 900;
	line-height: 1;
}

.banner-area .info > em {
	text-align: center;
	margin: auto;
	font-style: normal;
	color: #939393;
	font-size: 2em;
}

.banner-area .info p {
	margin: .5em auto;
	font-size: .9em;
	font-weight: 600;
}

.banner-area .info .btn {
	position: relative;
	transition: transform 1s ease 3.25s, background-color .5s ease 0s;
	margin-top: 1em;
}

.ready .banner-area .info .btn {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.banner-area .open-animation {
	background-color: #FEFEFE; /* $light */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity 1s ease 3s;
	border-bottom: solid 1px #CECECE; /* darken($light,15%) */
}

.ready .banner-area .open-animation {
	opacity: 0;
}

.banner-area .open-animation img {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-5em,-50%) scale(.1,.1);
	-ms-transform: translate(-5em,-50%) scale(.1,.1);
	transform: translate(-5em,-50%) scale(.1,.1);
	opacity: 0;
	transition: opacity 1s ease 0s, transform 2.5s ease 0s;
	display: block;
}

.ready .banner-area .open-animation img {
	-webkit-transform: scale(1,1) translate(-50%,-50%);
	-ms-transform: scale(1,1) translate(-50%,-50%);
	transform: scale(1,1) translate(-50%,-50%);
	opacity: 1;
}

.banner-area .info .sub-title {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.banner-area .info .sub-title em {
	text-transform: uppercase;
	font-style: normal;
	font-size: 3.333em;
	line-height: 1;
	text-align: right;
}

.banner-area .info .sub-title em span {
	display: block;
}

.banner-area .info .sub-title strong {
	color: #FF0009; /* $primary */
	font-size: 6.556em;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.banner-area .info .info-tagline > strong:after {
	content: '';
	width: 40%;
	height: 3px;
	background-color: #FFF212;
	position: absolute;
	bottom: .21em;
}
/* End Corporate Banner Area */

/* Money */
.dollar-container {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 1;
	left: 0;
}

.dollar-container.right {
	float: none;
}

.dollar-container.left {
	float: none;
}

.dollar-container > div {
	position: absolute;
	width: 100px;
	height: 100px;
	-webkit-animation-iteration-count: infinite, infinite;
	animation-iteration-count: infinite, infinite;
	-webkit-animation-direction: normal, normal;
	animation-direction: normal, normal;
	-webkit-animation-timing-function: linear, ease-in;
	animation-timing-function: linear, ease-in;
}

.dollar-container > div > img {
	position: absolute;
	width: 100px;
	height: 100px;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-transform-origin: 50% -100%;
	-ms-transform-origin: 50% -100%;
	transform-origin: 50% -100%;
}

@-webkit-keyframes fade {
	0% { opacity: 1; }
	95% { opacity: 1; }
	100% { opacity: 0; }
}

@-moz-keyframes fade {
	0% { opacity: 1; }
	95% { opacity: 1; }
	100% { opacity: 0; }
}

@-o-keyframes fade {
	0% { opacity: 1; }
	95% { opacity: 1; }
	100% { opacity: 0; }
}

@keyframes fade {
	0% { opacity: 1; }
	95% { opacity: 1; }
	100% { opacity: 0; }
}

@-webkit-keyframes drop {
	0% { -webkit-transform: translate(0px, -50px); }
	100% { -webkit-transform: translate(0px, 650px); }
}

@-moz-keyframes drop {
	0% { transform: translate(0px, -50px); }
	100% { transform: translate(0px, 650px); }
}

@-o-keyframes drop {
	0% { transform: translate(0px, -50px); }
	100% { transform: translate(0px, 650px); }
}

@keyframes drop {
	0% { transform: translate(0px, -50px); }
	100% { transform: translate(0px, 650px); }
}

@-webkit-keyframes clockwiseSpin {
	0% { -webkit-transform: rotate(-50deg); }
	100% { -webkit-transform: rotate(50deg); }
}

@-moz-keyframes clockwiseSpin {
	0% { transform: rotate(-50deg); }
	100% { transform: rotate(50deg); }
}

@-o-keyframes clockwiseSpin {
	0% { transform: rotate(-50deg); }
	100% { transform: rotate(50deg); }
}

@keyframes clockwiseSpin {
	0% { transform: rotate(-50deg); }
	100% { transform: rotate(50deg); }
}

@-webkit-keyframes counterclockwiseSpinAndFlip {
	0% { -webkit-transform: scale(-1, 1) rotate(50deg); }
	100% { -webkit-transform: scale(-1, 1) rotate(-50deg); }
}

@-moz-keyframes counterclockwiseSpinAndFlip {
	0% { transform: scale(-1, 1) rotate(50deg); }
	100% { transform: scale(-1, 1) rotate(-50deg); }
}

@-o-keyframes counterclockwiseSpinAndFlip {
	0% { transform: scale(-1, 1) rotate(50deg); }
	100% { transform: scale(-1, 1) rotate(-50deg); }
}

@keyframes counterclockwiseSpinAndFlip {
	0% { transform: scale(-1, 1) rotate(50deg); }
	100% { transform: scale(-1, 1) rotate(-50deg); }
}
/* End Money */

/* 1300px Responsive */
@media screen and (max-width:1300px) {
	.banner-area .info {
		padding: 2em 2%;
	}
}
/* End 1300px Responsive */

/* 1440px Responsive */
@media screen and (max-width:1440px) {
	.banner-area:before {
		/* top: -70px; */
		left: -6%;
		z-index: 2;
	}
	.banner-area:after {
		right: 0;
		z-index: 2;
		/* bottom: -2%; */
	}
}
/* End 1440px Responsive */

/* 1360px Responsive */
@media screen and (max-width:1360px) {
	.banner-area:before {
		display: none;
	}
	.banner-area:after {
		display: none;
	}
}
/* End 1360px Responsive */

/* 800px Responsive */
@media screen and (max-width:800px) {
}
/* End 800px Responsive */

/* 650px Responsive */
@media screen and (max-width:650px) {
	.banner-area .info .info-tagline {
		text-align: center;
	}

	.banner-area .info p {
		display: none;
	}

	.banner-area .info .info-tagline > strong:after {
		display: none;
	}

	.banner-area .info .btn {
		margin-top: .5em;
	}

	.banner-area .info > em {
		display: block;
		font-size: 1.5em;
	}

	.banner-area .info .sub-title {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		font-size: .7em;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.banner-area .info .sub-title em {
		font-size: 2.333em;
	}

	.banner-area .info {
	}

	.banner-area .info .info-tagline > strong {
		font-size: 4em;
	}
}
/* End 650px Responsive */

/* 550px Responsive */
@media screen and (max-width:550px) {
	.banner-area .info p {
		display: none;
	}
}
/* End 550px Responsive */

/* 500px Responsive */
@media screen and (max-width:500px) {
	.banner-area .info {
	}
}
/* End 500px Responsive */

/* 400px Responsive */
@media screen and (max-width:400px) {
	.banner-area .info .btn {
		padding: .5em 2em;
	}
}
/* End 400px Responsive */
