﻿
/* =====================================================
BookingMed public site css
=======================================================*/

:root {
	--star-rating-size: 25px;
	--star-rating-max: 5;
	--color-main-action: #00C2C2;
	--color-action-emp: #008080;
	--color-background: #F2F2F2;
	--color-primary-text: #333333;
}

/* =====================================================
Bootstrap override
=======================================================*/

.btn-primary, .btn-primary:active, .btn-primary:visited {
	background-color: #00C2C2 !important;
}

	.btn-primary:hover {
		background-color: #00A2A2 !important;
	}


/* =====================================================
Template Name   : Jobox
Description     : Job Board And Hiring HTML5 Template
Author          : Themesland
Version         : 1.2
=======================================================*/

/* ===================
fonts
====================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Roboto:wght@100;300;400;500;700;900&display=swap');

@import url("https://use.typekit.net/iat5bhf.css");

/* ===================
general css
====================== */

*,
*:before,
*:after {
	box-sizing: inherit;
}

* {
	scroll-behavior: inherit !important;
}

html,
body {
	height: auto;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-size: 16px;
	font-weight: normal;
	color: #757F95;
	line-height: 1.8;
}

a {
	color: var(--color-primary-text);
	display: inline-block;
}

	a,
	a:active,
	a:focus,
	a:hover {
		outline: none;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		text-decoration: none;
	}

		a:hover {
			color: #0049D0;
		}

ul {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-primary-text);
	margin: 0px;
	font-weight: 700;
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.4;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2.2rem;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 1.375rem;
}

h5 {
	font-size: 1.125rem;
}

h6 {
	font-size: 1rem;
}

p {
	margin: 0px;
}

.img,
img {
	max-width: 100%;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	height: auto;
}

label {
	color: #999;
	cursor: pointer;
	font-weight: 400;
}

*::-moz-selection {
	background: #d6b161;
	color: #fff;
	text-shadow: none;
}

::-moz-selection {
	background: #555;
	color: #fff;
	text-shadow: none;
}

::selection {
	background: #555;
	color: #fff;
	text-shadow: none;
}

*::-moz-placeholder {
	color: #999;
	font-size: 1rem;
	opacity: 1;
}

*::placeholder {
	color: #999;
	font-size: 1rem;
	opacity: 1;
}

/* ===================
preloader
====================== */

.preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	top: 0;
	left: 0;
	z-index: 9999;
}

.loader {
	position: absolute;
	text-align: center;
	width: 180px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

	.loader span {
		display: inline-block;
		width: 20px;
		height: 20px;
		border-radius: 100%;
		background-color: var(--color-main-action);
		margin: 35px 10px;
	}

		.loader span:nth-child(1) {
			animation: loader-bounce 1s ease-in-out infinite;
		}

		.loader span:nth-child(2) {
			animation: loader-bounce 1s ease-in-out 0.33s infinite;
		}

		.loader span:nth-child(3) {
			animation: loader-bounce 1s ease-in-out 0.66s infinite;
		}

@keyframes loader-bounce {
	0%, 75%, 100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	25% {
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-o-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}




/* ===================
theme default css
====================== */

.ovrflow-hidden {
	overflow: hidden;
}

.text-right {
	text-align: right;
}

.space-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.c-pd {
	padding: 0 7rem;
}

.s-pd {
	padding: 0 12rem;
}

.h-100 {
	height: 100%;
}

.h-100vh {
	height: 100vh;
}

.bg {
	background-color: var(--color-background);
}





/* ===================
site title css
====================== */

.site-heading {
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
}

.site-title-tagline {
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--color-main-action);
	position: relative;
	padding-left: 4px;
}

	.site-title-tagline::after {
		content: "";
		position: absolute;
		background-color: var(--color-main-action);
		border-radius: 50px;
		height: 18px;
		width: 100%;
		left: 0;
		bottom: -7px;
		opacity: 0.1;
	}

.site-title {
	font-weight: 700;
	font-size: 2.1875rem;
	color: var(--color-primary-text);
	margin-top: 4px;
	margin-bottom: 0;
}

	.site-title span {
		color: var(--color-main-action);
	}

.site-heading p {
	margin-top: 5px;
	font-size: 1.1875rem;
}

.heading-divider {
	display: inline-block;
	position: relative;
	height: 3px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background-color: var(--color-main-action);
	width: 90px;
	overflow: hidden;
}

	.heading-divider:after {
		content: '';
		position: absolute;
		left: 0;
		top: -1.1px;
		height: 7px;
		width: 8px;
		background-color: #ffffff;
		-webkit-animation: heading-move 5s infinite linear;
		animation: heading-move 5s infinite linear;
	}

@-webkit-keyframes heading-move {
	0% {
		transform: translateX(-1px);
	}

	50% {
		transform: translateX(85px);
	}

	100% {
		transform: translateX(-1px);
	}
}

@keyframes heading-move {
	0% {
		transform: translateX(-1px);
	}

	50% {
		transform: translateX(85px);
	}

	100% {
		transform: translateX(-1px);
	}
}


@media all and (max-width: 992px) {
	.shadow-title {
		font-size: 6.25rem;
	}
}



/* ===================
margin & padding
====================== */

.pb-140 {
	padding-bottom: 140px;
}

.pd-50 {
	padding: 50px 0;
}

.py-120 {
	padding: 120px 0;
}

.py-60 {
	padding: 60px 0;
}

.pt-120 {
	padding-top: 120px;
}

.pb-120 {
	padding-bottom: 120px;
}

.pt-0 {
	padding-top: 0px;
}

.pt-10 {
	padding-top: 10px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-30 {
	padding-top: 30px;
}

.pt-40 {
	padding-top: 40px;
}

.pt-50 {
	padding-top: 50px;
}

.pt-60 {
	padding-top: 60px;
}

.pt-70 {
	padding-top: 70px;
}

.pt-80 {
	padding-top: 80px;
}

.pt-90 {
	padding-top: 90px;
}

.pt-100 {
	padding-top: 100px;
}

.pb-0 {
	padding-bottom: 0px;
}

.pb-10 {
	padding-bottom: 10px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-70 {
	padding-bottom: 70px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-90 {
	padding-bottom: 90px;
}

.pb-100 {
	padding-bottom: 100px;
}

.mt-0 {
	margin-top: 0px;
}

.mt-10 {
	margin-top: 10px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-60 {
	margin-top: 60px;
}

.mt-70 {
	margin-top: 70px;
}

.mt-80 {
	margin-top: 80px;
}

.mt-90 {
	margin-top: 90px;
}

.mt-100 {
	margin-top: 100px;
}

.mb-0 {
	margin-bottom: 0px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-90 {
	margin-bottom: 90px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mr-300 {
	margin-right: 300px;
}

.ml-300 {
	margin-left: 300px;
}

.pos-rel {
	position: relative;
	z-index: 1;
}

/* ===================
theme button
====================== */

.theme-btn {
	font-size: 1rem;
	color: #ffffff;
	padding: 10px 20px;
	transition: all 0.5s;
	position: relative;
	border-radius: 10px;
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	overflow: hidden;
	border: none;
	background: var(--color-main-action);
	box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
	z-index: 1;
}

	.theme-btn::before {
		content: "";
		height: 300px;
		width: 300px;
		background: var(--color-primary-text);
		border-radius: 50%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%) scale(0);
		transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		z-index: -1;
	}

	.theme-btn:hover {
		color: #fff;
	}

		.theme-btn:hover::before {
			transform: translateY(-50%) translateX(-50%) scale(1);
		}

	.theme-btn i {
		margin-left: 5px;
	}

	.theme-btn span {
		margin-right: 5px;
	}

.theme-btn2 {
	background: #22222220;
	color: var(--color-action-emp);
	box-shadow: none;
}

	.theme-btn2::before {
		background: var(--color-action-emp);
	}

	.theme-btn2:hover {
		color: #fff;
	}


.theme-btn-red {
	background: #dc3545;
	color: #fff;
	box-shadow: none;
}

	.theme-btn-red::before {
		background: #fff;
	}

	.theme-btn-red:hover {
		color: darkred;
	}


/* ===================
scroll-top css
====================== */

#scroll-top {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 1.5rem;
	border: none;
	outline: none;
	border-radius: 50px;
	color: #fff;
	background: var(--color-main-action);
	cursor: pointer;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	transition: all .5s ease-in-out;
	z-index: 1;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
	#scroll-top {
		bottom: 80px;
	}
}


.main-navigation .navbar {
	background-color: white;
}

/* ===================
nav menu css
====================== */
.main {
	margin-top: -7rem;
}

@media all and (min-width: 992px) {
	.navbar .nav-item .nav-link {
		margin-right: 22px;
		padding: 20px 0 20px 0;
		font-size: 1.0625rem;
		font-weight: 600;
		color: var(--color-primary-text);
	}

	.navbar .nav-item:last-child .nav-link {
		margin-right: 0;
	}

	.navbar .nav-item .dropdown-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		margin-top: 0;
		padding: 8px;
		border: none;
		left: -15px;
		border-radius: 12px;
		background: #fff;
		width: 220px;
		box-shadow: 0px 10px 20px rgb(10 42 105 / 6%);
	}

		.navbar .nav-item .dropdown-menu li {
			border-bottom: 1px solid rgba(224, 232, 252, .5);
		}

			.navbar .nav-item .dropdown-menu li:last-child {
				margin-bottom: 0;
				border-bottom: none;
			}

		.navbar .nav-item .dropdown-menu .dropdown-item {
			font-size: 1rem;
			font-weight: 500;
			padding: 10px 0px 10px 15px;
			color: var(--color-primary-text);
			position: relative;
			transition: all .5s ease-in-out;
			z-index: 1;
		}

			.navbar .nav-item .dropdown-menu .dropdown-item:hover {
				background: transparent;
				color: var(--color-main-action);
				padding-left: 30px;
			}

			.navbar .nav-item .dropdown-menu .dropdown-item::before {
				content: "";
				position: absolute;
				left: 15px;
				top: 22.5px;
				width: 0;
				height: 4px;
				border-radius: 10px;
				background: var(--color-main-action);
				transition: all .5s ease-in-out;
				z-index: -1;
			}

			.navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
				width: 10px;
			}

	.navbar .nav-item .nav-link {
		position: relative;
	}

		.navbar .nav-item .nav-link.active,
		.navbar .nav-item:hover .nav-link {
			color: var(--color-main-action);
		}

	.navbar .nav-item:hover .dropdown-menu {
		transition: .3s;
		opacity: 1;
		visibility: visible;
		top: 100%;
		transform: rotateX(0deg);
	}

	.navbar .dropdown-menu-end {
		right: 0;
		left: auto;
	}

	.navbar .dropdown-menu.fade-down {
		top: 80%;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%;
	}

	.navbar .dropdown-menu.fade-up {
		top: 140%;
	}

	.header-nav-right {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 15px;
		margin-left: 30px;
	}

	.header-nav-link {
		position: relative;
		width: 45px;
		height: 45px;
		line-height: 45px;
		color: var(--color-primary-text);
		display: flex;
		align-items: center;
		justify-content: center;
	}

		.header-nav-link:hover {
			color: var(--color-main-action);
		}

		.header-nav-link.search-box-outer {
			font-size: 1.125rem;
		}

	#main_nav {
		justify-content: flex-end;
	}
}


/*bootstrap nav*/
.navbar {
	background: transparent;
	padding-top: 20px;
	padding-bottom: 20px;
	z-index: 999;
}

	.navbar.fixed-top {
		background: #fff;
		padding-top: 10px;
		padding-bottom: 10px;
		box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
		animation: slide-down 0.7s;
	}

		.navbar.fixed-top .nav-item .nav-link {
			color: var(--color-primary-text);
		}

		.navbar.fixed-top .header-nav-link {
			color: var(--color-primary-text);
		}

			.navbar.fixed-top .header-nav-link:hover {
				color: var(--color-main-action);
			}

		.navbar.fixed-top .nav-item .nav-link.active,
		.navbar.fixed-top .nav-item:hover .nav-link {
			color: var(--color-main-action);
		}


@keyframes slide-down {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(0);
	}
}

.navbar .navbar-brand .logo-display {
	display: block;
}

.navbar .navbar-brand .logo-scrolled {
	display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
	display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
	display: block;
}

button.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

.navbar-toggler-btn-icon {
	display: inline-block;
	width: inherit;
	height: inherit;
}

.navbar-brand {
	margin-right: 0;
}

.navbar .header-btn {
	display: flex;
	gap: 10px;
}


/* dropdown toggler */
.dropdown-toggle::after {
	display: inline-block;
	margin-left: 5px;
	vertical-align: baseline;
	font-family: 'Font Awesome 6 Pro';
	content: "\f107";
	font-weight: 600;
	border: none;
	font-size: 0.875rem;
}


@media all and (max-width: 1199px) {
	.header-nav-right {
		gap: 5px;
		margin-left: 15px;
	}

	.navbar .nav-item .nav-link {
		margin-right: 15px;
	}

	.navbar .header-btn {
		display: none;
	}
}


/* mobile menu */

.show-only-on-mobile {
	display: none;
}

.mobile-menu-right {
	display: none;
}

@media all and (max-width: 991px) {
	.navbar {
		top: 0;
		right: 0;
		left: 0;
		position: fixed;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.navbar-bg {
		height: 59px;
	}

		.navbar-bg::before {
			transform: translateY(0px) skew(-15deg);
			left: -8px;
		}

	.navbar-brand {
		padding-left: 10px;
	}

		.navbar-brand img {
			width: 130px;
		}

	.navbar-collapse {
		max-height: 220px;
		overflow: hidden;
		overflow-y: auto;
		padding: 0 20px;
		background-color: #fff;
	}

	.dropdown-toggle::after {
		float: right;
	}

	.navbar .nav-item .nav-link {
		color: var(--color-primary-text);
		font-weight: 700;
		transition: all .5s ease-in-out;
	}

		.navbar .nav-item .nav-link:hover {
			color: var(--color-main-action) !important;
		}

	.navbar-toggler {
		padding: 0;
		border: none;
	}

	.show-only-on-mobile {
		display:block;
	}

	.mobile-menu-right {
		display: flex;
		align-items: center;
	}

	.mobile-menu-link {
		font-size: 1.25rem;
		color: var(--color-primary-text);
		font-weight: 500;
		padding-right: 20px;
		margin-bottom: 0px;
		position: relative;
	}

		.mobile-menu-link:hover {
			color: var(--color-main-action);
		}

	.navbar-toggler-btn-icon {
		font-size: 1.5rem;
		color: var(--color-primary-text);
		font-weight: 500;
	}

	.navbar.fixed-top .mobile-menu-link {
		color: var(--color-primary-text);
	}

	.navbar.fixed-top .navbar-toggler-btn-icon {
		color: var(--color-primary-text);
	}

	.navbar .dropdown-menu {
		border-radius: 8px;
	}

	.header-nav-right {
		display: none;
	}
}



/* ======================
multi level dropdown menu
========================= */

.navbar .nav-item .dropdown-submenu {
	position: relative;
}

	.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
		display: none;
	}

	.navbar .nav-item .dropdown-submenu a::after {
		transform: rotate(-90deg);
		position: absolute;
		right: 15px;
		top: 12px;
		font-weight: 600;
	}

	.navbar .nav-item .dropdown-submenu a:hover {
		background: transparent;
		color: #fff;
	}

	.navbar .nav-item .dropdown-submenu .dropdown-menu {
		top: 120%;
		left: 100%;
		opacity: 0;
		visibility: hidden;
	}

	.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
		top: 0;
		opacity: 1;
		visibility: visible;
	}

@media all and (max-width: 991px) {
	.navbar .nav-item .dropdown-submenu .dropdown-menu {
		margin: 0 17px;
	}

	.navbar .nav-item .dropdown-submenu .dropdown-menu {
		opacity: unset;
		visibility: unset;
	}

	.navbar .nav-item .dropdown-submenu a::after {
		top: 4px;
	}

	.navbar .nav-item .dropdown-submenu a:hover {
		color: var(--color-main-action);
	}
}




/* ===================
hero css 
====================== */

.hero-section {
	position: relative;
}

.hero-single {
	padding-top: 220px;
	padding-bottom: 150px;
	background: var(--color-background);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

	.hero-single .hero-content .hero-title {
		color: var(--color-primary-text);
		font-size: 2.8125rem;
		margin: 20px 0;
		font-weight: 800;
	}

		.hero-single .hero-content .hero-title span {
			color: var(--color-main-action);
			position: relative;
			z-index: 1;
		}

			.hero-single .hero-content .hero-title span::after {
				content: "";
				position: absolute;
				background-color: var(--color-main-action);
				height: 25px;
				width: 100%;
				left: 0;
				bottom: -6px;
				z-index: -1;
				opacity: 0.1;
			}

	.hero-single .hero-content .hero-sub-title {
		color: var(--color-main-action);
		font-size: 1.375rem;
		position: relative;
		font-weight: 700;
	}

	.hero-single .hero-content p {
		color: var(--color-primary-text);
		line-height: 30px;
		font-weight: 500;
		margin-bottom: 20px;
	}

	.hero-single .hero-content .hero-btn {
		gap: 2rem;
		display: flex;
		margin-top: 1rem;
		justify-content: start;
	}

.hero-info-box {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hero-info-img {
	margin-left: 10px;
	display: flex;
	align-items: center;
}

	.hero-info-img span {
		display: inline-block;
		width: 35px;
		height: 35px;
		border-radius: 50%;
		border: 2px solid #fff;
		overflow: hidden;
		margin-left: -10px;
	}

		.hero-info-img span img {
			border-radius: 50%;
		}

.hero-info-content h6 {
	font-weight: 600;
}

	.hero-info-content h6 span {
		color: var(--color-main-action);
		font-weight: 700;
	}

.hero-single .hero-img img {
	position: absolute;
	bottom: 0;
	width: 46%;
	z-index: 2;
}

.hero-single .hero-img-shape {
	position: absolute;
	bottom: 150px;
	margin-left: 100px;
	width: 70%;
	z-index: 1;
}

.hero-shape img {
	position: absolute;
}

.hero-shape .hero-shape-1 {
	left: 0;
	bottom: 0;
	z-index: -1;
}

.hero-shape .hero-shape-2 {
	left: 40%;
	top: 20%;
	width: 100px;
	opacity: .2;
	z-index: -1;
}

.hero-shape .hero-shape-3 {
	right: 10%;
	top: 20%;
	width: 50px;
	opacity: .2;
	z-index: -1;
}

.hero-shape .hero-shape-4 {
	left: 22%;
	top: 0;
	width: 120px;
	opacity: .1;
	z-index: -1;
}

.hero-container {
	height: 280px;
}

@media all and (max-width: 1199px) {
	.hero-single .hero-content .hero-title {
		font-size: 2.3215rem;
	}
}

@media all and (max-width: 991px) {
	.hero-single {
		padding-top: 300px;
	}

		.hero-single .hero-content .hero-title {
			font-size: 2.1875rem;
		}

	.hero-img {
		display: none;
	}

	.hero-single .hero-content .hero-btn {
		gap: 1.5rem;
	}

		.hero-single .hero-content .hero-btn .theme-btn {
			padding: 12px 15px;
		}

	.search-form-wrapper {
		padding: 15px 20px !important;
	}

		.search-form-wrapper .theme-btn {
			width: 100%;
		}
}

@media all and (max-width: 767px) {
	.hero-single .hero-content .hero-sub-title {
		font-size: 1.125rem;
	}

	.hero-single .hero-content .theme-btn {
		padding-left: 20px;
	}

	.hero-shape .hero-shape-2 {
		left: 10%;
	}

	.search-form-wrapper div[class*='col-'] {
		border-right: none !important;
	}

	.search-form-wrapper .theme-btn {
		margin-top: 20px;
	}
}



/* =====================
play btn
===================== */

.play-btn {
	display: inline-block;
	padding: 0;
	height: 75px;
	width: 75px;
	line-height: 75px;
	font-size: 1.25rem;
	text-align: center;
	background: var(--color-main-action);
	color: #fff !important;
	position: absolute;
	border-radius: 50%;
	z-index: 1;
}

	.play-btn i::after {
		content: "";
		position: absolute;
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
		z-index: -1;
		background-color: var(--color-main-action);
		border-radius: 50px;
		animation: ripple-wave 1s linear infinite;
		-webkit-transform: scale(1);
		transform: scale(1);
		transition: all 0.5s ease-in-out;
	}

@keyframes ripple-wave {
	0% {
		opacity: 0.8;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(2);
		transform: scale(2);
	}
}




/* ===================
search css
====================== */

.search-form {
	position: relative;
}

.search-form-wrapper {
	background: #fff;
	border-radius: 15px;
	padding: 10px 20px 8px 15px;
	box-shadow: 0px 10px 20px rgb(10 42 105 / 7%);
}

	.search-form-wrapper div[class*='col-'] {
		border-right: 1px solid rgba(0, 0, 0, .08);
	}

		.search-form-wrapper div[class*='col-']:nth-last-child(1),
		.search-form-wrapper div[class*='col-']:nth-last-child(2) {
			border: none;
		}

.search-form .form-group-icon {
	position: relative;
}

	.search-form .form-group-icon i {
		position: absolute;
		left: 10px;
		top: 10px;
	}

.search-form .form-control {
	padding: 12px 10px 12px 35px;
	border-radius: 0px;
	border: none;
	box-shadow: none;
	outline: none;
}

.search-form .nice-select {
	width: 100%;
	height: 50.5px;
	line-height: 50px;
	border-radius: 0px;
	padding-left: 30px;
	font-size: 1rem;
	border: none;
	outline: none;
}

	.search-form .nice-select:after {
		height: 8px;
		width: 8px;
		margin-top: -6px;
	}

	.search-form .nice-select .list {
		width: 100%;
		background: #fff;
		border-radius: 12px;
		border: none;
		box-shadow: 10px 10px 20px rgb(10 42 105 / 50%);
	}

	.search-form .nice-select .option.focus,
	.search-form .nice-select .option.selected.focus,
	.search-form .nice-select .option:hover {
		background: #E0EEFF;
		color: var(--color-main-action);
	}

.search-form-wrapper .theme-btn {
	padding: 10px 14px;
}

.popular-search {
	margin-top: 30px;
}

	.popular-search span {
		font-weight: 600;
		color: var(--color-primary-text);
		margin-right: 10px;
	}

	.popular-search a {
		color: #4F5E64;
	}

		.popular-search a:hover {
			color: var(--color-main-action);
		}

.search-area {
	margin-top: -50px;
	position: relative;
	z-index: 1;
}

	.search-area .nice-select,
	.search-area .form-control {
		border: 1px solid #ced4da;
		border-radius: 10px;
	}

	.search-area .search-form-wrapper {
		padding: 20px 30px;
	}

		.search-area .search-form-wrapper div[class*='col-'] {
			border: none;
		}

	.search-area label {
		margin-bottom: 5px;
		color: var(--color-primary-text);
	}




/* ===================
category css
====================== */

.category-area {
	position: relative;
}

.category-item {
	display: flex;
	align-items: center;
	gap: 15px;
	width: 100%;
	background: #fff;
	border-radius: 15px;
	padding: 15px;
	margin-bottom: 25px;
	border: 1px solid rgba(0, 0, 0, .08);
}

	.category-item:hover {
		transform: translateY(-7px);
	}

.category-icon {
	background: rgba(60, 101, 245, .1);
	width: 65px;
	height: 65px;
	line-height: 65px;
	text-align: center;
	font-size: 2.5rem;
	color: var(--color-main-action);
	border-radius: 15px;
	transition: all .5s ease-in-out;
}

.category-item:hover .category-icon {
	background: var(--color-main-action);
	color: #fff;
}

.category-item h6 {
	font-size: 1.0625rem;
	margin-bottom: 3px;
	transition: all .5s ease-in-out;
}

.category-item p {
	font-weight: 500;
	color: #757F95;
	font-size: 0.9375rem;
	transition: all .5s ease-in-out;
}

	.category-item p:hover,
	.category-item h6:hover {
		color: var(--color-main-action);
	}



/* ===================
career css
====================== */

.career-area {
	position: relative;
}

.career-img img {
	border-radius: 15px;
}

.career-img-3 {
	margin-top: 24px;
}

.career-right {
	margin-left: 20px;
}

.career-list {
	margin-top: 20px;
	margin-bottom: 35px;
}

	.career-list li {
		margin-bottom: 10px;
		font-weight: 500;
	}

		.career-list li i {
			color: var(--color-main-action);
			margin-right: 5px;
		}

@media all and (max-width: 991px) {
	.career-right {
		margin-top: 60px;
	}
}

@media all and (max-width: 767px) {
	.career-img-1 {
		margin-bottom: 24px;
	}
}




/* ===================
job css
====================== */

.job-area {
	position: relative;
}

.job-item {
	background: #fff;
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 25px;
	position: relative;
	transition: all .5s ease-in-out;
}

	.job-item:hover {
		transform: translateY(-7px);
	}

.job-bookmark {
	position: absolute;
	width: 35px;
	height: 35px;
	line-height: 37px;
	background: rgba(60, 101, 245, .1);
	right: 15px;
	top: 15px;
	font-size: 1.25rem;
	text-align: center;
	color: var(--color-main-action);
	border-radius: 50px;
}

	.job-bookmark:hover {
		background: var(--color-main-action);
		color: #fff;
	}

.job-top {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.job-title a:hover {
	color: var(--color-main-action);
}

.job-employer {
	margin-top: 5px;
	color: var(--color-main-action);
	font-weight: 500;
}

	.job-employer:hover {
		color: var(--color-main-action);
	}

.job-img {
	width: 60px;
}

	.job-img img {
		border-radius: 15px;
	}

.job-info-list li {
	display: inline-block;
	margin: 0 10px 8px 0;
}

.job-skill {
	margin-top: 5px;
}

	.job-skill a {
		background: rgba(60, 101, 245, .1);
		border-radius: 50px;
		padding: 2px 12px;
		color: var(--color-main-action);
		font-size: 0.875rem;
	}

		.job-skill a:hover {
			background: var(--color-main-action);
			color: #fff;
		}

.job-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid rgba(0, 0, 0, .04);
}

.job-salary-amount {
	color: var(--color-main-action);
	font-size: 1.125rem;
	font-weight: 600;
}

.job-salary-type {
	font-size: 0.9375rem;
}

.job-bottom .theme-btn {
	padding: 7px 15px;
}


/* job grid */
.job-grid .job-item {
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.job-grid2 .search-form-wrapper,
.job-grid2 .job-sort,
.job-grid2 .job-sidebar {
	box-shadow: none;
	border: 1px solid rgba(0, 0, 0, .08);
}

.job-grid2 .job-item {
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 15px;
}

.job-grid2 .job-img {
	width: 100px;
	border-radius: 50%;
	margin-bottom: 20px;
}

	.job-grid2 .job-img img {
		border-radius: 50%;
	}

.job-grid2 .job-top {
	margin-bottom: 15px;
}


/* job list */
.job-list .job-item {
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.job-list2 .search-form-wrapper,
.job-list2 .job-sort,
.job-list2 .job-sidebar {
	box-shadow: none;
	border: 1px solid rgba(0, 0, 0, .08);
}

.job-list2 .job-item {
	display: flex;
	gap: 20px;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 15px;
}

.job-list2 .job-img {
	width: 100px;
	border-radius: 50%;
	margin-bottom: 20px;
}

	.job-list2 .job-img img {
		border-radius: 50%;
	}

.job-list2 .job-top {
	margin-bottom: 15px;
}


@media all and (max-width: 991px) {
	.job-list2 .job-item {
		flex-direction: column;
		gap: 5px;
	}
}



/* ===================
job sidebar
=================== */

.job-sidebar {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.job-sidebar-item {
	margin-bottom: 35px;
}

	.job-sidebar-item:last-child {
		margin-bottom: 0;
	}

.job-sidebar-title {
	font-size: 1.1875rem;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.job-sidebar .form-check-input {
	margin-top: 6px;
	box-shadow: none;
	border-color: var(--color-primary-text);
}

	.job-sidebar .form-check-input:focus {
		border-color: var(--color-main-action);
	}

.job-sidebar .form-check-label {
	width: 100%;
	color: var(--color-primary-text);
}

	.job-sidebar .form-check-label span {
		float: right;
	}

.job-sidebar .form-check {
	margin: 12px 0;
}



/* ===================
job sort
=================== */
.job-sort {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	margin-bottom: 25px;
	padding: 10px 10px 10px 15px;
	border-radius: 10px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.job-sort-list-grid a {
	width: 35px;
	height: 35px;
	line-height: 33px;
	border-radius: 6px;
	text-align: center;
	border: 1px solid #CED4DA;
	color: var(--color-primary-text);
}

	.job-sort-list-grid a.active {
		border-color: var(--color-main-action);
		color: var(--color-main-action);
	}

.job-sort .nice-select {
	width: 100%;
	height: 46px;
	line-height: 44px;
	border-radius: 8px;
	padding-left: 15px;
	font-size: 1rem;
	border-color: #CED4DA;
	color: var(--color-primary-text);
}

	.job-sort .form-control:focus,
	.job-sort .nice-select:focus {
		border-color: var(--color-main-action);
	}

	.job-sort .nice-select .list {
		width: 100%;
		border: none;
		border-radius: 12px;
		padding: 10px;
		box-shadow: 0px 0px 50px 0px rgb(32 32 32 / 15%);
	}

	.job-sort .nice-select .option.focus,
	.job-sort .nice-select .option.selected.focus,
	.job-sort .nice-select .option:hover {
		background: #F6F6F6;
		color: var(--color-main-action);
		border-radius: 8px;
	}

	.job-sort .nice-select:after {
		width: 8px;
		height: 8px;
		margin-top: -6px;
		right: 15px;
	}

@media all and (max-width: 767px) {
	.job-sort {
		flex-direction: column;
		gap: 10px;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.job-sort-box {
		width: 100%;
	}
}



/* ===================
job single
=================== */
.job-single {
	position: relative;
}

.job-single-img img {
	border-radius: 15px;
}

.job-single-title {
	margin-top: 25px;
	margin-bottom: 15px;
}

.job-single-info {
	margin-top: 25px;
}

	.job-single-info h5 {
		margin-bottom: 15px;
	}

	.job-single-info ul li {
		margin: 8px 0;
		position: relative;
	}

		.job-single-info ul li i {
			color: var(--color-main-action);
			margin-right: 5px;
		}

.job-location h5 {
	margin-top: 35px;
	margin-bottom: 20px;
}

.job-location iframe {
	width: 100%;
	height: 300px;
	border-radius: 15px;
}

.job-single-social-share {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, .05);
}

	.job-single-social-share span {
		color: var(--color-primary-text);
		font-weight: 600;
		margin-right: 10px;
	}

	.job-single-social-share a {
		width: 35px;
		height: 35px;
		line-height: 35px;
		text-align: center;
		border-radius: 50px;
		background: rgba(57, 101, 245, .1);
		color: var(--color-main-action);
		margin: 0 2px;
	}

		.job-single-social-share a:hover {
			background: var(--color-main-action);
			color: #fff;
		}

.job-single .job-sidebar {
	padding: 30px;
}

.job-single-employer {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

	.job-single-employer img {
		width: 60px;
		height: 60px;
		border-radius: 15px;
	}

.job-single-employer-info a {
	color: var(--color-main-action) !important;
}

.job-single-heading-btns {
	margin-top: 20px;
}

	.job-single-heading-btns .theme-btn2 {
		margin-left: 8px;
	}

.job-single-list {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, .06);
}

	.job-single-list h5 {
		margin-bottom: 25px;
	}

	.job-single-list li {
		display: flex;
		gap: 15px;
		margin: 15px 0;
	}

.job-single-list-icon {
	width: 30px;
	line-height: 38px;
	font-size: 1.5625rem;
	color: var(--color-main-action);
}

.job-single-list-info h6 {
	font-weight: 600;
	margin-bottom: 5px;
}

.job-employer-contact {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, .05);
}

	.job-employer-contact h5 {
		margin-bottom: 15px;
	}

	.job-employer-contact li {
		margin: 8px 0;
	}

		.job-employer-contact li i {
			width: 20px;
		}

.related-job {
	margin-top: 60px;
}

	.related-job h4 {
		margin-bottom: 30px;
	}

	.related-job .job-item {
		box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	}





/* =====================
price range slider
===================== */

.price-range-slider {
	margin-bottom: 50px;
}

	.price-range-slider .price-range-info {
		margin-bottom: 20px;
	}

.priceRange {
	background: transparent;
	border: none;
	font-weight: 800;
	outline: none;
	color: var(--color-main-action);
}

.price-range-slider label {
	color: var(--color-primary-text);
	font-weight: 500;
}

.price-range-slider .ui-slider-handle {
	top: -0.36em !important;
	border-radius: 50px;
	background: #fff !important;
	border: 4px solid var(--color-main-action) !important;
	width: 1.1em;
	height: 1.1em;
	outline: none;
}

.price-range-slider .ui-widget.ui-widget-content {
	background: #E6E9EC;
	border: none;
	border-radius: 50px;
	padding: 0;
	height: 0.4em;
}

.price-range-slider .ui-widget-header {
	background: var(--color-main-action);
}




/* ===================
employer css
====================== */
.employer-area {
	position: relative;
}

.employer-item {
	display: flex;
	gap: 15px;
	padding: 18px;
	border-radius: 15px;
	margin-bottom: 25px;
	background: #fff;
	position: relative;
	border: 1px solid rgba(0, 0, 0, .08);
	transition: all .5s ease-in-out;
}

	.employer-item:hover {
		transform: translateY(-7px);
	}

.employer-bookmark {
	position: absolute;
	width: 35px;
	height: 35px;
	line-height: 37px;
	background: rgba(60, 101, 245, .1);
	right: 15px;
	top: 15px;
	font-size: 1.25rem;
	text-align: center;
	color: var(--color-main-action);
	border-radius: 50px;
}

	.employer-bookmark:hover {
		background: var(--color-main-action);
		color: #fff;
	}

.employer-img {
	width: 60px;
}

	.employer-img img {
		border-radius: 50px;
	}

.employer-content h5 a:hover {
	color: var(--color-main-action);
}

.employer-job {
	font-weight: 500;
	color: var(--color-main-action);
	margin-top: 3px;
}

.employer-content p {
	margin-top: 8px;
}

	.employer-content p i {
		color: var(--color-main-action);
	}

/* employer grid */
.employer-grid .employer-item {
	border: none;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.employer-grid2 .employer-item {
	flex-direction: column;
}

.employer-grid2 .search-form-wrapper,
.employer-grid2 .job-sidebar,
.employer-grid2 .job-sort {
	box-shadow: none;
	border: 1px solid rgba(0, 0, 0, .08);
}

/* employer list */
.employer-list .employer-item {
	border: none;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.employer-list2 .employer-item {
	align-items: center;
}

.employer-list2 .employer-img {
	width: 100px;
}

	.employer-list2 .employer-img img {
		border-radius: 15px;
	}

.employer-list2 .search-form-wrapper,
.employer-list2 .job-sidebar,
.employer-list2 .job-sort {
	box-shadow: none;
	border: 1px solid rgba(0, 0, 0, .08);
}




/* ===================
employer single css 
====================== */
.employer-single {
	position: relative;
}

.employer-heading {
	display: flex;
	justify-content: space-between;
	align-items: end;
	background: #fff;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	border-radius: 15px;
	padding: 20px;
	position: relative;
}

.employer-heading-content {
	display: flex;
	gap: 20px;
}

	.employer-heading-content img {
		width: 160px;
		height: 160px;
		border-radius: 15px;
	}

.employer-heading-list {
	margin-top: 5px;
}

	.employer-heading-list li {
		display: inline-block;
		margin-right: 10px;
	}

		.employer-heading-list li i {
			margin-right: 5px;
		}

.employer-heading-rate {
	margin-top: 8px;
}

	.employer-heading-rate i {
		color: #F5BE3D;
	}

.employer-heading-tag {
	margin-top: 15px;
}

	.employer-heading-tag a {
		background: var(--color-background);
		padding: 2px 20px;
		margin-right: 8px;
		border-radius: 50px;
	}

		.employer-heading-tag a:hover {
			color: var(--color-main-action);
		}

.employer-gallery-item {
	position: relative;
	margin-bottom: 25px;
}

	.employer-gallery-item img {
		border-radius: 15px;
	}

	.employer-gallery-item .gallery-link {
		position: absolute;
		width: 40px;
		height: 40px;
		line-height: 40px;
		background: var(--color-main-action);
		border-radius: 50px;
		text-align: center;
		color: #fff;
		left: 50%;
		top: 50%;
		opacity: 0;
		visibility: hidden;
		transform: translate(-50%,-50%);
		z-index: 1;
	}

	.employer-gallery-item:hover .gallery-link {
		opacity: 1;
		visibility: visible;
	}

.employer-single-job .job-item {
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.employer-single .job-sidebar {
	padding: 30px;
}

.employer-overview ul {
	margin-top: 25px;
	margin-bottom: 30px;
}

.employer-overview li {
	margin: 8px 0;
	font-weight: 500;
}

	.employer-overview li span {
		float: right;
		font-weight: normal;
	}

	.employer-overview li a {
		color: var(--color-main-action);
	}

.employer-location-map {
	margin-top: 30px;
}

	.employer-location-map iframe {
		border-radius: 15px;
		margin-top: 20px;
		width: 100%;
		height: 250px;
	}

.employer-social {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, .08);
}

.employer-social-link {
	margin-top: 18px;
}

	.employer-social-link a {
		width: 40px;
		height: 40px;
		line-height: 40px;
		background: var(--color-main-action);
		border-radius: 50px;
		color: #fff;
		text-align: center;
		margin-right: 5px;
	}

		.employer-social-link a:hover {
			background: var(--color-primary-text);
			color: #fff;
		}

.employer-heading-with-img {
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.employer-single-img img {
	border-radius: 15px;
}

.employer-heading-with-img .employer-heading {
	box-shadow: none;
	padding: 0;
	margin-top: 20px;
}



@media all and (max-width: 767px) {
	.employer-heading {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.employer-heading-tag a:first-child {
		margin-bottom: 15px;
	}

	.employer-heading-content {
		flex-direction: column;
	}
}


/* ===================
candidate css 
====================== */
.candidate-item {
	background: #fff;
	border-radius: 15px;
	padding: 20px;
	position: relative;
	margin-bottom: 25px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	transition: all .5s ease-in-out;
}

	.candidate-item:hover {
		transform: translateY(-7px);
	}

.candidate-bookmark {
	position: absolute;
	width: 35px;
	height: 35px;
	line-height: 37px;
	background: rgba(60, 101, 245, .1);
	right: 15px;
	top: 15px;
	font-size: 1.25rem;
	text-align: center;
	color: var(--color-main-action);
	border-radius: 50px;
}

	.candidate-bookmark:hover {
		background: var(--color-main-action);
		color: #fff;
	}

.candidate-bio {
	display: flex;
	align-items: center;
	gap: 14px;
}

.candidate-bio-content h5 a:hover {
	color: var(--color-main-action);
}

.candidate-img {
	width: 95px;
}

	.candidate-img img {
		border-radius: 50%;
	}

.candidate-content p {
	margin-top: 15px;
}

.candidate-bio-rate i {
	font-size: 0.8125rem;
	color: #F5BE3D;
}

.candidate-bio-rate span {
	font-size: 0.8125rem;
	margin-left: 2px;
}

.candidate-skill {
	margin-top: 15px;
	margin-bottom: 20px;
}

	.candidate-skill a {
		background: var(--color-background);
		padding: 2px 20px;
		border-radius: 50px;
		margin: 5px 5px 5px 0;
	}

		.candidate-skill a:hover {
			background: var(--color-main-action);
			color: #fff;
		}

.candidate-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 18px;
	border-top: 1px solid rgba(0, 0, 0, .05);
}

.candidate-salary {
	font-size: 1.25rem;
	color: var(--color-main-action);
	font-weight: 600;
}

	.candidate-salary span {
		font-weight: normal;
		font-size: 0.9375rem;
		color: #757F95;
	}

.candidate-bottom .theme-btn {
	padding: 6px 15px;
}


/* candidate grid */
.candidate-grid2 .candidate-item {
	flex-direction: column;
	box-shadow: none;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, .08);
}

.candidate-grid2 .candidate-bio {
	flex-direction: column;
}

.candidate-grid2 .search-form-wrapper,
.candidate-grid2 .job-sidebar,
.candidate-grid2 .job-sort {
	box-shadow: none;
	border: 1px solid rgba(0, 0, 0, .08);
}

.candidate-grid2 .candidate-bottom {
	justify-content: center;
}



/* candidate list */
.candidate-list2 .candidate-item {
	align-items: center;
	box-shadow: none;
	border: 1px solid rgba(0, 0, 0, .08);
	display: flex;
	justify-content: space-between;
}

.candidate-list2 .candidate-img {
	width: 100px;
}

	.candidate-list2 .candidate-img img {
		border-radius: 15px;
	}

.candidate-list2 .search-form-wrapper,
.candidate-list2 .job-sidebar,
.candidate-list2 .job-sort {
	box-shadow: none;
	border: 1px solid rgba(0, 0, 0, .08);
}


@media all and (max-width: 767px) {
	.candidate-list2 .candidate-item {
		flex-direction: column;
		text-align: center;
	}

	.candidate-list2 .candidate-skill {
		padding: 20px 0;
	}

	.candidate-list2 .candidate-bio {
		flex-direction: column;
	}
}



/* ===================
candidate single css 
====================== */
.candidate-single {
	position: relative;
}

.candidate-heading {
	display: flex;
	justify-content: space-between;
	align-items: end;
	background: #fff;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	border-radius: 15px;
	padding: 20px;
	position: relative;
}

.candidate-heading-content {
	display: flex;
	gap: 20px;
}

	.candidate-heading-content img {
		width: 185px;
		height: 185px;
		border-radius: 15px;
	}

.candidate-heading-list {
	margin-top: 5px;
}

	.candidate-heading-list li {
		display: inline-block;
		margin-right: 10px;
	}

		.candidate-heading-list li i {
			margin-right: 5px;
		}

.candidate-heading-rate {
	margin-top: 8px;
}

	.candidate-heading-rate i {
		color: #F5BE3D;
	}

.candidate-heading-tag {
	margin-top: 15px;
}

	.candidate-heading-tag a {
		background: var(--color-background);
		padding: 2px 20px;
		margin-right: 8px;
		border-radius: 50px;
	}

		.candidate-heading-tag a:hover {
			color: var(--color-main-action);
		}

.candidate-heading-with-img {
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.candidate-single-img img {
	border-radius: 15px;
}

.candidate-heading-with-img .candidate-heading {
	box-shadow: none;
	padding: 0;
	margin-top: 20px;
}

.candidate-skill-item {
	margin-bottom: 20px;
	position: relative;
}

	.candidate-skill-item .skill-tag {
		margin-bottom: 10px;
		display: inline-block;
		color: #757F95;
		font-size: 0.9375rem;
		position: relative;
	}

	.candidate-skill-item .skill-box {
		width: 100%;
		height: 5px;
		background: #F1F1FA;
		border-radius: 50px;
		position: relative
	}

	.candidate-skill-item .progress-line {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		border-radius: 50px;
		background: var(--color-main-action);
		-webkit-transition: all 1s linear;
		transition: all 1s linear;
		width: 0;
	}

	.candidate-skill-item .skill-percentage {
		color: #757F95;
		font-size: 0.9375rem;
		font-weight: 600;
		text-transform: uppercase;
		position: absolute;
		right: -15px;
		top: -35px;
	}

.candidate-timeline-wrapper {
	position: relative;
	padding: 30px;
	border-radius: 15px;
	border: 1px solid rgba(0, 0, 0, .08);
}

.candidate-timeline {
	margin-bottom: 50px;
	margin-left: 50px;
}

	.candidate-timeline:last-child {
		margin-bottom: 0px;
	}

.candidate-timeline-date {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	padding: 3px 15px;
	border-radius: 50px;
	color: var(--color-main-action);
	margin-left: 15px;
	background: rgba(60, 101, 245, .1);
}

.candidate-timeline-title {
	color: var(--color-primary-text);
	font-size: 1.0625rem;
	font-weight: 600;
	position: relative;
}

	.candidate-timeline-title::before {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		border: 3px solid var(--color-main-action);
		background: #fff;
		border-radius: 50%;
		left: -50px;
		top: 3px;
	}

	.candidate-timeline-title::after {
		content: '';
		position: absolute;
		width: 22px;
		border-top: 3px solid var(--color-main-action);
		left: -26px;
		top: 13px;
	}

.candidate-timeline-sub-title {
	margin: 10px 0px;
	font-weight: 500;
	font-size: 0.875rem;
	color: var(--color-main-action);
}

.candidate-timeline-discription p:last-child {
	margin-bottom: 0px;
}

.candidate-single .job-sidebar {
	padding: 35px;
}

.candidate-sidebar-btns a:first-child {
	margin-right: 8px;
}

.candidate-social {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, .08);
}

.candidate-social-link {
	margin-top: 18px;
}

	.candidate-social-link a {
		width: 40px;
		height: 40px;
		line-height: 40px;
		background: var(--color-main-action);
		border-radius: 50px;
		color: #fff;
		text-align: center;
		margin-right: 5px;
	}

		.candidate-social-link a:hover {
			background: var(--color-primary-text);
			color: #fff;
		}


@media all and (max-width: 767px) {
	.candidate-heading {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.candidate-heading-tag a:first-child {
		margin-bottom: 15px;
	}

	.candidate-heading-content {
		flex-direction: column;
	}
}




/* ===================
location css 
====================== */
.location-area {
	position: relative;
}

.location-item {
	padding: 15px;
	border-radius: 20px;
	margin-bottom: 25px;
	background: #fff;
	transition: all .5s ease-in-out;
}

	.location-item:hover {
		transform: translateY(-7px);
	}

.location-img img {
	border-radius: 15px;
	width: 100%;
}

.location-content {
	padding-top: 10px;
}

	.location-content h5 {
		margin-bottom: 5px;
	}

		.location-content h5 a:hover {
			color: var(--color-main-action);
		}

.location-content-info {
	display: flex;
	gap: 15px;
	align-items: center;
}





/* ===================
banner css 
====================== */

.banner-item {
	width: 100%;
	height: Auto;
	border-radius: 10px;
	position: relative;
}

	.banner-item::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		border-radius: 10px;
		background: rgba(0, 0, 0, .3);
	}

	.banner-item img {
		border-radius: 10px;
		width: 100%;
	}

.banner-item-content {
	position: absolute;
	top: 20px;
	right: 20px;
}

	.banner-item-content h2 {
		color: #fff;
	}

	.banner-item-content p {
		color: #fff;
	}

	.banner-item-content a {
		padding: 6px 20px;
		color: #fff;
		background: var(--color-main-action);
		margin-top: 20px;
		border-radius: 50px;
		font-weight: 500;
		transition: all .5s ease-in-out;
	}

		.banner-item-content a:hover {
			background: var(--color-main-action);
		}

.banner-item2 .banner-item-content {
	top: unset;
	right: unset;
	left: 20px;
	bottom: 20px;
}

.banner-item3 .banner-item-content {
	top: unset;
	bottom: 20px;
}

@media all and (max-width: 991px) {
	.banner-item {
		margin-bottom: 25px;
	}
}




/* ===================
about css 
====================== */

.about-area {
	position: relative;
	display: block;
}

.about-left {
	position: relative;
	margin: 0 40px 0 20px;
}

.about-img img {
	border-radius: 15px;
}

.about-img::before {
	content: "";
	position: absolute;
	width: 200px;
	height: 200px;
	background: #ECF0FE;
	border-radius: 50%;
	left: -50px;
	top: -50px;
	z-index: -1;
}

.about-shape {
	position: absolute;
	right: -20px;
	bottom: -20px;
	z-index: -1;
}

.about-right {
	position: relative;
	display: block;
}

.about-list-wrapper {
	position: relative;
	display: block;
	margin-top: 15px;
	margin-bottom: 35px;
}

.about-list {
	position: relative;
	display: block;
}

	.about-list li {
		position: relative;
		display: flex;
		align-items: center;
		gap: 10px;
		margin-top: 5px;
	}

		.about-list li .about-icon {
			position: relative;
			display: flex;
			align-items: center;
		}

			.about-list li .about-icon span {
				font-size: 1.25rem;
				color: var(--color-main-action);
			}


@media all and (max-width: 991px) {
	.about-left {
		margin-bottom: 60px;
	}
}




/* ===================
service css 
====================== */

.service-area {
	position: relative;
	display: block;
	overflow: hidden;
}

.service-item {
	position: relative;
	padding: 15px 15px 30px 15px;
	margin-top: 30px;
	margin-bottom: 25px;
	border-radius: 10px;
	background: #fff;
	text-align: center;
	transition: all .5s ease-in-out;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 1;
}

.service-img {
	overflow: hidden;
	border-radius: 10px;
	margin-top: -30px;
}

	.service-img img {
		border-radius: 12px;
	}

.service-item:hover .service-img img {
	transform: scale(1.1) rotate(2deg);
	transition: all .5s ease-in-out;
}

.service-content {
	position: relative;
}

.service-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 90px;
	background: #fff;
	border-radius: 30px 0 30px 0;
	margin: -45px 0 0 0;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	position: relative;
	transition: all .5s ease-in-out;
}

	.service-icon i {
		color: var(--color-main-action);
		font-size: 3rem;
		line-height: 1;
		transform: rotate(-45deg);
	}

	.service-icon img {
		width: 70px;
	}

.service-arrow {
	margin-top: 25px;
}

.service-title a {
	font-size: 1.4375rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--color-primary-text);
}

	.service-title a:hover {
		color: var(--color-main-action);
	}

.service-arrow a {
	width: 50px;
	height: 50px;
	line-height: 42px;
	border-radius: 15px;
	border: 3px solid #fff;
	background: var(--color-main-action);
	transform: rotate(45deg);
	color: #fff;
	font-size: 1.25rem;
	text-align: center;
	position: relative;
	transition: all .5s ease-in-out;
	z-index: 1;
}

.service-item:hover .service-arrow a {
	border-color: var(--color-main-action);
	background: #fff;
}

.service-item .service-arrow a i {
	transition: all .5s ease-in-out;
}

.service-item:hover .service-arrow a i {
	color: var(--color-main-action);
	transform: rotate(-45deg);
}




/* service-area 2 */
.service-area2 {
	position: relative;
}

	.service-area2 .service-item {
		background: #00081D;
		padding: 28px;
		position: relative;
	}

	.service-area2 .service-icon {
		margin: 0 auto;
	}

	.service-area2 .service-item p,
	.service-area2 .service-item .service-title a {
		color: #fff;
	}

	.service-area2 .service-item:hover .theme-btn {
		background: var(--color-main-action);
	}

.service-slider .service-item {
	box-shadow: none;
}

.service-slider .owl-dots {
	text-align: center;
	margin-top: 30px;
}

	.service-slider .owl-dots .owl-dot span {
		background: rgba(28, 185, 200, .4);
		margin: 5px;
		width: 20px;
		height: 7px;
		border-radius: 50px;
		display: inline-block;
		transition: all .5s ease-in-out;
	}

	.service-slider .owl-dots .owl-dot.active span {
		background-color: var(--color-main-action);
	}





/* ====================
service single
==================== */

.service-single-wrapper .widget-title {
	font-weight: 700;
}

.service-single-list i {
	color: var(--color-main-action);
	margin-right: 10px;
}

.service-download a {
	border: 2px solid var(--color-main-action);
	padding: 10px 20px;
	color: var(--color-primary-text);
	display: block;
	margin-bottom: 20px;
	font-weight: 600;
	border-radius: 50px;
	transition: all .5s ease-in-out;
}

	.service-download a i {
		margin-right: 10px;
	}

	.service-download a:hover {
		background-color: var(--color-main-action);
		color: #fff;
	}

.service-details h3 {
	color: var(--color-primary-text);
	font-weight: 700;
}

.service-details img {
	border-radius: 7px;
}




/* ===================
skill css 
====================== */

.skills-section {
	margin-top: 40px;
}

.skill-left {
	position: relative;
}

	.skill-left img {
		border-radius: 7px;
	}

.skill-shape {
	position: absolute;
	z-index: -1;
	left: -22px;
	top: -1px;
	width: 100%;
	height: 100%;
}

.skill-img {
	position: relative;
	display: block;
	-webkit-mask-image: url(../img/shape/03.png);
	mask-image: url(../img/shape/03.png);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: 100% 100%;
	-webkit-mask-position: center center;
	mask-position: center center;
	overflow: hidden;
}

.progress-box {
	margin-bottom: 30px;
	position: relative;
}

	.progress-box:last-child {
		margin-bottom: 0;
	}

	.progress-box h5 {
		font-size: 1rem;
		text-transform: uppercase;
		font-weight: 700;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 15px;
	}

	.progress-box .progress {
		box-shadow: 0px 10px 31px rgb(169 177 193 / 17%);
		border: 1px solid #D5E0F5;
		height: 16px;
		padding: 4px;
		border-radius: 50px;
		background-color: #fff;
	}

		.progress-box .progress .progress-bar {
			background: linear-gradient(to right, #fe6d1c 0%, #fd3d10 100%);
			border-radius: 50px;
		}

@media all and (max-width: 991px) {
	.skill-right .site-heading {
		font-size: 1.875rem;
	}

	.skill-img img {
		width: 100%;
	}
}




/* ===================
feature css 
====================== */

.feature-area {
	position: relative;
}

.feature-item {
	padding: 50px 20px;
	position: relative;
	background: var(--color-primary-text);
	text-align: center;
	overflow: hidden;
	margin-bottom: 25px;
	border-radius: 12px;
	transition: all .5s ease-in-out;
	z-index: 1;
}

	.feature-item::before {
		content: "";
		position: absolute;
		width: 200px;
		height: 200px;
		background: var(--color-main-action);
		border-radius: 50%;
		right: -100px;
		top: -100px;
		z-index: -1;
	}

.feature-icon {
	font-size: 5rem;
	color: #fff;
	line-height: 1;
	margin-bottom: 15px;
}

.feature-title {
	color: #fff;
	margin-bottom: 10px;
}

.feature-item p {
	color: #fff;
}




/* ===================
video css 
====================== */

.video-content {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 15px;
}

	.video-content::before {
		content: "";
		position: absolute;
		background: rgba(0, 0, 0, .2);
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		border-radius: 15px;
	}

.video-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	height: 450px;
	z-index: 100;
}

.video-area .play-btn {
	display: inline-block;
	padding: 0;
	height: 75px;
	width: 75px;
	text-align: center;
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


@media all and (max-width: 767px) {
	.video-wrapper {
		height: 250px;
	}

		.video-wrapper h1 {
			font-size: 1.75rem;
			margin-top: 25px;
		}
}



/* ===================
step/process css 
====================== */

.process-area {
	position: relative;
}

.process-item {
	position: relative;
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 25px;
	border: 1px solid rgba(0, 0, 0, .08);
	transition: all .5s ease-in-out;
}

	.process-item:hover {
		transform: translateY(-7px);
	}

.process-count {
	position: absolute;
	font-weight: 800;
	font-size: 3.125rem;
	line-height: 1;
	right: 15px;
	top: 15px;
	color: var(--color-main-action);
	opacity: .1;
}

.process-icon {
	height: 60px;
	width: 60px;
	line-height: 60px;
	border-radius: 50px;
	font-size: 1.75rem;
	color: #fff;
	text-align: center;
	background: var(--color-main-action);
	margin-bottom: 10px;
}

.process-content h5 {
	margin-bottom: 5px;
}




/* ===================
choose css 
====================== */

.choose-area {
	position: relative;
	z-index: 1;
}

.choose-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-top: 35px;
}

.choose-icon {
	height: 80px;
	width: 80px;
	line-height: 80px;
	text-align: center;
	background: var(--color-primary-text);
	border-radius: 50px;
	color: #fff;
	transition: 0.4s;
	margin-top: 2px;
	font-size: 2.5rem;
}

.choose-item-content {
	flex: 1;
}

	.choose-item-content h4 {
		margin-bottom: 5px;
	}

.choose-img {
	margin-left: 50px;
	position: relative;
	z-index: 1;
}

	.choose-img img {
		border-radius: 12px;
	}

	.choose-img::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		background: var(--color-primary-text);
		left: 0;
		top: 0;
		border-radius: 12px;
		transform: rotate(5deg);
		z-index: -1;
	}



@media all and (max-width: 991px) {
	.choose-img {
		margin-top: 60px;
	}
}




/* ===================
testimonial css 
====================== */

.testimonial-area {
	position: relative;
}

.testimonial-item {
	background: var(--color-background);
	padding: 20px;
	border-radius: 15px;
	position: relative;
}

.testimonial-quote-icon {
	position: absolute;
	right: 30px;
	bottom: -20px;
	font-size: 5rem;
	color: var(--color-main-action);
	opacity: .1;
}

.testimonial-rate {
	color: var(--color-main-action);
	margin-bottom: 5px;
}

.testimonial-content {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 15px;
}

.testimonial-author-img {
	width: 60px;
}

	.testimonial-author-img img {
		border-radius: 50%;
	}

.testimonial-area .owl-dots {
	text-align: center;
	margin-top: 30px;
}

	.testimonial-area .owl-dots .owl-dot span {
		background: rgba(60, 101, 245, .2);
		margin: 5px;
		border-radius: 50px;
		width: 8px;
		height: 8px;
		display: inline-block;
		transition: all .5s ease-in-out;
	}

	.testimonial-area .owl-dots .owl-dot.active span {
		background-color: var(--color-main-action);
		width: 18px;
	}



/* ===================
counter css 
====================== */

.counter-area {
	position: relative;
}

.counter-box {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 15px;
	border-radius: 15px;
	border: 1px solid rgba(0, 0, 0, .08);
	position: relative;
	transition: all .5s ease-in-out;
}

	.counter-box:hover {
		transform: translateY(-7px);
	}

	.counter-box .icon {
		position: relative;
		font-size: 2.1875rem;
		min-width: 80px;
		width: 80px;
		height: 80px;
		line-height: 80px;
		border-radius: 50%;
		background: var(--color-main-action);
		text-align: center;
		color: #fff;
	}

	.counter-box .counter-number {
		display: flex;
		align-items: center;
	}

	.counter-box .counter {
		display: block;
		line-height: 1;
		color: var(--color-primary-text);
		font-size: 2.5rem;
		font-weight: 600;
	}

	.counter-box .counter-sign {
		font-size: 2.1875rem;
		color: var(--color-primary-text);
		line-height: 1;
		font-weight: 600;
	}

	.counter-box .title {
		margin-top: 5px;
		color: var(--color-main-action);
		font-size: 1.25rem;
		font-weight: 600;
	}

@media all and (max-width: 1199px) {
	.counter-area .counter-box {
		margin-bottom: 25px;
	}
}



/* ===================
cta-area css 
====================== */

.cta-area {
	position: relative;
}

.cta-wrapper {
	background: var(--color-main-action);
	border-radius: 20px;
	padding: 25px;
	text-align: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

	.cta-wrapper::before {
		content: "";
		position: absolute;
		width: 180px;
		height: 180px;
		background: #587AF3;
		border-radius: 50%;
		left: 10%;
		top: -50px;
		z-index: -1;
	}

	.cta-wrapper::after {
		content: "";
		position: absolute;
		width: 180px;
		height: 180px;
		border: 20px solid #587AF3;
		border-radius: 50%;
		right: 10%;
		bottom: -50px;
		z-index: -1;
	}

.cta-content h1 {
	color: #fff;
}

.cta-content p {
	color: #fff;
	font-size: 1.125rem;
	margin: 10px 0 25px 0;
}

.cta-content .theme-btn {
	background: #fff;
	color: var(--color-main-action);
}

	.cta-content .theme-btn:hover {
		color: #fff;
	}




/* ========================
portfolio css 
=========================== */

.portfolio-item {
	position: relative;
	width: 100%;
	margin-bottom: 25px;
}

.portfolio-img {
	height: 100%;
}

	.portfolio-img img {
		width: 100%;
		border-radius: 8px;
	}

.portfolio-content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

	.portfolio-content::before {
		content: "";
		position: absolute;
		left: 10px;
		top: 10px;
		right: 10px;
		bottom: 10px;
		background: var(--color-main-action);
		border-radius: 8px;
		opacity: 0;
		visibility: hidden;
		transition: 0.3s;
	}

	.portfolio-content:hover::before {
		opacity: 0.9;
		visibility: visible
	}

.portfolio-link {
	width: 50px;
	height: 50px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50px;
	top: 0px;
	transition: 0.5s;
	border-radius: 50px;
	opacity: 0;
	visibility: hidden;
	font-size: 1.5625rem;
	color: var(--color-main-action);
}

	.portfolio-link::before {
		content: "";
		position: absolute;
		left: -5px;
		right: -5px;
		top: -5px;
		bottom: -5px;
		border: 2px dashed #fff;
		border-radius: 50px;
	}

	.portfolio-link:hover {
		color: var(--color-main-action);
	}

.portfolio-content:hover .portfolio-link {
	opacity: 1;
	visibility: visible;
	top: 50px;
}

.portfolio-info {
	position: absolute;
	bottom: 35px;
	left: 50px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.portfolio-content:hover .portfolio-info {
	opacity: 1;
	visibility: visible;
	bottom: 45px;
}

.portfolio-subtitle {
	font-size: 0.875rem;
	color: #fff;
	margin-bottom: 7px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

	.portfolio-subtitle span {
		color: #fff;
	}

.portfolio-title {
	color: #fff;
	font-size: 1.875rem;
}

.filter-btns {
	text-align: center;
}

	.filter-btns li {
		display: inline-block;
		margin: 4px;
		font-weight: 500;
		font-size: 1rem;
		color: var(--color-primary-text);
		border-radius: 50px;
		padding: 3px 20px 4px 20px;
		border: 2px solid var(--color-main-action);
		cursor: pointer;
		transition: all .5s ease-in-out;
	}

		.filter-btns li:hover,
		.filter-btns li.active {
			color: #fff;
			background: var(--color-main-action);
		}

.portfolio-slider .owl-dots {
	text-align: center;
	margin-top: 30px;
}

	.portfolio-slider .owl-dots .owl-dot span {
		background: rgba(28, 185, 200, .5);
		margin: 5px;
		width: 8px;
		height: 8px;
		border-radius: 50px;
		display: inline-block;
		transition: all .5s ease-in-out;
	}

	.portfolio-slider .owl-dots .owl-dot.active span {
		background-color: var(--color-main-action);
		width: 18px;
	}


@media all and (max-width: 991px) {
	.filter-controls {
		margin-top: 30px;
	}

	.filter-btns {
		margin-top: 30px;
		text-align: left;
	}
}



/* ======================
portfolio single
====================== */

.portfolio-details img {
	border-radius: 7px;
}

.portfolio-sidebar .portfolio-sidebar-content ul li {
	border-bottom: 1px solid #e7e7e7;
	display: block;
	margin-bottom: 10px;
	padding-bottom: 10px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 33px;
}

	.portfolio-sidebar .portfolio-sidebar-content ul li:last-child {
		border-bottom: none;
	}

.portfolio-sidebar-title {
	margin-bottom: 30px;
	font-size: 1.625rem;
	font-weight: 700;
}

.portfolio-sidebar .portfolio-sidebar-content ul li span {
	display: block;
	font-weight: normal;
	margin: 0;
}

.portfolio-sidebar .portfolio-sidebar-content .rating a {
	color: var(--color-main-action);
}

.new-portfolio {
	background: var(--color-main-action) !important;
}

	.new-portfolio h4 {
		color: #fff;
		margin-bottom: 30px;
		font-size: 1.75rem;
	}

.new-portfolio-btn {
	background: #fff;
	color: var(--color-primary-text);
	border: none;
	padding: 10px 25px;
	border-radius: 50px;
	font-weight: 500;
	transition: all .5s ease-in-out;
}

	.new-portfolio-btn:hover {
		background: var(--color-primary-text);
		color: #fff;
	}

	.new-portfolio-btn i {
		margin-left: 8px;
	}

.portfolio-single-list i {
	color: var(--color-main-action);
	margin-right: 10px;
}

.portfolio-details h3 {
	font-weight: 700;
}



/* ===================
blog css 
====================== */

.blog-area {
	position: relative;
}

.blog-item {
	margin-bottom: 25px;
	background: #fff;
	padding: 10px;
	border-radius: 15px;
	border: 1px solid rgba(0, 0, 0, .08);
	transition: all .5s ease-in-out;
}

.blog-item-img {
	overflow: hidden;
	border-radius: 15px;
}

	.blog-item-img img {
		border-radius: 15px;
	}

.blog-item:hover .blog-item-img img {
	transform: scale(1.1);
}

.blog-item-info {
	padding: 15px 15px 5px 15px;
}

.blog-item-meta ul {
	margin: 0;
	padding: 0;
	margin-bottom: 14px;
	border-bottom: 1px solid #e6e8eb;
	padding-bottom: 18px;
}

	.blog-item-meta ul li {
		display: inline-block;
		margin-right: 15px;
		font-weight: 500;
		position: relative;
		color: var(--color-primary-text);
	}

		.blog-item-meta ul li i {
			margin-right: 5px;
			color: var(--color-main-action);
		}

.blog-item-meta a:hover {
	color: var(--color-main-action);
}

.blog-title {
	font-size: 1.25rem;
	margin-bottom: 15px;
}

.blog-item-info p {
	margin-bottom: 16px;
}

.blog-item-info h5 a {
	color: var(--color-primary-text);
}

	.blog-item-info h5 a:hover {
		color: var(--color-main-action);
	}

@media all and (max-width: 991px) {
	.blog-item-info {
		padding: 23px 15px 30px 15px;
	}
}




/* ===========================
blog single css
=========================== */

.blog-thumb-img {
	margin-bottom: 20px;
}

.blog-single-content img {
	border-radius: 10px;
}

.blog-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

	.blog-meta .blog-meta-left ul {
		display: flex;
		align-items: center;
		gap: 20px;
	}

		.blog-meta .blog-meta-left ul li {
			font-weight: 500;
		}

	.blog-meta i {
		margin-right: 5px;
		color: var(--color-main-action);
	}

	.blog-meta a {
		color: #66788a;
		font-weight: 500;
	}

		.blog-meta a:hover {
			color: var(--color-main-action);
		}

.blog-details-title {
	font-size: 2.125rem;
	color: var(--color-primary-text);
}

.blockqoute {
	background: #F5F7FA;
	border-left: 5px solid var(--color-main-action);
	padding: 30px;
	font-size: 1.0625rem;
	font-style: italic;
	margin: 20px 0;
	border-radius: 15px;
}

.blockqoute-author {
	margin-top: 20px;
	padding-left: 60px;
	position: relative;
	color: var(--color-primary-text);
}

	.blockqoute-author::before {
		content: "";
		position: absolute;
		height: 2px;
		width: 40px;
		background: var(--color-main-action);
		left: 0;
		top: 10px;
	}

.blog-details-tags {
	display: flex;
	align-items: center;
	gap: 20px;
}

	.blog-details-tags h5 {
		color: var(--color-primary-text);
		font-weight: 700;
	}

	.blog-details-tags ul {
		display: flex;
		align-items: center;
		gap: 15px;
	}

		.blog-details-tags ul a {
			background: #F5F7FA;
			color: var(--color-primary-text);
			padding: 6px 18px;
			border-radius: 6px;
			transition: all .5s ease-in-out;
		}

			.blog-details-tags ul a:hover {
				background: var(--color-main-action);
				color: #fff;
			}

.blog-author {
	display: flex;
	justify-content: start;
	align-items: center;
	background: #F5F7FA;
	border-radius: 15px;
	margin: 50px 0;
	padding: 20px;
}

.blog-author-img {
	width: 320px;
	position: relative;
}

	.blog-author-img::before {
		content: "";
		position: absolute;
		left: -10px;
		right: -10px;
		top: -10px;
		bottom: -10px;
		border-radius: 50%;
	}

	.blog-author-img img {
		border-radius: 15px;
	}

.author-name {
	font-size: 1.375rem;
	color: var(--color-main-action);
	margin: 8px 0;
}

.author-info {
	padding: 0 20px 0 30px;
}

.author-social {
	margin-top: 10px;
}

	.author-social a {
		width: 35px;
		height: 35px;
		line-height: 31px;
		text-align: center;
		border: 2px solid var(--color-main-action);
		border-radius: 50px;
		margin-right: 5px;
		color: var(--color-main-action);
		transition: all .5s ease-in-out;
	}

		.author-social a:hover {
			color: #fff;
			background: var(--color-main-action);
		}

.blog-comments {
	margin-bottom: 50px;
}

	.blog-comments h3 {
		color: var(--color-primary-text);
		font-weight: 700;
	}

.blog-comments-wrapper {
	margin: 30px 0;
}

.blog-comments-single {
	display: flex;
	justify-content: start;
	align-items: flex-start;
	margin-top: 50px;
}

.blog-comments-img {
	margin-top: 3px;
}

.blog-comments-single img {
	border-radius: 50%;
	width: 120px;
}

.blog-comments-content {
	padding: 0 0 0 20px;
}

	.blog-comments-content span {
		font-size: 0.875rem;
		color: var(--color-main-action);
		font-weight: 500;
	}

	.blog-comments-content a {
		font-weight: 600;
		margin-top: 5px;
		color: var(--color-main-action);
	}

		.blog-comments-content a:hover {
			color: var(--color-primary-text);
		}

	.blog-comments-content h5 {
		color: var(--color-primary-text);
		font-weight: 700;
	}

.blog-comments-reply {
	margin-left: 50px;
}

.blog-comments-form {
	padding: 30px;
	margin-top: 50px;
	border-radius: 10px;
	background: #F5F7FA;
}

	.blog-comments-form h3 {
		margin-bottom: 20px;
	}

	.blog-comments-form .form-group {
		margin-bottom: 20px;
	}

	.blog-comments-form .form-control {
		padding: 15px 20px;
		border-radius: 10px;
		box-shadow: none;
		transition: all .5s ease-in-out;
	}

		.blog-comments-form .form-control:focus {
			border-color: var(--color-main-action);
		}



@media all and (max-width: 767px) {
	.blog-meta {
		flex-direction: column;
		font-size: 0.9375rem;
	}

		.blog-meta .blog-meta-left ul {
			gap: 10px;
		}

	.blog-details-tags {
		flex-direction: column;
		align-items: flex-start;
	}

	.blog-author {
		flex-direction: column;
		text-align: center;
		padding: 25px 0 0 0;
	}

	.blog-comments-single {
		flex-direction: column;
		text-align: center;
		padding: 30px 0px;
		box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
		margin-bottom: 30px;
		border-radius: 10px;
	}

	.blog-comments-reply {
		margin-left: 0px;
	}
}


/* =========================
sidebar css
========================= */

.widget {
	background: #F5F7FA;
	padding: 30px;
	margin-bottom: 30px;
	border-radius: 10px;
}

	.widget .widget-title {
		padding-bottom: 10px;
		margin-bottom: 30px;
		position: relative;
		font-size: 1.375rem;
		color: var(--color-primary-text);
	}

		.widget .widget-title::before {
			position: absolute;
			content: '';
			width: 15px;
			border-bottom: 3px solid var(--color-main-action);
			bottom: 0;
			left: 0;
		}

		.widget .widget-title::after {
			position: absolute;
			content: '';
			width: 30px;
			border-bottom: 3px solid var(--color-main-action);
			bottom: 0;
			left: 22px;
		}

	.widget .blog-search-form .form-control {
		padding: 12px 15px 12px 15px;
		border-radius: 10px;
		box-shadow: none;
	}

	.widget .blog-search-form {
		position: relative;
	}

		.widget .blog-search-form .form-control:focus {
			border-color: var(--color-main-action);
		}

		.widget .blog-search-form button {
			position: absolute;
			right: 0;
			top: 0;
			font-size: 1.125rem;
			padding: 8px 18px 6px 18px;
			background: transparent;
			border: none;
			color: var(--color-main-action);
		}

	.widget .category-list a {
		display: block;
		padding: 10px 0;
		font-weight: 500;
		border-bottom: 1px solid #ced4da;
		transition: all .5s ease-in-out;
	}

		.widget .category-list a:last-child {
			margin-bottom: 0px;
			border-bottom: none;
		}

		.widget .category-list a:hover {
			padding-left: 10px;
			color: var(--color-main-action);
		}

		.widget .category-list a i {
			margin-right: 5px;
			color: var(--color-main-action);
		}

		.widget .category-list a span {
			float: right;
		}

	.widget .recent-post-single {
		display: flex;
		justify-content: start;
		align-items: center;
		margin-bottom: 20px;
	}

	.widget .recent-post-img {
		margin-right: 20px;
	}

		.widget .recent-post-img img {
			width: 120px;
			border-radius: 7px;
		}

	.widget .recent-post-bio h6 {
		font-size: 1.125rem;
	}

	.widget .recent-post-bio span {
		font-size: 0.875rem;
		color: var(--color-main-action);
		font-weight: 500;
	}

		.widget .recent-post-bio span i {
			margin-right: 5px;
		}

	.widget .recent-post-bio h6 a:hover {
		color: var(--color-main-action);
	}

	.widget .social-share-link a {
		width: 35px;
		height: 35px;
		line-height: 32px;
		border: 2px solid var(--color-main-action);
		color: var(--color-main-action);
		text-align: center;
		margin-right: 5px;
		border-radius: 50px;
		transition: all .5s ease-in-out;
	}

		.widget .social-share-link a:hover {
			background: var(--color-main-action);
			color: #fff;
		}

	.widget .tag-list a {
		background: #fff;
		color: var(--color-primary-text);
		padding: 5px 15px;
		margin-bottom: 10px;
		margin-right: 10px;
		border-radius: 8px;
		display: inline-block;
		transition: all .5s ease-in-out;
	}

		.widget .tag-list a:hover {
			background-color: var(--color-main-action);
			color: #fff;
		}


/* =========================
partner css
========================= */

.partner-item {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	padding: 20px 20px;
	border-radius: 15px;
	margin-bottom: 10px;
}

	.partner-item img {
		height: 40px;
		width: auto !important;
	}

@media all and (max-width: 767px) {
	.partner-item img {
		height: 30px;
	}
}




/* ===================
contact us css 
====================== */

.contact-wrapper {
	position: relative;
}

.contact-form {
	background: #fff;
	border-radius: 10px;
	padding: 30px 30px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.contact-form-header {
	margin-bottom: 30px;
}

	.contact-form-header h2 {
		font-size: 1.875rem;
		margin-bottom: 10px;
		font-weight: 700;
		color: var(--color-primary-text);
	}

.contact-form .form-group {
	margin-bottom: 25px;
}

	.contact-form .form-group .form-control {
		padding: 15px 20px;
		border-radius: 10px;
		box-shadow: none;
		transition: all .5s ease-in-out;
	}

		.contact-form .form-group .form-control:focus {
			border-color: var(--color-main-action);
		}

.contact-map {
	margin-bottom: -9px;
}

	.contact-map iframe {
		width: 100%;
		height: 450px;
	}

.contact-content {
	background: #fff;
	border-radius: 10px;
	padding: 30px 30px;
	position: relative;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.contact-info {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px 20px;
	border: 2px solid #587AF3;
	border-radius: 15px;
	margin-bottom: 25px;
}

	.contact-info:last-child {
		margin-bottom: 0;
	}

.contact-info-icon i {
	font-size: 1.5625rem;
	color: #fff;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 50px;
	background: var(--color-main-action);
}

.contact-info h5 {
	font-size: 1.125rem;
	margin-bottom: 5px;
	color: var(--color-primary-text);
}

.contact-info p {
	font-weight: 500;
}


@media all and (max-width: 768px) {
	.contact-form {
		margin-bottom: 50px;
	}
}




/* ===================
quote css
====================== */

.quote-area {
	position: relative;
	background-image: url('../img/quote/01.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

.quote-content {
	padding: 30px;
	background: #fff;
	border-radius: 10px;
}

	.quote-content .quote-header h6 {
		display: inline-block;
		font-weight: 700;
		text-transform: uppercase;
		margin-bottom: 10px;
		color: var(--color-main-action);
		font-size: 1.125rem;
		letter-spacing: 2px;
	}

	.quote-content .quote-header h2 {
		color: var(--color-primary-text);
		font-size: 2.1875rem;
		margin-bottom: 30px;
		margin-top: 10px;
		font-weight: 700;
	}

	.quote-content .form-group {
		margin-bottom: 20px
	}

		.quote-content .form-group .form-control {
			padding: 15px 22px;
			font-size: 1rem;
			background: 0 0;
			border-radius: 8px;
			background-color: #F3F7FA;
			border: none;
			box-shadow: none
		}

		.quote-content .form-group .form-select {
			padding: 15px 22px;
			background-color: #F3F7FA;
			border: none;
			box-shadow: none;
			border-radius: 8px;
		}

	.quote-content .theme-btn:hover {
		color: #fff;
	}

@media all and (max-width:1199px) {
	.quote-content .quote-header h2 {
		font-size: 1.5625rem;
	}
}

@media all and (max-width:991px) {
	.quote-thum {
		margin-top: 40px;
	}
}




/* ===================
team css 
====================== */

.team-area {
	position: relative;
}

.team-item {
	background: #fff;
	padding: 15px;
	border-radius: 15px;
	border: 1px solid rgba(0, 0, 0, .08);
	margin-bottom: 25px;
	position: relative;
	transition: all .5s ease-in-out;
	z-index: 1;
}

	.team-item:hover {
		transform: translateY(-7px);
	}

.team-img img {
	border-radius: 15px;
}

.team-content {
	text-align: center;
}

.team-bio {
	margin-top: 10px;
	margin-bottom: 15px;
}

	.team-bio h5 {
		font-size: 1.25rem;
		margin-top: 5px;
		margin-bottom: 5px;
	}

		.team-bio h5 a {
			color: var(--color-primary-text);
		}

	.team-bio span {
		color: var(--color-main-action);
		font-size: 1rem;
		font-weight: 500;
	}

	.team-bio h5 a:hover {
		color: var(--color-main-action);
	}

.team-social {
	margin-bottom: 6px;
}

	.team-social li {
		display: inline-block;
		margin: 5px;
	}

		.team-social li a {
			width: 35px;
			height: 35px;
			line-height: 30px;
			text-align: center;
			border: 2px solid var(--color-primary-text);
			border-radius: 50px;
		}

			.team-social li a:hover {
				color: #fff;
				background: var(--color-primary-text);
			}




/* ===================
pricing css 
====================== */

.pricing-area {
	position: relative;
}

.pricing-wrapper {
	background: #F1F6FC;
	border-radius: 30px;
}

.pricing-item {
	position: relative;
	overflow: hidden;
	padding: 40px;
	border-radius: 20px;
	z-index: 1;
}

.pricing-popular {
	position: absolute;
	display: block;
	padding: 3px 15px 2px 15px;
	background: #fff;
	color: var(--color-main-action);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 1px;
	font-weight: 600;
	border-radius: 50px;
	right: 15px;
	top: 15px;
}

.pricing-content h4 {
	margin-bottom: 10px;
	color: var(--color-main-action);
}

.pricing-amount {
	color: var(--color-primary-text);
	font-weight: 700;
}

	.pricing-amount span {
		font-size: 1rem;
		font-weight: 600;
	}

.pricing-content p {
	margin-top: 10px;
}

.pricing-feature ul {
	margin-top: 20px;
	margin-bottom: 35px;
}

	.pricing-feature ul li {
		position: relative;
		margin: 10px 0;
		padding-left: 25px;
	}

		.pricing-feature ul li::before {
			content: "";
			position: absolute;
			width: 12px;
			height: 12px;
			border: 3px solid var(--color-main-action);
			border-radius: 50px;
			left: 0;
			top: 8.5px;
		}

.pricing-item.active {
	background: var(--color-main-action);
	margin-top: -40px;
}

	.pricing-item.active .pricing-content h4 {
		color: #ffff;
		margin-top: 20px;
	}

	.pricing-item.active .pricing-amount {
		color: #ffff;
	}

	.pricing-item.active .pricing-content p {
		color: #ffff;
	}

	.pricing-item.active .pricing-feature ul li {
		color: #fff;
	}

		.pricing-item.active .pricing-feature ul li::before {
			border-color: #ffff;
		}

	.pricing-item.active .theme-btn {
		background: #fff;
		color: var(--color-main-action);
	}

		.pricing-item.active .theme-btn:hover {
			color: #ffff;
		}


@media all and (max-width: 991px) {
	.pricing-item.active {
		margin-top: 0;
	}
}



/* ===================
faq css 
====================== */

.faq-area {
	position: relative;
}

	.faq-area .faq-left {
		position: relative;
		text-align: center;
	}

.faq-img {
	margin: auto auto;
	padding-top: 50px;
	position: relative;
	width: 85%;
	z-index: 1;
}

	.faq-img::before {
		content: "";
		position: absolute;
		background: var(--color-main-action);
		left: -20px;
		top: 5px;
		width: 100%;
		height: 100%;
		border-radius: 50% 20px 50% 50%;
		z-index: -1;
	}

	.faq-img img {
		border-radius: 50% 20px 50% 50%;
	}

.faq-area .accordion-item {
	border: none;
	margin-bottom: 20px;
	background: #fff;
	border-radius: 15px !important;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

	.faq-area .accordion-item span {
		width: 45px;
		height: 45px;
		margin-right: 15px;
	}

	.faq-area .accordion-item i {
		width: 45px;
		height: 45px;
		line-height: 45px;
		border-radius: 50px;
		background: var(--color-main-action);
		text-align: center;
		color: #fff;
	}

.faq-area .accordion-button:not(.collapsed) {
	color: var(--color-main-action);
	background: transparent;
	box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-button {
	border-radius: 0px !important;
	background: transparent;
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--color-primary-text);
	box-shadow: none !important;
}

	.accordion-button:not(.collapsed) {
		border-bottom: 1px dashed var(--color-main-action);
	}

		.accordion-button:not(.collapsed)::after {
			background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
		}

@media all and (max-width: 991px) {
	.faq-right {
		margin-top: 50px;
	}

	.accordion-button {
		font-size: 1rem;
	}
}



/* ===================
breadcrumb css
====================== */

.site-breadcrumb {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	background: var(--color-background);
	padding-top: 180px;
	padding-bottom: 50px;
	z-index: 1;
}

	.site-breadcrumb .hero-shape-3 {
		top: 200px;
	}

	.site-breadcrumb .breadcrumb-title {
		font-size: 2.1875rem;
		color: var(--color-primary-text);
		font-weight: 800;
		margin-bottom: 10px;
		text-transform: uppercase;
	}

	.site-breadcrumb .breadcrumb-menu {
		position: relative;
		z-index: 1;
	}

		.site-breadcrumb .breadcrumb-menu li {
			position: relative;
			display: inline-block;
			margin-left: 25px;
			color: var(--color-primary-text);
			font-weight: 500;
		}

			.site-breadcrumb .breadcrumb-menu li a {
				color: var(--color-primary-text);
				transition: all 0.5s ease-in-out;
			}

			.site-breadcrumb .breadcrumb-menu li::before {
				position: absolute;
				content: '\f101';
				font-family: 'Font Awesome 6 Pro';
				right: -21px;
				top: 1px;
				text-align: center;
				font-size: 1rem;
				color: var(--color-primary-text);
			}

			.site-breadcrumb .breadcrumb-menu li:first-child {
				margin-left: 0;
			}

			.site-breadcrumb .breadcrumb-menu li:last-child:before {
				display: none;
			}

			.site-breadcrumb .breadcrumb-menu li a:hover {
				color: var(--color-main-action);
			}

			.site-breadcrumb .breadcrumb-menu li.active {
				color: var(--color-main-action);
			}

@media (max-width: 991px) {
	.site-breadcrumb {
		padding-top: 280px;
	}
}




/* ===================
pagination css 
====================== */

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}

	.pagination .page-link {
		border: none;
		background: var(--color-primary-text);
		color: #fff;
		margin: 0 10px;
		border-radius: 10px !important;
		width: 40px;
		height: 40px;
		line-height: 28px;
		text-align: center;
		transition: all .5s ease-in-out;
	}

		.pagination .page-link:hover,
		.pagination .page-item.active .page-link {
			background: var(--color-main-action);
			color: #fff;
		}

.pagination-showing {
	text-align: center;
	margin-top: 20px;
}



/* ===================
RTL css
====================== */

body.rtl-mode {
	direction: rtl;
}

	body.rtl-mode .item-area {
		direction: ltr;
	}

	body.rtl-mode .price-wrapper {
		direction: rtl;
	}

@media (min-width: 992px) {
	body.rtl-mode .navbar-brand {
		margin-left: 3rem;
	}

	body.rtl-mode .navbar .nav-item .nav-link {
		margin-left: 3rem;
		margin-right: 0;
	}
}




/* ===================
auth css 
====================== */

.login-form {
	padding: 40px;
	background: var(--color-background);
	border-radius: 10px;
	position: relative;
}

	.login-form .login-header {
		text-align: center;
		margin-bottom: 50px;
	}

		.login-form .login-header img {
			width: 200px;
			margin-bottom: 10px;
		}

		.login-form .login-header h3 {
			color: var(--color-main-action);
			margin-bottom: 5px;
			font-weight: 800;
		}

		.login-form .login-header p {
			font-size: 1.25rem;
		}

	.login-form .login-footer {
		margin-top: 25px;
	}

		.login-form .login-footer p {
			text-align: center;
		}

		.login-form .login-footer a {
			color: var(--color-main-action);
			transition: .5s;
		}

			.login-form .login-footer a:hover {
				color: var(--color-primary-text);
			}

	.login-form .form-group {
		margin-bottom: 20px;
	}

	.login-form label {
		color: var(--color-primary-text);
		margin-bottom: 5px;
	}

	.login-form .form-group .form-control {
		border: 1px solid #e8e8e8;
		border-radius: 10px;
		padding: 13px 20px;
		box-shadow: none;
		transition: .5s;
	}

		.login-form .form-group .form-control:focus {
			border-color: var(--color-main-action);
		}

	.login-form .form-check-input {
		box-shadow: none;
	}

	.login-form .forgot-pass {
		color: var(--color-main-action);
		transition: .5s;
	}

		.login-form .forgot-pass:hover {
			color: var(--color-primary-text);
		}

	.login-form .theme-btn {
		width: 100%;
	}

		.login-form .theme-btn::before {
			width: 480px;
			height: 480px;
			transition-duration: .2s;
		}

		.login-form .theme-btn i {
			margin-right: 5px;
		}

	.login-form .form-check-input {
		margin-top: 6.3px;
	}

	.login-form .form-check-label a {
		color: var(--color-main-action);
		transition: .5s;
	}

		.login-form .form-check-label a:hover {
			color: var(--color-main-action);
		}

.form-check-input:checked {
	background-color: var(--color-main-action);
	border-color: var(--color-main-action);
}

.login-divider {
	position: relative;
	margin: 15px 0;
	text-align: center;
}

	.login-divider::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		border-bottom: 1px solid #E8E8E8;
	}

	.login-divider span {
		position: relative;
		background: #F1F5FC;
		padding: 0 20px;
	}

.social-login {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 30px;
}

	.social-login a {
		width: 100%;
		padding: 10px 20px;
		border-radius: 12px;
		text-align: center;
	}

		.social-login a i {
			margin-right: 5px;
		}

.btn-fb {
	background: #506DAB;
	color: #fff !important;
}

.btn-gl {
	background: #DD4B39;
	color: #fff !important;
}


@media only screen and (max-width: 991px) {
	.login-form {
		padding: 40px 20px;
	}

	.social-login {
		flex-direction: column;
	}
}




/* ===================
user profile css 
====================== */

.header-account img {
	width: 60px;
	border-radius: 50%;
	padding: 3px;
	border: 3px solid rgba(0, 0, 0, .1);
	cursor: pointer;
}

.header-account .dropdown-menu {
	border: none;
	min-width: 200px;
	border-radius: 10px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

	.header-account .dropdown-menu li a i {
		margin-right: 5px;
	}

	.header-account .dropdown-menu .dropdown-item {
		padding: 8px 20px;
	}

		.header-account .dropdown-menu .dropdown-item:hover {
			background: transparent;
			color: var(--color-main-action);
			padding-left: 25px;
		}


.mobile-menu-right {
	gap: 20px;
}

	.mobile-menu-right .header-account img {
		width: 30px;
		padding: 0;
		border: none;
	}

.user-profile-sidebar {
	background: #fff;
	border-radius: 10px;
	margin-bottom: 25px;
	padding: 20px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.user-profile-sidebar-top {
	text-align: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.user-profile-img {
	position: relative;
	width: 100px;
	height: 100px;
	margin: 0 auto 15px auto;
	border-radius: 50px;
}

	.user-profile-img img {
		border-radius: 50%;
	}

.user-profile-sidebar-top h4 {
	font-size: 1.25rem;
}

.user-profile-sidebar-top p {
	color: var(--color-primary-text);
}

.profile-img-file {
	display: none;
}

.user-profile-img button {
	position: absolute;
	border-radius: 50px;
	background: var(--color-main-action);
	color: #fff;
	width: 30px;
	height: 30px;
	line-height: 28px;
	text-align: center;
	border: none;
	right: 0;
	bottom: 0;
}

.user-profile-sidebar-list li {
	margin: 5px 0;
}

	.user-profile-sidebar-list li a {
		color: var(--color-primary-text);
		padding: 6px 6px 6px 15px;
		display: block;
		transition: all .5s ease-in-out;
	}

		.user-profile-sidebar-list li a:hover {
			color: var(--color-main-action);
		}

		.user-profile-sidebar-list li a i {
			margin-right: 5px;
			color: var(--color-main-action);
		}

.user-profile-sidebar-list .active i {
	color: #fff;
}

.user-profile-sidebar-list .active {
	background: var(--color-main-action);
	color: #fff !important;
	border-radius: 8px;
}

.user-profile-sidebar-list li .badge {
	float: right;
	margin-top: 5px;
	background: #F96768;
}

.profile-menu-angle {
	float: right;
}

.profile-menu-list {
	margin-left: 40px;
}

	.profile-menu-list li a {
		position: relative;
	}

		.profile-menu-list li a::before {
			content: "\e122";
			position: absolute;
			font-family: "Font Awesome 6 Pro";
			left: 0px;
			top: 13px;
			color: var(--color-main-action);
			font-size: 0.5rem;
			font-weight: bold;
		}

.user-profile-card {
	background: #fff;
	padding: 25px 30px 30px 30px;
	border-radius: 10px;
	margin-bottom: 25px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.user-profile-card-title {
	color: var(--color-primary-text);
	padding-bottom: 15px;
	margin-bottom: 20px;
	font-size: 1.1875rem;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.user-profile-card .text-success {
	color: var(--color-main-action) !important;
}

.user-profile-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

	.user-profile-card-header .user-profile-card-title {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

.user-profile-card-header-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.user-profile-search .form-group {
	position: relative;
}

.user-profile-search .form-control {
	padding: 8px 12px 9px 35px;
	box-shadow: none;
	border-radius: 8px;
}

	.user-profile-search .form-control:focus {
		border-color: var(--color-main-action);
	}

.user-profile-search i {
	position: absolute;
	left: 12px;
	top: 7px;
}

.user-profile-sort .nice-select {
	border-radius: 8px;
	border: 1px solid #ced4da;
}

	.user-profile-sort .nice-select::after {
		width: 7px;
		height: 7px;
		margin-top: -6px;
	}

	.user-profile-sort .nice-select .list {
		width: 100%;
		border-radius: 8px;
	}

	.user-profile-sort .nice-select:focus {
		border-color: var(--color-main-action);
	}

.user-profile-card-header .theme-btn {
	padding: 8px 15px;
}

.profile-info-list li {
	margin: 12px 0;
	font-weight: 500;
	color: var(--color-primary-text);
}

	.profile-info-list li span {
		float: right;
		font-weight: normal;
	}

.profile-skill a {
	background: var(--color-background);
	padding: 5px 20px;
	border-radius: 50px;
	margin: 5px 5px 5px 0;
}

	.profile-skill a:hover {
		background: var(--color-main-action);
		color: #fff;
	}

.profile-social a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: var(--color-background);
	border-radius: 50px;
	text-align: center;
	color: var(--color-main-action);
	margin: 8px 8px 8px 0;
}

	.profile-social a:hover {
		background: var(--color-main-action);
		color: #fff;
	}



/* profile form */
.profile-form .nice-select,
.profile-form .form-group {
	margin-bottom: 20px;
}

	.profile-form .form-group label {
		color: var(--color-primary-text);
		margin-bottom: 5px;
	}

.profile-form .form-control {
	padding: 14px 20px;
	border-radius: 12px;
	box-shadow: none;
}

.profile-form .nice-select {
	border-radius: 12px;
	width: 100%;
	height: 55px;
	line-height: 53px;
	font-size: 1rem;
	box-shadow: none;
	border: 1px solid #ced4da;
}

	.profile-form .nice-select::after {
		width: 9px;
		height: 9px;
		margin-top: -6px;
		right: 15px;
	}

	.profile-form .nice-select .list {
		width: 100%;
		border-radius: 12px;
	}

	.profile-form .nice-select:focus,
	.profile-form .form-control:focus {
		border-color: var(--color-main-action);
	}

.profile-form .theme-btn2 {
	padding: 7px 15px;
}



/* dashboard */
.dashboard-widget {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 20px;
	border-radius: 10px;
	margin-bottom: 30px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
}

.dashboard-widget-info span {
	font-weight: 500;
}

.dashboard-widget-info h1 {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.dashboard-widget-icon {
	width: 65px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	border-radius: 20px;
}

.dashboard-widget-color-1 {
	background: rgba(60, 101, 245, .2);
	color: var(--color-main-action);
}

	.dashboard-widget-color-1 h1 {
		color: var(--color-main-action);
	}

	.dashboard-widget-color-1 .dashboard-widget-icon {
		background: var(--color-main-action);
		color: #fff;
	}

.dashboard-widget-color-2 {
	background: rgba(0, 230, 130, 0.2);
	color: #09AD95;
}

	.dashboard-widget-color-2 h1 {
		color: #09AD95;
	}

	.dashboard-widget-color-2 .dashboard-widget-icon {
		background: #09AD95;
		color: #fff;
	}

.dashboard-widget-color-3 {
	background: rgba(249, 103, 104, .2);
	color: #F96768;
}

	.dashboard-widget-color-3 h1 {
		color: #F96768;
	}

	.dashboard-widget-color-3 .dashboard-widget-icon {
		background: #F96768;
		color: #fff;
	}

.user-notification-item {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding: 10px 0;
}

	.user-notification-item a {
		display: flex;
		gap: 15px;
	}

		.user-notification-item a:hover {
			color: var(--color-primary-text);
		}

	.user-notification-item:first-child {
		padding-top: 0;
	}

	.user-notification-item:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

.user-notification-icon {
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50px;
	background: var(--color-main-action);
	color: #fff;
	margin-top: 5px;
	text-align: center;
}

.user-notification-info {
	flex: 1;
}

	.user-notification-info p {
		font-size: 0.9375rem;
	}

	.user-notification-info span {
		font-size: 0.875rem;
	}

.table-property-info a {
	display: flex;
	align-items: center;
	gap: 10px;
}

.table-property-info h6 {
	transition: all .5s ease-in-out;
}

.table-property-info:hover h6 {
	color: var(--color-main-action);
}

.table-property-info img {
	width: 70px;
	border-radius: 8px;
}

.user-profile-card .table > :not(caption) > * > * {
	vertical-align: middle;
	padding: 1rem 0.5rem;
}

/* profile badge */
.user-profile-card .badge {
	border-radius: 50px;
}

.user-profile-card .badge-success {
	background: rgba(9, 173, 149, .2);
	color: #09AD95;
}

.user-profile-card .badge-warning {
	background: rgba(113, 103, 255, .2);
	color: var(--color-main-action);
}

.user-profile-card .badge-danger {
	background: rgba(249, 103, 104, .2);
	color: #F96768;
}


/* profile btn */
.user-profile-card .btn {
	border-radius: 8px;
}


/* profile table */
.user-profile-card .table {
	color: var(--color-primary-text);
}


/* profile job list */
.user-profile-job .job-item {
	border: 1px solid rgba(0, 0, 0, .08);
}

.profile-job-info {
	display: flex;
	gap: 15px;
}

	.profile-job-info img {
		width: 60px;
		height: 60px;
		border-radius: 10px;
	}

.profile-job-list {
	margin-top: 5px;
}

	.profile-job-list li {
		display: inline-block;
		margin-right: 8px;
	}

		.profile-job-list li h6 a:hover {
			color: var(--color-main-action);
		}

/* profile candidate list */
.user-profile-candidate .candidate-item {
	box-shadow: none;
	border: 1px solid rgba(0, 0, 0, .08);
}


/* profile upload */
.profile-upload {
	width: 100%;
	height: 200px;
	border: 2px dashed rgba(0, 0, 0, .1);
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.profile-file {
	display: none;
}

.profile-upload span i {
	margin-right: 5px;
}


/* profile message */
.profile-message-wrapper {
	display: flex;
}

.profile-message-inbox {
	max-width: 340px;
	border: 1px solid #EDF1F9;
	border-radius: 10px;
}

.profile-message-inbox {
	overflow: hidden;
}

.message-content {
	padding-left: 30px;
	position: relative;
	overflow: hidden;
}

.message-content-info {
	max-height: 750px;
	overflow-y: scroll;
	margin-right: -50px;
	padding-right: 50px;
}

.profile-message-inbox,
.message-content {
	flex: 1;
}

	.profile-message-inbox ul {
		max-height: 950px;
		overflow-y: scroll;
		width: 357px;
		list-style: none;
		padding: 0;
		margin: 0;
	}

		.profile-message-inbox ul li.message-active {
			border-left: 3px solid var(--color-main-action);
		}

		.profile-message-inbox ul li {
			border-bottom: 1px solid #EDF1F9;
			transition: .2s;
			list-style: none;
		}

			.profile-message-inbox ul li:last-child {
				border-bottom: none;
			}

.message-by-content h5 {
	margin-bottom: 0;
	font-size: 0.875rem;
	line-height: 1;
}

.profile-message-inbox ul li a {
	position: relative;
	display: block;
	padding: 30px;
}

.profile-message-inbox .message-avatar {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
}

.message-avatar img {
	display: inline-block;
	width: 54px;
	height: 54px;
	border-radius: 50%;
}

.message-avatar img {
	width: 50px;
	height: 50px;
}

.profile-message-inbox .message-by {
	margin-left: 50px;
}

.message-by-content h5 i {
	background: #F98F14;
	padding: 3px 8px;
	border-radius: 50px;
	color: #fff;
	font-size: 0.8125rem;
}

.message-by-content span {
	font-size: 0.8125rem;
	position: absolute;
	top: 25.5px;
	right: 25px;
	float: right;
	color: #888888;
}

.profile-message-inbox .message-by p {
	height: 26px;
	max-width: 205px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	font-size: 0.875rem;
	margin: 0;
	padding: 0;
	color: #6B747D;
	line-height: 27px;
}

.message-item {
	display: block;
	position: relative;
	margin-bottom: 25px;
}

	.message-item .message-avatar {
		position: absolute;
		left: 0;
		top: 0;
	}

		.message-item .message-avatar img {
			width: 50px;
			height: 50px;
			display: inline-block;
			border-radius: 50%;
		}

	.message-item .message-description {
		margin-left: 70px;
		background: #F4F5F7;
		border-radius: 12px;
		padding: 20px;
		position: relative;
	}

		.message-item .message-description::before {
			position: absolute;
			top: 0px;
			left: -9px;
			content: "\f0d9";
			font-family: "Font Awesome 6 Pro";
			font-weight: bold;
			font-size: 1.9735rem;
			color: #F4F5F7;
		}

		.message-item .message-description p {
			font-size: 0.9375rem;
			padding: 0;
			margin: 0;
			line-height: 27px;
		}

	.message-item.me .message-avatar {
		left: auto;
		right: 0;
		position: absolute;
		top: 0;
	}

	.message-item.me .message-description {
		color: var(--color-main-action);
		background: #EBEFFE;
		margin-left: 0;
		margin-right: 70px;
		border-radius: 12px;
		padding: 20px;
		position: relative;
	}

		.message-item.me .message-description::before {
			content: "\f0da";
			left: auto;
			right: -9px;
			color: #EBEFFE;
		}

.message-reply {
	margin-top: 15px;
	position: absolute;
	bottom: 0;
	left: 30px;
	right: 15px;
}

	.message-reply .form-control {
		padding: 15px 20px;
		box-shadow: none;
		border-radius: 10px;
	}

		.message-reply .form-control:focus {
			border-color: var(--color-main-action);
		}

	.message-reply .theme-btn {
		margin-top: 15px;
	}

.message-status {
	width: 12px;
	height: 12px;
	background: #252629;
	display: flex;
	border-radius: 50%;
	border: 3px solid #ffffff;
	position: absolute;
	right: -5px;
	top: 50%;
}

	.message-status.online {
		background: #09AD95;
	}

	.message-status.offline {
		background: #DD4B39;
	}

	.message-status.busy {
		background: #F6B500;
	}

.profile-message .header-account img {
	width: 45px;
}



@media all and (max-width: 991px) {
	.message-by-content span {
		right: 65px;
	}

	.message-reply {
		right: 0;
	}
}

@media all and (max-width: 767px) {
	.table-property-info a {
		display: block;
	}

	.table-property-info h6 {
		margin-top: 10px;
	}

	.user-profile-card-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.user-profile-card-header-right {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.profile-message .profile-message-wrapper {
		flex-direction: column;
		gap: 50px;
	}

	.profile-message .user-profile-card-header {
		flex-direction: row;
		align-items: center;
		gap: 20px;
	}

	.profile-message .message-content {
		padding-left: 0;
		padding-bottom: 200px;
	}

	.message-reply {
		left: 0;
	}
}




/* ===================
coming soon css 
====================== */

.coming-soon {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	min-height: 100vh;
	width: 100%;
	top: 0;
	left: 0;
	position: relative;
}

	.coming-soon .container {
		position: relative;
	}

	.coming-soon:before {
		position: absolute;
		content: '';
		background: rgba(0, 0, 0, .7);
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
	}

	.coming-soon .newsletter-form {
		position: relative;
		margin-top: 30px;
	}

		.coming-soon .newsletter-form .input-newsletter {
			height: 55px;
			display: block;
			width: 100%;
			border: none;
			border-radius: 50px;
			font-size: 0.875rem;
			padding-top: 0;
			padding-right: 0;
			padding-bottom: 0;
			padding-left: 25px;
			box-shadow: none;
		}

		.coming-soon .newsletter-form button {
			position: absolute;
			right: 4px;
			top: 4px;
			bottom: 4px;
			height: auto;
			border: none;
			border-radius: 50px;
			background: var(--color-main-action);
			display: inline-block;
			color: #fff;
			padding-left: 30px;
			padding-right: 30px;
			font-weight: 500;
			transition: .5s;
		}

			.coming-soon .newsletter-form button:hover {
				background-color: var(--color-main-action);
				color: #fff;
			}

.coming-social {
	margin-top: 30px;
	text-align: center;
}

	.coming-social a {
		color: #fff;
		margin: 5px;
		width: 40px;
		height: 40px;
		line-height: 36px;
		text-align: center;
		border-radius: 50px;
		border: 2px solid #fff;
		display: inline-block;
		transition: .5s;
	}

		.coming-social a:hover {
			background: var(--color-main-action);
			border-color: var(--color-main-action);
		}

.countdown-wrap {
	margin-top: 30px;
}

.countdown-single {
	background: var(--color-main-action);
	padding: 20px;
	margin: 10px;
	position: relative;
	overflow: hidden;
	border-radius: 50px;
	box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

	.countdown-single h2 {
		color: #fff;
	}

	.countdown-single h5 {
		color: #fff;
	}




/* ===================
error css 
====================== */

.error-wrapper {
	text-align: center;
}

	.error-wrapper h1 {
		font-size: 15.625rem;
		letter-spacing: 5px;
		font-weight: bold;
		color: var(--color-main-action);
		line-height: 1;
	}

		.error-wrapper h1 span {
			color: var(--color-primary-text);
		}

	.error-wrapper h2 {
		margin-top: 30px;
		margin-bottom: 10px;
	}

	.error-wrapper img {
		width: 100%;
	}

	.error-wrapper .theme-btn {
		margin-top: 30px;
	}


@media all and (max-width: 767px) {
	.error-wrapper h1 {
		font-size: 10rem;
	}
}



/* ===================
terms/privacy css 
====================== */

.terms-content:not(:last-child) {
	margin-bottom: 54px;
}

.terms-content:first-child {
	margin-top: -3px;
}

.terms-content .terms-list {
	margin-top: 37px;
}

.terms-content h3 {
	font-size: 1.5rem;
	margin-bottom: 23px;
	position: relative;
	font-weight: 700;
}

.terms-content p:not(:last-child) {
	margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
	margin-bottom: 16px;
}




/* ===================
footer css 
====================== */

.footer-area {
	background: var(--color-background);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

	.footer-area::before {
		content: "";
		position: absolute;
		width: 200px;
		height: 200px;
		background: var(--color-main-action);
		left: 30%;
		top: -50px;
		border-radius: 50%;
		opacity: .08;
	}

	.footer-area::after {
		content: "";
		position: absolute;
		width: 200px;
		height: 200px;
		border: 20px solid var(--color-main-action);
		right: 30%;
		bottom: -50px;
		border-radius: 50%;
		opacity: .08;
	}

.footer-widget-box {
	margin-bottom: 20px;
}

.footer-widget {
	position: relative;
	z-index: 1;
}

.footer-logo img {
	width: 180px;
	margin-bottom: 30px;
}

.copyright {
	padding: 20px 0;
	border-top: 1px solid rgba(0, 0, 0, .05);
}

	.copyright .copyright-text {
		color: #66789C;
		margin-bottom: 0px;
		font-size: 1rem;
	}

		.copyright .copyright-text a {
			color: var(--color-main-action);
			font-weight: 500;
		}

.footer-widget-title {
	color: var(--color-primary-text);
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 30px;
	font-size: 1.125rem;
	z-index: 1;
}

	.footer-widget-title::before {
		position: absolute;
		content: '';
		z-index: -1;
		width: 30px;
		height: 2.5px;
		background-color: var(--color-main-action);
		bottom: 0;
		left: 0;
	}

	.footer-widget-title::after {
		position: absolute;
		content: '';
		z-index: -1;
		width: 10px;
		height: 2.5px;
		background-color: var(--color-main-action);
		bottom: 0;
		left: 35px;
	}

.footer-list {
	display: flex;
	flex-direction: column;
	gap: .8rem;
}

	.footer-list li a {
		color: #66789C;
		position: relative;
		padding-left: 10px;
		transition: all .5s ease-in-out;
	}

		.footer-list li a::before {
			content: "";
			position: absolute;
			height: 1.8px;
			width: 5px;
			background: #66789C;
			left: 0;
			top: 14px;
			transition: all .5s ease-in-out;
		}

		.footer-list li a:hover::before {
			width: 10px;
			background: var(--color-main-action);
		}

		.footer-list li a i {
			margin-right: 5px;
			color: var(--color-main-action);
			font-weight: 400;
			font-size: 0.875rem;
		}

		.footer-list li a:hover {
			padding-left: 20px;
			color: var(--color-main-action);
		}

.footer-widget-box p {
	color: #66789C;
	padding-right: 18px;
	margin-bottom: 20px;
}

.footer-social {
	display: flex;
	gap: 15px;
	justify-content: end;
}

	.footer-social li a i {
		height: 38px;
		width: 38px;
		line-height: 38px;
		text-align: center;
		border-radius: 50px;
		background: #fff;
		color: var(--color-main-action);
		transition: all .5s ease-in-out;
	}

		.footer-social li a i:hover {
			background: var(--color-main-action);
			color: #fff;
		}

.footer-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	align-items: center;
	color: #66789C;
	font-size: 1rem;
	margin-bottom: 15px;
}

	.footer-contact li a {
		color: #66789C;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}

	.footer-contact li i {
		width: 32px;
		height: 32px;
		line-height: 32px;
		font-size: 1rem;
		margin-right: 15px;
		border-radius: 50px;
		background: var(--color-main-action);
		text-align: center;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		color: #fff;
	}

.subscribe-form .form-group-icon {
	position: relative;
}

.subscribe-form .form-control {
	padding: 17px 65px 17px 45px;
	border-radius: 10px;
	box-shadow: none;
	border: none;
}

.subscribe-form .form-group-icon i {
	position: absolute;
	left: 15px;
	top: 19px;
	font-size: 1.25rem;
}

.subscribe-form .theme-btn {
	position: absolute;
	right: 5px;
	bottom: 6px;
	font-size: 1.25rem;
	padding: 5px 15px;
}

	.subscribe-form .theme-btn span {
		margin-right: 0;
	}

.footer-download {
	margin-top: 20px;
}

	.footer-download h5 {
		margin-bottom: 12px;
	}

.footer-download-content {
	display: flex;
	gap: 10px;
}

.footer-download img {
	border-radius: 10px;
}



@media all and (max-width: 1199px) {
	.footer-widget-box {
		margin-bottom: 50px;
	}
}

@media all and (max-width: 991px) {

	.footer-area::before {
		display: none;
	}

	.footer-widget-wrapper {
		padding-bottom: 0px;
	}

	.copyright .footer-menu {
		float: left;
		margin-top: 20px;
		text-align: left;
	}

		.copyright .footer-menu li {
			margin-left: 0;
			margin-right: 15px;
		}
}

@media all and (max-width: 767px) {
	.footer-widget-wrapper {
		padding-bottom: 0px;
	}

	.footer-social {
		justify-content: flex-start;
		margin-top: 20px;
	}
}



/* ======================
home 2
====================== */

.home-2 .main {
	margin-top: 0;
}

.home-2 .hero-single {
	background: transparent;
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
}

	.home-2 .hero-single::before {
		content: "";
		position: absolute;
		background: #f0f6fe;
		border-radius: 0 80px 80px 0;
		height: 100%;
		width: 65%;
		left: 0;
		top: 0;
		z-index: -1;
	}

.home-2 .hero-img {
	padding-right: 30px;
	position: relative;
}

	.home-2 .hero-img::before {
		content: "";
		position: absolute;
		background: #FFD04E;
		right: 0;
		top: -30px;
		bottom: -30px;
		width: 80%;
		border-radius: 50px;
	}

	.home-2 .hero-img img {
		position: relative;
		width: 100%;
		border-radius: 50px;
	}

.home-2 .category-item {
	flex-direction: column;
	text-align: center;
	padding: 30px 30px;
}

.home-2 .category-icon {
	width: 100px;
	height: 100px;
	line-height: 100px;
	border-radius: 50%;
}


/* ======================
home 3
====================== */

.home-3 .main {
	margin-top: 0;
}

.home-3 .navbar {
	background: #fff;
}

.home-3 .hero-single {
	background-image: url(../img/hero/02.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	padding-top: 130px;
	padding-bottom: 130px;
}

	.home-3 .hero-single::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(5, 38, 78, .8);
		z-index: -1;
	}

	.home-3 .hero-single .hero-content p,
	.home-3 .hero-single .hero-content .hero-sub-title,
	.home-3 .hero-single .hero-content .hero-title {
		color: #fff;
	}

	.home-3 .hero-single .hero-content p {
		font-weight: normal;
	}

.home-3 .popular-search,
.home-3 .popular-search a,
.home-3 .popular-search span {
	color: #fff;
}

	.home-3 .popular-search a {
		margin-left: 2px;
		text-decoration: underline;
	}



/* ======================
home 4
====================== */

.home-4 .main {
	margin-top: 0;
}

.home-4 .navbar {
	background: #fff;
}

.home-4 .hero-single {
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center !important;
	position: relative;
	padding-top: 150px;
	padding-bottom: 180px;
}

	.home-4 .hero-single::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .7);
		z-index: -1;
	}

	.home-4 .hero-single .hero-content p,
	.home-4 .hero-single .hero-content .hero-sub-title,
	.home-4 .hero-single .hero-content .hero-title {
		color: #fff;
	}

.home-4 .hero-slider.owl-theme .owl-nav {
	margin-top: 0px;
}

	.home-4 .hero-slider.owl-theme .owl-nav [class*=owl-] {
		color: var(--color-main-action);
		font-size: 1.5625rem;
		margin: 0;
		padding: 0;
		background: #fff;
		display: inline-block;
		cursor: pointer;
		height: 55px;
		width: 55px;
		border-radius: 50px;
		line-height: 55px;
		text-align: center;
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
		transition: all .5s ease-in-out;
	}

		.home-4 .hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
			background: var(--color-main-action);
			color: #fff;
		}

	.home-4 .hero-slider.owl-theme .owl-nav .owl-prev {
		left: 40px;
	}

	.home-4 .hero-slider.owl-theme .owl-nav .owl-next {
		right: 40px;
	}

@media all and (max-width: 1199px) {

	.home-4 .hero-single .hero-content .hero-title {
		font-size: 2.3125rem;
	}

	.home-4 .hero-slider.owl-theme .owl-nav .owl-prev,
	.home-4 .hero-slider.owl-theme .owl-nav .owl-next {
		top: unset;
		bottom: 50px !important;
	}

	.home-4 .hero-slider.owl-theme .owl-nav .owl-prev {
		left: unset;
		right: 120px;
	}

	.home-4 .hero-slider.owl-theme .owl-nav .owl-next {
		right: 40px;
	}
}



/* ======================
home 5
====================== */

.home-5 .main {
	margin-top: 0;
}

.home-5 .hero-single {
	background: transparent;
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
}

	.home-5 .hero-single::before {
		content: "";
		position: absolute;
		background: #f0f6fe;
		border-radius: 30px;
		height: 100%;
		width: 85%;
		z-index: -1;
	}

.home-5 .hero-content {
	padding-left: 50px;
}

.home-5 .hero-img img {
	width: 40%;
	margin-left: -80px;
	z-index: -1;
}


@media all and (max-width: 1199px) {
	.home-5 .hero-content {
		padding-left: 0px;
	}

	.home-5 .search-form-wrapper .theme-btn {
		width: unset !important;
	}
}

@media all and (max-width: 991px) {
	.home-5 .hero-single {
		padding-top: 150px;
	}

		.home-5 .hero-single::before {
			width: 100%;
			left: 0;
			top: 0;
			border-radius: 0;
		}
}


/* ======================
Flaticon
====================== */


@font-face {
	font-family: "Flaticon";
	src: url("/fonts/Flaticon.eot");
	src: url("/fonts/Flaticon.eot?#iefix") format("embedded-opentype"), url("/fonts/Flaticon.woff2") format("woff2"), url("/fonts/Flaticon.woff") format("woff"), url("/fonts/Flaticon.ttf") format("truetype"), url("/fonts/Flaticon.svg#Flaticon") format("svg");
	font-weight: normal;
	font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	@font-face {
		font-family: "Flaticon";
		src: url("/fonts/Flaticon.svg#Flaticon") format("svg");
	}
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
	font-family: Flaticon;
	font-style: normal;
}

.flaticon-notebook:before {
	content: "\f100";
}

.flaticon-edit:before {
	content: "\f101";
}

.flaticon-placeholder:before {
	content: "\f102";
}

.flaticon-paper-plane:before {
	content: "\f103";
}

.flaticon-user:before {
	content: "\f104";
}

.flaticon-unlink:before {
	content: "\f105";
}

.flaticon-search:before {
	content: "\f106";
}

.flaticon-drop:before {
	content: "\f107";
}

.flaticon-christmas-tree:before {
	content: "\f108";
}

.flaticon-plus:before {
	content: "\f109";
}

.flaticon-battery:before {
	content: "\f10a";
}

.flaticon-target:before {
	content: "\f10b";
}

.flaticon-first-aid-kit:before {
	content: "\f10c";
}

.flaticon-tablet:before {
	content: "\f10d";
}

.flaticon-dustbin:before {
	content: "\f10e";
}

.flaticon-telegram-logo:before {
	content: "\f10f";
}

.flaticon-4-square-shapes:before {
	content: "\f110";
}

.flaticon-speech-bubble-and-three-dots:before {
	content: "\f111";
}

.flaticon-man:before {
	content: "\f112";
}

.flaticon-tree-of-love:before {
	content: "\f113";
}

.flaticon-play-button:before {
	content: "\f114";
}

.flaticon-royal-crown-of-elegant-vintage-design:before {
	content: "\f115";
}

.flaticon-desktop-computer-with-magnifying-lens-focusing-on-data:before {
	content: "\f116";
}

.flaticon-test-tube-flask-and-drop-of-blood:before {
	content: "\f117";
}

.flaticon-stocks-graphic-on-laptop-monitor:before {
	content: "\f118";
}

.flaticon-attachment:before {
	content: "\f119";
}

.flaticon-transport:before {
	content: "\f11a";
}

.flaticon-recycle-triangle-of-three-arrows-outlines:before {
	content: "\f11b";
}

.flaticon-arrows:before {
	content: "\f11c";
}

.flaticon-snowflake:before {
	content: "\f11d";
}

.flaticon-clock:before {
	content: "\f11e";
}

.flaticon-find-in-folder:before {
	content: "\f11f";
}

.flaticon-smartphone:before {
	content: "\f120";
}

.flaticon-arrow-pointing-to-right:before {
	content: "\f121";
}

.flaticon-gas-pump:before {
	content: "\f122";
}

.flaticon-house-silhouette:before {
	content: "\f123";
}

.flaticon-arrows-1:before {
	content: "\f124";
}

.flaticon-floor:before {
	content: "\f125";
}

.flaticon-exercise:before {
	content: "\f126";
}

.flaticon-love-planet:before {
	content: "\f127";
}

.flaticon-workers:before {
	content: "\f128";
}

.flaticon-open-magazine:before {
	content: "\f129";
}

.flaticon-confirm-schedule:before {
	content: "\f12a";
}

.flaticon-star:before {
	content: "\f12b";
}

.flaticon-order:before {
	content: "\f12c";
}

.flaticon-key:before {
	content: "\f12d";
}

.flaticon-medical:before {
	content: "\f12e";
}

.flaticon-smartphone-1:before {
	content: "\f12f";
}

.flaticon-plug:before {
	content: "\f130";
}

.flaticon-arrows-2:before {
	content: "\f131";
}

.flaticon-arrows-3:before {
	content: "\f132";
}

.flaticon-money-bag:before {
	content: "\f133";
}

.flaticon-next:before {
	content: "\f134";
}

.flaticon-back:before {
	content: "\f135";
}

.flaticon-reload:before {
	content: "\f136";
}

.flaticon-headphones:before {
	content: "\f137";
}

.flaticon-signs:before {
	content: "\f138";
}

.flaticon-diamond:before {
	content: "\f139";
}

.flaticon-chat:before {
	content: "\f13a";
}

.flaticon-phone:before {
	content: "\f13b";
}

.flaticon-down-chevron:before {
	content: "\f13c";
}

.flaticon-up-chevron:before {
	content: "\f13d";
}

.flaticon-stairs:before {
	content: "\f13e";
}

.flaticon-music-player:before {
	content: "\f13f";
}

.flaticon-play-button-1:before {
	content: "\f140";
}

.flaticon-speaker:before {
	content: "\f141";
}

.flaticon-menu:before {
	content: "\f142";
}

.flaticon-share:before {
	content: "\f143";
}

.flaticon-map:before {
	content: "\f144";
}

.flaticon-hourglass:before {
	content: "\f145";
}

.flaticon-layers:before {
	content: "\f146";
}

.flaticon-home:before {
	content: "\f147";
}

.flaticon-handshake:before {
	content: "\f148";
}

.flaticon-time:before {
	content: "\f149";
}

.flaticon-worldwide:before {
	content: "\f14a";
}

.flaticon-board:before {
	content: "\f14b";
}

.flaticon-twitter:before {
	content: "\f14c";
}

.flaticon-smartphone-2:before {
	content: "\f14d";
}

.flaticon-mobile:before {
	content: "\f14e";
}

.flaticon-maps-and-flags:before {
	content: "\f14f";
}

.flaticon-add:before {
	content: "\f150";
}

.flaticon-substract:before {
	content: "\f151";
}

.flaticon-phone-call:before {
	content: "\f152";
}

.flaticon-monitor:before {
	content: "\f153";
}

.flaticon-menu-1:before {
	content: "\f154";
}

.flaticon-cancel:before {
	content: "\f155";
}

.flaticon-24-hours:before {
	content: "\f156";
}

.flaticon-t-shirt-outline:before {
	content: "\f157";
}

.flaticon-folder-outline:before {
	content: "\f158";
}

.flaticon-quote:before {
	content: "\f159";
}

.flaticon-play-button-2:before {
	content: "\f15a";
}

.flaticon-right-quotation-sign:before {
	content: "\f15b";
}

.flaticon-up-arrow:before {
	content: "\f15c";
}

.flaticon-open-mail-interface-symbol:before {
	content: "\f15d";
}

.flaticon-menu-button:before {
	content: "\f15e";
}

.flaticon-smartphone-3:before {
	content: "\f15f";
}

.flaticon-add-1:before {
	content: "\f160";
}

.flaticon-play-button-3:before {
	content: "\f161";
}

.flaticon-play-button-4:before {
	content: "\f162";
}

.flaticon-support:before {
	content: "\f163";
}

.flaticon-close:before {
	content: "\f164";
}

.flaticon-heart-1:before {
	content: "\f165";
}

.flaticon-renewable:before {
	content: "\f166";
}

.flaticon-bar-chart:before {
	content: "\f167";
}

.flaticon-profit:before {
	content: "\f168";
}

.flaticon-settings:before {
	content: "\f169";
}

.flaticon-confirm:before {
	content: "\f16a";
}

.flaticon-edit-1:before {
	content: "\f16b";
}

.flaticon-share-1:before {
	content: "\f16c";
}

.flaticon-decreasing:before {
	content: "\f16d";
}

.flaticon-graph:before {
	content: "\f16e";
}

.flaticon-multi-tab:before {
	content: "\f16f";
}

.flaticon-graph-1:before {
	content: "\f170";
}

.flaticon-graph-2:before {
	content: "\f171";
}

.flaticon-tick:before {
	content: "\f172";
}

.flaticon-pin:before {
	content: "\f173";
}

.flaticon-alarm-clock:before {
	content: "\f174";
}

.flaticon-close-1:before {
	content: "\f175";
}

.flaticon-settings-1:before {
	content: "\f176";
}

.flaticon-telephone:before {
	content: "\f177";
}

.flaticon-home-1:before {
	content: "\f178";
}

.flaticon-search-1:before {
	content: "\f179";
}

.flaticon-notification:before {
	content: "\f17a";
}

.flaticon-attachment-1:before {
	content: "\f17b";
}

.flaticon-down-arrow:before {
	content: "\f17c";
}

.flaticon-tv:before {
	content: "\f17d";
}

.flaticon-phone-receiver:before {
	content: "\f17e";
}

.flaticon-next-1:before {
	content: "\f17f";
}

.flaticon-back-1:before {
	content: "\f180";
}

.flaticon-clock-1:before {
	content: "\f181";
}

.flaticon-email:before {
	content: "\f182";
}

.flaticon-email-1:before {
	content: "\f183";
}

.flaticon-engineer:before {
	content: "\f184";
}

.flaticon-cog:before {
	content: "\f185";
}

.flaticon-cog-1:before {
	content: "\f186";
}

.flaticon-call:before {
	content: "\f187";
}

.flaticon-call-1:before {
	content: "\f188";
}

.flaticon-email-2:before {
	content: "\f189";
}

.flaticon-shopping-bag:before {
	content: "\f18a";
}

.flaticon-clock-2:before {
	content: "\f18b";
}

.flaticon-custom:before {
	content: "\f18c";
}

.flaticon-settings-2:before {
	content: "\f18d";
}

.flaticon-monitor-1:before {
	content: "\f18e";
}

.flaticon-stats:before {
	content: "\f18f";
}

.flaticon-monitor-2:before {
	content: "\f190";
}

.flaticon-bars:before {
	content: "\f191";
}

.flaticon-bar-chart-1:before {
	content: "\f192";
}

.flaticon-bars-1:before {
	content: "\f193";
}

.flaticon-camera:before {
	content: "\f194";
}

.flaticon-camera-1:before {
	content: "\f195";
}

.flaticon-camera-2:before {
	content: "\f196";
}

.flaticon-dslr-camera:before {
	content: "\f197";
}

.flaticon-tower:before {
	content: "\f198";
}

.flaticon-technical-support:before {
	content: "\f199";
}

.flaticon-maintenance:before {
	content: "\f19a";
}

.flaticon-production:before {
	content: "\f19b";
}

.flaticon-3d-printer:before {
	content: "\f19c";
}

.flaticon-gift:before {
	content: "\f19d";
}

.flaticon-winner:before {
	content: "\f19e";
}

.flaticon-diploma:before {
	content: "\f19f";
}

.flaticon-diploma-1:before {
	content: "\f1a0";
}

.flaticon-medal:before {
	content: "\f1a1";
}

.flaticon-title:before {
	content: "\f1a2";
}

.flaticon-certificate:before {
	content: "\f1a3";
}

.flaticon-meeting-point:before {
	content: "\f1a4";
}

.flaticon-pin-1:before {
	content: "\f1a5";
}

.flaticon-email-3:before {
	content: "\f1a6";
}

.flaticon-call-2:before {
	content: "\f1a7";
}

.flaticon-telephone-1:before {
	content: "\f1a8";
}

.flaticon-teacher:before {
	content: "\f1a9";
}

.flaticon-support-2:before {
	content: "\f1aa";
}

.flaticon-design-tool:before {
	content: "\f1ab";
}

.flaticon-success:before {
	content: "\f1ac";
}

.flaticon-startup:before {
	content: "\f1ad";
}

.flaticon-creativity:before {
	content: "\f1ae";
}

.flaticon-creativity-1:before {
	content: "\f1af";
}

.flaticon-puzzle:before {
	content: "\f1b0";
}

.flaticon-vector-1:before {
	content: "\f1b1";
}

.flaticon-brainstorm:before {
	content: "\f1b2";
}

.flaticon-pencil:before {
	content: "\f1b3";
}

.flaticon-typography:before {
	content: "\f1b4";
}

.flaticon-lightbulb:before {
	content: "\f1b5";
}

.flaticon-cancel-1:before {
	content: "\f1b6";
}

.flaticon-dislike:before {
	content: "\f1b7";
}

.flaticon-paper-plane-1:before {
	content: "\f1b8";
}

.flaticon-mail:before {
	content: "\f1b9";
}

.flaticon-call-3:before {
	content: "\f1ba";
}

.flaticon-shopping-cart:before {
	content: "\f1bb";
}

.flaticon-shopping-cart-1:before {
	content: "\f1bc";
}

.flaticon-heart:before {
	content: "\f1bd";
}

.flaticon-compare:before {
	content: "\f1be";
}

.flaticon-user-1:before {
	content: "\f1bf";
}

.flaticon-loupe:before {
	content: "\f1c0";
}

.flaticon-paper-clip:before {
	content: "\f1c1";
}

.flaticon-shield:before {
	content: "\f1c2";
}

.flaticon-diamond-2:before {
	content: "\f1c3";
}

.flaticon-checked:before {
	content: "\f1c4";
}

.flaticon-right:before {
	content: "\f1c5";
}

.flaticon-left:before {
	content: "\f1c6";
}

.flaticon-padlock:before {
	content: "\f1c7";
}

.flaticon-starred:before {
	content: "\f1c8";
}

.flaticon-star-1:before {
	content: "\f1c9";
}

.flaticon-grid:before {
	content: "\f1ca";
}

.flaticon-option:before {
	content: "\f1cb";
}

.flaticon-sort:before {
	content: "\f1cc";
}

.flaticon-delete:before {
	content: "\f1cd";
}

.flaticon-envelope:before {
	content: "\f1ce";
}

.flaticon-quote-1:before {
	content: "\f1cf";
}

.flaticon-briefcase:before {
	content: "\f1d0";
}

.flaticon-file:before {
	content: "\f1d1";
}

.flaticon-money-1:before {
	content: "\f1d2";
}

.flaticon-promotion:before {
	content: "\f1d3";
}

.flaticon-megaphone:before {
	content: "\f1d4";
}

.flaticon-vector:before {
	content: "\f1d5";
}

.flaticon-web-programming:before {
	content: "\f1d6";
}

.flaticon-rocket-ship:before {
	content: "\f1d7";
}

.flaticon-headhunting:before {
	content: "\f1d8";
}

.flaticon-approved:before {
	content: "\f1d9";
}

.flaticon-support-1:before {
	content: "\f1da";
}

.flaticon-first-aid-kit-1:before {
	content: "\f1db";
}

.flaticon-car:before {
	content: "\f1dc";
}

.flaticon-compact:before {
	content: "\f1dd";
}

.flaticon-map-locator:before {
	content: "\f1de";
}

.flaticon-clock-3:before {
	content: "\f1df";
}

.flaticon-money:before {
	content: "\f1e0";
}

.flaticon-money-2:before {
	content: "\f1e1";
}

.flaticon-bookmark:before {
	content: "\f1e2";
}

.flaticon-search-2:before {
	content: "\f1e3";
}

.flaticon-search-3:before {
	content: "\f1e4";
}


/* ===================
Booking Med extensions
====================== */

.upcase {
	text-transform: uppercase;
}

.bm-list-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	padding: 10px 10px 10px 15px;
	border-radius: 15px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.bm-list-item {
	border-radius: 15px;
	padding: 12px 4px 16px 16px;
	margin-bottom: 25px;
	position: relative;
	transition: all .5s ease-in-out;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	border: 1px solid #000;
}

	.bm-list-item:hover {
		transform: translateY(-7px);
	}

@media all and (max-width: 991px) {
	.bm-list-item {
		margin-left: 12px;
		margin-right: 12px;
	}
}

.bm-list-item-active {
	border-width: 6px;
	border-style: solid;
	border-color: #FF9900;
	color: black;
}

.bm-list-item-passed {
	border-width: 6px;
	border-style: solid;
	border-color: darkgray;
	color: black;
}

.bm-list-item-row {
	display: flex;
	padding-top: 2px;
}

.bm-list-valgn-center {
	align-items: center;
}

.bm-list-valgn-bottom {
	align-items: flex-end;
}

.bm-list-space-evenly {
	justify-content: space-evenly;
}

.bm-list-space-between {
	justify-content: space-between;
}

.bm-list-item-points {
	align-content: end;
	text-align: right;
	color: black;
}

.csvcs-institution {
	line-height: 1.2rem;
}

.csvcs-institution-address {
	font-size: 0.75rem;
}

@media all and (max-width: 768px) {
	.bm-list-item-points {
		align-content: center;
		text-align: center;
		padding-top: 5px;
		padding-bottom: 10px;
	}

	.csvcs-institution {
		padding-top: 5px;
		padding-bottom: 5px;
	}
}

.csvcs-price {
	font-size: 1.3rem;
	line-height: 1.8rem;
	font-weight: 500;
}

.csvcs-service-status {
	font-size: 1.2rem;
	line-height: 1.7rem;
	font-weight: 800;
	text-transform: uppercase;
	color: black;
	text-align: start;
	padding: 0px 8px 8px 0px
}

.csvcs-service-reservation-exp {
	text-transform: uppercase;
	font-size: 0.75rem;
	text-align: end;
	padding-right: 8px;
}

.csvcs-service-reservation-exp-info {
	font-size: 1.15rem;
}

.csvcs-service-name {
	font-size: 1.2rem;
	line-height: 1.7rem;
	font-weight: 500;
	text-transform: uppercase;
	text-align: start;
}

.big-select .list {
	max-height: 300px;
	overflow-y: scroll !important;
}


.bm-process-image-container {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
}

.bm-process-image-1 {
	flex: 0 0 auto;
	width: 234px;
	z-index: -1;
}

.bm-process-image-2 {
	flex: 0 0 auto;
	width: 234px;
	margin-left: -30px;
	z-index: -2;
}


.bm-process-image-3 {
	flex: 0 0 auto;
	width: 234px;
	margin-left: -30px;
	z-index: -3;
}

.bm-process-image-4 {
	flex: 0 0 auto;
	width: 234px;
	margin-left: -30px;
	z-index: -4;
}

.bm-process-image-5 {
	flex: 0 0 auto;
	width: 234px;
	margin-left: -30px;
	z-index: -5;
}

.bm-process-image-6 {
	flex: 0 0 auto;
	width: 194px;
	margin-left: -30px;
	z-index: -6;
}

.bm-process-title {
	font-size: 1.3rem;
	text-transform: uppercase;
	text-align: center;
}

.bm-process-item-last {
	padding-left: 15px;
	padding-right: 15px;
}

.bm-process-item {
	padding-left: 2px;
	padding-right: 28px;
}

.bm-process-text {
	font-size: 0.7rem;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 20px;
	line-height: 0.9rem;
	padding-left: 15px;
	padding-right: 15px;
}

.nice-select .current {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.big-select.nice-select .list {
	white-space: normal !important;
}

.big-select.nice-select .list {
	width: 120% !important;
}

.big-select.nice-select .option {
	line-height: 1.4rem;
	min-height: 1rem;
	padding-top: 12px;
	padding-bottom: 12px;
}

.nice-select-search-input {
	border: 0;
	border-radius: 15px;
	margin-left: 5px;
	width: 100%;
	height: 90%;
	background-color: #eeeeee;
	font-size: 1rem;
	padding-left: 8px;
}

	.nice-select-search-input:focus {
		outline: none;
		border: 0;
	}

.srch-list-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	padding: 10px 10px 10px 15px;
	border-radius: 15px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.srch-list-item {
	border-radius: 15px;
	padding: 12px 4px 16px 16px;
	margin-bottom: 25px;
	position: relative;
	transition: all .5s ease-in-out;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	border: 1px solid #000;
}

	.srch-list-item:hover {
		transform: translateY(-7px);
	}

@media all and (max-width: 991px) {
	.srch-list-item {
		margin-left: 12px;
		margin-right: 12px;
	}
}

.srch-list-item-active {
	border-width: 6px;
	border-style: solid;
	border-color: #008080;
	color: black;
}

.srch-list-item-passed {
	border-width: 6px;
	border-style: solid;
	border-color: #FF6B6B;
	color: black;
}

.srch-institution-image {
	height: 70px;
}

@media all and (max-width: 768px) {
	.srch-image-and-rating {
		margin-bottom: 12px;
	}
}

.srch-service-details {
	font-size: 1.3rem;
	line-height: 1.8rem;
	font-weight: 500;
	padding: 0px 12px 8px 4px
}

@media all and (min-width: 992px) {
	.srch-service-details {
		position: relative;
		top: 22px;
	}
}

.srch-service-details-nf {
	font-size: 1.3rem;
	line-height: 1.75rem;
	font-weight: 500;
	align-content: end;
}

.srch-service-name {
	text-transform: uppercase;
}

.srch-service-actions {
	align-content: end;
	text-align: right;
}

.srch-service-actions-nf {
	align-content: end;
	text-align: center;
}

.srch-service-discount {
	font-size: 1.3rem;
	align-content: end;
}

.srch-service-discount-nf {
	font-size: 1.3rem;
	align-content: end;
	text-align: center;
}

.srch-btn-nf {
	z-index: 0 !important;
	vertical-align: bottom;
}

.srch-institution {
	line-height: 1.2rem;
	align-content: end;
}

.srch-institution-address {
	font-size: 0.75rem;
	text-transform: uppercase;
}

.srch-service-points {
	align-content: end;
	text-align: right;
	color: black;
}

@media all and (max-width: 768px) {
	.srch-service-points {
		align-content: center;
		text-align: center;
		padding-top: 5px;
		padding-bottom: 10px;
	}
}

.srch-service-button-wide {
	width: 60%;
	max-width: 180px;
	min-width: 120px;
}

.srch-service-button {
	min-width: 25%;
}

.sign-button {
	width: 120px;
	margin-right: 20px;
}

.register-modal-content {
	position: relative;
	display: flex;
	pointer-events: auto;
}

#cb-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	border-radius: 0;
	display: none;
	font-size: 1.25rem;
}

.cookies-paragraph {
	margin-top: 25px;
	margin-bottom: 5px;
	font-size: 1.1rem;
}

	.cookies-paragraph h5 {
		margin-top: 10px;
		margin-bottom: 2px;
	}

.date-control-validation {
	margin-top: -16px;
	margin-bottom: 32px;
}

.html-content {
}

	.html-content h1 {
		font-size: 2.5rem;
	}

	.html-content h2 {
		font-size: 1.5em;
		margin-block-start: 0.83em;
		margin-block-end: 0.83em;
		margin-inline-start: 0px;
		margin-inline-end: 0px;
		font-weight: bold;
		unicode-bidi: isolate;
	}

.bmc-strong {
	font-weight: 600;
}

.badge-image {
	position: absolute;
	width: 120px;
	right: -26px;
	top: -26px;
	border-radius: 30px 30px 30px 30px;
	padding: 5px 10px;
}

.badge-text {
	position: absolute;
	width: 85px;
	right: -15px;
	text-align: center;
	transform: rotate(-15deg);
}

.badge-text-DiscountPercent {
	font-size: 1.25rem;
	font-weight: 800;
	color: #004566;
	top: -10px;
}

.badge-text-New {
	font-size: 1.125rem;
	font-weight: 800;
	color: #b94100;
	top: -9px;
}

.badge-text-Points {
	font-size: 1rem;
	font-weight: 800;
	color: #b94100;
	top: -7px;
}

.badge-text-Promotion {
	font-size: 1.0625rem;
	font-weight: 800;
	color: #b94100;
	top: -8px;
}

.inner-page-header {
	text-align: center;
	padding-top: 80px;
}

.inner-page-header-title-container {
	margin-bottom: 10px;
	padding-top: 120px;
	padding-bottom: 80px;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/inner-pages/header-background.webp);
	background-position: center;
}

.inner-page-header-title {
	font-size: 2.1875rem;
	color: white;
	font-weight: 800;
	text-transform: uppercase;
}

@media all and (max-width: 768px) {
	.inner-page-header-title-container {
		padding-bottom: 40px;
	}
}

.container-parent {
	display: flex;
}

.adbanner-container {
}

.adbanner-image {
	padding-top: 2rem;
	padding-bottom: 1rem;
}

.adbanner {
	width: 20%;
	max-width: 550px;
}

@media all and (max-width: 1199px) {
	.adbanner {
		display: none;
	}

	.adbanner-container {
	}
}

.customer-register-form {
	margin: auto;
	max-width: 39rem;
	padding: 2rem 6rem 2rem 6rem;
	background: var(--color-background);
}

	.customer-register-form .validation-summary-errors {
		font-size: 0.9rem;
	}

.partner-register-form {
	margin: auto;
	max-width: 80%;
	padding: 2rem 6rem 2rem 6rem;
	background: var(--color-background);
}

	.partner-register-form .validation-summary-errors {
		font-size: 0.9rem;
	}


.password-rules-list {
	padding-left: 2rem;
}

.password-rules-list li {
	list-style: disc;
}

.bm-modalinput-required {
	color: red;
}

.tooltip-element {
	padding-left: 12px;
	padding-right: 12px;
}

.tooltip-element-parent {
	cursor: pointer;
}

.bm-ss-tooltip {
	--bs-popover-bg: #B2F0F0;
	--bs-popover-font-size: 1rem;
	--bs-popover-body-padding-y: 0px;
	--bs-popover-body-padding-x: 4px;
	--bs-popover-zindex: 1050;
}

.bm-ss-tooltip-ip {
	position: relative;
	padding: 20px 20px 10px 10px;
}

.bm-ss-tooltip-close {
	font-size: 2rem;
	position: absolute;
	top: 0px;
	right: 0px;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	line-height: 1;
}


.bm-ss-tooltip-icon {
	font-size: 1.5rem;
}


.powered-by-parent {
	margin-top: 3rem;
	float: right;
}

.powered-by {
	font-size: 1.6rem;
	margin-bottom: 8px;
}

.payment-methods-parent {
	margin-bottom: 10px;
}

.payment-methods-list {
	margin-left: 10px;
}

.star-rating-small {
	--star-rating-size: 15px;
}

.star-rating-medium {
	--star-rating-size: 25px;
}

.star-rating-large {
	--star-rating-size: 40px;
}

.star-rating-x-large {
	--star-rating-size: 55px;
}


.star-rating {
	--mask-image: url('data:image/svg+xml,<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100px" height="100px" viewBox="-3.2 -3.2 70.40 70.40" enable-background="new 0 0 64 64" xml:space="preserve" fill="%23000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path fill="%23231F20" d="M62.799,23.737c-0.47-1.399-1.681-2.419-3.139-2.642l-16.969-2.593L35.069,2.265 C34.419,0.881,33.03,0,31.504,0c-1.527,0-2.915,0.881-3.565,2.265l-7.623,16.238L3.347,21.096c-1.458,0.223-2.669,1.242-3.138,2.642 c-0.469,1.4-0.115,2.942,0.916,4l12.392,12.707l-2.935,17.977c-0.242,1.488,0.389,2.984,1.62,3.854 c1.23,0.87,2.854,0.958,4.177,0.228l15.126-8.365l15.126,8.365c0.597,0.33,1.254,0.492,1.908,0.492c0.796,0,1.592-0.242,2.269-0.72 c1.231-0.869,1.861-2.365,1.619-3.854l-2.935-17.977l12.393-12.707C62.914,26.68,63.268,25.138,62.799,23.737z"></path></g></svg>');
	--bg: linear-gradient(90deg, #ffc107 calc(var(--star-rating-size) * var(--val)), #ddd 0);
	height: var(--star-rating-size);
	width: calc(var(--star-rating-size) * var(--star-rating-max));
	border: 0; /* Firefox adds a default border to ranges */
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	/* Chrome and Safari */
	&::-webkit-slider-runnable-track {
		height: 100%;
		mask-image: var(--mask-image);
		mask-size: var(--star-rating-size);
		mask-composite: intersect;
		background: var(--bg);
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}

	&::-webkit-slider-thumb {
		opacity: 0;
	}
	/* Firefox */
	&::-moz-range-track {
		height: 100%;
		mask-image: var(--mask-image);
		mask-size: var(--star-rating-size);
		mask-composite: intersect;
		background: var(--bg);
		print-color-adjust: exact;
	}

	&::-moz-range-thumb {
		opacity: 0;
	}
}

input[type="range"]:disabled {
	cursor: default;
}

.star-rating-parent {
	margin: 0;
	display: grid;
	place-content: center;
	place-items: center;
	width: 140px;
}

	.star-rating-parent label {
		font-size: 0.8em;
		color: #333;
	}

.service-ratings {
	margin: 40px;
}

.star-rating-parent-wide {
	width: 260px !important;
}

.star-rating-parent-uwide {
	width: 100% !important;
}

.ext-login-parent {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

.ext-login-button-parent {
	margin-top: 0.75rem;
}

.ext-login-button {
}

.logo-environment {
	font-size: 0.75rem;
	font-weight: bold;
	color: red;
	position: relative;
	left: 200px;
}

.media-content-container {
	padding: 1.5rem 2rem;
}

.media-content-list {
	font-size: 1.1rem;
	margin-left: 2rem;
}

.media-content-dload-icon {
	font-size: 1.5rem;
}

.nav-bar-additional-item {
	margin-right: 1rem;
}

/* countdown */

.contdown-li {

	@media all and (max-width: 991px) {
		display: none;
	}
}

.countdown-container {
	text-align: center;
	padding: 5px 10px;
}

.countdown-title {
	font-size: 1rem;
	font-weight: 200;
	color: var(--color-main-action);
	margin: 0;
	padding: 0;
	line-height: 1;
	margin-bottom: 3px;
}

.countdown-value {
	font-size: 1.8rem;
	font-weight: 300;
	color: var(--color-primary-text);
	margin: 2px 0;
	padding: 0;
	line-height: 1;
	letter-spacing: 1px;
	display: flex;
	justify-content: space-around;
	gap: 2px;
}

.countdown-value-item {
	min-width: 3ch;
	text-align: center;
}

.countdown-value-separator {
	min-width: 0.5ch;
}

.countdown-labels {
	font-size: 0.6rem;
	font-weight: 200;
	color: var(--color-main-action);
	margin: 0;
	padding: 0;
	line-height: 1;
	margin-top: 2px;
	display: flex;
	justify-content: space-around;
	gap: 2px;
}

.countdown-label-item {
	min-width: 3ch;
	text-align: center;
}

.countdown-label-separator {
	min-width: 0.5ch;
}


/* =====================================================
Mobile Responsive Styles - Institution Registration Form
=======================================================*/

.partner-register-intro {
}

.partner-register-content {
	padding-top: 1rem;
	padding-bottom: 3rem;
}

/* Tablets and smaller (below 992px) */
@media (max-width: 991.98px) {
	.py-60 {
		padding: 30px 0;
	}

	.partner-register-form {
		max-width: 95%;
		padding: 1.5rem 2rem;
	}
}

/* Mobile devices (below 768px) */
@media (max-width: 767.98px) {
	.py-60 {
		padding: 20px 0;
	}

	.partner-register-form {
		max-width: 100%;
		padding: 1rem 1rem;
	}

		.partner-register-form h3 {
			font-size: 1.5rem;
			margin-bottom: 1rem;
		}

		.partner-register-form h4 {
			font-size: 1.2rem;
			margin-bottom: 0.75rem;
			margin-top: 1rem;
		}

		.partner-register-form .form-floating {
			margin-bottom: 1rem;
		}

		.partner-register-form .accordion-body {
			padding: 1rem;
		}

	.d-flex.justify-content-between.align-items-center {
		flex-direction: column;
		align-items: flex-start !important;
		gap: 0.75rem;
	}

	#addBranchBtn {
		width: 100%;
	}
}

/* Small mobile devices (below 576px) */
@media (max-width: 575.98px) {
	.py-60 {
		padding: 15px 0;
	}

	.partner-register-form {
		padding: 0.75rem 0.5rem;
	}

		.partner-register-form h3 {
			font-size: 1.3rem;
		}

		.partner-register-form h4 {
			font-size: 1.1rem;
		}
}

.ad-partner-heading {
	margin: 1rem 0 1rem;
}

.ad-partner-text {
	margin: 0 0 1rem;
}

	.ad-partner-text::after {
		content: "";
		display: block;
		clear: both;
	}

.ad-partner-logo {
	float: left;
	width: 10rem;
	height: auto;
	margin: 0 1rem 0.75rem 0;
}

.ad-partner-container {
	max-width: 95%;
	padding: 1.5rem 2rem;
}