/* Css For Evofly */



/*** 

====================================================================
    Reset
====================================================================

 ***/

:root {
	--theme_color_01: #AB9C81;
	--theme_color_02: #B04247;
	--theme_color_03: #777777;
	--theme_color_04: #1C2833;
	--theme_color_05: #16222F;
	--theme_color_06: #000000;
	--theme_color_07: #ff0000;
	--bg_color_01: #AB9C81;
	--bg_color_02: #ffa7ab;
	--bg_color_03: #777777;
	--bg_color_04: #1C2833;
	--bg_color_05: #16222F;
	--lora: 'Lora', serif;
	--jost: 'Jost', sans-serif;
	--poppins: 'Poppins', sans-serif;
	--opensans: 'Open Sans', sans-serif;
}

.theme-color-01 {
	color: var(--bg_color_01);
}

.theme-color-02 {
	color: var(--bg_color_02);
}

.theme-color-03 {
	color: var(--bg_color_03);
}

.theme-color-04 {
	color: var(--bg_color_04);
}

.theme-color-05 {
	color: var(--bg_color_05);
}

.theme-color-06 {
	color: var(--theme_color_06);
}

.theme-color-07 {
	color: var(--theme_color_07);
}

.f_lora {
	font-family: var(--lora);
}

.f_jost {
	font-family: var(--jost);
}

.f_poppins {
	font-family: var(--poppins);
}

.f_opensans {
	font-family: var(--opensans);
}

.fs_24 {
	font-size: 24px;
}

.lh_36 {
	line-height: 36px;
}

.fs_47 {
	font-size: 47px;
}

.fs_72 {
	font-size: 72px;
}

.fs_96 {
	font-size: 96px;
}

.py_22 {
	padding: 22px 0px;
}

.pt_115 {
	padding-top: 115px;
}

.py_220 {
	padding: 220px 0px;
}

.pt_250 {
	padding-top: 250px;
}

.pb_380 {
	padding-bottom: 380px;
}

.tt_u {
	text-transform: uppercase;
}

.tt_c {
	text-transform: capitalize;
}

.tt_l {
	text-transform: lowercase;
}

* {
	margin: 0px;
	padding: 0px;
	border: none;
	outline: none;
}

/*** 

====================================================================
    Global Settings
====================================================================

 ***/


body {
	font-size: 14px;
	color: #777777;
	line-height: 26px;
	font-weight: 400;
	font-family: var(--opensans);
	background: #ffffff;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	-webkit-font-smoothing: antialiased;
}

@media (min-width:1200px) {
	.container {
		max-width: 1200px;
		padding: 0px 15px;
	}
}

.large-container {
	max-width: 1550px;
	padding: 0px 15px;
	margin: 0 auto;
}

.container-fluid {
	padding: 0px;
}

.auto-container {
	position: static;
	max-width: 1200px;
	padding: 0px 15px;
	margin: 0 auto;
}

.small-container {
	max-width: 680px;
	margin: 0 auto;
}

.boxed_wrapper {
	position: relative;
	margin: 0 auto;
	overflow: hidden !important;
	width: 100%;
	min-width: 300px;
}

a {
	text-decoration: none;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

a:hover {
	text-decoration: none;
	outline: none;
	color: var(--theme_color_02);
}

input, button, select, textarea {
	font-family: var(--opensans);
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	background: transparent;
}

::-webkit-input-placeholder {
	color: inherit;
}

::-moz-input-placeholder {
	color: inherit;
}

::-ms-input-placeholder {
	color: inherit;
}

ul, li {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

input {
	transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus {
	outline: none;
	box-shadow: none;
	transition: all 500ms ease;
}

p {
	position: relative;
	font-family: var(--opensans);
	color: #777777;
	font-weight: 400;
	margin: 0px;
	transition: all 500ms ease;
}

h1, h2, h3, h4, h5, h6 {
	position: relative;
	font-family: var(--lora);
	color: #1C2833;
	margin: 0px;
	transition: all 500ms ease;
}

.centred {
	text-align: center;
}

.pull-left {
	float: left;
}

.pull-right {
	float: right;
}

figure {
	margin: 0px;
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	transition-delay: .1s;
	transition-timing-function: ease-in-out;
	transition-duration: .7s;
	transition-property: all;
}

/** button **/

.theme-btn {
	position: relative;
	display: inline-block;
	overflow: hidden;
	vertical-align: middle;
	font-size: 14px;
	line-height: 30px;
	font-weight: 700;
	font-family: var(--lora);
	text-align: center;
	padding: 13px 20px;
	text-transform: capitalize;
	z-index: 1;
	cursor: pointer;
	transition: all 500ms ease;
}

.theme-btn:before {
	position: absolute;
	content: '';
	width: 0%;
	height: 100%;
	right: 0px;
	top: 0px;
	z-index: -1;
	transition: all 500ms ease;
}

.theme-btn:hover:before {
	width: 100%;
	left: 0px;
}

.theme-btn.btn-one {
	color: #ffffff;
	border: 2px solid rgb(255 255 255 / 10%);
}

.theme-btn.btn-one:before {
	opacity: 0.1;
	background: var(--bg_color_02);
}

.theme-btn.btn-one:hover {
	border-color: rgb(176 66 71 / 10%);
}

.theme-btn.btn-two {
	color: #fff;
	background: var(--bg_color_01);
	border: 2px solid var(--theme_color_01);
}

.theme-btn.btn-two:before {
	opacity: 0.2;
	background: var(--bg_color_05);
}

.theme-btn.btn-three {
	color: #fff;
	border: 2px solid #ffffff;
}

.theme-btn.btn-three:before {
	opacity: 0.2;
	background: #ffffff;
}

.theme-btn.btn-four {
	color: var(--theme_color_03);
	background-color: #F6F6F6;
}

.theme-btn.btn-four:before {
	opacity: 1;
	background: var(--bg_color_01);
}

.theme-btn.btn-four:hover {
	color: #ffffff;
}

.theme-btn.btn-five {
	color: #fff;
	background: var(--bg_color_05);
	border: 2px solid var(--theme_color_05);
}

.theme-btn.btn-five:before {
	opacity: 0.2;
	background: var(--bg_color_02);
}

.theme-btn.btn-six {
	color: var(--theme_color_03);
	background-color: #f6f6f6;
}

.theme-btn.btn-six:hover {
	color: #ffffff;
	background-color: var(--bg_color_01);
}

.pagination {
	position: relative;
	display: block;
}

.pagination li {
	position: relative;
	display: inline-block;
	margin: 0px 6px;
}

.pagination li a {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: var(--theme_color_03);
	padding: 10px 15px;
	font-family: var(--lora);
	border: 1px solid #E8E8E8;
	text-align: center;
	display: inline-block;
	background: transparent;
	transition: all 500ms ease;
}

.pagination li .pagination-btn {
	background-color: #E8E8E8;
}

.pagination li a:hover,
.pagination li a.current {
	color: #ffffff;
	background-color: var(--bg_color_01);
	background-color: var(--theme_color_01);
}

.pagination li .pagination-btn:hover {
	color: #ffffff;
	background-color: var(--bg_color_01);
	background-color: var(--theme_color_01);
}

.sec-pad {
	padding: 115px 0px 120px 0px;
}

.sec-subtitle {
	font-size: 14px;
	line-height: 1.6em;
	font-weight: 500;
	letter-spacing: 4.8px;
	color: var(--theme_color_01);
	font-family: var(--lora);
	text-transform: uppercase;
	margin-bottom: 18px;
}

.sec-title {
	font-size: 36px;
	line-height: 48px;
	font-weight: 500;
	letter-spacing: 1px;
	color: var(--theme_color_04);
	font-family: var(--lora);
	margin-bottom: 10px;
}

.sec-title.color_white {
	color: #ffffff;
}

.sec-text {
	font-size: 14px;
	line-height: 30px;
	font-weight: 400;
	color: var(--theme_color_03);
	font-family: var(--opensans);
}

.mr-0 {
	margin: 0px !important;
}

/** scroll-to-top **/

.scroll-to-top {
	position: fixed;
	right: 0px;
	bottom: 100px;
	transform: rotate(90deg);
	z-index: 99;
}

.scroll-to-top .visible {
	visibility: visible !important;
	opacity: 1 !important;
}

.scroll-to-top .scroll-top-inner {
	opacity: 0;
	visibility: hidden;
}

.scroll-to-top .scroll-top-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
	-o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
	transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}

.scroll-to-top .scroll-bar {
	width: 50px;
	height: 2px;
	margin-right: 10px;
	position: relative;
}

.scroll-to-top .scroll-bar:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #f4244f;
	opacity: .3;
}

.scroll-to-top .scroll-bar .bar-inner {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background-color: currentColor;
}

.scroll-to-top .scroll-bar-text {
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 500ms ease;
}

.scroll-to-top .scroll-bar-text:hover {
	transform: scale(1.1);
}

@-webkit-keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

@keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}


/** Tab Box **/

.tabs-box .tab {
	position: relative;
	display: none;
	transition: all 900ms ease;
	-moz-transition: all 900ms ease;
	-webkit-transition: all 900ms ease;
	-ms-transition: all 900ms ease;
	-o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab {
	display: block;
}

.tabs-box .tab {
	transform: scale(0.9, 0.9) translateY(0px);
}

.tabs-box .tab.active-tab {
	transform: scale(1) translateY(0px);
}

/*** 

====================================================================
                            Home-Page-One
====================================================================

***/


/** main-header **/
.main-header {
	position: relative;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index: 999;
	width: 100%;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.sticky-header {
	position: fixed;
	opacity: 0;
	visibility: hidden;
	left: 0px;
	top: 0px;
	width: 100%;
	z-index: 0;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.fixed-header .sticky-header {
	z-index: 999;
	opacity: 1;
	visibility: visible;
	-ms-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-op-animation-name: fadeInDown;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-ms-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-op-animation-duration: 500ms;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-op-animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-ms-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-op-animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

/** header-lower **/

.main-header .outer-box {
	position: absolute;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.main-header .outer-box .logo-box {
	width: 15%;
	margin-left: -25px;
}

.main-header .outer-box .menu-area {
	width: 45%;
}

.main-header .outer-box .support-box {
	width: 20%;
}

/** main-menu **/

.main-menu .navbar-collapse {
	padding: 0px;
	display: block !important;
}

.main-menu .navigation {
	margin: 0px;
}

.main-menu .navigation>li {
	position: inherit;
	z-index: 2;
	display: inline-block;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.main-menu .navigation>li>a {
	position: relative;
	display: inline-block;
	text-align: center;
	font-size: 18px;
	line-height: 24px;
	padding: 38px 20px;
	font-weight: 500;
	font-family: 'Lora', serif;
	opacity: 1;
	color: #ffffff;
	z-index: 1;
	margin-bottom: -1px;
	text-transform: capitalize;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.main-menu .navigation>li.menu-item-has-children.current>a,
.main-menu .navigation>li:hover>a {
	background-color: var(--bg_color_02);
}

.main-menu .navigation>li>ul {
	position: absolute;
	left: inherit;
	top: 100%;
	width: 230px;
	margin-top: 15px;
	z-index: 100;
	display: none;
	opacity: 0;
	visibility: hidden;
	border-radius: 0px;
	background-color: #ffffff;
	transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}

.main-menu .navigation>li>ul li {
	position: relative;
	width: 100%;
	border-bottom: 1px solid rgb(140 140 140 / 31%);
}

.main-menu .navigation>li>ul>li:last-child {
	border-bottom: none;
}

.main-menu .navigation>li>ul>li a {
	position: relative;
	display: block;
	padding: 10px 20px;
	line-height: 24px;
	font-weight: 400;
	font-size: 14px;
	text-transform: capitalize;
	font-family: var(--lora);
	color: #4c4c4c;
	text-align: left;
	z-index: 1;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li a:before {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	width: 0px;
	height: 100%;
	content: '';
	opacity: 0;
	z-index: -1;
	background-color: var(--bg_color_02);
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li a:hover {
	color: #ffffff;
}

.main-menu .navigation>li>ul>li a:hover:before {
	width: 100%;
	opacity: 1;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 100%;
    width: 230px;
    z-index: 100;
    display: none;
    border-radius: 0px;
    background-color: #ffffff;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation li.menu-item-has-children:hover > ul {
	visibility: visible;
	opacity: 1;
	top: 0;
}

.main-menu .navigation li.menu-item-has-children .dropdown-btn {
	display: none;
}

.menu-area .mobile-nav-toggler {
	position: relative;
	float: right;
	font-size: 40px;
	line-height: 50px;
	cursor: pointer;
	color: #3786ff;
	display: none;
}

.main-header.home-two .main-menu .navigation>li.current-menu-item>a, .main-header.home-two .main-menu .navigation>li:hover>a {
	color: #ffffff;
	background-color: var(--bg_color_02);
}

.main-menu .navigation>li.current-menu-item>a, .main-menu .navigation>li:hover>a {
	background-color: var(--bg_color_02);
}

.main-menu .navigation>li.menu-item-has-children.current-menu-item>a {
	background-color: var(--bg_color_02);
}

.main-menu .navigation>li.menu-item-has-children:hover>ul {
	visibility: visible;
	opacity: 1;
	margin-top: 1px;
	top: 100%;
}

.menu-area .mobile-nav-toggler .icon-bar {
	position: relative;
	height: 2px;
	width: 30px;
	display: block;
	margin-bottom: 5px;
	background-color: #222;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
	margin-bottom: 0px;
}

.main-header .sticky-header .outer-box {
	background-color: var(--bg_color_05);
}

.main-header .outer-box:before {
	position: absolute;
	content: '';
	background: var(--bg_color_05);
	width: 35%;
	height: 100%;
	top: 0px;
	right: 0px;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 9% 100%, 0% 0%);
}

.main-header .outer-box .support-box h4 a:hover {
	color: var(--bg_color_02);
}

/** banner-section **/

.banner-section {
	position: relative;
}

.banner-section .slide-item {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
}

.banner-section .slide-item:before {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: "";
	background: rgb(45 55 81 / 60%);
}

.banner-carousel .content-box h2 {
	opacity: 0;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-carousel .active .content-box h2 {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
}

.banner-carousel .content-box p {
	opacity: 0;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-carousel .active .content-box p {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}

.banner-carousel .content-box .btn-box {
	opacity: 0;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-carousel .active .content-box .btn-box {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1400ms;
	-moz-transition-delay: 1400ms;
	-ms-transition-delay: 1400ms;
	-o-transition-delay: 1400ms;
	transition-delay: 1400ms;
}

.banner-section .shape .shape-1 {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 320px;
	background-repeat: no-repeat;
	background-size: cover;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
	display: none !important;
}

/** Services Section **/

.service-item-01 .inner {
	display: inline-block;
	transition: 500ms;
}

.service-item-01 .inner:hover {
	cursor: pointer;
	background-color: var(--bg_color_01);
}

.service-item-01 .inner .icon {
	display: inline-block;
	margin-bottom: 15px;
}

.service-item-01 .inner .icon-1 {
	visibility: visible;
	z-index: 1;
	display: block;
}

.service-item-01 .inner:hover .icon-1 {
	visibility: hidden;
	z-index: 0;
	display: none;
	transition: 500ms;
}

.service-item-01 .inner .icon-2 {
	visibility: hidden;
	z-index: 0;
	display: none;
	transition: 500ms;
}

.service-item-01 .inner:hover .icon-2 {
	visibility: visible;
	z-index: 1;
	display: block;
}

.service-item-01 .inner h5 {
	transition: 500ms;
}

.service-item-01 .inner:hover h5 {
	color: #ffffff;
}

.service-item-01 .inner .link a {
	color: rgb(28 40 51 / 20%);
}

.service-item-01 .inner:hover .link a {
	color: #ffffff;
}

.service-item-01 .inner .link a:hover {
	color: var(--bg_color_02);
}

.service-section .owl-dots {
	display: block;
	text-align: center;
	margin-top: 20px;
}

.service-section .owl-dots .owl-dot span {
	width: 20px;
	height: 7px;
	border-radius: 10px;
	;
	background-color: rgb(22 34 47 / 10%);
}

.service-section .owl-dots .owl-dot.active span {
	width: 30px;
	background-color: var(--bg_color_01);
}

/** About Us Section **/

.about-us-image img {
	float: right;
	max-width: none;
}

.about-us-image .ex-years {
	position: absolute;
	left: 100%;
	bottom: 50%;
	transform: rotate(-90deg) translateX(-50%) translateY(50%);
	transform-origin: bottom left;
	width: max-content;
}

.about-us-content .c-phone {
	display: flex;
	vertical-align: middle;
	justify-content: space-between;
	border-top: 1px solid rgb(22 34 47 / 7%);
}

.about-us-content .c-phone .left-text {
	width: 50%;
}

.about-us-content .c-phone .left-text a {
	display: inline-block;
}

.about-us-content .c-phone .left-text a:hover {
	color: #AB9C81;
}

.about-us-content .c-phone .right-btn {
	width: 50%;
	text-align: left;
}

/** Request Quote Section **/

.request-quote {
	z-index: 1;
}

.request-quote .shape-2 {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-size: cover;
	background-repeat: no-repeat;
}

.request-quote form {
	z-index: 1;
}

.request-quote form .form-group {
	margin-bottom: 10px;
}

.request-quote form .form-group input[type='text'],
.request-quote form .form-group input[type='email'],
.request-quote form .form-group input[type='date'],
.request-quote form .form-group input[type='time'],
.request-quote form .form-group input[type='tel'],
.request-quote form .form-group textarea {
	position: relative;
	display: block;
	width: 100%;
	height: 47px;
	background: rgb(255 255 255 / 10%);
	border: 1px solid var(--theme_color_04);
	font-size: 16px;
	color: rgb(255 255 255 / 60%);
	padding: 10px 20px;
	transition: all 500ms ease;
}

.request-quote form .form-group textarea {
	height: 90px;
	resize: none;
}

.request-quote form .form-group p {
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	margin-left: 20px;
	color: rgb(255 255 255 / 70%);
	display: inline-block;
}

.request-quote form .form-group p span {
	color: var(--theme_color_02);
}

.request-quote .nice-select:after {
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #6e6e6e;
	border-right: 2px solid #6e6e6e;
	right: 20px;
	display: none;
}

.request-quote .nice-select {
	position: relative;
	display: block;
	height: 47px;
	line-height: 47px;
	border: 1px solid var(--bg_color_04);
	background: rgb(255 255 255 / 10%);
	padding: 0px 20px;
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: rgb(255 255 255 / 60%);
	border-radius: 0px;
}

.request-quote .nice-select .option:hover,
.request-quote .nice-select .option.focus,
.request-quote .nice-select .option.selected.focus {
	color: #fff;
	background: #b04247;
}

.request-quote .nice-select.wide .list {
	color: #fff;
	background-color: rgb(171 156 129);
}

.request-quote form .form-group:last-child {
	margin-top: 20px;
}

/** main-footer **/

.case-section .sec-subtitle {
	margin-bottom: 10px;
}

.case-section .sec-title {
	letter-spacing: normal;
}

.case-section .tabs-box {
	border-bottom: 0;
}

.case-section .tabs-box .tab-buttons {
	text-align: center;
	/* border-bottom: 1px solid rgb(22 34 47 / 7%); */
}

.case-section .tabs-box .tab-btn {
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	padding: 10px 0px;
	margin: 0px 30px;
	cursor: pointer;
	font-family: var(--lora);
	text-transform: capitalize;
	transition: 500ms all;
}

.case-section .tabs-box .tab-btn.active-btn {
	color: var(--bg_color_01);
}

.case-section .tabs-box .tab-btn:before {
	position: absolute;
	bottom: -1px;
	left: 0px;
	height: 1px;
	content: '';
	width: 0px;
	transition: 500ms;
}

.case-section .tabs-box .tab-btn.active-btn:before {
	background-color: var(--bg_color_01);
	width: 100%;
}

.case-style-001 {
	position: relative;
	border: 1px solid rgb(22 34 47 / 7%);
}

.case-style-001 .case-info {
	display: flex;
}

.case-style-001 .info-details {
	border-top: 1px solid rgb(22 34 47 / 7%);
}

.case-style-001 .info-details .theme-btn.btn-four {
	padding: 5px 33px;
}

.case-style-001 .info-details .theme-btn.btn {
	padding: 10px 0px;
	margin-left: 10px;
}

.case-style-001 .info-details .theme-btn.btn:hover {
	color: var(--theme_color_01);
}

.counterup-01 {
	border-bottom: 1px solid rgb(22 34 47 / 7%);
}

.counterup-01 .count-outer {
	position: relative;
}

.counterup-01 .count-outer:before {
	position: absolute;
	bottom: -1px;
	left: 0px;
	width: 0px;
	height: 1px;
	content: '';
	transition: 500ms all;
	background: var(--bg_color_02);
}

.counterup-01 .count-outer:hover:before {
	width: 100%;
}

/** main-footer **/

.charter-section {
	position: relative;
	z-index: 1;
}

.charter-section:after {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 50%;
	height: 100%;
	content: '';
	z-index: -1;
	background: #F6F6F6;
}

.charter-section:before {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 50%;
	height: 100%;
	content: '';
	z-index: -1;
	background: #EEEEEE;
}

.charter-section .left-side .text {
	width: 375px;
	text-align: left;
}

.charter-section .right-side .text {
	width: 375px;
	text-align: left;
}

.charter-section .theme-btn.btn-two {
	padding: 10px 33px;
}

.charter-section .theme-btn.btn-five {
	padding: 10px 33px;
}

.charter-section .image-bg {
	margin-left: -10px;
	position: relative;
	margin-top: -32px;
}

/** Testimonials Section **/

.testimonials-section .sec-subtitle {
	margin-bottom: 10px;
}

.testimonials-block-01 {
	border: 1px solid rgb(22 34 47 / 7%);
}

.testimonials-block-01 .ratting-star li {
	display: inline-block;
	font-size: 14px;
	line-height: 30px;
	color: #FCC65D;
}
/** FAQ Section **/
.accordion-box .block {
	position: relative;
	display: block;
	transition: all 500ms ease;
}
.accordion-box .block .acc-btn {
	position: relative;
	display: block;
	cursor: pointer;
	padding: 10px 30px;
	border: 1px solid #f6f6f6;
	border-bottom: none;
	transition: all 500ms ease;
}
.accordion-box .block:last-child .acc-btn {
	border-bottom: 1px solid #f6f6f6;
}
.accordion-box .block .acc-btn .icon-outer {
	position: absolute;
	top: 14px;
	right: 30px;
}
.accordion-box .block .acc-btn .icon-outer:before {
	position: absolute;
	font-size: 10px;
	content: "\f101";
	font-family: 'flaticon';
	transition: all 500ms ease;
}
.accordion-box .block .acc-btn.active .icon-outer:before {
	color: #121113;
}
.accordion-box .block .acc-content {
	position: relative;
	display: none;
	padding: 20px 30px;
	background: #fdfdfd;
	border: 1px solid #f6f6f6;
}
.accordion-box .block .acc-content.current {
	display: block;
	border-bottom: none;
}
/** Growth Business Section **/
.growth-business {
	position: relative;
	background-repeat: no-repeat;
	background-position: center right;
}
.growth-content {
	position: relative;
	max-width: 640px;
	background-color: #f6f6f6;
}
.growth-content .info-list li {
	font-size: 18px;
	line-height: 42px;
	font-weight: 400;
	font-family: var(--lora);
	color: var(--bg_color_04);
}
.growth-content .info-list li i {
	margin-right: 5px;
	color: var(--bg_color_01);
}
/** News Section **/
.news-block-01 .inner-box .date {
    bottom: -10px;
    transition: all 500ms ease;
    left: auto;
    right: 10px;
}
.news-block-01:hover .inner-box .date {
	background-color: var(--bg_color_01);
}
.news-block-01 .blog-info li {
	font-size: 14px;
	font-weight: 400;
	font-family: var(--opensans);
	display: inline-block;
	color: var(--bg_color_03);
	text-transform: capitalize;
}
.news-block-01 .blog-info li:first-child {
	margin-right: 40px;
}
.news-block-01.standard .blog-info li {
	width: auto;
}
.news-block-01.standard .blog-info:first-child li {
	margin-right: 40px;
}
.news-block-01 .blog-info li i {
	margin-right: 10px;
}
.news-block-01 .lower-content h4 a {
	color: var(--bg_color_04);
	display: inline-block;
	transition: all 500ms ease;
	word-break: break-all;
}
.news-block-01.standard .lower-content h4 a {
	font-size: 28px;
	line-height: 1.5em;
	font-weight: 700;
}
.news-block-01 .blog-info li a {
	color: var(--bg_color_03);
}
.news-block-01.standard .blog-info li a {
	color: var(--bg_color_03);
}
.news-block-01.standard .lower-content .link-btn a {
	font-size: 18px;
	margin-top: 15px;
	font-weight: 400;
	font-family: var(--lora);
	color: var(--bg_color_04);
}
.news-block-01.standard .lower-content p {
	font-size: 16px;
}
.news-block-01 .lower-content h4 a:hover {
	color: var(--bg_color_01);
}
.news-block-01 .lower-content .link-btn a {
	transition: all 500ms ease;
}
.news-block-01 .lower-content .link-btn a:hover {
	color: var(--bg_color_02);
}
/** Client Section **/
.client-section .client-box {
	position: relative;
	border-top: 1px solid rgb(22 34 47 / 7%);
}
/** main-footer **/
.footer-widget.logo-widget .footer-logo {
	margin-left: -20px;
}
.footer-widget .subscribe-form form .form-group {
	position: relative;
	height: 50px;
	background: rgb(255 255 255 / 6%);
}
.footer-widget .subscribe-form form .form-group input {
	padding-left: 30px;
	width: 100%;
	height: 50px;
	color: rgb(255 255 255 / 30%);
}
.footer-widget .subscribe-form form .form-group button {
	position: absolute;
	top: 0px;
	right: 10px;
	width: 50px;
	height: 50px;
	text-align: center;
}
.footer-widget .subscribe-form form .form-group button:focus,
.footer-widget .subscribe-form form .form-group button:hover {
	color: var(--bg_color_02);
}
.footer-widget.logo-widget p {
	color: rgb(255 255 255 / 70%);
}
.footer-widget .links-list li a {
	color: rgb(255 255 255 / 70%);
}
.footer-widget .links-list li a:hover {
	color: var(--theme_color_01);
}
.footer-widget .social-links li a {
	color: rgb(255 255 255 / 30%);
}
.footer-widget .social-links li a:hover {
	color: #ffffff;
}
/** Home Page Two **/
/** Header Top **/
.header-top {
	position: relative;
	background: var(--bg_color_05);
}

.header-top .htop-right {
	display: flex;
	flex-wrap: wrap;
}
.header-top .htop-right .user-login a:hover {
	color: var(--theme_color_02);
}
.header-top .htop-left .text a:hover {
	color: var(--theme_color_01);
}
.header-top .htop-menu li {
	display: inline-block;
	margin: 0px 30px;
}
.header-top .htop-menu li a {
	transition: all 500ms ease;
	color: #999;
}
.header-top .htop-menu li a:hover {
	color: var(--bg_color_01);
}
.header-top .user-login i {
	color: var(--theme_color_02);
	padding-right: 5px;
}
/** Header Lower **/
.main-header.home-two .outer-box {
	position: relative;
	background: #ffffff;
	box-shadow: 0px 0px 20px 3px #4b4b4b;
}
.main-header.home-two .outer-box:before {
	background-color: #F6F6F6;
}
.main-header.home-two .sticky-header .outer-box .logo-box {
	margin-left: 15px;
}
.main-header.home-two .main-menu .navigation>li>a {
	color: var(--theme_color_04);
}
.main-header.home-two .main-menu .navigation>li.current>a,
.main-header.home-two .main-menu .navigation>li:hover>a {
	color: #ffffff;
	background-color: var(--bg_color_02);
}
.main-menu .navigation>li.menu-item-has-children:hover>ul {
	visibility: visible;
	opacity: 1;
	margin-top: 1px;
	top: 100%;
}
.main-header.home-two .outer-box .support-box .icon {
	color: var(--bg_color_01);
	background-color: #ffffff;
}
.main-header.home-two .outer-box .support-box h4 a {
	color: var(--theme_color_04);
}
.main-header.home-two .outer-box .support-box h4 a:hover {
	color: var(--theme_color_02);
}
/** Banner Style Two **/
.banner-section.home-two .slide-item:before {
	display: none;
}
/** Service Style Two **/
.service-section.style-two .service-item-01 {
	border: 1px solid rgb(22 34 47 / 7%);
	text-align: center;
}
/** Request Style Two **/
.request-quote.home-two {
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
}
.request-quote.home-two:before {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: '';
	z-index: -1;
	background: rgb(22 34 47 / 80%);
}

.request-quote.home-two form .form-group.wd_100_p p {
	display: block;
	text-align: center;
}

.request-quote.home-two .wd_100_p .theme-btn.btn-two {
	width: 100%;
	margin-bottom: 20px;
}

.request-quote.home-two form .form-group input[type='text'],
.request-quote.home-two form .form-group input[type='email'],
.request-quote.home-two form .form-group input[type='date'],
.request-quote.home-two form .form-group input[type='time'],
.request-quote.home-two form .form-group input[type='tel'],
.request-quote.home-two form .form-group textarea {
	height: 60px;
	color: rgb(255 255 255 / 80%);
	background-color: rgb(255 255 255 / 15%);
	border-color: rgb(255 255 255 / 15%);
}
.request-quote.home-two form .form-group textarea {
	height: 120px;
	resize: none;
}
.request-quote.home-two .nice-select {
	height: 60px;
	line-height: 60px;
	color: rgb(255 255 255 / 80%);
	background-color: rgb(255 255 255 / 15%);
	border-color: rgb(255 255 255 / 15%);
}
/** Team Style One**/
.team-style-01 .social-links {
	transition: all 500ms ease;
}
.team-style-01:hover .social-links {
	background-color: var(--bg_color_01);
}
.team-style-01 .social-links li {
	display: inline-block;
	margin: 0px 20px;
}
.team-style-01 .social-links li a {
	font-size: 14px;
	line-height: 30px;
	display: inline-block;
	color: var(--theme_color_03);
	transition: all 500ms ease;
}
.team-style-01:hover .social-links li a {
	color: #ffffff;
}
.team-style-01 .social-links li a:hover {
	color: var(--theme_color_02);
}
/** About Page **/
/** page-title **/
.page-title .bg-layer {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.page-title .bg-layer:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: linear-gradient(276.83deg, rgba(28, 40, 51, 0.4) 41%, rgba(22, 34, 47, 0.8) 83.19%);
}
.page-title .content-box h1 {
	position: relative;
	display: block;
	font-size: 25px;
	line-height: 1.2em;
	color: #fff;
	font-weight: 400;
	text-align: center;
	margin-bottom: 5px;
	text-transform: capitalize;
}
.page-title .content-box .bread-crumb {
	position: relative;
	display: inline-flex;
	padding: 15px 30px;
	background: var(--bg_color_01);
	gap: 10px;
	flex-wrap: wrap;
}
.page-title .content-box .bread-crumb {
	position: relative;
	font-size: 15px;
	line-height: 20px;
	font-weight: 600;
	margin: 0px 5px;
	color: var(--theme_color_02);
	font-family: var(--lora);
	text-transform: capitalize;
}
.page-title .content-box .bread-crumb li a {
	color: #fff;
	transition: all 500ms ease;
}
.page-title .content-box .bread-crumb li a:hover {
	color: var(--theme_color_02);
}
.page-title .content-box .bread-crumb span a {
	color: #fff;
}
.page-title .content-box .bread-crumb span a:hover {
	color: var(--theme_color_02);
}
.about-us-section.style-two .about-us-image {
	max-width: 100%;
}
.counter-section .counterup-01 {
	border-top: 1px solid #f6f6f6;
}
.border-bottom {
	border-bottom: 1px solid #f6f6f6;
}
/** Booking Form Page **/

.request-quote.booking-form:before {
	display: none;
}

.booking-form .nice-select,
.request-quote.booking-form form .form-group input[type='text'],
.request-quote.booking-form form .form-group input[type='email'],
.request-quote.booking-form form .form-group input[type='date'],
.request-quote.booking-form form .form-group input[type='time'],
.request-quote.booking-form form .form-group input[type='tel'],
.request-quote.booking-form form .form-group textarea {
	width: 100%;
	font-size: 14px;
	height: 50px;
	padding: 0px 15px;
	color: rgb(119 119 119 / 80%);
	border: 1px solid rgb(22 34 47 / 7%);
}

.request-quote.booking-form form .form-group textarea {
	resize: none;
	height: 150px;
	padding-top: 15px;
}

.request-quote.booking-form form .form-group:last-child {
	margin-top: 50px;
}

.request-quote.booking-form form .form-group.wd_100_p p {
	color: var(--theme_color_03);
}

/** Page Title Two **/

.page-title.style-two {
	padding-bottom: 400px;
}

/** Map Section **/

.location-map {
	position: relative;
	margin-top: -280px;
}

/** Location Details **/

.location-info-block li {
	font-size: 18px;
	line-height: 50px;
	font-weight: 400;
	color: var(--theme_color_03);
	font-family: var(--lora);
}

.location-info-block li:first-child {
	line-height: 40px;
}

.location-info-block li address {
	margin-bottom: 0px;
}

.location-info-block li span {
	color: #FF4040;
	display: block;
}

.location-info-block li strong {
	color: var(--theme_color_04);
	font-size: 18px;
	line-height: 40px;
	font-weight: 400;
	font-family: var(--lora);
}

.location-info-block li a {
	color: var(--theme_color_03);
}

.location-info-block li a:hover {
	color: var(--theme_color_02);
}

/** Conatct Page **/

.contact-page {
	background: rgb(246 246 246 / 58%);
}

.contact-page h4.title {
	font-size: 24px;
	line-height: 30px;
	color: var(--theme_color_04);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.contact-page h6.sub-title {
	font-size: 14px;
	line-height: 20px;
	color: var(--theme_color_03);
	font-weight: 400;
	font-family: var(--opensans);
}

.contact-page.request-quote.home-two form .form-group input[type='text'],
.contact-page.request-quote.home-two form .form-group input[type='email'],
.contact-page.request-quote.home-two form .form-group input[type='date'],
.contact-page.request-quote.home-two form .form-group input[type='time'],
.contact-page.request-quote.home-two form .form-group input[type='tel'],
.contact-page.request-quote.home-two form .form-group textarea {
	height: 47px;
	line-height: 47px;
}

.contact-page.request-quote.booking-form form .form-group textarea {
	height: 120px;
}

.any-question .inner-box {
	border: 10px solid #ffffff;
}

.any-question .inner-box h6 {
	font-size: 18px;
	line-height: 30px;
	font-weight: 700;
	color: #B04247;
	padding: 20px 30px;
	font-family: var(--lora);
	background: #ffffff;
	text-align: center;
	margin: 140px 35px;
}

.page-title.style-three {
	padding-bottom: 370px;
}

.service-details .service-image {
	margin-top: -250px;
}

.service-details .title {
	position: relative;
	padding-left: 80px;
}

.service-details .title .icon {
	position: absolute;
	top: 0px;
	left: 0px;
}

.services-details-content .text p {
	font-size: 14px;
	line-height: 30px;
	color: var(--theme_color_03);
	font-family: var(--opensans);
	margin-top: 20px;
}

.services-details-content .info-list li {
	font-size: 18px;
	line-height: 42px;
	font-weight: 400;
	font-family: var(--lora);
	color: var(--bg_color_04);
}

.services-details-content .info-list li i {
	margin-right: 5px;
	color: var(--bg_color_01);
}

.deals-details .deals-image {
	margin-top: -250px;
}

.deals-details-content .text p {
	font-size: 14px;
	line-height: 30px;
	color: var(--theme_color_03);
	font-family: var(--opensans);
	margin-top: 20px;
}

.deals-details-content .info-list li {
	font-size: 18px;
	line-height: 42px;
	font-weight: 400;
	font-family: var(--lora);
	color: var(--bg_color_04);
}

.deals-details-content .info-list li i {
	margin-right: 5px;
	color: var(--bg_color_01);
}

.deals-details-content .case-info li {
	display: inline-block;
}

.solving-problem .text p {
	font-size: 14px;
	line-height: 30px;
	color: var(--theme_color_03);
	font-family: var(--opensans);
	margin-top: 15px;
}

.solving-problem .text .icon-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

.solving-problem .text .icon-item h4 {
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	padding-left: 30px;
}

.solving-problem .text .icon-item h4 a {
	color: #222429;
	padding: 10px 0px;
	display: inline-block;
}

.solving-problem .text .icon-item h4 a:hover {
	color: var(--theme_color_01);
}

.quote-block {
	display: flex;
	flex-wrap: wrap;
	background: #f6f6f6;
}

.quote-block .image {
	width: 15%;
	margin-top: 10px;
}

.quote-block .image-content {
	width: 85%;
}
.quote-block .image-content h6 {
	font-size: 16px;
	line-height: 30px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--theme_color_04);
}
.quote-block .image-content p {
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	font-family: var(--lora);
	color: var(--theme_color_03);
}
/* Destinetion Details Page*/
.destination-details .destination-image {
	margin-top: -250px;
}
.destination-details-content .text p {
	font-size: 14px;
	line-height: 30px;
	color: var(--theme_color_03);
	font-family: var(--opensans);
	margin-top: 20px;
}
.destination-details-content .info-list li {
	font-size: 18px;
	line-height: 42px;
	font-weight: 400;
	font-family: var(--lora);
	color: var(--bg_color_04);
}
.destination-details-content .info-list li i {
	margin-right: 5px;
	color: var(--bg_color_01);
}
.blog-details-one .blog-image {
	margin-top: -250px;
}
.blog-details-one .image-box {
	margin-top: -250px;
}
.blog-details-one .news-block-01 .text {
	font-size: 14px;
	line-height: 30px;
	font-weight: 400;
	font-family: var(--opensans);
	color: var(--theme_color_03);
}
.blog-details-one .lower-content .info-list li,
.blog-details-two .lower-content .info-list li {
	font-size: 18px;
	line-height: 42px;
	font-weight: 400;
	font-family: var(--lora);
	color: var(--bg_color_04);
}
.blog-details-one .lower-content .info-list li i,
.blog-details-two .lower-content .info-list li i {
	margin-right: 5px;
	color: var(--bg_color_01);
}
.post-tags {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.post-tags h6 {
	display: block;
	font-size: 14px;
	line-height: 40px;
	font-weight: 700;
	text-transform: capitalize;
}
.post-tags .tags-list li {
	position: relative;
	display: inline-block;
	margin-left: 10px;
}
.post-tags .tags-list li a {
	position: relative;
	display: inline-block;
	font-size: 12px;
	line-height: 30px;
	font-weight: 400;
	padding: 5px 20px;
	font-family: var(--opensans);
	color: var(--theme_color_03);
	background: #f6f6f6;
	text-transform: capitalize;
	border-radius: 5px;
	margin-right: 10px;
}
.post-tags .tags-list li a:hover {
	color: var(--theme_color_02);
}
/* Comment Area */
.title-box .title {
	font-size: 24px;
	line-height: 30px;
	font-weight: 400;
	padding-bottom: 20px;
	color: var(--theme_color_04);
}
.title-box .sub-title {
	font-size: 14px;
	line-height: 30px;
	font-weight: 400;
	font-family: var(--opensans);
	color: var(--theme_color_03);
	margin-bottom: 35px;
}
/* News Sidebar */
.blog-sidebar {
	padding: 20px;
	border: 1px solid #e5e5e5;
}
.blog-sidebar .widget-title {
	position: relative;
	display: block;
	margin-bottom: 22px;
}
.sidebar-widget .widget-title h4 {
	display: block;
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	color: var(--theme_color_04);
	font-family: var(--lora);
	margin-top: 20px;
}
.blog-sidebar .search-widget .form-group {
	position: relative;
	margin: 0px;
}
.sidebar-widget .sidebar-search-box .form-group input[type='search'] {
	position: relative;
	display: block;
	width: 100%;
	height: 50px;
	padding: 10px 50px 10px 20px;
	font-size: 12px;
	line-height: 30px;
	font-weight: 400;
	color: #C8C8C8;
	font-family: var(--opensans);
	background: #f6f6f6;
	border: 1px solid #f6f6f6;
	transition: all 500ms ease;
}
.blog-sidebar .search-widget .search-inner .form-group input:focus {
	border-color: var(--theme_color_02);
}
.sidebar-widget .sidebar-search-box .form-group {
	position: relative;
}
.sidebar-widget .sidebar-search-box .form-group button {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 12px;
	color: var(--theme_color_01);
	cursor: pointer;
	transition: all 500ms ease;
}
.sidebar-widget .sidebar-search-box .form-group button:hover {
	color: var(--theme_color_02);
}
.sidebar-widget ul li {
	position: relative;
	display: block;
	margin-bottom: 20px;
}
.sidebar-widget ul li:last-child {
	margin-bottom: 0px;
}
.sidebar-widget ul li a {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 30px;
	text-transform: capitalize;
	font-weight: 500;
	color: #75767b;
	padding-left: 15px;
}
.sidebar-widget ul li a:hover {
	color: var(--theme_color_02);
}
.sidebar-widget ul li a:before {
	position: absolute;
	content: '';
	width: 7px;
	height: 7px;
	top: 12px;
	left: 0px;
	border-radius: 50%;
	background: var(--bg_color_01);
	transition: all 500ms ease;
}
.category-widget .category-list li a:hover:before {
	background-color: var(--bg_color_02);
}
.blog-sidebar .post-widget .post {
	position: relative;
	display: block;
	padding-left: 90px;
	min-height: 90px;
}
.blog-sidebar .post-widget .post:last-child {
	margin-bottom: 0px;
}
.blog-sidebar .post-widget .post .post-thumb {
	position: absolute;
	left: 0px;
	top: 5px;
	width: 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 50%;
	background: #121113;
	border-radius: 50%;
}
.blog-sidebar .post-widget .post .post-thumb img {
	width: 100%;
	opacity: 0.9;
	transition: all 500ms ease;
}
.blog-sidebar .post-widget .post:hover .post-thumb img {
	opacity: 0.25;
}
.blog-sidebar .post-widget .post .post-thumb a {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0, 0);
	font-size: 24px;
	z-index: 1;
	color: #ffffff;
}
.blog-sidebar .post-widget .post:hover .post-thumb a {
	transform: translate(-50%, -50%) scale(1, 1);
}
.blog-sidebar .post-widget .post h5 {
	display: block;
	font-size: 16px;
	line-height: 30px;
	font-weight: 400;
}
.blog-sidebar .post-widget .post h5 a {
	display: inline-block;
	color: var(--theme_color_04);
}
.blog-sidebar .post-widget .post h5 a:hover {
	color: var(--theme_color_02);
}
.blog-sidebar .post-widget .post .author-info {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.blog-sidebar .post-widget .post .author-info a {
	font-size: 14px;
	line-height: 30px;
	font-weight: 400;
	color: var(--theme_color_03);
}
.blog-sidebar .post-widget .post .author-info a:hover {
	color: var(--theme_color_02);
}
.blog-sidebar .post-widget .post .author-info .user {
	margin-left: 50px;
}
.blog-sidebar .tags-widget .tags-list {
	margin: 0px -5px;
}
.sidebar-widget .tagcloud {
	position: relative;
	display: inline-block;
	margin: 4px 3px;
}
.blog-sidebar .sidebar-widget .tagcloud a {
	position: relative;
	display: inline-block;
	font-size: 16px !important;
	line-height: 24px;
	color: #75767b;
	background: #f6f6f7;
	padding: 6px 14px;
	font-family: var(--opensans);
	margin: 4px 3px;
}
.blog-sidebar .sidebar-widget .tagcloud a:hover {
	background: var(--bg_color_01);
	color: #fff;
}
.blog-sidebar .tags-widget .tags-list li a:hover {
	color: #ffffff;
	background-color: var(--bg_color_01);
}
.pagination .nav-links {
	margin-top: 30px;
}
.pagination .nav-links span.page-numbers {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: var(--theme_color_03);
	padding: 10px 15px;
	font-family: var(--lora);
	border: 1px solid #E8E8E8;
	text-align: center;
	display: inline-block;
	background: transparent;
	transition: all 500ms ease;
	margin-right: 10px;
}
.pagination .nav-links span.page-numbers.current {
	background: #AB9C81;
	border-color: #AB9C81;
	color: #fff;
}
.pagination .nav-links a.page-numbers {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: var(--theme_color_03);
	padding: 10px 15px;
	font-family: var(--lora);
	border: 1px solid #E8E8E8;
	text-align: center;
	display: inline-block;
	background: transparent;
	transition: all 500ms ease;
	margin-right: 10px;
}
.page-numbers:hover {
	color: #ffffff;
	background-color: var(--theme_color_01);
}
.post-single-breadcrumb .bg-layer {
	display: none;
}
.post-single-breadcrumb {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.post-single-breadcrumb:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: linear-gradient(276.83deg, rgba(28, 40, 51, 0.4) 41%, rgba(22, 34, 47, 0.8) 83.19%);
}
.single-comment-box {
	position: relative;
	padding-left: 100px;
	border-bottom: 1px solid #dee2e6;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
.single-comment:last-child .single-comment-box {
	border-bottom: 0;
	margin-bottom: 0;
}
.single-comment-box .img-holder {
	position: absolute;
	left: 0px;
	top: 5px;
}
.single-comment-box .img-holder .thumb-box img {
	border-radius: 50%;
}
.single-comment-box .text-holder .name h3 {
	font-size: 16px;
	font-weight: 700;
	font-family: 'Lora', serif;
	margin-bottom: 18px;
}
.single-comment-box .text-holder .name h3 a {
	color: #B04247;
}
.single-comment-box .text-holder .reply a {
	font-size: 14px;
	font-weight: 500;
	color: #000;
	margin-top: 10px;
	display: inline-block;
}
#comments-area .title-box .title {
	margin-bottom: 20px;
}
.comments-form-area {
	margin-top: 0;
}
.add-comment-box {
	margin-bottom: 30px;
}
.add-comment-box h3 {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 30px;
}
.add-comment-box h3 a {
	margin-left: 20px;
	color: #B04247;
	font-size: 16px;
}
.add-comment-box form textarea {
	border: 1px solid rgba(22, 34, 47, 0.07);
	width: 100%;
	height: 150px;
	resize: none;
	padding-left: 15px;
	padding-top: 15px;
}
.add-comment-box form input[type="text"],
.add-comment-box form input[type="email"] {
	border: 1px solid rgba(22, 34, 47, 0.07);
	width: 100%;
	height: 50px;
	resize: none;
	padding-left: 15px;
}
.add-comment-box form .form-group a {
	color: #000;
	text-decoration: underline;
}
.comments-form-area .logged-in-as {
	margin-bottom: 10px;
}
.comments-form-area .logged-in-as a {
	color: #B04247;
}
.sidebar-widget {
	margin-bottom: 40px;
}
.sidebar-widget:last-child {
	margin-bottom: 25px;
}
.fluentform-widget-wrapper .fluentform .nice-select {
	background: #FFFFFF1A;
	border-radius: 0;
	border: 1px solid #FFFFFF1A;
	height: 45px;
	color: #FFFFFF99;
}
.footer-bottom .copyright a {
	color: #fff;
}
.footer-bottom .copyright a:hover {
	color: #B04247;
}
.team-style-01 .team-info .name a {
	color: #000;
}
.booking-fluent-form .fluentform .nice-select {
	border: 1px solid #16222F12;
	height: 50px;
	line-height: 34px;
}
.booking-fluent-form .fluentform .nice-select span {
	color: #FFFFFF99;
}
.styled-pagination .nav-links a.prev,
.styled-pagination .nav-links a.next {
	background: #E8E8E8;
	border-color: #E8E8E8;
}

.styled-pagination .nav-links a:hover {
	background: #AB9C81;
	border-color: #AB9C81;
	color: #fff;
}
.blog-details-two .row {
	justify-content: center;
}
.blog-details-two .row #commentform .row {
	justify-content: flex-start;
}
.error-section {
	padding: 100px 0;
}
.error-section h1 {
	font-size: 260px;
	font-weight: 700;
}
.error-section h2 {
	font-size: 48px;
	line-height: 56px;
	font-weight: 400;
	padding: 10px 0 50px;
}
.add-comment-box {
	margin-top: 50px;
}
.post-tags {
	margin-top: 40px;
}
.post-tags .tags-list li:first-child {
	margin-left: 0;
}
.booking-fluent-form .fluentform .nice-select {
	background-color: #ffffff1a !important;
	padding: 6px 20px;
}
section.footer .fluentform-widget-wrapper .ff-el-group .ff-btn-submit {
	position: absolute;
	top: 7px;
	right: 0;
}
.booking-fluent-form .fluentform .nice-select span.current {
	color: #FFFFFF99;
}
.booking2-fluent-form .fluentform .nice-select {
	height: 60px;
	padding: 16px 20px;
	border: 1px solid #FFFFFF3B;
	background-color: #FFFFFF1A !important;
}
.booking2-fluent-form .fluentform .nice-select span.current {
	color: #FFFFFF99;
}
.blog-details-two ul.tags-list {
	padding-left: 0;
}
.blog-details-two .inner-box .image-box {
	margin-bottom: 50px;
}
@media only screen and (max-width: 992px) {
	.four-item-carousel .owl-item .service-item-01 .inner {
		width: 100% !important;
	}
}
.booking3-fluent-form .fluentform-widget-wrapper .fluentform .nice-select {
	padding: 9px 20px;
	border: 1px solid #16222F12;
}
.booking3-fluent-form .fluentform-widget-wrapper .fluentform .nice-select span.current{
	color: #777777cc;
}

ul.round-icon-list {
    list-style: none;
    padding-left: 0;
    font-family: Arial, sans-serif;
  }

  ul.round-icon-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
  }

  ul.round-icon-list li::before {
    content: "\f058"; /* Font Awesome check-circle icon (unicode) */
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background-color: #fe8087; /* Circle color */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 27px;
    font-size: 14px;
  }

  .contact-address {
  margin: 15px 0px;
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  height: 180px;
}

.address-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.address-block i {
  font-size: 20px;
  color: #007BFF;
  margin-right: 15px;
  margin-top: 5px;
}

.address-details {
  line-height: 1.6;
  color: #444;
}

.contact-line {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #333;
}

.contact-line i {
  margin-right: 10px;
  font-size: 18px;
}

.contact-line .fa-whatsapp { color: #28a745; }
.contact-line .fa-mobile { color: #28a745; }
.contact-line .fa-envelope { color: #dc3545; }
.contact-line .fa-globe { color: #17a2b8; }

.social-icons-colored {
  margin-top: 25px;
}

.social-icons-colored a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  color: white;
  transition: transform 0.3s ease;
}

.social-icons-colored a:hover {
  transform: scale(1.1);
}

/* Platform-specific colors */
.social-icons-colored a.facebook {
  background-color: #3b5998;
}

.social-icons-colored a.twitter {
  background-color: #030303;
}

.social-icons-colored a.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, 
              #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons-colored a.linkedin {
  background-color: #0077b5;
}