body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 26px;
	word-break: break-word;
	font-family: 'Poppins';
	transition: all 0.4s ease-in-out;
	overflow-x: hidden;
	color: #515b6f;
}
@font-face {
	font-family: 'ClashDisplay';
	src:
		url('../fonts/ClashDisplay-Regular.woff2') format('woff2'),
		url('../fonts/ClashDisplay-Regular.woff') format('woff'),
		url('../fonts/ClashDisplay-Regular.ttf') format('truetype');
	font-weight: 400;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'ClashDisplay';
	src:
		url('../fonts/ClashDisplay-Medium.woff2') format('woff2'),
		url('../fonts/ClashDisplay-Medium.woff') format('woff'),
		url('../fonts/ClashDisplay-Medium.ttf') format('truetype');
	font-weight: 500;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'ClashDisplay';
	src:
		url('../fonts/ClashDisplay-Semibold.woff2') format('woff2'),
		url('../fonts/ClashDisplay-Semibold.woff') format('woff'),
		url('../fonts/ClashDisplay-Semibold.ttf') format('truetype');
	font-weight: 600;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'ClashDisplay';
	src:
		url('../fonts/ClashDisplay-Bold.woff2') format('woff2'),
		url('../fonts/ClashDisplay-Bold.woff') format('woff'),
		url('../fonts/ClashDisplay-Bold.ttf') format('truetype');
	font-weight: 700;
	font-display: swap;
	font-style: normal;
}
@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-SemiBold.eot');
	src:
		url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
		url('../fonts/Poppins-SemiBold.woff') format('woff'),
		url('../fonts/Poppins-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Regular.eot');
	src:
		url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Poppins-Regular.woff2') format('woff2'),
		url('../fonts/Poppins-Regular.woff') format('woff'),
		url('../fonts/Poppins-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Bold.eot');
	src:
		url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Poppins-Bold.woff2') format('woff2'),
		url('../fonts/Poppins-Bold.woff') format('woff'),
		url('../fonts/Poppins-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Medium.eot');
	src:
		url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Poppins-Medium.woff2') format('woff2'),
		url('../fonts/Poppins-Medium.woff') format('woff'),
		url('../fonts/Poppins-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

/* *{
    transition: all 0.4s ease-in-out;
} */

p {
	margin: 0 0 12px;
	line-height: 28px;
	color: #515b6f;
}
p:first-letter {
	text-transform: capitalize;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 15px;
	font-family: 'ClashDisplay';
	text-transform: capitalize;
}
a {
	text-decoration: none !important;
	transition: all 0.4s ease-in-out;
}

h1 {
	font-size: 70px;
	line-height: 85px;
}
h2 {
	font-size: 48px;
	line-height: 58px;
}
h3 {
	font-size: 35px;
	line-height: 45px;
}
h4 {
	font-size: 24px;
	line-height: 34px;
}
h5 {
	font-size: 22px;
	line-height: 32px;
}
h6 {
	font-size: 20px;
	line-height: 30px;
}
input {
	box-shadow: none !important;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
section {
	position: relative;
}
section:not(:first-of-type) {
	padding: 120px 0;
}
.btn {
	border: 1px solid;
	border-radius: 0;
	font-size: 18px;
	line-height: 27px;
	padding: 13px 24px;
	transition: all 0.4s ease-in-out;
	text-transform: capitalize;
	box-shadow: none !important;
}

.btn-fill {
	background: #fff;
	border-color: #fff;
	color: #0a1c52;
}
.btn-fill:hover {
	background: transparent;
	border-color: #fff;
	color: #fff;
}
.btn-outline {
	color: #fff;
	border-color: rgb(255 255 255 / 20%);
}
.btn-outline:hover {
	background: #fff;
	border-color: #fff;
	color: #0a1c52;
}
/*------------ HEADER START -----------*/
.site-header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 999;
	padding: 30px 0;
	transition: all 0.4s ease-in-out;
}
.header-white {
	background: #fff;
	padding: 15px 0;
	border-bottom: 1px solid rgb(10 28 82 / 14%);
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.header-white .header-logo {
	display: none;
}
.site-header .logo-dark {
	display: none;
}
.header-white .logo-dark {
	display: block;
	text-align: center;
}
.header-white .logo-dark img {
	max-width: 200px;
}
.outer-container {
	max-width: 1720px;
	padding: 0 20px;
	margin: 0 auto;
}
.header-logo {
	text-align: center;
}
.header-logo img {
	transition: all 0.4s ease-in-out;
}
.togglebtn {
	background: #fff;
	width: 55px;
	height: 55px;
	padding: 0 !important;
	border-radius: 0;
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}
.header-white .togglebtn {
	background: #0a1c52;
	border-color: #0a1c52;
}
.togglebtn svg path {
	transition: all 0.4s ease-in-out;
}
.header-white .togglebtn svg path {
	fill: #fff;
}
.header-white .togglebtn:hover svg path {
	fill: #291848;
}
.togglebtn:hover {
	background: transparent;
}
.togglebtn:hover svg path {
	fill: #fff;
}
.header-button-group {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}
.header-white .btn-fill,
.header-white .btn-outline:hover {
	background: #0a1c52;
	border-color: #0a1c52;
	color: #fff;
}
.header-white .btn-outline,
.header-white .btn-fill:hover {
	background: #fff;
	border-color: #0a1c52;
	color: #0a1c52;
}
.mega-menu {
	border: none;
}
.mega-menu .offcanvas-header {
	border-bottom: 1px solid #f5f5f5;
}
.mega-menu .offcanvas-title img {
	max-width: 150px;
}
.mega-menu .navbar-nav {
	display: flex;
	flex-direction: column;
}
.mega-menu .navbar-nav .nav-link {
	color: #0a1c52;
	text-transform: capitalize;
	padding: 15px 30px;
	transition: all ease-in-out 0.4s;
}
.mega-menu .navbar-nav .nav-link:hover {
	background-color: #0a1c52;
	color: #fff;
}
.mega-menu .close-button {
	width: 40px;
	height: 40px;
	padding: 10px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #0a1c52;
	border: 1px solid transparent;
	transition: all ease-in-out 0.4s;
}
.mega-menu .close-button:hover {
	background-color: transparent;
	border-color: #0a1c52;
}
.mega-menu .close-button img {
	filter: invert(1);
}
.mega-menu .close-button:hover img {
	filter: invert(0);
}
/*------------ HEADER END -----------*/

/*------------ HOMEPAGE CSS START -------------*/
.hero-banner-with-search {
	padding: 316px 0 232px;
	background-size: cover;
	background-position: center center;
	position: relative;
}

.hero-banner-with-search:before {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #0a1c52;
	opacity: 0.8;
}
.hero-banner-content {
	text-align: center;
	position: relative;
	z-index: 9;
}
.hero-banner-content .title {
	color: #fff;
}
.hero-banner-content .title {
	color: #fff;
	font-weight: 400;
	margin-bottom: 30px;
}
.hero-banner-content .title span {
	font-weight: 600;
}
.hastags {
	color: #fff;
	font-family: 'ClashDisplay';
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	background: linear-gradient(270deg, #302ebb 0%, #0c0b2e 100%);
	padding: 14px 47px;
	max-width: fit-content;
	margin: 0 auto 30px;
}
.hastags b {
	font-weight: 600;
}
.hero-banner-content .desc {
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 50px;
}
.search-now {
	position: relative;
	max-width: 707px;
	margin: 0 auto;
}
.search-now .form-control {
	height: 64px;
	border: 0;
	border-radius: 0;
	padding: 22px 180px 22px 80px;
	font-size: 16px;
	line-height: 24px;
}
.search-icon {
	position: absolute;
	left: 28px;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 25px;
}
.searchnow {
	border: 0;
	color: #fff;
	font-size: 18px;
	line-height: 28px;
	background: #302ebb;
	border-radius: 0;
	padding: 18px 25px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}
.searchnow:hover {
	color: #fff;
	background: #000;
}
.block-gap {
	margin-top: 50px;
}
.show-category {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
	color: #0a1c52;
	font-weight: 600;
	text-transform: capitalize;
}
.show-category:hover {
	color: #302ebb;
}
.show-category:hover svg path {
	stroke: #302ebb;
}
.global-heading .title {
	font-weight: 600;
	color: #0a1c52;
	margin-bottom: 20px;
}
.global-heading p {
	color: #0a1c52;
	font-size: 18px;
	line-height: 28px;
}
.text-gradient {
	background: linear-gradient(270deg, #302ebb 0%, #0c0b2e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.category-card {
	padding: 30px;
	background: #fcfcff;
	border-width: 1px;
	border-style: solid;
	border-image: linear-gradient(270deg, rgba(48, 46, 187, 0.1), rgba(12, 11, 46, 0.1)) 1;
	transition: all 0.4s ease-in-out;
	position: relative;
}
.category-card *,
.hl-card-box,
.hl-card-box *,
.owl-nav *,
.article-card *,
.news-block *,
a svg path,
.job-block-item,
.job-block-item *,
.checkbox-form input[type='checkbox'] {
	transition: all 0.4s ease-in-out;
}
.category-card:hover {
	background: #0a1c52;
	border-color: #0a1c52;
}
.category-block .row {
	row-gap: 25px;
}
.category-card .card-title {
	font-weight: 500;
	color: #0a1c52;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 12px;
}
.category-card:hover .card-title,
.category-card:hover .card-link {
	color: #fff;
}
.category-card:hover .card-link svg path {
	stroke: #fff;
}
.category-card .card-icon {
	margin-bottom: 30px;
}
.category-card:hover .card-icon img {
	filter: invert(100%) sepia(91%) saturate(32%) hue-rotate(199deg) brightness(140%) contrast(109%);
	mix-blend-mode: luminosity;
}
.category-card .card-link {
	color: #7c8493;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	gap: 18px;
}
.cta-button {
	padding: 100px 0 !important;
	background:
		url(../images/1.png) right center,
		radial-gradient(77.24% 325.17% at 77.24% 42.34%, #45123e 0%, #1c1027 100%);
	background-repeat: no-repeat;
}
.cta-button:after {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../images/line-vector.png) center left;
	background-repeat: no-repeat;
	opacity: 70%;
	mix-blend-mode: overlay;
}
.cta-button:before {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(
		269.62deg,
		rgba(48, 46, 187, 0.7) -33.76%,
		rgba(25, 23, 96, 0.72) 9.46%,
		rgba(29, 27, 110, 0.91) 32.07%,
		#1d1b6d 52.11%,
		#0c0b2e 122.65%
	);
}
.cta-button .global-heading p {
	color: #e4e4e4;
	margin-bottom: 0;
}
.cta-button-group {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}
.cta-button .global-heading {
	position: relative;
	z-index: 99;
}
.circle-left {
	position: absolute;
	width: 160px;
	height: 160px;
	background: url('data:image/svg+xml,<svg width="80" height="160" viewBox="0 0 80 160" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-6.99382e-06 -3.49691e-06C21.2173 -4.42435e-06 41.5656 8.42854 56.5685 23.4315C71.5715 38.4344 80 58.7827 80 80C80 101.217 71.5715 121.566 56.5685 136.569C41.5656 151.571 21.2173 160 1.52588e-05 160L5.81911e-06 118.585C10.2335 118.585 20.0479 114.52 27.284 107.284C34.5202 100.048 38.5854 90.2335 38.5854 80C38.5854 69.7665 34.5202 59.9521 27.284 52.716C20.0478 45.4798 10.2335 41.4146 -5.18353e-06 41.4146L-6.99382e-06 -3.49691e-06Z" fill="%23201E55"/></svg>');
	top: 91px;
	background-repeat: no-repeat;
	left: 0;
	z-index: 99;
}
.hl-card-box {
	position: relative;
	padding: 30px;
	height: 100%;
	background: #fff;
}
.latest-jobs {
	background: #fcfcff;
}
.job-block .row {
	row-gap: 25px;
}
.hl-card-box .card-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fcfcff;
	border-width: 1px;
	border-style: solid;
	border-image: linear-gradient(270deg, rgba(48, 46, 187, 0.1), rgba(12, 11, 46, 0.1)) 1;
	margin-bottom: 30px;
}
.hl-card-box:hover .card-icon {
	background: transparent;
	border: 1px solid rgb(255, 255, 255, 0.1);
}
.hl-card-box:hover .card-icon img {
	filter: invert(100%) sepia(91%) saturate(32%) hue-rotate(199deg) brightness(140%) contrast(109%);
	mix-blend-mode: luminosity;
}
.hl-card-box .card-icon img {
	opacity: 20%;
}
.hl-card-box .card-title {
	color: #0a1c52;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 14px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.hl-card-box:hover .card-title,
.hl-card-box:hover .address {
	color: #fff;
}
.hl-card-box:hover .card-desc {
	color: #fff;
	border-top: 1px solid rgb(255, 255, 255, 0.1);
}
.hl-card-box:hover .address svg path {
	stroke: #fff;
}
.hl-card-box .address {
	color: #515b6f;
	font-weight: 500;
	display: flex;
	gap: 6px;
}
.hl-card-box .address span {
	margin-top: -2px;
}
.hl-card-box .title-with-address {
	margin-bottom: 20px;
}
.hl-card-box .card-desc {
	padding-top: 20px;
	color: #515b6f;
	margin-bottom: 30px;
	border-top: 1px solid rgb(10 28 82 / 20%);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.hl-card-box .btn-fill {
	background: #0a1c52;
	border-color: #0a1c52;
	color: #fff;
	font-size: 16px;
	padding: 10px 24px;
}
.hl-card-box:hover {
	box-shadow: 0px 20px 80px rgba(121, 121, 253, 0.06);
	background: #0a1c52;
}
.hl-card-box:hover .btn-fill {
	background: #fff;
	border-color: #fff;
	color: #0a1c52;
}
.view-jobs a {
	color: #0a1c52;
	border: 1px solid rgb(10 28 82 / 20%);
}
.view-jobs a:hover {
	background: #0a1c52;
	border-color: #0a1c52;
	color: #fff;
}
.view-jobs {
	margin-top: 25px;
}
.card-testimonials .inner-content {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}
.card-testimonials .inner-content .client-img {
	width: 80px;
	height: 80px;
	background: #fff;
	overflow: hidden;
	border: 1px solid #dde1ed;
	box-shadow: 1.67196px 3.34392px 30.16px rgba(41, 44, 124, 0.05);
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.card-testimonials .inner-content .client-img img {
	width: 66px;
	height: 66px;
	border-radius: 100%;
}
.author-name-with h4 {
	margin: 0;
	background: linear-gradient(270deg, #302ebb 0%, #0c0b2e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	font-weight: 600;
	font-size: 20px;
	line-height: 19px;
	margin-bottom: 8px;
}
.author-name-with .desg {
	color: #424b5c;
	font-size: 14px;
	font-weight: 500;
}
.card-testimonials-desc {
	color: #515b6f;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin-bottom: 30px;
}
.rating-date ul {
	display: flex;
	gap: 10px;
}
.rating-date {
	display: flex;
	justify-content: space-between;
}
.date {
	color: #0a1c52;
	opacity: 40%;
	font-size: 14px;
}
.card-testimonials {
	padding: 30px;
	background: #fcfcff;
	border: 1px solid rgba(10, 28, 82, 0.1);
	border-radius: 10px;
}
.logo-img {
	position: absolute;
	right: 0;
	top: -171px;
	max-width: 440px;
}
.client-testimonials button {
	width: 43px;
	height: 43px;
	border: 1px solid #0a1c52 !important;
	border-radius: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}
.client-testimonials button:hover {
	background: linear-gradient(270deg, #302ebb 0%, #0c0b2e 100%) !important;
}
.client-testimonials button:hover svg path {
	fill: #fff;
}
.client-testimonials .owl-nav {
	display: flex;
	gap: 20px;
	margin: 0;
	position: absolute;
	right: 0;
	top: -93px;
}
.news-articles {
	background: url(../images/image-1.png) #fcfcff;
	background-position: center center;
	background-repeat: no-repeat;
}
.article-card {
	position: relative;
}
.article-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.article-thumbnail {
	height: 266px;
	overflow: hidden;
	position: relative;
	padding-bottom: 18px;
}
.article-card:hover .article-thumbnail img {
	transform: scale(1.05);
}
.article-card .meta-data {
	background: #fff;
	position: absolute;
	left: 0;
	bottom: 0px;
	padding: 9px 20px;
	color: #0a1c52 !important;
	font-family: 'ClashDisplay';
	font-weight: 500;
}
.article-content {
	padding-top: 30px;
}
.article-content h4 {
	color: #0a1c52;
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 20px;
}
.article-content p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin-bottom: 30px;
}
.view-more .btn {
	border: 1px solid rgba(10, 28, 82, 0.5);
	color: #0a1c52;
}
.view-more .btn:hover {
	border-color: #0a1c52;
	background: #0a1c52;
	color: #fff;
}

/*--------------- FOOTER CSS START -------------------*/
.site-footer {
	background: #0a1c52;
}
.footer-top {
	padding: 100px 0;
}
.footer-bottom {
	border-top: 2px solid rgb(255 255 255 / 10%);
	padding: 20px 0;
}
.footer-content {
	color: #d6ddeb;
	line-height: 27px;
}
.footer-widget a.logo-widget {
	margin-bottom: 30px;
	display: block;
}
.footer-widget h4 {
	color: #fff;
	font-weight: 600;
	margin-bottom: 30px;
	line-height: 30px;
}
.footer-links li a {
	color: #d6ddeb;
	text-transform: capitalize;
}
.footer-links li a:hover {
	color: #fff;
}
.footer-links li:not(:last-child) {
	margin-bottom: 20px;
}

.subscribe-block form {
	margin-top: 20px;
}
.subscribe-block form .form-group {
	display: flex;
	align-items: center;
	gap: 14px;
}
.subscribe-block form .form-group .form-control {
	background: rgba(255, 255, 255, 0.1);
	height: 51px;
	border: 0;
	border-radius: 0;
	padding: 12px 16px;
	color: #fff;
	font-weight: 400;
}
.subscribe-block form .form-group .form-control::placeholder {
	color: #fff;
	opacity: 60%;
}
.subscribe-block form .form-group .btn-fill {
	padding: 11px 24px;
	white-space: nowrap;
}
.copyright-text,
.copyright-text a {
	color: rgb(255 255 255 / 50%);
	font-weight: 400;
	text-transform: capitalize;
}
.copyright-text a:hover {
	color: #fff;
}
.footer-social ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 15px;
}
.footer-social ul li a {
	width: 45px;
	height: 45px;
	border-radius: 100%;
	background: rgb(255 255 255 / 10%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-social ul li a svg {
	width: 17px !important;
	height: 17px;
}
.footer-social ul li a:hover {
	background: #fff;
}
.footer-social ul li a:hover svg path {
	fill: #0a1c52;
}

/*------------- ABOUT US PAGE CSS START ---------------*/
.hero-inner-banner {
	padding: 260px 0 75px;
	background-size: cover;
	background-position: center;
}
.hero-inner-banner:before {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #0a1c52;
	opacity: 0.8;
}
.hero-inner-banner-content {
	position: relative;
}
.hero-inner-banner-content h1 {
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 50px;
	line-height: 60px;
}
.hero-inner-banner-content ul {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}
.hero-inner-banner-content ul li svg {
	max-width: 15px;
	height: 15px;
}
.hero-inner-banner-content ul li svg path {
	fill: #fff;
}
.hero-inner-banner-content ul li,
.hero-inner-banner-content ul li a {
	color: #fff;
	text-transform: capitalize;
}
.hero-inner-banner-content ul li a:hover {
	color: #ddd;
}

.about-us .row {
	row-gap: 30px;
}
.about-us .block-img img {
	height: 500px;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}
.about-us .block-img img.left,
.about-us .block-img img.right {
	object-position: -153px;
}
.group-counter {
	background-color: #ffffff;
	position: relative;
	padding: 40px 0px;
	margin-top: 50px;
	text-align: center;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
	border-radius: 20px;
}
.group-counter .widget-counter {
	border-right: 1px solid #e5e5e5;
}
.inner.wrap-counter h3 {
	font-weight: 500;
	color: #0a1c52;
	margin-bottom: 5px;
}
.group-counter .widget-counter .description {
	font-size: 18px;
	margin: 0;
}
.how-it-works {
	background: #fcfcff;
}

/*--------------- CONTACT US PAGE START -------------------*/
.btn-dark {
	background: #0a1c52;
	border-color: #0a1c52;
	color: #fff;
}
.btn-dark:hover {
	color: #0a1c52;
	border-color: #0a1c52;
	background: transparent;
}
.form-control {
	height: 55px;
	padding: 15px 20px;
	border-radius: 0;
	background: #fff;
	border-width: 1px;
	border-style: solid;
	border-image: linear-gradient(270deg, rgba(48, 46, 187, 0.1), rgba(12, 11, 46, 0.1)) 1;
	box-shadow: none !important;
	color: #000;
	font-size: 16px;
}
textarea.form-control {
	height: 150px;
	resize: none;
}
.contact-form-wrapper .row {
	row-gap: 20px;
}
.contact-info .contact-info-section {
	box-shadow: 0px 0px 25px rgba(56, 152, 226, 0.3);
	padding: 40px;
	background-color: #fff;
	max-width: calc(100% - 50px);
	position: relative;
}
.contact-info .contact-info-section:before {
	content: '';
	position: absolute;
	left: 0px;
	bottom: -57px;
	z-index: -1;
	width: 0;
	height: 0;
	border-left: 57px solid transparent;
	border-right: 0px solid transparent;
	border-top: 57px solid #d8d8d8;
}
.contact-info-section .c-info-icon img {
	max-width: 22px;
}
.contact-info-section .c-info-icon {
	background: rgb(10 28 82);
	width: 50px;
	height: 50px;
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	line-height: 0;
}
.contact-info-section .c-info-column {
	display: flex;
	gap: 30px;
}
.contact-info-section > *:not(:last-child) {
	margin-bottom: 30px;
}
.contact-info-section .c-info-column .c-info h4 {
	font-weight: 500;
	color: #0a1c52;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 12px;
}
.contact-info-section .c-info-column .c-info p {
	margin-bottom: 0;
	line-height: 26px;
}
.contact-info-section .c-info a {
	color: #515b6f;
}
.contact-info-section .c-info a:hover {
	color: #302ebb;
}
.google-online {
	line-height: 0;
}
.contact-form {
	padding: 0 !important;
}
.contact-box-outer {
	position: relative;
	/* padding: 120px 0; */
}
.contact-info:before {
	content: '';
	position: absolute;
	max-width: calc(100% - 57px);
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #f0f6fe;
	z-index: -1;
	width: 100%;
}
.contact-info {
	position: relative;
	padding: 230px 0 230px 0;
	margin-left: 50px;
}
.google-online {
	padding: 0 !important;
}

/*--------------- BLOG PAGE CSS START ------------------*/
.article-block .row {
	row-gap: 35px;
}
.pagination-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 15px;
	background: #ffffff;
	box-shadow: 0 0.8rem 2rem rgba(90, 97, 129, 0.05);
	padding: 15px 25px;
	margin: 30px auto 0;
	max-width: fit-content;
	gap: 20px;
	flex-wrap: wrap;
}
.page-numbers,
.page-btn,
.page-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}
.page-dots {
	width: 42px;
	height: 42px;
	color: #0a1c52;
	cursor: initial;
}
.page-numbers {
	width: 42px;
	height: 42px;
	border-radius: 10px;
}
.page-numbers:hover {
	background-color: #0a1c52;
	color: #fff;
}
.page-numbers.active {
	color: #ffffff;
	background: #0a1c52;
	border: 1px solid #0a1c52;
}
.page-btn {
	color: #0a1c52;
	pointer-events: none;
}
.page-btn.active {
	color: #0a1c52;
	pointer-events: initial;
}
.page-btn.active:hover {
	color: #0a1c52;
}
.page-btn .site-icons svg {
	max-width: 15px;
	height: 15px;
}

/*-------------- BLOG DETAIL CSS START --------------------*/
.blog-details-meta .img-meta img {
	height: 500px;
	width: 100%;
	object-fit: cover;
}
.blog-details-meta .img-meta {
	margin-bottom: 30px;
}
.blog-heading {
	margin-top: 15px;
	font-weight: 600;
	background: linear-gradient(270deg, #302ebb 0%, #0c0b2e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.blog-details-meta p {
	margin-bottom: 25px;
}
.blog-details-meta h4,
.blog-details-meta h5,
.blog-details-meta h6 {
	color: #0a1c52;
	font-weight: 600;
	background: linear-gradient(271deg, #302ebb 8%, #0c0b2e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
blockquote {
	text-align: center;
	background: #ecf1ff;
	border-radius: 15px;
	padding: 45px;
	margin: 50px 0 50px;
}

blockquote h3 {
	color: #0a1c52;
}
blockquote .name {
	color: #0a1c52;
	text-transform: capitalize;
}
.description-list-2 li {
	padding-left: 25px;
	position: relative;
	margin-bottom: 20px;
}
.description-list-2 li:before {
	position: absolute;
	content: '';
	left: 0;
	top: 3px;
	border: 2px solid #000;
	width: 8px;
	height: 14px;
	transform: rotate(45deg);
	border-top: 0;
	border-left: 0;
}
.bottom-widget {
	margin: 50px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}
.tags ul,
.share-icon ul,
.keyword-list {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}
.tags li a,
.keyword-list li a {
	text-transform: capitalize;
	padding: 8px 21px;
	color: #0a1c52;
	border-radius: 30px;
	background: #ecf1ff;
	transition: all 0.2s ease-in-out 0s;
	display: block;
	text-align: center;
}
.tags li a:hover,
.keyword-list li a:hover {
	background: #0a1c52;
	color: #fff;
}
.share-icon a {
	width: 42px;
	height: 42px;
	background: #ecf1ff;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.share-icon a:hover {
	background: #0a1c52;
}
.share-icon a svg {
	height: 18px;
	width: 100%;
}
.share-icon a svg path {
	fill: #0a1c52;
}

.share-icon a:hover svg path {
	fill: #fff;
}
.blog-comment-area {
	padding-top: 50px;
	border-top: 1px solid rgb(10 28 82 / 22%);
}
.blog-comment-area .blog-inner-title {
	color: #0a1c52;
	font-weight: 600;
}
.blog-comment-area .comment {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
	padding: 35px;
	border-width: 1px;
	border-style: solid;
	border-image: linear-gradient(270deg, rgba(48, 46, 187, 0.1), rgba(12, 11, 46, 0.1)) 1;
}
.blog-comment-area .comment .image-box {
	max-width: 100px;
	flex: 100px;
}
.blog-comment-area .comment img {
	width: 100px;
	height: 100px;
	border-radius: 100%;
	object-fit: cover;
}
.blog-comment-area .comment .comment-text {
	max-width: calc(100% - 100px);
	flex: calc(100% - 100px);
	padding-left: 25px;
}
.blog-comment-area .comment .comment-text .name {
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	color: #0a1c52;
}
.blog-comment-area .comment .comment-text p {
	margin: 10px 0 30px;
}
.blog-comment-area .comment .comment-text .btn {
	padding: 10px 20px;
	line-height: 24px;
	font-size: 16px;
}
.blog-comment-form {
	padding: 40px;
	border-width: 1px;
	border-style: solid;
	border-image: linear-gradient(270deg, rgba(48, 46, 187, 0.1), rgba(12, 11, 46, 0.1)) 1;
	background: #fcfcff;
}
.blog-comment-form .blog-inner-title {
	color: #0a1c52;
	font-size: 30px;
	text-transform: capitalize;
	font-weight: 600;
	background: linear-gradient(271deg, #302ebb 72%, #0c0b2e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.blog-comment-form form {
	margin-top: 30px;
}
.blog-comment-form form .input-wrapper {
	margin-bottom: 25px;
}
.blog-comment-form form .input-wrapper label {
	font-weight: 500;
	color: #0a1c52;
	display: block;
	margin-bottom: 5px;
}
.blog-sidebar {
	padding-left: 50px;
}
.search-form {
	display: flex;
	align-items: center;
}
.search-form .btn {
	white-space: nowrap;
}
.blog-sidebar > * {
	margin-bottom: 40px;
}
.blog-sidebar .sidebar-title {
	text-transform: capitalize;
	font-weight: 600;
	background: linear-gradient(271deg, #302ebb 72%, #0c0b2e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.category-list-block li a {
	color: #515b6f;
	text-transform: capitalize;
	border-bottom: 1px solid rgb(10 28 82 / 14%);
	display: block;
	padding: 12px 0;
}
.category-list-block li:last-child a {
	padding-bottom: 0;
	border: 0;
}
.category-list-block li a:hover {
	color: #0a1c52;
	padding-left: 10px;
}
.sidebar-recent-news .news-block {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid rgb(10 28 82 / 14%);
	padding: 15px 0;
	position: relative;
}
.news-block .block-img {
	max-width: 80px;
	flex: 80px;
	overflow: hidden;
}
.news-block .post {
	max-width: calc(100% - 80px);
	flex: calc(100% - 80px);
	padding-left: 15px;
}
.news-block:hover .block-img img {
	transform: scale(1.08);
}
.news-block .block-img img {
	width: 80px;
	height: 80px;
	object-fit: cover;
}
.news-block .post .post-title {
	margin-bottom: 0;
}
.news-block .post .post-title a {
	color: #0a1c52;
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	display: block;
}
.news-block:hover .post .post-title a {
	color: #0d6efd;
}
/*---------- LOGIN FORM START --------------*/
.default-form h3 {
	color: #0a1c52;
}
.default-form .form-inner .form-group {
	margin-bottom: 25px;
	position: relative;
}
.field-outer {
	display: flex;
	justify-content: space-between;
}
.bottom-box {
	text-align: center;
	text-transform: capitalize;
}
.register-as {
	margin-top: 15px;
}
a.pwd {
	text-transform: capitalize;
}
.register-as .ctrlbp-radio {
	width: 20px;
	height: 20px;
	appearance: none;
	border: 1px solid #d2dbf3;
	border-radius: 100%;
	position: relative;
}
.register-as .ctrlbp-radio:checked:before {
	background: #0a1c52;
	border-color: #0a1c52;
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 12px;
	height: 12px;
	border-radius: 100%;
}
.register-as label {
	margin-bottom: 0 !important;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	margin-right: 40px;
}
.required-field {
	color: red;
}
.password-icon img {
	max-width: 20px;
	opacity: 0.5;
	width: 20px;
	height: 20px;
}
.password-icon {
	position: absolute;
	right: 25px;
	top: 45px;
	cursor: pointer;
}
.password-icon:before {
	position: absolute;
	content: '';
	width: 1px;
	height: 24px;
	background: #000;
	transform: rotate(-41deg);
	right: 0;
	left: 0;
	margin: auto;
	top: 0;
	bottom: 0;
	opacity: 0.5;
}
.eye-open:before {
	display: none;
}
#pass_log_id {
	padding-right: 60px;
}
/*-------------- JOB LISTING START -------------------*/
.job-listing {
	background: #fcfcff;
}

.job-block-item {
	padding: 30px;
	border-width: 1px;
	border-style: solid;
	border-image: linear-gradient(270deg, rgba(48, 46, 187, 0.1), rgba(12, 11, 46, 0.1)) 1;
	background: #fff;
	margin-bottom: 25px;
}
.job-wrapper.list .job-block-item {
	display: flex;
	flex-wrap: wrap;
}
.job-block-item:hover {
	box-shadow:
		rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
		rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.sidebar-widget > * {
	padding: 25px;
	border-width: 1px;
	border-style: solid;
	border-image: linear-gradient(270deg, rgba(48, 46, 187, 0.1), rgba(12, 11, 46, 0.1)) 1;
	background: #fff;
}
.job-wrapper .job-company-img {
	height: 175px;
	border-width: 1px;
	border-style: solid;
	border-image: linear-gradient(270deg, rgba(48, 46, 187, 0.1), rgba(12, 11, 46, 0.1)) 1;
}
.job-wrapper.list .job-company-img {
	max-width: 175px;
	flex: 175px;
}
.job-wrapper .job-company-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.job-wrapper.list .job-info {
	max-width: calc(100% - 175px);
	flex: calc(100% - 175px);
	padding-left: 25px;
}
.job-wrapper.grid .job-info {
	padding-top: 25px;
}
.job-wrapper .job-info .sidebyside .time {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #0a1c52;
	opacity: 40%;
	font-size: 14px;
	flex: 1;
	justify-content: flex-end;
}
.job-wrapper .job-info .sidebyside .time i {
	line-height: 15px;
}

.job-wrapper .job-info .sidebyside {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.tag-wid:before {
	content: '';
	width: 8px;
	height: 8px;
	display: block;
	background: #ff7b7b;
	border-radius: 100%;
}
.tag-wid {
	background: #ffe9e9;
	padding: 8px 15px;
	color: #ff7b7b;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: fit-content;
}
.job-wrapper .job-info .title a {
	color: #0a1c52;
	font-weight: 600;
}
.job-wrapper .job-block-item .job-info .title a:hover {
	color: #0d6efd;
}
.job-wrapper .job-info .title {
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 30px;
}
.job-wrapper .job-info .job-info-inner {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.job-wrapper .job-info .job-info-inner li {
	flex: auto;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	text-transform: capitalize;
}
.job-wrapper .job-info .job-info-inner li a {
	color: #515b6f;
}
.job-wrapper .job-info .job-info-inner li a:hover {
	color: #0a1c52;
	font-weight: 600;
	text-decoration: underline !important;
}
.job-wrapper .job-info .job-info-inner li i {
	font-size: 15px;
	color: #0a1c52;
	line-height: 15px;
}
.location-block .map-locator {
	position: absolute;
	top: 18px;
	right: 20px;
	height: 15px;
}
.location-block .form-control {
	padding-right: 50px;
}
.sidebar-widget .sidebar-title {
	color: #0a1c52;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 20px;
}
.sidebar-widget > * {
	margin-bottom: 30px;
}

.checkbox-form input[type='checkbox'] {
	width: 20px;
	height: 20px;
	appearance: none;
	border: 1px solid #515b6f;
	position: relative;
}
.checkbox-form input[type='checkbox']:checked {
	background: #0a1c52;
	border-color: #0a1c52;
}
.checkbox-form label {
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
}

.checkbox-form li {
	margin-bottom: 18px;
	text-transform: capitalize;
}
.checkbox-form li:last-child {
	margin-bottom: 0;
}
.checkbox-form input[type='checkbox']:checked:before {
	position: absolute;
	content: '';
	left: 6px;
	top: 2px;
	border: 2px solid #fff;
	width: 6px;
	height: 10px;
	transform: rotate(45deg);
	border-top: 0;
	border-left: 0;
}
.tags-block a {
	font-size: 14px;
	padding: 6px 18px;
	line-height: 24px;
}
.tags-block ul {
	gap: 10px;
}
.filter-switcher {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.sort-by {
	display: flex;
	flex: 1;
	gap: 15px;
	justify-content: end;
}
.sort-by .select2-container {
	max-width: 150px;
}
.list-grid .btn {
	padding: 0;
	width: 55px;
	height: 55px;
	border-width: 1px;
	border-style: solid;
	border-image: linear-gradient(270deg, rgba(48, 46, 187, 0.1), rgba(12, 11, 46, 0.1)) 1;
	background: #fff;
	font-size: 23px;
	line-height: 0;
}
.list-grid .btn:hover,
.list-grid .btn.active {
	background: #0a1c52;
	border-color: #0a1c52;
	color: #fff;
}
.list-grid .btn i {
	transition: none;
}
.list-grid {
	display: flex;
	gap: 15px;
}
.sort-by select {
	margin-right: 15px;
	width: fit-content;
	margin-left: auto;
}
.job-wrapper.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 25px;
}

/*------------------ JOB DETAIL START ---------------------*/
.job-single {
	background: #fcfcff;
}
.job-set {
	display: flex;
	flex-wrap: wrap;
}

.job-set .company-logo {
	max-width: 150px;
	height: 150px;
	flex: 150px;
	border-width: 1px;
	border-style: solid;
	border-image: linear-gradient(270deg, rgba(48, 46, 187, 0.1), rgba(12, 11, 46, 0.1)) 1;
}
.job-set .company-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #fff;
}

.job-set .job-description {
	max-width: calc(100% - 150px);
	flex: calc(100% - 150px);
	padding-left: 20px;
}
.job-description .title {
	color: #0a1c52;
	margin-top: 20px;
	font-size: 24px;
	line-height: 34px;
	font-weight: 600;
}
.job-description .info-box li img {
	max-width: 15px;
	min-width: 15px;
	position: relative;
	top: -1px;
}
.job-description .info-box {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.job-description .info-box li i {
	font-size: 15px;
	color: #0a1c52;
	line-height: 15px;
}
.job-description .info-box li {
	display: flex;
	font-size: 14px;
	text-transform: capitalize;
	align-items: center;
	gap: 10px;
}

.banner-button-set .btn-outline {
	border: 1px solid rgba(10, 28, 82, 0.5);
	color: #0a1c52;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.banner-button-set {
	margin-top: 30px;
}
.banner-button-set .btn-outline:hover {
	background: #0a1c52;
	color: #fff;
}
.banner-button-set .btn-outline i {
	font-size: 20px;
	line-height: 1;
	display: inline-flex;
	transition: none;
}
.sidebyside-btn {
	display: flex;
	justify-content: space-between;
	margin-top: 70px;
}
.jobstack-content h4 {
	background: linear-gradient(271deg, #302ebb 80%, #0c0b2e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	font-weight: 600;
	margin-bottom: 20px;
}
.list-style-three li {
	margin-bottom: 15px;
	padding-left: 25px;
	position: relative;
}
.list-style-three li:before {
	position: absolute;
	content: '';
	left: 0;
	top: 9px;
	width: 7px;
	height: 7px;
	background: #0a1c52;
	transform: rotate(45deg);
}
.list-style-three li strong {
	font-weight: 600;
	color: #0a1c52;
}

.related-jobs {
	margin-top: 50px;
}
.related-jobs h3 {
	background: linear-gradient(271deg, #302ebb 80%, #0c0b2e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	font-weight: 600;
}
.job-skills li a {
	text-transform: capitalize;
	padding: 5px 18px;
	color: #0a1c52;
	border-radius: 30px;
	background: #ecf1ff;
	transition: all 0.2s ease-in-out 0s;
	display: block;
	text-align: center;
	font-size: 14px;
}

.job-skills li a:hover {
	background: #0a1c52;
	color: #fff;
}
.job-skills {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.job-overview h5 {
	font-size: 18px;
	margin: 0;
	line-height: 28px;
	color: #0a1c52;
}
.job-overview li {
	border-bottom: 1px solid #e5e4f5;
	padding: 15px 0;
	display: flex;
	gap: 10px;
	text-transform: capitalize;
}
.job-overview .icon-left i {
	position: relative;
	color: #0a1c52;
	top: 2px;
}
.jobstack-content h4 {
	margin-top: 50px;
}

/*------------ SELECT CSS --------------------*/
.select2-container--default .select2-selection {
	border: 1px solid #eaeaf8 !important;
	border-radius: 0;
}
.select2-container--default .select2-selection--single {
	height: 55px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #515b6f;
	line-height: 55px;
	padding: 0px 35px 0px 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 55px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}
.select2 .selection .select2-selection .select2-selection__arrow {
	width: 18px;
	height: 18px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 14px;
	background: url(../images/down-arrow.svg) no-repeat center;
	transition: 0s;
}
.select2.select2-container--open .selection .select2-selection .select2-selection__arrow {
	transform: translateY(-50%) rotate(-180deg);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #e6e6e9;
	outline: 0;
}
.select2-dropdown {
	border: 1px solid #e6e6e9;
	border-radius: 0;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #0a1c52 !important;
	color: white;
}
.select2-container--default .select2-results__option[aria-selected='true'] {
	background-color: #eaeaf8;
}
.select2-container {
	width: 100% !important;
}
.select2-container--default .select2-selection--multiple {
	min-height: 55px;
	display: flex;
	align-items: center;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
	min-height: 45px;
	padding: 0px 20px;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__rendered
	.select2-search__field {
	padding: 5px;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__rendered
	.select2-search__field::placeholder {
	color: #0a1c52;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
	padding: 4px 6px;
	color: #0a1c52;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	color: #0a1c52;
	margin-right: 4px;
	font-weight: 600;
}
/*-------------- DASHBOARD PAGE CSS----------------*/
/*---------- DASHBOARD --------------*/
.dashboard-header .container-fluid {
	/* max-width: 1700px; */
	padding: 0px;
}
.fixed-header {
	position: sticky !important;
	left: 0;
	right: 0;
	top: 0;
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.dashboard-header {
	box-shadow: 15px 6px 15px rgba(64, 79, 104, 0.05);
	padding: 18px 30px;
	background: #fff;
	z-index: 99;
	position: relative;
	transition: all 0.4s ease-in-out;
}
.logo-box img {
	max-width: 150px;
}
.main-header .nav-link {
	color: #0a1c52;
	text-transform: capitalize;
	padding: 5px 0 !important;
	position: relative;
}
.main-header .nav-link:before {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: #0a1c52;
	transition: all 0.4s ease-in-out;
}
.main-header .nav-link:hover:before {
	width: 100%;
}
.main-header ul.navbar-nav {
	gap: 40px;
}
.main-header .navbar-toggler {
	padding: 0px;
	border: none;
	box-shadow: none;
}
.main-header .navbar-toggler .navbar-toggler-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none !important;
	font-size: 24px;
}
.main-header .asidemenu {
	box-shadow: none;
	border: none;
	background-color: #0a1c52;
	width: 36px;
	height: 36px;
}
.main-header .asidemenu img {
	width: 100%;
}
.menubtn {
	align-items: center;
	gap: 10px;
}

.account-dropdown .dropdown-toggle {
	padding: 0;
	border: 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
}
.account-dropdown .dropdown-toggle img {
	height: 50px;
	width: 50px;
	border-radius: 50%;
	overflow: hidden;
}

.account-dropdown .dropdown-toggle .name {
	position: relative;
	display: block;
	font-size: 12px;
	line-height: 16px;
	color: #0a1c52;
	font-weight: 600;
	text-align: start;
}
.account-dropdown .dropdown-toggle .username {
	display: flex;
	flex-direction: column;
	margin: 0px 10px 0px 15px;
	justify-content: start;
}
.account-dropdown .dropdown-toggle .username .welcome {
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
	color: #000;
}
.copyright-footer {
	padding: 15px 0;
	max-width: calc(100% - 350px);
	margin-left: auto;
}
.user-sidebar {
	position: fixed;
	left: 0;
	bottom: 0;
	height: calc(100%);
	max-width: 350px;
	background: #ffffff;
	overflow: auto;
	transition: all 300ms ease;
	z-index: 9;
	box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
	width: 100%;
	overflow: hidden;
}
.user-sidebar .logo-box {
	padding: 18px;
	border-bottom: 1px solid #f5f5f5;
	text-align: center;
}
.user-sidebar::-webkit-scrollbar {
	width: 0;
}
.user-sidebar li a {
	padding: 15px 30px;
	display: flex;
	text-transform: capitalize;
	color: #0a1c52;
	align-items: center;
	gap: 12px;
}
.user-sidebar li a i {
	font-size: 20px;
	line-height: 18px;
	transition: none;
}
.user-sidebar li.active a,
.user-sidebar li a:hover {
	background: #0a1c52;
	color: #fff;
}
.user-sidebar .sidebar-inner {
	position: relative;
	height: 100%;
}
.user-sidebar .sidebar-inner .closebtn {
	box-shadow: none;
	position: absolute;
	top: 25px;
	right: 20px;
	transition: all ease-in-out 0.4s;
	width: 35px;
	height: 35px;
	padding: 10px;
	align-items: center;
	justify-content: center;
	background-color: #0a1c52;
	border: 1px solid transparent;
}
.user-sidebar .sidebar-inner .closebtn img {
	filter: invert(1);
}
.user-sidebar .sidebar-inner .closebtn:hover {
	background-color: transparent;
	border-color: #0a1c52;
}
.user-sidebar .sidebar-inner .closebtn:hover img {
	filter: invert(0);
}
.user-sidebar .sidebar-inner .navigation {
	height: 100%;
	overflow: hidden auto;
}

.dashboard-outer {
	padding: 30px;
}
.user-dashboard {
	max-width: calc(100% - 350px);
	margin-left: auto;
	background: #fcfcff;
}
.upper-title-box h2 {
	font-weight: 600;
	color: #0a1c52;
	font-size: 38px;
	line-height: 48px;
	margin: 0 0 8px 0;
}
.account-dropdown .dropdown-menu {
	padding: 0;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: rgb(10 28 82 / 12%) 0px 10px 50px;
	border: 0;
	width: 100%;
	min-width: 250px;
}
.account-dropdown .dropdown-menu .dropdown-item {
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 15px;
}
.account-dropdown .dropdown-menu .dropdown-item i {
	font-size: 20px;
	color: #2e2cb4;
	width: 20px;
	text-align: center;
	line-height: 0;
}
.account-dropdown .dropdown-menu .dropdown-item:hover {
	background: #eaefff;
	color: #2e2cb4;
}
.account-dropdown .dropdown-menu .dropdown-item i.flaticon-exit {
	font-size: 15px !important;
}
.sidebar-inner .flaticon-bookmark-white,
.sidebar-inner .flaticon-exit {
	font-size: 15px;
	width: 20px;
	text-align: center;
}
.default-form label {
	text-transform: capitalize;
	color: #0a1c52;
	font-weight: 500;
	margin-bottom: 5px;
}
.hal-widget .tab-box {
	background: #ffff;
	padding: 35px;
	margin-top: 50px;
	box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}
.hal-widget .widget-title h4 {
	margin-bottom: 30px;
	color: #0a1c52;
}
.default-form .row {
	row-gap: 25px;
}

.default-form .file-group .choosefile {
	display: flex;
	align-items: center;
	gap: 20px;
}
.default-form .preview-image {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
	gap: 10px;
}
.default-form .preview-image li {
	max-width: 200px;
	max-height: 200px;
	overflow: hidden;
}
.default-form .preview-image li img {
	object-fit: contain;
}
/* ------- Aplicant Page Css-------- */
.aplicant-job,
.selects {
	display: flex;
	align-items: center;
	row-gap: 20px;
}
.aplicant-job {
	justify-content: space-between;
}
.aplicant-job h4 {
	margin: 0px !important;
}
.aplicant-job .selects {
	gap: 10px;
}
.aplicant-job .selects .form-group {
	min-width: 180px;
}
.aplicant-job .selects .form-control option {
	font-size: 14px;
	line-height: 20px;
}
.job-category {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 20px;
	background-color: #f7f7f7;
	margin: 30px 0px;
	border-radius: 6px;
	row-gap: 4px;
	column-gap: 20px;
}
.job-category h5,
.job-category .count-result {
	margin: 0px;
	color: #0a1c52;
}
.job-category h5 {
	font-size: 18px;
	line-height: 28px;
}
.job-category .count-result {
	font-size: 16px;
	line-height: 26px;
	font-weight: 600;
}
.aplicant-card-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.aplicant-card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 40px 20px;
	border-radius: 10px;
	background-color: #f5f5f5;
	transition: all ease-in-out 0.3s;
	position: relative;
}
.aplicant-card:hover {
	background-color: #fff;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.aplicant-card .user-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	flex: 0 0 auto;
	overflow: hidden;
	box-shadow: 0px 0px 4px 0px #0a1c5229;
}
.aplicant-card .user-img img {
	width: 100%;
	height: 100%;
}
.aplicant-card .content-body .title {
	margin: 0px 0px 5px;
	font-size: 18px;
	line-height: 28px;
	color: #0a1c52;
	font-weight: 500;
}
.aplicant-card .content-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1 1 auto;
	flex-wrap: wrap;
	gap: 20px;
}
.aplicant-card .content-body ul {
	flex-wrap: wrap;
	gap: 10px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
}
.aplicant-card .content-body ul,
.aplicant-card .content-body ul li,
.aplicant-card .content-body ul li i {
	display: flex;
	align-items: center;
}
.aplicant-card .content-body ul li {
	gap: 5px;
}
.aplicant-card .pdfbtn {
	box-shadow: none;
	border: none;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	transition: all ease-in-out 0.3s;
}
.aplicant-card .pdfbtn:hover {
	color: #fff;
	background-color: #0a1c52;
}
/* company-profile */
.company-profile .job-set {
	padding: 20px;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	align-items: center;
}
.company-profile .job-set .job-description .title {
	margin-top: 0px;
}
.company-profile .company-interior {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 20px;
}
.company-profile .company-interior .inner-img {
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
}
.company-profile .company-interior .inner-img:not(:first-child) {
	width: calc(50% - 15px);
}
.company-profile .company-interior .inner-img img {
	width: 100%;
	transition: all ease-in-out 0.4s;
}
.company-profile .company-interior .inner-img:hover img {
	transform: scale(1.1);
}
.company-profile .share-icon ul li {
	padding: 0px;
	border: none;
}
.company-profile .job-overview li {
	text-transform: unset;
}
.company-profile .job-overview li:last-child {
	border: none;
	padding-bottom: 0px;
}
.company-profile .job-skills-block form .input-wrapper {
	margin-bottom: 25px;
}
.company-profile .job-skills-block form .btn {
	width: 100%;
}
.company-profile .sidebyside .tag-wid {
	background: #dcfff0;
	color: #0dae71;
}
.company-profile .sidebyside .tag-wid:before {
	background: #0dae71;
}
.company-profile .job-overview .icon-left span {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	margin-top: 4px;
}
