/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
	--primary: #f15a25;
	--secondary: #f59a20; 
}

/*======================
   02. Basic css
========================*/
::-moz-selection{
	background-color: var(--primary);
	color: #fff;
}
::selection{
	background-color: var(--primary);
	color: #fff;
}
html{
	font-size: 70%;
}
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.4;
	font-family: "Poppins", serif;
	background-color:#fff;
	color: #000;
	font-weight: 400;
	font-size: 2.4rem;
	background-image: url(../img/gradient-bg.png);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

ol,
ul {
	list-style: none;
}
a{
	color: inherit;
}
a:hover {
	text-decoration: none;
	color: var(--primary);
}
p a{
	color: inherit;
}
p a:hover{
	color: #fff;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus{
	outline: none;
}
h1{
	font-size: 8.2rem;
	font-weight: 700;
	line-height: 1;
}
h2 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.1;
    /*text-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.2);*/
}
h2 span{
	color: var(--primary);
}
h3{
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1.1;
}
h4{
	font-size: 3.2rem;
	font-weight: 700;
}
h5{
	font-size: 2.6rem;
	font-weight: 700;
}
h6{
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

/* 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: 8.0rem;
	height: 8.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 8.0rem;
	height: 8.0rem;
	border-radius: 100%;
	background: var(--primary);
	-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;
  	}
}
.container{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

header{
	padding: 2.5rem 0 0;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: 0.3s;
}
header.sticky{
	padding: 1.5rem 0;
	background-color: var(--primary);
}
header .container{
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 4rem;
}
header .container .button {
    box-shadow: none;
    background-color: #e8e5e5;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 1.6rem;
    padding: 1rem 3rem;
    min-width: 25rem;
}
header .container .button.btn1{
	color: #a557c6;
}
header .container .button.btn2{
	color: var(--primary);
}
header .container .button:hover{
	background-color: #fff;
}
header .container .button.active{
	background-color: #fff;
	font-weight: 600;
}


/*button*/
.button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 1.3rem 5rem 1.3rem;
	color: #fff;
	border-radius: 10rem;
	font-weight: 600;
	font-size: 2.2rem;
	letter-spacing: 0.1rem;
	border: none;
	background-color:#f15a25;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	-webkit-box-shadow: 0.1rem 1.2rem 1.5rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 1.2rem 1.5rem rgba(0, 0, 0, 0.16);
}
.button:hover{
	background-color: #f59a20;
	color: #fff;        
}
.button img{
	height: 3.5rem;
	margin-left: -2.5rem;
}
/*return-to-top START CSS*/
.back-to-top {
	font-size: 2rem;
	width: 4rem;
	height: 4rem;
	line-height:4rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 1.5rem;
	border-radius: 50%;
	background: #000;
	z-index: 1000;
}
.back-to-top img{
	width: 1.9rem;
}
.back-to-top i {
	color: #fff;
}
.row:not(.no-gutters){
	margin-left: -1.5rem;
	margin-right: -1.5rem;
}
.row:not(.no-gutters)>div{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
/*Home area*/
.home_area {
    min-height: 94vh;
    padding: 2.5rem 5.5rem 5.5rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.home_content {
	background-color: #fff;
	border-radius: 5rem;
	padding: 12rem 0 8rem 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.logo_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 10rem;
	   -moz-column-gap: 10rem;
	        column-gap: 10rem;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.logo_wrap img{
	width: 15rem;
}
.logo_wrap img.logo2 {
    width: 18rem;
}
.logo_wrap img.logo3 {
    width: 12rem;
}
.logo_wrap img.logo4 {
    width: 9rem;
}
.home_text h1 {
    font-size: 7.5rem;
    max-width: 118rem;
    margin: auto;
    line-height: 1.4;
	margin: 5rem auto 3rem auto;
}
.home_text h1 span{
	color: var(--primary);
}
.home_text p {
    font-size: 2.5rem;
    font-weight: 500;
    max-width: 83rem;
    margin: 0 auto 4rem auto;
}
/* Reseaarch Sec  */
.research_sec{
	background-color: #fff;
	padding-top: 12rem;
}
.research_title p {
    padding: 5rem 0;
    max-width: 100rem;
	margin: auto;
}
.research_title a{
	margin-bottom: 6rem;
}
.research_box {
    text-align: center;
    background-color: #fff;
    border: .1rem solid rgb(166 89 199 / 18%);
    border-radius: 4rem 4rem 0 0;
    border-bottom: 0;
    padding: 6rem 2rem;
    height: 100%;
}
.research_box img{
	width: 5rem;
}
.research_box h3 {
    font-size: 3rem;
    max-width: 22rem;
    font-weight: 600;
    margin: 3rem auto 2rem auto;
    line-height: 1.3;
}
.research_box p{
	font-size: 2.2rem;
	line-height: 1.4;
	max-width: 26rem;
	margin: auto;
}
.research_row>div:nth-child(even) .research_box{
	background-color: #f8f8f8;
}

/*generation area*/
.generation_area{
	color: #fff;
	padding: 10rem 0 0;
}
.generation_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
    margin-top: 10rem;
    max-width: 80rem;
}
.generation_item img{
	width: 14.5rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.generation_item p {
    margin-top: 1rem;
    max-width: 42rem;
}
.generation_img {
    border-radius: 3rem;
    -o-object-fit: cover;
    object-fit: cover;
    height: 56rem;
    object-fit: cover;
}

/*contributor area*/
.contributors_area{
	padding: 11rem 0 0;
}
.contributors_area h2{
	color: #fff;
	text-align: center;
}
.contributor_box{
	border: 0.1rem solid var(--primary);
	border-radius: 4rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	text-align: center;
	background-color: #f5eef3;
	height: 100%;
	padding: 4rem 2.6rem;
	font-size: 1.95rem;
}
.contributor_box:hover{
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
	background-color: #fff;
}
.contributor_logo{
	height: 8.8rem;
	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;
	position: relative;
	margin-bottom: 7rem;
}
.contributor_logo img{
	max-height: 8.8rem;
	max-width: 24.6rem;
	-o-object-fit: contain;
	   object-fit: contain;
}
.contributor_logo::before{
	position: absolute;
	content: '';
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	bottom: -3rem;
	height: 0.3rem;
	width: 14rem;
	background-color: #A557C6;
}
.contributor_box p strong{
	font-weight: 500;
}
.box2 .contributor_logo::before{
	background-color: #F59A20;
}
.box3 .contributor_logo::before{
	background-color: #0AAAB3;
}
.box4 .contributor_logo::before{
	background-color: #fd5108;
}
.kh{
	display: flex;
	align-items: center;
	column-gap: 4rem;
	justify-content: center;
	margin-top: 5rem;
}
.kh h4{
	color: #fff;
	font-weight: 600;
	text-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.2);
}
.kh img{
	width: 10rem;
}

/*contact area*/
.contact_area{
	background-size: cover;
    background-position: center;
    padding: 10rem 0 8rem;
}
.contact_area h2 span{
	color: var(--secondary);
}
.contact_box{
	background-color: #fff;
	border-radius: 3rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 65rem;
	overflow: hidden;
	border: 0.1rem solid #828282;
	padding: 4rem 3rem;
}
.contact_box .hsfc-Step{
	border: none !important;
}
.contact_title{
	margin-bottom: 3rem;
}
.contact_title h2{
	max-width: 50rem;
	margin: 0 auto;
}
.contact_box form {
    max-width: 100% !important;
    font-family: inherit !important;
    padding: 0 !important;
}
.contact_box #_form_6908B864442E6_._inline-form ._form-label, 
.contact_box #_form_6908B864442E6_._inline-form ._form-emailidentifier, 
.contact_box #_form_6908B864442E6_._inline-form ._form-checkbox-option-label {
    font-family: inherit !important;
}
#_form_6908B864442E6_ ._submit{
	margin-left: 0 !important;
	margin-right: 0 !important;
}


/*footer area*/
footer{
	background-color: rgba(0, 0, 0, 0.59);
	padding: 4rem 0 8rem;
	color: #fff;
	font-size: 1.9rem;
	line-height: 1.5;
}
.footer_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-column-gap: 3rem;
	   -moz-column-gap: 3rem;
	        column-gap: 3rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.footer_item{
	max-width: 26%;
}
.social_icon{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2.2rem;
	   -moz-column-gap: 2.2rem;
	        column-gap: 2.2rem;
	margin-top: 4rem;
}
.social_icon img{
	height: 3.8rem;
}
.logo_part>img,
.logo_part>a>img{
	max-width: 21.6rem;
}
.footer_item h5{
	font-weight: 400;
	margin-bottom: 2rem;
	font-size: 2.7rem;
}
.footer_item p,
.footer_item ul{
	font-weight: 300;
}
.footer_item a:hover{
	color: var(--secondary);
}
.footer_item ul li a{
	text-decoration: underline;
}