/*====================== 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: #053664;
	
}

/* 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: #fff;
	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: #fff!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;
	background-color: #004788;
	border: none;

}
.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;
	}
}

.header_bg{
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

/*========== 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  part START======================= */

.job_seek_title{
font-size: 36px;
font-weight: 600;
line-height: 48px;
color: #FFFFFF;
margin-top: 120px;
}
.job_seek_title span{
	font-size: 36px;
	font-weight: 700;
	line-height: 48px;
	color: #2DA6DE;
}
.job_seek_txt{
font-size: 15px;
margin-top: 18px;
color: #CECECE;

}
.job_search_input input{
	width: 100%;
	padding: 10px 20px;
	border-radius: 8px;
	border: none;
	color: #9D9D9D;
}
.job_search_input {
    padding: 30px 30px;
    background-color: #484F5F99;
    border-radius: 12px;
    margin: 30px 0px;
	border: 1px solid #2DA6DE;
}
.search_btn{
	padding: 10px 20px;
	border: none;
	border-radius: 8px;
	color: #fff;
	background-color: #00A6F2;
}

/* =========///////============job main part start========/////////=========////////====== */

.job_main{
	margin-top: 120px;
}
.job_main_title{
font-size: 20px;
font-weight: 600;
color: #4F4F4F;
padding: 10px 0;
}
.job_catagory_list{
	display: inline-flex;
	border: 0.5px solid #D9D9D9;
}
.job_catagory_list li{
	padding: 10px 20px;
}
.job_catagory_list li a{
	text-decoration: none;
	font-weight: 600;
	font-size: 12px;
	color: #1B1B1B;
}
.job_catagory_list li:active{
	background-color: #00A6F2;
}
.job_catagory_list li:active a{
	color: #fff;
}
.job_catagory_list .active{
	background-color: #00A6F2;
}
.job_catagory_list .active a{
	color: #fff;
}
.mini_logo{
	display: flex;
	margin-top: 10px;
}
.mini_logo img{
	padding:0 5px;
}
.mini_logo p {
    font-size: 12px;
    font-weight: 500;
    padding: 1px 5px;
}
.job_description {
    padding: 30px 5px;
    border: 0.5px solid #2DA6DE;
    border-radius: 14px;
    margin: 40px 0 10px;
}
.uyimg{
	padding: 20px 18px;
	border-radius: 50%;
	border: 0.5px solid #2DA6DE;
}
.job_title{
	font-size: 18px;
	font-weight: 700;
	color: #4F4F4F;
	margin-top: 10px;
}
.job_txt{
	font-size: 14px;
	font-weight: 500;
	color: #2DA6DE;
}
.apply_btn{
		padding: 10px 40px;
		margin: 10px 0px;
		color: #fff;
		background-color: #8CC749;
		border-radius: 6px;
		border: 1px solid #8CC749;
		transition: all linear 0.3s;
}
.apply_btn:hover{
	background-color: transparent;
	color: #FCAB4C;
	transition: all linear 0.3s;
}
.save_btn{
	padding: 10px 40px;
	margin: 10px 0px;
	color: #fff;
	background-color: #FCAB4C;
	border-radius: 6px;
	border: 1px solid #FCAB4C;
	transition: all linear 0.3s;
}
.save_btn:hover{
	background-color: transparent;
	color: #8CC749;
	transition: all linear 0.3s;

}
.required{
	font-size: 12px;
	font-weight: 500;
	color: #585858;
}
.required span{
	font-size: 12px;
	font-weight: 600;
	color: #2DA6DE;
}
/* =========///////============job main part end========/////////=========////////====== */

/* pagination start */
.pagination{
	display: inline-flex;
	margin: 50px 0;
}
.pagination li{
    padding: 10px 16px;
    border: 0.5px solid #D9D9D9;
    border-radius: 50%;
    margin: 0px 5px;
	transition: all linear 0.3s;
}
.pagination li a{
	color: #A0A0A0;
	transition: all linear 0.3s;
	font-size: 14px;
	font-weight: 500;
}
.pagination li:hover{
	background-color: #4DA1FA;
	transition: all linear 0.3s;
} 
.pagination li a:hover{
	color: #fff;
	transition: all linear 0.3s;
}
/* pagination end */
.p_course_main{
	padding-left: 2%;
}
.popular_course{
		padding: 30px 30px 80px 30px;
		background-color: #fff;
		border-radius: 22px;
}
.p_course_title{
	font-size: 22px;
	color: #000000;
	margin-bottom: 20px;
}
.p_course_title span{
	font-size: 22px;
	font-weight: 700;
	color: #009AE1;
}
.carousel-indicators {
    position: absolute;
    top: 100%;
    left: 0px;
    display: flex;
    justify-content: space-between;
}
.carousel-indicators button{
		height: 10px!important;
		width: 10px!important;
		border-radius: 50%;
		color: #D9D9D9;

}

/* recent job part start */
.recent_job{
	margin-top: 50px;
}
.recent_job_list li{
	margin-top: 18px;
}
.recent_job_list li a{	
	text-decoration: none;
	font-size: 14px;
	color: #696969;
	transition: all linear 0.3s;

}
.recent_job_list li a:hover{
	color: #00A6F2;
	text-decoration: underline;
	transition: all linear 0.3s;
}
/* recent job part end */











/* =======================footer  part START======================= */
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: 424px) { 
	
}
/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 425px) 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========///////////============//////=/=/=/ */