/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@700&family=Poppins:wght@300;400&display=swap');
/*======================
   02. Basic css
========================*/
:root{
	--blue: #0062F4;
}

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.77;
	/* font-family: 'Barlow', sans-serif; */
	font-family: 'Poppins', sans-serif;
	background-color: #fff;
	color: #272D3D;
	font-size: 18px;
	font-weight: 300;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}
.button, a{
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

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

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: var(--blue);
	-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;
	position: absolute;
	right: 15px;
	display: none;
	z-index: 999;
	top: -15px;
}
.hamburger-menu span {
	background: var(--blue);
	width: 30px;
	height: 3px;
	display: block;
	margin: 5px 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu:hover .line-top {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}
.hamburger-menu:hover .line-bottom {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(200%) rotate(135deg);
	-ms-transform: translateY(200%) rotate(135deg);
	transform: translateY(200%) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	-ms-transform: translateY(-325%) rotate(-135deg);
	transform: translateY(-325%) rotate(-135deg);
}
/*ofcanvas-menu*/
.ofcavas-menu {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: -1;
	top: 0;
	display: none;
	left: -100%;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	text-align: center;
}

.ofcavas-menu.current {
	left: 0;
}

.ofcavas-menu a {
	color: #636F87;
	margin-top: 10px;
}

.ofcavas-menu ul {
    margin-top: 90px;
    line-height: 22px;
}


header {
	/*position: fixed;*/
	top: 0;
	left: 0;
	padding: 40px 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: background 0.3s;
	-o-transition: background 0.3s;
	transition: background 0.3s;
	background-color: #ffffff;

}

/*sticky START CSS*/
header.sticky {
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .05);
    position: fixed;
    padding: 20px 0;
}

#menu li {
	display: inline-block;
	color: #fff;
}

#menu li a {
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	color: #636F87;
	padding: 0 16px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

#menu li:last-child a{
	padding-right: 0;
}

#menu>li>a.active,
#menu>li>a:hover {
	color: var(--blue);
}
.button{
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.1px;
	color: #FFFFFF;
	display: inline-block;
	padding: 16px 24px;
	border-radius: 8px 0;
	background-color: var(--blue);
	border: 1px solid var(--blue);
	font-family: 'Barlow', sans-serif;
	cursor: pointer;
}
.button:hover{
	color: var(--blue);
	background-color: transparent;
}

/* hero area */
.hero_wrapper{
	margin-top: 128px;
}
.hero_wrapper img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0 0 64px 0;
}
/* text area */
.text_wrapper {
    padding-top: 128px;
    padding-bottom: 134px;
}
.text_top {
    max-width: 1052px;
    margin: 0 auto;
}
.text_top h3{
	font-weight: 300;
	font-size: 64px;
	line-height: 1.12;
	text-align: center;
	color: #272D3D;
}
/* story area */
.story_wrapper {
    padding-bottom: 128px;
    padding-top: 56px;
    position: relative;
}
.story_wrapper::before {
    position: absolute;
    content: '';
    background-color: rgba(0, 98, 244, 0.08);
    height: 100%;
    width: 100%;
    top: 153px;
    left: 0;
}
.story_first_content{
	max-width: 882px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 64px;
}
.story_first_content .p1 {
    padding-bottom: 45px;
}
.accordion_btn {
    font-size: 64px;
    line-height: 1.2;
    color: var(--blue);
    background-color: transparent;
    font-weight: 300;
    outline: none;
    border: none;
    display: block;
    max-width: 900px;
    width: 100%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    position: relative;
    padding: 0;
}
.accordion_btn span{
	margin-left: 38px;
	display: inline-block;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.accordion_btn[aria-expanded="true"] span {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.accorodian_content{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 64px;
}
.accorodian_content .accorodian_text{
	padding-right: 10px;
	padding-top: 10px;
	min-width: 418px;
}
.accorodian_text p{
	max-width: 436px;
}
.accorodian_text .p1{
	padding-bottom: 45px;
}
.accorodian_content .accrodian_img{
	padding-left: 150px;
	width: 100%;
}
.accrodian_left_img img{
	-webkit-transform: translateX(50px);
	    -ms-transform: translateX(50px);
	        transform: translateX(50px);
	-webkit-transition: 0.56s;
	-o-transition: 0.56s;
	transition: 0.56s;
	width: 100%;
	opacity: 0;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
}
.accorodian_left_clear.collapse.show .accrodian_left_img img{
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
	        opacity: 1;
}
.accrodian_img_right img{
	-webkit-transform: translateX(-50px);
	    -ms-transform: translateX(-50px);
	        transform: translateX(-50px);
	-webkit-transition: 0.56s;
	-o-transition: 0.56s;
	transition: 0.56s;
	opacity: 0;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
}
.accorodian_content_wrapper.collapse.show .accrodian_img_right img{
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
	width: 100%;
	opacity: 1;
}
.accrodian_img_right{
	padding-left: 0 !important;
	padding-right: 150px;
}
.accrodian_text_right{
	padding-left: 10px;
	padding-right: 0 !important;
}
.story_last_content{
	padding-top: 64px;
}
.story_last_content .p1{
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.story_last_content .p1 a{
	color: var(--blue);
	text-decoration: underline;
}
.story_last_content .p1 a:hover{
	color: #272D3D;
}
.counter_box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 64px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.counter_content {
    max-width: 430px;
    width: 100%;
    text-align: center;
}
.counter_content h3{
	font-size: 64px;
	line-height: 1.2;
	font-weight: 300;
	color: #272D3D;
}
.counter_content .number{
	color: var(--blue)
}
/* brand area */
.brand_img {
	margin-left: 3rem;
	margin-right: 3rem;
}
.brand_slider_wrapper{
	background-color: rgba(0, 98, 244, 0.04);
	padding: 128px 0 265px;
}
.brand_slider{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: center;
}
.brand_heading h4{
	font-weight: 300;
	font-size: 32px;
	line-height: 1.12;
	text-align: center;
	color: #272D3D;
	padding-bottom: 64px;
}
.title{
	font-weight: 300;
	font-size: 192px;
	line-height: 1;
	text-align: center;
	color: #272D3D;
}
/* way area */
.way_wrapper .container {
    margin-top: -107px;
}
.way_heading h2{
	padding-bottom: 34px;
}
.way_box1{
	padding-bottom: 15px;
}
.way_box2{
	padding-top: 15px;
}
.way_img img{
	border-radius: 60px 0;
}
.way_content h4{
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 1.5px;
	color: var(--blue);
	font-family: 'Barlow', sans-serif;
}
.way_content p{
	font-weight: 300;
	font-size: 32px;
	line-height: 1.25;
	color: #272D3D;
	padding-top: 24px;
	max-width: 424px;
}
/* text warpper2 */
.text_wrapper2{
	padding-bottom: 128px;
}
/* banner area */
.banner_wrapper{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 260px 0 250px;
	border-radius: 60px 0;
}
.banner_wrapper h2{
	color: #FFFFFF;
}
/* creating area */
.creating_wraper{
	padding-top: 128px;
}
.creating_img img{
	border-radius: 60px 0;
}
.creating_content h3{
	font-weight: 300;
	font-size: 64px;
	line-height: 1.12;
	color: #272D3D;
	max-width: 535px;
}
.creating_content p{
	color: #636F87;
	max-width: 535px;
	padding-top: 64px;
}
/* count area */
.count_wrapper{
	padding-top: 102px;
}
.count_heading h3 {
    font-size: 64px;
    line-height: 1.2;
    color: #272D3D;
    max-width: 1198px;
    margin-right: auto;
    margin-left: auto;
}
.count_heading h3 span{
	color: var(--blue);
}
.count_item_wrapper{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 98px;
}
.count_item_wrapper .count_item{
	text-align: center;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-radius: 20px;
	padding: 60px 30px;
	overflow: hidden;
	position: relative;
	height: 100%;
	cursor: pointer;
}
.count_item_wrapper .count_item.active{
	background-color: #ffffff;
	-webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
	max-width: 45%;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 45%;
	        flex: 0 0 45%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	width: 100%;
}
.count_item_wrapper .count_item.active .count_main_item h4{
	color: var(--blue);
}
.count_item h4{
	max-width: 165px;
	margin: 0 auto;
	padding-top: 25px;
}
.count_item_wrapper .count_item:not(.active) .hover_content {
    position: absolute;
    visibility: hidden;
    width: 0px;
    transition: 0.3s;
    overflow: hidden;
    left: 0;
    top: 0;
    display: none;
}
.content_area p{
	text-align: left;
	padding-left: 25px;
}
.count_item_wrapper .count_item.active .close_img{
	display: block;
}
.close_img{
	position: absolute;
	top: 24px;
	right: 24px;
	display: none;
	transition: 0.4s;
	cursor: pointer;
}
.box_icon{
	cursor: pointer;
}
/* meeting area */
.meeting_wrapper{
	padding-top: 128px;
	padding-bottom: 64px;
	overflow: hidden;
}
.meet_container{
	position: relative;
}
.meet_container::before {
    position: absolute;
    content: '';
    background-color: #ffffff;
    top: -20%;
    height: 240%;
    width: 2000px;
    right: calc(100% + 6px);
    z-index: 2;
}
.meeting_wrapper .title{
	padding-bottom: 64px;
}
.worker_box{
	background-color: #FFFFFF;
	-webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	padding: 45px 42px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.work_img img{
	height: 128px;
	width: 128px;
	border-radius: 50%;
	object-fit: cover;
}
.worker_content{
	padding-left: 48px;
}
.title_md{
	font-weight: 300;
	font-size: 32px;
	line-height: 1.25;
	color: #272D3D;
}
.worker_name{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.worker_name h4{
	padding-right: 24px;
}
.worker_content .p1{
	color: #808FAD;
	padding-top: 8px;
}
.worker_content .p2{
	color: #636F87;
	font-style: italic;
	padding-top: 8px;
	max-width: 339px;
}
.meet .owl-dots {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -64px;
    width: 100%;
    text-align: center;
}
.meet .owl-dot {
    height: 10px;
    width: 10px;
    background-color: #808FAD;
    border-radius: 50%;
    margin-right: 8px;
    padding: 1px;
}
.meet .owl-dot.active{
	background-color: #272D3D;
}
.meet .owl-dot:last-child{
	margin-right: 0;
}
.meet .owl-stage-outer{
	overflow: hidden;
	padding: 30px;
}
.meet .owl-stage{
	padding-left: 0 !important;
}
/* career area */
.career_wrapper{
	padding-top: 56px;
	padding-bottom: 128px;
}
.career_heading{
	padding-bottom: 34px;
}
.career_box{
	padding: 32px;
	background-color: #FBFBFD;
	border: 1px solid #DDDFE7;
	border-radius: 20px; 
	-webkit-transition: 0.4s; 
	-o-transition: 0.4s; 
	transition: 0.4s;
	position: relative;
	display: block;
}

.career_img{
	position: absolute;
	top: 32px;
	right: 32px;
	transition: 0.4s;
}
.career_box .yellow{
	padding: 8px;
	color: #8A6C00;
	margin-top: 28px;
	background-color: #FED750;
	border: 1px solid #FED750;
	border-radius: 8px;
	text-transform: uppercase;
}
.career_box .yellow:hover{
	background-color: #8A6C00;
	border-color: #8A6C00;
	color: #FED750;
}

.career_box .light-blue{
	padding: 8px;
	color: #046397;
	margin-top: 28px;
	background-color: #23a9f1;
	border: 1px solid #23a9f1;
	border-radius: 8px;
	text-transform: uppercase;
}
.career_box .light-blue:hover{
	background-color: #046397;
	border-color: #046397;
	color: #23a9f1;
}
.career_img{
	display: none;
}
.career_box:hover{
	border: 1px solid #EEF0F2;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
	        box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
	background-color: #ffffff;
}
.career_box:hover .career_img{
	display: block;
}
.career_box .career_btn2{
	background-color: #EAC8FF;
	color: #9500F0;
	border-color: #EAC8FF;
}
.career_box .career_btn2:hover{
	background-color: #9500F0;
	border-color: #9500F0;
	color: #EAC8FF;
}
.career_box .career_btn3{
	background-color: #C8FFF5;
	color: #00957A;
	border-color: #C8FFF5;
}
.career_box .career_btn3:hover{
	background-color: #00957A;
	border-color: #00957A;
	color: #C8FFF5; 
}
.last_text p{
	color: #000000;
}
.last_text{
	padding-top: 64px;
	margin: 0 auto;
}
.last_text p a{
	color: var(--blue);
}
.last_text p a:hover{
	color: #00957A;
}
/* footer area */
.footer_wrapper{
	padding: 28px 0;
	background: rgba(0, 98, 244, 0.08) 
}
.social_box{
	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: end;
}
.social_box a{
	height: 24px;
	width: 24px;
	-o-object-fit: cover;
	   object-fit: cover;
	margin: 0 15px;
}
.social_box a:last-child{
	margin-right: 0;
}
.footer_content p{
	padding-top: 17px;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 24px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 30px;
	right: 20px;
	border-radius: 50%;
	background: var(--blue);
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}

.intro-hero {
	max-width: 1200px;
	margin: 2rem auto 0 auto;
}

.intro {
	padding: 0 40px;
}

.intro h1{
	font-size: 64px;
	font-weight: 300;
	padding: 8rem 0 2rem 0;
	font-style: normal;
}

.intro p {
	color: #636F87;
	font-size: 18px;
	font-weight: 300;
	margin: 0 0 2rem 0;
}

.intro-hero .img-fluid {
	width: 80%;
}

.barlow {
	font-family: 'Barlow', sans-serif;
}

.cookie{
	width: 400px;
    background-color: #ebf3ff;
    position: fixed;
    bottom: 50px;
    border-radius: 10px;
	left: 5%;
	padding: 10px 20px;
	z-index: 100;
	-webkit-box-shadow: 0px 4px 30px rgb(0 0 0 / 30%);
    box-shadow: 0px 4px 30px rgb(0 0 0 / 30%);
	-ms-box-shadow: 0px 4px 30px rgb(0 0 0 / 30%);
}

.cookie .txt{
	float: left;
    width: 65%;
	font-size: 12px;
}
.txt p{
	color:#1D2D35;
}

.cookie .accept {
    background-color: #0062F4;
    color: #fff !important;
    border-radius: 32px;
    padding: 3px 23px;
    /* align-self: center; */
    font-size: 12px;
    margin-top: 2.5%;	
    margin-left: 9%;
	

}
.cookie .accept:hover {
	background-color: #0062F4;
}
