/**----------------------------------------------**
	CSS Index
/**----------------------------------------------**
01.) Variables
02.) General              
03.) Header
04.) Page Layouts
05.) Landing Pages
06.) Footer
07.) Inner Pages
08.) Blog Layout
09.) 404 and Comingsoon Page CSS
10.) Sign-In and Sign-Up
11.) Timeline
12.) Responsive
/**-------------------------------------------------**/
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400;0,500;0,700;0,800;1,400;1,500;1,700;1,800&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/**----------------------------------------------**
01.) Variable CSS
/**----------------------------------------------**/
:root {
	--body-text-color: #3f3f3f;
	--heading-text-color: #111111;
	--menu-link-color: #111111;
	--white-color: #ffffff;
	--very-light-gray: #f2f2f2;
	--light-gray: #ebebeb;
	--gray: #cccccc;
	--dark-gray: #797979;
	--success: #28a745;
	--success-bg: #d4edda;
	--info: #17a2b8;
	--info-bg: #cce5ff;
	--warning: #ffc107;
	--warning-bg: #fff3cd;
	--danger: #dc3545;
	--danger-bg: #f8d7da;
}

:root {
	--mon: "Montserrat", sans-serif;
	--blue: #8a6bff;
	--darkblue: #0a0a36;
}


/**----------------------------------------------**
02.) General CSS
/**----------------------------------------------**/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0
}

.position-relative {
	position: relative !important;
}

html,
body,
form,
fieldset,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-text-size-adjust: none
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
	clear: both;
}

html {
	font-family: 'Microsoft YaHei', "Helvetica Neue", Helvetica, STHeiTi, Arial, sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}

body {
	font-size: 16px;
	line-height: 1.5;
	overflow-x: hidden;
	min-width: 320px;
	color: var(--body-text-color);
	background: #F4F6FF;
	font-family: 'Lato', sans-serif;
}

body.dc-six {
	overflow-x: hidden !important;
}

a {
	background: transparent;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	color: #2a1fbc;
}

a:active {
	outline: 0;
}

a:active,
a:hover,
a:focus {
	color: var(--menu-link-color);
	text-decoration: none;
}

b,
strong {
	font-weight: bold;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

svg:not(:root) {
	overflow: hidden;
}

hr {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

code,
kbd,
pre,
samp {
	font-family: monospace;
	font-size: 1rem
}

mark {
	background: #ff0;
	color: #111111;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

ul,
ol {
	list-style: none outside none;
}

img {
	vertical-align: middle;
	border: 0;
	max-width: 100%;
}

*,
::after,
::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	line-height: 1.2;
}

h1,
.h1 {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 48px;
	font-weight: bold;
	color: var(--heading-text-color);
	letter-spacing: -1px;
	margin-bottom: 11px;
	margin-top: 43px;
}

h2,
.h2 {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 42px;
	font-weight: bold;
	color: var(--heading-text-color);
	letter-spacing: -1px;
	margin-bottom: 18px;
}

h3,
.h3 {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 36px;
	font-weight: bold;
	color: var(--heading-text-color);
	letter-spacing: -0.6px;
	margin-bottom: 18px;
}

h4,
.h4 {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 32px;
	font-weight: bold;
	color: var(--heading-text-color);
	letter-spacing: -0.4px;
	margin-bottom: 18px;
}

h5,
.h5 {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: var(--heading-text-color);
	letter-spacing: 0px;
}

h6,
.h6 {
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	font-weight: normal;
	color: var(--heading-text-color);
}

p:not(:empty) {
	margin-bottom: 18px;
}

.heading-fonts {
	font-family: 'Source Sans Pro', sans-serif;
}

.special-fonts {
	font-family: 'Alegreya', serif;
}


.container {
	max-width: 1200px;
}

.container-fluid {
	padding-left: 60px;
	padding-right: 60px;
}

.overflow-hidden {
	overflow: hidden !important;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
	outline: none !important;
}

.btn {
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 800;
	padding: 0px 30px;
	line-height: 48px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	cursor: pointer;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	outline: 0;
}

.btn+.btn {
    margin-left: 14px;
}

.btn-large {
	font-size: 16px;
	line-height: 56px;
	min-width: 270px;
}

.btn-small {
	font-size: 13px;
	line-height: 36px;
}

.btn-full {
	width: 100%;
	text-align: center;
}

.btn-primary:hover,
.btn-primary:focus {
	background-position: bottom center;
}

.btn-outline-primary {
	line-height: 44px;
}

.btn-outline-primary.btn-large {
	line-height: 52px;
}

.btn>i {
	margin-right: 10px;
	font-size: 24px;
	line-height: 1;
	position: relative;
	top: 3px;
}

.btn.link-btn {
	padding: 0;
	text-transform: none;
	letter-spacing: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	outline: none !important;
	box-shadow: none;
	border-bottom: 2px solid var(--light-gray);
	border-radius: 0px;
}

.btn.link-btn:hover {
	border-bottom: 2px solid var(--dark-gray);
}

.style-dark {
	color: var(--white-color) !important;
}

.style-dark a {
	color: var(--white-color);
}

.style-dark h1,
.style-dark h2,
.style-dark h3,
.style-dark h4,
.style-dark h5 {
	color: var(--white-color) !important;
}

.empty-space-10 {
	height: 10px;
}

.empty-space-20 {
	height: 20px;
}

.empty-space-30 {
	height: 30px;
}

.empty-space-40 {
	height: 40px;
}

.empty-space-50 {
	height: 50px;
}

.empty-space-60 {
	height: 60px;
}

.empty-space-80 {
	height: 80px;
}

.empty-space-100 {
	height: 100px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-group {
	margin-bottom: 10px;
}

.form-group label {
	font-weight: 600;
	cursor: pointer;
	margin-bottom: 4px;
}

.form-group input[type="checkbox"] {
	position: relative;
	width: 22px;
	height: 22px;
	color: var(--heading-text-color);
	border: 1px solid #ced4da;
	border-radius: 4px;
	appearance: none;
	outline: 0;
	cursor: pointer;
	-webkit-transition: all 400ms;
	transition: all 400ms;
	top: 4px;
	margin-right: 5px;
}

.form-group input[type="checkbox"]::before {
	position: absolute;
	content: '';
	display: block;
	top: 2px;
	left: 7px;
	width: 8px;
	height: 14px;
	border-style: solid;
	border-color: var(--heading-text-color);
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
	opacity: 0;
}

.form-group input[type="checkbox"]:checked {
	color: var(--heading-text-color);
}

.form-group input[type="checkbox"]:checked::before {
	opacity: 1;
}

.form-control {
	height: 48px;
	padding: 0 15px;
	width: 90%;
	font-size: 15px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	color: var(--body-text-color);
}

.form-control-search {
	height: 44.1px;
	padding: 0 15px;
	font-size: 15px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	color: var(--body-text-color);
}

.form-control-lg {
	height: 58px;
	font-size: 18px;
}

textarea.form-control {
	height: 150px;
	padding: 15px 15px;
}

.style-dark .form-control {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.2);
	color: var(--white-color);
}

.style-dark ::-webkit-input-placeholder {
	/** Edge **/
	color: var(--white-color);
	opacity: 0.3;
}

.style-dark :-ms-input-placeholder {
	/** Internet Explorer 10-11 **/
	color: var(--white-color);
	opacity: 0.3;
}

.style-dark ::placeholder {
	color: var(--white-color);
	opacity: 0.3;
}

.slick-prev,
.slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}

.slick-next {
	right: -25px;
}

.slick-prev {
	left: -25px;
}

.slick-prev::before,
.slick-next::before {
	font-family: 'slick';
	font-size: 20px;
	line-height: 1;
	opacity: .75;
	color: white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}



.slick-next::before {
	content: '→';
}

/* #theme-option{
	display:none !important; 
} */
.option-panel {
	position: fixed;
	top: 175px;
	left: -200px;
	width: 200px;
	height: auto;
	z-index: 13;
	background: #fff;
	padding: 20px;
	border-radius: 0px 8px 8px 0px;
	-webkit-border-radius: 0px 8px 8px 0px;
	transition: all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	overflow: inherit;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.option-panel .switcher-btn a.settings {
	background: #ffffff;
	height: 50px;
	position: absolute;
	right: -50px;
	top: 20px;
	width: 50px;
	padding: 0px;
	border-radius: 0 6px 6px 0;
	font-size: 28px;
	text-align: center;
	line-height: 48px;
	color: var(--heading-text-color);
	-webkit-box-shadow: 12px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 12px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.option-panel h3 {
	text-align: center;
	font-size: 18px;
	margin-bottom: 10px;
}

.option-panel ul.pattern-color-list {
	text-align: center;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
}

.option-panel ul.pattern-color-list li {
	display: inline-block;
}

.option-panel ul.pattern-color-list li:not(:last-child) {
	margin-right: 0px;
	margin-bottom: 0;
}

.option-panel ul.pattern-color-list li a {
	cursor: pointer;
	display: block;
	height: 42px;
	width: 42px;
	border-radius: 50%;
	margin: 3px;
}

.option-panel ul.pattern-color-list li a:before {
	content: "";
	font-family: "Font Awesome 5 Free";
	color: #ffffff;
	font-size: 18px;
	font-weight: 900;
	line-height: 40px;
}

.option-panel ul.pattern-color-list li a.active:before {
	content: "\f00c";
}

.option-panel ul.pattern-color-list li a.default-color {
	background: -webkit-linear-gradient(-135deg, #4688eb 0%, #291fbc 100%);
	background: -moz-linear-gradient(-135deg, #4688eb 0%, #291fbc 100%);
	background: linear-gradient(-135deg, #4688eb 0%, #291fbc 100%);
}

.option-panel ul.pattern-color-list li a.orange-color {
	background: -webkit-linear-gradient(-135deg, #fea845 0%, #f46a5f 100%);
	background: -moz-linear-gradient(-135deg, #fea845 0%, #f46a5f 100%);
	background: linear-gradient(-135deg, #fea845 0%, #f46a5f 100%);
}

.option-panel ul.pattern-color-list li a.green-color {
	background: -webkit-linear-gradient(-135deg, #4bbf90 0%, #3eb9db 100%);
	background: -moz-linear-gradient(-135deg, #4bbf90 0%, #3eb9db 100%);
	background: linear-gradient(-135deg, #4bbf90 0%, #3eb9db 100%);
}

.option-panel .btn+.btn {
	margin: 0;
}

.option-panel .btn {
	display: none;
}

.option-panel .btn.enable {
	display: inline-block;
}

/**----------------------------------------------**
03.) Header CSS
/**----------------------------------------------**/
#master-head {
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1030;
	background-color: transparent;
	border: 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	padding: 0px;
}

#master-head::before {
	background: rgba(0, 0, 0, 0.8);
	position: fixed;
	top: 0;
	right: 0;
	content: "";
	display: block;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.navigation-in #master-head::before {
	opacity: 1;
	visibility: visible;
}

#master-head.menu-absolute {
	position: absolute;
}

#master-head.menu-fixed {
	background: #ffffff;
	-webkit-box-shadow: 0 4px 15px -10px rgba(0, 0, 0, .6);
	box-shadow: 0 4px 15px -10px rgba(0, 0, 0, .6);
	position: fixed;
	animation: slide-down 0.7s;
}

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

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

.logo-container {
	padding: 25px 0px 25px;
}

.menu-fixed .logo-container {
	padding: 15px 0px 15px;
}

.logo {
	display: block;
}

.logo img {
	max-height: 80px;
}

.logo .logo-dark {
	display: inline-block;
}

.logo .logo-light {
	display: none;
}

.menu-light .logo-dark {
	display: none;
}

.menu-light .logo-light {
	display: inline-block;
}

.menu-fixed .logo-dark {
	display: inline-block;
}

.menu-fixed .logo-light {
	display: none;
}

.menu-toggle-btn {
	display: none;
}

#navigation .close-btn {
	height: 32px;
	width: 32px;
	position: absolute;
	left: 30px;
	top: 30px;
	cursor: pointer;
}

#navigation .close-btn::before,
#navigation .close-btn::after {
	height: 3px;
	width: 32px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	content: "";
	display: block;
	background: var(--heading-text-color);
	border-radius: 4px;
	top: 15px;
	position: absolute;
}

#navigation .close-btn::after {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

#master-head .navbar-toggle {
	border: 0;
	position: relative;
	padding: 0;
	margin: 0;
	cursor: pointer;
	height: 3em;
	width: 3em;
	font-size: 12px;
	transition: all .2s;
	-webkit-tap-highlight-color: transparent;
	display: block;
}

.navbar-toggle .burger-lines {
	top: 50%;
	margin-top: -.125em;
}

.navbar-toggle .burger-lines,
.navbar-toggle .burger-lines::after,
.navbar-toggle .burger-lines::before {
	pointer-events: none;
	display: block;
	content: "";
	width: 100%;
	border-radius: .25em;
	background-color: var(--heading-text-color);
	height: .25em;
	position: absolute;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}

.menu-light .navbar-toggle .burger-lines,
.menu-light .navbar-toggle .burger-lines::after,
.menu-light .navbar-toggle .burger-lines::before {
	background-color: var(--white-color);
}

.navbar-toggle .burger-lines,
.navbar-toggle .burger-lines::after,
.navbar-toggle .burger-lines::before {
	transition: top .2s .2s, left .1s, transform .2s, background-color .4s .2s;
}

.navbar-toggle .burger-lines::before {
	left: 1em;
	top: 1em;
}

.navbar-toggle .burger-lines::after {
	left: 0;
	top: -1em;
}

.navbar-toggle .burger-lines::after,
.navbar-toggle .burger-lines::before {
	width: 2em;
}

.active .navbar-toggle .burger-lines,
.active .navbar-toggle .burger-lines::after,
.active .navbar-toggle .burger-lines::before {
	transition: background-color .2s, top .2s, left .2s, transform .2s .15s;
}

.active .navbar-toggle .burger-lines {
	background-color: initial;
}

.active .navbar-toggle .burger-lines::after,
.active .navbar-toggle .burger-lines::before {
	left: .5em;
	top: 0;
}

.active .navbar-toggle .burger-lines::before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.active .navbar-toggle .burger-lines::after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#master-head.menu-fixed .navbar-toggle .burger-lines,
#master-head.menu-fixed .navbar-toggle .burger-lines::after,
#master-head.menu-fixed .navbar-toggle .burger-lines::before {
	background-color: var(--heading-text-color);
}

#master-head.menu-fixed .active .navbar-toggle .burger-lines {
	background-color: initial;
}

#navigation .menu-primary .child-link {
	display: none;
}

.menu-primary {
	display: inline-block;
}

.menu-primary li.menu-item {
	display: inline-block;
	padding: 0px 10px;
	font-weight: 600;
	position: relative;
}

.menu-primary>li.menu-item.menu-item-has-children>a:after {
	content: "\f078";
	font-size: 13px;
	font-family: "Font Awesome 5 Free";
	position: relative;
	line-height: 1;
	right: 0;
	top: 50%;
	margin-top: -5px;
	margin-left: 5px;
}

.menu-primary>li.menu-item>a {
	display: block;
	font-size: 17px;
	padding: 0px 12px;
	line-height: 60px;
	color: var(--menu-link-color);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.menu-light .menu-primary li.menu-item a {
	color: var(--white-color);
}

.menu-light .menu-primary>li.menu-item:hover>a,
.menu-light .menu-primary>li.menu-item.active>a {
	opacity: 0.6;
	color: var(--white-color);
}

.menu-fixed .menu-primary li.menu-item a {
	color: var(--menu-link-color);
}

.menu-primary .sub-menu {
	position: absolute;
	top: 100%;
	background: var(--white-color);
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	padding: 5px 10px;
	min-width: 280px;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	transform-origin: top;
	opacity: 0;
	visibility: hidden;
	z-index: -100;
}

.menu-primary .sub-menu li.menu-item>.sub-menu {
	left: 100%;
	top: -30px;
	margin-left: 15px;
}

.menu-primary li.menu-item:hover>.sub-menu {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
	z-index: 1;
}

.menu-primary .sub-menu>li.menu-item {
	padding: 8px 15px;
	display: block;
}

.menu-primary .sub-menu>li.menu-item>a {
	color: var(--menu-link-color);
	padding: 0px 0px;
	font-size: 15px;
	position: relative;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	display: block;
}

.menu-primary .sub-menu>li.menu-item>a:before {
	height: 3px;
	width: 0px;
	content: "";
	display: inline-block;
	position: absolute;
	top: 10px;
	left: 0;
	background: var(--heading-text-color);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.menu-primary .sub-menu>li.menu-item:hover>a,
.menu-primary .sub-menu>li.menu-item.active>a {
	padding: 0px 0px 0px 35px;
}

.menu-primary .sub-menu>li.menu-item:hover>a:before,
.menu-primary .sub-menu>li.menu-item.active>a:before {
	width: 25px;
}

.menu-primary>li.menu-item.mega-menu {
	position: static;
}

.menu-primary .mega-menu-inner {
	width: 100%;
	max-width: 1170px;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	flex-wrap: nowrap;
}

.menu-primary .mega-menu-inner>li.menu-item {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	min-width: 0;
	max-width: 100%;
}

.menu-primary .mega-menu-inner>li.menu-item>.sub-menu {
	position: static;
	opacity: 1;
	transform: none;
	visibility: visible;
	box-shadow: none;
	margin: 0;
	padding: 0;
}

.menu-primary .sub-menu>li.menu-item.col-title>a {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 20px;
	font-weight: bold;
	padding: 0px 15px 0px 15px;
	margin-bottom: 15px;
}

.menu-primary .sub-menu>li.menu-item.col-title>a:before {
	display: none;
}

.menu-primary .sub-menu>li.menu-item.col-title>a:after {
	height: 3px;
	width: 45px;
	content: "";
	display: block;
	background: var(--heading-text-color);
	margin-top: 10px;
}

.menu-primary .sub-menu>li.menu-item.col-title:hover>a {
	color: inherit;
}

.menu-primary .sub-menu>li.menu-item.menu-item-has-children>a::after {
	content: "\f054";
	font-size: 13px;
	font-family: "Font Awesome 5 Free";
	position: absolute;
	line-height: 1;
	right: 0;
	top: 50%;
	margin-top: -5px;
	margin-left: 5px;
}

.navbar-right {
	display: flex;
	flex-wrap: nowrap;
}

.navbar-right .search-option {
	padding: 0px 0px 0px 30px;
}

.search-option .search-btn a {
	background: var(--heading-text-color);
	color: var(--white-color);
	line-height: 42px;
	width: 42px;
	height: 42px;
	border-radius: 42px;
	display: block;
	text-align: center;
	position: relative;
	margin: 3px 0px;
	font-size: 20px;
}

.search-option .search-btn a:before {
	content: '';
	position: absolute;
	border: rgba(0, 0, 0, 0.3) solid 6px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-animation: ripple-out 1.3s 1s infinite;
	animation: ripple-out 1.3s 1s infinite;
	border-radius: 42px;
	z-index: -1;
}

/** Ripple Out **/
@-webkit-keyframes ripple-out {
	100% {
		top: -12px;
		right: -12px;
		bottom: -12px;
		left: -12px;
		opacity: 0;
	}
}

@keyframes ripple-out {
	100% {
		top: -12px;
		right: -12px;
		bottom: -12px;
		left: -12px;
		opacity: 0;
	}
}

.style-dark.search-option .search-btn a {
	color: var(--heading-text-color);
	background: var(--white-color);
}

.style-dark.search-option .search-btn a:before {
	border: rgba(255, 255, 255, 0.3) solid 6px;
}

.menu-fixed .style-dark.search-option .search-btn a {
	background: var(--heading-text-color);
	color: var(--white-color);
}

.menu-fixed .style-dark.search-option .search-btn a:before {
	border: rgba(0, 0, 0, 0.3) solid 6px;
}

/**----------------------------------------------**
04.) Page Layouts
/**----------------------------------------------**/
.page-header.dc-four {
	padding-bottom: 150px;
}

.page-header.dc-six,
.page-header.dc-seven {
	position: relative;
}

.page-header.dc-seven:before {
	height: 800px;
	width: 800px;
	border-radius: 800px;
	background: var(--heading-text-color);
	content: "";
	position: absolute;
	left: -32%;
	top: 50%;
	transform: translateY(-50%);
}

.page-header.dc-six:before {
	height: 140%;
	width: 120%;
	border-radius: 80px;
	background: var(--heading-text-color);
	content: "";
	position: absolute;
	left: -16%;
	top: -68%;
	transform: rotate(-30deg);
}

.page-header.dc-six:after {
	content: "";
	position: absolute;
	left: 60%;
	top: -100px;
	transform: translateX(-50%);
	background-position: center top;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
}

.page-header.dc-six>* {
	position: relative;
	z-index: 1;
}

.page-header.dc-eight:before {
	height: 100%;
	width: 50%;
	background: url("../images/lms-bg.png") no-repeat scroll 0px 0px;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
}

.full-width .container {
	width: 100%;
	max-width: 100%;
}

.right-col-full .container,
.left-col-full .container {
	width: 100%;
	max-width: 100%;
}

.right-col-full .col-lg-6:first-child,
.right-col-full .col-md-6:first-child {
	padding-left: calc(((100vw - (100vw - 100%)) - 1170px) / 2);
}

.right-col-full .col-lg-6:last-child,
.right-col-full .col-md-6:last-child {
	padding-right: 0;
}

.left-col-full .col-lg-6:last-child,
.left-col-full .col-md-6:last-child {
	padding-right: calc(((100vw - (100vw - 100%)) - 1170px) / 2);
}

.left-col-full .col-lg-6:first-child,
.left-col-full .col-md-6:first-child {
	padding-left: 0;
}

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

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

.page-header {
	display: flex;
	height: 600px;
	align-items: center;
}





.heading-wrapper {
	margin: auto;
}

.heading-wrapper h2 {
	font-weight: 600;
	font-size: 40px;
	line-height: 52px;
	letter-spacing: 0%;
	/* text-align: center; */
	vertical-align: middle;

}

.heading-wrapper-properties h2 {
	font-weight: 600;
	font-size: 32px;
	line-height: 30px;
	letter-spacing: 0%;
	vertical-align: middle;


}

.heading-wrapper span.sub-title {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 1px;
	font-family: 'Source Sans Pro', sans-serif;
	font-style: normal;
}

.style-dark .heading-wrapper span {
	color: #ffffff;
}

.lead-text,
.lead-text p {
	font-size: 20px;
	line-height: 1.6;
}

.intro-header-slider {
	padding-top: 60px;
	margin-bottom: -300px;
}

.heading-wrapper.with-separator h1:after,
.heading-wrapper.with-separator h2:after,
.heading-wrapper.with-separator h3:after {
	height: 6px;
	width: 60px;
	content: "";
	display: block;
	margin-top: 18px;
}

.heading-wrapper.with-separator.text-center h1:after,
.heading-wrapper.with-separator.text-center h2:after,
.heading-wrapper.with-separator.text-center h3:after {
	display: table;
	margin-left: auto;
	margin-right: auto;
}

.text-wrapper {
	margin-bottom: 30px;
}

.text-wrapper ul {
	margin-bottom: 30px;
}

.text-wrapper a {
	font-weight: 600;
	font-style: italic;
}

ul.support-details li {
	margin: 8px 0px;
	display: block;
	font-size: 18px;
}

ul.support-details li strong {
	color: var(--heading-text-color);
}

.rounded-6 {
	border-radius: 6px !important;
}

.rounded-8 {
	border-radius: 8px !important;
}

.screenshot-section {
	position: relative;
}

.screenshot-slider {
	margin-bottom: -60px;
	margin-top: 0px;
}

.screenshot-section:before {
	content: "";
	height: 425px;
	width: 100%;
	position: absolute;
	top: 0;
}

.ss-wrapper {
	max-width: 1170px;
	position: relative;
	margin: 0px auto 0px;
}

.ss-wrapper .laptop-img-bg {
	max-width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.ss-wrapper .screenshot-slider {
	position: relative;
	padding: 5.15% 17.5% 7% 17.7%;
	max-width: 1200px;
	width: 100%;
	margin: auto;
	display: block;
}

.screenshot-slider .slick-arrow {
	background: var(--heading-text-color);
	height: 50px;
	width: 50px;
	line-height: 50px;
	color: var(--white-color);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.screenshot-slider .slick-prev::before,
.screenshot-slider .slick-next::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: var(--white-color);
	font-size: 24px;
	line-height: 50px;
	opacity: 1;
}

.screenshot-slider .slick-prev::before {
	content: "\f053";
	margin-right: 5px;
}

.screenshot-slider .slick-next::before {
	content: "\f054";
	margin-left: 5px;
}

.screenshot-slider .slick-prev {
	left: 60px;
}

.screenshot-slider .slick-next {
	right: 60px;
}

.call-to-action-content>h2 {
	margin: 0px;
}

.call-to-action-content h2 span {
	font-style: italic;
}

.call-to-action-content p {
	margin-top: 15px;
	margin-bottom: 0;
}

.list-style-one li {
	margin-bottom: 12px;
	position: relative;
	padding-left: 30px;
}

.list-style-one li:before,
.list-style-one li:after {
	content: "";
	width: 3px;
	height: 10px;
	background: var(--heading-text-color);
	position: absolute;
	top: 9px;
	left: 0;
}

.list-style-one li:after {
	left: 5px;
	width: 10px;
}

.icon-round {
	height: 7rem;
	width: 7rem;
	border-radius: 50%;
	background-color: rgb(255, 255, 255);
}

.icon-round i {
	font-size: 3rem;
	color: rgb(94, 94, 94)
}

.Explore-Apartment {
	background-color: #f8f9fa;

}

.about-section {
	background-image: linear-gradient(180deg, rgba(233, 238, 255, 0.52) 0%, #F0F0F0 100%);

}

.counter-section {
	background-color: white
}

.Explore-Apartment h3 {
	color: blue;
}

.text-wrapper p:last-child {
	margin-bottom: 0;
}

.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10000;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	transform-origin: top;
	opacity: 0;
	visibility: hidden;
	background-color: rgba(20, 22, 24, .95);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.overlay.open {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.overlay.overlay-search {
	display: table;
	table-layout: fixed;
	height: 100%;
	width: 100%;
	text-align: center;
}

.overlay.overlay-search .container {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	font-size: 28px;
}

.overlay.overlay-search .container form {
	opacity: 0;
	transform: translateY(-40px);
	animation-timing-function: cubic-bezier(.45, .005, 0, 1);
}

.overlay.overlay-search .container form {
	display: inline-block;
	width: 100%;
	max-width: 600px;
	max-width: 60vw;
	padding-top: 100px;
	padding-bottom: 100px;
}

.open.overlay.overlay-search .container form {
	opacity: 1;
	transform: translateY(0);
	transition: transform 0.2s, opacity 0.2s;
}

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

.overlay-search .form-control {
	background: transparent;
	color: var(--white-color);
	font-size: 24px;
	padding: 10px 60px 10px 30px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	height: 64px;
}

.overlay-search .search-submit {
	position: absolute;
	background: none;
	border: none;
	right: 10px;
	top: 10px;
	color: var(--white-color);
}

.close-search {
	position: absolute;
	top: 30px;
	right: 60px;
}

.close-search .lines {
	position: relative;
	height: 36px;
	width: 36px;
	display: block;
	cursor: pointer;
}

.close-search .lines:after,
.close-search .lines:before {
	position: absolute;
	top: 0;
	background: rgba(255, 255, 255, 0.8);
	height: 36px;
	width: 2px;
	content: "";
	top: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close-search .lines:before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.slick-dots {
	position: absolute;
	bottom: -25px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 18px;
	height: 18px;
	padding: 0px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: var(--light-gray);
	border: 3px solid var(--gray);
	border-radius: 20px;
}

.style-dark .slick-dots li button {
	background: var(--white);
}

.slick-dots li.slick-active button {
	background: var(--gray);
}

.gradient-heading-bg {
	position: relative;
}

#accordion .panel {
	border-bottom: 1px solid var(--light-gray);
	padding: 20px 0;
}

#accordion .panel:last-child {
	border-bottom: 0px;
}

#accordion .panel-heading .panel-title {
	font-size: 20px;
	margin-bottom: 0;
	letter-spacing: 0;
}

#accordion .panel-title a {
	position: relative;
	display: block;
	padding: 0 30px 0 0;
}

#accordion .panel-title a.collapsed {
	color: var(--heading-text-color);
}

#accordion .panel-default .panel-title a::after {
	font-family: 'Line Awesome Free';
	font-style: normal;
	font-size: 24px;
	content: "\f106";
	color: var(--body-text-color);
	font-weight: 900;
	position: absolute;
	top: -2px;
	right: 0px;
}

#accordion .panel-default .panel-title a.collapsed::after {
	content: "\f107";
}

#accordion .panel-body {
	padding: 30px 30px 15px 0px;
}

#accordion .panel-body p:last-child {
	margin-bottom: 0;
}

#accordion.style-2 .panel {
	border-radius: 6px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	background: var(--white-color);
	border: none;
	padding: 20px 20px;
}

#accordion.style-2 .panel:not(:last-child) {
	margin-bottom: 10px;
}

#accordion.style-2 .panel-heading .panel-title {
	font-size: 18px;
}

#accordion.style-2 .panel-default .panel-title a::after {
	background: var(--heading-text-color);
	height: 32px;
	width: 32px;
	border-radius: 50px;
	line-height: 32px;
	text-align: center;
	font-size: 18px;
	color: var(--white-color);
	top: -5px;
	font-family: "Font Awesome 5 Free";
	content: "\f077";
}

#accordion.style-2 .panel-default .panel-title a.collapsed::after {
	content: "\f078";
}

ul.two-col {
	display: flex;
	flex-wrap: wrap;
}

ul.two-col li {
	flex: 0 0 50%;
	max-width: 50%;
	width: 100%;
}

ul.three-col li {
	flex: 0 0 33.3334%;
	max-width: 33.3334%;
	width: 100%;
}

/**----------------------------------------------**
05.) Landing Pages
/**----------------------------------------------**/
.pricing-plans-one .price-card {
	background: var(--white-color);
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	margin-top: 30px;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.pricing-plans-one .price-card .card-header {
	background: transparent;
	padding: 50px 30px 30px;
	border: none;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

.pricing-plans-one .card-title {
	margin-bottom: 30px;
}

.pricing-plans-one .plan-cost {
	font-size: 60px;
	font-weight: 700;
	font-family: "Source Sans Pro", sans-serif;
	letter-spacing: -1px;
	color: var(--heading-text-color);
	line-height: 0.8;
	margin-bottom: 5px;
}

.pricing-plans-one .plan-cost .plan-cost-prefix {
	display: inline;
	font-size: 36px;
	line-height: inherit;
	vertical-align: super;
	font-weight: 900;
}

.pricing-plans-one .plan-validity {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0px;
	font-size: 16px;
}

.pricing-plans-one .card-body {
	padding: 0px 30px 50px;
}

.pricing-plans-one .pricing-feature-list {
	font-size: 18px;
	font-weight: 600;
	font-family: "Source Sans Pro", sans-serif;
	color: var(--heading-text-color);
	margin: 45px 0px;
}

.pricing-plans-one .pricing-feature-list li {
	margin: 15px auto;
	padding: 0px 0px 0px 30px;
	position: relative;
	display: table;
}

.pricing-plans-one .pricing-feature-list li:before {
	content: "\f00c";
	font-size: 18px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 0px;
}

.pricing-plans-one .price-card.popular {
	position: relative;
	top: -25px;
}

/**--------------------- Pricing Style 2 ------------------**/
.pricing-plans-two .price-card {
	background: var(--white-color);
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	margin-top: 120px;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	position: relative;
}

.pricing-plans-two .price-card .card-header {
	background: transparent;
	padding: 120px 30px 0px;
	border: none;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

.pricing-plans-two .card-title {
	margin-bottom: 18px;
}

.pricing-plans-two .card-title:after {
	height: 6px;
	width: 60px;
	content: "";
	display: block;
	margin-top: 18px;
	background: var(--heading-text-color);
	margin-left: auto;
	margin-right: auto;
}

.pricing-plans-two .plan-cost-wrapper {
	background: var(--heading-text-color);
	color: var(--white-color);
	border: 10px solid var(--white-color);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: block;
	margin: 0px auto 0px;
	width: 180px;
	height: 180px;
	position: absolute;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	top: -90px;
	padding: 35px 0;
}

.pricing-plans-two .price-card:before {
	width: 180px;
	height: 180px;
	position: absolute;
	z-index: -1;
	content: "";
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	top: -90px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.pricing-plans-two .plan-cost {
	font-size: 60px;
	font-weight: 700;
	font-family: "Source Sans Pro", sans-serif;
	letter-spacing: -1px;
	color: var(--white-color);
	line-height: 0.8;
	margin-bottom: 5px;
}

.pricing-plans-two .plan-cost .plan-cost-prefix {
	display: inline;
	font-size: 36px;
	line-height: inherit;
	vertical-align: super;
	font-weight: 900;
}

.pricing-plans-two .plan-validity {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0px;
	font-size: 16px;
}

.pricing-plans-two .card-body {
	padding: 0px 30px 50px;
}

.pricing-plans-two .pricing-feature-list {
	color: var(--heading-text-color);
	margin: 45px 0px;
}

.pricing-plans-two .pricing-feature-list li {
	margin: 15px auto;
	padding: 0px 0px 0px 30px;
	position: relative;
	display: table;
}

.pricing-feature-list li.disabled {
	color: var(--gray);
}

.pricing-plans-two .pricing-feature-list li:before {
	content: "\f00c";
	font-size: 18px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 0px;
}

.pricing-feature-list li.disabled:before {
	content: "\f00d" !important;
	color: #ea3939 !important;
}

/**---------------------- Pricing Style 3 -----------------------**/
.pricing-plans-three .price-card {
	background: var(--white-color);
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	margin-top: 30px;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.pricing-plans-three .price-card .card-header {
	background: transparent;
	padding: 50px 30px 30px;
	border: none;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

.pricing-plans-three .card-title {
	margin-bottom: 30px;
}

.pricing-plans-three .plan-cost {
	font-size: 60px;
	font-weight: 700;
	font-family: "Source Sans Pro", sans-serif;
	letter-spacing: -1px;
	color: var(--heading-text-color);
	line-height: 0.8;
	margin-bottom: 5px;
	display: inline-block;
}

.pricing-plans-three .plan-cost .plan-cost-prefix {
	display: inline;
	font-size: 36px;
	line-height: inherit;
	vertical-align: super;
	font-weight: 900;
}

.pricing-plans-three .plan-validity {
	margin: 0;
	letter-spacing: 0px;
	font-size: 20px;
	display: inline-block;
	font-weight: 700;
}

.pricing-plans-three .card-body {
	padding: 0px 30px 50px;
}

.pricing-plans-three .pricing-feature-list {
	font-size: 18px;
	font-weight: 600;
	font-family: "Source Sans Pro", sans-serif;
	color: var(--heading-text-color);
	margin: 45px 0px;
}

.pricing-plans-three .pricing-feature-list li {
	margin: 15px 0;
	padding: 0px 0px 0px 30px;
	position: relative;
	display: table;
}

.pricing-plans-three .pricing-feature-list li:before {
	content: "\f00c";
	font-size: 18px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 0px;
}

.features-block {
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
	width: 298px!important;
	height: 100%; /* ensures consistent flex handling */

}
.features-block.theme-one {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    width: auto !important;
    height: auto !important;
}

.features-block.theme-one .icon img.normal {
    max-width: 90px;
}

.features-block.theme-one .icon img.hover {
    max-width: 90px;
    display: none; /* or for hover effect */
}
.features-block p:last-child {
	margin-bottom: 0;
}


.features-block.theme-one .inner-box {
	background: var(--white-color);
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	padding: 40px 30px;
	position: relative;
	text-align: center;
	overflow: hidden;
	cursor: pointer;
}

.features-block.theme-one .inner-box:before {
	-webkit-transform: translateY(102%);
	transform: translateY(102%);
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	height: 100%;
	-webkit-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

.features-block.theme-one .inner-box:hover:before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.features-block.theme-one .inner-box>* {
	position: relative;
}

.features-block.theme-one .icon {
	position: relative;
	margin: 0px auto 18px;
	text-align: center;
	display: table;
}

.icon img {
	width: 100%;
	display: block;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.icon .top-left-buttons {
	position: absolute;
	top: 18px;
	left: 18px;
	display: flex;
	gap: 5px;
	z-index: 2;
}

.icon .bottom-left-buttons {
	position: absolute;
	top: 181px;
	left: 21px;
	display: flex;
	gap: 5px;
	z-index: 2;
}

.shadow {
	box-shadow: 0px 0px 20px 0px rgba(210, 210, 210, 0.1);
}

.icon .top-left-buttons p {
	padding: 5px 10px;
	font-size: 10px;
	text-transform: uppercase;
	color: white;
	border-radius: 3px;
	cursor: pointer;
	font-weight: 400;
}

.card-main-heading {
	font-weight: 600 !important;
	font-size: 18px !important;
	line-height: 18px !important;
	letter-spacing: 0%;
	vertical-align: middle;

}

.card-main-address {
	font-weight: 400 !important;
	font-size: 16px !important;
	line-height: 24.7px !important;
	letter-spacing: 0%;
	vertical-align: middle;
}

.card-main-footer p {
	font-weight: 400;
	font-size: 14px;
	line-height: 24.7px;
	letter-spacing: 0%;
	vertical-align: middle;

}

.card-main-footer i {
	font-size: 16px;
	width: 16px;
	height: 16px;
	margin-right: 7px;

}
.card-main-heading,
.card-main-address {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.username {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 100%; /* or a fixed px width like 100px if needed */
    vertical-align: middle;
	min-width: 70px;
	font-size: 13px;
}
.card-main {
	top: 260px !important;
	 /* Adjust based on your design */
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}


.bg-blue {
	background-color: #1313D7 !important;
}

.bg-lightgold {
	background-color: #E7C873 !important;
	color: black !important;
}


.icon .bottom-left-buttons p {
	padding: 5px 10px;
	font-size: 1.3rem;
	font-weight: 700;
	background-color: rgb(255, 255, 255);
	border: 1px solid #ccc;
	border-radius: 3px;
	cursor: pointer;
}

.icon .top-left-buttons p:hover {
	background-color: #f1f1f1;
	color: blue;
	font-weight: 700;
}

.icon .bottom-left-buttons p:hover {
	background-color: #f1f1f1;
	color: blue;
	font-weight: 700;
}

.features-block.theme-one .icon img.hover {
	display: none;
}

.features-block.theme-one .inner-box:hover img.normal {
	display: none;
}

.features-block.theme-one .inner-box:hover img.hover {
	display: block;
}

.features-block.theme-one h4 {
	font-size: 24px;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.features-section .inner-row .col-lg-6:nth-child(2) {
	margin-top: 80px;
}

.features-section .inner-row .col-lg-6:nth-child(3) {
	margin-top: -80px;
}

.features-block.theme-one .inner-box:hover {
	color: var(--white-color);
}

.features-block.theme-one .inner-box:hover h4 {
	color: var(--white-color);
}

/**--------------------------  Feature Style 2 ---------------------**/
.features-block.theme-two .inner-box {
	background: rgba(255, 255, 255, 0.1);
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	padding: 40px 30px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	cursor: pointer;
}

.features-block.theme-two .inner-box:hover {
	background: rgba(255, 255, 255, 0.12);
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.features-block.theme-two .text {
	padding-left: 30px;
}

.features-block.theme-two h4 {
	font-size: 24px;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	position: relative;
}

.features-block.theme-two h4::before,
.features-block.theme-two h4::after {
	content: "";
	width: 3px;
	height: 10px;
	background: var(--heading-text-color);
	position: absolute;
	top: 11px;
	left: -30px;
}

.features-block.theme-two h4::after {
	left: -24px;
	width: 10px;
}

.style-dark .features-block.theme-two h4::before,
.style-dark .features-block.theme-two h4::after {
	background: var(--white-color);
}

.features-block.theme-three .inner-box {
	background: var(--white-color);
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--light-gray);
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	padding: 30px 15px;
	position: relative;
	text-align: center;
	overflow: hidden;
	cursor: pointer;
}

.features-block.theme-three .inner-box:hover {
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
	border: 1px solid var(--gray);
}

.features-block.theme-three .icon {
	margin: 0px auto 18px;
	text-align: center;
	display: table;
}

.features-block.theme-three .icon img {
	max-width: 68px;
	max-height: 68px;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.features-block.theme-three h4 {
	font-size: 18px;
	margin-bottom: 0;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.features-block.theme-four .inner-box {
	background: var(--white-color);
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	padding: 40px 50px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	display: flex;
}

.features-block.theme-four .inner-box:before {
	display: none;
}

.features-block.theme-four .inner-box>* {
	position: relative;
}

.features-block.theme-four .icon {
	margin: 0px 30px 0px 0px;
	text-align: center;
	display: table;
}

.features-block.theme-four .icon img {
	max-width: 90px;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.features-block.theme-four h4 {
	font-size: 24px;
	margin: 0 0 10px;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.features-block.theme-five:last-child {
	margin: 0;
}

.features-block.theme-five .inner-box {
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	padding: 15px 0px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	display: flex;
}

.features-block.theme-five .inner-box:before {
	display: none;
}

.features-block.theme-five .inner-box>* {
	position: relative;
}

.features-block.theme-five .icon {
	margin: 0px 30px 0px 0px;
	text-align: center;
	display: table;
}

.features-block.theme-five .icon img {
	max-width: 68px;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.features-block.theme-five h4 {
	font-size: 24px;
	margin: 0 0 10px;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.dc-features-group {
	position: relative;
	overflow: hidden;
}

.dc-features-group>.dc-features-item {
	margin-bottom: -1px;
	border-right: 1px solid #f0f0f0;
}

.dc-features-group>.dc-features-item:nth-child(n),
.dc-features-group>.dc-features-item:nth-child(2n),
.dc-features-group>.dc-features-item:nth-child(3n) {
	border-bottom: 1px solid #f0f0f0;
}

.dc-features-group>.dc-features-item>a {
	position: relative;
	overflow: hidden;
	display: block;
}

.dc-features-group>.dc-features-item .dc-features-item-front {
	position: relative;
}

.dc-features-group>.dc-features-item .dc-features-item-front,
.dc-features-group>.dc-features-item .dc-features-item-hover {
	min-height: 333px;
	height: auto;
	padding: 20px 45px;
	-webkit-transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
	transition: all 0.4s cubic-bezier(.25, .46, .45, .94);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.dc-features-group>.dc-features-item .dc-features-item-hover {
	position: absolute;
	top: 100%;
	left: 0;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: contain;
	opacity: 0;
	visibility: hidden;
}

.dc-features-group>.dc-features-item .dc-features-item-hover::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	mix-blend-mode: multiply;
	background-color: var(--heading-text-color);
}

.dc-features-group>.dc-features-item:nth-child(3n) {
	border-right: none;
}

.st-tab-btn .nav-tabs {
	border-bottom: 3px solid var(--light-gray);
}

.dc-features-item-front .inner-box,
.dc-features-item-hover .inner-box {
	width: 100%;
	text-align: center;
}

.dc-features-item-hover .inner-box {
	position: relative;
	z-index: 2;
}

.dc-features-group .icon {
	margin-bottom: 30px;
}

.dc-features-group .icon img {
	max-width: 90px;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.dc-features-group .dc-features-title {
	font-size: 24px;
	margin-bottom: 0;
}

.dc-features-item-hover .dc-features-title {
	color: #ffffff;
	margin-bottom: 30px;
}

.dc-features-item-hover p {
	color: #ffffff;
	margin-bottom: 0;
}

.dc-features-group a:hover .dc-features-item-front {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.dc-features-group a:hover .dc-features-item-hover {
	top: 0%;
	opacity: 1;
	visibility: visible;
}

.tab-wrapper {
	margin: 0px;
}

.tab-wrapper.vertical-tab {
	display: flex;
	flex-wrap: wrap;
}

.st-tab-btn {
	padding: 0px 0px 0px;
	margin-bottom: 15px;
}

.vertical-tab .st-tab-btn {
	flex: 0 0 25%;
	width: 100%;
	max-width: 25%;
	padding: 0px;
	margin: 0;
}

.vertical-tab .st-tab-btn .nav-tabs {
	border-bottom: 0px;
	display: block;
}

.vertical-tab .st-tab-btn .nav-tabs .nav-item {
	display: block;
	padding: 0;
	margin: 0;
}

.st-tab-content {
	padding: 30px 0px 0px;
}

.vertical-tab .st-tab-content {
	flex: 0 0 75%;
	width: 100%;
	max-width: 75%;
	padding: 0px 0px 0px 50px;
	border-left: 3px solid var(--light-gray);
}

.st-tab-btn .nav-tabs .nav-item {
	border: 0px;
	margin: 0px 15px 0px 0px;
	padding: 0px 0px;
}

.st-tab-btn .nav-tabs .nav-item:last-child {
	margin: 0;
}

.st-tab-btn .nav-tabs .nav-item .nav-link,
.st-tab-btn .nav-tabs .nav-link {
	border: 0px;
	background: none;
	color: var(--heading-text-color);
	font-weight: 700;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	padding: 15px;
	position: relative;
}

.vertical-tab .st-tab-btn .nav-tabs .nav-item .nav-link,
.st-tab-btn .nav-tabs .nav-link {
	padding: 15px 0px;
}

.st-tab-btn .nav-tabs .nav-item .nav-link:after {
	content: "";
	height: 3px;
	background: var(--heading-text-color);
	position: absolute;
	bottom: -3px;
	right: 0;
	width: 0;
	transition: all 0.5s ease-in-out;
}

.vertical-tab .st-tab-btn .nav-tabs .nav-item .nav-link::after {
	bottom: 0px;
	height: 0;
	width: 3px;
	right: -3px;
}

.st-tab-btn .nav-tabs .nav-item.show .nav-link:after,
.st-tab-btn .nav-tabs .nav-link.active:after {
	left: 0;
	width: 100%;
}

.vertical-tab .st-tab-btn .nav-tabs .nav-item.show .nav-link:after,
.vertical-tab .st-tab-btn .nav-tabs .nav-link.active:after {
	top: 0;
	height: 100%;
	left: auto;
	width: 3px;
}

.testimonial-section {
	position: relative;
	overflow: hidden;
}

.client-testimonial.theme-one .slick-list {
	overflow: visible !important;
}

.client-testimonial.theme-one {
	max-width: 800px;
	padding: 0px 30px;
	width: 100%;
	margin: 40px auto 0;
	position: relative;
}

.client-testimonial.theme-one .testimonial-slider {
	position: inherit;
}

.client-testimonial.theme-one .testimonial-text {
	background: #ffffff;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	padding: 50px 50px;
	position: relative;
}

.client-testimonial.theme-one .testimonial-text:after {
	width: 0;
	height: 0;
	border-left: 0px solid transparent;
	border-right: 40px solid transparent;
	border-top: 40px solid #fff;
	content: "";
	position: absolute;
	top: 100%;
	left: 50px;
}

.client-testimonial.theme-one .testimonial-text::before {
	width: 60px;
	height: 60px;
	content: "";
	position: absolute;
	top: 100%;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
	transform: rotate(90deg) skew(52deg);
	z-index: -1;
	margin-top: -50px;
	left: 50px;
}

.client-testimonial.theme-one .slick-slide {
	padding: 0px 80px;
	width: 700px;
}

.client-testimonial.theme-one .client-info-wrapper {
	display: flex;
	flex-wrap: nowrap;
	width: auto;
	align-items: center;
	margin-top: 60px;
}

.client-testimonial.theme-one .client-img {
	background: #ffffff;
	-webkit-border-radius: 80px;
	border-radius: 80px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	padding: 6px;
	margin-right: 20px;
}

.client-testimonial.theme-one .client-img img {
	-webkit-border-radius: 80px;
	border-radius: 80px;
	max-width: 80px;
}

.client-testimonial.theme-one .client-info p,
.client-testimonial.theme-two .client-info p,
.client-testimonial.theme-three .client-info p,
.client-testimonial.theme-four .client-info p {
	margin: 0;
}

.client-testimonial.theme-one .client-info h5,
.client-testimonial.theme-two .client-info h5,
.client-testimonial.theme-three .client-info h5,
.client-testimonial.theme-four .client-info h5 {
	font-weight: 700;
	font-size: 20px;
}

.client-testimonial.theme-one blockquote {
	font-size: 18px;
	font-style: italic;
	line-height: 1.5;
	border: none;
	margin: 0;
	padding: 0;
	position: static;
}

.client-testimonial.theme-one blockquote:before {
	background: #000000;
	border-radius: 60px;
	padding: 5px;
	height: 50px;
	width: 50px;
	line-height: 40px;
	text-align: center;
	color: #ffffff;
	content: "\f10d";
	font-family: "Font Awesome 5 Free";
	font-style: normal;
	font-weight: 900;
	position: absolute;
	top: 38px;
	left: -25px;
	font-size: 24px;
}

.client-testimonial.theme-one .slick-prev,
.client-testimonial.theme-one .slick-next {
	top: 100%;
	right: 95px;
	left: auto;
	background: transparent;
	margin-top: -30px;
	z-index: 1;
	height: 36px;
	width: 36px;
}

.slick-slider {
	direction: ltr !important;
}

.slick-prev::before,
.slick-next::before {
	font-family: 'Line Awesome Free';
	font-weight: 900;
	color: var(--heading-text-color);
	font-size: 36px;
}

.client-testimonial.theme-one .slick-prev {
	right: 140px;
}

.slick-prev::before {
	content: "\f30a";
}

.slick-next::before {
	content: "\f30b";
}

.call-to-action {
	width: 100%;
}

.call-to-action .call-btn {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 32px;
	line-height: 1;
	border-bottom: 1px solid;
	display: inline-block;
	font-weight: 700;
}

.call-to-action label,
.subscribe-form-wrapper label {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0px;
	color: var(--heading-text-color);
	display: block;
	margin-bottom: 15px;
}

.subscribe-form-wrapper .or {
	display: block;
	margin: 15px 0px;
}

.subscribe-form-wrapper form {
	position: relative;
}

.subscribe-form-wrapper .form-control {
	padding: 0px 215px 0px 15px;
	height: 58px;
	-webkit-border-radius: 9px;
	border-radius: 9px;
}

.subscribe-form-wrapper .btn {
	position: absolute;
	top: 5px;
	right: 67px;
}

.testimonial-section.style-two:before {
	content: "";
	height: 400px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.client-testimonial.theme-two .slick-slider {
	padding: 30px 0px 30px;
}

.client-testimonial.theme-two .slick-list {
	margin: 0px -15px;
}

.client-testimonial.theme-two .slick-slide {
	padding: 0px 15px 30px;
}

.client-testimonial.theme-two .testimonial-text {
	background: var(--white-color);
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	padding: 45px 30px 60px;
	position: relative;
	text-align: center;
}

.client-testimonial.theme-two .testimonial-text::after {
	background: var(--heading-text-color);
	border-radius: 60px;
	padding: 5px;
	height: 50px;
	width: 50px;
	line-height: 40px;
	text-align: center;
	color: var(--white-color);
	content: "\f10d";
	font-family: "Font Awesome 5 Free";
	font-style: normal;
	font-weight: 900;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
	font-size: 24px;
}

.client-testimonial.theme-two blockquote {
	font-size: 18px;
	font-style: italic;
	line-height: 1.5;
	border: none;
	margin: 0;
	padding: 0;
	position: static;
}

.client-testimonial.theme-two blockquote:before {
	content: "";
	display: none;
}

.client-testimonial.theme-two .client-info {
	margin-top: 30px;
}

.client-testimonial.theme-two .slick-prev,
.client-testimonial.theme-two .slick-next {
	top: 100%;
	right: 50%;
	left: auto;
	background: transparent;
	z-index: 1;
	height: 36px;
	width: 36px;
}

.client-testimonial.theme-two .slick-prev {
	right: 50%;
	margin-right: 10px;
}

.client-testimonial.theme-two .slick-next {
	right: auto;
	left: 50%;
	margin-left: 10px;
}

.client-testimonial.theme-two .slick-disabled {
	opacity: 0.4;
}

.testimonial-section.style-three {
	background: url('../images/team-bg.jpg') no-repeat scroll center center;
	background-size: cover;
}

.client-testimonial.theme-three blockquote {
	font-size: 22px;
	font-style: italic;
	line-height: 1.5;
	border: none;
	margin: 0;
	padding: 0;
	position: static;
}

.client-testimonial.theme-three blockquote:before {
	content: "";
	display: none;
}

.client-testimonial.theme-three {
	padding: 60px 0px 60px 60px;
	margin-left: 30px;
	border-left: 3px solid rgba(255, 255, 255, 0.2);
}

.client-testimonial.theme-three .client-info {
	margin-top: 30px;
}

.client-testimonial.theme-three .testimonial-text {
	padding: 0px 0px 0px 90px;
	position: relative;
}

.client-testimonial.theme-three .testimonial-text::before {
	color: var(--white-color);
	content: "\f10d";
	font-family: "Font Awesome 5 Free";
	font-style: normal;
	font-weight: 900;
	position: absolute;
	top: -8px;
	left: 0;
	font-size: 54px;
}

.client-testimonial.theme-three .slick-dots {
	left: 0;
	bottom: auto;
	top: 50%;
	transform: translateY(-50%);
	margin-left: -71px;
}

.client-testimonial.theme-three .slick-dots li {
	display: block;
	margin: 15px 0px;
	padding: 0;
}

.client-testimonial.theme-four .slick-list {
	margin: 0 -15px;
}

.client-testimonial.theme-four .item {
	background: var(--white-color);
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	padding: 30px 45px 30px;
	position: relative;
	margin: 15px 15px;
}

.client-testimonial.theme-four .client-info-wrapper {
	display: flex;
	flex-wrap: nowrap;
	width: auto;
	align-items: center;
	margin-top: 0px;
	margin-bottom: 20px;
	position: relative;
}

.client-testimonial.theme-four .client-info-wrapper:before {
	content: "\f10d";
	font-family: "Font Awesome 5 Free";
	font-style: normal;
	font-weight: 900;
	position: absolute;
	top: 30px;
	right: 0px;
	line-height: 40px;
	padding: 0;
	color: var(--heading-text-color);
	opacity: 0.1;
	font-size: 48px;
}

.client-testimonial.theme-four .client-img {
	-webkit-border-radius: 90px;
	border-radius: 90px;
	margin-right: 20px;
}

.client-testimonial.theme-four .client-img img {
	-webkit-border-radius: 90px;
	border-radius: 90px;
	max-width: 100px;
}

.client-testimonial.theme-four blockquote {
	margin: 0;
	border: 0;
	padding: 0;
}

.client-testimonial.theme-four blockquote::before {
	display: none;
}

.client-testimonial.theme-four .slick-arrow {
	background: var(--heading-text-color);
	height: 50px;
	width: 50px;
	line-height: 50px;
	color: var(--white-color);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	left: -60px;
}

.client-testimonial.theme-four .slick-arrow.slick-next {
	left: auto;
	right: -60px;
}

.client-testimonial.theme-four .slick-prev::before,
.client-testimonial.theme-four .slick-next::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: var(--white-color);
	font-size: 24px;
	line-height: 50px;
	opacity: 1;
}

.client-testimonial.theme-four .slick-prev::before {
	content: "\f053";
	margin-right: 5px;
}

.client-testimonial.theme-four .slick-next::before {
	content: "\f054";
	margin-left: 5px;
}

.dc-two.about-section {
	background: transparent;
}

.video-player {
	overflow: hidden;
	position: relative;
	padding-top: 56.25%;
	width: 100%;
}

.video-wrapper iframe {
	width: 100%;
	height: 100%;
	border: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.dc-two.about-section .video-wrapper {
	text-align: center;
	position: relative;
	padding: 115px 0px;
}

.dc-two.about-section .video-wrapper:before {
	background: var(--heading-text-color);
	height: 425px;
	width: 425px;
	transform: translate(-50%, -50%);
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	border-radius: 50%;
}

.dc-two.about-section .video-player:before,
.dc-two.about-section .video-player:after {
	content: "";
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	height: 486px;
	width: 486px;
	background-size: cover !important;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.dc-two.about-section .video-player:after {
	height: 544px;
	width: 544px;
}

.dc-two.about-section .video-player::before {
	-webkit-animation: rotate-right 10s linear 0s infinite;
	animation: rotate-right 10s linear 0s infinite;
}

.dc-two.about-section .video-player::after {
	-webkit-animation: rotate-left 12s linear 0s infinite;
	animation: rotate-left 12s linear 0s infinite;
}

.circle-background-animation {
	padding: 60px 0px 60px;
}

.circle-background-animation img {
	position: relative;
}

.circle-background-animation:before {
	content: "";
	height: 617px;
	width: 617px;
	left: 0;
	top: 0;
	right: 0;
	margin: auto;
	bottom: 0;
	position: absolute;
	-webkit-animation: rotate-right 10s linear 0s infinite;
	animation: rotate-right 10s linear 0s infinite;
}

@-webkit-keyframes rotate-right {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes rotate-left {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

.icon-box.theme-one {
	text-align: center;
	padding: 30px 30px 30px 30px;
}

.icon-box.theme-one .icon {
	height: 120px;
	width: 120px;
	padding: 10px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--heading-text-color);
	line-height: 100px;
	text-align: center;
	margin: 0px auto 30px;
}

.icon-box.theme-one .icon img {
	max-width: 64px;
}

.icon-box.theme-one h4 {
	font-size: 24px;
}

.icon-box.theme-one p:last-child {
	margin-bottom: 0;
}

.icon-box.theme-two {
	text-align: center;
	padding: 30px 30px 30px 30px;
	border: 1px solid var(--light-gray);
	-webkit-border-radius: 8px;
	border-radius: 8px;
	background: var(--white-color);
}

.icon-box.theme-two .icon {
	height: 120px;
	width: 120px;
	padding: 10px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--heading-text-color);
	line-height: 100px;
	text-align: center;
	margin: 0px auto 30px;
}

.icon-box.theme-two .icon img {
	max-width: 64px;
}

.icon-box.theme-two h4 {
	font-size: 24px;
}

.icon-box.theme-two p {
	margin-bottom: 0;
}

.page-header .screenshot-slider .slick-arrow {
	display: none !important;
}

.page-header.dc-two .heading-wrapper {
	margin-top: 50px;
}



.counter-wrapper {
	margin: 0px -30px;
}

.counter-block {
	position: relative;
	padding-right: 37px;
}
/* .counter-block-1 {
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
    padding: 0px 30px;
    position: relative;
} */

.with-separator .counter-block:not(:last-child):after {
	border-right: 2px dashed #e1e1e1;
	content: "";
	height: 100%;
	width: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.counter-block .counter-title {
	font-family: "Inter";
	font-weight: 400;
	font-size: 14px;
	line-height: 35px;
	letter-spacing: 0%;
	text-align: center;
	vertical-align: middle;

	color: var(--heading-text-color);

}

.counter-card {
	background: var(--white-color);
	padding: 30px 30px 30px 30px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

.counter-card span .counter-number {
	font-size: 2rem !impor;
}

.counter-block .counter-number,
.counter-block .counter-number-after {
	color: var(--heading-text-color);
	font-family: 'Inter', 'Source Sans Pro', sans-serif;
	text-transform: uppercase;
	line-height: 1;
	font-weight: 600;
	font-size: 42px;
	line-height: 58.8px;
	letter-spacing: 0%;
	vertical-align: middle;

}


.style-dark .counter-block .counter-number,
.style-dark .counter-block .counter-number-after {
	color: var(--white-color);
}

.style-dark .counter-block .counter-title {
	color: var(--white-color);
}

.style-dark .counter-block .counter-number-suffix {
	color: var(--white-color);
	background-clip: unset;
	background: transparent;
}

.counter-block .counter-number-suffix {
	background: var(--heading-text-color);
	font-size: 52px;
	font-weight: bold;
	font-family: 'Source Sans Pro', sans-serif;
	position: relative;
	top: -12px;
	line-height: 0.8;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.counter-block.with-icon {
	text-align: center;
	margin: 30px 0px 0;
}

.counter-block.with-icon .counter-icon {
	width: 160px;
	height: 160px;
	padding: 30px;
	border: 1px solid var(--light-gray);
	line-height: 98px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin: 0px auto 30px;
}

.style-dark .counter-block.with-icon .counter-icon {
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.counter-block.with-icon .counter-icon img {
	max-width: 68px;
}

.counter-wrapper.two-col-stack .counter-block {
	flex: 0 0 50%;
	max-width: 50%;
	width: 100%;
	margin: 0;
	padding: 50px 30px;
}

.counter-wrapper.two-col-stack .counter-block.with-icon .counter-icon {
	padding: 0;
	border: 0px;
	height: auto;
	width: auto;
	margin: 0px auto 30px;
	line-height: normal;
}

.counter-wrapper.two-col-stack.with-separator .counter-block:before {
	background: rgba(0, 0, 0, 0.2);
	border: 0;
	left: 30px;
	right: 30px;
	content: "";
	height: 1px;
	width: auto;
	display: block;
	position: absolute;
	bottom: 0;
}

.counter-wrapper.two-col-stack.with-separator .counter-block:last-child:before {
	height: 0;
}

.counter-wrapper.two-col-stack.with-separator .counter-block::after {
	display: none;
}

.counter-wrapper.two-col-stack.with-separator .counter-block:nth-child(2n + 1):after {
	background: rgba(0, 0, 0, 0.2);
	border: 0;
	top: 30px;
	bottom: 30px;
	content: "";
	width: 1px;
	height: auto;
	display: block;
}

.style-dark .counter-wrapper.two-col-stack.with-separator .counter-block:nth-child(2n + 1):after,
.style-dark .counter-wrapper.two-col-stack.with-separator .counter-block:before {
	background: rgba(255, 255, 255, 0.2);
}

.companies-logo {
	margin-top: 30px;
}

.companies-logo.grid-view {
	margin: 0px -15px;
	display: flex;
	flex-wrap: wrap;
}

.companies-logo.grid-view .item {
	flex: 0 0 20%;
	max-width: 20%;
	width: 100%;
	margin: 30px 0px 0px;
}

.companies-logo .slick-list {
	margin: 0px -15px;
}

.companies-logo .item {
	padding: 0px 15px;
}

.companies-logo .logo-wrapper {
	border: 1px solid var(--light-gray);
	text-align: center;
	padding: 10px
}

.companies-logo .item img {
	display: inline-block;
}

.how-it-work-wrapper {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.how-it-work-wrapper .item {
	text-align: center;
	padding: 15px 30px 0px;
}

.how-it-work-wrapper.three-step .item {
	flex: 0 0 33.3334%;
	max-width: 33.3334%;
	width: 100%;
}

.how-it-work-wrapper .step-number {
	height: 120px;
	width: 120px;
	line-height: 120px;
	text-align: center;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin: 0px auto 15px;
	background: rgba(255, 255, 255, 0.1);
	font-size: 48px;
	font-weight: bold;
	font-family: 'Source Sans Pro', sans-serif;
	font-style: italic;
}

.how-it-work-wrapper .step-title {
	font-size: 24px;
}

/**----------------------------------------------**
06.) Footer CSS
/**----------------------------------------------**/
.main-footer {
	padding: 100px 0px;
	background-size: cover;
	background-position: top center;
	font-size: 16px;
	line-height: 1.5;
}

.main-footer a {
	color: var(--body-text-color);
}

.main-footer.style-dark a,
.main-footer .style-dark a {
	color: var(--white-color);
}

.social-media-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.social-media-links>h3 {
	font-size: 18px;
	margin: 0 0 10px 0;
}

.social-media-links ul {
	margin: 0px;
	padding: 0px;
	width: 100%;
}

.social-media-links li {
	padding: 0;
	margin: 0 2px;
	display: inline-block;
}

.social-media-links li a {
	line-height: 46px;
	width: 48px;
	height: 48px;
	display: block;
	font-size: 24px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	text-align: center;
	border: 1px solid var(--light-gray);
	position: relative;
	overflow: hidden;
}

.social-media-links li a:before {
	background: rgba(0, 0, 0, 0.03);
	width: 100%;
	height: 100%;
	left: 0;
	content: "";
	position: absolute;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

.style-dark .social-media-links li a {
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.style-dark .social-media-links li a:before {
	background: rgba(255, 255, 255, 0.1);
}

.copyright-bar {
	padding: 20px 0px;
	font-size: 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-media-links li:hover a:before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.footer-theme-one {
	padding-top: 160px;
	position: relative;
}

.footer-theme-one .container {
	position: relative;
}

.footer-theme-one .footer-logo {
	position: absolute;
	height: 500px;
	width: 500px;
	text-align: center;
	padding: 35px;
	z-index: -1;
	top: -100px;
	left: 0;
}

.footer-theme-one .footer-logo:before {
	height: 500px;
	width: 500px;
	content: "";
	display: block;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}

.footer-logo img {
	max-width: 180px;
	position: relative;
}

.widget+.widget {
	margin-top: 30px;
}

.widget .widget-title {
	margin-bottom: 25px;
}

.widget .widget-title h3.title {
	font-size: 20px;
	letter-spacing: 0;
}

.contact-info {
	margin-bottom: 30px;
}

.contact-info li {
	margin-bottom: 15px;
	position: relative;
	padding-left: 35px;
}

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

.contact-info li:before {
	font-size: 20px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: -2px;
}

.contact-info li.address-field:before {
	content: "\f1fa";
}

.contact-info li.email-field:before {
	content: "\f658";
}

.contact-info li.phone-field:before {
	content: "\f095";
}

.style-dark .contact-info li:before {
	color: var(--white-color);
}

.contact-info.theme-two li {
	padding: 0;
}

.contact-info.theme-two li:before {
	content: "";
}

.contact-info.theme-two li label {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 20px;
	font-weight: bold;
	display: block;
}

.contact-info.theme-two li.email-field {
	font-size: 20px;
}

.contact-info.theme-two li.phone-field {
	font-size: 24px;
}

.footer-nav ul {
	margin: 0;
	padding: 0;
}

.footer-nav li {
	margin-bottom: 15px;
	position: relative;
	padding-left: 30px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.footer-nav li a {
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.footer-nav li a:hover {
	opacity: 0.6;
}

.footer-nav li:last-child {
	margin-bottom: 0;
}

.footer-nav li:before {
	font-size: 16px;
	font-family: "Font Awesome 5 Free";
	content: "\f28d";
	font-weight: 400;
	position: absolute;
	left: 0;
	top: 1px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.style-dark .footer-nav li:before {
	color: var(--white-color);
}

.footer-nav li:hover:before {
	opacity: 0.6;
}

.footer-theme-one .copyright-bar,
.footer-theme-two .copyright-bar,
.footer-theme-three .copyright-bar,
.footer-theme-eight .copyright-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.about-info img {
	max-width: 185px;
}

.playstore-widget h3 {
	font-size: 20px;
	letter-spacing: 0;
}

.playstore-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.playstore-widget ul li {
	list-style: none;
	margin: 0 5px 0px 0;
	padding: 0;
	display: inline-block;
}

.playstore-widget ul li a {
	border: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	line-height: 46px;
	padding: 0px 15px 0px 45px;
	font-size: 17px;
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 500;
	display: block;
	color: var(--heading-text-color);
}

.style-dark .playstore-widget ul li a,
.style-dark.playstore-widget ul li a {
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.playstore-widget ul li a:before {
	font-size: 16px;
	font-family: "Font Awesome 5 Brands";
	content: "\f28d";
	font-weight: 400;
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-size: 20px;
}

.playstore-widget ul li.google a:before {
	content: "\f3ab";
}

.playstore-widget ul li.apple a:before {
	content: "\f179";
	font-size: 24px;
}

.playstore-widget ul li a span {
	display: block;
	font-size: 13px;
	font-weight: normal;
	line-height: 1.3;
}

.playstore-widget.large ul li a {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.2;
	padding: 10px 20px 10px 75px;
}

.playstore-widget.large ul li a::before {
	font-size: 42px;
}

.playstore-widget.large ul li.apple a::before {
	font-size: 48px;
}

.playstore-widget.large ul li a span {
	font-size: 15px;
}

.playstore-widget.stack-list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
}

.playstore-widget.stack-list ul {
	list-style: none;
	margin: 0;
	padding: 0 30px 0 0;
	flex: 0 0 50%;
}

.playstore-widget.stack-list .qr-code-block {
	flex: 0 0 50%;
	width: 100%;
}

.playstore-widget.stack-list ul li {
	display: block;
	margin: 10px 0px;
}

.playstore-widget.stack-list ul a {
	width: 100%;
	display: block;
}

.main-footer .playstore-widget ul li a::after {
	background: rgba(255, 255, 255, 0.1);
	width: 100%;
	height: 100%;
	left: 0;
	content: "";
	position: absolute;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

.main-footer .playstore-widget ul li:hover a::after {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.main-footer .image-wrapper {
	margin-bottom: 30px;
}

.footer-theme-three {
	text-align: center;
}

.footer-theme-eight {
	text-align: center;
	position: relative;
}

.footer-theme-eight:before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.horizontal-menu {
	display: block;
	margin-bottom: 30px;
}

.horizontal-menu li {
	display: inline-block;
	text-transform: uppercase;
	font-weight: bold;
	padding: 0px 15px;
	font-size: 15px;
}

.horizontal-menu li a {
	display: block;
}

.horizontal-menu li:before {
	content: "";
}

.newsletter-form.style-two {
	max-width: 480px;
	margin: 0px auto;
}

.newsletter-form.style-two.align-left {
	max-width: 380px;
	margin: 0 0 30px;
}

.newsletter-form.style-two h3 {
	font-size: 20px;
}

.presentation-section .newsletter-form.style-two h3 {
	font-size: 28px;
}

.presentation-section .newsletter-form.style-two {
	max-width: 580px;
}

.footer-theme-three .social-media-links {
	margin-top: 30px;
}

.newsletter-form.style-two form {
	position: relative;
}

.newsletter-form.style-two button {
	font-size: 0;
	position: absolute;
	padding: 0;
	border: none;
	background: transparent;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.newsletter-form.style-two button:before {
	content: "\f1d8";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 22px;
	color: var(--heading-text-color);
}

.style-dark .newsletter-form.style-two button:before {
	color: var(--white-color);
}

/**----------------------------------------------**
07.) Inner Pages CSS
/**----------------------------------------------**/
.st-breadcrumb {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 17px;
	margin: 0px auto 0px;
	display: table;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	background: rgba(0, 0, 0, 0.08);
	padding: 10px 30px;
}

.st-breadcrumb li {
	display: inline-block;
	padding: 0px 0px;
}

.st-breadcrumb li a {
	padding: 0px 5px;
}

.st-breadcrumb li span {
	padding: 0px 5px;
	opacity: 0.6;
}

.st-breadcrumb li:not(.active):after {
	content: "/";
	margin: 0px 10px;
}

.st-team-member.theme-one {
	margin-top: 30px;
}

.st-team-member.theme-one .st-team-image {
	position: relative;
	overflow: hidden;
	background: var(--heading-text-color);
	cursor: pointer;
}

.st-team-member.theme-one .st-team-image img {
	-webkit-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

.st-team-member.theme-one:hover .st-team-image img {
	opacity: 0.1;
}

.st-team-member.theme-one .team-social {
	position: absolute;
	bottom: 0;
	padding: 10px 15px;
	width: 100%;
	-webkit-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
	text-align: center;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

.st-team-member.theme-one:hover .team-social {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.st-team-member.theme-one .team-social a {
	text-align: center;
	display: inline-block;
	margin: 0px 3px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
	line-height: 36px;
	width: 38px;
	height: 38px;
	font-size: 20px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	color: var(--white-color);
}

.st-team-member.theme-one .team-social a::before {
	background: rgba(255, 255, 255, 0.1);
	width: 100%;
	height: 100%;
	left: 0;
	content: "";
	position: absolute;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

.st-team-member.theme-one .team-social a:hover::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.st-team-member.theme-one .st-team-member-detail {
	text-align: center;
	padding: 15px 15px 0px;
}

.st-team-member.theme-one .member-name {
	font-size: 28px;
	margin: 0 0 10px 0;
	line-height: 1;
}

.st-team-member.theme-one .member-position {
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1;
	font-size: 15px;
}

.map-custom-embed {
	display: block;
	width: 100%;
}

.map-custom-embed iframe {
	margin: 0;
	padding: 0;
	height: 550px;
	vertical-align: middle;
	width: 100%;
}

.contact-info-box {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	padding: 30px;
	border: 1px solid var(--light-gray);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	margin-bottom: 30px;
}

.contact-info-box .icon {
	font-size: 48px;
	color: var(--heading-text-color);
	line-height: 1;
	margin-bottom: 10px
}

.contact-info-box h4 {
	margin-bottom: 10px;
}

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

.contact-box-wrapper {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.contact-box-wrapper .form-box {
	padding: 50px 50px;
	flex: 0 0 calc(100% - 400px);
	max-width: calc(100% - 400px);
	width: 100%;
}

.contact-box-wrapper .contact-details-box {
	padding: 50px 50px;
	background: var(--heading-text-color);
	-webkit-border-radius: 0px 6px 6px 0px;
	border-radius: 0px 6px 6px 0px;
	flex: 0 0 400px;
	max-width: 400px;
	width: 100%;
}

/**----------------------------------------------**
08.) Blog Layout CSS
/**----------------------------------------------**/
.news-grid {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.article-block {
	margin: 0px 0px 50px;
}

.news-grid.column-3 .article-block {
	flex: 0 0 33.3334%;
	max-width: 33.3334%;
	width: 100%;
	padding: 0px 15px;
	margin: 0px 0px 50px;
}

.news-grid.column-2 .article-block {
	flex: 0 0 50%;
	max-width: 50%;
	width: 100%;
	padding: 0px 15px;
	margin: 0px 0px 50px;
}

.article-block .article-img {
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}

.news-grid .article-img {
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}

.article-block .article-img img {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.article-block .article-img:hover img {
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.post-meta {
	margin-bottom: 15px;
}

.post-meta>div,
.post-meta>span {
	display: inline-block;
}

.post-meta span {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	font-family: 'Source Sans Pro', sans-serif;
}

.post-meta span.entry-meta {
	position: relative;
	padding-left: 28px;
	margin-right: 15px;
}

.post-meta span.entry-meta:last-child {
	margin-right: 0;
}

.post-meta span.entry-meta:before {
	content: "D";
	color: var(--heading-text-color);
	display: inline-block;
	font-size: 20px;
	position: absolute;
	left: 0;
	line-height: 1;
	font-family: "Material Design Icons";
	font-weight: normal;
}

.post-meta span.entry-meta.entry-author:before {
	content: "\F0017";
	font-size: 22px;
	top: -1px;
}

.post-meta span.entry-meta.entry-date:before {
	content: "\F0E17";
}

.post-meta span.entry-meta.entry-category:before {
	content: "\F0255";
}

.news-grid .post-meta span.entry-meta {
	padding-left: 0;
	margin-right: 0;
}

.news-grid .post-meta span.entry-meta:before {
	content: "";
	display: none;
}

.post-meta a {
	color: var(--dark-gray);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.news-grid .post-meta>div:not(:last-child):after,
.news-grid .post-meta>span:not(:last-child):after {
	content: "/";
	margin: 0px 6px;
	display: inline-block;
}

.article-block .entry-title {
	font-size: 28px;
}

.news-grid .entry-title {
	font-size: 24px;
	margin-bottom: 0;
}

.news-grid.column-2 .entry-title {
	font-size: 28px;
}

.article-block .entry-title a {
	color: var(--heading-text-color);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.pagination-wrapper {
	width: 100%;
	margin: 30px 0px 0px 0px;
}

.pagination-wrapper .pagination {
	display: block;
}

.pagination li {
	display: inline-block;
	margin: 0px 2px;
}

.pagination li a,
.pagination li span {
	height: 48px;
	width: 48px;
	line-height: 48px;
	text-align: center;
	display: block;
	background: var(--light-gray);
	-webkit-border-radius: 50px;
	border-radius: 50px;
	font-size: 20px;
	font-weight: 600;
	color: var(--heading-text-color);
}

.pagination li .mdi {
	font-size: 32px;
	position: relative;
	top: 4px;
	line-height: 1;
}

.pagination li span.current {
	background: var(--heading-text-color);
	color: var(--white-color);
}

.news-grid.column-2 .article-details {
	padding-left: 60px;
	position: relative;
}

.news-grid.column-2 .article-details:before {
	height: 3px;
	width: 30px;
	content: "";
	display: inline-block;
	position: absolute;
	top: 12px;
	left: 0;
	background: var(--heading-text-color);
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.readmore-link {
	margin-top: 15px;
}

.filters {
	margin: 0px 0px 50px;
	width: 100%;
	padding: 0px 15px;
	position: relative;
}

.filters ul {
	margin: 0;
	padding: 0;
	width: 100%;
	border-bottom: 3px solid var(--light-gray);
	text-align: center;
}

.filters ul li {
	display: inline-block;
	padding: 0px 10px;
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: var(--heading-text-color);
	line-height: 1;
}

.filters li span {
	padding: 0px 5px 15px;
	display: block;
	cursor: pointer;
	position: relative;
}

.filters li span::after {
	height: 3px;
	width: 0;
	right: 0;
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
	position: absolute;
	top: 100%;
	background: var(--heading-text-color);
	content: "";
}

.filters li:hover span::after,
.filters li.is-checked span::after {
	width: 100%;
	left: 0;
	right: auto;
}

.filters .select-filter {
	display: none;
	cursor: pointer;
	padding: 0px 20px 15px;
	text-align: left;
	color: var(--heading-text-color);
	border-bottom: 3px solid var(--light-gray);
	margin-bottom: 0px;
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 700;
	font-size: 20px;
}

.sidebar.right-side {
	padding-left: 50px;
}

.sidebar.left-side {
	padding-right: 50px;
}

.sidebar .widget-title:after {
	height: 4px;
	width: 60px;
	content: "";
	display: block;
	margin-top: 18px;
	background: var(--heading-text-color);
}

.sidebar ul li {
	margin-bottom: 10px;
	position: relative;
	padding: 0px 30px 10px 0px;
	border-bottom: 1px solid var(--light-gray);
}

.sidebar ul li:last-child {
	margin-bottom: 0px;
	border-bottom: 0;
}

.sidebar ul li::after {
	position: absolute;
	top: 1px;
	right: 10px;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
}

.sidebar a {
	color: var(--body-text-color);
}

.sidebar a:hover {
	color: var(--heading-text-color);
}

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

.widget.search-box form input[type="search"] {
	padding-right: 40px;
}

.widget.search-box button {
	background: none;
	color: var(--heading-text-color);
	border: none;
	position: absolute;
	top: 8px;
	right: 10px;
	font-size: 22px;
}

.sidebar .widget+.widget {
	margin-top: 50px;
}

.tagcloud a,
.entry-tags a {
	border: 1px solid var(--light-gray);
	padding: 0 15px;
	color: var(--body-text-color);
	display: inline-block;
	font-size: 14px !important;
	line-height: 32px;
	margin-right: 6px;
	margin-bottom: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	font-weight: 600;
	-webkit-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

.tagcloud a:hover,
.entry-tags a:hover {
	background: var(--heading-text-color);
	color: var(--white-color) !important;
}

ul.st-recent-posts li {
	padding-right: 0;
}

ul.st-recent-posts li:after {
	display: none;
}

ul.st-recent-posts li a {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

ul.st-recent-posts li a:hover {
	color: var(--body-text-color);
}

ul.st-recent-posts li .article-img {
	width: 100%;
	flex: 0 0 100px;
	max-width: 100px;
}

ul.st-recent-posts li .article-details {
	flex: 0 0 calc(100% - 120px);
	max-width: calc(100% - 120px);
	width: 100%;
	padding: 0 0 0 20px;
}

ul.st-recent-posts .entry-title {
	font-size: 16px;
	margin-bottom: 5px;
	font-weight: 600;
}

ul.st-recent-posts span {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	font-family: 'Source Sans Pro', sans-serif;
}

.sidebar .social-media-links li {
	padding: 0;
	border-bottom: none;
}

.sidebar .social-media-links li:after {
	display: none;
}

.single-post .st-breadcrumb {
	display: none;
}

.post-thumbnail {
	margin-bottom: 30px;
}

.single-post article h2,
.h2 {
	font-size: 36px;
}

.single-post article h3,
.h3 {
	font-size: 30px;
}

.single-post article h4,
.h4 {
	font-size: 26px;
}

.single-post article ul,
.single-post article ol {
	margin-bottom: 18px;
}

blockquote {
	font-size: 18px;
	font-style: italic;
	line-height: 28px;
	position: relative;
	padding: 30px 30px 30px 60px;
	clear: both;
	margin: 30px 0 30px 25px;
	border: 1px solid var(--light-gray);
}

blockquote p:last-child {
	margin-bottom: 0px;
}

blockquote cite {
	display: block;
	font-weight: 700;
	font-style: normal;
	margin-top: 15px;
}

blockquote::before {
	background: #000000;
	border-radius: 60px;
	padding: 5px;
	height: 50px;
	width: 50px;
	line-height: 40px;
	text-align: center;
	color: #ffffff;
	content: "\f10d";
	font-family: "Font Awesome 5 Free";
	font-style: normal;
	font-weight: 900;
	position: absolute;
	top: 38px;
	left: -25px;
	font-size: 24px;
}

.entry-content-bottom {
	margin-top: 50px;
}

.entry-tags .label {
	display: block;
	font-size: 18px;
	font-weight: bold;
	font-family: 'Source Sans Pro', sans-serif;
	margin-bottom: 10px;
	padding: 0px 0px 0px 30px;
	position: relative;
}

.entry-tags .label:before {
	content: "\F04FB";
	color: var(--heading-text-color);
	display: inline-block;
	font-size: 24px;
	position: absolute;
	left: 0;
	line-height: 1;
	font-family: "Material Design Icons";
	font-weight: normal;
	top: 4px;
}

.inner-page-header .post-meta span.entry-meta {
	font-size: 16px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	background: rgba(0, 0, 0, 0.08);
	padding: 10px 30px;
}

.style-dark .post-meta a {
	color: rgba(255, 255, 255, 0.7);
}

.style-dark .post-meta a:hover {
	color: rgba(255, 255, 255, 1);
}

.inner-page-header .post-meta span.entry-meta::before {
	display: none;
}

/**----------------------------------------------**
09.) 404 and Comingsoon Page CSS
/**----------------------------------------------**/
.countdown-timer ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin: 0px -15px;
	padding: 0px 0px 30px;
}

.countdown-timer ul li {
	list-style: none;
	flex: 0 0 25%;
	max-width: 25%;
	width: 100%;
	padding: 0px 15px;
	text-align: center;
}

.countdown-timer ul li .count-item {
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 6px;
	border-radius: 6px;
	padding: 15px 15px;
}

.style-dark .countdown-timer ul li .count-item {
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-timer ul li span {
	display: block;
	font-size: 48px;
	line-height: 1;
	font-weight: bold;
	font-family: 'Source Sans Pro', sans-serif;
}

.dc-comingsoon #main-logo img {
	max-height: 60px;
}

.dc-comingsoon .newsletter-form.style-two {
	margin: 0;
	max-width: 100%;
}

.dc-comingsoon .newsletter-form.style-two h3 {
	font-size: 24px;
}

.dc-comingsoon .text-wrapper {
	margin-bottom: 15px;
}

.dc-comingsoon .social-media-links {
	margin-top: 60px;
}

/**----------------------------------------------**
10.) Sign-In and Sign-Up CSS
/**----------------------------------------------**/
.dc-signin {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 100vh;
	width: 100%;
}

.box-header {
	position: relative;
	padding: 30px 30px 60px;
	margin-bottom: 30px;
}

.signin-wrapper .box-header::before {
	/* background: var(--heading-text-color); */
	/* content: "";
	position: absolute;
	height: 300px;
	width: 480px;
	border-radius: 50%;
	top: -110px;
	left: -70px;
	z-index: 0;
	transform: rotate(-16deg); */
}

.signin-wrapper .box-header>* {
	position: relative;
}

.signin-wrapper {
	/* max-width: 400px; */
	width: 100%;
	margin: 30px auto;
	padding: 0px 30px 30px;
	background: var(--white-color);
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	overflow: hidden;
}

.signin-wrapper .box-header {
    position: relative;
    padding: 40px 82px 0px;
    margin-bottom: 30px;
}

.or {
	margin: 15px 0px;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
}

.forgot-link,
.signup-link,
.signin-link {
	margin: 15px 0px;
}

.box-header img {
	max-height: 55px;
	margin-bottom: 15px;
}

.box-header h1 {
	line-height: 1;
	font-size: 28px;
}

.box-header h1 span {
	font-family: 'Alegreya', serif;
	font-style: italic;
}

.btn.email-btn {
	background-image: -moz-linear-gradient(top, #e60023 0%, #c00000 100%);
	background-image: -webkit-linear-gradient(top, #e60023 0%, #c00000 100%);
	background-image: linear-gradient(to bottom, #e60023 0%, #c00000 100%);
}

.btn.facebook-btn {
	background-image: -moz-linear-gradient(top, #16a8fc 0%, #036ee4 100%);
	background-image: -webkit-linear-gradient(top, #16a8fc 0%, #036ee4 100%);
	background-image: linear-gradient(to bottom, #16a8fc 0%, #036ee4 100%);
}

.dc-signin.theme-two .signin-wrapper {
	max-width: 1024px;
	display: flex;
	padding: 0;
}

.dc-signin.theme-two .intro-box {
	background: var(--heading-text-color);
	flex: 0 0 60%;
	max-width: 60%;
	padding: 150px 50px 50px;
	position: relative;
}

.dc-signin.theme-two .intro-box img {
	max-height: 55px;
	margin-bottom: 15px;
}

.dc-signin.theme-two .st-tab-btn {
	position: absolute;
	top: 0;
	right: 0;
}

.dc-signin.theme-two .st-tab-btn .nav-tabs {
	border: none;
	display: block;
	padding-top: 30px;
}

.dc-signin.theme-two .st-tab-btn .nav-tabs .nav-item .nav-link::after {
	content: "";
	display: none;
}

.dc-signin.theme-two .form-box {
	flex: 0 0 40%;
	max-width: 40%;
	width: 100%;
	padding: 50px 50px;
}

.dc-signin.theme-two .st-tab-btn .nav-tabs .nav-item {
	display: block;
	margin: 0;
	text-align: right;
}

.dc-signin.theme-two .st-tab-btn .nav-tabs .nav-item .nav-link,
.dc-signin.theme-two .st-tab-btn .nav-tabs .nav-link {
	color: var(--white-color);
	padding: 10px 15px;
	display: inline-block;
	-webkit-border-radius: 6px 0 0px 6px;
	border-radius: 6px 0 0px 6px;
}

.dc-signin.theme-two .st-tab-btn .nav-tabs .nav-link.active {
	background: var(--white-color);
	color: var(--heading-text-color);
}

.dc-signin .btn.link-btn {
	font-size: 16px;
}

.enquiry-form-box .form-wrapper {
	background: var(--white-color);
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	border: 1px solid var(--light-gray);
	padding: 30px;
	max-width: 400px;
	margin: auto;
	width: 100%;
	display: table;
}

.enquiry-form-box .form-wrapper .form-header {
	text-align: center;
}

.enquiry-form-box .form-wrapper .form-header h4 {
	font-size: 28px;
}

.enquiry-form-box .form-wrapper .form-header h4 span {
	font-family: 'Alegreya', serif;
	font-style: italic;
}

.form-wrapper .seo-rocket img {
	position: absolute;
	left: -20px;
	bottom: -100px;
	z-index: -1;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all 2s ease 1s;
	transition: all 2s ease 1s;
}

.animation-in .form-wrapper .seo-rocket img {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/**----------------------------------------------**
11.) Timeline CSS
/**----------------------------------------------**/
.timeline::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0px;
	height: 12px;
	background: var(--heading-text-color);
	margin-top: -6px;
}

.timeline .timeline-item {
	text-align: center;
	padding: 0px 15px;
	position: relative;
}

.timeline .timeline-item:before {
	background: var(--heading-text-color);
	height: 32px;
	width: 32px;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50px;
	border: 4px solid var(--white-color);
}

.timeline .step-number {
	color: var(--heading-text-color);
	font-family: 'Alegreya', serif;
	font-style: italic;
	font-size: 98px;
	font-weight: bold;
	line-height: 0.8;
	height: 98px;
}

.timeline .step-number span {
	display: block;
}

.timeline .step-number {
	position: absolute;
	text-align: center;
	width: 100%;
	top: 30px;
}

.timeline .timeline-wrapper {
	padding-top: 100px;
	position: relative;
}

.timeline .timeline-item .content {
	padding: 80px 0 0 0;
}

.timeline .timeline-item .content p {
	margin-bottom: 0;
}

.timeline .timeline-item h4 {
	font-size: 24px;
	margin-bottom: 10px;
}

.timeline .timeline-item:nth-child(even) .timeline-wrapper {
	padding-top: 0px;
	padding-bottom: 100px;
}

.timeline .timeline-item:nth-child(even) .content {
	padding: 0 0 80px 0;
}

.timeline .timeline-item:nth-child(even) .step-number {
	top: auto;
	bottom: 30px;
}

#upload {
	display: none;
}

.upload-main {
	min-height: 50px;
	margin: 10px 0 10px;
	display: flex;
	align-items: center;
}

.upload-main::before {
	content: '';
	background: url(../images/upload-icon.svg) no-repeat 0 0;
	width: 28px;
	height: 26px;
	display: inline-block;
	margin-right: 15px;
	vertical-align: middle;
}

.upload-path {
	display: none;
}

.upload-path.not-empty {
	display: inline-block;
}

.upload-path {
	background: var(--white-color);
	padding: 0 16px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: var(--heading-text-color);
	margin-right: 15px;
	line-height: 1;
}

.upload-path span {
	vertical-align: middle;
	display: inline-block;
	line-height: 42px;
}

.upload-path .upload-close {
	background: url(../images/upload-close.svg) no-repeat 0 0;
	width: 22px;
	height: 22px;
	font-size: 0;
	margin-left: 10px;
	cursor: pointer;
}

.uploadInput label {
	border-bottom: 2px dotted rgba(35, 31, 32, 0.5);
	padding-bottom: 2px;
	cursor: pointer;
	font-size: 16px;
	font-weight: normal;
}

.uploadInput span {
	font-size: 14px;
	margin-left: 15px;
}

.rectangle-filler {
	height: 2rem;
	width: 100%;
}

#quarterFilterPopup::-webkit-scrollbar {
	width: 6px;
}

#quarterFilterPopup::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 3px;
}

.option-item:hover {
	background-color: #f0f0f0;
	cursor: pointer;
}

.option-item.active {
	background-color: #198754;
	color: white;
}

.option-frequency:hover {
	background-color: #f0f0f0;
	cursor: pointer;
}

.option-frequency.active {
	background-color: #dff5e1;
	/* Light green background */
	color: #198754;
}

/* Adjust slider thumb and track colors if needed */
.form-range::-webkit-slider-thumb {
	background-color: #00695c;
}



/**----------------------------------------------**
12.) Responsive Media Query CSS
/**----------------------------------------------**/
@media only screen and (max-width:1439px) {
	.container-fluid {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media only screen and (max-width:1365px) {
	.circle-background-animation::before {
		background-size: cover !important;
		height: 500px;
		width: 500px;
	}
}

@media (max-width:1290px) {
	.page-header.dc-ten {
		background-position: center right !important;
	}

	.rectangle-filler {
		height: 5rem;
		width: 100%;
	}
}

@media only screen and (max-width:1279px) {
	.features-block.theme-three .inner-box {
		padding: 30px 10px;
	}

	.page-header.dc-six::before {
		left: -25%;
	}
}

@media only screen and (max-width:1199px) {
	.container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}

	.menu-primary>li.menu-item>a {
		padding: 0px 5px;
	}

	.container {
		max-width: 960px;
	}

	.right-col-full .col-lg-6:first-child,
	.right-col-full .col-md-6:first-child {
		padding-left: calc(((100vw - (100vw - 100%)) - 930px) / 2);
	}

	h1,
	.h1 {
		font-size: 42px;
	}

	h2,
	.h2 {
		font-size: 38px;
	}

	.single-post article h2,
	.h2 {
		font-size: 32px;
	}

	.single-post article h3,
	.h3 {
		font-size: 28px;
	}

	.single-post article h4,
	.h4 {
		font-size: 24px;
	}

	.counter-wrapper {
		margin: 0px -15px;
	}

	.counter-block {
		padding: 0px 15px;
	}

	.counter-block .counter-number,
	.counter-block .counter-number-after {
		font-size: 42px;
	}

	.sidebar.right-side {
		padding-left: 0px;
	}

	.sidebar.left-side {
		padding-right: 0px;
	}

	.right-col-full .col-lg-6:first-child,
	.right-col-full .col-md-6:first-child {
		padding-left: 15px;
	}

	.right-col-full .col-lg-6:last-child,
	.right-col-full .col-md-6:last-child {
		padding-right: 15px;
	}

	.left-col-full .col-lg-6:last-child,
	.left-col-full .col-md-6:last-child {
		padding-right: 15px;
	}

	.left-col-full .col-lg-6:first-child,
	.left-col-full .col-md-6:first-child {
		padding-left: 15px;
	}

	.circle-background-animation::before {
		background-size: cover;
		height: 450px;
		width: 450px;
	}

	.features-block.theme-three .inner-box {
		padding: 30px 15px;
	}

	.dc-signin.theme-two .signin-wrapper {
		max-width: 850px;
	}

	.dc-signin.theme-two .intro-box {
		padding: 110px 30px 30px;
	}

	.dc-signin.theme-two .form-box {
		padding: 50px 30px;
	}

	.page-header.dc-seven::before {
		left: -55%;
	}

	.contact-box-wrapper .contact-details-box {
		flex: 0 0 320px;
		max-width: 320px;
		padding: 50px 30px;
	}

	.contact-box-wrapper .form-box {
		padding: 50px 30px;
		flex: 0 0 calc(100% - 320px);
		max-width: calc(100% - 320px);
	}
}

@media only screen and (max-width:991px) {
	.page-header.dc-ten {
		background-position: center !important;
	}

	.i-text-center {
		text-align: center !important;
	}

	.i-hidden {
		display: none !important;
	}

	.search-option {
		display: none;
	}

	.container {
		max-width: 720px;
	}

	.page-header.dc-one {
		padding: 150px 0px 100px;
	}

	.page-header.dc-one .image-wrapper {
		margin-top: 30px;
	}

	.right-col-full .container,
	.left-col-full .container {
		max-width: 720px;
	}

	.call-to-action-btn {
		margin-top: 30px;
	}

	.counter-wrapper {
		margin: 0px -15px 30px;
	}

	.screenshot-slider .slick-prev {
		left: 15px;
	}

	.screenshot-slider .slick-next {
		right: 15px;
	}

	.client-testimonial.theme-one {
		padding: 0px 0px;
		margin: 0px auto 0;
	}

	.client-testimonial.theme-one .slick-slide {
		padding: 15px 30px 0px;
	}

	.client-testimonial.theme-one .slick-list {
		overflow: hidden !important;
	}

	.client-testimonial.theme-one .slick-prev,
	.client-testimonial.theme-one .slick-next {
		right: 30px;
	}

	.client-testimonial.theme-one .slick-prev {
		right: 80px;
	}

	.pricing-plans-one .price-card.popular {
		top: 0;
	}

	.pricing-plans-one .price-card {
		margin: 30px auto 0;
		max-width: 420px;
	}

	.pricing-plans-two .price-card {
		margin: 120px auto 0;
		max-width: 420px;
	}

	.icon-box.theme-one {
		margin: 30px auto 0;
		max-width: 420px;
	}

	.main-footer {
		padding: 70px 0px;
	}

	.main-footer .widget {
		margin: 30px 0px;
	}

	.footer-theme-one .main-footer {
		padding: 30px 0px 70px;
	}

	.footer-theme-one .footer-logo {
		top: -160px;
	}

	.footer-theme-one .footer-logo,
	.footer-theme-one .footer-logo::before {
		height: 320px;
		width: 320px;
	}

	.footer-theme-one {
		background-position: top left !important;
	}

	.footer-logo img {
		max-width: 150px;
	}

	.icon-box.theme-two {
		margin: 30px auto 0;
		max-width: 420px;
	}

	.counter-block.with-icon .counter-icon {
		margin: 0px auto 15px;
	}

	body.navigation-in {
		overflow: hidden !important;
	}

	body.navigation-in .page-wrapper {
		filter: blur(5px);
	}

	.menu-toggle-btn {
		display: block;
	}

	#navigation {
		background: #fff;
		position: fixed;
		right: 0;
		top: 0;
		-webkit-box-shadow: -20px 0px 20px 0px rgba(0, 0, 0, 0.1);
		box-shadow: -20px 0px 20px 0px rgba(0, 0, 0, 0.1);
		height: 100vh;
		overflow: auto;
		z-index: 1;
		width: 100%;
		max-width: 360px;
		display: block;
		padding: 80px 0 30px;
		transition: all 0.5s ease-in-out;
		-webkit-transition: all 0.5s ease-in-out;
		transform: translateX(120%);
	}

	#navigation.open {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translateX(0);
		transform: translateX(0);
		z-index: 1;
	}

	#navigation .menu-primary {
		padding: 15px 0px 30px;
		width: 100%;
		margin: auto;
	}

	#navigation .navbar-right {
		padding: 0px 30px 30px;
	}

	#navigation .menu-primary li.menu-item {
		display: block;
		padding: 0px 0px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}

	#navigation .menu-primary li.menu-item:last-child {
		border-bottom: 0px;
	}

	#navigation .menu-primary>li.menu-item:last-child {
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}

	#navigation .menu-primary>li.menu-item>a {
		font-size: 15px;
		display: block;
		padding: 12px 30px;
		line-height: 1.5;
		text-transform: uppercase;
		color: var(--heading-text-color);
	}

	.menu-primary>li.menu-item.menu-item-has-children>a::after {
		content: "";
	}

	.menu-primary .sub-menu>li.menu-item.menu-item-has-children>a::after {
		content: "";
	}

	.menu-primary li.menu-item .sub-menu {
		position: static;
		box-shadow: none;
		background: transparent;
		padding: 0;
		transform: none;
		opacity: 1;
		visibility: visible;
		display: none;
		background: rgba(0, 0, 0, 0.04);
		border-radius: 0;
		transition: none;
		-webkit-transition: none;
	}

	#navigation .menu-primary .child-link {
		display: block;
		position: absolute;
		right: 10px;
		top: 0px;
		height: 46px;
		width: 42px;
		text-align: center;
		line-height: 46px;
		cursor: pointer;
		transition: all 500ms ease-in-out;
		-webkit-transition: all 500ms ease-in-out;
		border-radius: 50px;
		-webkit-border-radius: 50px;
	}

	.menu-primary>li.menu-item.mega-menu {
		position: relative;
	}

	.menu-primary .sub-menu>li.menu-item>a::before {
		display: none;
	}

	#navigation .menu-primary .sub-menu li.menu-item a {
		display: block;
		padding: 12px 30px;
		line-height: 1.5;
		color: var(--heading-text-color);
	}

	.menu-primary .sub-menu li.menu-item>.sub-menu {
		margin-left: 0;
	}

	.menu-primary .sub-menu>li.menu-item.col-title>a {
		font-size: 18px;
		margin: 0;
	}

	.menu-primary .mega-menu-inner>li.menu-item>.sub-menu {
		display: block !important;
		background: transparent;
	}

	#navigation .menu-primary .child-link.active {
		transform: rotate(180deg);
		-webkit-transform: rotate(180deg);
	}

	.news-grid.column-2 .article-block {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.news-grid.column-3 .article-block {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.sidebar {
		margin-top: 50px;
	}

	.vertical-tab .st-tab-btn {
		flex: 0 0 32%;
		width: 100%;
		max-width: 32%;
	}

	.vertical-tab .st-tab-content {
		flex: 0 0 68%;
		width: 100%;
		max-width: 68%;
	}

	.companies-logo.grid-view {
		justify-content: center;
	}

	.companies-logo.grid-view .item {
		flex: 0 0 25%;
		max-width: 25%;
	}

	.dc-signin.theme-two .signin-wrapper {
		max-width: 750px;
	}

	.dc-signin.theme-two .intro-box {
		padding: 120px 30px 30px;
		flex: 0 0 55%;
		max-width: 55%;
	}

	.dc-signin.theme-two .form-box {
		padding: 30px 30px;
		flex: 0 0 45%;
		max-width: 45%;
	}

	.page-header.dc-six::before {
		height: 100%;
		left: -16%;
		width: 120%;
		top: -36%;
		transform: rotate(-18deg);
	}

	.page-header.dc-six::after {
		background-size: 100% auto;
	}

	.page-header.dc-seven::before {
		left: -70%;
	}

	.dc-features-group>.dc-features-item {
		border: 0;
	}

	.dc-features-group>.dc-features-item:nth-child(n),
	.dc-features-group>.dc-features-item:nth-child(2n),
	.dc-features-group>.dc-features-item:nth-child(3n) {
		border: 0;
	}

	.features-block.theme-four .inner-box {
		display: table;
		padding: 40px 30px;
	}

	.features-block.theme-four .icon {
		margin: 0px auto 30px;
	}

	.features-block.theme-four .inner-box>* {
		width: 100%;
		text-align: center;
	}

	.contact-box-wrapper .contact-details-box {
		flex: 0 0 100%;
		max-width: 100%;
		-webkit-border-radius: 0px 0px 6px 6px;
		border-radius: 0px 0px 6px 6px;
	}

	.contact-box-wrapper .form-box {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media only screen and (max-width:767px) {
	.m-text-center {
		text-align: center !important;
	}

	.m-hidden {
		display: none !important;
	}

	.container {
		max-width: 540px;
	}

	.right-col-full .container,
	.left-col-full .container {
		max-width: 540px;
	}

	.screenshot-section {
		overflow: hidden;
	}

	.screenshot-slider .slick-prev {
		left: 50%;
		top: 100%;
		margin-top: 40px;
		margin-left: -60px;
	}

	.screenshot-slider .slick-next {
		right: 50%;
		top: 100%;
		margin-top: 40px;
		margin-right: -60px;
	}

	h1,
	.h1 {
		font-size: 36px;
	}

	h2,
	.h2 {
		font-size: 32px;
	}

	h3,
	.h3 {
		font-size: 30px;
	}

	h4,
	.h4 {
		font-size: 26px;
	}

	.counter-wrapper {
		flex-wrap: wrap;
		margin: 0px -15px 0px;
	}

	.counter-block {
		padding: 0px 15px;
		flex: 0 0 50%;
		max-width: 50%;
		margin: 15px 0px;
	}

	.counter-block::after {
		display: none;
	}

	.video-wrapper iframe {
		max-height: 360px;
	}

	.dc-two.about-section .video-wrapper::before {
		height: 300px;
		width: 300px;
	}

	.dc-two.about-section .video-player::before,
	.dc-two.about-section .video-player::after {
		height: 350px;
		width: 350px;
	}

	.dc-two.about-section .video-player::after {
		height: 400px;
		width: 400px;
	}

	.client-testimonial.theme-one .testimonial-text {
		padding: 30px 30px 30px 50px;
	}

	.footer-theme-one .footer-logo,
	.footer-theme-one .footer-logo::before {
		right: 30px;
	}

	.pricing-plans-three .price-card {
		margin: 30px auto 0;
		max-width: 420px;
	}

	.counter-block.with-icon {
		width: 100%;
		max-width: initial;
	}

	.client-testimonial.theme-three {
		padding: 0px 0px 0px 0px;
		margin-left: 0px;
		border: none;
	}

	.client-testimonial.theme-three .slick-dots {
		transform: none;
		margin: 30px 0px 0px;
		position: static;
		padding: 0 0 0 85px;
		text-align: left;
	}

	.client-testimonial.theme-three .slick-dots li {
		display: inline-block;
		margin: 0px 5px;
	}

	.dc-two.about-section .video-wrapper {
		padding: 0px 0px 40px;
	}

	.video-wrapper iframe {
		width: 100%;
	}

	.st-breadcrumb {
		font-size: 15px;
		padding: 10px 15px;
	}

	.filters .select-filter {
		display: block;
	}

	.filters ul {
		text-align: left;
		border-bottom: 0;
		padding: 30px 15px;
		background: var(--white-color);
		box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.09);
		position: absolute;
		z-index: 1;
		display: none;
		left: 15px;
		right: 15px;
		width: auto;
	}

	.filters ul li {
		display: block;
		border-bottom: 1px solid var(--light-gray);
		padding: 0;
		font-size: 16px;
	}

	.filters li span {
		padding: 15px 0px;
	}

	.filters li span::after {
		display: none;
	}

	.news-grid.column-3 .article-block {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.countdown-timer ul {
		margin: 0px -4px;
	}

	.countdown-timer ul li {
		padding: 0px 4px;
	}

	.countdown-timer ul li span {
		font-size: 36px;
	}

	.vertical-tab .st-tab-btn {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
	}

	.vertical-tab .st-tab-content {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		padding: 30px 0 0;
		border: 0;
	}

	.select-filter {
		background: none;
		color: var(--heading-text-color);
		font-weight: 700;
		font-family: 'Source Sans Pro', sans-serif;
		font-size: 18px;
		padding: 15px;
		position: relative;
		border: 1px solid var(--light-gray);
		cursor: pointer;
	}

	.st-tab-btn .nav-tabs .nav-item .nav-link::after {
		display: none;
	}

	.st-tab-btn .nav-tabs {
		border: none;
		box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.06);
		-webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.06);
		display: none;
		background: var(--white-color);
	}

	.st-tab-btn .nav-tabs .nav-item {
		margin: 0;
		display: block;
		width: 100%;
	}

	.st-tab-btn {
		margin: 0;
	}

	.select-filter:after {
		font-family: 'Line Awesome Free';
		font-style: normal;
		font-size: 24px;
		content: "\f107";
		color: var(--body-text-color);
		float: right;
		margin-top: -4px;
		font-weight: 900;
	}

	.vertical-tab .st-tab-btn .nav-tabs .nav-item .nav-link,
	.st-tab-btn .nav-tabs .nav-link {
		padding: 15px;
	}

	.vertical-tab .st-tab-btn .nav-tabs {
		display: none;
	}

	.features-block.theme-three .inner-box {
		padding: 30px 15px;
	}

	.how-it-work-wrapper.three-step .item {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 15px 0px 0px;
	}

	.page-header.dc-four {
		padding-bottom: 120px;
	}

	.companies-logo.grid-view .item {
		flex: 0 0 33.3334%;
		max-width: 33.3334%;
	}

	.dc-signin.theme-two .signin-wrapper {
		max-width: 420px;
		flex-wrap: wrap;
	}

	.dc-signin.theme-two .intro-box {
		padding: 50px 30px 80px;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.dc-signin.theme-two .form-box {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 30px;
	}

	.dc-signin.theme-two .st-tab-btn {
		top: auto;
		right: 0;
		left: 0;
		bottom: 0;
	}

	.dc-signin.theme-two .st-tab-btn .nav-tabs {
		padding-top: 0;
	}

	.dc-signin.theme-two .st-tab-btn .nav-tabs {
		border: none;
		display: flex !important;
		padding-top: 0;
		flex-wrap: wrap;
		text-align: center;
		justify-content: center;
		background: none;
		box-shadow: none;
	}

	.dc-signin.theme-two .st-tab-btn .nav-tabs .nav-item {
		width: auto;
	}

	.dc-signin.theme-two .st-tab-btn .nav-tabs .nav-item .nav-link,
	.dc-signin.theme-two .st-tab-btn .nav-tabs .nav-link {
		border-radius: 6px 6px 0px 0px;
	}

	.dc-signin.theme-two .select-filter {
		display: none;
	}

	.page-header.dc-six::before {
		width: 140%;
		left: -30%;
	}

	.page-header.dc-seven::before {
		left: -70%;
		height: 550px;
		width: 550px;
	}

	.enquiry-form-box {
		padding: 30px 0px 0px;
	}

	.enquiry-form-box .form-wrapper {
		width: 100%;
		max-width: 100%;
	}

	.client-testimonial.theme-four .slick-arrow {
		top: 100%;
		left: 38%;
		transform: none;
	}

	.client-testimonial.theme-four .slick-arrow.slick-next {
		right: 38%;
		left: auto;
	}
}

@media only screen and (max-width:575px) {

	.features-section .inner-row .col-lg-6:nth-child(2),
	.features-section .inner-row .col-lg-6:nth-child(3) {
		margin-top: 0;
	}

	.btn-wrapper .btn:first-child::after {
		display: table;
		clear: both;
		content: "";
	}

	.video-wrapper iframe {
		max-height: 300px;
		width: 100%;
	}

	.dc-two.about-section .video-wrapper::before {
		display: none;
	}

	.dc-two.about-section .video-player::before,
	.dc-two.about-section .video-player::after {
		display: none;
	}

	.client-testimonial.theme-one .slick-slide {
		padding: 35px 15px 15px 15px;
	}

	.client-testimonial.theme-one .testimonial-text {
		padding: 50px 20px 30px 20px;
	}

	.client-testimonial.theme-one blockquote::before {
		top: -25px;
		left: 20px;
	}

	.client-testimonial.theme-one .testimonial-text::before,
	.client-testimonial.theme-one .testimonial-text::after {
		left: 50px;
	}

	.btn-wrapper>.btn {
		display: table;
	}

	.text-center .btn-wrapper>.btn,
	.text-center.btn-wrapper>.btn {
		margin: 0px auto;
	}

	.btn+.btn {
		margin-left: 0;
		margin-top: 15px;
	}

	.text-center .btn-wrapper>.btn+.btn,
	.text-center.btn-wrapper>.btn+.btn {
		margin: 15px auto 0px;
	}

	.footer-theme-one {
		background-position: top left -90px !important;
	}

	.subscribe-form-wrapper .form-control {
		padding: 0px 15px 0px 15px;
		height: 48px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
	}

	.subscribe-form-wrapper .btn {
		position: static;
	}

	.client-testimonial.theme-three .testimonial-text {
		padding: 90px 0px 0px 0px;
	}

	.client-testimonial.theme-three .testimonial-text::before {
		top: 0;
	}

	.client-testimonial.theme-three .slick-dots {
		padding: 0;
	}

	.circle-background-animation {
		overflow: hidden;
	}

	.circle-background-animation::before {
		display: none;
	}

	.features-block.theme-three {
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}

	.companies-logo.grid-view .item {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.signin-wrapper {
		padding: 0px 15px 30px;
		max-width: 100%;
		margin: 30px 15px;
	}

	.dc-signin.theme-two .signin-wrapper {
		max-width: 100%;
		margin: 30px 15px;
	}

	.dc-signin.theme-two .intro-box {
		padding: 50px 15px 80px;
	}

	.dc-signin.theme-two .form-box {
		padding: 30px 15px;
	}

	.seo-rocket {
		display: none;
	}

	.features-block.theme-three h4 br {
		display: none;
	}

	.page-header.dc-seven::before {
		display: none;
	}

	.timeline .timeline-item:nth-child(2n) .timeline-wrapper {
		padding-top: 100px;
		padding-bottom: 0;
	}

	.timeline .timeline-item:nth-child(2n) .step-number {
		top: 30px;
		bottom: auto;
	}

	.timeline .timeline-item:nth-child(2n) .content {
		padding: 80px 0 0 0;
	}

	.client-testimonial.theme-four .slick-arrow {
		top: 100%;
		left: 35%;
		transform: none;
	}

	.client-testimonial.theme-four .slick-arrow.slick-next {
		right: 35%;
		left: auto;
	}

	.client-testimonial.theme-four .client-info-wrapper::before {
		display: none;
	}
}

@media only screen and (max-width:419px) {
	.video-wrapper iframe {
		max-height: 260px;
		width: 100%;
	}

	.countdown-timer ul li {
		font-size: 11px;
	}

	.page-header.dc-four {
		padding-bottom: 80px;
	}

	ul.two-col li {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
	}

	ul.three-col li {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
	}

	.social-media-links>h3 {
		flex: 0 0 100%;
		margin: 0 0 10px;
	}

	.social-media-links ul {
		flex: 0 0 100%;
	}

	.page-header.dc-six::before {
		width: 155%;
		left: -40%;
		height: 110%;
	}

	.enquiry-form-box .form-wrapper {
		padding: 30px 15px;
	}

	.enquiry-form-box .form-wrapper .form-header h4 {
		font-size: 24px;
	}

	.features-block.theme-five .inner-box {
		display: table;
	}

	.features-block.theme-five .icon {
		margin: 0px 0px 30px 0px;
		text-align: left;
		display: block;
	}

	.client-testimonial.theme-four .slick-arrow {
		top: 100%;
		left: 30%;
		transform: none;
	}

	.client-testimonial.theme-four .slick-arrow.slick-next {
		right: 30%;
		left: auto;
	}

	.playstore-widget.stack-list ul {
		flex: 0 0 100%;
		padding: 0 0px 15px 0;
	}

	.playstore-widget.stack-list .qr-code-block {
		flex: 0 0 100%;
		width: 100%;
		text-align: center;
	}
}

/**--------------------- pricing plan new --------------------**/
section {
	color: #7a90ff;
	padding: 2em 0;
	min-height: 100%;
	position: relative;
	-webkit-font-smoothing: antialiased;
	z-index: 10;
}

.pricing {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
}

.pricing-item {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: stretch;
	align-items: stretch;
	text-align: center;
	-webkit-flex: 0 1 330px;
	flex: 0 1 330px;
}

.pricing-action {
	color: inherit;
	border: none;
	background: none;
	cursor: pointer;
}

.pricing-action:focus {
	outline: none;
}

.pricing-feature-list {
	text-align: left;
}

.pricing-palden .pricing-item {
	background: #fff;
	box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
	border-radius: 20px 20px 10px 10px;
	margin: 1em;
}

@media screen and (min-width: 66.25em) {
	.pricing-palden .pricing-item {
		margin: 60px 0px 20px -0.5em;
	}

	.pricing-palden .pricing__item--featured {
		margin: 0;
		z-index: 10;
		box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
	}
}

.pricing-palden .pricing-deco-img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
}

.pricing-palden .pricing-title {
	color: #fff;
}

.pricing-palden .deco-layer {
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.pricing-palden .pricing-item:hover .deco-layer--1 {
	-webkit-transform: translate3d(15px, 0, 0);
	transform: translate3d(15px, 0, 0);
}

.pricing-palden .pricing-item:hover .deco-layer--2 {
	-webkit-transform: translate3d(-15px, 0, 0);
	transform: translate3d(-15px, 0, 0);
}

.pricing-palden .icon {
	font-size: 2.5em;
}

.pricing-palden .pricing-price {
	color: #fff;
}

.pricing-palden .pricing-period {
	font-size: 15px;
	color: #fff;
}

.pricing-palden .pricing__sentence {
	font-weight: bold;
	margin: 0 0 1em 0;
	padding: 0 0 0.5em;
}

.pricing-palden .pricing-feature-list {
	margin: 0;
	padding: 0px 0px 10px 0px;
	list-style: none;
	text-align: center;
	color: #000;
}

.pricing-palden .pricing-feature {
	padding: 12px 0;
	font-weight: 600;
}

.pricing-palden .pricing-item--featured .pricing-deco {
	padding: 5em 0 8.885em 0;
}

.flex {
	justify-content: center;
	align-items: center;
	text-align: center;
}

/**------------------------- pricing second new-------------------------- **/
.pricing-table {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: min(1600px, 100%);
	margin: auto;
}

.price {
	font-size: 60px;
	font-weight: 700;
	font-family: "Source Sans Pro", sans-serif;
	letter-spacing: -1px;
	color: var(--white-color);
	line-height: 0.8;
	padding-bottom: 20px
}

.price sup,
.price span {
	display: inline;
	font-size: 21px;
	/* line-height: inherit; */
	/* vertical-align: super; */
	font-weight: 900;
}
sup {
    top: 0;
	margin-right: 5px;
}

.price .month {
	margin: 0;
	letter-spacing: 0px;
	vertical-align: middle;
	font-size: 20px;
	display: inline-block;
	font-weight: 700;
}

.pricing-card:hover,
.pricing-card:hover .price {
	color: #000;
}

.pricing-card:hover,
.pricing-card:hover .pricing-feature-list li:before {
	color: #000;
}

.pricing-card:hover,
.pricing-card:hover .pricing-feature-list li {
	color: #000;
}

.pricing-card li {
	padding: 10px 0;
	font-weight: 600;
}

.order-btn {
	display: inline-block;
	margin-bottom: 40px;
	margin-top: 30px;
	border-radius: 8px;
	transition: .3s linear;
}

@media screen and (max-width:991px) {
	.pricing-card {
		flex: 50%;
	}
}

/**--------------------- new content box four ----------------------**/
.sec-icon {
	position: relative;
	display: inline-block;
	padding: 0;
	margin: 0 auto;
}

.sec-icon::before {
	content: "";
	position: absolute;
	height: 1px;
	left: -70px;
	margin-top: -5.5px;
	top: 60%;
	background: #333333;
	width: 50px;
}

.sec-icon::after {
	content: "";
	position: absolute;
	height: 1px;
	right: -70px;
	margin-top: -5.5px;
	top: 60%;
	background: #333;
	width: 50px;
}

.advertisers-service-sec {
	background-color: #f5f5f5;
}

.advertisers-service-sec .col {
	padding: 0 1em 1em 1em;
	text-align: center;
}

.advertisers-service-sec .service-card {
	width: 100%;
	height: 100%;
	padding: 2em 1.5em;
	border-radius: 5px;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	transition: 0.5s;
	position: relative;
	z-index: 2;
	overflow: hidden;
	background: #fff;
}

.advertisers-service-sec .service-card:hover {
	transform: scale(1.1);
}

.service-card h4 {
	font-size: 24px !important;
	margin: 0.5em 0;
}

.advertisers-service-sec .service-card:hover:after {
	top: 0%;
}

.advertisers-service-sec .service-card:hover h4 {
	color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
	color: #f0f0f0;
}

.advertisers-service-sec .icon-wrapper {
	background-color: #fff;
	position: relative;
	margin: auto;
	font-size: 60px;
	height: 1.5em;
	width: 1.5em;
	color: #ffffff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	transition: 0.5s;
	z-index: 3;
}

/**--------------------- new content box five ---------------------**/
.flexbox {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	flex-wrap: wrap;
}

.flexcard {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 30%;
	align-items: baseline;
	height: 300px;
	border-radius: 20px;
}

.flexcardNumber {
	width: 98%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	margin: 10px 0px;
	border-radius: 0px 50px 50px 0px;
	font-family: 'Jost', sans-serif;
	color: white;
	font-weight: 500;
	font-size: 20px;
	position: relative;
}

.flexcardTitle {
	font-size: 24px;
	font-weight: bolder;
}

.flexcard img {
	height: 64px;
}

.five-card-img {
	text-align: center;
	margin: 0px auto 0px;
}

.flexcardNumber:before {
	content: '';
	width: 34px;
	height: 90px;
	position: absolute;
	left: -33px;
	top: 0px;
	border-radius: 50px 0px 0px 50px;
	z-index: 0;
	background: -moz-linear-gradient(bottom, #95B7A2, #AED2BC);
}

.flexcardNumber:after {
	content: '';
	width: 25px;
	height: 40px;
	position: absolute;
	left: -25px;
	bottom: -40px;
	border-radius: 50px 0px 0px 50px;
	z-index: 0;
}

.flex-five {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 10px auto;
}

img.flexcardimgItem {
	width: 50%;
}

@media only screen and (max-width: 800px) {
	.flexcard {
		width: 35%;
		margin-top: 20px;
	}

	img.flexcardimgItem {
		width: 30%;
	}

	.flexcard {
		margin: 10px 30px;
	}

	.flexbox {
		justify-content: center;
	}
}

@media only screen and (max-width: 500px) {
	.flexcard {
		width: 70%;
	}
}

/**--------------------- testimonial new section css -------------------**/
.testimonial_sec {
	width: 100%;
	padding: 0px 0 0px 0;
}

.testimonial_sec h1 {
	text-align: center;
	font: normal 38px/42px "Luckiest Guy", cursive;
}

.testimonial_sec .testimonial_inner {
	width: 100%;
	padding-top: 35px;
}

.testimonial_sec .testimonial_inner .slick-list {
	padding: 0px;
}

/* .testimonial_sec .testimonial_inner .slick-list .slick-track {
	left: 160px;
  } */
.testimonial_sec .testimonial_inner .slick-list .slick-track .card {
	margin-right: 15px;
	border-radius: 10px;
}

.testimonial_sec .testimonial_inner .slick-list .slick-track .card .card-body strong {
	text-transform: uppercase;
	font-size: 15px;
}

.testimonial_sec .testimonial_inner .slick-list .slick-track .card .card-body span {
	text-transform: uppercase;
	color: #cdcdcd;
	font-size: 14px;
}

.testimonial_sec .testimonial_inner .slick-dots {
	bottom: -50px;
}

.testimonial_sec .testimonial_inner .slick-dots li {
	margin: 0 2px;
}

.testimonial_sec .testimonial_inner .slick-dots li button::before {
	font-size: 11px;
}

.testimonial_sec .all_btn {
	width: 100%;
	text-align: center;
	margin-top: 75px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
	/* .testimonial_sec .testimonial_inner .slick-list .slick-track {
	  left: 122px;
	} */
}

@media (min-width: 992px) and (max-width: 1199px) {
	.testimonial_sec .testimonial_inner .slick-list .slick-track .card .card-body .card-title {
		font-size: 14px;
	}

	/* .testimonial_sec .testimonial_inner .slick-list {
	  margin-left: 100px;
	} */
}

@media only screen and (max-width: 991px) {
	.testimonial_sec .testimonial_inner .slick-list .slick-track .card .card-body .card-title {
		font-size: 14px;
	}

	.testimonial_sec h1 {
		font-size: 30px;
		line-height: 34px;
	}

	.testimonial_sec .testimonial_inner .slick-list {
		padding: 0 0px;
	}

	/* .testimonial_sec .testimonial_inner .slick-list .slick-track {
	  left: 90px;
	} */
}

@media only screen and (max-width: 767px) {
	.testimonial_sec .testimonial_inner .slick-list .slick-track {
		left: 0;
	}
}

/**-------------------- new countdown section css -----------------------**/
.wrapper {
	max-width: 100%;
	max-height: 90vh;
	overflow: hidden;
	display: grid;
	place-content: center;
	text-align: center;
}

.wrapper h1 {
	font-size: 3em;
	margin: 70px 0 10px;
}

.time {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
}

.time div p:first-child {
	display: block;
	font-size: 48px;
	line-height: 1;
	font-weight: bold;
	font-family: 'Source Sans Pro', sans-serif;
}

.time>span {
	margin: 15px;
	font-size: 1.4em;
}

/**--------------------- tabbing new section css ---------------------**/
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

/**Fun begins*/
.tab_container {
	width: 100%;
	margin: 0 auto;
	padding-top: 40px;
	position: relative;
}

input,
section {
	clear: both;
	padding-top: 10px;
	display: none;
}

.label-head {
	border: 0px;
	background: none;
	color: var(--heading-text-color);
	font-weight: 700;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	padding: 15px;
	position: relative;
	display: block;
	float: left;
	width: 20%;
	padding: 16px 10px;
	color: #000;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	background: #f0f0f0;
}

#tab1:checked~#content1,
#tab2:checked~#content2,
#tab3:checked~#content3,
#tab4:checked~#content4,
#tab5:checked~#content5 {
	display: block;
	padding: 20px;
	background: #fff;
	color: #999;
	border-bottom: 2px solid #f0f0f0;
}

.tab_container .tab-content p,
.tab_container .tab-content h3 {
	-webkit-animation: fadeInScale 0.7s ease-in-out;
	-moz-animation: fadeInScale 0.7s ease-in-out;
	animation: fadeInScale 0.7s ease-in-out;
}

.tab_container .tab-content h3 {
	text-align: center;
}

label .fa {
	font-size: 1.3em;
	margin: 0 0.4em 0 0;
}

/**Media query*/
@media only screen and (max-width: 900px) {
	label span {
		display: none;
	}
}

/**Content Animation*/
@keyframes fadeInScale {
	0% {
		transform: scale(0.9);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.link {
	text-align: center;
}

/**-------------------- new accordion section ----------------------*/
.accordian-new {
	max-width: 100%;
	padding: 0.6rem;
	margin: 15px 0px;
	border-radius: 12px;
}

.accordian-new .accordian_toggler {
	font-size: 28px;
	font-weight: bolder;
}

.accordian_head {
	background-color: transparent;
	padding: 0.5rem;
	display: flex;
	font-weight: bold;
	align-items: center;
	gap: 0.7rem;
	cursor: pointer;
}

.new-acc-body p:not(:empty) {
	margin-bottom: 5px !important;
	font-size: 16px;
	line-height: 28px;
}

.accordian_toggler {
	align-self: flex-start;
	background-color: transparent;
	font-size: 1.8rem;
	transition: all 0.5s ease;
}

.accordian_toggler.active {
	rotate: 133deg;
}

.accordian_title {
	background-color: transparent;
	font-size: 20px;
	font-weight: bolder;
	margin-top: 5px;
}

.accordian_body {
	background: transparent;
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.5s ease;
}

.active_body {
	grid-template-rows: 1fr;
}

.accordian_description {
	background-color: transparent;
	margin-top: 0.7rem;
	padding-left: 2.3rem;
	font-size: 0.9rem;
	overflow: hidden;
	line-height: 1.2rem;
}

/**----------------- new counter section css -------------------**/
.number {
	font-size: 48px;
	font-weight: bold;
	color: var(--heading-text-color);
	font-family: 'Source Sans Pro', sans-serif;
	text-transform: uppercase;
	line-height: 1;
	padding: 10px 0px 20px 0px;
}

.num {
	font-size: 48px;
	line-height: 58px;
	font-weight: bold;
	padding: 10px 0px 20px 0px;
	color: var(--heading-text-color);
	font-family: 'Source Sans Pro', sans-serif;
	text-transform: uppercase;
	line-height: 1;
	text-align: center;
}

span.text {
	font-size: 17px;
	font-weight: bold;
	color: var(--heading-text-color);
	text-align: center;
	pad: 0.7em 0;
	font-weight: 600;
	line-height: 0;
}

/**------------------- new testimonial 2 ---------------------*/
.heading {
	text-align: center;
	color: #454343;
	font-size: 30px;
	font-weight: 700;
	position: relative;
	margin-bottom: 70px;
	text-transform: uppercase;
	z-index: 999;
}

.white-heading {
	color: #ffffff;
}

.heading:after {
	content: ' ';
	position: absolute;
	top: 100%;
	left: 50%;
	height: 40px;
	width: 180px;
	border-radius: 4px;
	transform: translateX(-50%);
	background: url(img/heading-line.html);
	background-repeat: no-repeat;
	background-position: center;
}

.white-heading:after {
	background: url("../../../i.ibb.co/d7tSD1R/heading-line-white.png");
	background-repeat: no-repeat;
	background-position: center;
}

.heading span {
	font-size: 18px;
	display: block;
	font-weight: 500;
}

.white-heading span {
	color: #ffffff;
}

/* .testimonial:after {
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    background: url(img/testimonial.bg-top.png);
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
} */
.testimonial {
	min-height: 375px;
	position: relative;
	background-color: #0000006a;
	/* background: url(../images/team-bg.jpg) no-repeat blue; */
	padding-top: 50px;
	padding-bottom: 50px;
	/* background-position: bottom;
	background-size: cover; */
}

#testimonial4 .carousel-inner:hover {
	cursor: -moz-grab;
	cursor: -webkit-grab;
}

#testimonial4 .carousel-inner:active {
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}

#testimonial4 .carousel-inner .item {
	overflow: hidden;
}

.testimonial4_indicators .carousel-indicators {
	left: 0;
	margin: 0;
	width: 100%;
	font-size: 0;
	height: 20px;
	bottom: 15px;
	padding: 0 5px;
	cursor: e-resize;
	overflow-x: auto;
	overflow-y: hidden;
	position: absolute;
	text-align: center;
	white-space: nowrap;
}

.testimonial4_indicators .carousel-indicators li {
	padding: 0;
	width: 14px;
	height: 14px;
	border: none;
	text-indent: 0;
	margin: 2px 3px;
	cursor: pointer;
	display: inline-block;
	background: #ffffff;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators .active {
	padding: 0;
	width: 14px;
	height: 14px;
	border: none;
	margin: 2px 3px;
	background-color: #9dd3af;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar {
	height: 3px;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb {
	background: #eeeeee;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.testimonial4_control_button .carousel-control {
	top: 175px;
	opacity: 1;
	width: 40px;
	bottom: auto;
	height: 40px;
	font-size: 10px;
	cursor: pointer;
	font-weight: 700;
	overflow: hidden;
	line-height: 38px;
	text-shadow: none;
	text-align: center;
	position: absolute;
	background: transparent;
	border: 2px solid #ffffff;
	text-transform: uppercase;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
	transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
}

.testimonial4_control_button .carousel-control.left {
	left: 7%;
	top: 50%;
	right: auto;
}

.testimonial4_control_button .carousel-control.right {
	right: 7%;
	top: 50%;
	left: auto;
}

.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover {
	color: #000;
	background: #fff;
	border: 2px solid #fff;
}

.testimonial4_header {
	top: 0;
	left: 0;
	bottom: 0;
	width: 550px;
	display: block;
	margin: 30px auto;
	text-align: center;
	position: relative;
}

.testimonial4_header h4 {
	font-size: 30px;
	font-weight: 600;
	position: relative;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.testimonial4_slide {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 70%;
	margin: auto;
	padding: 20px;
	position: relative;
	text-align: center;
}

.testimonial4_slide img {
	top: 0;
	left: 0;
	right: 0;
	width: 136px;
	height: 136px;
	margin: auto;
	display: block;
	font-size: 18px;
	line-height: 46px;
	text-align: center;
	position: relative;
	border-radius: 50%;
	box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
	-moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
	-o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
	-webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}

.testimonial4_slide p {
	font-size: 20px;
	line-height: 1.4;
	margin: 40px 0 20px 0;
}

.testimonial4_slide h4 {
	font-size: 22px;
}

.testimonial .carousel {
	margin-bottom: 50px;
}

.testimonial .carousel-control-next-icon,
.testimonial .carousel-control-prev-icon {
	width: 35px;
	height: 35px;
}


@media (max-width:1300px) {
	.menu-fixed .logo-container {
		padding: 0px 0px 0px;
	}

	#master-head.menu-fixed {
		height: 88px;
		padding: 0px !important;
		margin: 0px !important;
	}

	.menu-primary {
		height: 88px;
	}

	.menu-primary .sub-menu {
		top: 86%;
	}

	.menu-primary .sub-menu>li.menu-item {
		padding: 6px 15px;
	}
}

.inner-page-header {
	top: 100px;
}

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

.rooftrlogo {
	font-family: 'Source Sans Pro', sans-serif;
	font-style: normal;
	font-weight: 400;
}

/* Toaster Container */
.toaster-container {
	position: fixed;
	top: 320px;
	right: 420px;
	z-index: 1050;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Toaster */
.toaster {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	border-radius: 8px;
	font-size: 15px;
	color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	animation: slide-in 0.5s ease, fade-out 0.5s ease 4.5s forwards;
}

/* Success Toaster */
.toaster.success {
	background-color: #34c759;
	/* Green for success */
}

/* Failure Toaster */
.toaster.failure {
	background-color: #fd632f;
	/* Red for failure */
}

/* Icon Styling */
.toaster i {
	margin-right: 10px;
	font-size: 1.2rem;
}

/* Animations */
@keyframes slide-in {
	from {
		opacity: 0;
		transform: translateX(100%);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fade-out {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translateX(100%);
	}
}


.st-tab-btn {
	display: flex;
	justify-content: center;
	/* Centers the nav items */
	align-items: center;
	width: 100%;
}

.nav-tabs {
	display: flex;
	justify-content: center;
	/* Centers the nav items */
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.nav-item {
	margin: 0 10px;
	/* Optional: adds space between nav items */
}

.step-number span {
	font-style: normal;
}

.colorblack {
	color: black !important;
}

.colorblue {
	color: #1313D7 !important;
}

/* =================================== */
.search-bar-container {
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 1rem;
	min-width: fit-content;
	margin: auto;
}

.btn-togg {
	border: none;
	background-color: white;
	border-radius: 8px;
	font-weight: 400;
}

.btn-togg.active {
	background-color: rgb(232, 232, 255);
	color: #3c3cff;
}

.btn-togg3 {
	border: none;
	background-color: transparent;
	border-radius: 8px;
}

.btn-togg3.active {
	background-color: rgb(232, 232, 255);
	color: #3c3cff;
	font-weight: 600;
}

.form-control,
.form-select {
	border-radius: 10px;
	border: 1px solid #ddd;
}

.search-btn {
	background-color: #3c3cff;
	color: white;
	border-radius: 10px;
	border: none;
}

.filter-btn {
	background-color: #f5f5f5;
	border-radius: 10px;
	border: 1px solid #ddd;
	padding: 0.5rem 1rem;
	margin-right: 0.5rem;
}

.filter-btn.active {
	background-color: #e8e8ff;
	color: #3c3cff;
	font-weight: 600;
}



.form-icon-input {
	position: relative;
}

.form-icon-input img {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #999;
	font-size: 2rem;
}

.form-icon-input input {
    padding-left: 154px;
    font-size: 15px;
    font-weight: 300;
}

.search-bar-container button,
.search-bar-container select {
	height: 4.5rem;
}

.slick-dots li button {
	border-radius: 20%;
	width: 10px;
	height: 10px;
	margin: 0px;
}

.slick-dots li {
	width: fit-content;
	margin: 2px;
}

.property-card {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	background: #fff;
	max-height: 257px;
    height: 257px;
}

.card-front,
.card-back {
	padding: 20px;
	transition: all 0.4s ease-in-out;
}

.card-back {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 2;
}

.property-card:hover .card-back {
	top: 0;
}

.property-card:hover .card-front {
	opacity: 0;
}

.badge-icon {
	height: 60px;
	width: 60px;
	object-fit: cover;
}

.agent-img {
	height: 60px;
	width: 60px;
	border-radius: 10%;
	object-fit: cover;
}

.price-box {
	background: #f9f9ff;
	padding: 5px 10px;
	margin-bottom: 10px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0%;

}

.propertyList-p {
	font-weight: 400;
	font-size: 14px;
	line-height: 35px;
	letter-spacing: 0%;
	text-align: center;
	vertical-align: middle;

}

.btn-custom {
	padding: 3px 12px;
	font-size: 14px;
	border-radius: 5px;
	cursor: pointer;
	border: none;
	background-color: #1313D7;
	text-transform: Capitalize;
	color: white;
}


.bg-lightblue {
	background-color: #F4F4FF;
}


.location-card {
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 15px;
	/* background: #fff; */
	padding: 5px;
	border-radius: 5px;
	transition: box-shadow 0.3s ease;
}

.location-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);

}

.location-name,
.location-props {
	transition: color 0.3s ease;
}

.location-name {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0%;
	vertical-align: middle;

}

.location-props {
	font-weight: 400;
	font-size: 13px;
	line-height: 24.7px;
	letter-spacing: 0%;
	vertical-align: middle;

}

.location-card:hover .location-name {
	color: #0d6efd;
	/* Bootstrap primary color */
}

.location-card:hover .location-props {
	color: #6c757d;
	/* Bootstrap secondary color */
}

.location-img {
	width: 80px;
	height: 80px;
	border-radius: 5px;
	object-fit: cover;
}

.location-name {
	font-weight: 600;
	margin-bottom: 3px;
}

.location-props {
	font-size: 14px;
	color: #555;
}

.locations-wrapper {
	background-color: #f8f9fa;
	padding: 40px 0;
}



.nav-link {
	font-weight: 500;
	color: #000 !important;
	padding: 0.5rem 1rem;
}

.nav-link:hover {
	text-decoration: none;
	cursor: pointer;
	color: blue !important;
}

.dropdown-menu {
	border-radius: 8px;
	padding: 10px 0;
	min-width: 180px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.dropdown-item {
	font-size: 14px;
	padding: 8px 16px;
}

.dropdown-item:hover {
	background-color: #f0f0f0;
}

.search-wrapper button {
	background-color: #f8f9fa;
	padding: 5px 6px;
}

.search-wrapper .btn-width-full {
	width: 100%;
	padding: 9px 0px;
	border: 1px solid #ddd;
}

.main-head-line {
	font-weight: 500;
	font-size: 46px;
	/* line-height: 60px; */
	letter-spacing: 0%;
	vertical-align: middle;

}

.btn-col-3 button,
.btn-col-3 select {
	border: none;
	height: fit-content;
}

.btn-col-3 button {
	font-size: 15px;
}

.counter-section.counter {
	font-weight: 600;
	font-size: 42px;
	line-height: 58.8px;
	letter-spacing: 0%;
	vertical-align: middle;
}

.Explore-Cities h3 {
	font-weight: 600;
	font-size: 32px;
	line-height: 36px;
	letter-spacing: 0%;
	vertical-align: middle;

}

.broker-card-count h5 {
	font-weight: 600;
	font-size: 32px;
	letter-spacing: 0%;
	vertical-align: middle;

}

.broker-card-count small {
	font-weight: 400;
	font-size: 16px;
	line-height: 24.7px;
	letter-spacing: 0%;
	vertical-align: middle;
}

.prop-card-name {
	/*font-family: Roboto;*/
	font-weight: 600;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 0%;
	vertical-align: middle;

}


/* =========search page second part=============== */

.map-container iframe {
	width: 100%;
	height: 200px;
	border: 0;
}

.map-container-search iframe {
	width: 100%;
	height: 100vh;
	border: 0;
}

.btn-view {
	text-decoration: none;
	color: #3f00d0;
	font-weight: 500;
}

.bg-blue {
	background-color: #1313D7;
	;
}

.property-card {
	border: 1px solid #ddd;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.cardpropertyright{
	padding: 0px 8px 11px 21px;
	position: relative;
}


.favorite-icon {
    position: absolute;
    top: 10px;
    /* right: 10px; */
	right: 40px;
    z-index: 2;
    cursor: pointer;
}

.favorite-icon i {
    font-size: 20px;
    color: #ccc;
    transition: color 0.3s;
}

.favorite-icon i:hover {
    color: #f75928; /* highlight on hover */
}

.property-image img {
	width: 100%;
	height: 257px;
	border-radius: 5px;
	object-fit: cover;
}

.brokerInfo-image img {
	width: 100%;
	height: 300px;
	border-radius: 5px;
	object-fit: cover;
}
.badge-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    z-index: 2;
}

.badge-custom {
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

.badge-rent {
    background: #000;
}

.badge-featured {
    background: #f2c744;
    color: #000;
}

.badge-seen {
    background: #444;
}

.price {
	font-size: 24px;
	font-weight: 500;
	color: #2f2fef;
	line-height: 36px;
}

.info-icons i {
	margin-right: 4px;
}

.property-tags a {
	font-size: 14px;
	margin-right: 8px;
	color: #2f2fef;
	text-decoration: none;
}

.visit-note {
	font-size: 14px;
	background-color: #f1f4f9;
	padding: 4px 10px;
	border-radius: 5px;
	margin-top: 10px;
}

.contact-buttons button {
	margin-right: 10px;
	margin-top: 0;
	font-size: 14px;
	font-weight: 500;
	padding: 3px 2px;
	border: none;
	align-items: center;
}

.small-btn-1 a {
	margin-right: 10px;
	margin-top: 0;
	font-size: 14px;
	font-weight: 500;
	padding: 5px 2px;
	border: 1px solid #2f2fef;
	align-items: center;
}

.contact-buttons i {
	font-size: 18px;
}

.btn-email {
	background-color: #f1f4f9;
}

.btn-call {
	background-color: #f1f4f9;
}

.btn-whatsapp {
	background-color: #d4f8da;
}

.view-detail {
	color: #2f2fef;
	font-weight: 500;
	text-decoration: none;
}

.gradient-blue {
	background-image: linear-gradient(to right, #c9e3ee, #ffffff);
}

.capitalize {
	text-transform: capitalize !important;
}

.bg-color-neel {
	background-color: #F4F6FF;
}




/* ============broker info================ */


.content {
	overflow: hidden;
	max-height: 120px;
	transition: max-height 0.5s ease;
	color: #555;
}

.content.expanded {
	max-height: fit-content;
}

.read-more {
	color: blue;
	cursor: pointer;
	font-weight: 500;
	margin-top: 8px;
	display: inline-block;
}

.icon-social i {
	font-size: 1.6rem;
	margin-right: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.icon-social i:hover {
	transform: scale(1.2);
}

.reviews-card {
	background-color: #fff;
	border-radius: 12px;
	padding: 24px;
	max-width: 755px;
}

.review {
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.review:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.review .stars i {
	color: #ffc107;
}

.avatar {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	object-fit: cover;
}



.filter-popup {
	position: absolute;
	top: 100%;
	left: -40%;
	width: 307px;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	max-width: 307px;
	z-index: 1000;
	display: none;
}

.filterPopup div h6 {
	text-align: left !important;
}

.option-btn {
	border: 1px solid #ccc;
	border-radius: 20px;
	padding: 4px 7px;
	margin: 4px;
	background: #fff;
	font-size: 14px;
	transition: all 0.3s;
}

.option-btn:hover {
	background-color: #e0f2f1;
	color: #4848e1;
	border-color:#4848e1;
}

.option-btn.active {
	background-color: #4848e1;
	color: white;
	border-color: #4848e1;
}

.filter-footer .btn {
	width: 42%;
    font-size: 13px;
    border-radius: 8px;
    font-weight: 500;
    padding: 4px 0;
    /* margin: 0; */
    line-height: 31px;
    box-sizing: border-box;
	background-color: #4848e1!important;
    min-height: auto;
	color:#fff;
}

.filter-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}

.position-relative {
	position: relative;
}

#typeFilterBtn {
	max-width: 100%;
	height: auto;
	min-height: 40px;
}

#typeFilterBtn {
	overflow-x: auto;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* Internet Explorer 10+ */
}

#typeFilterBtn::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari and Opera */
}


#typeFilterBtn::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 10px;
}


.filter-popup-type {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border-radius: 12px;
	padding: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	min-width: 340px;
	z-index: 1000;
	display: none;
}

.nav-tabs .nav-link {
	border: none;
	font-weight: 500;
	color: #444;
}

.nav-tabs .nav-link.active {
	color: #00695c;
	border-bottom: 2px solid #00695c;
	font-weight: 600;
}

.option-btn-bb {
	border: 1px solid #c2c2c2 !important;
	border-radius: 20px;
	padding: 6px 16px !important;
	margin: 4px;
	background: #fff;
	font-size: 14px;
	transition: all 0.3s;
}

.option-btn-bb:hover {
	background-color: #e0f2f1;
	color: #00695c;
}

.option-btn-bb.active {
	background-color: #00695c;
	color: white;
	border: 1px solid #00695c !important;
}

.filter-footer-type {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.filter-footer-type .btn {
	width: 42%;
    font-size: 13px;
    border-radius: 8px;
    font-weight: 500;
    padding: 4px 0;
    /* margin: 0; */
    line-height: 31px;
    box-sizing: border-box;
    min-height: auto;
}

#rangeAreaFilterPopup {
	min-width: 250px;
	white-space: nowrap;
}

#rangePriceFilterPopup.rangepopup {
	position: absolute;
	top: 100%;
	left: 10%;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	max-width: 300px;
	z-index: 1000;
	display: none;
}

#paymentSlider {
	position: relative;
	z-index: 2;
	display: block !important;
	background: transparent;
	width: 100%;
}

.slider-container {
	position: relative;
	width: 100%;
}

.slider-value {
	position: absolute;
	top: -10px;
	/* Move above slider thumb */
	transform: translateX(-50%);
	white-space: nowrap;
	min-width: 40px;
	text-align: center;
}

input[type=range] {
	width: 100%;
	height: 8px;
	border-radius: 5px;
	background: linear-gradient(to right, #198754 0%, #e0e0e0 0%) !important;
	outline: none;
}

input[type=range]::-webkit-slider-thumb {
	appearance: none;
	background-color: white;
	border: 2px solid #198754;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	cursor: pointer;
	margin-top: -10px;
}

input[type=range]::-moz-range-thumb {
	background-color: white;
	border: 2px solid #198754;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	cursor: pointer;
}

button:focus {
	outline: none !important;
	box-shadow: none !important;
}

.Explore-Apartment h3 {
	font-weight: 600;
	font-size: 32px;
	line-height: 36px;
	letter-spacing: 0%;
	vertical-align: middle;

}

.Explore-Apartment p {
	font-weight: 400;
	font-size: 16px;
	line-height: 26.6px;
	letter-spacing: 0%;
	vertical-align: middle;


}

.text h5 {
	font-weight: 600;
	font-size: 16px;
	line-height: 18px;
	letter-spacing: 0%;
	vertical-align: middle;

}

.text p {
	font-weight: 400;
	font-size: 13px;
	line-height: 24.7px;
	letter-spacing: 0%;
	vertical-align: middle;

}



/* ====================== */
.propertypagemain-slider img {
	width: 607px;
	height: 416px;
	object-fit: cover;
	border-radius: 5.17px;
	padding: 14.64px 9.36px 14.64px;


}

.propertypagemain-slider .slick-dots {
	position: absolute;
	bottom: 10px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.propertypagemain-slider .slick-dots li button {
	border: none;
	background-color: white;
	border-radius: 50%;
}

.prop-page-rate p {
	font-weight: 600;
	font-size: 24px;
	line-height: 58.8px;
	letter-spacing: 0%;
	vertical-align: middle;

}

.prop-page-rate button {
	width: 37px;
	height: 39px;
	border: none;
	border-radius: 41px;
}

.prop-page-rate img {
	width: 24px;
	height: 24px;
	top: 8px;
	left: 7px;

}

.prop-page-add h5 {
	font-weight: 500;
	font-size: 24px;
	line-height: 30px;
	letter-spacing: 0%;
	vertical-align: middle;

}

.prop-page-add p {
	font-weight: 400;
	font-size: 16px;
	line-height: 26.6px;
	letter-spacing: 0%;
	vertical-align: middle;
	color: #727272;

}

.upload-card {
	border: 1px solid #e0e0e0;
	padding: 20px;
	background: #fff;
	margin: auto;
}

.upload-card h6 {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0%;
	text-align: center;

}

.file-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 0;
	position: relative;
}

.pageprop-card-header-border-bottom {
	justify-content: space-between;
	padding: 6px 0;
	position: relative;
}

.file-item::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, #D9D9D9 51.44%, rgba(217, 217, 217, 0) 100%);
}

.pageprop-card-header-border-bottom::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, #D9D9D9 51.44%, rgba(217, 217, 217, 0) 100%);
}

.file-info {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-grow: 1;
}

.file-info i {
	font-size: 1.4rem;
}

.file-name {
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	letter-spacing: 0%;
	text-align: center;

}

.file-size {
	font-weight: 400;
	font-size: 10px;
	line-height: 20px;
	letter-spacing: 0%;

}

.check-icon {
	color: #28a745;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.icon-container {
	background-color: #f2f2f2;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
}

.prop-page-add a {
	font-weight: 300;
	font-style: Light;
	font-size: 14px;
	line-height: 30px;
}

.agent-card {
	border: 1px solid #e0e0e0;
	background: #fff;
	margin: auto;
}

.agent-list {
	border: 1px solid #e0e0e0;
	overflow: hidden;
	margin-bottom: 16px;
}

.agent-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
}

.agent-item+.agent-item {
	border-top: 1px solid #e0e0e0;
}

.agent-info {
	display: flex;
	align-items: center;
}

.agent-img {
	width: 53px;
	height: 53px;
	border-radius: 50%;
	object-fit: cover;
}

.agent-name {
	font-size: 16px;
	font-weight: 600;

}

.agent-company {
	color: gray;
	/*font-family: Roboto;*/
	font-weight: 300;
	font-size: 14px;
	line-height: 28px;

}

.broker-info-add {
	font-weight: 300;
	font-style: Light;
	font-size: 14px;
	line-height: 30px;

}

.enquiry-btn {
	background-color: #2f2fff;
	color: #fff;
	font-weight: 500;
	width: 100%;
	border-radius: 6px;
	padding: 10px;
	border: none;
	 text-transform: uppercase;

}

.section-title {
	color:#1313d7;
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0%;
	vertical-align: middle;

}


.map-container-propertypage iframe {
	width: 100%;
	height: 341px;
	border: 0;
}

/* ======================calendar==================== */
.tab-btn {
	flex: 1;
	text-align: center;
	border: none;
	background: none;
	padding: 12px 0;
	font-weight: 500;
	cursor: pointer;
	color: #2f2fff;
}

.tab-btn.active {
	background-color: #2f2fff;
	color: #fff;
	border-radius: 6px 6px 0 0;
	text-transform: uppercase;

}

.tour-type-btn {
	flex: 1;
	border: 1px solid #2f2fff;
	background: none;
	color: #000000;
	font-weight: 500;
	padding: 10px 0px;
}

.tour-type-btn.active {
	background-color: white;
	color: #2f2fff;
}

.submit-btn {
	background-color: #2f2fff;
	color: #fff;
	width: 100%;
	border: none;
	padding: 10px;
	border-radius: 4px;
	font-weight: 500;
}

.submit-btn-blue {
	background-color: #286ea7;
	color: #fff;
	width: 100%;
	border: none;
	padding: 10px;
	border-radius: 4px;
	font-weight: 500;
}

.terms-link {
	color: #2f2fff;
	text-decoration: none;
}

.page-prop-calendar input {
	display: block;
	padding: 0px;
	border-color: grey;

}

.visit-prop-page.dropdown-toggle::after {
	display: none !important;

}

.additionalDetail-propertypage h6 {
	/*font-family: Roboto;*/
	font-weight: 500;
	font-size: 24px;
	line-height: 20.97px;
	letter-spacing: 0%;
	text-transform: capitalize;

}

.simprop-may-like h6 {
	/*font-family: Roboto;*/
	font-weight: 500;
	font-size: 24px;
	line-height: 20.97px;
	letter-spacing: 0%;
	text-transform: capitalize;

}

.details-label {
	/*font-family: Roboto;*/
	font-weight: 600;
	font-size: 16.38px;
	line-height: 27.31px;

}

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

.details-row {
	border-bottom: 1px solid #e0e0e0;
	padding: 10px 8px;
}

.details-box {
	background-color: #f0f6ff;
	border: 1px solid #2f2fff;
	border-radius: 4px;
	padding: 20px;
}

.broker-info-legal {
	/*font-family: Roboto;*/
	font-weight: 500 !important;
	font-style: Medium;
	color: #000 !important;
	font-size: 16px !important;
	line-height: 28px !important;
}

.broker-info-legal span {
	/*font-family: Roboto;*/
	font-weight: 300;
	font-style: Light;
	font-size: 16px;
	line-height: 28px;
}

.broker-info-legal button {
	border: 1px solid #2f2fef;
	color: #2f2fef;
	/*font-family: Roboto;*/
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	line-height: 28px;
	width: 15rem;
	background-color: white;
}

.broker-info-legal button:first-child {
	border: 1px solid #2f2fef;
	color: white;
	background-color: #2f2fef;
}

.contact-card h5 {
	font-weight: 400;
	font-style: Regular;
	font-size: 20px;
	line-height: 30px;
}

.contact-card p {
	/*font-family: Roboto;*/
	font-weight: 300;
	font-size: 16px;
	line-height: 28px;

}

.contact-row p:first-child {
	font-weight: 500;
	font-size: 16px;
	line-height: 39px;
}

.contact-row p {
	/*font-family: Roboto;*/
	font-weight: 300;
	font-size: 16px;
	line-height: 39px;
	margin-bottom: 0px;
}
/* =======suggestion box========== */
.suggestion-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.suggestion-box div {
    padding: 8px 12px;
    cursor: pointer;
}
.suggestion-box div:hover {
    background-color: #F4F6FF;
}

.suggestions-list {
    background-color: #fff;
    border-radius: 0px 0px 4px 4px;
    box-shadow: 0 8px 8px 0 rgba(0, 106, 194, .2);
    /* margin-top: -1px; */
    position: absolute;
    z-index: 9;
    max-height: 200px;
    overflow-y: auto;
    width: 95%;
    top: 43px;
    padding-left: 10px;
    padding-right: 16px;

}
.selectedItems{
    position: absolute;
	left: 0px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
}

.suggestion-item {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.suggestion-item:hover {
    background: #f0f0f0;
}

.home-badge {
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #000;
    color: black;
}

.selected-item {
    display: inline-block;
    padding: 5px;
    background: #304bec;
    color:#fff;
    position: relative;
    margin: 5px;
    border-radius: 5px;
    max-width: 147px;  /* Adjust width as needed */
    white-space: nowrap;
    overflow: hidden;
    
}


.more-items {
    display: inline-block;
    padding: 5px;
    background: #304bec;
    color:#fff;
    position: relative;
    margin: 5px;
    border-radius: 5px;
    max-width: 120px;  /* Adjust width as needed */
    white-space: nowrap;
    overflow: hidden;
    
}

.selected-text {
    flex: 1;
    min-width: 0; /* This ensures ellipsis works properly */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.remove-item {
    position: absolute;
    top: -6px;
    right: 2px;
    cursor: pointer;
    font-weight: 500;
    color: #fff;


}

.area-text {
	font-size: 15px;
}
.sticky-tour-box {
  position: sticky;
  top: 80px; /* adjust as needed for navbar height */
  z-index: 10;
}
.shortlist-btn .heart-icon {
    font-size: 24px;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
}
.shortlist-btn:hover .heart-icon {
    transform: scale(1.2);
    color: #ff4081;
}

/* Ensure the wrapper div is the positioning context */
.share-wrapper {
  position: relative;
}

/* Share box pops just below the icon */
.share-box {
    position: absolute;
    top: 100%;
    right: -4px;
    margin-top: 6px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    width: 290px;
    padding: 11px 14px;
}

/* Style each icon inside share box */
.share-box a {
    text-decoration: none;
    margin-right: 40px;
    color: #333;
    transition: transform 0.2s ease, color 0.2s ease;
    font-size: 20px;
}

.share-box a:hover {
  transform: scale(1.1);
  color: #000;
}
.share-box .input-group {
  width: 95%!important;
}
.share-box .form-control {
  font-size: 13px!important;
}

.copy-btn {
  font-size: 10px!important;
  padding: 3px 10px !important;
}

.amenity-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.amenity-row {
    gap:0.75rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.amenity-row.hidden-row {
    display: none;
}
#seeMoreBtn {
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
}

.amenity-item i {
	color: #848484;
}


.modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%;
	height: -webkit-fill-available;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
	position: relative;
    /* background: #fff; */
    /* padding: 40px; */
    max-width: 393px;
    width: 100%;
    border-radius: 8px;
    animation: fadeIn 0.3s ease-in-out;
}
#amenitiesModal .modal-dialog-scrollable .modal-content {
    max-width: 761px;
   
}
.close-btn {
    position: absolute;
    top: 135px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes slideIn {
    from {transform: translateY(-20px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.passwordi {
	position: relative;
	display: flex;
}

.passwordi input {
	padding-right: 40px; /* Add space for the icon */
}
.modal-content .form-control {
    width: 100% !important;
}

span.input-group-addon {
   background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.5);
    color: #6c757d;
    padding: 14px 8px 5px 0;
    position: absolute;
    right: 29px;
    top: 46%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    z-index: 2;
}
.input-group-addon {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0 10px;
    background-color: transparent;
    border: none;
}

#registerModal .close-btn {
    position: absolute;
    top: 75px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}


.date-selector-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 19px 0;
}

.date-container {
	display: flex;
	gap: 12px;
	overflow: hidden;
	width: 249px;
}

.date-card {
  flex: 0 0 72px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  font-family: sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

.date-card.selected {
  border: 2px solid #3f51f5;
  color: #3f51f5;
  font-weight: bold;
  box-shadow: 0 0 5px rgba(63, 81, 245, 0.3);
}

.date-card .day {
  font-size: 12px;
  color: #555;
}

.date-card .date {
  font-size: 20px;
}

.date-card .month {
  font-size: 12px;
  color: #555;
}

.nav-btn {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 24px;
  height: 30px;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile-dropdown .profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.profile-dropdown .username {
    font-weight: 500;
    font-size: 14px;
}
.profile-dropdown .dropdown-toggle {
    text-decoration: none;
    color: #333;
    padding: 6px 12px;
}
.profile-dropdown .dropdown-menu {
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 14px;
}
.profile-dropdown .dropdown-item i {
    width: 18px;
    text-align: center;
}
@media (max-width: 768px) {
    .profile-dropdown .username {
        display: none;
    }
}
.profile-dropdown .dropdown-toggle::after {
    display: none !important;
}
.custom-checkbox .checkmark
 {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    vertical-align: middle;
    margin-right: 8px;
    box-sizing: border-box;
}
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    border-color: #2a1fbd;
}
.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #2a1fbc; /* your required color */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Optional: Cursor pointer */
.custom-checkbox {
    cursor: pointer;
    user-select: none;
}
.form-group input[type="checkbox"]:checked {
    color: var(--heading-text-color);
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.form-group input[type="checkbox"] {
    position: relative;
    width: 22px;
    height: 22px;
    color: var(--heading-text-color);
    border: 1px solid #ced4da;
    border-radius: 4px;
    appearance: none;
    outline: 0;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    top: 4px;
    margin-right: 5px;
}

.myactivity-row {
    display: flex;
    gap: 22px;
    margin-left: 38px;
	
}
.myactivity-row .features-block {
	position: relative;
	z-index: 1;
	margin-bottom: 44px;
	width: 304px !important;
	gap: 10px;
	max-height: 379px;
}
	
.property-list {
    height: 600px; /* or whatever fixed height */
    overflow-y: auto;
}
.sticky-myactivity{
	position: sticky;
	top: 80px; /* adjust as needed for navbar height */
	
}

.cardshortist {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.cardshortist:focus {
    outline: none;
    box-shadow: none;
}



#frequencyBtn {
	font-size: 1.5rem !important;
}

#locationInput,
#v-pills-tabContent {
	height: 44.1px !important;
}



.locations-wrapper {
  transition: all 0.5s ease; /* You can adjust duration and easing as needed */
}

#main-wrapper div .menu-fixed {
	position: fixed !important;
	margin: 0px !important;
	padding-bottom: 0px !important;
	top: 0 !important;
	width: 100% !important;
	z-index: 9999 !important;
	background-color: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#btnDropDown i{
	border: none;
	font-size: small;
}
.display-value{
	font-size: 16px!important;
	color: #666!important;
	vertical-align: middle!important;
	font-weight: 600!important;
}

#rangeFilterPopup, #rangePriceFilterPopup{
	    width: 300px;
}
#v-pills-home{
	display: flex;
    gap: 23px;
    padding: 0px 0px 0px 12px;
}
.btn-togg3{
	    width: 50px;
}
.input-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 1;
}

/* Move cursor and text padding to the right */
.searchKeyword {
    padding-left: 36px; /* enough space for the icon + some spacing */
}
.negotiable{
	font-size: 15px!important;
	color: #3b9627!important;
	margin-top: 5px!important;
}
.non-negotiable{
	font-size: 15px!important;
	color: rgb(255, 204, 0)!important;
	margin-top: 5px!important;
}
.customt-header h2:after {
    height: 6px;
    width: 60px;
    content: "";
    display: block;
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
}

.btn-group-box button {
	font-family: Roboto;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	line-height: 28px;
	background-color: white;

}

.checkSize img {
	object-fit: cover;
	border-radius: 5px;
}

/* Extra large devices (≥1200px)  */
@media (min-width: 1501px) {
	#propDisplayStatic {
		max-height: 68rem;
	}
}

/* Large devices (≥1200px and <1500px) */
@media (min-width: 1200px) and (max-width: 1500px) {
	#propDisplayStatic {
	max-height: 800px;
	}
}


/* Large devices (≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
	#propDisplayStatic {
		max-height: 64rem;
	}
}

/* Medium devices (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
	#propDisplayStatic {
		max-height: 40rem;
	}
}

/* Small devices (≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
	#propDisplayStatic {
		max-height: 30rem;
	}
}
/* Tooltip container */
.custom-tooltip {
     position: relative;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 72px;
}
.property-card {
    overflow: visible;
    cursor: pointer;
}
/* Tooltip text */
.custom-tooltip .tooltip-text {
    visibility: hidden;
    width: 123px;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 11px;
    border-radius: 5px;
    padding: 3px 2px;
    position: absolute;
    bottom: 29px;
    left: 12px;
    transform: translateX(-50%);
    /* opacity: 0; */
    transition: opacity 0.2s ease-in-out;
    white-space: nowrap;
}
/* Arrow */
.custom-tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%; /* at bottom of tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

/* Show tooltip on hover */
.custom-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}