/*====================== Google fonts ========================*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700&display=swap');


/*====================== Basic css ========================*/
html{
	font-size: 62.5%;
}

:root {
	scroll-behavior: unset;
}

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;
}

ol,
ul {
	list-style: none;
}

a,
a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* body */
body {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.3;
	font-family: 'Open Sans';
	background-color: #FDFDFD;
	color: #646464;
	font-family: 'Baloo Da 2', cursive;
}


/*====================== Header area start ========================*/

/*====================== font  ========================

font-family: 'Baloo Da 2', cursive;

====================== font  ========================*/

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	padding: 2rem 0;

}

/*sticky*/
header.sticky {
    animation: 100ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: 0 .8rem 2rem 0 rgba(0, 0, 0, .1);
	background-color: #fff;
}

/* menu */
#menu {
	text-align: right;
}

#menu li {
	display: inline-block;
	color: #fff;
	margin-right: 5rem;
}

#menu li:last-child{
	margin-right: 0;
}

#menu li a {
	color: #646464;
	transition: 0.3s;
}

#menu>li>a.active,
#menu>li>a:focus,
#menu>li>a:hover {
	color: #00A3FF;
}

.sign_up{
	padding: 10px 15px;
	border-radius: 10px;
	font-weight: bold;
	color: #fff!important;
	background-color: #0067C6;
}
.sign_in{
	padding: 10px 15px;
	border-radius: 10px;
	color: #000!important;
	font-weight: bold;
}
.sign_in:hover{
	color: #fff!important;
	background-color: #0067C6;
}
.sign_in:hover .sign_up{
	background-color: transparent;
}

/*Hamburger menu*/
.hamburger-menu {
	cursor: pointer;
	position: relative;
	display: none;
	z-index: 999;
}

.hamburger-menu span {
	background: #000000;
	width: 3rem;
	height: .3rem;
	display: block;
	margin: .5rem 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%);
	background: #00A3FF;
}

.hamburger-menu:hover .line-bottom {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	background: #00A3FF;
}

.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%;
	transition: .3s;
	overflow: scroll;
}

.ofcavas-menu.current {
	left: 0;
}

.ofcavas-menu ul {
	margin-top: 10rem;
}

.ofcavas-menu li{
	padding: .8rem 0;
}

.ofcavas-menu a {
	color: #00A3FF;
}
.ofcavas_signin ul{
	display: inline-flex;
	margin-top: 4rem;
}

/*========== Page loader CSS ==========*/


/*========== drop down menu ==========*/
.dropdown-menu{
	margin: 10px 15px;
	padding: 10px 15px;

}
.dropdown-menu .dropdown-item:hover{
	background: linear-gradient(270deg, #60BBFD -25%, #0585E1 50.54%);
	color: #fff!important;
}
.dropdown-menu li a{
	font-size: 18px;
	padding: 10px 10px;
	border-radius: 4px;
}
/*========== drop down menu ==========*/

#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader3 {
	width: 5rem;
	height: 5rem;
	display: inline-block;
	padding: 0;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5rem;
	height: 5rem;
	border-radius: 100%;
	background: #00A3FF;
	-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% {
		transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		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;
	}
}


/*========== return-to-top ==========*/

.back-to-top {
	width: 4.5rem;
	height: 4.5rem;
	line-height: 4.5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3rem;
	right: 2rem;
	border-radius: 50%;
	color: #fff;
	background: #00A3FF;
	z-index: 1000;
}

main{
	background-color: #f4f6f9;
}
.back_to_home {
    margin-top: 25px;
}
.back_to_home a{
	margin-left: 5%;
	text-decoration: none;
	color: #878787;
}
.job_apply_content{
	box-shadow: 0px 0px 30px 0px #0000000D;
	border-radius: 28px;
	background-color: #fff;
}
.job_apply_part {
    padding: 5% 10%;
}
.com_logo{
	margin-top: 30px;
	margin-left: 10%;
}
.form_content {
    padding: 5% 15%;
}
.apply_for{
	font-family: Baloo Da 2;
	font-size: 22px;
	font-weight: 700;
	line-height: 29px;
	letter-spacing: 0em;
	text-align: left;
	color: #000000;
}
.apply_for span{
	color: #8CC749;
}
.form_content form {
    margin-top: 60px;
}
.input_title{
	margin-top: 50px;
	font-size: 14px;
	font-weight: 500;

}
.form_content form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #D1D1D1;
	color: #8CC749;
}
.browse_grp{
	display: flex;
}
.browse_btn{
	margin: 10px 10px 0 0;
	padding: 10px 20px;
	border-radius: 3px;
	border: none;
	color: #fff;
	border: 0.5px solid #fff;
	background-color: #ABABAB;
	transition: all linear 0.3s;

}
.browse_btn:hover{
	background-color: #fff;
	color: #ABABAB;
	border: 0.5px solid #ABABAB;
	transition: all linear 0.3s;
}
.submit_btn{
	width: 100%;
	margin-top: 50px;
	border-radius: 11px;
	padding: 15px 0;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 600;
	color: #FFFFFF;
	border: 0.5px solid #fff;
	background-color: #8CC749;
	transition: all linear 0.3s;
}
.submit_btn:hover{
	background-color: #fff;
	border: 0.5px solid #8CC749;
	color: #8CC749;
	transition: all linear 0.3s;
}
.back_btn{
	margin: 50px auto;
	text-align: center;
}
.back_btn button{
    padding: 12px 20px;
    border-radius: 50%;
	border: 2px solid #8CC749;
	color: #8CC749;
	background-color: transparent;
	transition: all linear 0.3s;
}
.back_btn button:hover{
	background-color: #8CC749;
	color: #fff;
	transition: all linear 0.3s;
}
footer{
	background-color: #fff;
	padding: 20px 0;
}
.copyright{
font-size: 16px;
font-weight: 400;
color: #7D9FC1;
}
.footer_lst{
	text-align: right;
}




/* ========///////////============//////=/=/=/custom responsive part start========///////////============//////=/=/=/ */

@media (min-width: 320px) and (max-width: 575px) { 
	.browse_btn {
		padding: 4px 4px;
	}
	.submit_btn {
		width: 100%;
		margin-top: 35px;
		margin-bottom: 20px;
		border-radius: 30px;
		padding: 12px 0;
		font-size: 18px;
	}
	.copyright {
		font-size: 14px;
		text-align: center;
	}
	.footer_lst{
		text-align: center;
	}
 }
/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) { 

 }

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) { 
	.copyright{
		text-align: center;
		font-size: 14px;
	}
	.footer_lst{
		text-align: center;
	}

 }

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) { 

 }

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399px) {  }

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 

 }
/* ========///////////============//////=/=/=/custom responsive part end========///////////============//////=/=/=/ */