/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/*======================
   02. Basic css
========================*/
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.5;
	font-family: 'Roboto', sans-serif;
	background-color: #fff;
	color: #000;
	font-weight: 400;
	font-size: 1.8rem;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}

/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 6.0rem;
	height: 6.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 6.0rem;
	height: 6.0rem;
	border-radius: 100%;
	background: #000;
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	z-index: 999;
	width: 3.0rem;
	margin-left: auto;
}
.hamburger-menu span {
	background: #847631;
	width: 100%;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 0.5rem;
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(0.82rem) rotate(135deg);
	-ms-transform: translateY(0.82rem) rotate(135deg);
	transform: translateY(0.82rem) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-0.82rem) rotate(-135deg);
	-ms-transform: translateY(-0.82rem) rotate(-135deg);
	transform: translateY(-0.82rem) rotate(-135deg);
}
header {
	position: sticky;
	top: 0;
	z-index: 1024;
	padding: 1.5rem 0;
	background-color: #fff;
	border-bottom: 0.1rem solid #ebebeb;
}
.sm_logo{
	display: block;
	width: 5rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
#menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

#menu li {
	padding: 0 2.5rem;
}
#menu li a {
	font-size: 1.7rem;
	text-transform: uppercase;
	color: #000000;
	padding: 0;
	display: inline-block;
	font-weight: 500;
}
#menu li a i{
	font-size: 2.5rem;
}
#menu li:last-child{
	padding-right: 0;
}
#menu>li>a.active,
#menu>li>a:hover {
	color: #74777a;
}
/*header top*/
.top_header{
	background-color: #fff;
	padding: 1.2rem 0;
}
.top_header .logo {
	display: inline-flex;
	align-items: center;
	font-size: 3rem;
	font-weight: 700;
	color: #000;
	column-gap: 1.2rem;
}
.top_header .logo img{
	width: 5rem;
}
/*banner area*/
.banner_area{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	min-height: 70rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	z-index: 1;
	color: #fff;
	padding: 6rem 0;
}
.banner_area::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #000;
	opacity: 0.4;
	mix-blend-mode: multiply;
}
.banner_content{
	max-width: 58rem;
}
.banner_area h4{
	text-transform: uppercase;
	font-size: 1.4rem;
	letter-spacing: 0.1rem;
	margin-bottom: 1.2rem;
	font-weight: 400;
}
.banner_area h1{
	font-weight: 700;
	font-size: 5.5rem;
	line-height: 1.1;
	padding-top: 1.35rem;
	padding-bottom: 1.35rem;
}
.banner_area ul li{
	position: relative;
	padding-left: 6.5rem;
	margin-top: 2.5rem;
}
.banner_area ul li h5{
	font-size: 1.3rem;
	margin-bottom: 0.2rem;
	text-transform: uppercase;
	font-weight: 400;
}
.banner_area ul li p{
	font-weight: 500;
   font-size: 1.6rem;
}
.banner_area ul li img{
	position: absolute;
	left: 0;
	top: 0;
	width: 4rem;
}
.button{
	display: inline-block;
	font-weight: 700;
	color: #fff;
	background-color: #000;
	text-align: center;
	padding: 1.1rem 3rem;
	text-transform: uppercase;
	letter-spacing: 0.08rem;
	font-size: 1.6rem;
	border: 0.2rem solid transparent;
}
.button:hover{
	background-color: #ebebeb;
	color: #000;
	border: 0.2rem solid #000;
}

/*intro area*/
.intro_area{
	padding: 4rem 0 9rem;
}
.intro_area h2{
	font-size: 4.4rem;
	font-weight: 700;
	text-align: center;
}
.intro_area img{
	margin-top: 5rem;
	margin-bottom: 1.5rem;
}
.intro_content{
	max-width: 70rem;
	margin-left: auto;
	margin-right: auto;
}
.intro_content p:not(:first-child){
	margin-top: 2rem;
	text-align: justify;
}
.intro_content p span{
	font-size: 1.8rem;
	color: #74777a;
}
/*detailed_area*/
.detailed_area{
	text-align: center;
	background-color: rgb(247,247,247,1.0);
	padding: 10rem 0;
}
.detailed_area h2{
	font-size: 4.4rem;
	font-weight: 700;
	margin-bottom: 3rem;
}
.detailed_area p{
	max-width: 85rem;
	margin: 0 auto;
}
.detailed_area h3{
	font-size: 2.2rem;
	font-weight: 600;
	text-transform: uppercase;
	margin: 2rem 0;
}
.detailed_area .fa-sign-in{
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}
/*prize_area*/
.prize_area{
	padding: 5rem 0;
}
.title h2{
	font-size: 4.4rem;
	font-weight: 700;
	position: relative;
	text-align: center;
}
/*.title h2::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -1rem;
	width: 8.5rem;
	height: 0.6rem;
	background-color: #fff000;
}*/
.prize_box {
	text-align: center;
	padding: 3.5rem 2rem;
	height: 100%;
	border: 0.1rem solid #e0dfdf;
	box-shadow: 0 0 0.8rem #e0dfdf;
}
.prize_box h3{
	font-size: 1.4rem;
	line-height: 1;
	text-transform: uppercase;
	margin-top: 0.4rem;
	margin-bottom: 1.5rem;
}
.prize_box h4{
	font-size: 1.4rem;
	line-height: 1;
	text-transform: uppercase;
	margin-top: 0.4rem;
	margin-bottom: 1.5rem;
}
.prize_box h4 a{
	color: #337ab7;
}
.prize_box h5 a{
	color: #337ab7;
	text-transform: uppercase;
}
.prize_box h5{
	font-size: 1.8rem;
	line-height: 1.5;
	color: #74777a;
}
.prize_box h2{
	font-size: 3.2rem;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.prize_box a:hover{
	text-decoration: underline;
}
.prize_box p{
	color: #74777a;
}
.prize_heig{
	min-height: 7rem;
}
/*launched_area*/
.launched_area{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding-top: 8rem;
    padding-right: 0px;
    padding-bottom: 1px;
    padding-left: 0px;
}
.launched_area h2 {
   font-size: 4.4rem;
   line-height: 1.20;
   margin-bottom: 4rem;
   max-width: 60rem;
   margin-left: auto;
   margin-right: auto;
   font-weight: 700;
}
.check_box input {
   display: none;
}
.check_box label {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	cursor: pointer;
	line-height: 1.1;
	color: #74777a;
	text-transform: uppercase;
}
.check_box label a{
	color: #000;
	margin-left: 1rem;
}
.check_box label a:hover{
	text-decoration: underline;
}
.check_box label span {
	width: 1.8rem;
	height: 1.8rem;
	border: 0.2rem solid #000000;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 1rem;
	position: relative;
	display: block;
}
.check_box label span::before {
	position: absolute;
	content: '';
	left: 50%;
	top: 50%;
	height: 1.5rem;
	width: 1.5rem;
	background-color: #fff;
	-webkit-transform: translate(-48%, -48%);
	    -ms-transform: translate(-48%, -48%);
	        transform: translate(-48%, -48%);
	background-repeat: no-repeat;
	background-size: 1.5rem;
	background-position: center center;
}
.check_box input:checked + label span::before {
   background-image: url(../img/checkmark.png);
   background-color: transparent;
}
.input_wap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.input_wap input {
	border: 0.2rem solid #000;
	font-size: 1.8rem;
	color: #000;
	background-color: transparent;
	padding: 1.4rem 4rem 1rem 2rem;
	width: 34rem;
}
.input_wap .button {
	outline: none;
	border: none;
	border-radius: 0;
	padding: 1.5rem 5rem;
}
.input_wap .button:hover{
	background-color: #000;
	color: #fff;
}
.com_term{
	padding: 4rem 0;
}
.com_term a{
	color: #000;
	font-size: 1.6rem;
	text-align: center;
	text-transform: uppercase;
	line-height: 1;
	font-weight: 600;
}
.com_term a:hover{
	text-decoration: underline;
}
/*person_cont*/
.person_cont{
	text-align: center;
	margin-top: 3rem;
}
.person_cont h2{
	font-size: 2rem;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.40;
	margin-bottom: 1rem;
}
.person_cont h3,
.person_cont h4{
	font-size: 1.8rem;
	line-height: 1.20;
	margin-bottom: 1rem;
	color: #74777a;
	text-transform: inherit;
}
.person_cont h4{
	margin-bottom: 0;
}
.person_img{
	text-align: center;
}
.person_img img{
	width: 20rem;
	height: 20rem;
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
}
/*fees-area*/
.fees-area{
	padding: 5rem 0;
}
.fees-area table{
	width: 100%;
	margin-top: 5rem;
}
.fees-area table h2{
	font-size: 1.8rem;
	color: #000;
	line-height: 1.30;
	font-weight: 400;
}
.fees-area table h3{
	font-size: 1.8rem;
	font-weight: 700;
}
.fees-area table td{
	padding: 1.5rem;
	width: 33.33%;
}
.fees-area table tr:nth-child(even){
	background-color: rgb(247,247,247,1.0);
}
.industry_partnes p{
	padding-top: 4rem;
	max-width: 85rem;
   margin: 0 auto;
   text-align: center;
}
.fees-area h6{
	font-size: 1.9rem;
	color: #74777a;
}
/*footer*/
footer{
	background-color: #000;
	color: #fff;
	padding: 5rem 0;
}
.foot_wapp{
	text-align: center;
}
.foot_wapp>a img{
	width: 20rem;
	margin-bottom: 3rem;
}
.foot_wapp p{
	color: #74777a;
	font-size: 1.8rem;
	/* text-transform: uppercase; */
	margin-bottom: 2rem;
}
.foot_wapp a{
	color: #fff;
	font-size: 1.8rem;
	text-transform: uppercase;
}
.foot_wapp a:hover{
	text-decoration: underline;
}
.social_icon{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 2rem;
}
.social_icon a{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 4.5rem;
	height: 4.5rem;
	border: 0.2rem solid #fff;
	border-radius: 50%;
	font-size: 2rem;
}
.social_icon a:not(:last-child){
	margin-right: 1.5rem;
}
.social_icon a:hover{
	background-color: #fff;
	color: #000;
	text-decoration: none;
}
.indu_img{
	display: block;
	overflow: hidden;
}
.indu_img img:hover{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.accordion_area{
	background-color: rgb(247,247,247,1.0);
	padding: 5rem 0;
}
.accordion_area .button {
	font-size: 2.0rem;
	background-color: #FFFFFF;
    color: #000000;
	width: 100%;
	text-align: left;
	border: none;
	padding: 1rem 2rem;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	position: relative;
	font-weight: 600;
	outline: none;
	position: relative;
	text-transform: inherit;
}
.accordion_area .button::before {
	position: absolute;
	content: '\f067';
	font-family: "Font Awesome 5 Pro";
	right: 2rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-size: 1.8rem;
	color: #516074;
	font-weight: 400;
}
.accordion_area .button[aria-expanded="true"]::before {
   content: '\f2d1';
   font-size: 1.8rem;
   -webkit-transition: 0.3s;
   -o-transition: 0.3s;
   transition: 0.3s;
	font-size: 1.8rem;
	color: #516074;
	font-weight: 400;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	font-family: "Font Awesome 5 Pro";
}
.ask_content p{
	font-size: 1.8rem;
	color: #516074;
	padding: 1rem 2rem;
	text-align: justify;
}
.accordion_area .title p{
	max-width: 85rem;
	margin: 0 auto;
	padding-top: 3.5rem;
	text-align: center;
}
/*timeline_area*/
.timeline_area{
	padding: 5rem 0;
	position: relative;
	background-color: rgb(247,247,247,1.0);
}
.history-tl-container{
	position:relative;
	margin-top: 5rem;
}
.history-tl-container ul.tl {
	margin: 2rem auto;
	padding: 0;
	display: block;
}
.history-tl-container ul.tl li {
	list-style: none;
	margin: auto;
	margin-left: 50%;
	min-height: 5rem;
	border-left: 1px dashed #000;
	padding: 0 0 3rem 3rem;
	position: relative;
}
.item-title {
	font-size: 2rem;
	font-weight: 700;
}
.history-tl-container ul.tl li:last-child{ 
	border-left:0;
}
.history-tl-container ul.tl li::before {
	position: absolute;
	left: -1.1rem;
	top: -.5rem;
	content: " ";
	border: .4rem solid rgba(255, 255, 255, 0.74);
	border-radius: 500%;
	background: #000000;
	height: 2.0rem;
	width: 2.0rem;
	transition: all 500ms ease-in-out;
}
ul.tl li .item-detail {
	color: rgba(0,0,0,0.5);
	font-size: 1.8rem;
}
ul.tl li .timestamp {
	color: #8D8D8D;
	position: absolute;
	width: 100%;
	text-align: right;
	font-size: 1.8rem;
	right: 100%;
	padding-right: 4rem;
	top: -1rem;
}
/*reg_btn*/
.reg_btn {
	font-size: 1.6rem;
	text-transform: uppercase;
	font-weight: 600;
	padding: 1.5rem 4rem;
	display: none;
	background-color: #000;
	color: #fff;
	z-index: 1000;
	right: 8rem;
	bottom: 5.3rem;
	position: fixed;
}
.reg_btn:hover {
   background-color: rgba(0,0,0,.8);
   color: #fff;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 2.4rem;
	width: 4.5rem;
	height: 4.5rem;
	line-height: 4.5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 5.7rem;
	right: 2.0rem;
	border-radius: 50%;
	background: #000;
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}