/*
Theme Name: Novaride
Theme URI: https://themeforest.net/user/awaiken
Description: Car Rental WordPress Theme
Author: Awaiken
Author URI: https://awaiken.com/
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Themeforest Split Licence
License URI: https://themeforest.net/licenses/standard
Text Domain: novaride
Tags: one-column, two-columns, three-columns, four-columns, custom-colors, custom-menu, custom-logo, editor-style, featured-images, threaded-comments, style-variations, blog
*/

html, body{
	width: 100%;
	overflow-x: clip;
}

body{
	font-family: var(--e-global-typography-text-font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7em;
	color: var(--e-global-color-text);
}

img{
	max-width: 100%;
	height: auto;
}

p{
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

.elementor-widget-text-editor p:last-child{
	margin-bottom: 0;
}

a{
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

h1, h2, h3, h4, h5, h6{
	font-family: var(--e-global-typography-primary-font-family);
	font-weight: 700;
	margin: 0;
	color: var(--e-global-color-primary);
}

figure{
	margin: 0;
}

iframe{
	max-width: 100%;
}

.elementor-widget-button{
	line-height: 0;
}

.btn-default{
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--e-global-color-accent);
	color: var(--e-global-color-white);
	border-radius: 100px;
	padding: 16px 25px;
	margin-right: 48px;
	border: none;
	transition: all 0.5s ease-in-out;
	position: relative;
	z-index: 1;
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--e-global-color-accent);
	background-image: url('assets/images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 14px auto;
	transform: translate(48px, 0px);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	background-color: var(--e-global-color-primary);
	background-size: 14px auto;
	transform: translate(48px, 0px) rotate(45deg);
}

.elementor-widget-button .elementor-button-wrapper:has(:not(.elementor-button-icon)){
	padding-right: 0;
}

.elementor-widget-button .elementor-button-wrapper:has(.elementor-button-icon){
	padding-right: 48px;
}

.elementor-widget-button .elementor-button{
	position: relative;
}

.elementor-widget-button .elementor-button .elementor-button-icon{
	position: absolute;
	top: 50%;
	left: auto;
	right: 0;
	display: flex;
    align-items: center;
    justify-content: center;
	background: var(--e-global-color-accent);
    border-radius: 50%;
	width: 48px;
    height: 48px;
	transform: translate(48px, -50%);
	transition: all 0.4s ease-in-out;
}

.elementor-widget-button .elementor-button:hover .elementor-button-icon{
	background: var(--e-global-color-primary);	
	transform: translate(48px, -50%) rotate(45deg);
}

.btn-highlighted.elementor-widget-button .elementor-button .elementor-button-icon{
	background: var(--e-global-color-white);
}

.btn-highlighted.elementor-widget-button .elementor-button:hover .elementor-button-icon{
	background: var(--e-global-color-accent);
}

/*  Image Animation */

.image-anime .elementor-widget-container,
figure.image-anime{
	position: relative;
    overflow: hidden;
	border-radius: 30px;
}

.image-anime .elementor-widget-container:after,
figure.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime .elementor-widget-container:hover:after,
figure.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
	padding-right: 15px;
	padding-left: 15px;
}

#magic-cursor{
	position: absolute;
	width: 10px !important;
	height: 10px !important;
	pointer-events: none;
	z-index:1000000;
}

#ball{
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	background: var(--e-global-color-accent);
	width: 10px !important;
	height: 10px !important;
	border-radius: 50%;
	pointer-events: none;
	border: none;
	opacity: 1 !important;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000 !important;
	background-color: var(--e-global-color-accent);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--e-global-color-white) transparent var(--e-global-color-white);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.column-2 .elementor-icon-list-items{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.column-2 .elementor-icon-list-items .elementor-icon-list-item{
	width: calc(50% - 10px);
}

.sticky-column{
	position: sticky;
	top: 30px;
}

/* Ekit Icon Box Size */

.ekit-wid-con svg{
	width: inherit !important;
	height: inherit;
}

.elementor-widget-elementskit-icon-box .elementskit-info-box-icon>svg path{
	stroke: none !important;
}

.elementor-icon-box-wrapper .elementor-icon-box-icon{
	line-height: 0;
}

/* Theme Header css */

header.main-header{
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky{
	padding: 30px 0;
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	padding: 15px 0;
	border-radius: 0;
	border-bottom: 1px solid #16330010;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	border-bottom: 1px solid #16330010;
    transform: translateY(0);
	background: var(--e-global-color-white);
}

.navbar{
	padding: 0;
}

.navbar-brand{
	padding: 0;
}

.navbar-brand h1,
.navbar-brand h2{
	font-family: var(--e-global-typography-primary-font-family);
	font-weight: 700;
	font-size: 36px;
	color: var(--e-global-color-primary);
}	

.navbar-brand span{
	display: block;
	font-size: 14px;
	color: var(--e-global-color-text);
	line-height: 1.2em;
}

.navbar-brand:hover{
	color: var(--e-global-color-accent);
}

.main-menu{
	font-family: var(--e-global-typography-text-font-family);
	justify-content: flex-end;
}

.main-menu ul{
	align-items: center;
	flex-wrap: wrap;
}

.main-menu ul li{
	margin: 0 5px;
	position: relative;
}

.main-menu ul li:last-child{
	margin-right: 0;
}

.main-menu ul li.menu-item-has-children > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul ul li.menu-item-has-children > a{
	position: relative;
}

.main-menu ul ul li.menu-item-has-children > a:after{
	width: 18px;
	height: 18px;
	position: absolute;
	right: 15px;
	top: 6px;
	transform: rotate(-90deg);
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 600;
	padding: 14px 15px !important;
	color: var(--e-global-color-primary);
}

.main-menu ul li.highlighted-menu a{
	display: block;
	background: var(--e-global-color-accent);
	color: var(--e-global-color-primary);
	font-size: 16px;
	font-weight: 600;
	border: 2px solid var(--e-global-color-accent);
	padding: 10px 30px !important;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition: 0.2s transform ease-in-out;
}

.main-menu ul li.highlighted-menu a:after{
	background-color: var(--e-global-color-primary);
	border-radius: 30px;
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-100%, 0) rotate(10deg);
	transform-origin: top left;
	transition: 0.2s transform ease-out;
	will-change: transform;
	z-index: -1;
}

.main-menu ul li.highlighted-menu a:hover::after{
	transform: translate(0, 0);
}

.main-menu ul li.highlighted-menu a:hover{
	color: var(--e-global-color-accent);
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--e-global-color-accent);
}

.main-menu ul ul{
	visibility: hidden;
	padding: 5px 0;
	margin: 0;
	list-style: none;
	width: 220px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--e-global-color-accent);
	opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
}

.main-menu ul ul ul ul ul{
	display: none !important;
	opacity: 0;
	visibility: hidden;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a,
.main-menu ul ul li a:focus{
	color: var(--e-global-color-white);
	padding: 8px 20px !important;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
}

.main-menu ul ul li a:hover{
	color: var(--e-global-color-primary);
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

#menu-all-pages-flat > li a{
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.slicknav_btn,
.slicknav_nav .slicknav_item {
	cursor: pointer;
}

.slicknav_menu,
.slicknav_menu * {
	box-sizing: border-box;
}

.slicknav_btn{
	position: relative;
	display: block;
	float: right;
	padding: .438em .625em;
	line-height: 1.125em;
}

.slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar {
	margin-top: .188em;
}

.slicknav_menu .slicknav_menutxt{
	display: block;
	line-height: 1.188em;
	float: left;
	color: #fff;
	font-weight: 700;
	text-shadow: 0 1px 3px #000;
}

.slicknav_menu .slicknav_icon{
	float: left;
	width: 1.125em;
	height: .875em;
	margin: .188em 0 0 .438em;
}

.slicknav_menu .slicknav_icon:before{
	background: 0 0;
	width: 1.125em;
	height: .875em;
	display: block;
	content: "";
	position: absolute;
}

.slicknav_menu .slicknav_no-text {
	margin: 0;
}

.slicknav_menu .slicknav_icon-bar {
	display: block;
	width: 1.125em;
	height: .125em;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
	-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
	box-shadow: 0 1px 0 rgba(0, 0, 0, .25);
}

.slicknav_menu:after,
.slicknav_menu:before{
	content: " ";
	display: table;
}

.slicknav_menu:after {
	clear: both;
}

.slicknav_nav li,
.slicknav_nav ul {
	display: block;
}

.slicknav_nav .slicknav_arrow {
	font-size: .8em;
	margin: 0 0 0 .4em;
}

.slicknav_nav .slicknav_item a {
	display: inline;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
	display: block;
}

.slicknav_nav .slicknav_parent-link a {
	display: inline;
}

.slicknav_menu {
	font-size: 16px;
	background: #4c4c4c;
	padding: 5px;
}

.slicknav_nav,
.slicknav_nav ul {
	list-style: none;
	overflow: hidden;
	padding: 0;
}

.slicknav_menu .slicknav_icon-bar {
	background-color: #fff;
}

.slicknav_btn{
	margin: 5px 5px 6px;
	text-decoration: none;
	text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #222;
}

.slicknav_nav{
	clear: both;
	color: #fff;
	margin: 0;
	font-size: .875em;
}

.slicknav_nav ul{
	margin: 0 0 0 10px;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a{
	padding: 5px 10px;
	margin: 2px 5px;
}

.slicknav_nav .slicknav_row:hover{
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background: #ccc;
	color: #fff;
}

.slicknav_nav a {
	text-decoration: none;
	color: #fff;
}

.slicknav_nav a:hover {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background: #ccc;
	color: #222;
}

.slicknav_nav .slicknav_txtnode {
	margin-left: 15px;
}

.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
	padding: 0;
	margin: 0;
}

.slicknav_brand {
	float: left;
	color: #fff;
	font-size: 18px;
	line-height: 30px;
	padding: 7px 12px;
	height: 44px;
}

.responsive-menu{
	top: 100%;
	position: absolute;
	left: 0;
	right: 0;
}

.slicknav_btn{
	background: var(--e-global-color-accent);
	padding: 6px 0 0;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--e-global-color-white);
	margin: 4px auto !important;
	border-radius: 6px;
}

.slicknav_menu{
	padding: 0;
	background: var(--e-global-color-primary);
	max-height: 80vh;
	overflow: auto;
}

.slicknav_nav{
	padding-top: 5px;
	padding-bottom: 5px;
}

.slicknav_nav > ul{
	margin-left: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	font-size: 16px;
	font-weight: 500;
	padding: 10px 20px;
	color: var(--e-global-color-white);
	line-height: normal;
	margin: 0;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--e-global-color-primary);
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f105';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	margin-top: 2px;
	float: right;
	color: var(--e-global-color-white);
	transition: all 0.3s ease-in-out;
}

.slicknav_nav li.slicknav_open > a .slicknav_arrow:after{
	transform: rotate(-90deg);
}

/* Page Header Style */
.background-section{
    position: relative;
    width: 100%;
    max-width: 1820px;
    background: var(--e-global-color-primary);
    border-radius: 46px;
    margin: 0 auto;
}

.page-header{
	position: relative;
	background: var(--e-global-color-primary);
	background-size: cover;
	background-position: center center;
	border-radius: 46px;
	overflow: hidden;
	padding: 140px 0;
}

.page-header:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--e-global-color-primary);
	opacity: 40%;
	z-index: 1;
}

.page-header-box{
	position: relative;
	z-index: 1;
	text-align: center;
}

.page-header-box h1{
    font-size: 74px !important;
    margin-bottom: 20px;
	word-wrap: break-word;
	color: var(--e-global-color-white) !important;
}

.page-header-box .taxonomy-description{
	color: var(--e-global-color-white);
	margin-bottom: 20px;
}

.page-header-box ol{
	margin-bottom: 0;
}

.page-header-box ol li.breadcrumb-item{
	color: var(--e-global-color-white);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	color: var(--e-global-color-white);
}

.page-header-box ol li.breadcrumb-item a{
	color: inherit;
}

.page-header-box .trail-items,
.page-header-box .post-meta ul{
	list-style: none;
	font-size: 16px;
	margin-bottom: 0;
	margin: 0;
	padding: 0;
}

.page-header-box .trail-items .breadcrumb_separate{
	margin: 0 8px;
}

.page-header-box .trail-items li,
.page-header-box .post-meta ul li{
	color: var(--e-global-color-accent);
	display: inline-block;
	font-weight: 500;
	font-size: 20px;
}

.page-header-box .trail-items li:before,
.page-header-box .post-meta ul li:before{
	content: '/';
	margin: 0 8px;
	color: var(--e-global-color-white);
}

.page-header-box .trail-items li:first-child:before,
.page-header-box .post-meta ul li:first-child:before{
	display: none;
}

.page-header-box .trail-items li a,
.page-header-box .post-meta ul li a{
	color: var(--e-global-color-white);
	font-size: 20px;
	font-weight: 500;
	transition: all 0.3s ease-in-out;
}

.page-header-box .trail-items li a:hover,
.page-header-box .post-meta ul li a:hover{
	color: var(--e-global-color-accent);
}

/* Theme Footer css */

footer.footer{
	background: var(--e-global-color-primary) url('assets/images/footer-bg.svg') no-repeat;
    background-position: top center;
    background-size: 100% auto;
    padding: 70px 0;
    margin-bottom: 50px;
}

.footer-main{
	padding: 10px 0;
}

.footer-logo{
	margin-bottom: 30px;
}

.footer-logo h4{
	font-size: 36px;
	font-weight: 700;
	color: var(--e-global-color-white);
}

.footer-social ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-social ul li{
	display: inline-block;
	margin-right: 10px;
}

.footer-social ul li a{
	background-color: transparent;
    color: var(--e-global-color-white);
    border: 2px solid var(--e-global-color-white);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social ul li a:hover{
	border-color: var(--e-global-color-accent);
	color: var(--e-global-color-accent);
}

.footer-menu{
	text-align: right;
	margin-bottom: 20px;
}

.footer-menu ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu ul li{
	display: inline-block;
	margin-left: 30px;
}

.footer-menu ul li a{
	color: var(--e-global-color-white);
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li a:hover{
	color: var(--e-global-color-accent);
}

.copyright{
	text-align: right;
}

.copyright p{
	color: var(--e-global-color-white);
	margin: 0;
}

/* Elementor Header CSS */

.main-header:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 1px);
	background: #fff;
	transform: scale(0,100%);
	border-bottom: 1px solid var(--e-global-color-secondary);
	transition: all 0.4s ease-in-out !important;
}

.main-header.ekit-sticky--effects:before{
	transform: scale(1);
}

.elementskit-navbar-nav > li.current-menu-item > a.active .elementskit-submenu-indicator{
	color: var(--e-global-color-accent) !important;
}

.main-header .e-con-inner{
	transition: all 0.4s ease-in-out !important;
}

.main-header.ekit-sticky--effects .e-con-inner{
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.main-header.ekit-sticky--effects .main-header-inner{
	padding-left: 0;
	padding-right: 0;
}

.main-header .ekit-menu-nav-link>i{
	padding-right: 0;
}

body.admin-bar .main-header.ekit-sticky--effects{
	top: 32px !important;
}

.elementskit-dropdown i.elementskit-submenu-indicator{
	transform: rotate(-90deg);
	margin-top: 6px;
}

.mobile-menu{
	display: none;
}

.header-version-2 .mobile-menu,
.header-version-3 .mobile-menu,
.header-version-4 .mobile-menu{
	display: block;
}

.header-version-4 .ekit-offcanvas-toggle-wraper .ekit_navSidebar-button{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
}

.header-version-4 .e-con-inner{
	transition: all 0.3s ease-in-out !important;
}

.header-version-4.ekit-sticky--effects .e-con-inner{
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

/*  Elementor Footer Css */

.privacy-policy-menu .ekit-vertical-menu-container ul li:last-child a,
.social-icon-footer .ekit-wid-con ul li:last-child a{
	padding-bottom: 0 !important;
}

.footer-social-icon .ekit_social_media li a{
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-social-icon .ekit-wid-con ul li a{
	border-radius: 100%;
}

.footer-social-icon .ekit-wid-con ul li:last-child{
	margin-right: 0 !important;
}

.footer-form-btn .wpcf7-spinner{
	display: none;
}

.footer-form-btn .contact-form-footer .row{
	margin: 0;
	padding: 0;
}

.footer-form-btn .contact-form-footer .form-group{
	padding: 0;
}

.footer-form-btn .contact-form-footer .form-group:last-child{
	padding: 0;
}

.footer-form-btn .contact-form-footer .form-group i{
	transform: rotate(-45deg);
	transition: all 0.5s ease-in-out;
	font-size: 22px;
}

.footer-form-btn .contact-form-footer button{
	border: none;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center
}

.footer-form-btn .contact-form-footer button:hover i{
	transform: rotate(0deg);
}

.footer-form-btn .wpcf7-response-output{
	display: none;
}

.footer-form-btn .wpcf7-not-valid-tip{
	font-size: 14px;
	margin: 0;
	padding: 7px;
}

@media only screen and (max-width: 1820px){
	.background-section{
        width: calc(100% - 100px);
        margin: 0 50px;
    }
}
@media only screen and (max-width: 1366px){

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

	.background-section{
        width: calc(100% - 30px);
        margin: 0 15px;
    }
}

@media only screen and (max-width: 1024px){
	
	body.admin-bar .main-header.ekit-sticky--effects{
		top: 46px !important;
	}
	
	.elementskit-dropdown i.elementskit-submenu-indicator{
		transform: rotate(0deg);
		margin-top: 6px;
	}
	
	.elementskit-navbar-nav-default .elementskit-navbar-nav{
		margin-top: 10px;
		margin-bottom: 10px;
	}
	
	.elementskit-navbar-nav-default.elementskit-menu-offcanvas-elements{
		transition: left 0.3s ease-in-out !important;
	}
	
	.elementskit-menu-overlay{
		display: none !important;
	}
	
	.elementskit-menu-close .elementskit-menu-hamburger-icon,
	.elementskit-menu-hamburger .elementskit-menu-hamburger-icon{
		height: 2px;
		margin-bottom: 5px;
	}

	.elementskit-navbar-nav-default .elementskit-nav-identity-panel{
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-bottom: 1px solid var(--e-global-color-divider);
	}
	
	.ekit_menu_responsive_tablet .elementskit-submenu-indicator{
		border: none !important;
	}
	
	.elementskit-navbar-nav .elementskit-submenu-panel{
		background: none !important;
		margin-left: 20px;
	}

	.mobile-menu{
		display: block;
	}

	.background-section{
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
}

@media only screen and (max-width: 767px){

	body.admin-bar .main-header.ekit-sticky--effects{
		top: 0px !important;
	}
	
	.column-2 .elementor-icon-list-items{
		gap: 0;
	}

	.column-2 .elementor-icon-list-items .elementor-icon-list-item{
		width: 100%;
	}

	.elementor-widget-button .elementor-button .elementor-button-icon{
		font-size: 16px !important;
	}

	.footer-form-btn .contact-form-footer button{
		width: 48px;
		height: 48px;
	}
}

/* 404 Page CSS */

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 60px;
}

.error-page .error-page-content{
	text-align: center;
}

.error-page-content-heading{
	margin-bottom: 30px;
}

.error-page-content-heading h2{
	font-size: 44px;
}

/* Portfolio CSS */

.works-item{
	background-color: var(--e-global-color-secondary);
	border-radius: 40px;
	padding: 20px 20px 40px 20px;
	height: calc(100% - 30px);
    margin-bottom: 30px;
}

.works-image{
	margin-bottom: 30px;
	border-radius: 30px;
	overflow: hidden;
}

.works-image img{
	border-radius: 30px;
	transition: all 0.5s ease-out;
}

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

.works-content{
	padding: 0 20px;
}

.works-content h2{
	font-size: 26px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.works-content p{
	margin: 0;
}

.awaiken-portfolio-grid{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	--portfolio-gap: 30px;
	column-gap: var(--portfolio-gap);
	width: 100%;
}

.awaiken-portfolio-grid .awaiken-portfolio-grid-item{
	width: 100%;
}

@media (min-width: 767px){

	.awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: calc(50% - (var(--portfolio-gap) / 2));
	}
}

@media (min-width: 1240px){

	.elementor-grid-2 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: calc(50% - (var(--portfolio-gap) / 2));
	}

	.elementor-grid-3 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: calc(33.33% - ((var(--portfolio-gap) * 2) / 3));
	}

	.elementor-grid-4 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: calc(25% - ((var(--portfolio-gap) * 3) / 4));
	}

	.elementor-grid-5 .awaiken-portfolio-grid .awaiken-portfolio-grid-item{
		width: calc(20% - ((var(--portfolio-gap) * 4) / 5));
	}
}

.awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper{
	position: relative;
	overflow: hidden;
	background-color: var(--e-global-color-secondary);
	border-radius: 40px;
	padding: 20px 20px 40px 20px;
}

.awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__img{
	position: relative;
	margin-bottom: 30px;
	border-radius: 30px;
	overflow: hidden;
	transition: all 0.5s ease-out;
}

.awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__img:after{
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper:hover .awaiken-portfolio-grid-item__img:after{
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__img img{
	transition: all 0.5s ease-out;
}

.awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__title{
	transition: all 0.3s ease-in-out;
	display: inline-block;
}

.awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__categories a{
	font-size: 16px;
	color: #9C9FA6;
	text-transform: capitalize;
}

.awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper:hover img{
	transform: scale(1.1);
}

.awaiken-portfolio-grid.awaiken-portfolio-layout-grid .awaiken-portfolio-grid-item__img{
	aspect-ratio: 1;
}

.awaiken-portfolio-grid.awaiken-portfolio-layout-grid .awaiken-portfolio-grid-item__img img{
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__content{
	padding: 0 20px;
}

.awaiken-portfolio-grid .awaiken-portfolio-grid-item__content a .awaiken-portfolio-grid-item__title{
	font-size: 26px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.elementor-element.awaiken-portfolio-gutter-0 .awaiken-portfolio-grid-item__wrapper{
	border-radius: 0;
}

.elementor-element.awaiken-portfolio-gutter-0 .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__img{
	border-radius: 0;
}

.elementor-element.awaiken-portfolio-gutter-0 .awaiken-portfolio-item-design-2 .awaiken-portfolio-grid-item__content{
	margin-bottom: 5px;
}

.awaiken-portfolio-item-design-1 .awaiken-portfolio-grid-item__wrapper{
	background-color: transparent;
	border-radius: 30px;
}

.awaiken-portfolio-item-design-1 .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__img::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.awaiken-portfolio-item-design-1 .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__content{
	position: absolute;
	bottom: -1px;
	transform: translateY(100%);
	left: 20px;
	right: 20px;
	background-color: #FFF;
	z-index: 5;
	padding: 20px;
	border-radius: 30px;
	transition: all 0.3s ease-in-out;
}

.awaiken-portfolio-item-design-1 .awaiken-portfolio-grid-item__wrapper:hover .awaiken-portfolio-grid-item__content{
	bottom: 20px;
	transform: translateY(0%);
}

.awaiken-portfolio-item-design-1 .awaiken-portfolio-grid-item__wrapper:hover .awaiken-portfolio-grid-item__img::after{
	opacity: 1;
}

.awaiken-portfolio-item-design-2 .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__content{
	margin-top: calc(var(--grid-columns-gap) / 2);
	transform: translateX(1.5%);
}

.awaiken-portfolio-item-design-2 .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__title{
	transition: all 0.3s ease-in-out;
	position: relative;
	display: inline-flex;
}

.awaiken-portfolio-item-design-2 .awaiken-portfolio-grid-item__wrapper:hover .awaiken-portfolio-grid-item__img{
	transform: scale(1);
}

.awaiken-portfolio-grid__filters{
	--listIndent: 0;
	--contentSpacing: 0;
	--listStyleType: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.awaiken-portfolio-grid__filters li{
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	font-weight: 700;
	position: relative;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li{
	display: flex;
	align-items: center;
	height: auto;
	font-size: 16px !important;
	text-transform: capitalize;
	line-height: 1.2em;
	padding: 15px 20px;
	margin: 0 20px 0 0;
	background: #F7F8FD;
	color: #000;
	border-radius: 100px;
	border: none;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li:last-child{
	margin-right: 0;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li:hover,
.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li.active{
	background: #5D56F1;
	color: #FFF;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-2{
	list-style-type: none;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-2 li{
	margin: 5px 10px;
	color: #000;
	font-family: "Manrope", Sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.1em;
	text-transform: capitalize;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-2 li:before{
	content: "";
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	left: 0;
	height: 2px;
	width: 0;
	bottom: -6px;
	background-color: #5D56F1;
	transition: all 0.3s ease-in-out;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-2 li:hover,
.awaiken-portfolio-grid__filters.portfolio_filter-design-2 li.active{
	color: #5D56F1;
}

.awaiken-portfolio-grid__filters.portfolio_filter-design-2 li:hover:before,
.awaiken-portfolio-grid__filters.portfolio_filter-design-2 li.active:before{
	width: 100%;
}

.awaiken-portfolio-grid-item__excerpt p:last-child{
	margin-bottom: 0;
}

@media only screen and (max-width: 991px){

	.awaiken-portfolio-grid__filters{
		margin-bottom: 20px;
	}

	.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li{
		margin: 0 20px 20px 0;
	}

	.awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper{
		padding: 20px 20px 30px;
	}

	.awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__img{
		margin-bottom: 20px;
	}

	.awaiken-portfolio-grid .awaiken-portfolio-grid-item__wrapper .awaiken-portfolio-grid-item__content{
		padding: 0 0 0 10px;
	}

	.awaiken-portfolio-grid .awaiken-portfolio-grid-item__content a .awaiken-portfolio-grid-item__title{
		font-size: 24px;
	}
}

@media only screen and (max-width: 767px){

	.awaiken-portfolio-grid__filters.portfolio_filter-design-1 li{
		font-size: 14px !important;
		padding: 10px 15px;
		margin-right: 6px;
	}

	.awaiken-portfolio-grid .awaiken-portfolio-grid-item__content a .awaiken-portfolio-grid-item__title{
		font-size: 22px;
	}
}

/* Portfoilo Details CSS */

.project-info-box .elementor-icon-box-content{
	flex-direction: column-reverse;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.project-info-box .elementor-icon-box-content .elementor-icon-box-title{
	margin-top: 10px;
}

.project-gallery-item .gallery-item .gallery-icon{
	  overflow: hidden;
}

.project-gallery-item .gallery-item .gallery-icon a{
	position: relative;
    overflow: hidden;
}

.project-gallery-item .gallery-item .gallery-icon a:after{
    content: "";
    position: absolute;
    width: 210%;
    height: 0%;
    left: 0;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-40deg);
    z-index: 1;
}

.project-gallery-item .gallery-item .gallery-icon a:hover:after{
	height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

@media only screen and (max-width: 991px){

	.project-info-box .elementor-icon-box-content .elementor-icon-box-title{
		margin-top: 5px;
	}
}

/* Archive and Single CSS */

.page-blog-archive{
	padding: 100px 0px;
}

.post-item{
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.post-featured-image{
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 30px;
}

.post-item .post-featured-image img{
	border-radius: 30px;
	aspect-ratio: 1 / 0.66;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item .post-meta{
	margin-bottom: 10px;
}

.post-item .post-meta ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.post-item .post-meta ul li i{
	margin-right: 5px;
}

.post-item .post-meta ul li{
	color: var(--text-color);
	text-transform: capitalize;
}

.post-item-body h2{
	display: block;
	line-height: 1.5em !important;
	font-size: 20px !important;
	font-weight: 600 !important;
	word-wrap: break-word;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.post-item-btn .read-story-btn{
	display: inline-block;
	position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--e-global-color-accent);
    padding-right: 35px;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-item-btn .read-story-btn{
	color: var(--e-global-color-primary);
}

.post-item-btn .read-story-btn::after{
    content: '';
    position: absolute;
    top: 2px;
    right: 0;
    bottom: 0;
    background: url('assets/images/arrow-white.svg') no-repeat center center;
	background-size: 8px auto;
	background-color: var(--e-global-color-accent);
	border-radius: 50%;
    width: 24px;
    height: 24px;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-item-btn .read-story-btn::after{
	background-color: var(--e-global-color-primary);
	transform: rotate(45deg);
}

.pagination .nav-links{
	margin-top: 30px;
	text-align: center;
	text-align: center;
	display: flex;
	justify-content: center;
	width: 100%;
}

.pagination .nav-links a,
.pagination .nav-links span{
	display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--e-global-color-accent);
    color: var(--e-global-color-white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.pagination .nav-links span.current,
.pagination .nav-links a:hover{
	background: var(--e-global-color-primary);
}

.page-single-post{
	padding: 100px 0;
}

.page-single-post.single-page .post-entry{
	margin-bottom: 0;
	border-bottom: 0;
	padding-bottom: 0;
}

.post-single-meta ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.post-single-meta ul li{
	display: inline-block;
	margin-right: 25px;
	font-size: 18px;
	font-weight: 500;
	color: var(--e-global-color-white);
}

.post-single-meta ul li:last-child{
	margin-right: 0;
}

.post-single-meta ul li i{
	font-size: 18px;
	color: var(--e-global-color-accent);
	margin-right: 10px;
}

.post-single-meta ul li a{
	color: inherit;
}

.post-single-image{
	margin-bottom: 30px;
}

.post-single-image .image-anime{
	border-radius: 46px;
}

.post-single-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 46px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--e-global-color-divider);;
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.post-entry:after{
	content: '';
	display: block;
	clear: both;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry a{
	color: var(--e-global-color-accent);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	margin: 1em 0 0.7em;
	color: var(--e-global-color-primary);
}

.post-entry h1{
	font-size: 40px;
}

.post-entry h2{
	font-size: 36px !important;
}

.post-entry h3{
	font-size: 26px;
}

.post-entry h4{
	font-size: 22px;
}

.post-entry h5{
	font-size: 18px;
}

.post-entry h6{
	font-size: 16px;
}

.post-entry ul{
	padding-left: 20px;
	margin: 0 0 30px;
}

.post-entry ul li{
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 18px;
	color: var(--e-global-color-primary);
}

.post-entry ol{
	margin: 0 0 30px;
}

.post-entry ol li{
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
	color: var(--e-global-color-primary);
}

.post-entry ul li a{
	color: var(--e-global-color-primary);
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
	margin-top: 10px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
	margin-bottom: 0;
}

.post-entry blockquote{
	position: relative;
	background: var(--e-global-color-secondary) url('assets/images/icon-blockquote.svg') no-repeat;
	background-position: top 40px left 35px;
    background-size: 45px;
	padding: 30px 30px 30px 100px !important;
	border-radius: 40px;
	margin-bottom: 30px !important;
}

.post-entry blockquote p{
	font-size: 20px !important;
	color: var(--e-global-color-primary);
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.4em;
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.post-entry blockquote cite {
    font-size: 18px;
    color: var(--e-global-color-text);
}

.post-entry table{
	border-top: 1px solid var(--e-global-color-primary);
	border-left: 1px solid var(--e-global-color-primary);
}

.post-entry table tr td,
.post-entry table tr th{
	border-right: 1px solid var(--e-global-color-primary);
	border-bottom: 1px solid var(--e-global-color-primary);
	padding: 4px 10px;
}

.post-entry .wp-block-latest-posts.wp-block-latest-posts__list{
	list-style: inherit;
    padding-left: 20px;
}

.tag-links{
    font-size: 22px;
    font-weight: 600;
    color: var(--e-global-color-primary);
    display: inline-block;
}

.post-tags .tag-links a{
	display: inline-block;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-white);
    border-radius: 100px;
    padding: 8px 20px;
    margin-left: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--e-global-color-primary);
}

.post-tags .tag-links a:last-child{
	margin-right: 0;
}

.post-tags .tag-links a::before{
	display: none;
}

.post-tags .tag-links a::after{
	background-color: var(--e-global-color-accent);
}

.post-social-sharing{
	text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 12px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-white);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li a:hover{
    background-color: var(--e-global-color-primary);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}

.post-entry hr,
.comment-content hr{
	border-top: 1px solid var(--e-global-color-divider);
	opacity: 1;
}

.post-entry table caption{
	text-align: center;
}

.post-entry .wp-block-rss{
	list-style: inherit;
}

.post-entry .wp-block-social-links{
	padding: 0;
}

/* Default Post and Page CSS */

.alignnone{
	margin: 5px 0 20px 0;
}

.aligncenter,
div.aligncenter{
	display: block;
	margin: 5px auto 5px auto;
}

.alignright{
	float:right;
	margin: 5px 0 20px 20px;
}

.alignleft{
	float: left;
	margin: 5px 20px 20px 0 !important;
}

a img.alignright{
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone{
	margin: 5px 20px 20px 0;
}

a img.alignleft{
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption{
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone{
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft{
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright{
	margin: 5px 0 20px 20px;
}

.wp-caption img{
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text{
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

.screen-reader-text{
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus{
	background-color: var(--e-global-color-divider);
	clip: auto !important;
	clip-path: none;
	color: var(--e-global-color-primary);
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.gallery-caption,
.bypostauthor{
	position: inherit;
}

.has-medium-font-size,
.has-large-font-size,
.has-x-large-font-size{
	line-height: 1.4em;
}

.wp-block-navigation__responsive-container-content ul ul li{
	padding-left: 0;
	margin-bottom: 0;
}

.wp-block-navigation__responsive-container-content ul ul li:before{
	display: none;
}

ul.wp-block-post-template{
	list-style: none !important;
	padding: 0;
}

ul.wp-block-post-template li{
	padding-left: 0;
}

.wp-block-post-template li:before{
	display: none;
}

.wp-block-post-template .wp-block-post-excerpt__excerpt{
	color: var(--e-global-color-text);
	font-weight: 400;
}

.wp-block-post-featured-image,
.wp-block-post-author,
.wp-block-avatar,
.wp-block-post-date,
.wp-block-post-navigation-link,
.wp-block-search,
.wp-block-buttons,
.wp-block-image,
.wp-block-audio,
.wp-block-cover,
.wp-block-media-text,
.wp-block-table,
.wp-block-button,
.wp-block-embed{
	margin-bottom: 20px;
}

.wp-block-gallery{
	margin-bottom: 20px !important;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper{
	border: none;
	background: var(--e-global-color-secondary);
	border-radius: 12px;
}

.wp-block-search .wp-block-search__input{
	background: var(--e-global-color-secondary);
	border: none;
	outline: 0;
	box-shadow: none;
	border-radius: 12px;
	padding: 10px 20px;
}

.wp-block-search .wp-block-search__button{
	border-radius: 12px;
	background: var(--e-global-color-accent);
	color: var(--e-global-color-white) !important;
	border: none;
	outline: 0;
	box-shadow: none;
	transition: all 0.4s ease-in-out;
}

.wp-block-search .wp-block-search__button:hover{
	background: var(--e-global-color-primary) !important;
	color: var(--e-global-color-white) !important;
}

.wp-block-social-links li{
	padding-left: 0 !important;
}

.wp-block-social-links li:before{
	display: none;
}

.wp-block-tag-cloud a{
	font-size: 18px !important;
	font-weight: 500 !important;
	background: var(--e-global-color-accent);
	color: var(--e-global-color-white) !important;
	border: none;
	text-transform: capitalize;
	padding: 8px 20px;
	margin-bottom: 10px;
	margin-right: 5px;
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.wp-block-tag-cloud a:hover{
	background: var(--e-global-color-primary);
}

.wp-block-latest-comments{
	padding-left: 0;
}

.wp-block-latest-comments a{
	color: var(--e-global-color-primary);
}

.wp-block-button .wp-element-button,
.wp-block-button.is-style-outline .wp-element-button,
.wp-element-button,
.wp-block-button .wp-block-button__link,
.wp-block-file .wp-block-file__button{
	font-size: 16px;
	font-weight: 500;
	background: var(--e-global-color-accent);
	border: none;
	color: var(--e-global-color-white) !important;
	padding: 10px 30px;
}

.wp-block-button:where(.is-style-outline)>.wp-block-button__link:not(.has-background){
	color: var(--e-global-color-white) !important;
}

.wp-block-button.is-style-outline .wp-element-button{
	background: var(--e-global-color-primary);

}

.wp-block-button .wp-element-button:hover,
.wp-block-button.is-style-outline .wp-element-button:hover,
.wp-element-button:hover,
.wp-block-button .wp-block-button__link:hover,
.wp-block-file .wp-block-file__button:hover{
	background: var(--e-global-color-primary) !important;
}

.wp-block-file a{
	font-size: 16px;
}

.wp-block-column p:last-child{
	margin-bottom: 0;
}

.wp-block-cover{
	color: var(--e-global-color-white);
}

.wp-block-image figcaption{
	text-align: center;
}

.wp-block-gallery ul li{
	padding-left: 0;
}

.wp-block-gallery ul li:before{
	display: none !important;
}

.wp-block-quote.is-style-large{
	padding-top: 30px;
	padding-bottom: 30px;
}

.wp-block-categories-dropdown,
.wp-block-archives-dropdown{
	margin-bottom: 20px;
}

.wp-block-categories-dropdown select,
.wp-block-archives-dropdown select{
	border-radius: 12px;
	background: var(--e-global-color-accent);
	color: var(--e-global-color-white);
	border: none;
	padding: 12px 20px;
}

.wp-caption .wp-caption-text{
	margin-top: 6px;
}

.gallery.gallery-columns-2,
.gallery.gallery-columns-3,
.gallery.gallery-columns-4,
.gallery.gallery-columns-5,
.gallery.gallery-columns-6,
.gallery.gallery-columns-7,
.gallery.gallery-columns-8,
.gallery.gallery-columns-9{
	display: flex;
	flex-wrap: wrap;
}

div:not(.elementor-image-gallery) .gallery .gallery-item{
	margin-right: 30px;
	margin-bottom: 30px;
}

div:not(.elementor-image-gallery) .gallery .gallery-item img{
	width: 100%;
	height: auto;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-1 .gallery-item{
	width: 100%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-2 .gallery-item{
	width: calc(50% - 15px);
}

.elementor-image-gallery .gallery.gallery-columns-2 figure.gallery-item{
	width: 50%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-2 .gallery-item:nth-of-type(2n + 2){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item{
	width: calc(33.33% - 20px);
}

.elementor-image-gallery .gallery.gallery-columns-3 figure.gallery-item{
	width: 33.33%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n + 3){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item{
	width: calc(25% - 22.5px);
}

.elementor-image-gallery .gallery.gallery-columns-4 figure.gallery-item{
	width: 25%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n + 4){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item{
	width: calc(20% - 24px);
}

.elementor-image-gallery .gallery.gallery-columns-5 figure.gallery-item{
	width: 20%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n + 5){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item{
	width: calc(16.66% - 25px);
}

.elementor-image-gallery .gallery.gallery-columns-6 figure.gallery-item{
	width: 16.66%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n + 6){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item{
	width: calc(14.28% - 25.7px);
}

.elementor-image-gallery .gallery.gallery-columns-7 figure.gallery-item{
	width: 14.28%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n + 7){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item{
	width: calc(12.5% - 26.25px);
}

.elementor-image-gallery .gallery.gallery-columns-8 figure.gallery-item{
	width: 12.5%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n + 8){
	margin-right: 0;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item{
	width: calc(11.11% - 26.66px);
}

.elementor-image-gallery .gallery.gallery-columns-9 figure.gallery-item{
	width: 11.11%;
}

div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n + 9){
	margin-right: 0;
}

.elementor-image-gallery .gallery.gallery-columns-10 figure.gallery-item{
	width: 10%;
}

.post-password-form input[type="password"]{
	background: var(--e-global-color-secondary);
	border: none;
	outline: 0;
	box-shadow: none;
	border-radius: 12px;
	padding: 10px 20px;
}

.post-password-form input[type="submit"]{
	background: var(--e-global-color-accent);
	color: var(--e-global-color-white);
	font-weight: 500;
	font-size: 16px;
	border: none;
	border-radius: 12px;
	padding: 8px 20px;
	margin-left: 10px;
	transition: all 0.4s ease-in-out;
}

.post-password-form input[type="submit"]:hover{
	background: var(--e-global-color-primary);
}

aside.widget{
	background: var(--e-global-color-secondary);
	padding: 30px;
	border-radius: 30px;
	margin-bottom: 30px;
}

aside.widget a{
	color: var(--e-global-color-accent);
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

aside.widget .wp-block-latest-comments a,
aside.widget.widget_tag_cloud a{
	color: var(--e-global-color-primary);
}

aside.widget .tagcloud a{
	display: inline-block;
	font-size: 18px !important;
	color: var(--e-global-color-white);
	background: var(--e-global-color-accent);
	font-weight: 500;
	border: none !important;	
	padding: 8px 20px;
	border-radius: 100px;
	text-transform: capitalize;
	margin-right: 5px;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;	
}

aside.widget .tagcloud a:hover{
	background: var(--e-global-color-primary);
}

aside.widget .wp-block-heading,
aside.widget .widget-title{
	font-size: 22px;
	font-weight: 600;
	color: var(--e-global-color-primary);
	margin-bottom: 20px;
}

aside.widget ul{
	padding-left: 20px !important;
	margin: 0;
	list-style: inherit !important;
}

aside.widget ul li{
	margin-bottom: 10px;
	font-weight: 500;
	color: var(--e-global-color-primary);
}

aside.widget ul li a{
	color: var(--e-global-color-primary);
	transition: all 0.3s ease-in-out;
}

aside.widget ul li a:hover{
	color: var(--e-global-color-accent);
}

aside.widget ul ul{
	margin-top: 10px;
	margin-bottom: 0;
	margin-left: -10px;
}

aside.widget ul li:last-child{
	margin-bottom: 0;
}

aside.widget ul.wp-block-social-links{
	padding-left: 0 !important;
}

aside.widget .wp-block-search .wp-block-search__input{
	background-color: var(--e-global-color-white);
}

aside.widget .wp-block-search{
	margin-bottom: 0;
}

aside.widget .wp-block-search .wp-block-search__button{
	padding-left: 15px;
	padding-right: 15px;
}

aside.widget .wp-block-categories-dropdown,
aside.widget .wp-block-archives-dropdown{
	margin-bottom: 0;
}

aside.widget select,
aside.widget .wp-block-categories-dropdown select,
aside.widget .wp-block-archives-dropdown select{
	background: var(--e-global-color-white);
	border: none;
	padding: 10px 20px;
	border-radius: 12px;
	width: 100%;
	outline: 0;
	box-shadow: none;
}

aside.widget.widget_recent_entries ul li{
	padding-left: 0;
}

aside.widget.widget_recent_entries ul li:before{
	display: none;
}

aside.widget.widget_recent_entries .wp-block-latest-posts__post-excerpt,
aside.widget .wp-block-rss__item-excerpt,
aside.widget .rssSummary{
	font-weight: 400;
	color: var(--e-global-color-text);
}

aside.widget .wp-block-social-links li{
	margin-bottom: 0;
}

aside.widget .wp-block-social-links{
	padding: 0 !important;
}

aside.widget table{
	width: 100%;
	background: var(--e-global-color-white);
	border-top: 1px solid var(--e-global-color-primary);
	border-left: 1px solid var(--e-global-color-primary);
}

aside.widget table tr td,
aside.widget table tr th{
	border-right: 1px solid var(--e-global-color-primary);
	border-bottom: 1px solid var(--e-global-color-primary);
	padding: 4px;
	text-align: center;
}

aside.widget table caption{
	text-align: center;
}

aside.widget_search .search-form{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

aside.widget_search .search-form label{
	width: calc(100% - 100px);
}

aside.widget_search .search-form input{
	width: 100%;
	padding: 10px;
	border: none;
	outline: 0;
	box-shadow: none;
	border-radius: 12px;
	color: var(--e-global-color-primary);
}

aside.widget .search-submit{
	max-width: 86px;
	height: 47px;
	background: var(--e-global-color-accent);
	color: var(--e-global-color-white) !important;
	border: none;
	outline: 0;
	box-shadow: none;
	border: none;
	font-weight: 500;
	padding: 10px 15px;
	border-radius: 10px;
	transition: all 0.3s ease-in-out;
}

aside.widget .search-submit:hover{
	background: var(--e-global-color-primary);
}

aside.widget .has-login-form label{
	margin-bottom: 5px;
}

aside.widget .has-login-form input[type="text"],
aside.widget .has-login-form input[type="password"]{
	background: var(--e-global-color-white);
    border: none;
    outline: 0;
    box-shadow: none;
    border-radius: 12px;
    padding: 10px 20px;
	width: 100%;
}

aside.widget .has-login-form input[type="checkbox"]{
	width: auto;
}

aside.widget .has-login-form input[type="submit"]{
	font-size: 18px;
	font-weight: 500;
	border-radius: 12px;
    background: var(--e-global-color-accent);
    color: var(--e-global-color-white) !important;
    line-height: 1em;
    border: none;
    outline: 0;
    box-shadow: none;
    transition: all 0.4s ease-in-out;
    padding: 15px;
}

aside.widget .has-login-form input[type="submit"]:hover{
	background-color: var(--e-global-color-primary);
}

aside.widget .calendar_wrap{
	text-align: center;
}

aside.widget .wp-block-social-links{
	padding: 0 !important; 
}

@media only screen and (max-width: 991px){

	div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item{
		width: calc(50% - 15px);
	}
	
	div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n + 3),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n + 4),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n + 5),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n + 6),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n + 7),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n + 8),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n + 9){
		margin-right: 30px;
	}

	div.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item:nth-of-type(2n + 2),
	div.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n + 3),
	div.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n + 4),
	div.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n + 5),
	div.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n + 6),
	div.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n + 7),
	div.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n + 8),
	div.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n + 9),
	div.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item:nth-of-type(10n + 10),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item:nth-of-type(2n + 2){
		margin-right: 0;
	}
	
	.sidebar-widget{
		margin-top: 30px;
	}

	.wp-block-tag-cloud a{
		font-size: 16px !important;
        padding: 8px 15px;
	}

	.wp-block-file a{
		font-size: 16px;
	}
	aside.widget .tagcloud a{
		font-size: 16px !important;
        padding: 8px 15px;
	}
}

@media only screen and (max-width: 767px){
	
	div:not(.elementor-image-gallery) .gallery.gallery-columns-2 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item{
		width: 100%;
	}
	
	div:not(.elementor-image-gallery) .gallery .gallery-item,
	div:not(.elementor-image-gallery) .gallery.gallery-columns-2 .gallery-item:nth-of-type(2n + 2),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n + 3),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n + 4),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-5 .gallery-item:nth-of-type(5n + 5),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-6 .gallery-item:nth-of-type(6n + 6),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-7 .gallery-item:nth-of-type(7n + 7),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-8 .gallery-item:nth-of-type(8n + 8),
	div:not(.elementor-image-gallery) .gallery.gallery-columns-9 .gallery-item:nth-of-type(9n + 9){
		margin-right: 0;
	}

	.elementor-image-gallery .gallery.gallery-columns-1 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-2 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-3 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-4 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-5 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-6 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-7 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-8 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-9 figure.gallery-item,
	.elementor-image-gallery .gallery.gallery-columns-10 figure.gallery-item {
		width: 100%;
	}
	
	.has-medium-font-size{
		font-size: 20px !important;
	}

	.has-large-font-size{
		font-size: 26px !important;
	}

	.has-x-large-font-size{
		font-size: 30px !important;
	}

	aside.widget{
		padding: 20px;
	}

	aside.widget .wp-block-heading, 
	aside.widget .widget-title{
		font-size: 20px;
		margin-bottom: 15px;
	}
	
	.wp-block-navigation__responsive-container{
		padding: 20px !important;
	}	

	.wp-block-media-text .wp-block-media-text__content{
		padding-left: 0;
		padding-right: 0;
		padding-top: 10px;
	}

	.post-password-form{
		text-align: center;
	}

	.post-password-form input[type="password"]{
		width: 100%;
		margin: 10px 0; 
	}
}

/* Post Comment Box CSS */

.page-single-post .comment-box{
	max-width: 1100px;
	margin: 80px auto 0;
}

.page-single-post .comment-box a,
.wp-block-post-comments-form a{
	color: var(--e-global-color-accent);
}

.comment-box .comment-respond:not(:first-child){
	margin-top: 60px;
}

.page-single-post .comment-box .comment-reply-title,
.page-single-post .comment-box .title-comments,
.wp-block-post-comments-form .comment-reply-title,
.wp-block-post-comments-form .title-comments{
	color: var(--e-global-color-primary);
	font-size: 26px;
	margin-bottom: 10px;
}

.page-single-post .comment-box .comment-reply-title,
.wp-block-post-comments-form .comment-reply-title{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.page-single-post .comment-box .comment-reply-title #cancel-comment-reply-link,
.wp-block-post-comments-form .comment-reply-title #cancel-comment-reply-link{
	font-size: 14px;
	font-family: var(--e-global-typography-primary-font-family);
	font-weight: 400;
	background: var(--e-global-color-accent);
	color: var(--e-global-color-white);
	border-radius: 6px;
	text-transform: capitalize;
	padding: 6px 10px;
	transition: all 0.4s ease-in-out;
}

.page-single-post .comment-box .comment-reply-title #cancel-comment-reply-link:hover,
.wp-block-post-comments-form .comment-reply-title #cancel-comment-reply-link:hover{
	background: var(--e-global-color-primary);
}

.page-single-post .comment-box .title-comments{
	margin-bottom: 30px;
}

.comment-form{
	display: flex;
	flex-wrap: wrap;
}

.comment-form p:last-child{
	margin-bottom: 0;
}

.comment-form .comment-notes,
.comment-form .comment-form-comment,
.comment-form .comment-form-cookies-consent,
.comment-form .form-submit{
	width: 100%;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-author,
.comment-form .comment-form-email{
	width: calc(33.33% - 20px);
	margin-right: 30px;
}

.comment-form .comment-form-url{
	width: calc(33.33% - 20px);
}

.comment-form label{
	display: block;
	margin-bottom: 4px;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"]{
	width: 100%;
	padding: 12px 20px;
    border: none;
    box-shadow: none;
    background: var(--e-global-color-secondary);
    border-radius: 12px;
	outline: 0;
	box-shadow: none;
}

.comment-form .comment-form-cookies-consent{
	position: relative;
	padding-left: 20px;
}

.comment-form .comment-form-cookies-consent label{
	display: inline-block;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"]{
	margin-top: 0 !important;
	margin-right: 4px;
	top: 6px;
	left: 0;
	position: absolute;
}

.comment-form .form-submit .submit{
	display: inline-block;
	background: var(--e-global-color-accent);
	color: var(--e-global-color-white);
	line-height: 1em;
	font-size: 16px;
	font-weight: 700;
	border: none;
	padding: 16px 25px;
	border-radius: 100px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition: 0.2s ease-in-out;
}

.comment-form .form-submit .submit:hover{
	background:var(--e-global-color-primary);
}

.comment-list{
	list-style: none;
	padding: 0;
	margin: 0;
}

.comment-list li{
	list-style: none;
}

.comment-list .comment .comment-body{
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid var(--e-global-color-divider);
}

.comment-list .comment:last-child{
	margin-bottom: 0;
}

.comment-list .comment .comment-meta{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.comment-list .comment .comment-meta .comment-author img{
	max-width: 42px;
	aspect-ratio: 1/1;
	background: var(--e-global-color-secondary);
	border-radius: 50%;
	margin-right: 10px;
}

.comment-list .comment .comment-meta .comment-author b{
	font-weight: 400;
}

.comment-list .comment .comment-meta .comment-author a{
	color: var(--e-global-color-primary);
}

.comment-list .comment .comment-meta .comment-metadata a{
	color: var(--e-global-color-text);
	transition: all 0.4s ease-in-out;
}

.comment-list .comment .comment-meta .comment-metadata a:hover{
	color: var(--e-global-color-accent);
}

.comment-list .comment .comment-meta .comment-metadata  .comment-edit-link{
	color: var(--e-global-color-accent);
	margin-left: 10px;
}

.comment-list .comment .comment-content p:last-child{
	margin-bottom: 0;
}

.comment-list .comment .reply a{
	margin-top: 10px;
	display: inline-block;
	background: var(--e-global-color-accent);
	padding: 2px 10px;
	border-radius: 8px;
	font-size: 14px;
	color: var(--e-global-color-white) !important;
	transition: all 0.4s ease-in-out;
}

.comment-list .comment .reply a:hover{
	background: var(--e-global-color-primary);
}

.comment-content h1,
.comment-content h2,
.comment-content h3,
.comment-content h4,
.comment-content h5,
.comment-content h6{
	color: var(--e-global-color-primary);
	margin: 0.8em 0;
}

.comment-content table{
	width: 100%;
	border-top: 1px solid var(--e-global-color-primary);
	border-left: 1px solid var(--e-global-color-primary);
}

.comment-content table tr td,
.comment-content table tr th{
	border-right: 1px solid var(--e-global-color-primary);
	border-bottom: 1px solid var(--e-global-color-primary);
	padding: 4px 10px;
}

.comment-content table tr th{
	color: var(--e-global-color-primary);
	font-size: 18px;
}

.comment-content ul{
	padding-left: 20px;
	margin: 0 0 1.7em;
}

.comment-body li{
	list-style: initial;
}

.comment-content ul li{
	position: relative;	
	margin-bottom: 10px;
	font-weight: 500;
	color: var(--e-global-color-primary);
}

.comment-content ul ul{
	margin-top: 10px;
	margin-bottom: 0;
}

.comment-content ol li{
	list-style: decimal;
}

@media only screen and (max-width: 991px){
	
	.page-single-post .comment-box{
		margin-top: 40px;
	}

	.comment-box .comment-respond:not(:first-child){
		margin-top: 40px;
	}

	.page-single-post .comment-box .comment-reply-title,
	.page-single-post .comment-box .title-comments{
		font-size: 24px;
	}

	.page-single-post .comment-box .comment-reply-title small{
		width: 100%;
		margin-top: 6px;
	}

	.comment-list .children{
		padding-left: 20px;
	}
}

@media only screen and (max-width: 767px){

	.comment-form .comment-form-author,
	.comment-form .comment-form-email,
	.comment-form .comment-form-url{
		width: 100%;
		margin-right: 0;
	}

	.page-single-post .comment-box .comment-reply-title, 
	.page-single-post .comment-box .title-comments{
		font-size: 22px;
	}

	.comment-list .comment .comment-meta .comment-author,
	.comment-list .comment .comment-meta .comment-metadata{
		width: 100%;
	}

	.comment-list .comment .comment-meta .comment-metadata{
		margin-top: 10px;
	}
}

@media only screen and (max-width: 1300px){
	.main-menu ul li a{
		padding: 12px 4px !important;
	}
}

@media only screen and (max-width: 1024px) {
	.navbar-brand span{
		display: none;
	}

	.main-menu ul li a{
		padding: 12px 2px !important;
	}
}

@media only screen and (max-width: 991px){

	#magic-cursor {
        display: none !important;
    }

	.navbar-brand h1, 
	.navbar-brand h2{
		font-size: 30px;
	}

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.main-menu ul li{
        margin: 0 10px;
    }

	header.main-header .header-sticky.active .slicknav_menu{
		border-radius: 0;
	}
	
	.page-header{
		padding: 100px 0;
	}

	.page-header-box h1{
		font-size: 54px !important;
		margin-bottom: 10px;
	}
	
	.page-header-box .taxonomy-description{
		color: var(--e-global-color-text);
		margin-bottom: 10px;
	}
	
	.page-blog-archive{
		padding: 50px 0;
	}

	.post-item {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

	.post-item .post-featured-image{
		margin-bottom: 20px;
	}

	.pagination .nav-links{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 50px 0;
	}

	.post-single-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: top 35px left 30px;
        padding: 25px 25px 25px 90px !important;
        margin-bottom: 20px !important;
    }

	.post-entry blockquote p{
		font-size: 18px !important;
		margin-bottom: 10px;
	}

	.post-entry ul li,
	.post-entry ol li{
		font-size: 16px;
	}

	.post-tags .tag-links a{
		font-size: 16px;
        padding: 8px 15px;
		margin-left: 10px;	
	}
	
	.post-tags{
		margin-bottom: 10px;
	}

	.post-social-sharing{
		text-align: left;
	}

	footer.footer{
		background-size: cover;
		margin: 0;
		padding: 40px 0;
	}

	.footer-main{
		padding: 0;
	}

	.footer-logo{
		text-align: center;
		margin-bottom: 20px;
	}

	.footer-social{
		text-align: center;
		margin-bottom: 20px;
	}

	.footer-social ul li{
		margin: 0 6px;
	}

	.footer-menu{
		text-align: center;
	}

	.footer-menu ul li{
		margin: 0 10px;
	}

	.copyright{
		text-align: center;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 30px;
	}

	.error-page-content-heading{
		margin-bottom: 20px;
	}
	
	.error-page-content-heading h2{
		font-size: 36px;
	}
}

@media only screen and (max-width: 767px){
	
	.page-header{
        padding: 80px 0;
    }

    .page-header-box .trail-items,
	.page-header-box .post-meta ul{
		font-size: 18px;
    }

	.page-header-box .trail-items li a, 
	.page-header-box .post-meta ul li a{
		font-size: 18px;
	}

	.page-header-box .trail-items li, 
	.page-header-box .post-meta ul li{
		font-size: 18px;
	}

	.post-item-body h2{
		font-size: 18px !important;		
		margin-bottom: 15px;
	}

    .page-header-box h1{
        font-size: 30px !important;
    }

	.post-entry h1{
		font-size: 28px;
	}

	.post-entry h2{
		font-size: 24px !important;
	}

	.post-entry h3{
		font-size: 20px;
	}

	.post-entry h4{
		font-size: 18px;
	}

	.post-entry h5{
		font-size: 16px;
	}

	.post-entry h6{
		font-size: 14px;
	}
	
	.post-single-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background-position: top 20px left 20px;
		background-size: 35px;
		padding: 55px 20px 20px 20px !important;
	}

	.post-entry ul li,
	.post-entry ol li{
		font-size: 16px;
	}

	.post-entry ul li:before{
		font-size: 18px;
	}

	.post-single-meta ul li{
		margin-right: 14px;
	}

	.error-page-content-heading h2{
		font-size: 28px;
	}
}

/* Home Page Css */

.section-title .elementor-heading-title{
	padding-left: 25px;
}

.section-title .elementor-heading-title::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url('assets/images/icon-sub-heading.svg') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 18px;
    height: 18px;
}

.novaride-hide-small-icon .section-title .elementor-heading-title::before{
	display: none;
}

.novaride-hide-small-icon .section-title .elementor-heading-title{
	padding-left: 0;
}

.rent-details-box{
    display: flex;
    flex-wrap: wrap;
	align-items: center;
    gap: 25px;
}

.rent-details-box .rent-details-item{
    width: calc(22% - 20px);
	padding-right: 25px;
    border-right: 1px solid var(--e-global-color-divider);
}

.rent-details-box .rent-details-item.rent-details-search{
	width: calc(12% - 20px);
}

.rent-details-box .rent-details-item:last-child{
	border-right: none;
	padding-right: 0;
}

.wpcf7-spinner{
	display: none;
}

.wpcf7-not-valid-tip{
	color: #E65757 !important;
	font-size: 16px;
    line-height: 1.1em;
    font-weight: 400;
}

.wpcf7-response-output{
	margin: 20px 0 0 0 !important;
    padding: 5px 10px !important;
    border-radius: 30px !important;
    border: 1px solid #E65757 !important;
    line-height: 1.1em;
    color: #E65757 !important;
	background: var(--e-global-color-white);
	z-index: 10;
}

.wpcf7-form.sent .wpcf7-response-output{
	color: #46B450 !important;
	border-color: #46B450 !important;
}

.about-img-1::before{
    content: '';
    position: absolute;
    top: -10px;
    bottom: 0;
    left: -10px;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--e-global-color-divider);
    border-radius: 200px;
    z-index: 1;
}

.about-img-1 .elementor-widget-container img{
	aspect-ratio: 1 / 1.37;
    object-fit: cover;
}

.about-img-2::before{
    content: '';
    position: absolute;
    top: -8px;
    bottom: 0;
    left: -8px;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--e-global-color-divider);
    border-radius: 160px;
    z-index: 1;
}

.about-img-2 .elementor-widget-container img{
	aspect-ratio: 1 / 1.37;
    object-fit: cover;
}

.about-trusted-booking .elementskit-info-box-icon svg,
.service-item .elementskit-info-box-icon svg{
	position: relative;
	z-index: 1;
}

.about-trusted-booking .elementskit-info-box-icon::before,
.service-item .elementskit-info-box-icon::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--e-global-color-accent);
    opacity: 10%;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.about-trusted-booking:hover .elementskit-info-box-icon::before{
    opacity: 70%;
}

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

.service-item:hover .elementskit-info-box-icon::before{
	background-color: var(--e-global-color-white);
	opacity: 100%;
}

.service-item:before{
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
	bottom: 0;
    background-color: var(--e-global-color-accent);
    border-radius: 500px 500px 0 0;
    transition: all 0.4s ease-in-out;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0;
}

.service-item:hover:before{
    top: 0;
    border-radius: 0;
    opacity: 1;
}

.service-item:hover .btn-wraper a{
	background-color: var(--e-global-color-primary) !important;
}

.service-item .btn-wraper svg{
	transition: all 0.5s ease-in-out;
}

.service-item:hover .btn-wraper svg{
	transform: rotate(45deg);
}

.luxury-collection-item .elementskit-info-image-box{
	position: relative;
}

.luxury-collection-item .elementskit-box-header::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(220deg, rgba(249, 192, 119, 0) 0.73%, rgba(4, 4, 1, 0.49) 90.71%);
    z-index: 1;
}

.luxury-collection-item .elementskit-box-header img{
	width: 100%;
	aspect-ratio: 1 / 1.38;
	object-fit: cover;
	transition: all 0.5s ease-in-out !important;
}

.luxury-collection-item .elementskit-box-body{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.luxury-collection-item .elementskit-box-content{
	position: absolute;
	top: 40px;
	left: 40px;
	right: 40px;
}

.luxury-collection-item .elementskit-box-footer{
	position: absolute;
	right: 40px;
	bottom: 40px;
	margin: 0 !important;
}

.luxury-collection-item .elementskit-box-footer svg,
.luxury-collection-item .elementskit-box-footer a{
	transition: all 0.5s ease-in-out;
}

.luxury-collection-item:hover .elementskit-box-footer a{
	background-color: var(--e-global-color-primary)!important;
}

.luxury-collection-item:hover .elementskit-box-footer svg{
	transform: rotate(45deg);
}

.how-work-accordion .elementskit-card .elementskit-card-header .number{
	margin-right: 20px;
}

.how-work-accordion .elementskit-card .elementskit-card-header a{
	margin-bottom: 25px;
}

.how-work-accordion .elementskit-card.active .elementskit-card-header a,
.how-work-accordion .elementskit-card:last-child .elementskit-card-header a{
	margin-bottom: 0;
}

.how-work-accordion .elementskit-card:last-child .collapse .elementskit-card-body{
	padding-bottom: 0;
}

.how-work-img::before{
    content: '';
    position: absolute;
    top: -10px;
    bottom: 0;
    left: -10px;
    right: 0;
    width: 414px;
    height: 100%;
    margin: 0 auto;
    border: 1px solid var(--e-global-color-divider);
    border-radius: 200px;
    z-index: 1;
}

.trusted-client .elementskit-funfact-inner{
	display: flex;
	flex-direction: column-reverse;
}

.trusted-client .elementskit-funfact-inner .funfact-title{
	border-bottom: 2px solid;
	border-color: var(--e-global-color-white);
	padding-bottom: 20px;
}

.trusted-client{
    animation: trustedmoveobject 3s infinite linear alternate;
}

@keyframes trustedmoveobject{
	50%{
		right: 50px;
	}
}

.video-play-button .ekit_icon_button{
	display: flex;
	align-items: center;
	justify-content: center;
}

.company-logo img{
    height: 50px;
}

.why-choose-item .elementskit-infobox .elementskit-info-box-icon{
	position: relative;
}

.why-choose-item .elementskit-infobox .elementskit-info-box-icon::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--e-global-color-accent);
    opacity: 10%;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: 0;
    transition: all 0.5s ease-in-out;
}

.why-choose-image{
	transform: translateX(-50%);
	width: 100%;
}

.our-faqs-image{
	transform: translateY(-50%);
}

.testimonial-slider .elementskit-stars{
	line-height: normal;
}
.testimonial-slider .elementskit-stars li svg{
	width: 1em !important;
}
.testimonial-slider .elementskit-stars li svg{
	fill: currentColor;
}
.testimonial-slider .elementskit-stars li svg path{
	fill: inherit;
}

.testimonial-slider .elementskit-commentor-content{
	border-bottom: 1px solid var(--e-global-color-divider);
    margin-bottom: 30px;
}

.testimonial-slider .elementskit-testimonial-slider .swiper .swiper-button-prev::before{
	content: '';
    position: absolute;
    background: url('assets/images/icon-left-arrow.svg') no-repeat center center;
    height: 20px;
    width: 20px;
    background-size: 100% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .elementskit-testimonial-slider .swiper .swiper-button-next::before{
	content: '';
    position: absolute;
    background: url('assets/images/icon-right-arrow.svg') no-repeat center center;
    height: 20px;
    width: 20px;
    background-size: 100% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .elementskit-single-testimonial-slider .elementskit-commentor-image,
.testimonial-item-box .elementor-testimonial-wrapper .elementor-testimonial-image{
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.testimonial-slider .elementskit-single-testimonial-slider .elementskit-commentor-image::after,
.testimonial-item-box .elementor-testimonial-wrapper .elementor-testimonial-image::after{
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.testimonial-slider .elementskit-single-testimonial-slider .elementskit-commentor-image:hover:after,
.testimonial-item-box .elementor-testimonial-wrapper .elementor-testimonial-image:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.testimonial-slider .elementskit-testimonial-slider .swiper-navigation-button{
    top: calc(100% - 30px);
    display: flex !important;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .elementskit-testimonial-slider .swiper-button-next{
    right: calc(50% - 58px) !important;
}

.testimonial-slider .elementskit-testimonial-slider .swiper-button-prev{
    left: calc(50% - 58px) !important;
}

.cta-btn .elementor-button-wrapper .elementor-button:hover .elementor-button-icon{
	background: var(--e-global-color-accent); 
}

.highlighted-article-featured-img .elementskit-entry-header img{
	aspect-ratio: 1 / 0.85;
    object-fit: cover;
}

.highlighted-article-featured-img .elementskit-post-image-card{
	position: relative;
	overflow: hidden;
}

.highlighted-article-featured-img .elementskit-post-image-card::after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.highlighted-article-featured-img .elementskit-post-image-card:hover::after{
	height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.highlighted-article-featured-img .elementskit-entry-header .elementskit-entry-thumb{
	z-index: 1;
}

.highlighted-article-featured-img .ekit-wid-con .elementskit-btn::before{
	position: relative;
}

.highlighted-article-featured-img a:before{
    top: 0 !important;
    left: 0 !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 2.8%, #000000 99.93%);
	opacity: 1 !important;
	visibility: visible !important;
}

.elementor-widget-elementskit-blog-posts .post-items .elementskit-post-image-card:hover .elementskit-entry-header img{
	transform: none;
	opacity: 1;
}

.highlighted-article-featured-img .elementskit-post-body{
   max-width: 420px;
   position: absolute;
   bottom: 40px;
   left: 50px;
   right: 20px;
   z-index: 2;
} 

.highlighted-article-featured-img .btn-wraper svg path{
	stroke: none !important;
}

.highlighted-article-featured-img .btn-wraper a{
	transition: all .6s ease;
}

.highlighted-article-featured-img:hover .btn-wraper a{
	transform: rotate(45deg);
}

.article-post:last-child{
	margin-bottom: 0 !important;
}  

.article-post .row .col-lg-12:last-child .elementskit-post-image-card{
	margin-bottom: 0 !important;
}    

.article-post .elementskit-entry-header img{
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
}

.article-post.elementor-widget-elementskit-blog-posts .post-items .elementskit-post-image-card .elementskit-entry-header a:after{
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .2);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.article-post.elementor-widget-elementskit-blog-posts .post-items .elementskit-post-image-card .elementskit-entry-header a:hover:after{
    height: 250%;
    transition: all 0.5s linear !important;
    background-color: transparent;
}

.article-post .ekit-wid-con .elementskit-post-image-card:hover .elementskit-entry-thumb>img{
	opacity: 1;
}

.article-post .elementskit-entry-header{
	width: 33%;
}

.article-post .elementskit-post-body{
	width: calc(100% - 33%);
} 

.article-post .elementskit-post-image-card{
	align-items: center;
}

.article-post .btn-wraper svg{
	overflow: visible;
	margin-left: 8px;
	transition: all 0.4s ease-in-out;
}

.article-post .btn-wraper svg path{
	stroke: none !important;
	fill: var(--e-global-color-white) !important;
	transition: all 0.4s ease-in-out;
}  

.article-post .elementskit-post-image-card:hover .btn-wraper a{
	color: var(--e-global-color-primary);
}

.article-post .elementskit-post-image-card:hover .btn-wraper svg rect{
	fill: var(--e-global-color-primary);
}

.article-post .elementskit-post-image-card:hover .btn-wraper svg{
	transform: rotate(45deg);
}

@media only screen and (max-width: 1820px){

    .bg-section{
        width: calc(100% - 100px);
        margin: 0 50px;
    }

	.cta-bg-section{
		margin: 0 auto;
	}
}

@media only screen and (max-width: 1366px){

    .bg-section{
        width: calc(100% - 40px);
        margin: 0 20px;
    }

	.cta-bg-section{
		margin: 0 20px;
	}
}

@media only screen and (max-width: 991px){

	.rent-details{
		position: initial;
	}

	.rent-details-box .rent-details-item{
		width: calc(50% - 12.5px);
	}
	
	.rent-details-box .rent-details-item.rent-details-search{
		width: calc(50% - 12.5px);
	}

	.rent-details-box .rent-details-item:nth-child(2n + 2){
		border: none;
	}
	
	.luxury-collection-item .elementskit-box-header img{
		aspect-ratio: 1 / 1.3;
	}

	.luxury-collection-item .elementskit-box-content{
		top: 30px;
		left: 30px;
		right: 30px;
	}
	
	.luxury-collection-item .elementskit-box-footer{
		right: 30px;
		bottom: 30px;
	}
	
	.luxury-collection-item .elementskit-info-box-title{
		top: 30px;
		left: 30px;
	}

	.how-work-accordion .elementskit-card .elementskit-card-header a{
		margin-bottom: 20px;
	}

	.company-logo .swiper-slide{
		width: 162px !important;
	}

	.testimonial-slider .elementskit-commentor-content{
		margin-bottom: 20px;
	}

	.trusted-client .funfact-title{
		padding-bottom: 15px;
	}

	.highlighted-article-featured-img .elementskit-entry-header img{
        aspect-ratio: 1 / 0.7;
    }
	
	.article-post .elementskit-entry-header img{
		aspect-ratio: 1 / 0.7 !important;
	}
}	

@media only screen and (max-width: 767px){

	.section-title .elementor-heading-title{
		padding-left: 20px;
	}
	
	.section-title .elementor-heading-title::before{
		width: 16px;
		height: 16px;
	}

	.rent-details-box{
		gap: 20px;
	}

	.rent-details-box .rent-details-item{
		width: 100%;
		padding: 0;
	}
	
	.rent-details-box .rent-details-item.rent-details-search{
		width: 100%;
	}

	.rent-details-box .rent-details-item{
		border-right: 0;
		border-bottom: 1px solid var(--e-global-color-divider);
		padding-bottom: 10px;
	}

	.rent-details-box .rent-details-item:last-child{
		border-bottom: none;
		padding-bottom: 0;
	}

	.rent-details-box .rent-details-item:nth-child(2n + 2){
		border-bottom: 1px solid var(--e-global-color-divider);
	}

	.luxury-collection-item .elementskit-box-header img{
		aspect-ratio: 1 / 1.2;
	}
	
	.how-work-img::before{
        width: 100%; 
    }
	
	.trusted-client .elementskit-funfact-inner .funfact-title{
		padding-bottom: 10px;
	}
	
	@keyframes trustedmoveobject{
		50%{
			right: 100px;
		}
	}
	
	.company-logo .swiper-slide{
		width: 153px !important;
	}
	
	.testimonial-slider .elementskit-testimonial-slider .swiper-button-next{
		right: calc(50% - 50px) !important;
	}
	
	.testimonial-slider .elementskit-testimonial-slider .swiper-button-prev{
		left: calc(50% - 50px) !important;
	}

	.highlighted-article-featured-img .elementskit-entry-header img{
        aspect-ratio: 1 / 0.9;
    }
	
	.highlighted-article-featured-img .elementskit-post-body{
  		max-width: 100%;
  	 	bottom: 20px;
   		left: 35px;
	} 
	
	.article-post .elementskit-entry-header img{
		aspect-ratio: 1 / 1 !important;
	}
	
	.article-post .elementskit-entry-header{
		width:40%;
	}

	.article-post .elementskit-post-body{
		width: 60%;
	}	
}

/* About CSS */

.breadcrumb-style .ekit-breadcrumb{
	font-weight: 500 !important;
	font-size: 20px !important;
}

.vision-mission-tab .e-n-tabs-heading .e-n-tab-title-text{
	font-family: var(--e-global-typography-primary-font-family);
}

.vision-mission-tab .e-n-tabs-heading{
    width: fit-content;
    margin: 0 auto;
    background-color: var(--e-global-color-secondary);
    padding: 15px;
    border-radius: 100px;
}

.vision-mission-tab .vision-image img{
	aspect-ratio: 1 / 0.99;
    object-fit: cover;
}

.vision-mission-tab .vision-image .elementor-widget-container{
	border-radius: 46px;
}

.satisfied-customer-image{
    animation: satisfiedmoveobject 3s infinite linear alternate;
}

@keyframes satisfiedmoveobject{
	50% {
		left: 90px;
	}
}

.video-image.elementor-widget-image img{
	position: relative;
	width: 100%;
    aspect-ratio: 1 / 0.47;
    object-fit: cover;	
}

.video-image.elementor-widget-image::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: var(--e-global-color-primary) !important;
	opacity: 30%;
	z-index: 1;
	border-radius: 30px;
}

.video-image-play-button .video-content a{
	display: inline-flex;
    align-items: center;
    justify-content: center;
}

.team-member-item  .team-image{
	position: relative;
    overflow: hidden !important;
	border-radius: 30px;
}

.team-member-item .team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.2;
	object-fit: cover;	
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
	transform: scale(1.1);
}

.team-member-item .team-social-icon{
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 0;
	visibility: hidden;
	opacity: 0;
	transform: translateY(100%);
	transition: all 0.5s ease-in-out;
	backdrop-filter: blur(30px);
	border-radius: 30px;
}

.team-member-item:hover .team-social-icon{
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	bottom: 20px;
}

@media only screen and (max-width: 991px){

	.bg-section{
        width: 100%;
        margin: 0;
    }

	.vision-mission-tab .vision-image img{
        aspect-ratio: 1 / 0.80;
    }

	.vision-mission-tab .e-n-tabs-heading{
		padding: 10px;
	}
	
	@keyframes satisfiedmoveobject{
		50% {
			left: 60px;
		}
	}

	.video-image.elementor-widget-image  img{
        aspect-ratio: 1 / 0.78;
    }
}

@media only screen and (max-width: 767px){

	.breadcrumb-style .ekit-breadcrumb{
		font-size: 18px !important;
	}

	.vision-mission-tab .e-n-tabs-heading{
		display: flex;
	}

	.vision-mission-tab .e-n-tabs-heading{
        padding: 10px;
    }

    .video-image-play-button{
        transform: translateX(50%);
    }
}

/* Service Single CSS */

.faq-category-box .elementor-icon-list-text{
	padding-left: 0 !important;
}

.faq-category-box .elementor-icon-list-items li,
.faq-category-box .elementor-icon-list-items li a{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between !important;
}

.faq-category-box .elementor-icon-list-items .elementor-icon-list-icon svg path{
	fill: var(--e-global-color-accent);
}

.faq-category-box .elementor-icon-list-items li svg{
	transition: all 0.4s ease-in-out !important;
} 

.faq-category-box .elementor-icon-list-items li:hover svg{
	transform: rotate(45deg);
}

.service-gallery img{
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
}

@media only screen and (max-width: 991px){
	
	.service-gallery img{
      aspect-ratio: 1 / 0.85;
    }	
}

/* Team Single CSS */

.team-member-image img{
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.team-icon-list .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-text{
	font-family: var(--e-global-typography-text-font-family) !important;
}

.team-icon-list .elementor-icon-list-items .elementor-icon-list-text span{
	font-weight: 600;
    color: var(--e-global-color-primary);
	font-family: var(--e-global-typography-primary-font-family) !important;
}

.team-single-testimonial .elementskit-testimonial-slider .swiper-pagination{
	justify-content: left !important;
}

.team-single-testimonial .elementskit-commentor-content{
	margin-bottom: 20px;
}

.team-single-testimonial .swiper-pagination-bullet{
	opacity: 10%;
}

@media only screen and (max-width: 991px){

	.team-member-image img{
        aspect-ratio: 1 / 0.9;
    }
}

/* Pricing Page CSS */

.fleets-single-sidebar-pricing .elementskit-pricing-price{
	line-height: 0;
}

.pricing-item .elementskit-single-pricing .elementskit-pricing-price{
	line-height: 0 !important;
}

.pricing-item .elementskit-single-pricing  .elementskit-pricing-btn-wraper .elementskit-pricing-btn,
.sidebar-cta-box .elementskit-infobox .box-footer .btn-wraper a{
	position: relative;
	margin-right: 48px;
}

.pricing-item .elementskit-single-pricing  .elementskit-pricing-btn::before,
.sidebar-cta-box .elementskit-infobox .box-footer .btn-wraper a::after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--e-global-color-accent);
    background-image: url('assets/images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px auto;
    transform: translate(48px, 0px);
    transition: all 0.4s ease-in-out;
}

.pricing-item .elementskit-single-pricing .elementskit-pricing-btn-wraper .elementskit-pricing-btn:hover::before,
.highlighted-box .elementskit-single-pricing  .elementskit-pricing-btn:hover::before,
.sidebar-cta-box .elementskit-infobox .box-footer .btn-wraper a:hover::after{
    transform: translate(48px, 0px) rotate(45deg);
	background-color: var(--e-global-color-primary) !important;
}

.pricing-item .elementskit-single-pricing .elementskit-pricing-price .currency,
.pricing-item .elementskit-single-pricing .elementskit-pricing-price .period,
.pricing-item .elementskit-single-pricing .elementskit-pricing-price span{
	font-family: var(--e-global-typography-primary-font-family) !important;
}

.highlighted-box .elementskit-single-pricing  .elementskit-pricing-btn::before {
    background-image: url('assets/images/arrow-orange.svg') !important;
	background-color: var(--e-global-color-white) !important;
	transition: all 0.4s ease-in-out;
}

/* Price Single CSS */

.fleets-single-sidebar-list .ekit-price-menu-caption-title a,
.fleets-information-list .elementor-icon-list-text,
.fleets-amenities-list .elementor-icon-list-text{
	font-family: var(--e-global-typography-primary-font-family);
}

.fleets-single-sidebar-pricing .elementskit-pricing-btn-wraper{
	display: none;
}

.wp-btn .elementor-icon-wrapper{
	height: 48px;
    width: 48px;
    background-color: var(--e-global-color-accent);
    border-radius: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
	transition: all 0.3s ease-in-out;
}

.wp-btn .elementor-icon-wrapper:hover{
	background-color: var(--e-global-color-primary);
}

.fleets-slider img {
    overflow: hidden;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
}

.fleets-slider .swiper-slide-inner{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.fleets-slider .swiper-slide-inner::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 74.81%, rgba(0, 0, 0, 0.88) 92.46%);
    z-index: 1;
}

.fleets-slider .swiper-pagination{
	bottom: 15px !important;
}

.fleets-slider .swiper-pagination .swiper-pagination-bullet{
	margin:0 4px;
}

.fleets-benefits-item .elementor-icon-box-wrapper .elementor-icon{
	position:relative;
	padding: 5px 0px 0px 5px;
}

.fleets-benefits-item .elementor-icon-box-wrapper .elementor-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--e-global-color-accent);
    opacity: 10%;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 0;
    transition: all 0.5s ease-in-out;
}

.fleets-amenities-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.fleets-amenities-list ul li{
	width:calc(25% - 15px);
}

@media only screen and (max-width: 767px) {

    .fleets-amenities-list ul li {
        width: calc(50% - 10px);
    }

	.pricing-item  .elementor-pricing-img img{
		max-width: 220px;
	}
}

/* Gallery Page CSS */

.photo-gallery .elementor-image-gallery .gallery-item img{
	aspect-ratio: 1 / 0.92;
    object-fit: cover;
}

.photo-gallery .elementor-image-gallery .gallery-item .gallery-icon,
.service-gallery .elementor-image-gallery .gallery-item .gallery-icon{
	position: relative;
    overflow: hidden;
	border-radius: 40px;
}

.service-gallery .elementor-image-gallery .gallery-item .gallery-icon{
	border-radius: 30px;
}

.photo-gallery .elementor-image-gallery .gallery-item .gallery-icon a:after,
.service-gallery .elementor-image-gallery .gallery-item .gallery-icon a:after{
	content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.photo-gallery .elementor-image-gallery .gallery-item .gallery-icon a:hover:after,
.service-gallery .elementor-image-gallery .gallery-item .gallery-icon a:hover:after{
	height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

@media only screen and (max-width: 991px) {

	.photo-gallery .elementor-image-gallery .gallery-item img{
		aspect-ratio: 1 / 0.8;
	}
}

/* 	Video Gallery Css */

.video-gallery .ekit-video-item a::before{
    position: absolute !important;
    background-color: var(--e-global-color-primary) !important;
    border-radius: 40px;
    z-index: 1;
    transform: scale(0);
    transition: all 0.5s ease-in-out !important;
}

.video-gallery .ekit-video-item:hover a::before{
    opacity: 60% !important;
    transform: scale(1);
}

.video-gallery .ekit-video-item a i{
	width: 60px;
	height: 60px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	z-index: 1;
	transition: all 0.5s ease-in-out !important;
}

/* Testimonial Page CSS */

.testimonial-item-box .elementor-testimonial-content{
	border-bottom: 1px solid var(--e-global-color-divider);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.testimonial-item-box .elementor-testimonial-wrapper .elementor-testimonial-meta-inner{
	gap: 15px;
    display: flex;
    align-items: center;
}

.testimonial-item-box .elementor-testimonial-wrapper .elementor-testimonial-image{
	position: relative;
	overflow: hidden;
	padding: 0 !important;
}



@media only screen and (max-width: 991px){

	.testimonial-item-box .elementor-testimonial-content{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
}

/* Faq Accordion */

.faq-accordion .elementskit-card-header .elementskit-btn-link{
	font-family: var(--e-global-typography-primary-font-family);
}

/* Contact Page CSS */

.contact-us-form .ekit-form .form-group label{
	font-family: var(--e-global-typography-primary-font-family);
}

@media only screen and (max-width: 1366px){

    .contact-info-form{
        width: calc(100% - 20px);
        margin: 0 auto;
    }
}

/*  Car Single CSS  */

.page-fleets-single{
	padding: 100px 0;
}

.car-single-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 30px;
	z-index: 9999;
}

.fleets-single-sidebar{
	background-color: var(--e-global-color-secondary);
	border-radius: 30px;
	padding: 40px;
}

.fleets-single-sidebar-pricing{
	border-bottom: 1px solid var(--e-global-color-divider);
	margin-bottom: 25px;
	padding-bottom: 10px;
}

.fleets-single-sidebar-pricing h2{
	font-family: var(--e-global-typography-text-font-family) !important;
    font-size: 50px !important;
}

.fleets-single-sidebar-pricing h2 span{
    font-size: 16px;
    font-weight: 400;
	color: var(--e-global-color-text);
}

.fleets-single-sidebar-list{
	border-bottom: 1px solid var(--e-global-color-divider);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.fleets-single-sidebar-list ul{
	list-style: none;
    padding: 0;
    margin: 0;
}

.fleets-single-sidebar-list ul li{
	display: flex;
	justify-content: space-between;
	margin-bottom: 25px;
	font-family: var(--e-global-typography-secondary-font-family);
	font-weight: 500;
	color: var(--e-global-color-primary);
}

.fleets-single-sidebar-list ul li:last-child{
	margin-bottom: 0;
}

.fleets-single-sidebar-list .feature-label{
	margin-left: 10px;
}

.fleets-single-sidebar-list ul li label img,
.fleets-single-sidebar-list ul li label i{
	height: 24px;
	width: 24px;
	text-align: center;
}

.fleets-single-sidebar-list ul li .feature-value{
	margin-left: 10px;
}

.fleets-single-sidebar-btn{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.fleets-single-sidebar-btn span{
	font-size: 16px;
	font-weight: 500;
}

.fleets-single-sidebar-btn .wp-btn{
	background-color: var(--e-global-color-accent);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.fleets-single-sidebar-btn .wp-btn:hover{
	background-color: var(--e-global-color-primary);
}

.fleets-single-sidebar-btn .wp-btn i{
	font-size: 24px;
	color: var(--e-global-color-white);
}

.fleets-single-sidebar-btn span.wpcf7-not-valid-tip{
	font-weight: 400;	
}

.car-single-sidebar .sidebar-widget{
	margin-top: 30px;
}

.fleets-single-content figure.image-anime:after{
	display: none;
}

@media only screen and (max-width: 991px){

	.page-fleets-single{
		padding: 50px 0;
	}

	.car-single-sidebar{
		position: inherit;
		margin-right: 0px;
		margin-bottom: 30px;
	}

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

	.fleets-single-sidebar-pricing{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.fleets-single-sidebar-pricing h2{
		font-size: 40px !important;
	}

	.fleets-single-sidebar-list ul li{
		margin-bottom: 20px;
	}

	.fleets-single-sidebar-list{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.fleets-single-sidebar-btn{
		width: 100%;
		max-width: 300px;
	}
}

@media only screen and (max-width: 767px){

	.fleets-single-sidebar-btn{
		max-width: 100%;
	}

	.fleets-single-sidebar{
        padding: 20px;
    }

	.fleets-single-sidebar-pricing h2{
        font-size: 30px !important;
    }

	.fleets-single-content .post-single-image img {
        aspect-ratio: 1 / 0.50;
    }
}

/* Car Lists CSS */

.page-fleets{
	padding: 100px 0;
}

.fleets-sidebar {
    position: sticky;
    top: 20px;
}

.page-fleets aside.widget .searchandfilter ul{
	padding-left: 0 !important;
}

.page-fleets .searchandfilter ul li{
	padding: 0;
	width: 100%;
}

.page-fleets .searchandfilter ul li label{
	display: flex;
	align-items: center;
}

.page-fleets .searchandfilter div > ul > li{
	border-bottom: 1px solid var(--e-global-color-divider);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.page-fleets .searchandfilter div > ul > li:last-child{
	border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-fleets .searchandfilter ul li h4{
	font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
	margin: 0 0 20px 0;
}

.page-fleets .searchandfilter ul li input[type="text"]{
	padding: 10px 20px;
	margin: 0;
	border: none;
	border-radius: 100px;
	color: var(--e-global-color-text);
	font-weight: 500;
	background: var(--e-global-color-white);
	width: 100%;
}

.page-fleets .searchandfilter ul li ul{
	margin: 0;
}

.page-fleets .searchandfilter ul li input::placeholder{
	color: var(--e-global-color-text);
	font-weight: 500;
}

.page-fleets .searchandfilter .cat-item{
	color: var(--e-global-color-text);
}

.page-fleets .searchandfilter .cat-item input[type="checkbox"]{
	background-color: transparent;
	border: 1px solid var(--e-global-color-text);
	border-color: var(--e-global-color-text);
	width: 16px;
	height: 16px;
	margin-top: 0;
	margin-left: 0;
	margin-right: 15px;
	box-shadow: none;
	outline: none;
}

.page-fleets .searchandfilter ul li input[type="submit"]{
	padding: 15px 30px;
	margin: 0;
	border: none;
	border-radius: 100px;
	transition: all 0.3s ease-in-out;
	line-height: 1em;
	font-weight: 700;
}

.perfect-fleet-item{
	border: 1px solid var(--e-global-color-divider);
	border-radius: 30px;
	padding: 20px;
}

.perfect-fleet-item.fleets-collection-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.perfect-fleet-item .image-box{
	text-align: center;
	margin-bottom: 25px;
}

.perfect-fleet-title{
	margin-bottom: 25px;
}

.perfect-fleet-title h3{
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 1em !important;
	display: inline-block;
	background-color: var(--e-global-color-divider);
	border-radius: 100px;
	padding: 10px 20px;
	margin-bottom: 15px;
}

.perfect-fleet-title h2{
	font-size: 20px !important;
	font-weight: 600 !important;
}

.perfect-fleet-body{
	border-bottom: 1px solid var(--e-global-color-divider);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.perfect-fleet-body ul{
	list-style: none;
    padding: 0;
	margin: 0;
}

.perfect-fleet-body ul li{
	display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--e-global-color-text);
}

.perfect-fleet-body ul li:last-child{
	margin-bottom: 0;
}

.perfect-fleet-body ul li .feature-label{
	margin-left: 5px;
}

.perfect-fleet-body ul li label img,
.perfect-fleet-body ul li label i{
	height: 20px;
	width: 20px;
	text-align: center;
}

.perfect-fleet-body ul li .feature-value{
	margin-left: 10px;
}

.perfect-fleet-footer{
	display: flex;
	align-items: center;
}

.perfect-fleet-pricing{
	width: calc(100% - 40px);
}

.perfect-fleet-pricing h2{
	font-family: var(--e-global-typography-text-font-family) !important;
	font-size: 24px !important;
}

.perfect-fleet-pricing h2 span{
	font-size: 14px;
	font-weight: 400;
}

.perfect-fleet-btn .section-icon-btn{
	background-color: var(--e-global-color-accent);
	border-radius: 100%;
	width: 40px;
	height: 40px;
	margin-left: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s ease-in-out;
}

.perfect-fleet-btn .section-icon-btn img{
	max-width: 12px;
	transition: all 0.3s ease-in-out;
}

.perfect-fleet-item:hover .perfect-fleet-btn .section-icon-btn img{
	transform: rotate(45deg);
}

.perfect-fleet-item:hover .perfect-fleet-btn .section-icon-btn{
	background-color: var(--e-global-color-primary);
}

@media only screen and (max-width: 991px){

	.fleets-sidebar {
		position: inherit;
	}

	.page-fleets .searchandfilter div > ul > li {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.page-fleets .sidebar-widget{
		margin-top: 0;
	}

	.page-fleets {
        padding: 50px 0;
    }

	.perfect-fleet-item .image-box{
		margin-bottom: 20px;
	}

	.perfect-fleet-item .image-box img{
		max-width: 200px;
	}

	.perfect-fleet-title{
		margin-bottom: 20px;
	}

	.perfect-fleet-body{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.perfect-fleet-pricing h2{
		font-size: 22px !important;
	}
}

@media only screen and (max-width: 767px){

	.page-fleets .searchandfilter ul li h4{
		font-size: 18px;		
		margin: 0 0 10px 0;
	}

	.perfect-fleet-item .image-box {
        margin-bottom: 15px;
    }

	.perfect-fleet-title{
		margin-bottom: 15px;
	}

	.perfect-fleet-title h2{
		font-size: 18px !important;
	}

	.perfect-fleet-body{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.perfect-fleet-title h3{
		padding: 8px 15px;
	}

	.perfect-fleet-pricing h2{
        font-size: 20px !important;
    }

	.perfect-fleet-btn .section-icon-btn {
        width: 34px;
        height: 34px;
    }

	.perfect-fleet-btn .section-icon-btn img {
        max-width: 10px;
    }
}

/* our Fleets Slider */

.novaride-car-slider .novaride-main-swiper{
	padding-bottom: 100px;
}

.novaride-car-slider .swiper-button-prev, 
.novaride-car-slider .swiper-button-next{
	top: auto;
    bottom: 0;
	width: 48px;
    height: 48px;
    background-color: var(--e-global-color-accent);
	color: var(--e-global-color-white);
    border-radius: 100%;
    transition: all 0.4s ease-in-out;
}

.novaride-car-slider .swiper-button-prev{
	left: calc(50% - 60px);
}

.novaride-car-slider .swiper-button-next{
	right: calc(50% - 60px);
}

.novaride-car-slider .swiper-button-prev:hover, 
.novaride-car-slider .swiper-button-next:hover{
	background-color: var(--e-global-color-primary);
}

.novaride-car-slider .swiper-button-next:after,
.novaride-car-slider .swiper-button-prev:after{
	content: "";
	position: absolute;
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	font-size: 16px;
	background: url(assets/images/arrow-white.svg) no-repeat center center;
	background-size: 14px auto;
	transform: rotate(225deg);
}

.novaride-car-slider .swiper-button-next:after{
	transform: rotate(45deg);
}

@media only screen and (max-width: 991px){}

@media only screen and (max-width: 767px){

	.novaride-car-slider .novaride-main-swiper{
		padding-bottom: 70px;
	}

	.novaride-car-slider .swiper-button-prev, 
	.novaride-car-slider .swiper-button-next{
		width: 40px;
		height: 40px;
	}
	
	.novaride-car-slider .swiper-button-prev{
		left: calc(50% - 50px);
	}
	
	.novaride-car-slider .swiper-button-next{
		right: calc(50% - 50px);
	}

	.novaride-car-slider .swiper-button-next:after,
	.novaride-car-slider .swiper-button-prev:after{
		background-size: 12px auto;
	}

}

/* Booking Form CSS */

.booking-form .ekit-popup-modal__toggler-wrapper .ekit-popup-btn{
	position: relative;
	margin-right: 48px;
}

.booking-form .ekit-popup-modal__toggler-wrapper .ekit-popup-btn::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
	left: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--e-global-color-accent);
    background-image: url(assets/images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px auto;
    transform: translate(48px, 0px);
    transition: all 0.4s ease-in-out;
	opacity: 1;
	z-index: 1;
}

.booking-form .ekit-popup-modal__toggler-wrapper .ekit-popup-btn:hover::before{
	background-color: var(--e-global-color-primary);
    background-size: 14px auto;
    transform: translate(48px, 0px) rotate(45deg);
}

.booking-form .ekit-popup__header {
	margin-bottom: 40px;
}

.booking-form .ekit-popup__raw-content p{
	margin: 0;
}

.booking-form .booking-form-group p{
	margin: 0;
}

.booking-form .booking-form-group .form-control{
	width: 100%;
	padding: 12px 25px 12px 20px;
    background-color: transparent;
    border: 1px solid var(--e-global-color-divider);
    border-radius: 10px;
    color: var(--e-global-color-primary);
    box-shadow: none;
}

.booking-form .select-field .wpcf7-form-control-wrap .form-control{
	-webkit-appearance: none;
  	-moz-appearance: none;
  	-o-appearance: none;
  	appearance: none;
	background: url('assets/images/dropdown.svg') no-repeat center right 12px;
	background-size: 14px auto;
	line-height: 1.7em;
}

.booking-form-group .btn-default{
	margin: 0;
	padding: 16px 40px !important;
}

.booking-form-group .btn-default:hover{
	background-color: var(--e-global-color-primary) !important;
}

.booking-form-group .btn-default:hover::before{
	display: none;
}

@media only screen and (max-width: 991px){

	.booking-form .ekit-popup__header {
		margin-bottom: 30px;
	}
}

/****************************/
/***  Novaride Dark CSS  ****/
/****************************/

.novaride-dark{
	background-color: var(--e-global-color-primary);
}

.novaride-dark h1,
.novaride-dark h2,
.novaride-dark h3,
.novaride-dark h4,
.novaride-dark h5,
.novaride-dark h6{
	color: var(--e-global-color-white);
}

.novaride-dark p{
	color: var(--e-global-color-text);
}

.novaride-dark .btn-default:hover::before {
    background-color: var(--e-global-color-accent);
}

/* Dark Header CSS  */

.novaride-dark .navbar-brand h1, 
.novaride-dark .navbar-brand h2{
	color: var(--e-global-color-white);
}

.novaride-dark .main-menu ul li a{
	color: var(--e-global-color-white);
}

/* Daek Footer CSS */

.novaride-dark footer.footer{
	background-color: var(--e-global-color-secondary);
}

/* Daek Page Header CSS */

.novaride-dark .page-header{
	background-color: var(--e-global-color-secondary);
}

.novaride-dark .page-header-box .trail-items li a:hover, 
.novaride-dark .page-header-box .post-meta ul li a:hover{
	color: var(--e-global-color-white);
}

/* Dark Blog List Page */

.novaride-dark .post-item:hover .post-item-btn .read-story-btn {
    color: var(--e-global-color-white);
}

.novaride-dark .post-item:hover .post-item-btn .read-story-btn::after {
    background-color: var(--e-global-color-accent);
}

/* Dark Blog Single Page */

.novaride-dark .post-entry h1,
.novaride-dark .post-entry h2,
.novaride-dark .post-entry h3,
.novaride-dark .post-entry h4,
.novaride-dark .post-entry h5,
.novaride-dark .post-entry h6{
	color: var(--e-global-color-white);
}

.novaride-dark .post-entry blockquote p{
	color: var(--e-global-color-white);
}

.novaride-dark .post-entry blockquote cite{
    color: var(--e-global-color-white);
}

.novaride-dark .post-entry ul li,
.novaride-dark .post-entry ol li{
	color: var(--e-global-color-white);
}

.novaride-dark .post-entry ul li a{
	color: var(--e-global-color-white);
}

.novaride-dark .tag-links{
	color: var(--e-global-color-white);
}

.novaride-dark .post-tags .tag-links a:hover{
	background: var(--e-global-color-secondary);
}

.novaride-dark .post-social-sharing ul li a:hover {
    background-color: var(--e-global-color-secondary);
}

.novaride-dark .comment-form textarea, 
.novaride-dark .comment-form input[type="text"], 
.novaride-dark .comment-form input[type="email"], 
.novaride-dark .comment-form input[type="url"]{
	color: var(--e-global-color-white);
}

.novaride-dark .page-single-post .comment-box .comment-reply-title, 
.novaride-dark .page-single-post .comment-box .title-comments, 
.novaride-dark .wp-block-post-comments-form .comment-reply-title, 
.novaride-dark .wp-block-post-comments-form .title-comments{
	color: var(--e-global-color-white);
}

.novaride-dark .comment-form .form-submit .submit:hover{
	background: var(--e-global-color-secondary);
}

.novaride-dark aside.widget .wp-block-heading, 
.novaride-dark aside.widget .widget-title{
	color: var(--e-global-color-white);
}

.novaride-dark aside.widget ul li,
.novaride-dark aside.widget ul li a{
	color: var(--e-global-color-white);
}

.novaride-dark .comment-list .comment .comment-meta .comment-author a{
	color: var(--e-global-color-white);
}

.novaride-dark .comment-list .comment .comment-meta .comment-author a:hover{
	color: var(--e-global-color-accent);
}

.novaride-dark .comment-list .comment .reply a:hover {
    background: var(--e-global-color-secondary);
}

.novaride-dark .page-single-post .comment-box .comment-reply-title #cancel-comment-reply-link:hover, 
.novaride-dark .wp-block-post-comments-form .comment-reply-title #cancel-comment-reply-link:hover{
	background: var(--e-global-color-secondary);
}

.novaride-dark .post-entry ul li a{
	color: var(--e-global-color-white);
}

.novaride-dark .post-entry ul li a:hover{
	color: var(--e-global-color-accent);
}

.novaride-dark .post-entry table tr td, 
.novaride-dark .post-entry table tr th{
	color: var(--e-global-color-white);
	border-color: var(--e-global-color-divider);
}

.novaride-dark .post-entry table caption{
	color: var(--e-global-color-white);
}

.novaride-dark .wp-block-latest-comments a{
	color: var(--e-global-color-white);
}

.novaride-dark .wp-block-search .wp-block-search__button:hover{
	background: var(--e-global-color-secondary) !important;
}

.novaride-dark .wp-block-tag-cloud a:hover {
    background: var(--e-global-color-secondary);
}

.novaride-dark .wp-block-button .wp-element-button:hover,
.novaride-dark .wp-block-button.is-style-outline .wp-element-button:hover,
.novaride-dark .wp-element-button:hover,
.novaride-dark .wp-block-button .wp-block-button__link:hover,
.novaride-dark .wp-block-file .wp-block-file__button:hover{
	background: var(--e-global-color-secondary) !important;
}

.novaride-dark .wp-block-button.is-style-outline .wp-element-button{
	background: var(--e-global-color-secondary);
}

.novaride-dark .post-entry table,
.novaride-dark .post-entry table tr td, 
.novaride-dark .post-entry table tr th{
	border-color: var(--e-global-color-divider);
}

.novaride-dark .post-password-form input[type="password"]{
	color: var(--e-global-color-white);
}

.novaride-dark .post-password-form input[type="submit"]:hover {
    background: var(--e-global-color-secondary);
}

.novaride-dark .comment-content h1,
.novaride-dark .comment-content h2,
.novaride-dark .comment-content h3,
.novaride-dark .comment-content h4,
.novaride-dark .comment-content h5,
.novaride-dark.comment-content h6{
	color: var(--e-global-color-white);
	margin: 0.8em 0;
}

.novaride-dark .comment-content table tr th{
	color: var(--e-global-color-white);
}

.novaride-dark .comment-content table,
.novaride-dark .comment-content table tr td, 
.novaride-dark .comment-content table tr th{
	border-color: var(--e-global-color-divider);
}

.novaride-dark .comment-content ul li{
	color: var(--text-color);
}

.novaride-dark aside.widget select, 
.novaride-dark aside.widget .wp-block-categories-dropdown select,
.novaride-dark aside.widget .wp-block-archives-dropdown select{
	background: var(--e-global-color-accent);
	color: var(--e-global-color-white);
}

.novaride-dark aside.widget table{
	background: var(--e-global-color-primary);
	color: var(--e-global-color-white);
}

.novaride-dark aside.widget table tr td, 
.novaride-dark aside.widget table tr th{
	border-color: var(--e-global-color-divider);
	background: var(--e-global-color-primary);
}

.novaride-dark .wp-block-calendar .wp-calendar-table caption{
	color: var(--e-global-color-white);
}

.novaride-dark aside.widget .wp-block-latest-comments a, 
.novaride-dark aside.widget.widget_tag_cloud a{
	color: var(--e-global-color-white);
}

.novaride-dark .wp-block-search .wp-block-search__button:hover{
	background: var(--e-global-color-primary) !important;
}

.novaride-dark aside.widget .wp-block-tag-cloud a:hover{
	background: var(--e-global-color-primary);
}

.novaride-dark aside.widget table caption{
	color: var(--e-global-color-white) !important;
}

/* Dark Home Page */

.novaride-dark .elementor-widget-button .elementor-button:hover .elementor-button-icon{
	background: var(--e-global-color-accent);
}

.novaride-dark .btn-highlighted.elementor-widget-button .elementor-button:hover .elementor-button-icon{
	background: var(--e-global-color-white);
}

.novaride-dark .dark-rent-details-box{
	backdrop-filter: blur(50px);
}

.novaride-dark input.wpcf7-form-control.wpcf7-date::-webkit-calendar-picker-indicator{
    filter: invert(1);
    opacity: 0.6;
}

.novaride-dark .about-trusted-booking .elementskit-info-box-icon::before,
.novaride-dark .service-item .elementskit-info-box-icon::before{	
    background-color: var(--e-global-color-white);    
}

.novaride-dark .about-trusted-booking:hover .elementskit-info-box-icon::before ,
.novaride-dark .service-item:hover .elementskit-info-box-icon::before{
    opacity: 30%;
}

.novaride-dark .perfect-fleet-item {
    border: none;
	background: var(--e-global-color-secondary);
}

.novaride-dark .perfect-fleet-title h3{
	background: var(--e-global-color-primary);
}

.novaride-dark .novaride-car-slider .swiper-button-prev:hover, 
.novaride-dark .novaride-car-slider .swiper-button-next:hover {
    background-color: var(--e-global-color-secondary);
}

.novaride-dark .article-post .elementskit-post-image-card:hover .btn-wraper a{
	color: var(--e-global-color-white);
}

.novaride-dark .article-post .elementskit-post-image-card:hover .btn-wraper svg rect{
	fill: var(--e-global-color-accent);
}

/* Dark About Us Page */

.novaride-dark .why-choose-item .elementskit-infobox .elementskit-info-box-icon::before{
	background-color: var(--e-global-color-white);
}

/* Dark Service Single Page */

.novaride-dark .pricing-item .elementskit-single-pricing .elementskit-pricing-btn-wraper .elementskit-pricing-btn:hover::before{
	background-color: var(--e-global-color-accent) !important;
}

.novaride-dark .sidebar-cta-box .elementskit-infobox .box-footer .btn-wraper a:hover::after{
	background-color: var(--e-global-color-accent) !important;
}

/* Dark Cars List Page */

.novaride-dark .page-fleets .searchandfilter ul li input[type="text"]{
	background: var(--e-global-color-primary);
}

.novaride-dark .pagination .nav-links span.current, 
.novaride-dark .pagination .nav-links a:hover{
	background: var(--e-global-color-secondary);
}

/* Dark Cars Single Page */

.novaride-dark .fleets-single-sidebar-list ul li{
	color: var(--e-global-color-white);
}

.novaride-dark .page-fleets .searchandfilter ul li input[type="submit"]{
	background-color: var(--e-global-color-accent);
	color: var(--e-global-color-white);
}

.novaride-dark .page-fleets .searchandfilter ul li input[type="submit"]:hover{
	background: var(--e-global-color-primary);
}

.novaride-dark .booking-form .ekit-popup-modal__toggler-wrapper .ekit-popup-btn:hover::before{
	background-color: var(--e-global-color-accent);
}

.novaride-dark .fleets-benefits-item .elementor-icon-box-wrapper .elementor-icon::before{
	background-color: var(--e-global-color-white);
}

.novaride-dark .booking-form .booking-form-group .form-control{
    color: var(--e-global-color-white);
}

.novaride-dark .booking-form .booking-form-group .form-control::placeholder{
	font-weight: 500;
	color: var(--white-color);
}

.novaride-dark .booking-form .select-field .wpcf7-form-control-wrap .form-control{
	background: url('assets/images/dropdown-white.svg') no-repeat center right 12px;
	background-color: var(--e-global-color-accent);
}

.novaride-dark .booking-form-group .btn-default{
	background-color:var(--e-global-color-primary)
}

.novaride-dark .booking-form-group .btn-default:hover,
.novaride-dark .booking-form-group .btn-default:focus{
	background-color:var(--e-global-color-primary) !important;
}

.novaride-dark .booking-form-group input.wpcf7-form-control.wpcf7-date::-webkit-calendar-picker-indicator{
    filter: invert(1);
    opacity: 1;
}

.novaride-dark .wpcf7-not-valid-tip{
    color: var(--e-global-color-primary) !important;
}

/* Dark Driver Single CSS */

.novaride-dark .team-icon-list .elementor-icon-list-items .elementor-icon-list-text span{
	color: var(--e-global-color-white);
}

.novaride-dark .team-single-testimonial .swiper-pagination-bullet{
	opacity: 1;
}

/* Dark Driver Pricing Page CSS */

.novaride-dark .pricing-item.highlighted-box .elementskit-single-pricing .elementskit-pricing-btn-wraper .elementskit-pricing-btn:hover::before{
	background-color: var(--e-global-color-white) !important;
}

/*  Dark Contact Us CSS */

.novaride-dark .wpcf7-response-output{
	background: transparent;
}

@media only screen and (max-width: 991px){
	
	.dark-contact-us{
		background-color: initial !important;
	}
}
