/*====================== 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;
    padding: 10% 5%;
    margin: 100px 0px;
    background-color: #fff;
}

.job_title{
	font-size: 30px;
	font-weight: 600;
	color: #00A6F2;
}
.location{
	margin-top: 30px;
	font-size: 14px;
	color: #4E4E4E;
}
.salary_details {
    margin: 50px 0;
    color: #000000;
}
.com_logo{
	text-align: center;
}
.com_logo img{
	transform: scale(2);
	margin-top: 30px;
}
.p_heading{
	font-size: 18px;
	font-weight: 600;
	margin-top: 30px;
}
.p_txt{
	font-size: 16px;
	margin-top: 30px;
	line-height: 30px;
}
.apply_btn {
    padding: 15px 40px;
    margin: 50px 15px 0 0;
    border: 1px solid #8CC749;
    color: #fff;
    font-weight: 600;
    border-radius: 7px;
    background-color: #8CC749;
}
.apply_btn:hover{
	background-color: #fff;
	color: #8CC749;
}
.back_btn{
	padding: 15px 60px;
    margin: 50px 15px 0 0;
    border: 1px solid #939393;
    color: #939393;
    font-weight: 600;
    border-radius: 7px;
    background-color: transparent;
	transition: all linear 0.3s;
}
.back_btn:hover{
	background-color: #939393;
	color: #fff;
	transition: all linear 0.3s;
}
/* =======================footer  part footer======================= */
footer{
	background-color: #004788;
	color: #F7F7F8;
	border-radius: 48px 48px 0px 0px;
}
.footer_logo{
	margin-top: 50px;
}
.footer_logo_txt{
	font-size: 14px;
	font-weight: 500;
	color: #D9D9D9;
	margin-top: 50px;
	line-height: 30px;
	padding-right: 35%;
}

.footer_heading{
	font-size: 20px;
	font-weight: 500;
	color: #F7F7F8;
	margin-top: 50px;
}
.footer_list li{
	font-size: 14px;
	font-weight: 500;
	color: #D9D9D9;
	margin-top: 24px;
}
.footer_social_icon{
	display: inline-flex;
	margin-top: 50px;
}
.footer_social_icon li{
	padding: 5px;
	transition: all linear 0.3s;
}
.footer_social_icon li:hover{
	transform: scale(1.1);
	transition: all linear 0.3s;
}
.footer_last{
	font-size: 16px;
	color: #4EA1F4;
	margin: 24px 0;
}
/* =======================footer  part end======================= */





/* ========///////////============//////=/=/=/custom responsive part start========///////////============//////=/=/=/ */

@media (min-width: 320px) and (max-width: 575px) { 

 }
/* // 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) { 

 }

/* // 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========///////////============//////=/=/=/ */