/*
@File: Sprio HTML Template

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************
** - Default Btn Style 
** - Section Title Style
** - Navbar Area Style
** - Main Banner Area CSS  Style
** - Inner Banner Style
** - About Area Style
** - Consultation Area Style
** - Offer Area Style
** - Skill Area Style
** - Process Area Style
** - Counter Area Style
** - Service Area Style
** - Testimonials Area Style
** - Team Area Style
** - Blog Area Style
** - Contact Area Style
** - User All Area Style
** - Faq Area Style
** - Map Area Style
** - Product Area Style
** - Cart Wraps Area Style
** - 404 Error Area Style
** - Coming Soon Area Style
** - Pagination Area Style
** - Back To Top Button Style
** - PreLoader CSS Style
** - Popup modal
*******************************************
/*

/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,300;0,400;0,600;0,700;0,900;1,400;1,600;1,700&display=swap");
body {
	font-size: 16px;
	line-height: 1.8;
	font-family: "Titillium Web", sans-serif;
	color: #111;
}

p {
	color: #111;
}

a {
	display: inline-block;
	transition: all 0.5s;
	text-decoration: none;
}
a:hover,
a:focus {
	text-decoration: none;
}

button {
	margin: 0;
	padding: 0;
	outline: 0;
}
button:focus {
	outline: 0;
	border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	line-height: 1.4;
	color: #111;
}

h3 {
	font-size: 24px;
}

.d-table {
	width: 100%;
	height: 100%;
}

.d-table-cell {
	display: table-cell;
	vertical-align: middle;
}

img {
	max-width: 100%;
}

.ptb-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}

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

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

.ptb-70 {
	padding-top: 70px;
	padding-bottom: 70px;
}

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

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

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

/*================================
Default btn Style 
===================================*/
.default-btn {
	padding: 7px 27px 12px 27px;
	background-color: rgb(151, 126, 68);
	color: #ffffff;
	position: relative;
	z-index: 1;
	font-size: 16px;
	text-decoration: none;
}
.default-btn i {
	font-size: 30px;
	line-height: 1;
	position: relative;
	top: 5px;
	margin-left: 10px;
	font-weight: 400;
}
.default-btn::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background-color: #08104d;
	opacity: 0;
	transition: 0.7s;
}
.default-btn:hover {
	background-color: #08104d;
	color: #ffffff;
}
.default-btn:hover::before {
	height: 100%;
	opacity: 1;
	border-radius: 5px;
}

/*================================
Default btn Style End
===================================*/
/*================================
Section Title Style 
===================================*/
.section-title span {
	line-height: 0;
	text-transform: capitalize;
	padding-bottom: 5px;
	font-weight: 400;
	color: #111;
}
.section-title h2 {
	font-size: 60px;
	font-weight: 600;
	margin-top: 5px;
	line-height: 1.2;
}
.section-title p {
	padding-top: 10px;
	margin-bottom: 0;
}

.section-title-two span {
	line-height: 0;
	text-transform: capitalize;
	padding-bottom: 5px;
	font-weight: 400;
	color: #111;
}
.section-title-two h2 {
	font-size: 50px;
	font-weight: 400;
	margin-top: 5px;
	line-height: 1.2;
}
.section-title-two p {
	padding-top: 10px;
	margin-bottom: 0;
}

.sp-before {
	position: relative;
	margin-left: 30px;
}
.sp-before::before {
	content: "";
	position: absolute;
	bottom: 10px;
	left: -30px;
	width: 30px;
	height: 1px;
	background-color: rgb(151, 126, 68);
}

.sp-after {
	position: relative;
	margin-right: 30px;
}
.sp-after::after {
	content: "";
	position: absolute;
	bottom: 10px;
	right: -30px;
	width: 30px;
	height: 1px;
	background-color: #111;
}

/*================================
Section Title Style End
===================================*/
/*=================================
Navbar Area
====================================*/
.navbar-area {
	background-color: transparent;
	transition: 0.3s;
	position: relative;
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 0;
	padding-left: 0;
}

.navbar-light {
	padding: 0;
	padding-left: 0;
	padding-right: 0;
	background-color: transparent;
}
.navbar-light .navbar-brand img {
	float: left;
	padding: 10px 0;
}
.navbar-light .navbar-brand .logo-two {
	display: none;
}
.navbar-light .navbar-brand-sticky {
	display: none;
}

/* Main nav */
.main-nav {
	position: absolute;
	background-color: #ffffff;
	top: 0;
	left: 0;
	padding: 0;
	width: 100%;
	z-index: 999;
	height: auto;
	border-bottom: 1px solid rgba(253, 253, 253, 0.3098039216);
}
.main-nav nav .navbar-nav .nav-item:hover a,
.main-nav nav .navbar-nav .nav-item .active {
	color: rgb(151, 126, 68) !important;
}
.main-nav nav .navbar-nav .nav-item a {
	text-transform: capitalize;
	color: #111;
	font-weight: 500;
	margin-left: 12px;
	margin-right: 12px;
}
.main-nav nav .navbar-nav .nav-item a i {
	line-height: 0;
	position: relative;
	top: 3px;
	font-size: 18px;
}
.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a :focus {
	color: rgb(151, 126, 68) !important;
}
.main-nav nav .navbar-nav .nav-item a.active {
	color: rgb(151, 126, 68) !important;
}
.main-nav nav .navbar-nav .nav-item a .active::before {
	transform: scale(1);
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu {
	border: none;
	border-top: 3px solid #111;
	padding: 0;
	border-radius: 0;
	background-color: #ffffff !important;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
	border-bottom: 1px solid #ffffff;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child {
	border-bottom: none;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
	text-transform: capitalize;
	color: #111 !important;
	position: relative;
	transition: 0.7s;
	font-weight: 500;
	padding: 10px;
	border-bottom: 1px dashed #ebebeb;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
	border-radius: 0;
	color: rgb(151, 126, 68) !important;
	background-color: #f3f3f3;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a :focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a .active {
	color: rgb(151, 126, 68) !important;
	border-radius: 0;
	background-color: #f3f3f3;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li.active {
	color: #111 !important;
	background-color: #f3f3f3;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
	left: 100%;
	top: 20px;
}
.main-nav
	nav
	.navbar-nav
	.nav-item
	.dropdown-menu
	li
	.dropdown-menu
	li
	.dropdown-menu {
	left: 100%;
}

.search-box {
	position: absolute;
	top: 15px;
	width: 250px;
	float: right;
	background-color: rgb(151, 126, 68);
	right: 75px;
}
.search-box .form-control {
	height: 50px;
	width: 250px;
	border-radius: 0;
	background-color: rgba(44, 44, 44, 0.5);
	border: 0;
	font-weight: 500;
	color: #ffffff;
}
.search-box .form-control:focus {
	box-shadow: none !important;
}
.search-box .search-btn {
	box-shadow: none;
	border: none;
	outline: none;
	position: absolute;
	top: 5px;
	right: 5px;
	height: 40px;
	width: 45px;
	line-height: 42px;
	background-color: transparent;
	border-radius: 10px;
	color: #ffffff;
	text-align: center;
	transition: 0.7s;
	font-size: 20px;
}
.search-box .search-btn:hover {
	background-color: #111;
}

.nav-ml {
	margin-left: 100px !important;
}

.nav-two {
	position: inherit;
	background-color: #ffffff;
	top: 0;
	left: 0;
	padding: 0;
	width: 100%;
	z-index: 999;
	height: auto;
	border-bottom: none;
}
.nav-two nav .navbar-nav .nav-item {
	padding: 25px 0;
}
.nav-two nav .navbar-nav .nav-item:hover a,
.nav-two nav .navbar-nav .nav-item .active {
	color: rgb(151, 126, 68) !important;
}
.nav-two nav .navbar-nav .nav-item a {
	color: #111;
}
.nav-two nav .navbar-nav .nav-item.logo {
	position: relative;
	padding: 0 !important;
	top: 12px;
	margin-right: 40px;
	margin-left: 40px;
}
.nav-two nav .navbar-nav .nav-item.logo .nav-link-logo2 {
	display: none;
}
.nav-two .menu-contact .menu-contact-btn {
	color: #111;
	font-size: 18px;
}
.nav-two .menu-contact .menu-contact-btn i {
	font-size: 24px;
	position: relative;
	top: 3px;
	margin-right: 7px;
}
.nav-two .menu-contact .menu-contact-btn:hover {
	color: rgb(151, 126, 68);
}

.nav-three {
	position: inherit;
	background-color: #ffffff;
	top: 0;
	left: 0;
	padding: 0;
	width: 100%;
	z-index: 999;
	height: auto;
	border-bottom: none;
}
.nav-three nav .navbar-nav .nav-item span {
	display: block;
	color: #878787;
	font-size: 16px;
	font-weight: 600;
}
.nav-three nav .navbar-nav .nav-item span.active {
	color: rgb(151, 126, 68) !important;
}
.nav-three nav .navbar-nav .nav-item:hover span,
.nav-three nav .navbar-nav .nav-item .active {
	color: rgb(151, 126, 68) !important;
}
.nav-three nav .navbar-nav .nav-item:hover a,
.nav-three nav .navbar-nav .nav-item .active {
	color: rgb(151, 126, 68) !important;
}
.nav-three nav .navbar-nav .nav-item a {
	color: #111;
	margin-left: 20px;
	margin-right: 20px;
}
.nav-three nav .navbar-nav .nav-item.logo {
	position: relative;
	padding: 0 !important;
	top: 12px;
	margin-right: 40px;
	margin-left: 40px;
}
.nav-three .search-area {
	margin-left: 120px;
	float: right;
}
.nav-three .nav-ml {
	margin-left: 95px !important;
}

.search-area {
	float: left;
	position: relative;
	top: 0;
	margin-right: 10px;
}
.search-area .search-item {
	display: inline-block;
	position: relative;
	color: #111;
	cursor: pointer;
	top: 9px;
	margin-right: 30px;
}
.search-area .search-item i {
	display: inline-block;
	text-align: center;
	font-size: 26px;
	position: relative;
	top: -7px;
	font-weight: 600;
	border-radius: 3px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
}
.search-area .search-item .search-overlay {
	display: none;
}
.search-area .search-item .search-overlay.search-popup {
	position: absolute;
	top: 100%;
	width: 300px;
	right: 0;
	background: #ffffff;
	z-index: 2;
	padding: 20px;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	margin-top: 20px;
}
.search-area .search-item .search-overlay.search-popup .search-form {
	position: relative;
}
.search-area
	.search-item
	.search-overlay.search-popup
	.search-form
	.search-input {
	display: block;
	width: 100%;
	height: 50px;
	line-height: initial;
	border: 1px solid #eeeeee;
	color: #ffffff;
	outline: 0;
	transition: 0.5s;
	padding-top: 4px;
	padding-left: 10px;
}
.search-area
	.search-item
	.search-overlay.search-popup
	.search-form
	.search-input:focus {
	border-color: #111;
}
.search-area
	.search-item
	.search-overlay.search-popup
	.search-form
	.search-button {
	position: absolute;
	right: 0;
	top: 0;
	height: 50px;
	background: transparent;
	border: none;
	width: 50px;
	outline: 0;
	transition: 0.5s;
	padding: 0;
	cursor: pointer;
}
.search-area
	.search-item
	.search-overlay.search-popup
	.search-form
	.search-button
	i {
	height: 50px;
	width: 50px;
	line-height: 50px;
	top: 0;
	margin-top: 0;
	box-shadow: none;
	font-size: 20px;
	color: #7e7a7a;
}
.search-area
	.search-item
	.search-overlay.search-popup
	.search-form
	.search-button:focus {
	color: rgb(151, 126, 68);
}
.search-area .search-item .search-btn-2 {
	transition: all 0.5s;
	font-size: 16px;
	color: #111;
}
.search-area .search-item .search-btn-2:hover {
	color: rgb(151, 126, 68);
}
.search-area .search-item .close-btn {
	cursor: pointer;
	display: none;
	transition: 0.5s;
	color: #111;
}
.search-area .search-item .close-btn i {
	font-size: 20px;
}
.search-area .search-item .close-btn:hover {
	color: #08104d;
}
.search-area .search-item .close-btn.active {
	display: block;
	top: -5px;
}
.search-area .search-item .close-btn.active i {
	font-size: 20px;
}

.search-area .search-item .search-btn:hover,
.search-area .search-item .text-color:hover {
	color: #111 !important;
}

.menu-icon {
	position: absolute;
	top: 0;
	right: 0;
}
.menu-icon .menu-icon-bg {
	width: 70px;
	height: 78px;
	background-color: #ffffff;
	font-size: 30px;
	color: #111;
	line-height: 83px;
	text-align: center;
	transition: 0.7s;
}
.menu-icon .menu-icon-bg:hover {
	background-color: #111;
	color: #ffffff;
}
.menu-icon .menu-icon-two {
	font-size: 24px;
	color: #111;
	margin-top: 20px;
	position: relative;
}
.menu-icon .menu-icon-two::before {
	content: "";
	position: absolute;
	top: 7px;
	height: 30px;
	width: 1px;
	background-color: #d1d1d1;
	left: -14px;
}
.menu-icon .menu-icon-two:hover {
	color: rgb(151, 126, 68);
}

.sticky-nav {
	top: 0;
	position: fixed;
	-webkit-animation: 900ms ease-in-out 5s normal none 1 running fadeInDown;
	animation: 900ms ease-in-out 5s normal none 1 running fadeInDown;
	transition: 0.9s;
	width: 100% !important;
	z-index: 999;
}
.sticky-nav .navbar-light .navbar-brand img {
	max-width: 130px;
}
.sticky-nav .main-nav {
	top: 0;
	background-color: #fff;
	position: fixed;
	border-bottom: none;
}
.sticky-nav .menu-icon {
	position: absolute;
	top: 0;
	right: 0;
}
.sticky-nav .menu-icon .menu-icon-bg {
	height: 78px;
	line-height: 78px;
}
.sticky-nav .nav-two {
	top: 0;
	background-color: #ffffff;
	position: fixed;
	border-bottom: none;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.sticky-nav .nav-three {
	top: 0;
	background-color: #ffffff;
	position: fixed;
	border-bottom: none;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.side-nav-responsive {
	display: none;
}
.side-nav-responsive .dot-menu {
	padding: 0 10px;
	height: 30px;
	cursor: pointer;
	z-index: 9999;
	position: absolute;
	right: 60px;
	top: 12px;
}
.side-nav-responsive .dot-menu .circle-inner {
	display: flex;
	align-items: center;
	height: 30px;
}
.side-nav-responsive .dot-menu .circle-inner .circle {
	height: 5px;
	width: 5px;
	border-radius: 100%;
	margin: 0 2px;
	transition: 0.7s;
	background-color: #ffffff;
}
.side-nav-responsive .dot-menu:hover .circle-inner .circle {
	background-color: #111;
}
.side-nav-responsive .container {
	position: relative;
	display: flex;
}
.side-nav-responsive .container .container {
	position: absolute;
	top: 55px;
	right: 0;
	max-width: 100%;
	width: 310px;
	margin-left: auto;
	opacity: 0;
	visibility: hidden;
	transition: 0.7s;
	transform: scaleX(0);
	z-index: 2;
	padding-left: 15px;
	padding-right: 15px;
}
.side-nav-responsive .container .container.active {
	opacity: 1;
	visibility: visible;
	transform: scaleX(1);
}
.side-nav-responsive .side-nav-inner {
	padding: 10px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
	background-color: #ffffff;
}
.side-nav-responsive .side-nav-inner .side-nav {
	background-color: #111;
	padding: 10px 0;
}
.side-nav-responsive .side-nav-inner .side-nav .side-item {
	margin-left: 10px;
	padding-left: 10px;
	position: relative;
	display: inline-block;
}
.side-nav-responsive .side-nav-inner .side-nav .responsive-search-box {
	display: inline-block;
	width: 180px;
	background-color: rgba(44, 44, 44, 0.5);
}
.side-nav-responsive
	.side-nav-inner
	.side-nav
	.responsive-search-box
	.form-control {
	height: 50px;
	font-size: 14px;
	width: 180px;
	border-radius: 0;
	background-color: rgba(44, 44, 44, 0.5);
	border: 0;
	font-weight: 500;
	color: #ffffff;
}
.side-nav-responsive
	.side-nav-inner
	.side-nav
	.responsive-search-box
	.form-control:focus {
	box-shadow: none !important;
}
.side-nav-responsive
	.side-nav-inner
	.side-nav
	.responsive-search-box
	.search-btn {
	box-shadow: none;
	border: none;
	outline: none;
	position: absolute;
	top: 5px;
	right: 5px;
	height: 40px;
	width: 45px;
	line-height: 42px;
	background-color: #111;
	border-radius: 10px;
	color: #ffffff;
	text-align: center;
	transition: 0.7s;
	font-size: 16px;
}
.side-nav-responsive
	.side-nav-inner
	.side-nav
	.responsive-search-box
	.search-btn:hover {
	background-color: #111;
}
.side-nav-responsive .side-nav-inner .side-nav .responsive-menu-icon {
	display: inline-block;
	position: relative;
	top: 2px;
}
.side-nav-responsive
	.side-nav-inner
	.side-nav
	.responsive-menu-icon
	.menu-icon-bg {
	width: 50px;
	height: 50px;
	background-color: #ffffff;
	font-size: 20px;
	color: #111;
	line-height: 50px;
	text-align: center;
	transition: 0.7s;
}
.side-nav-responsive
	.side-nav-inner
	.side-nav
	.responsive-menu-icon
	.menu-icon-bg:hover {
	background-color: #111;
	color: #ffffff;
}
.side-nav-responsive .side-nav-inner .side-nav .responsive-menu-contact {
	margin-top: 10px;
}
.side-nav-responsive
	.side-nav-inner
	.side-nav
	.responsive-menu-contact
	.menu-contact-btn {
	color: #ffffff;
	font-size: 18px;
}
.side-nav-responsive
	.side-nav-inner
	.side-nav
	.responsive-menu-contact
	.menu-contact-btn
	i {
	font-size: 24px;
	position: relative;
	top: 3px;
	margin-right: 7px;
}
.side-nav-responsive
	.side-nav-inner
	.side-nav
	.responsive-menu-contact
	.menu-contact-btn:hover {
	color: rgb(151, 126, 68);
}

/*=================================
Navbar Area
====================================*/
/*=================================
Sidebar Modal
====================================*/
.sidebar-modal {
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	overflow: hidden;
}
.sidebar-modal .sidebar-modal-inner {
	position: absolute;
	right: -100%;
	top: 0;
	width: 400px;
	overflow-y: scroll;
	height: 100%;
	background-color: #ffffff;
	transition: all 0.5s;
	z-index: 1;
	padding: 40px;
}
.sidebar-modal .sidebar-header {
	margin-bottom: 30px;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 30px;
}
.sidebar-modal .sidebar-header .sidebar-logo {
	display: inline-block;
}
.sidebar-modal .sidebar-header .sidebar-logo .sidebar-logo1 {
	display: inline-block;
}
.sidebar-modal .sidebar-header .sidebar-logo .sidebar-logo2 {
	display: none;
}
.sidebar-modal .sidebar-header .close-btn {
	display: inline-block;
	font-size: 20px;
	transition: all 0.5s;
	cursor: pointer;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background-color: #272b2b;
	color: #ffffff;
	border-radius: 0;
	text-align: center;
	margin-top: 15px;
	float: right;
}
.sidebar-modal .sidebar-header .close-btn:hover {
	color: #ffffff;
	background-color: #272b2b;
}
.sidebar-modal .sidebar-about {
	margin-bottom: 30px;
}
.sidebar-modal .sidebar-about .title h2 {
	margin-bottom: 0;
	font-size: 24px;
}
.sidebar-modal .sidebar-about .title p {
	margin-bottom: 0;
	font-size: 15px;
}
.sidebar-modal .contact-us {
	margin-bottom: 30px;
}
.sidebar-modal .contact-us h2 {
	font-size: 20px;
	margin-bottom: 25px;
}
.sidebar-modal .contact-us form {
	display: flex;
	flex-direction: column;
	padding: 0;
	margin-top: 60px;
	gap: 20px;
}
.sidebar-modal .contact-us ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.sidebar-modal .contact-us ul li {
	position: relative;
	padding-left: 40px;
	margin-bottom: 20px;
}
.sidebar-modal .contact-us ul li:last-child {
	margin-bottom: 0;
}
.sidebar-modal .contact-us ul li i {
	position: absolute;
	top: 5px;
	left: 0;
	font-size: 28px;
	color: #111;
}
.sidebar-modal .contact-us ul li a {
	display: block;
	color: #111;
}
.sidebar-modal .sidebar-instagram-feed {
	margin-bottom: 30px;
}
.sidebar-modal .sidebar-instagram-feed h2 {
	margin-bottom: 25px;
	font-size: 25px;
}
.sidebar-modal .sidebar-instagram-feed ul {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	list-style-type: none;
	margin-left: -5px;
	margin-right: -5px;
	margin-bottom: 0;
	margin-top: -10px;
}
.sidebar-modal .sidebar-instagram-feed ul li {
	flex: 0 0 33%;
	max-width: 33%;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 10px;
}
.sidebar-modal .sidebar-instagram-feed ul li a {
	display: block;
	position: relative;
}
.sidebar-modal .sidebar-instagram-feed ul li a img {
	width: 100%;
}
.sidebar-modal .sidebar-instagram-feed ul li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
}
.sidebar-modal .sidebar-instagram-feed ul li a:hover::before {
	opacity: 0.5;
	visibility: visible;
}
.sidebar-modal .sidebar-follow-us h2 {
	font-size: 20px;
	margin-bottom: 25px;
}
.sidebar-modal .sidebar-follow-us .social-wrap {
	line-height: 1;
}
.sidebar-modal .sidebar-follow-us .social-wrap {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sidebar-modal .sidebar-follow-us .social-wrap li {
	display: inline-block;
	padding-right: 10px;
}
.sidebar-modal .sidebar-follow-us .social-wrap li a i {
	font-size: 20px;
	color: #111;
}
.sidebar-modal .sidebar-follow-us .social-wrap li a:hover {
	transform: translateY(-2px);
}
.sidebar-modal.active {
	opacity: 1;
	visibility: visible;
	background-color: rgba(0, 0, 0, 0.9);
}
.sidebar-modal.active .sidebar-modal-inner {
	right: 0;
}

/*=================================
Sidebar Modal
====================================*/
/*=================================
Home Slider
====================================*/
.home-slider {
	position: relative;
}
.home-slider .thumbs-wrap {
	position: relative;
	z-index: 1;
}
.home-slider .thumbs-wrap .owl-thumbs.home-slider-thumb {
	position: absolute;
	bottom: 43px;
	left: 50%;
}
.home-slider .thumbs-wrap .owl-thumbs.home-slider-thumb::before {
	content: "05";
	position: absolute;
	font-size: 20px;
	font-family: "Titillium Web", sans-serif;
	left: 60px;
	right: 0;
	width: 50%;
	height: 100%;
	color: #ffffff;
}
.home-slider .thumbs-wrap .owl-thumbs .owl-thumb-item {
	display: block;
}
.home-slider .thumbs-wrap .owl-thumbs .owl-thumb-item span {
	color: #6f7c8a;
	font-weight: 500;
	font-size: 30px;
	transition: all 0.5s;
	cursor: pointer;
	position: relative;
	bottom: 10px;
	left: 10px;
	display: none;
}
.home-slider .thumbs-wrap .owl-thumbs .owl-thumb-item.active span {
	color: #ffffff;
	display: block;
}
.home-slider .thumbs-wrap .owl-thumbs .owl-thumb-item:hover span {
	color: #ffffff;
	display: block;
}
.home-slider .owl-nav {
	margin-top: 0;
}
.home-slider .owl-nav .owl-prev {
	position: absolute;
	bottom: 55px;
	left: 48%;
	color: #fff !important;
	font-size: 20px !important;
	background-color: transparent !important;
	transition: 0.7s;
}
.home-slider .owl-nav .owl-prev:hover {
	color: #ffffff !important;
	background-color: transparent !important;
}
.home-slider .owl-nav .owl-next {
	position: absolute;
	bottom: 55px;
	right: 42%;
	color: #fff !important;
	font-size: 20px !important;
	background-color: transparent !important;
	transition: 0.7s;
	z-index: 1;
}
.home-slider .owl-nav .owl-next:hover {
	color: #ffffff !important;
	background-color: transparent !important;
}

.slider-item {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}
.slider-item::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	right: 70px;
	height: 100%;
	width: 1px;
	background-color: rgba(253, 253, 253, 0.3098039216);
}
.slider-item .social-link {
	position: absolute;
	top: 15%;
	right: 0;
	overflow: hidden;
}
.slider-item .social-link ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.slider-item .social-link ul li {
	display: block;
	transform: rotate(-90deg);
	margin-bottom: 150px;
	margin-top: 150px;
	position: relative;
}
.slider-item .social-link ul li::before {
	content: "";
	position: absolute;
	bottom: 5px;
	width: 30px;
	height: 1px;
	background-color: #ffffff;
	left: -35px;
	transition: 0.7s;
}
.slider-item .social-link ul li a {
	color: #ffffff;
}
.slider-item .social-link ul li a:hover {
	color: #ffffff;
}
.slider-item .social-link ul li:hover a {
	color: rgb(151, 126, 68);
}
.slider-item .social-link ul li:hover::before {
	opacity: 0;
}

.slider-content {
	padding-top: 340px;
	padding-bottom: 250px;
	margin-left: 85px;
	max-width: 730px;
	min-height: 130vh;
	position: relative;
	z-index: 1;
}
.slider-content::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 200px;
	left: -55px;
	width: 500px;
	height: 570px;
	border: 10px solid rgb(151, 126, 68);
}
.slider-content span {
	line-height: 0;
	padding-bottom: 5px;
	margin-left: 45px;
	font-weight: 600;
	color: #ffffff;
	position: relative;
}
.slider-content span::before {
	content: "";
	position: absolute;
	bottom: 10px;
	left: -30px;
	width: 30px;
	height: 1px;
	background-color: #ffffff;
}
.slider-content h1 {
	font-size: 45px;
	color: #ffffff;
	letter-spacing: 10px;
	line-height: 1.2;
	margin-bottom: 20px;
}
.slider-content p {
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 35px;
}
.slider-content .slider-btn .get-btn {
	padding: 10px 25px;
	background-image: linear-gradient(-45deg, #977e44, #a88d4c, #b0985d, #b9a36f);
	color: #ffffff;
	font-size: 17px;
	transition: 0.7s;
	font-weight: 500;
}
.slider-content .slider-btn .get-btn:hover {
	background-color: #111;
	color: #ffffff;
}
.slider-content .slider-btn .learn-btn {
	margin-left: 20px;
	padding: 9px 25px;
	background-color: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
	font-size: 17px;
	font-weight: 500;
	transition: 0.7s;
}
.slider-content .slider-btn .learn-btn:hover {
	background-color: #ffffff;
	color: #111;
}

.item-bg1 {
	background-image: url(../img/home-one/hone-one1.jpg);
}

.item-bg2 {
	background-image: url(../img/home-one/hone-one2.jpg);
}

.item-bg3 {
	background-image: url(../img/home-one/hone-one3.jpg);
}

.item-bg4 {
	background-image: url(../img/gallery/meridian-park-04.jpeg);
	background-position: left;
}

.item-bg5 {
	background-image: url(../img/gallery/meridian-park-05.jpeg);
}

.banner-area {
	position: relative;
}
.banner-area .thumbs-wrap {
	position: absolute;
	top: 50%;
	right: 100px;
	z-index: 1;
	transform: translateY(-50%);
}
.banner-area .thumbs-wrap .owl-thumbs.banner-area-thumb::before {
	content: "05";
	position: absolute;
	font-size: 20px;
	font-family: "Titillium Web", sans-serif;
	left: 90px;
	right: 0;
	width: 50%;
	height: 100%;
	color: #000000;
	bottom: -40px;
}
.banner-area .thumbs-wrap .owl-thumbs .owl-thumb-item {
	display: block;
	padding: 0 10px;
}
.banner-area .thumbs-wrap .owl-thumbs .owl-thumb-item span {
	color: #000000;
	font-weight: 500;
	font-size: 50px;
	transition: all 0.5s;
	cursor: pointer;
	position: relative;
	display: none;
}
.banner-area .thumbs-wrap .owl-thumbs .owl-thumb-item.active span {
	color: #000000;
	display: block;
}
.banner-area .thumbs-wrap .owl-thumbs .owl-thumb-item:hover span {
	color: #000000;
	display: block;
}
.banner-area .owl-nav {
	margin-top: 0;
}
.banner-area .owl-nav .owl-prev {
	position: absolute;
	top: 50%;
	right: 190px;
	transform: translateY(-50%);
	color: #111 !important;
	font-size: 25px !important;
	background-color: transparent !important;
	transition: 0.7s;
}
.banner-area .owl-nav .owl-prev:hover {
	color: #000000 !important;
	background-color: transparent !important;
}
.banner-area .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	right: 40px;
	transform: translateY(-50%);
	color: #111 !important;
	font-size: 25px !important;
	background-color: transparent !important;
	transition: 0.7s;
	z-index: 1;
}
.banner-area .owl-nav .owl-next:hover {
	color: #000000 !important;
	background-color: transparent !important;
}

.banner-item {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}
.banner-item::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	background-color: #000000;
	opacity: 0.9;
}

.banner-content {
	padding-top: 170px;
	padding-bottom: 200px;
	margin-left: 20px;
}
.banner-content .half-circle {
	width: 60px;
	height: 30px;
	background-color: #ffffff;
	border-radius: 30px 30px 0 0;
	position: relative;
	top: 20px;
}
.banner-content span {
	line-height: 0;
	text-transform: capitalize;
	padding-bottom: 5px;
	font-weight: 600;
	color: #000000;
	position: relative;
	z-index: 1;
}
.banner-content h1 {
	font-size: 85px;
	color: #000000;
	line-height: 1.3;
	margin-bottom: 50px;
	max-width: 685px;
}
.banner-content .banner-btn .learn-btn {
	padding: 7px 27px 12px 27px;
	background-color: #ffffff;
	color: #000000;
	position: relative;
	z-index: 1;
	font-size: 16px;
}
.banner-content .banner-btn .learn-btn i {
	font-size: 30px;
	line-height: 1;
	position: relative;
	top: 7px;
	margin-left: 10px;
	font-weight: 400;
}
.banner-content .banner-btn .learn-btn::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background-color: #000000;
	opacity: 0;
	transition: 0.7s;
}
.banner-content .banner-btn .learn-btn:hover {
	background-color: #000000;
	color: #ffffff;
}
.banner-content .banner-btn .learn-btn:hover::before {
	height: 100%;
	opacity: 1;
	border-radius: 5px;
}
.banner-content .banner-btn .get-btn {
	margin-left: 20px;
	padding: 7px 27px 12px 27px;
	background-color: #000000;
	color: #ffffff;
	position: relative;
	z-index: 1;
	font-size: 16px;
}
.banner-content .banner-btn .get-btn i {
	font-size: 30px;
	line-height: 1;
	position: relative;
	top: 5px;
	margin-right: 10px;
	font-weight: 400;
}
.banner-content .banner-btn .get-btn::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background-color: #ffffff;
	opacity: 0;
	transition: 0.7s;
}
.banner-content .banner-btn .get-btn:hover {
	background-color: #ffffff;
	color: #000000;
}
.banner-content .banner-btn .get-btn:hover::before {
	height: 100%;
	opacity: 1;
	border-radius: 5px;
}

.banner-bg1 {
	background-image: url(../img/home-two/home-two1.jpg);
}

.banner-bg2 {
	background-image: url(../img/home-two/home-two2.jpg);
}

.banner-bg3 {
	background-image: url(../img/home-two/home-two3.jpg);
}

.banner-area-two {
	position: relative;
}
.banner-area-two .owl-nav .owl-prev {
	position: absolute;
	bottom: -5px;
	right: 135px;
	width: 140px !important;
	height: 50px !important;
	line-height: 50px;
	border-radius: 0;
	color: #ffffff !important;
	font-size: 26px !important;
	background-color: #000000 !important;
	transition: 0.7s;
}
.banner-area-two .owl-nav .owl-prev i {
	margin-right: 40px;
}
.banner-area-two .owl-nav .owl-prev:hover {
	color: #000000 !important;
	background-color: #ffffff !important;
}
.banner-area-two .owl-nav .owl-prev::before {
	content: "Prev";
	position: absolute;
	bottom: 10px;
	left: 70px;
	font-size: 17px;
	font-weight: 400;
	transition: transform 0.4s ease;
}
.banner-area-two .owl-nav .owl-next {
	position: absolute;
	bottom: -5px;
	right: -5px;
	width: 140px !important;
	height: 50px !important;
	line-height: 50px;
	border-radius: 0;
	color: #000000 !important;
	font-size: 26px !important;
	background-color: #ffffff !important;
	transition: 0.7s;
}
.banner-area-two .owl-nav .owl-next i {
	margin-left: 40px;
}
.banner-area-two .owl-nav .owl-next:hover {
	color: #ffffff !important;
	background-color: #000000 !important;
}
.banner-area-two .owl-nav .owl-next::before {
	content: "Next";
	position: absolute;
	bottom: 10px;
	right: 70px;
	font-size: 17px;
	font-weight: 400;
	transition: transform 0.4s ease;
}

.banner-item-two {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}
.banner-item-two::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 50px;
	background-image: url(../img/home-three/home-three-shape.png);
}

.banner-content-two {
	padding-top: 230px;
	padding-bottom: 200px;
	margin-left: auto;
	position: relative;
	max-width: 700px;
}
.banner-content-two .images {
	position: absolute;
	top: 150px;
}
.banner-content-two .images img {
	max-width: 100%;
}
.banner-content-two .banner-play {
	margin-top: 15px;
	position: relative;
	z-index: 1;
}
.banner-content-two .banner-play .banner-play-btn {
	font-size: 20px;
	color: #000000;
}
.banner-content-two .banner-play .banner-play-btn i {
	width: 50px;
	height: 50px;
	background-color: #000000;
	color: #ffffff;
	border-radius: 50%;
	line-height: 50px;
	font-size: 20px;
	text-align: center;
}
.banner-content-two .banner-play .banner-play-btn i:hover {
	background-color: #08104d;
	color: #ffffff;
}
.banner-content-two .banner-play .banner-play-btn span {
	margin-left: 10px;
}
.banner-content-two .banner-play .banner-play-btn:hover span {
	color: #08104d;
}
.banner-content-two .banner-play .banner-play-btn:hover i {
	background-color: #08104d;
	color: #ffffff;
}
.banner-content-two h1 {
	margin-top: 5px;
	font-size: 85px;
	color: #000000;
	line-height: 1.3;
	margin-bottom: 50px;
	max-width: 685px;
}
.banner-content-two .banner-btn .learn-btn {
	padding: 7px 27px 12px 27px;
	background-color: #ffffff;
	color: #000000;
	position: relative;
	z-index: 1;
	font-size: 16px;
}
.banner-content-two .banner-btn .learn-btn i {
	font-size: 30px;
	line-height: 1;
	position: relative;
	top: 7px;
	margin-left: 10px;
	font-weight: 400;
}
.banner-content-two .banner-btn .learn-btn::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background-color: #000000;
	opacity: 0;
	transition: 0.7s;
}
.banner-content-two .banner-btn .learn-btn:hover {
	background-color: #000000;
	color: #ffffff;
}
.banner-content-two .banner-btn .learn-btn:hover::before {
	height: 100%;
	opacity: 1;
	border-radius: 5px;
}
.banner-content-two .banner-btn .get-btn {
	margin-left: 20px;
	padding: 7px 27px 12px 27px;
	background-color: #000000;
	color: #ffffff;
	position: relative;
	z-index: 1;
	font-size: 16px;
}
.banner-content-two .banner-btn .get-btn i {
	font-size: 30px;
	line-height: 1;
	position: relative;
	top: 5px;
	margin-right: 10px;
	font-weight: 400;
}
.banner-content-two .banner-btn .get-btn::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background-color: #ffffff;
	opacity: 0;
	transition: 0.7s;
}
.banner-content-two .banner-btn .get-btn:hover {
	background-color: #ffffff;
	color: #111;
}
.banner-content-two .banner-btn .get-btn:hover::before {
	height: 100%;
	opacity: 1;
	border-radius: 5px;
}

.banner-two-bg1 {
	background-image: url(../img/home-three/home-three1.jpg);
}

.banner-two-bg2 {
	background-image: url(../img/home-three/home-three2.jpg);
}

/*=================================
Home Slider End
====================================*/
/*================================
Inner Banner
==================================*/
.inner-banner {
	position: relative;
	background-position: center center;
	background-size: cover;
}
.inner-banner::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	background-color: #000000;
	opacity: 0.7;
}
.inner-banner .inner-title {
	padding-top: 150px;
	padding-bottom: 150px;
	position: relative;
}
.inner-banner .inner-title h3 {
	font-size: 50px;
	color: #ffffff;
	font-weight: 500;
}
.inner-banner .inner-title ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.inner-banner .inner-title ul li {
	font-size: 18px;
	color: #ffffff;
	display: inline-block;
}
.inner-banner .inner-title ul li i {
	font-size: 18px;
	color: #ffffff;
	position: relative;
	margin-right: 30px;
	top: -2px;
}
.inner-banner .inner-title ul li i::after {
	content: "";
	position: absolute;
	top: 15px;
	right: -25px;
	height: 1px;
	width: 20px;
	background-color: #ffffff;
}
.inner-banner .inner-title ul li a {
	color: #ffffff;
}
.inner-banner .inner-title ul li a:hover {
	color: rgb(151, 126, 68);
}

.inner-bg1 {
	background-image: url(../img/inner-banner/inner-banner1.jpg);
}

.inner-bg2 {
	background-image: url(../img/inner-banner/inner-banner2.jpg);
}

.inner-bg3 {
	background-image: url(../img/inner-banner/inner-banner3.jpg);
}

.inner-bg4 {
	background-image: url(../img/inner-banner/inner-banner4.jpg);
}

.inner-bg5 {
	background-image: url(../img/inner-banner/inner-banner5.jpg);
}

.inner-bg6 {
	background-image: url(../img/inner-banner/inner-banner6.jpg);
}

.inner-bg7 {
	background-image: url(../img/inner-banner/inner-banner7.jpg);
}

.inner-bg8 {
	background-image: url(../img/inner-banner/inner-banner8.jpg);
}

.inner-bg9 {
	background-image: url(../img/inner-banner/inner-banner9.jpg);
}

.inner-bg10 {
	background-image: url(../img/inner-banner/inner-banner10.jpg);
}

.inner-bg11 {
	background-image: url(../img/inner-banner/inner-banner11.jpg);
}

.inner-bg12 {
	background-image: url(../img/inner-banner/inner-banner12.jpg);
}

/*================================
Inner Banner End
==================================*/
/*=================================
About Area 
====================================*/
.about-content {
	max-width: 520px;
	margin-left: auto;
	margin-bottom: 30px;
}
.about-content .section-title {
	border-bottom: 1px solid #e3e3e3;
	padding-bottom: 40px;
	margin-bottom: 30px;
}
.about-content .section-title .sp-before {
	color: rgb(151, 126, 68);
}
.about-content .section-title h2 {
	color: rgb(151, 126, 68);
}
.about-content .section-title p {
	max-width: 450px;
}
.about-content .about-counter {
	margin-bottom: 30px;
}
.about-content .about-counter h3 {
	font-size: 55px;
	color: #111;
	margin-bottom: 0;
}
.about-content .about-counter span {
	color: #111;
	font-size: 17px;
}
.about-content .signature {
	padding: 0;
	list-style: none;
	margin-top: 20px;
}
.about-content .signature li {
	display: inline-block;
	margin-right: 40px;
}
.about-content .signature li img {
	max-width: 100%;
	position: relative;
	top: -15px;
}
.about-content .signature li .signature-img2 {
	display: none;
}
.about-content .signature li h3 {
	font-size: 20px;
	margin-bottom: 0;
	color: #111;
	position: relative;
}
.about-content .signature li h3::before {
	content: "";
	position: absolute;
	bottom: 5px;
	width: 10px;
	height: 1px;
	left: -10px;
	background-color: #111;
}

.about-img {
	position: relative;
	margin-left: 70px;
	margin-bottom: 60px;
	max-width: 675px;
}
.about-img img {
	-o-object-fit: cover;
	object-fit: cover;
	min-height: 860px;
	border: 6px solid rgb(151, 126, 68);
}
.about-img .about-img-text {
	width: 180px;
	height: 180px;
	text-align: center;
	position: absolute;
	bottom: -30px;
	left: -40px;
	background-image: linear-gradient(-45deg, #977e44, #a88d4c, #b0985d, #b9a36f);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 50px 0;
}
.about-img .about-img-text span {
	font-size: 30px;
	color: #ffffff;
}
.about-img .about-img-text h3 {
	font-size: 55px;
	color: #ffffff;
	margin-bottom: 0;
	line-height: 1;
}

.about-area-two {
	position: relative;
}
.about-area-two::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 1170px;
	height: 1px;
	margin: 0 auto;
	background-color: #e6e6e6;
}

.about-content-two {
	margin-bottom: 30px;
}
.about-content-two .section-title h2 {
	font-size: 50px;
	font-weight: 400;
}
.about-content-two .section-title p {
	margin-bottom: 40px;
}

.about-img-2 {
	position: relative;
	margin-bottom: 30px;
}
.about-img-2::before {
	content: "";
	position: absolute;
	bottom: -33px;
	width: 100%;
	height: 65px;
	left: 0;
	right: 0;
	background-color: #ffffff;
	transform: skew(-85deg);
}

.about-counter-area .about-counter-two {
	margin-bottom: 30px;
}
.about-counter-area .about-counter-two h3 {
	font-size: 40px;
	color: #111;
	margin-bottom: 0;
	font-weight: 400;
}
.about-counter-area .about-counter-two span {
	color: #111;
	font-size: 17px;
}
.about-counter-area .about-play {
	margin-top: 15px;
}
.about-counter-area .about-play .about-play-btn {
	font-size: 20px;
	color: #111;
}
.about-counter-area .about-play .about-play-btn i {
	width: 50px;
	height: 50px;
	background-color: #111;
	color: #ffffff;
	border-radius: 50%;
	line-height: 50px;
	font-size: 20px;
	text-align: center;
}
.about-counter-area .about-play .about-play-btn i:hover {
	background-color: #08104d;
	color: #ffffff;
}
.about-counter-area .about-play .about-play-btn span {
	margin-left: 10px;
}
.about-counter-area .about-play .about-play-btn:hover span {
	color: #08104d;
}
.about-counter-area .about-play .about-play-btn:hover i {
	background-color: #08104d;
	color: #ffffff;
}

.about-img-3 {
	margin-bottom: 30px;
}

.about-card-area {
	margin-left: 40px;
}
.about-card-area .section-title-two {
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.about-card {
	margin-bottom: 30px;
	position: relative;
}
.about-card i {
	font-size: 70px;
	color: #111;
	position: absolute;
	left: 0;
	top: 0;
	line-height: 1;
}
.about-card .content {
	margin-left: 100px;
}
.about-card .content h3 {
	margin-bottom: 10px;
}
.about-card .content p {
	margin-bottom: 0;
}

.about-widget-card {
	margin-bottom: 50px;
	background-color: #ffffff;
	padding: 30px 30px 50px;
	border: 1px solid #111;
	margin-right: 20px;
	position: relative;
	z-index: 1;
	transition: 0.7s;
}
.about-widget-card::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 20px;
	right: -21px;
	height: 100%;
	width: 20px;
	background-color: #f3f3f3;
	transition: 0.7s;
}
.about-widget-card::after {
	content: "";
	position: absolute;
	bottom: -21px;
	right: -20px;
	height: 20px;
	width: 100%;
	background-color: #f3f3f3;
	transition: 0.7s;
}
.about-widget-card:hover {
	background-color: #111;
}
.about-widget-card:hover h3 {
	color: #ffffff;
}
.about-widget-card:hover::before {
	opacity: 0;
	height: 0;
}
.about-widget-card:hover::after {
	opacity: 0;
	width: 0;
}
.about-widget-card h3 {
	margin-bottom: 15px;
}
.about-widget-card p {
	margin-bottom: 10px;
}
.about-widget-card .number {
	font-size: 50px;
	color: #c4c4c4;
	font-weight: 600;
	position: absolute;
	bottom: 10px;
	right: 30px;
}

/*=================================
About Area End
====================================*/
/*=================================
Consultation Area
====================================*/
.consultation-area {
	background-image: url(../img/consultation-img-.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}
.consultation-area::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.5;
}

.consultation-content {
	margin-bottom: 30px;
}
.consultation-content .section-title span {
	color: #ffffff;
}
.consultation-content .section-title .sp-before::before {
	background-color: #ffffff;
}
.consultation-content .section-title h2 {
	color: #ffffff;
	max-width: 695px;
}
.consultation-content .section-title p {
	color: #ffffff;
}
.consultation-content .consultation-btn {
	margin-top: 35px;
}
.consultation-content .consultation-btn .learn-btn {
	padding: 7px 27px 12px 27px;
	background-color: #ffffff;
	color: #111;
	position: relative;
	z-index: 1;
	font-size: 16px;
}
.consultation-content .consultation-btn .learn-btn i {
	font-size: 30px;
	line-height: 1;
	position: relative;
	top: 7px;
	margin-left: 10px;
	font-weight: 400;
}
.consultation-content .consultation-btn .learn-btn::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background-color: #111;
	opacity: 0;
	transition: 0.7s;
}
.consultation-content .consultation-btn .learn-btn:hover {
	background-color: #111;
	color: #ffffff;
}
.consultation-content .consultation-btn .learn-btn:hover::before {
	height: 100%;
	opacity: 1;
	border-radius: 5px;
}

.consultation-play-btn {
	float: right;
}
.consultation-play-btn .video-btn {
	width: 100px;
	height: 100px;
	background-color: #ffffff;
	color: #111;
	border-radius: 50%;
	line-height: 105px;
	font-size: 45px;
	text-align: center;
}
.consultation-play-btn .video-btn:hover {
	background-color: #111;
	color: #ffffff;
}

/*=================================
Consultation Area End
====================================*/
/*=================================
Offer Area 
====================================*/
.offer-area .section-title h2 {
	color: rgb(151, 126, 68);
}

.offer-card {
	margin-bottom: 50px;
	background-color: #ffffff;
	border: 1px solid #111;
	margin-right: 20px;
	position: relative;
	width: 176px;
	height: 176px;
}
.offer-card img {
	height: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -80%);
}
.offer-card::before {
	content: "";
	position: absolute;
	top: 20px;
	right: -21px;
	height: 100%;
	width: 20px;
	background-color: #f4f0e6;
	transition: 0.7s;
}
.offer-card::after {
	content: "";
	position: absolute;
	bottom: -21px;
	right: -20px;
	height: 20px;
	width: 100%;
	background-color: #f4f0e6;
	transition: 0.7s;
}
.offer-card:hover::before {
	opacity: 0;
	height: 0;
}
.offer-card:hover::after {
	opacity: 0;
	width: 0;
}
.offer-card h3 {
	margin-bottom: 15px;
}
.offer-card span.amenity-name {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	line-height: normal;
}
.offer-card .offer-icon {
	font-size: 70px;
	color: #747474;
	line-height: 1;
}
.offer-card .learn-btn {
	margin-top: 10px;
	font-size: 17px;
	color: #111;
	display: block;
	font-weight: 600;
	transition: 0.9s;
}
.offer-card .learn-btn i {
	font-size: 30px;
	line-height: 1;
	position: relative;
	top: 7px;
	margin-left: 10px;
	font-weight: 400;
}
.offer-card .learn-btn:hover {
	letter-spacing: 0.25px;
	color: #111;
}

.offer-item {
	margin-bottom: 50px;
	background-color: #ffffff;
	padding: 50px 45px;
	border: 1px solid #111;
	position: relative;
	z-index: 1;
}
.offer-item::before {
	content: "";
	position: absolute;
	z-index: -1;
	right: 0;
	left: 0;
	bottom: -3px;
	height: 3px;
	width: 100%;
	background-color: #111;
	transition: 0.7s;
}
.offer-item::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background-image: url(../img/shape/offer-shape.png);
	transition: 0.7s;
	opacity: 0;
}
.offer-item:hover {
	background-color: #111;
}
.offer-item:hover::before {
	opacity: 0;
	width: 0;
}
.offer-item:hover::after {
	opacity: 1;
	height: 100%;
}
.offer-item:hover h3 {
	color: #ffffff;
}
.offer-item:hover p {
	color: #c6c6c6;
}
.offer-item:hover .offer-item-icon {
	color: #c6c6c6;
}
.offer-item:hover .learn-btn {
	color: #ffffff;
}
.offer-item h3 {
	margin-bottom: 15px;
}
.offer-item p {
	margin-bottom: 30px;
}
.offer-item .offer-item-icon {
	font-size: 70px;
	color: #747474;
	line-height: 1;
}
.offer-item .learn-btn {
	margin-top: 10px;
	font-size: 17px;
	color: #111;
	display: block;
	font-weight: 600;
	transition: 0.9s;
}
.offer-item .learn-btn i {
	font-size: 30px;
	line-height: 1;
	position: relative;
	top: 7px;
	margin-left: 10px;
	font-weight: 400;
}

/*=================================
Offer Area End
====================================*/
/*=================================
Skill Area 
====================================*/
.skill-content {
	margin-top: 70px;
	margin-bottom: 30px;
	background-color: #f7f7f7;
	position: relative;
	max-width: 750px;
	padding: 70px 110px 70px 70px;
	margin-left: auto;
}
.skill-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/skill-img/skill-shape.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.progressbar-area {
	margin-top: 40px;
}
.progressbar-area .single-progressbar {
	margin-bottom: 30px;
}
.progressbar-area .single-progressbar h3 {
	font-size: 18px;
	color: #111;
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 15px;
}
.progressbar-area .single-progressbar .progressbar-count {
	position: relative;
	width: 100%;
	height: 5px;
	border-radius: 0;
	background-color: #111;
}
.progressbar-area .single-progressbar .progressbar-count .progressbar-number {
	position: absolute;
	font-size: 16px;
	font-weight: 400;
	color: #111;
}
.progressbar-area .single-progressbar .progressbar-count .progressbar-circle {
	width: 13px;
	height: 13px;
	background-color: #111;
	border-radius: 50px;
	position: absolute;
}
.progressbar-area .single-progressbar .progressbar-count .pn-1 {
	top: -40px;
	right: 40%;
}
.progressbar-area .single-progressbar .progressbar-count .pc-1 {
	top: -5px;
	right: 41%;
}
.progressbar-area .single-progressbar .progressbar-count .pn-2 {
	top: -40px;
	right: 25%;
}
.progressbar-area .single-progressbar .progressbar-count .pc-2 {
	top: -5px;
	right: 26%;
}
.progressbar-area .single-progressbar .progressbar-count .pn-3 {
	top: -40px;
	right: 5%;
}
.progressbar-area .single-progressbar .progressbar-count .pc-3 {
	top: -5px;
	right: 7%;
}
.progressbar-area .single-progressbar .progressbar-count .pn-4 {
	top: -40px;
	right: 12%;
}
.progressbar-area .single-progressbar .progressbar-count .pc-4 {
	top: -5px;
	right: 13%;
}

.skill-img {
	margin-left: -70px;
	position: relative;
}

.skill-content-two {
	margin-top: 70px;
	margin-bottom: 70px;
	background-color: #111;
	position: relative;
	z-index: 1;
	max-width: 765px;
	padding: 70px 100px;
	margin-left: auto;
}
.skill-content-two .section-title-two h2 {
	color: #ffffff;
}
.skill-content-two .progressbar-area .single-progressbar h3 {
	color: #ffffff;
}
.skill-content-two .progressbar-area .single-progressbar .progressbar-count {
	background-color: #ffffff;
}
.skill-content-two
	.progressbar-area
	.single-progressbar
	.progressbar-count
	.progressbar-number {
	color: #ffffff;
}
.skill-content-two
	.progressbar-area
	.single-progressbar
	.progressbar-count
	.progressbar-circle {
	background-color: #ffffff;
}

.skill-img-2 {
	margin-left: -400px;
	z-index: -1;
}
.skill-img-2 img {
	height: 790px;
	max-width: 905px;
}

/*=================================
Skill Area End
====================================*/
/*=================================
Process Area 
====================================*/
.process-area {
	background-color: #1a1a1a;
	position: relative;
}
.process-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/bg-shape.png);
	background-size: cover;
	background-position: center center;
}
.process-area .section-title span {
	color: #cccccc;
}
.process-area .section-title .sp-after {
	background-color: #cccccc;
}
.process-area .section-title h2 {
	color: #ffffff;
}
.process-area .section-title p {
	color: #cccccc;
	max-width: 720px;
	margin: 0 auto;
}

.process-card {
	text-align: center;
	margin-bottom: 30px;
}
.process-card:hover i {
	background-color: #111;
}
.process-card i {
	font-size: 65px;
	border: 1px dashed #636363;
	display: inline-block;
	width: 115px;
	height: 120px;
	line-height: 120px;
	background-color: transparent;
	color: #ffffff;
	margin-bottom: 20px;
	transition: 0.7s;
	position: relative;
}
.process-card .process-icon {
	position: relative;
	width: 115px;
	margin: 0 auto;
}
.process-card .process-icon .number {
	font-size: 17px;
	color: #111;
	background-color: #ffffff;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50px;
	position: absolute;
	top: -15px;
	right: -10px;
}
.process-card h3 {
	font-size: 25px;
	color: #ffffff;
	margin-bottom: 10px;
}
.process-card p {
	max-width: 325px;
	margin: 0 auto;
}

/*=================================
Process Area End
====================================*/
/*=================================
Counter Area 
====================================*/
.counter-area {
	background-image: url(../img/shape/counter-shape.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding-top: 70px;
	padding-bottom: 50px;
}

.counter-title {
	margin-bottom: 30px;
}
.counter-title h3 {
	font-size: 30px;
	margin-bottom: 0;
	max-width: 224px;
}

.single-counter {
	margin-bottom: 30px;
}
.single-counter h3 {
	font-size: 40px;
	color: #111;
	margin-bottom: 0;
	font-weight: 400;
}
.single-counter span {
	color: #111;
	font-size: 17px;
}

/*=================================
Counter Area End
====================================*/
/*=================================
Service Area 
====================================*/
.service-area .section-title p {
	max-width: 720px;
	margin: 0 auto;
}
.service-area .section-title h2 {
	color: rgb(151, 126, 68);
}

.service-card {
	margin-bottom: 30px;
}
.service-card:hover .content .learn-btn {
	margin-left: 35px;
}
.service-card:hover .content .learn-btn i {
	top: 3px;
	left: -35px;
}
.service-card a {
	display: block;
}
.service-card a img {
	max-width: 100%;
}
.service-card .content {
	padding-top: 25px;
}
.service-card .content h3 {
	margin-bottom: 10px;
}
.service-card .content h3 a {
	display: block;
	color: #111;
}
.service-card .content p {
	margin-bottom: 15px;
}
.service-card .content .learn-btn {
	font-size: 17px;
	color: #1a1a1a;
	display: block;
	font-weight: 500;
	transition: 0.9s;
	position: relative;
}
.service-card .content .learn-btn i {
	font-size: 30px;
	line-height: 1;
	position: absolute;
	top: 3px;
	left: 90px;
	font-weight: 400;
	transition: 0.9s;
}
.service-card .content .learn-btn:hover {
	margin-left: 35px;
}
.service-card .content .learn-btn:hover i {
	position: absolute;
	top: 3px;
	left: -35px;
}

.service-content {
	margin-bottom: 30px;
}
.service-content .section-title-two {
	margin-bottom: 40px;
}

.service-right-item {
	margin-left: 40px;
}

.service-item {
	margin-bottom: 30px;
}
.service-item:hover .content .learn-btn {
	margin-left: 35px;
}
.service-item:hover .content .learn-btn i {
	position: absolute;
	top: 3px;
	left: -35px;
}
.service-item .service-item-icon {
	font-size: 65px;
	color: #111;
	line-height: 1;
}
.service-item .content {
	padding-top: 20px;
}
.service-item .content h3 {
	margin-bottom: 10px;
}
.service-item .content h3 a {
	display: block;
	color: #111;
}
.service-item .content p {
	margin-bottom: 15px;
}
.service-item .content .learn-btn {
	font-size: 17px;
	color: #1a1a1a;
	display: block;
	font-weight: 500;
	transition: 0.9s;
	position: relative;
}
.service-item .content .learn-btn i {
	font-size: 30px;
	line-height: 1;
	position: absolute;
	top: 3px;
	left: 90px;
	font-weight: 400;
	transition: 0.9s;
}
.service-item .content .learn-btn:hover {
	margin-left: 35px;
}
.service-item .content .learn-btn:hover i {
	position: absolute;
	top: 3px;
	left: -35px;
}

.service-area-three .section-title-two p {
	max-width: 700px;
	margin: 0 auto;
}

.service-item-bg {
	background-color: #ffffff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
}

.service-details-content .section-title-two {
	margin-bottom: 30px;
}
.service-details-content .section-title-two h2 {
	font-size: 40px;
}

.servicer-slider-item img {
	max-width: 100%;
}

.service-slider {
	position: relative;
}
.service-slider .owl-nav .owl-prev {
	position: absolute;
	top: 45%;
	left: -6px;
	width: 140px !important;
	height: 50px !important;
	line-height: 50px;
	border-radius: 0;
	color: #ffffff !important;
	font-size: 26px !important;
	background-color: #111 !important;
	transition: 0.7s;
}
.service-slider .owl-nav .owl-prev i {
	margin-right: 40px;
}
.service-slider .owl-nav .owl-prev:hover {
	color: #111 !important;
	background-color: #ffffff !important;
}
.service-slider .owl-nav .owl-prev::before {
	content: "Prev";
	position: absolute;
	bottom: 10px;
	left: 70px;
	font-size: 17px;
	font-weight: 400;
	transition: transform 0.4s ease;
}
.service-slider .owl-nav .owl-next {
	position: absolute;
	top: 45%;
	right: -6px;
	width: 140px !important;
	height: 50px !important;
	line-height: 50px;
	border-radius: 0;
	color: #111 !important;
	font-size: 26px !important;
	background-color: #ffffff !important;
	transition: 0.7s;
}
.service-slider .owl-nav .owl-next i {
	margin-left: 40px;
}
.service-slider .owl-nav .owl-next:hover {
	color: #ffffff !important;
	background-color: #111 !important;
}
.service-slider .owl-nav .owl-next::before {
	content: "Next";
	position: absolute;
	bottom: 10px;
	right: 70px;
	font-size: 17px;
	font-weight: 400;
	transition: transform 0.4s ease;
}

.service-details-article {
	margin-top: 30px;
}
.service-details-article p {
	margin-bottom: 20px;
}
.service-details-article .blockquote {
	margin-right: 20px;
	position: relative;
	margin-bottom: 50px;
	margin-top: 40px;
	background-color: #ffffff;
	padding: 30px;
	border: 1px solid #111;
}
.service-details-article .blockquote::before {
	content: "\ee83";
	position: absolute;
	top: -40px;
	left: 30px;
	text-align: center;
	font-size: 50px;
	font-weight: 400;
	color: #111;
	font-family: boxicons;
}
.service-details-article .blockquote::after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: -20px;
	right: -20px;
	width: 97%;
	height: 90%;
	background-color: #f3f3f3;
}
.service-details-article .blockquote p {
	font-size: 20px;
	color: #808080;
	font-weight: 600;
	margin-bottom: 0;
}

.service-circle {
	margin-top: 30px;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	padding: 30px 15px;
	text-align: center;
	position: relative;
	margin-bottom: 45px;
	margin-right: 15px;
}
.service-circle::before {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: -15px;
	right: -15px;
	width: 97%;
	height: 90%;
	background-color: #f3f3f3;
}
.service-circle h2 {
	width: 130px;
	height: 130px;
	background-image: url(../img/services/circle.png);
	font-size: 35px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	line-height: 130px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
}
.service-circle h3 {
	margin-bottom: 0;
	font-size: 20px;
}

.service-details-categories ul li span {
	width: 35% !important;
	text-align: right !important;
}

/*=================================
Service Area End
====================================*/
/*=================================
Portfolio Area 
====================================*/
.portfolio-area {
	padding-top: 50px;
}
.portfolio-area .section-title {
	margin-bottom: 20px;
}

.portfolio-tab {
	margin-top: 30px;
}
.portfolio-tab .tabs {
	margin: 0;
	padding: 0;
	list-style: none;
}
.portfolio-tab .tabs li {
	display: inline-block;
	line-height: initial;
	margin-right: 25px;
	color: #ffffff;
}
.portfolio-tab .tabs li a {
	display: inline-block;
	position: relative;
	font-size: 17px;
	font-weight: 600;
	color: #ffffff;
}
.portfolio-tab .tabs li a:focus {
	color: #ffffff;
	border-bottom: 1px solid #ffffff;
}
.portfolio-tab .tabs li.active a {
	color: #ffffff;
	border-bottom: 1px solid #111;
}
.portfolio-tab .tabs li.current a {
	color: #ffffff;
	border-bottom: 1px solid #111;
}
.portfolio-tab .tabs-two li {
	margin-right: 15px;
	color: #ffffff;
}
.portfolio-tab .tabs-two li a {
	padding: 5px 15px;
}
.portfolio-tab .tabs-two li a:focus {
	color: #ffffff;
	border-bottom: none;
	background-color: #111;
}
.portfolio-tab .tabs-two li.active a {
	color: #ffffff;
	border-bottom: none;
	background-color: #111;
}
.portfolio-tab .tabs-two li.current a {
	color: #ffffff;
	border-bottom: none;
	background-color: #111;
}

.tab .tabs_item {
	display: none;
}
.tab .tabs_item:first-child {
	display: block;
}

.portfolio-item {
	position: relative;
}
.portfolio-item .content1 {
	position: absolute;
	bottom: 40px;
	left: 40px;
}
.portfolio-item .content2 {
	position: absolute;
	bottom: 40px;
	left: 120px;
}
.portfolio-item .content3 {
	position: absolute;
	bottom: 40px;
	left: 180px;
}
.portfolio-item .content4 {
	position: absolute;
	bottom: 40px;
	right: 170px;
}
.portfolio-item .content .title {
	width: 420px;
	background-color: rgb(151, 126, 68);
	height: 60px;
	line-height: 60px;
	margin-bottom: 10px;
}
.portfolio-item .content .title h3 {
	display: inline-block;
	font-size: 24px;
	color: #ffffff;
	padding-left: 35px;
	font-weight: 600;
	width: 85%;
}
.portfolio-item .content .title h3 a {
	color: #ffffff;
}
.portfolio-item .content .title .number {
	display: inline-block;
	font-size: 30px;
	color: #ffffff;
	text-align: right;
	font-weight: 600;
}
.portfolio-item .content ul {
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #000000;
	width: 245px;
	text-align: center;
}
.portfolio-item .content ul li {
	display: inline-block;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	color: #ffffff;
}
.portfolio-item .content ul li a {
	font-size: 16px;
	color: #ffffff;
	font-weight: 600;
}
.portfolio-item .content ul li a:hover {
	color: #ffffff;
}
.portfolio-item .portfolio-line .line1 {
	top: 0;
	position: absolute;
	left: 15%;
	width: 1px;
	height: 100%;
	background-color: rgba(253, 253, 253, 0.3098039216);
}
.portfolio-item .portfolio-line .line2 {
	top: 0;
	position: absolute;
	left: 35%;
	width: 1px;
	height: 100%;
	background-color: rgba(253, 253, 253, 0.3098039216);
}
.portfolio-item .portfolio-line .line3 {
	top: 0;
	position: absolute;
	left: 55%;
	width: 1px;
	height: 100%;
	background-color: rgba(253, 253, 253, 0.3098039216);
}

.portfolio-item-two {
	position: relative;
	margin-bottom: 30px;
}
.portfolio-item-two:hover .content {
	opacity: 1;
}
.portfolio-item-two .content {
	position: absolute;
	bottom: 40px;
	left: 20px;
	opacity: 0;
	transition: 0.7s;
}
.portfolio-item-two .content.active {
	opacity: 1;
}
.portfolio-item-two .content .title {
	width: 270px;
	background-color: rgb(151, 126, 68);
	height: 50px;
	line-height: 50px;
	margin-bottom: 10px;
}
.portfolio-item-two .content .title h3 {
	display: inline-block;
	font-size: 20px;
	color: #ffffff;
	padding-left: 15px;
	font-weight: 600;
}
.portfolio-item-two .content .title h3 a {
	color: #ffffff;
}
.portfolio-item-two .content ul {
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #000000;
	width: 245px;
	text-align: center;
}
.portfolio-item-two .content ul li {
	display: inline-block;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	color: #ffffff;
}
.portfolio-item-two .content ul li a {
	font-size: 15px;
	color: #ffffff;
	font-weight: 600;
}
.portfolio-item-two .content ul li a:hover {
	color: #ffffff;
}

.portfolio-area h2 {
	color: rgb(151, 126, 68);
}
.portfolio-area .row {
	justify-content: space-around;
}
.portfolio-area
	.tab_content
	.tabs_item
	.col-lg-3:nth-child(1)
	.portfolio-item-two {
	margin-top: 45px;
}
.portfolio-area
	.tab_content
	.tabs_item
	.col-lg-3:nth-child(3)
	.portfolio-item-two {
	margin-top: 45px;
}

.portfolio-list {
	border: 10px solid rgb(151, 126, 68);
	position: relative;
	margin-bottom: 30px;
}
.portfolio-list a {
	display: block;
}
.portfolio-list a img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 250px;
}
.portfolio-list:hover .content {
	opacity: 1;
}
.portfolio-list .content {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: 0.7s;
}
.portfolio-list .content.active {
	opacity: 1;
}
.portfolio-list .content .title {
	width: 270px;
	background-color: rgb(151, 126, 68);
	height: 50px;
	line-height: 50px;
	margin-top: 10px;
}
.portfolio-list .content .title h3 {
	display: inline-block;
	font-size: 20px;
	color: #ffffff;
	padding-left: 15px;
	font-weight: 600;
}
.portfolio-list .content .title h3 a {
	color: #ffffff;
}
.portfolio-list .content ul {
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: rgb(151, 126, 68);
	width: 245px;
	text-align: center;
}
.portfolio-list .content ul li {
	display: inline-block;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	margin: 0;
	color: #ffffff;
}
.portfolio-list .content ul li a {
	font-size: 15px;
	color: #ffffff !important;
	font-weight: 600;
}
.portfolio-list .content ul li a:hover {
	color: #ffffff;
}

.portfolio-details-content img {
	margin-bottom: 30px;
	width: 100%;
}
.portfolio-details-content .section-title-two {
	margin-bottom: 20px;
}
.portfolio-details-content .section-title-two h2 {
	font-size: 40px;
}
.portfolio-details-content p {
	margin-bottom: 20px;
}
.portfolio-details-content .portfolio-article {
	margin-bottom: 30px;
}
.portfolio-details-content .portfolio-article h3 {
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 20px;
}
.portfolio-details-content .portfolio-article p {
	margin-bottom: 0;
}

/*=================================
Portfolio Area End
====================================*/
/*=================================
Testimonials Area 
====================================*/
.testimonials-area {
	position: relative;
}
.testimonials-area .owl-nav .owl-prev {
	position: absolute;
	bottom: 25px;
	left: 470px;
	width: 140px !important;
	height: 50px !important;
	line-height: 50px;
	border-radius: 0;
	color: #ffffff !important;
	font-size: 26px !important;
	background-color: #111 !important;
	transition: 0.7s;
}
.testimonials-area .owl-nav .owl-prev i {
	margin-right: 40px;
}
.testimonials-area .owl-nav .owl-prev:hover {
	color: #111 !important;
	background-color: #f8f8f8 !important;
}
.testimonials-area .owl-nav .owl-prev::before {
	content: "Prev";
	position: absolute;
	bottom: 10px;
	left: 70px;
	font-size: 17px;
	font-weight: 400;
	transition: transform 0.4s ease;
}
.testimonials-area .owl-nav .owl-next {
	position: absolute;
	bottom: 25px;
	left: 610px;
	width: 140px !important;
	height: 50px !important;
	line-height: 50px;
	border-radius: 0;
	color: #111 !important;
	font-size: 26px !important;
	background-color: #f8f8f8 !important;
	transition: 0.7s;
}
.testimonials-area .owl-nav .owl-next i {
	margin-left: 40px;
}
.testimonials-area .owl-nav .owl-next:hover {
	color: #ffffff !important;
	background-color: #111 !important;
}
.testimonials-area .owl-nav .owl-next::before {
	content: "Next";
	position: absolute;
	bottom: 10px;
	right: 70px;
	font-size: 17px;
	font-weight: 400;
	transition: transform 0.4s ease;
}

.testimonials-img {
	margin-right: 20px;
	margin-bottom: 50px;
	position: relative;
}
.testimonials-img .quote-text {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background-image: url(../img/testimonials/testimonials-shape.png);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 110px;
	height: 110px;
	font-size: 60px;
	color: #ffffff;
	line-height: 110px;
	text-align: center;
}

.testimonials-content {
	margin-left: 40px;
}
.testimonials-content h3 {
	margin-bottom: 5px;
}
.testimonials-content span {
	font-size: 20px;
	color: #838383;
}
.testimonials-content p {
	margin-top: 10px;
	font-size: 20px;
	font-weight: 600;
	color: #838383;
	margin-bottom: 40px;
}

/*=================================
Testimonials Area End
====================================*/
/*=================================
Team Area 
====================================*/
.team-area .section-title p {
	max-width: 695px;
	margin: 0 auto;
}
.team-area .section-title-two {
	position: relative;
	z-index: 1;
}

.team-bg {
	position: relative;
}
.team-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 70%;
	background-color: #f8f8f8;
}
.team-bg::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 70%;
	background-image: url(../img/team/team-shape.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.team-card {
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}
.team-card:hover .images::before {
	background-color: #111;
}
.team-card:hover .images::after {
	background-color: #111;
}
.team-card .images {
	border: 1px solid #9a9a9a;
	margin-right: 10px;
	margin-bottom: 10px;
	position: relative;
}
.team-card .images::before {
	content: "";
	position: absolute;
	top: 10px;
	right: -11px;
	height: 100%;
	width: 10px;
	background-color: #f3f3f3;
	transition: 0.7s;
}
.team-card .images::after {
	content: "";
	position: absolute;
	bottom: -11px;
	right: -10px;
	height: 10px;
	width: 100%;
	background-color: #f3f3f3;
	transition: 0.7s;
}
.team-card .images a {
	display: block;
	text-align: center;
}
.team-card .images a.images-ptb {
	padding: 30px 30px 0;
}
.team-card .images a img {
	max-width: 100%;
}
.team-card .images .social-link {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
}
.team-card .images .social-link li {
	display: inline-block;
	margin: -2px;
}
.team-card .images .social-link li a {
	width: 35px;
	height: 35px;
	line-height: 37px;
	text-align: center;
	color: #ffffff;
}
.team-card .images .social-link li:nth-child(1) a {
	background-color: #0331b8;
}
.team-card .images .social-link li:nth-child(1) a:hover {
	background-color: #111;
}
.team-card .images .social-link li:nth-child(2) a {
	background-color: #3f70ff;
}
.team-card .images .social-link li:nth-child(2) a:hover {
	background-color: #111;
}
.team-card .images .social-link li:nth-child(3) a {
	background-color: #e52f29;
}
.team-card .images .social-link li:nth-child(3) a:hover {
	background-color: #111;
}
.team-card .images .social-link li:nth-child(4) a {
	background-color: #b92722;
}
.team-card .images .social-link li:nth-child(4) a:hover {
	background-color: #111;
}
.team-card .content {
	text-align: center;
	padding-top: 20px;
}
.team-card .content h3 {
	margin-bottom: 10px;
	text-transform: uppercase;
	font-size: 20px;
}
.team-card .content h3 a {
	display: block;
	color: #08104d;
}
.team-card .content .sub-title {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.team-card .content .sub-title li {
	display: inline-block;
	font-size: 15px;
	color: #64677c;
	margin-right: 7px;
	position: relative;
}
.team-card .content .sub-title li:last-child {
	margin-right: 0;
}
.team-card .content .sub-title li:first-child::before {
	display: none;
}
.team-card .content .sub-title li::before {
	content: "";
	position: absolute;
	top: 7px;
	left: -7px;
	width: 1px;
	height: 15px;
	background-color: #64677c;
}

.team-border .images {
	border: none;
}

.team-profile-content {
	margin-bottom: 30px;
}
.team-profile-content .section-title-two {
	margin-bottom: 20px;
}

.team-profile-skill h2 {
	font-size: 40px;
	color: #111;
	margin-bottom: 20px;
	font-weight: 400;
}
.team-profile-skill .team-profile-status {
	margin-bottom: 20px;
}
.team-profile-skill .team-profile-status h3 {
	font-size: 17px;
	font-weight: 400;
	margin-bottom: 0px;
}
.team-profile-skill .team-profile-status span {
	font-size: 16px;
}

.team-profile {
	margin-bottom: 30px;
	margin-left: 30px;
}
.team-profile img {
	width: 100%;
}
.team-profile .content {
	padding: 40px 40px 45px;
	background-color: #111;
	position: relative;
}
.team-profile .content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/shape/bg-shape.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.team-profile .content h3 {
	font-size: 20px;
	color: #ffffff;
}
.team-profile .content .sub-title {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.team-profile .content .sub-title li {
	display: inline-block;
	font-size: 15px;
	color: #d0d0d0;
	margin-right: 7px;
	position: relative;
}
.team-profile .content .sub-title li:last-child {
	margin-right: 0;
}
.team-profile .content .sub-title li:first-child::before {
	display: none;
}
.team-profile .content .sub-title li::before {
	content: "";
	position: absolute;
	top: 7px;
	left: -7px;
	width: 1px;
	height: 15px;
	background-color: #d0d0d0;
}
.team-profile .content .more-title {
	list-style-type: none;
	margin: 10px 0 0 0;
	padding: 0;
	position: relative;
	z-index: 1;
}
.team-profile .content .more-title li {
	display: block;
	color: #d0d0d0;
}
.team-profile .content .more-title li a {
	color: #d0d0d0;
}
.team-profile .content .more-title li a:hover {
	color: #ffffff;
}
.team-profile .content .social-icon {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
	position: relative;
	z-index: 1;
}
.team-profile .content .social-icon li {
	display: inline-block;
	margin: 0 -2px;
}
.team-profile .content .social-icon li a {
	width: 30px;
	height: 30px;
	line-height: 32px;
	text-align: center;
	color: #ffffff;
}
.team-profile .content .social-icon li:nth-child(1) a {
	background-color: #3b5998;
}
.team-profile .content .social-icon li:nth-child(1) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}
.team-profile .content .social-icon li:nth-child(2) a {
	background-color: #55acee;
}
.team-profile .content .social-icon li:nth-child(2) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}
.team-profile .content .social-icon li:nth-child(3) a {
	background-color: #c80000;
}
.team-profile .content .social-icon li:nth-child(3) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}
.team-profile .content .social-icon li:nth-child(4) a {
	background-color: #ff0000;
}
.team-profile .content .social-icon li:nth-child(4) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}

/*=================================
Team Area End
====================================*/
/*=================================
Blog Area
====================================*/
.blog-area {
	position: relative;
}
.blog-area .section-title {
	margin-bottom: 45px;
	position: relative;
	z-index: 1;
}

.blog-shape {
	position: absolute;
	top: 0;
	left: 0;
}

.blog-bg {
	background-color: #f3f3f3;
}

.blog-btn {
	margin-bottom: 45px;
	float: right;
	margin-top: 60px;
}
.blog-btn .view-btn {
	padding: 10px 30px;
	background-color: #111;
	color: #ffffff;
	font-size: 16px;
	position: relative;
	z-index: 1;
}
.blog-btn .view-btn:hover::before {
	opacity: 1;
	height: 100%;
	border-radius: 5px;
}
.blog-btn .view-btn::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background-color: #08104d;
	transition: 0.7s;
	opacity: 0;
}
.blog-btn .view-btn i {
	margin-right: 5px;
	font-size: 26px;
	line-height: 1;
	position: relative;
	top: 5px;
}

.blog-card {
	background-color: #ffffff;
	margin-bottom: 30px;
	transition: 0.7s;
	position: relative;
	z-index: 1;
}
.blog-card:hover {
	transform: translateY(-5px);
}
.blog-card:hover .content h3 a {
	color: #08104d;
}
.blog-card a {
	display: block;
}
.blog-card a img {
	max-width: 100%;
	width: 100%;
}
.blog-card .content {
	padding: 30px;
}
.blog-card .content span {
	font-size: 15px;
	color: #111;
	position: relative;
	margin-left: 30px;
}
.blog-card .content span::before {
	content: "";
	position: absolute;
	bottom: 5px;
	left: -30px;
	width: 30px;
	height: 1px;
	background-color: #111;
}
.blog-card .content span a {
	display: inline-block;
	color: #111;
}
.blog-card .content span a:hover {
	color: #111;
}
.blog-card .content h3 {
	margin-top: 10px;
	margin-bottom: 10px;
}
.blog-card .content h3 a {
	display: block;
	color: #111;
}
.blog-card .content .learn-btn {
	font-size: 17px;
	color: #1a1a1a;
	display: block;
	font-weight: 500;
	transition: 0.9s;
	position: relative;
}
.blog-card .content .learn-btn i {
	font-size: 30px;
	line-height: 1;
	position: relative;
	top: 7px;
	font-weight: 400;
	transition: 0.9s;
}
.blog-card .content .learn-btn:hover {
	letter-spacing: 0.25px;
}

.blog-shadow {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.blog-card-pb .content {
	padding-bottom: 0 !important;
}

.blog-card-border {
	border: 1px solid #c4c4c4;
	padding: 20px;
}
.blog-card-border .content {
	padding: 20px 20px 10px 0;
}
.blog-card-border:hover {
	background-color: #ffffff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.blog-title ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-title ul li {
	display: inline-block;
	margin-left: 45px;
	color: #111;
	position: relative;
}
.blog-title ul li a {
	color: #111;
}
.blog-title ul li::before {
	content: "";
	position: absolute;
	bottom: 7px;
	width: 30px;
	height: 1px;
	left: -45px;
	background-color: #111;
}
.blog-title ul li:last-child {
	margin-left: 0;
}
.blog-title ul li:last-child::before {
	display: none;
}
.blog-title h2 {
	font-size: 40px;
	color: #111;
	font-weight: 400;
	margin-bottom: 30px;
}

.blog-article .blog-article-img {
	margin-bottom: 30px;
}
.blog-article .article-content p {
	margin-bottom: 20px;
}
.blog-article .article-content .blockquote {
	margin-right: 20px;
	position: relative;
	margin-bottom: 50px;
	margin-top: 40px;
	background-color: #ffffff;
	padding: 30px;
	border: 1px solid #111;
}
.blog-article .article-content .blockquote::before {
	content: "\ee83";
	position: absolute;
	top: -40px;
	left: 30px;
	text-align: center;
	font-size: 50px;
	font-weight: 400;
	color: #111;
	font-family: boxicons;
}
.blog-article .article-content .blockquote::after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: -20px;
	right: -20px;
	width: 97%;
	height: 90%;
	background-color: #f3f3f3;
}
.blog-article .article-content .blockquote p {
	font-size: 20px;
	color: #808080;
	font-weight: 600;
	margin-bottom: 0;
}
.blog-article .another-content h2 {
	font-size: 30px;
	margin-bottom: 20px;
	font-weight: 500;
}
.blog-article .another-content p {
	margin-bottom: 20px;
}
.blog-article .another-content .content-img {
	margin-top: 30px;
	margin-bottom: 30px;
}
.blog-article .blog-article-share {
	margin-top: 30px;
	background-image: url(../img/blog/blog-shape2.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 40px;
}
.blog-article .blog-article-share .blog-tag ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-article .blog-article-share .blog-tag ul li {
	display: inline-block;
	padding: 5px 8px;
	transition: 0.7s;
	color: #ffffff;
	font-weight: 600;
}
.blog-article .blog-article-share .blog-tag ul li a {
	color: #111;
}
.blog-article .blog-article-share .blog-tag ul li:hover a {
	color: #ffffff;
}
.blog-article .blog-article-share .social-icon {
	margin: 0;
	padding: 0;
	list-style: none;
	float: right;
}
.blog-article .blog-article-share .social-icon li {
	display: inline-block;
	margin-right: 5px;
}
.blog-article .blog-article-share .social-icon li a {
	border-radius: 50px;
	width: 30px;
	height: 30px;
	line-height: 32px;
	text-align: center;
	color: #ffffff;
}
.blog-article .blog-article-share .social-icon li:nth-child(1) a {
	background-color: #3b5998;
}
.blog-article .blog-article-share .social-icon li:nth-child(1) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}
.blog-article .blog-article-share .social-icon li:nth-child(2) a {
	background-color: #55acee;
}
.blog-article .blog-article-share .social-icon li:nth-child(2) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}
.blog-article .blog-article-share .social-icon li:nth-child(3) a {
	background-color: #3f729b;
}
.blog-article .blog-article-share .social-icon li:nth-child(3) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}
.blog-article .blog-article-share .social-icon li:nth-child(4) a {
	background-color: #ff0000;
}
.blog-article .blog-article-share .social-icon li:nth-child(4) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}
.blog-article .blog-article-share .social-icon li:nth-child(5) a {
	background-color: #c80000;
}
.blog-article .blog-article-share .social-icon li:nth-child(5) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}
.blog-article .article-author {
	margin-bottom: 40px;
	background-color: #ffffff;
	position: relative;
	padding: 60px 40px 10px;
}
.blog-article .article-author::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 150px;
	background-color: #111;
	border-radius: 5px 5px 0 0;
}
.blog-article .article-author ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.blog-article .article-author ul li {
	position: relative;
	z-index: 1;
	padding: 30px;
	padding-left: 150px;
	margin-bottom: 30px;
}
.blog-article .article-author ul li:last-child {
	margin-bottom: 0;
	border: none;
}
.blog-article .article-author ul li img {
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	border: 15px solid #ffffff;
}
.blog-article .article-author ul li h3 {
	margin-bottom: 0;
	font-size: 20px;
	color: #ffffff;
	font-weight: 500;
}
.blog-article .article-author ul li span {
	margin-bottom: 10px;
	display: block;
	color: #ffffff;
}
.blog-article .article-author ul li p {
	margin-top: 30px;
	margin-bottom: 0;
}
.blog-article .article-author .author-social-link {
	position: absolute;
	top: 110px;
	right: 40px;
}
.blog-article .article-author .author-social-link .social-icon {
	margin: 0;
	padding: 0;
	list-style: none;
	float: right;
}
.blog-article .article-author .author-social-link .social-icon li {
	display: inline-block;
	margin-right: 3px;
	padding: 0;
	margin-bottom: 0;
}
.blog-article .article-author .author-social-link .social-icon li a {
	border-radius: 50px;
	width: 30px;
	height: 30px;
	line-height: 32px;
	text-align: center;
	color: #ffffff;
}
.blog-article .article-author .author-social-link .social-icon li:hover a {
	color: #ac4e0f;
}
.blog-article .article-author .author-shape .shape1 {
	position: absolute;
	top: 0;
	left: 0;
}
.blog-article .article-author .author-shape .shape-dots {
	position: absolute;
	top: 10%;
	right: 30%;
}
.blog-article .article-post {
	position: relative;
	margin-bottom: 40px;
}
.blog-article .article-post::before {
	content: "";
	position: absolute;
	top: 30px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	height: 60px;
	background-color: #eeeeee;
}
.blog-article .article-post .article-post-share {
	padding: 20px 30px;
	border: 1px dashed #111;
}
.blog-article .article-post .article-post-share span {
	font-size: 14px;
	color: #111;
	position: relative;
	font-weight: 600;
	margin-left: 40px;
	display: inline-block;
}
.blog-article .article-post .article-post-share span::before {
	content: "";
	position: absolute;
	left: -35px;
	width: 30px;
	height: 1px;
	bottom: 0;
	background-color: #111;
}
.blog-article .article-post .article-post-share span a {
	color: #111;
	display: inline-block;
	margin-bottom: 0;
}
.blog-article .article-post .article-post-share span a:hover {
	color: #111;
}
.blog-article .article-post .article-post-share a {
	display: block;
}
.blog-article .article-post .article-post-share a h3 {
	font-size: 20px;
	margin-bottom: 0;
	margin-top: 15px;
	transition: 0.7s;
	max-width: 600px;
	color: #111;
}
.blog-article .article-post .article-post-share a h3:hover {
	color: #111;
}

.side-bar-widget {
	margin-bottom: 30px;
}

.search-widget {
	margin-bottom: 35px;
}
.search-widget .search-form {
	position: relative;
}
.search-widget .search-form .form-control {
	height: 50px;
	border: 1px solid #111;
	background-color: #ffffff;
	padding: 10px 20px;
	width: 100%;
	border-radius: 0;
}
.search-widget .search-form .form-control:focus {
	box-shadow: none;
	outline: 0;
}
.search-widget .search-form button {
	position: absolute;
	top: 0;
	right: 0;
	height: 50px;
	width: 50px;
	background-color: #111;
	transition: all 0.5s;
	border: none;
	outline: none;
}
.search-widget .search-form button i {
	color: #ffffff;
}
.search-widget .search-form button:hover {
	background-color: #ac4e0f;
}

.side-bar-widget {
	margin-bottom: 35px;
	border: 1px solid #111;
	background-color: #ffffff;
	box-shadow: 0 0 15px rgba(102, 102, 102, 0.1);
}
.side-bar-widget .title {
	font-size: 20px;
	color: #111;
	padding: 15px 30px;
	font-weight: 500;
}
.side-bar-widget .side-bar-categories {
	padding: 10px 15px 20px;
}
.side-bar-widget .side-bar-categories ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.side-bar-widget .side-bar-categories ul li {
	position: relative;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 600;
	background-color: #ececec;
}
.side-bar-widget .side-bar-categories ul li:hover {
	background-color: #111;
}
.side-bar-widget .side-bar-categories ul li a {
	display: inline-block;
	color: #7d7d7d;
	font-weight: normal;
	padding: 7px 20px;
	font-weight: 600;
}
.side-bar-widget .side-bar-categories ul li a:hover {
	color: #ffffff;
}
.side-bar-widget .side-bar-categories ul li span {
	padding: 7px 15px;
	float: right;
	color: #ffffff;
	background-color: #111;
	font-weight: 600;
}
.side-bar-widget .widget-popular-post {
	position: relative;
	overflow: hidden;
	padding: 20px 30px 30px;
}
.side-bar-widget .widget-popular-post .item {
	overflow: hidden;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.side-bar-widget .widget-popular-post .item:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}
.side-bar-widget .widget-popular-post .item .thumb {
	float: left;
	overflow: hidden;
	position: relative;
	margin-right: 15px;
}
.side-bar-widget .widget-popular-post .item .thumb .full-image {
	width: 80px;
	height: 80px;
	display: inline-block;
	background-size: cover !important;
	background-repeat: no-repeat;
	background-position: center center !important;
	position: relative;
	background-color: var(--titleColor);
}
.side-bar-widget .widget-popular-post .item .thumb .full-image.bg1 {
	background-image: url(../img/blog/blog-1.jpg);
}
.side-bar-widget .widget-popular-post .item .thumb .full-image.bg2 {
	background-image: url(../img/blog/blog-2.jpg);
}
.side-bar-widget .widget-popular-post .item .thumb .full-image.bg3 {
	background-image: url(../img/blog/blog-3.jpg);
}
.side-bar-widget .widget-popular-post .item .info {
	overflow: hidden;
}
.side-bar-widget .widget-popular-post .item .info .title-text {
	margin-bottom: 0;
	line-height: 1.5;
	font-size: 20px;
	font-weight: 600;
}
.side-bar-widget .widget-popular-post .item .info .title-text a {
	display: inline-block;
	color: #111;
}
.side-bar-widget .widget-popular-post .item .info .title-text a:hover {
	color: #111;
}
.side-bar-widget .widget-popular-post .item .info p {
	font-size: 14px;
	margin-bottom: 0;
	max-width: 180px;
}
.side-bar-widget .side-bar-widget-tag {
	list-style: none;
	margin: 0;
	padding: 10px 20px 20px;
}
.side-bar-widget .side-bar-widget-tag li {
	display: inline-block;
	padding: 7px 15px;
	margin: 5px;
	transition: 0.7s;
	color: #777777;
	font-size: 16px;
	font-weight: 600;
	background-color: #ececec;
}
.side-bar-widget .side-bar-widget-tag li:hover {
	background-color: #111;
}
.side-bar-widget .side-bar-widget-tag li a {
	color: #777777;
}
.side-bar-widget .side-bar-widget-tag li:hover a {
	color: #ffffff;
}
.side-bar-widget .portfolio-details-categories ul li span {
	padding: 7px 10px;
	width: 40% !important;
	text-align: right !important;
}

.side-bar-contact {
	margin-bottom: 30px;
	background-color: #111;
	position: relative;
	padding: 50px;
	text-align: center;
}
.side-bar-contact::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/shape/bg-shape.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.side-bar-contact i {
	font-size: 60px;
	color: #ffffff;
	position: relative;
	z-index: 1;
}
.side-bar-contact h3 {
	font-size: 35px;
	color: #ffffff;
	font-weight: 400;
	position: relative;
	z-index: 1;
}
.side-bar-contact span {
	font-size: 24px;
	position: relative;
	z-index: 1;
}
.side-bar-contact span a {
	display: block;
	color: #ffffff;
}
.side-bar-contact span a:hover {
	color: #111;
}

/*=================================
Blog Area End
====================================*/
/*=================================
Contact Area
====================================*/
.contact-area {
	background-color: #c4af7d;
	position: relative;
}
.contact-area h2 {
	z-index: 10;
}

.contact-form {
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.contact-form h2 {
	font-size: 58px;
	color: #ffffff;
	margin-bottom: 30px;
	text-align: center;
}
.contact-form .form-group {
	margin-bottom: 25px;
	position: relative;
}
.contact-form .form-group i {
	position: absolute;
	top: 14px;
	left: 15px;
	line-height: 1;
	font-size: 18px;
	color: #bbbbbb;
	z-index: 1;
}
.contact-form .form-group .form-control {
	height: 50px;
	color: #bbbbbb;
	border: 1px solid #6c6c6c;
	background-color: #313131;
	font-weight: 600;
	border-radius: 0;
	font-size: 14px;
	padding: 10px 20px 10px 40px;
	width: 100%;
}
.contact-form .form-group .form-control:focus {
	outline: none;
	border-color: #111;
	box-shadow: none;
}
.contact-form .form-group textarea.form-control {
	height: auto;
}
.contact-form .submit-btn {
	border: 0;
	outline: none;
	padding: 10px 100px;
	color: #1a1a1a;
	background-color: #ffffff;
	font-weight: 600;
	font-size: 17px;
	transition: 0.7s;
	position: relative;
	z-index: 1;
}
.contact-form .submit-btn::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	opacity: 0;
	background-color: #64677c;
	transition: 0.7s;
}
.contact-form .submit-btn:hover {
	color: #ffffff;
}
.contact-form .submit-btn:hover::before {
	height: 100%;
	opacity: 1;
}

.contact-form .form-group .form-control:-ms-input-placeholder {
	color: #bbbbbb;
}

.contact-form .form-group .form-control::-moz-placeholder {
	color: #bbbbbb;
}

.contact-form .form-group .form-control::placeholder {
	color: #bbbbbb;
}

.contact-wrap-form {
	margin-bottom: 30px;
	max-width: 800px;
}
.contact-wrap-form h2 {
	font-size: 50px;
	color: #111;
	margin-bottom: 30px;
	font-weight: 400;
}
.contact-wrap-form .form-group {
	margin-bottom: 25px;
	position: relative;
}
.contact-wrap-form .form-group i {
	position: absolute;
	top: 14px;
	left: 15px;
	line-height: 1;
	font-size: 18px;
	color: #898989;
	z-index: 1;
}
.contact-wrap-form .form-group .form-control {
	height: 50px;
	color: #898989;
	border: none;
	border-bottom: 1px solid #6c6c6c;
	font-weight: 600;
	border-radius: 0;
	font-size: 14px;
	padding: 10px 20px 10px 40px;
	width: 100%;
	background-color: transparent;
}
.contact-wrap-form .form-group .form-control:focus {
	outline: none;
	border-color: #111;
	box-shadow: none;
}
.contact-wrap-form .form-group textarea.form-control {
	height: auto;
}
.contact-wrap-form .with-errors {
	float: left;
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: 0;
	color: #f00;
	font-weight: 400;
	display: block;
}
.contact-wrap-form .text-danger {
	font-size: 18px;
	margin-top: 15px;
}
.contact-wrap-form .default-btn {
	border: 0;
	outline: none;
	padding: 10px 70px;
}

.contact-wrap-form .form-group .form-control:-ms-input-placeholder {
	color: #bbbbbb;
}

.contact-wrap-form .form-group .form-control::-moz-placeholder {
	color: #bbbbbb;
}

.contact-wrap-form .form-group .form-control::placeholder {
	color: #bbbbbb;
}

.contact-two-form .contact-wrap-form {
	margin-left: auto;
	max-width: 740px;
}

.contact-area-two {
	background-color: #f7f7f7;
	position: relative;
}
.contact-area-two::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/shape/contact-shape-2.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: 720px;
}

.contact-area-three {
	background-image: url(../img/contact-bg.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding-top: 100px;
}

.contact-three-form {
	position: relative;
	bottom: -30px;
}
.contact-three-form .contact-wrap-form {
	background-color: #ffffff;
	margin-left: auto;
	padding: 85px 50px 95px;
	margin-bottom: 0;
}

.contact-section-img {
	margin-bottom: 30px;
}
.contact-section-img img {
	height: 400px;
}

.contact-section-content {
	padding: 50px 35px;
	background-color: #333333;
	position: relative;
	margin-bottom: 30px;
}
.contact-section-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/shape/contact-shape-3.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.contact-section-content h3 {
	font-size: 28px;
	color: #ffffff;
	font-weight: 400;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 30px;
}
.contact-section-content h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #848484;
	height: 2px;
	width: 180px;
}
.contact-section-content .contact-section-list {
	list-style: none;
	margin: 0 0 20px 0;
	padding: 0;
	position: relative;
	z-index: 1;
}
.contact-section-content .contact-section-list li {
	display: block;
	font-size: 17px;
	margin-top: 5px;
	font-weight: 500;
	color: #ffffff;
}
.contact-section-content .contact-section-list li span {
	color: #ffffff;
}
.contact-section-content .contact-section-list li a {
	color: #ffffff;
}
.contact-section-content .social-link {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	z-index: 1;
}
.contact-section-content .social-link li {
	display: inline-block;
	padding: 15px 5px;
	border-right: 1px solid rgba(125, 120, 120, 0.4901960784);
}
.contact-section-content .social-link li:first-child {
	border-left: 1px solid rgba(125, 120, 120, 0.4901960784);
}
.contact-section-content .social-link li a {
	border-radius: 50px;
	width: 35px;
	height: 35px;
	line-height: 37px;
	text-align: center;
	color: #ffffff;
}
.contact-section-content .social-link li:hover a {
	color: #ac4e0f;
}

/*=================================
Contact Area End
====================================*/
/*==================================
User All Area 
=================================*/
.user-all-img {
	margin-bottom: 30px;
	margin-right: -150px;
}

.user-all-form {
	margin-bottom: 30px;
}
.user-all-form .contact-wrap-form {
	background-color: #ffffff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	padding: 50px 30px;
}
.user-all-form .contact-wrap-form .agree-label label {
	font-weight: 600;
	color: #111;
	margin-left: 10px;
	font-size: 17px;
}
.user-all-form .contact-wrap-form .forget {
	margin-bottom: 15px;
	float: right;
	color: #111;
	font-weight: 600;
	font-size: 17px;
}
.user-all-form .contact-wrap-form .forget:hover {
	color: #ac4e0f;
}
.user-all-form .contact-wrap-form .account-desc {
	margin-top: 15px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 0;
	font-size: 17px;
}
.user-all-form .contact-wrap-form .account-desc a {
	color: #111;
}
.user-all-form .contact-wrap-form .account-desc a:hover {
	color: #ac4e0f;
}

/*==================================
User All Area End
=================================*/
.single-content {
	margin-bottom: 30px;
}
.single-content h3 {
	font-size: 26px;
	color: #111;
	margin-bottom: 10px;
}
.single-content p {
	margin-bottom: 0;
}

/*==================================
Faq Area 
=================================*/
.faq-accordion {
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
}
.faq-accordion .accordion {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
	border: none;
}
.faq-accordion .accordion .accordion-item {
	display: block;
	background-color: #ffffff;
	margin-bottom: 15px;
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.faq-accordion .accordion .accordion-item:last-child {
	margin-bottom: 0;
}
.faq-accordion .accordion .accordion-title {
	padding: 20px 60px 17px 20px;
	color: #232350;
	text-decoration: none;
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: 600;
}
.faq-accordion .accordion .accordion-title i {
	position: absolute;
	right: 15px;
	top: 15px;
	font-size: 25px;
	transition: 0.5s;
	font-size: 24px;
	width: 40px;
	height: 40px;
	color: #111;
	border-radius: 50px;
	border: 1px solid #111;
	text-align: center;
	line-height: 40px;
	background-color: transparent;
}
.faq-accordion .accordion .accordion-title.active i {
	transform: rotate(180deg);
	top: 15px;
}
.faq-accordion .accordion .accordion-content {
	display: none;
	position: relative;
	margin-top: -5px;
	padding-bottom: 10px;
	padding-right: 30px;
	padding-left: 30px;
}
.faq-accordion .accordion .accordion-content p {
	line-height: 1.8;
}
.faq-accordion .accordion .accordion-content.show {
	display: block;
}

/*==================================
Faq Area End
=================================*/
/*=================================
Map Area 
====================================*/
.map-area iframe {
	display: block;
	width: 100%;
	height: 470px;
}

/*=================================
Map Area End
====================================*/
/*=================================
Product Area 
====================================*/
.product-area .product-topbar {
	margin-bottom: 40px;
	padding-bottom: 20px;
}
.product-area .product-topbar .product-result-count p {
	font-size: 18px;
}
.product-area .product-topbar .product-topbar-ordering {
	text-align: right;
}
.product-area .product-topbar .product-topbar-ordering .nice-select {
	background-color: transparent;
	color: #111;
	border-radius: 0;
	border: 1px solid #cfcfcf;
	float: unset;
	height: unset;
	line-height: initial;
	padding: 17px 35px 13px 20px;
	font-size: 16px;
}
.product-area .product-topbar .product-topbar-ordering .nice-select .list {
	background-color: #ffffff;
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	border-radius: 0;
	margin-top: 0;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
}
.product-area
	.product-topbar
	.product-topbar-ordering
	.nice-select
	.list
	.option {
	transition: 0.6s;
	font-size: 14px;
	padding-left: 20px;
	padding-right: 20px;
	color: #343434;
}
.product-area
	.product-topbar
	.product-topbar-ordering
	.nice-select
	.list
	.option:hover {
	background-color: #eee !important;
	color: #d80650;
}
.product-area
	.product-topbar
	.product-topbar-ordering
	.nice-select
	.list
	.option
	.selected {
	font-weight: 700;
	color: #d80650;
}
.product-area .product-topbar .product-topbar-ordering .nice-select:after {
	right: 20px;
}

.single-product {
	margin-bottom: 30px;
}
.single-product .images {
	position: relative;
	border: 1px solid #cfcfcf;
	margin-bottom: 35px;
	margin-right: 20px;
	text-align: center;
}
.single-product .images:hover .add-product {
	opacity: 1;
}
.single-product .images img {
	text-align: center;
}
.single-product .images::before {
	content: "";
	position: absolute;
	top: 20px;
	right: -21px;
	height: 100%;
	width: 20px;
	background-color: #f3f3f3;
	transition: 0.7s;
}
.single-product .images::after {
	content: "";
	position: absolute;
	bottom: -21px;
	right: -20px;
	height: 20px;
	width: 100%;
	background-color: #f3f3f3;
	transition: 0.7s;
}
.single-product .images:hover::before {
	opacity: 0;
	height: 0;
}
.single-product .images:hover::after {
	opacity: 0;
	width: 0;
}
.single-product .images .add-product {
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	opacity: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}
.single-product .images .add-product li {
	display: inline-block;
}
.single-product .images .add-product li a {
	padding: 7px 20px;
	font-size: 16px;
	color: #ffffff;
	background-color: #111;
}
.single-product .images .add-product li a.add-icon {
	padding: 7px 15px;
}
.single-product .images .add-product li a:hover {
	background-color: #08104d;
}
.single-product h3 {
	font-size: 18px;
	margin-top: 20px;
}
.single-product h3 a {
	display: block;
	color: #111;
}
.single-product span {
	font-size: 18px;
	color: #111;
}
.single-product span del {
	color: #111;
}

.product-widget-search {
	margin-bottom: 35px;
}
.product-widget-search .search-form {
	position: relative;
}
.product-widget-search .search-form .form-control {
	height: 50px;
	border: 1px solid #cfcfcf;
	background-color: #ffffff;
	padding: 10px 20px;
	width: 100%;
	border-radius: 0;
}
.product-widget-search .search-form .form-control:focus {
	box-shadow: none;
	outline: 0;
}
.product-widget-search .search-form button {
	position: absolute;
	top: 0;
	right: 0;
	height: 50px;
	width: 50px;
	background-color: transparent;
	transition: all 0.5s;
	border: none;
	outline: none;
	font-size: 20px;
}
.product-widget-search .search-form button i {
	color: #111;
}
.product-widget-search .search-form button:hover i {
	color: #ac4e0f;
}

.product-widget {
	margin-bottom: 35px;
	border: 1px solid #cfcfcf;
	background-color: #ffffff;
}
.product-widget .title {
	font-size: 20px;
	color: #111;
	padding: 15px 30px;
	font-weight: 500;
}
.product-widget .product-categories {
	padding: 10px 15px 20px;
}
.product-widget .product-categories ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.product-widget .product-categories ul li {
	position: relative;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 600;
}
.product-widget .product-categories ul li a {
	display: inline-block;
	color: #7d7d7d;
	font-weight: normal;
	width: 75%;
	padding: 7px 20px;
	background-color: #ececec;
	font-weight: 600;
}
.product-widget .product-categories ul li a:hover {
	color: #111;
}
.product-widget .product-categories ul li span {
	padding: 7px 15px;
	float: right;
	color: #ffffff;
	background-color: #111;
	font-weight: 600;
}
.product-widget .product-post {
	position: relative;
	overflow: hidden;
	padding: 0 15px 20px;
}
.product-widget .product-post .item {
	overflow: hidden;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.product-widget .product-post .item:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}
.product-widget .product-post .item .thumb {
	float: left;
	overflow: hidden;
	position: relative;
	margin-right: 15px;
}
.product-widget .product-post .item .thumb .full-image {
	width: 80px;
	height: 80px;
	display: inline-block;
	background-size: cover !important;
	background-repeat: no-repeat;
	background-position: center center !important;
	position: relative;
	background-color: #111;
}
.product-widget .product-post .item .thumb .full-image.bg1 {
	background-image: url(../img/product/product-list-short1.png);
}
.product-widget .product-post .item .thumb .full-image.bg2 {
	background-image: url(../img/product/product-list-short2.png);
}
.product-widget .product-post .item .thumb .full-image.bg3 {
	background-image: url(../img/product/product-list-short3.png);
}
.product-widget .product-post .item .info {
	overflow: hidden;
}
.product-widget .product-post .item .info ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.product-widget .product-post .item .info ul li {
	display: inline-block;
	font-size: 14px;
	color: #ee8100;
}
.product-widget .product-post .item .info .title-text {
	margin-bottom: 0;
	line-height: 1.5;
	font-size: 17px;
	font-weight: 600;
}
.product-widget .product-post .item .info .title-text a {
	display: inline-block;
	color: #111;
}
.product-widget .product-post .item .info .title-text a:hover {
	color: #ee8100;
}
.product-widget .product-post .item .info p {
	font-size: 17px;
	margin-bottom: 0;
	max-width: 180px;
}

.product-dtls-images {
	margin-bottom: 50px;
	border: 1px solid #cccccc;
	margin-right: 20px;
	position: relative;
}
.product-dtls-images::before {
	content: "";
	position: absolute;
	top: 20px;
	right: -21px;
	height: 100%;
	width: 20px;
	background-color: #f3f3f3;
	transition: 0.7s;
}
.product-dtls-images::after {
	content: "";
	position: absolute;
	bottom: -21px;
	right: -20px;
	height: 20px;
	width: 100%;
	background-color: #f3f3f3;
	transition: 0.7s;
}
.product-dtls-images:hover::before {
	opacity: 0;
	height: 0;
}
.product-dtls-images:hover::after {
	opacity: 0;
	width: 0;
}

.product-desc {
	margin-bottom: 30px;
}
.product-desc .product-desc-topar {
	padding-bottom: 10px;
	border-bottom: 1px solid #cccccc;
	margin-bottom: 20px;
}
.product-desc .product-desc-topar h3 {
	margin-bottom: 12px;
	font-size: 30px;
	font-weight: 600;
}
.product-desc .product-desc-topar .price {
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 600;
	color: #111;
}
.product-desc .product-desc-topar .price .old-price {
	text-decoration: line-through;
	color: #111;
	margin-left: 10px;
	font-size: 15px;
}
.product-desc .product-desc-topar .product-review {
	margin-bottom: 15px;
}
.product-desc .product-desc-topar .product-review .rating {
	display: inline-block;
	padding-right: 5px;
	font-size: 14px;
}
.product-desc .product-desc-topar .product-review .rating i {
	color: #ee8100;
}
.product-desc p {
	margin-bottom: 0;
}
.product-desc .product-add {
	margin-bottom: 20px;
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}
.product-desc .product-add .form-input-counter {
	max-width: 60px;
	min-width: 60px;
	height: 60px;
	text-align: center;
	display: inline-block;
	position: relative;
	top: -3px;
	margin-right: 20px;
}
.product-desc .product-add .form-input-counter .plus-btn {
	position: absolute;
	top: 0;
	right: 0;
	background-color: transparent;
	cursor: pointer;
	color: #111;
	width: 20px;
	height: 22px;
	border: 1px solid #eeeeee;
	transition: 0.5s;
}
.product-desc .product-add .form-input-counter .plus-btn:hover {
	color: rgb(151, 126, 68) !important;
}
.product-desc .product-add .form-input-counter .minus-btn {
	position: absolute;
	top: 22px;
	right: 0;
	background-color: transparent;
	cursor: pointer;
	color: #111;
	width: 20px;
	height: 22px;
	border: 1px solid #eeeeee;
	transition: 0.5s;
}
.product-desc .product-add .form-input-counter .minus-btn:hover {
	color: rgb(151, 126, 68) !important;
}
.product-desc .product-add .form-input-counter input {
	height: 45px;
	color: #111;
	outline: 0;
	display: block;
	border: none;
	background-color: #f8f8f8;
	width: 100%;
	font-size: 17px;
	font-weight: 600;
	padding-left: 15px;
}
.product-desc .product-add .default-btn {
	border: none;
	margin-right: 20px;
	padding: 4px 26px 8px 26px;
}
.product-desc .product-status p {
	margin-bottom: 0;
}
.product-desc .product-status span {
	color: #111;
}

.products-details-tab .tabs {
	margin: 0;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #cccccc;
	text-align: center;
}
.products-details-tab .tabs li {
	display: inline-block;
	line-height: initial;
	margin-right: 25px;
}
.products-details-tab .tabs li a {
	display: inline-block;
	position: relative;
	font-size: 17px;
	font-weight: 600;
	color: #111;
	padding-bottom: 15px;
	border-bottom: 1px solid #b1acac;
}
.products-details-tab .tabs li a span {
	color: #111;
}
.products-details-tab .tabs li a:focus {
	color: #111;
	border-bottom: 1px solid #111;
}
.products-details-tab .tabs li.active a {
	color: #111;
	border-bottom: 1px solid #111;
}
.products-details-tab .tabs li.current a {
	color: #111;
	border-bottom: 1px solid #111;
}

.products-tabs-decs {
	max-width: 840px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
}
.products-tabs-decs p {
	color: #111;
	font-weight: 600;
}

.product-tab {
	background-color: #f5f5f5;
	position: relative;
	margin-bottom: 10px;
}
.product-tab::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-image: url(../img/product/product-shape.png);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.products-tabs-reviews ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.products-tabs-reviews ul li {
	position: relative;
	padding-bottom: 40px;
	padding-left: 260px;
	margin-bottom: 30px;
	border-bottom: 1px solid #eeeeee;
}
.products-tabs-reviews ul li:last-child {
	margin-bottom: 0;
}
.products-tabs-reviews ul li img {
	position: absolute;
	top: 0;
	left: 90px;
}
.products-tabs-reviews ul li h3 {
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: 600;
	color: #111;
}
.products-tabs-reviews ul li .content .rating {
	display: inline-block;
	color: #ee8100;
	margin-right: 20px;
	position: relative;
}
.products-tabs-reviews ul li .content .rating::before {
	content: "";
	position: absolute;
	top: 3px;
	right: -13px;
	width: 1px;
	height: 20px;
	background-color: #cccccc;
}
.products-tabs-reviews ul li .content span {
	margin-bottom: 10px;
	display: inline-block;
}
.products-tabs-reviews ul li p {
	margin-bottom: 0;
	max-width: 650px;
}

.reviews-form {
	margin-top: 35px;
}
.reviews-form .contact-wrap-form {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.reviews-form .contact-wrap-form h3 {
	text-align: center;
	font-size: 24px;
	color: #111;
	margin-bottom: 10px;
}
.reviews-form p {
	text-align: center;
	color: #111;
	margin-bottom: 10px;
}
.reviews-form .rating {
	text-align: center;
	color: #ee8100;
	position: relative;
	margin-bottom: 30px;
}

/*=================================
Product Area End
====================================*/
/*=================================
Cart Wraps Area
===================================*/
.cart-wraps-area {
	background-color: #f4f0e6;
}
.cart-wraps-area .section-title {
	margin-bottom: 20px;
}
.cart-wraps-area .section-title h2 {
	color: rgb(151, 126, 68);
	margin-bottom: 50px;
}
.cart-wraps-area .section-title p {
	font-weight: 600;
	font-size: 24px;
	color: rgb(151, 126, 68);
}
.cart-wraps-area .section-2 {
	margin-top: 100px;
}
.cart-wraps-area .cart-table table {
	margin-bottom: 0;
	max-width: 80%;
	margin: 0 auto;
}
.cart-wraps-area .cart-table table thead tr th {
	border-bottom-width: 0px;
	vertical-align: middle;
	padding: 15px 0;
	text-transform: uppercase;
	border: none;
	font-weight: 700;
	font-size: 18px;
}
.cart-wraps-area .cart-table table tbody tr td {
	vertical-align: middle;
	color: #111;
	padding-left: 0;
	padding-right: 0;
	font-size: 15px;
	border-width: 1px;
	border-color: #222;
	border-left: none;
	border-right: none;
}
.cart-wraps-area .cart-table table tbody tr td.product-thumbnail a {
	display: block;
}
.cart-wraps-area .cart-table table tbody tr td.product-thumbnail a img {
	width: 60px;
	height: 60px;
}
.cart-wraps-area .cart-table table tbody tr td.product-name a {
	color: #111;
	font-weight: 600;
	display: inline-block;
	font-size: 16px;
}
.cart-wraps-area .cart-table table tbody tr td.product-name a:hover {
	color: rgb(151, 126, 68) !important;
}
.cart-wraps-area .cart-table table tbody tr td.product-subtotal .remove {
	color: #111;
	float: right;
	position: relative;
	top: 1px;
	transition: all 0.5s;
}
.cart-wraps-area .cart-table table tbody tr td.product-subtotal .remove i {
	font-size: 24px;
}
.cart-wraps-area .cart-table table tbody tr td.product-subtotal .remove:hover {
	color: #111;
}
.cart-wraps-area .cart-table table tbody tr td.product-subtotal span {
	font-weight: 600;
}
.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter {
	max-width: 130px;
	min-width: 130px;
	text-align: center;
	display: inline-block;
	position: relative;
}
.cart-wraps-area
	.cart-table
	table
	tbody
	tr
	td.product-quantity
	.input-counter
	span {
	position: absolute;
	top: 0;
	background-color: transparent;
	cursor: pointer;
	color: #111;
	width: 40px;
	height: 100%;
	line-height: 48px;
	transition: 0.5s;
}
.cart-wraps-area
	.cart-table
	table
	tbody
	tr
	td.product-quantity
	.input-counter
	span:hover {
	color: #111 !important;
}
.cart-wraps-area
	.cart-table
	table
	tbody
	tr
	td.product-quantity
	.input-counter
	.minus-btn {
	left: 0;
}
.cart-wraps-area
	.cart-table
	table
	tbody
	tr
	td.product-quantity
	.input-counter
	.minus-btn:hover {
	color: #111 !important;
}
.cart-wraps-area
	.cart-table
	table
	tbody
	tr
	td.product-quantity
	.input-counter
	.plus-btn {
	right: 0;
}
.cart-wraps-area
	.cart-table
	table
	tbody
	tr
	td.product-quantity
	.input-counter
	.plus-btn:hover {
	color: #111 !important;
}
.cart-wraps-area
	.cart-table
	table
	tbody
	tr
	td.product-quantity
	.input-counter
	input {
	height: 45px;
	color: #111;
	outline: 0;
	display: block;
	border: none;
	background-color: #f8f8f8;
	text-align: center;
	width: 100%;
	font-size: 17px;
	font-weight: 600;
}
.cart-wraps-area .cart-table .table > :not(:first-child) {
	border-top: 0;
}
.cart-wraps-area .cart-buttons {
	margin-top: 30px;
}
.cart-wraps-area .cart-totals {
	background: #ffffff;
	padding: 40px;
	box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
	border-radius: 0;
	margin: auto;
	margin-top: 50px;
}
.cart-wraps-area .cart-totals h3 {
	font-size: 24px;
	margin-bottom: 25px;
}
.cart-wraps-area .cart-totals ul {
	padding: 0;
	margin: 0 0 25px;
	list-style-type: none;
}
.cart-wraps-area .cart-totals ul li {
	border: 1px solid #b8b08c;
	padding: 10px 15px;
	color: #111;
	overflow: hidden;
	font-weight: 500;
}
.cart-wraps-area .cart-totals ul li:first-child {
	border-bottom: none;
}
.cart-wraps-area .cart-totals ul li:nth-child(3) {
	border-top: none;
}
.cart-wraps-area .cart-totals ul li:last-child {
	border-top: none;
}
.cart-wraps-area .cart-totals ul li span {
	float: right;
	color: #111;
	font-weight: normal;
}
.cart-wraps-area .cart-calc {
	margin-top: 50px;
	background-color: #ffffff;
	padding: 40px;
	box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.cart-wraps-area .cart-calc .cart-wraps-form h3 {
	font-size: 24px;
	color: #111;
	padding-bottom: 20px;
}
.cart-wraps-area .cart-calc .cart-wraps-form .form-group {
	margin-bottom: 20px;
}
.cart-wraps-area .cart-calc .cart-wraps-form .form-group select {
	height: 50px;
	padding: 7px 18px;
	color: #6c777d;
	border: 1px solid #cfcfcf;
}
.cart-wraps-area .cart-calc .cart-wraps-form .form-group select:focus,
.cart-wraps-area .cart-calc .cart-wraps-form .form-group select :hover {
	outline: 0;
	box-shadow: none;
	border: 1px solid #111;
	background-color: #111 !important;
}
.cart-wraps-area .cart-calc .cart-wraps-form .form-group select option {
	padding: 10px;
}
.cart-wraps-area .cart-calc .cart-wraps-form .form-group select option:hover {
	background-color: #111 !important;
}
.cart-wraps-area .cart-calc .cart-wraps-form .form-group .form-control {
	font-size: 16px;
	border: 1px solid #b8b08c;
	color: #6c777d;
	padding: 12px 18px;
	font-weight: 400;
}
.cart-wraps-area .cart-calc .cart-wraps-form .form-group .form-control:focus,
.cart-wraps-area .cart-calc .cart-wraps-form .form-group .form-control :hover {
	outline: 0;
	box-shadow: none;
	border: 1px solid #cfcfcf;
}
.cart-wraps-area .cart-calc .nice-select {
	height: 50px;
	width: 100%;
	margin-bottom: 19px;
	border: 1px solid #b8b08c;
}
.cart-wraps-area .cart-calc .nice-select .list {
	width: 100%;
}
.cart-wraps-area .cart-calc .nice-select .option {
	color: #111 !important;
}
.cart-wraps-area .cart-calc .nice-select .option :hover {
	color: #ffffff !important;
	background-color: #111 !important;
}
.cart-wraps-area .cart-calc .nice-select .current {
	position: relative;
	top: 4px;
	font-weight: 500;
	color: #6c777d;
}

.cart-wraps-area .nice-select .option.focus,
.cart-wraps-area .nice-select .option.selected.focus,
.cart-wraps-area .nice-select .option:hover {
	background-color: #111 !important;
	color: #ffffff !important;
	font-weight: 600;
}

.cart-wraps-area .cart-calc select .option.focus,
.cart-wraps-area .cart-calc .nice-select .option.selected.focus {
	background-color: #111 !important;
	color: #ffffff !important;
}

.cart-wraps-area
	.cart-table
	table
	tbody
	tr
	td.product-quantity
	.input-counter
	input:-ms-input-placeholder {
	color: #111;
}

.cart-wraps-area
	.cart-table
	table
	tbody
	tr
	td.product-quantity
	.input-counter
	input::-moz-placeholder {
	color: #111;
}

.cart-wraps-area
	.cart-table
	table
	tbody
	tr
	td.product-quantity
	.input-counter
	input::placeholder {
	color: #111;
}

.cart-area
	.cart-calc
	.cart-wraps-area
	form
	.form-control
	input:-ms-input-placeholder {
	color: #6c777d;
}

.cart-area
	.cart-area
	.cart-calc
	.cart-wraps-area
	.form-control
	input::-moz-placeholder {
	color: #495057;
}

.cart-area
	.cart-area
	.cart-calc
	.cart-wraps-area
	.form-control
	input:-ms-input-placeholder {
	color: #495057;
}

.cart-area
	.cart-area
	.cart-calc
	.cart-wraps-area
	.form-control
	input::placeholder {
	color: #495057;
}

/*=================================
Cart Wraps Area End
===================================*/
/*=================================
Checkout Area 
===================================*/
.checkout-area .checkout-user {
	box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.08);
	background: #ffffff;
	padding: 20px 15px;
	margin-bottom: 65px;
	border-top: 3px solid rgb(151, 126, 68);
	color: #111;
}
.checkout-area .checkout-user span {
	color: #111;
	font-size: 20px;
}
.checkout-area .checkout-user span a {
	color: #111;
}
.checkout-area .checkout-user span a:hover {
	color: #08104d;
}

.billing-details {
	margin-bottom: 30px;
	background-color: #ffffff;
	padding: 50px 30px 25px 30px;
	box-shadow: 0 5px 28px rgba(0, 0, 0, 0.07);
}
.billing-details h3 {
	font-size: 24px;
	color: #111;
	margin-bottom: 15px;
	font-weight: 600;
}
.billing-details .form-group {
	margin-bottom: 25px;
}
.billing-details .form-group label {
	color: #111;
	display: block;
	margin-bottom: 10px;
	font-weight: 500;
}
.billing-details .form-group label span {
	color: #111;
}
.billing-details .form-group .form-control {
	height: 50px;
	color: #2d3652;
	border: 1px solid #e8e8e8;
	background-color: #fcfcff;
	border-radius: 0;
	padding: 10px 20px;
	width: 100%;
}
.billing-details .form-group .form-control:focus,
.billing-details .form-group .form-control :hover {
	outline: 0;
	box-shadow: none;
	border: 1px solid #111;
}
.billing-details .form-group .form-message {
	font-size: 16px;
	border: 1px solid #e8e8e8;
	background-color: #fcfcff;
	padding: 18px 18px;
	font-weight: 400;
	width: 100%;
}
.billing-details .form-group .form-message:focus,
.billing-details .form-group .form-message :hover {
	outline: 0;
	box-shadow: none;
	border: 1px solid #111;
}
.billing-details .form-group .nice-select {
	float: unset;
	line-height: 45px;
	color: #111;
	padding-top: 0;
	padding-bottom: 0;
}
.billing-details .form-group .nice-select .list {
	background-color: #ffffff;
	box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
	border-radius: 0;
	margin-top: 0;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
}
.billing-details .form-group .nice-select .list .option {
	transition: 0.5s;
	padding-left: 20px;
	padding-right: 20px;
}
.billing-details .form-group .nice-select .list .option:hover {
	background-color: #111 !important;
	color: #ffffff;
}
.billing-details .form-group .nice-select .list .option:focus {
	border: none;
	outline: none;
}
.billing-details .form-group .nice-select .list .option .selected {
	background-color: transparent;
}
.billing-details .form-group .nice-select:after {
	right: 20px;
}
.billing-details .form-check {
	margin-bottom: 15px;
}
.billing-details .form-check .form-check-input {
	width: 15px;
	height: 15px;
}
.billing-details .form-check .form-check-label {
	color: #111;
	margin-left: 5px;
	font-weight: 500;
}

.checkout-area .billing-details .form-group .nice-select .option:hover,
.checkout-area .billing-details .form-group .nice-select .option.focus,
.checkout-area
	.billing-details
	.form-group
	.nice-select
	.option.selected.focus {
	background-color: #111 !important;
	color: #ffffff !important;
	border: none;
	outline: none;
}

.order-details .order-table {
	background-color: #ffffff;
	padding: 50px 30px;
	box-shadow: 0 5px 28px rgba(0, 0, 0, 0.07);
}
.order-details .order-table h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}
.order-details .order-table table {
	margin-bottom: 0;
}
.order-details .order-table table thead tr th {
	border-bottom-width: 0;
	vertical-align: middle;
	border-color: #eaedff;
	padding-left: 20px;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	font-weight: 600;
	color: #111;
	font-size: 18px;
}
.order-details .order-table table tbody tr td {
	vertical-align: middle;
	color: #111;
	border-color: #eaedff;
	font-size: 14px;
	padding-left: 20px;
	padding-right: 20px;
	font-weight: 600;
}
.order-details .order-table table tbody tr td.product-name a {
	color: #6e768f;
	display: inline-block;
	font-weight: 600;
}
.order-details .order-table table tbody tr td.product-name a:hover {
	color: #111;
}
.order-details .order-table table tbody tr td.order-subtotal span {
	color: #111;
	font-weight: 600;
}
.order-details .order-table table tbody tr td.order-shipping span {
	color: #111;
	font-weight: 700;
}
.order-details .order-table table tbody tr td.total-price span {
	color: #111;
	font-weight: 700;
}
.order-details .order-table table tbody tr td.shipping-price {
	font-weight: 700;
}
.order-details .order-table table tbody tr td.order-subtotal-price {
	font-weight: 700;
}
.order-details .order-table table tbody tr td.product-subtotal {
	font-weight: 700;
}
.order-details .order-table .table > :not(:first-child) {
	border-top: 0;
}
.order-details .payment-box {
	background-color: #ffffff;
	box-shadow: 0 5px 28px rgba(0, 0, 0, 0.07);
	margin-top: 30px;
	margin-bottom: 30px;
	padding: 50px 30px;
}
.order-details .payment-box .payment-method p [type="radio"]:checked {
	display: none;
}
.order-details .payment-box .payment-method p [type="radio"]:checked + label {
	padding-left: 27px;
	cursor: pointer;
	display: block;
	font-weight: 600;
	color: #111;
	position: relative;
	margin-bottom: 8px;
}
.order-details
	.payment-box
	.payment-method
	p
	[type="radio"]:checked
	+ label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	border: 1px solid #dddddd;
	border-radius: 50%;
	background: #ffffff;
}
.order-details
	.payment-box
	.payment-method
	p
	[type="radio"]:checked
	+ label::after {
	content: "";
	width: 12px;
	height: 12px;
	background: #111;
	position: absolute;
	top: 6px;
	left: 3px;
	border-radius: 50%;
	transition: 0.5s;
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.order-details .payment-box .payment-method p [type="radio"]:not(:checked) {
	display: none;
}
.order-details
	.payment-box
	.payment-method
	p
	[type="radio"]:not(:checked)
	+ label {
	padding-left: 27px;
	cursor: pointer;
	display: block;
	font-weight: 600;
	color: #172541;
	position: relative;
	margin-bottom: 8px;
}
.order-details
	.payment-box
	.payment-method
	p
	[type="radio"]:not(:checked)
	+ label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	border: 1px solid #dddddd;
	border-radius: 50%;
	background: #ffffff;
}
.order-details
	.payment-box
	.payment-method
	p
	[type="radio"]:not(:checked)
	+ label::after {
	content: "";
	width: 12px;
	height: 12px;
	background: #111;
	position: absolute;
	top: 6px;
	left: 3px;
	border-radius: 50%;
	transition: 0.5s;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
}
.order-details .payment-box .order-btn {
	margin-top: 20px;
	display: block;
	text-align: center;
	width: 100%;
	padding: 12px 27px;
	color: #ffffff;
	text-align: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background-color: #111;
}
.order-details .payment-box .order-btn::before {
	content: "";
	position: absolute;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: #08104d;
	z-index: -1;
	transition: all 0.5s;
}
.order-details .payment-box .order-btn:hover {
	color: #ffffff;
	border: none;
}
.order-details .payment-box .order-btn:hover::before {
	left: auto;
	right: 0;
	width: 100%;
}

.billing-details .form-group .nice-select .option:hover,
.billing-details .form-group .nice-select .option.focus,
.billing-details .form-group .nice-select .option.selected.focus {
	background-color: #111 !important;
	color: #ffffff !important;
}

/*=================================
Checkout Area End
===================================*/
/*=================================
Footer Area 
====================================*/
#footer {
	background-color: #f4f0e6;
}

.footer-bg {
	background-color: #000000;
}

.footer-widget {
	margin-bottom: 30px;
}
.footer-widget h3 {
	margin-bottom: 20px;
	margin-top: 15px;
	font-size: 20px;
}
.footer-widget .footer-logo {
	display: block;
	margin-bottom: 20px;
}
.footer-widget .footer-logo img {
	max-width: 100%;
}
.footer-widget .footer-logo .footer-logo2 {
	display: none;
}
.footer-widget .footer-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-widget .footer-contact-list li {
	display: block;
	font-size: 15px;
	margin-top: 5px;
}
.footer-widget .footer-contact-list li span {
	color: #234467;
	font-weight: 600;
}
.footer-widget .footer-contact-list li a {
	color: #111;
}
.footer-widget .footer-news {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-widget .footer-news li {
	display: inline-block;
	padding-left: 50px;
	position: relative;
	margin-bottom: 10px;
}
.footer-widget .footer-news li:last-child {
	margin-bottom: 0;
}
.footer-widget .footer-news li i {
	font-size: 40px;
	color: #111;
	position: absolute;
	left: 0;
	top: 7px;
}
.footer-widget .footer-news li .content {
	display: block;
}
.footer-widget .footer-news li .content span {
	margin-bottom: 0;
}
.footer-widget .footer-news li .content a {
	color: #111;
	display: block;
}
.footer-widget .footer-news li .content a:hover {
	text-decoration: underline;
	color: #111;
}
.footer-widget .footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-widget .footer-list li {
	display: block;
	margin-bottom: 5px;
}
.footer-widget .footer-list li:last-child {
	margin-bottom: 0;
}
.footer-widget .footer-list li a {
	font-size: 15px;
	color: #111;
}
.footer-widget .footer-list li a:hover {
	color: #111;
}
.footer-widget .footer-gallery {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	list-style-type: none;
	margin-left: -5px;
	margin-right: -5px;
	margin-bottom: 0;
}
.footer-widget .footer-gallery li {
	flex: 0 0 33.33%;
	max-width: 33.33%;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 10px;
}
.footer-widget .footer-gallery li a {
	display: block;
	position: relative;
}
.footer-widget .footer-gallery li a img {
	width: 100%;
}
.footer-widget .footer-gallery li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
}
.footer-widget .footer-gallery li a:hover::before {
	opacity: 0.5;
	visibility: visible;
}
.footer-widget.footer-widget-color h3 {
	color: #ffffff;
}
.footer-widget.footer-widget-color .footer-contact-list li {
	color: rgba(243, 243, 243, 0.8117647059);
}
.footer-widget.footer-widget-color .footer-contact-list li span {
	color: #ffffff;
}
.footer-widget.footer-widget-color .footer-contact-list li a {
	color: rgba(243, 243, 243, 0.8117647059);
}
.footer-widget.footer-widget-color .footer-news li i {
	color: rgba(243, 243, 243, 0.8117647059);
}
.footer-widget.footer-widget-color .footer-news li .content span {
	margin-bottom: 0;
	color: rgba(243, 243, 243, 0.8117647059);
}
.footer-widget.footer-widget-color .footer-news li .content a {
	color: #b3b3b3;
	display: block;
}
.footer-widget.footer-widget-color .footer-news li .content a:hover {
	color: #ffffff;
}
.footer-widget.footer-widget-color .footer-list li a {
	color: rgba(243, 243, 243, 0.8117647059);
}
.footer-widget.footer-widget-color .footer-list li a:hover {
	color: #ffffff;
}

.copy-right-area {
	padding: 20px 0;
	background-color: #f3f3f3;
}

.copy-right-icon .social-link {
	margin: 0;
	padding: 0;
	list-style: none;
}
.copy-right-icon .social-link li {
	display: inline-block;
	margin-right: 5px;
}
.copy-right-icon .social-link li a {
	border-radius: 50px;
	width: 35px;
	height: 35px;
	line-height: 37px;
	text-align: center;
	color: #ffffff;
}
.copy-right-icon .social-link li:nth-child(1) a {
	background-color: #3b5998;
}
.copy-right-icon .social-link li:nth-child(1) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}
.copy-right-icon .social-link li:nth-child(2) a {
	background-color: #55acee;
}
.copy-right-icon .social-link li:nth-child(2) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}
.copy-right-icon .social-link li:nth-child(3) a {
	background-color: #3f729b;
}
.copy-right-icon .social-link li:nth-child(3) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}
.copy-right-icon .social-link li:nth-child(4) a {
	background-color: #ff0000;
}
.copy-right-icon .social-link li:nth-child(4) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}
.copy-right-icon .social-link li:nth-child(5) a {
	background-color: #c80000;
}
.copy-right-icon .social-link li:nth-child(5) a:hover {
	background-color: #111;
	-webkit-animation: tada 1s linear;
	animation: tada 1s linear;
}

.copyright-text {
	float: right;
}
.copyright-text p {
	padding: 0;
	margin: 0;
	font-size: 15px;
	color: #111;
}
.copyright-text p a {
	color: #111;
	font-weight: 500;
	font-size: 15px;
	border-bottom: 1px solid #111;
}
.copyright-text p a:hover {
	color: #08104d;
}

.copy-right-area-two {
	border-top: 1px solid #3b3b3b;
	background-color: #000000;
}

.copy-right-icon-two .social-link {
	margin: 0;
	padding: 0;
	list-style: none;
}
.copy-right-icon-two .social-link li {
	display: inline-block;
	padding: 15px 5px;
	border-right: 1px solid #3b3b3b;
}
.copy-right-icon-two .social-link li:first-child {
	border-left: 1px solid #3b3b3b;
}
.copy-right-icon-two .social-link li a {
	border-radius: 50px;
	width: 35px;
	height: 35px;
	line-height: 37px;
	text-align: center;
	color: #ffffff;
}
.copy-right-icon-two .social-link li:hover a {
	color: #ac4e0f;
}

.copyright-text-two {
	float: right;
}
.copyright-text-two p {
	padding: 0;
	margin: 0;
	font-size: 15px;
	color: #b3b3b3;
}
.copyright-text-two p a {
	color: #ffffff;
	font-weight: 500;
	font-size: 15px;
	border-bottom: 1px solid #ffffff;
}
.copyright-text-two p a:hover {
	color: #ac4e0f;
	border-color: #ac4e0f;
}

/*=================================
Footer Area End
====================================*/
/*=================================
404 Error Area
===================================*/
.error-area {
	height: 100%;
	padding-top: 50px;
	padding-bottom: 70px;
}
.error-area .error-content {
	text-align: center;
	position: relative;
}
.error-area .error-content img {
	max-width: 100%;
}
.error-area .error-content h3 {
	margin-bottom: 20px;
	position: relative;
	color: #111;
	font-size: 35px;
}
.error-area .error-content p {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 18px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	color: #111;
}

/*=================================
404 Error Area End
===================================*/
/*================================== 
Coming Soon Area 
====================================*/
.coming-soon-area {
	position: relative;
	height: 100vh;
	overflow: hidden;
	background-color: #000000;
}
.coming-soon-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/shape/contact-shape.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.coming-soon-area .coming-soon-content {
	text-align: center;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 2;
	padding: 50px 30px;
	border: 5px solid #aec5df;
}
.coming-soon-area .coming-soon-content h1 {
	margin-bottom: 0;
	color: #ffffff;
	font-size: 60px;
}
.coming-soon-area .coming-soon-content p {
	font-size: 16px;
	max-width: 600px;
	margin-top: 15px;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	color: #ffffff;
}
.coming-soon-area .coming-soon-content #timer {
	margin-top: 20px;
}
.coming-soon-area .coming-soon-content #timer div {
	display: inline-block;
	color: #ffffff;
	position: relative;
	margin-left: 35px;
	margin-right: 35px;
	font-size: 45px;
	font-weight: 700;
}
.coming-soon-area .coming-soon-content #timer div span {
	display: block;
	text-transform: capitalize;
	margin-top: -15px;
	font-size: 16px;
	font-weight: normal;
	color: #ffffff;
}
.coming-soon-area .coming-soon-content #timer div:last-child {
	margin-right: 0;
}
.coming-soon-area .coming-soon-content #timer div:last-child::before {
	display: none;
}
.coming-soon-area .coming-soon-content #timer div:first-child {
	margin-left: 0;
}
.coming-soon-area .coming-soon-content #timer div::before {
	content: "";
	position: absolute;
	right: -50px;
	top: -10px;
	font-size: 70px;
	color: #ffffff;
}
.coming-soon-area .coming-soon-content .newsletter-form {
	position: relative;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}
.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter {
	display: block;
	width: 100%;
	height: 60px;
	border: none;
	background-color: #ffffff;
	padding-left: 15px;
	color: #ffffff;
	outline: 0;
	transition: 0.5s;
	border-radius: 0;
	border: 1px solid #cccccc;
	color: #5d5d5d;
}
.coming-soon-area
	.coming-soon-content
	.newsletter-form
	.input-newsletter:focus {
	border-color: #111;
}
.coming-soon-area .coming-soon-content .newsletter-form .default-btn {
	border: 0;
	outline: 0;
	border-radius: 0 !important;
}
.coming-soon-area .coming-soon-content .newsletter-form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 60px;
	padding: 0 30px;
	text-transform: uppercase;
	outline: 0;
	color: #ffffff;
	transition: 0.5s;
	font-weight: 500;
	font-size: 15px;
	cursor: pointer;
}
.coming-soon-area .coming-soon-content .newsletter-form button::after {
	border-radius: 0;
}
.coming-soon-area .coming-soon-content .newsletter-form button::before {
	border-radius: 0;
}
.coming-soon-area .coming-soon-content .newsletter-form button:hover {
	color: #ffffff;
	background-color: #190f3c;
}
.coming-soon-area .coming-soon-content ul {
	list-style: none;
	margin-top: 30px;
	padding: 0;
}
.coming-soon-area .coming-soon-content ul li {
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 50px;
	font-size: 18px;
	background-color: #111;
	color: #ffffff;
	border-radius: 50px;
	margin-right: 10px;
}
.coming-soon-area .coming-soon-content ul li a {
	color: #ffffff;
}
.coming-soon-area .coming-soon-content ul li:hover {
	background-color: #ac4e0f;
}
.coming-soon-area #validator-newsletter {
	text-align: left;
	color: #dc3545 !important;
}

/*================================== 
Coming Soon Area End
====================================*/
/*==============================
Pagination Area 
=================================*/
.pagination-area {
	margin-top: 10px;
	margin-bottom: 30px;
	text-align: center;
}
.pagination-area .page-numbers {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #111;
	text-align: center;
	display: inline-block;
	position: relative;
	margin-left: 3px;
	margin-right: 3px;
	font-size: 18px;
	background-color: #f5f6fa;
	border: 1px solid #d7d7d7;
}
.pagination-area .page-numbers:hover {
	color: #ffffff;
	border-color: #111;
	background-color: #111;
}
.pagination-area .page-numbers i {
	position: relative;
	font-size: 25px;
	top: 5px;
}
.pagination-area .page-numbers.current {
	color: #ffffff;
	border-color: #111;
	background-color: #111;
}

/*==============================
Pagination Area End
=================================*/
/*==================================
Back To Top Button 
=====================================*/
#toTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	display: none;
	z-index: 99;
}

.top-btn {
	background-color: #111;
	color: #ffffff;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	box-shadow: 0 0 15px #111;
	font-size: 20px;
	display: inline-block;
	text-align: center;
	line-height: 45px;
	transition: 0.9s;
}
.top-btn:hover {
	background-color: #111;
	box-shadow: 0 0 15px #08104d;
	color: #fff;
}

/*==============================
Back To Top Button 
=================================*/
/*==============================
PreLoader CSS 
=================================*/
.preloader {
	background: #111;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 9999999;
	left: 0;
	top: 0;
	text-align: center;
}

.sk-cube-area {
	margin: 20px auto;
	width: 40px;
	height: 40px;
	position: relative;
	transform: rotateZ(45deg);
}
.sk-cube-area .sk-cube {
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
	transform: scale(1.1);
}
.sk-cube-area .sk-cube:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	-webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
	animation: sk-foldCubeAngle 2.4s infinite linear both;
	transform-origin: 100% 100%;
}
.sk-cube-area .sk-cube2 {
	transform: scale(1.1) rotateZ(90deg);
}
.sk-cube-area .sk-cube2:before {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.sk-cube-area .sk-cube3 {
	transform: scale(1.1) rotateZ(180deg);
}
.sk-cube-area .sk-cube3:before {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.sk-cube-area .sk-cube4 {
	transform: scale(1.1) rotateZ(270deg);
}
.sk-cube-area .sk-cube4:before {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
	0%,
	10% {
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0;
	}
	25%,
	75% {
		transform: perspective(140px) rotateX(0deg);
		opacity: 1;
	}
	90%,
	100% {
		transform: perspective(140px) rotateY(180deg);
		opacity: 0;
	}
}
@keyframes sk-foldCubeAngle {
	0%,
	10% {
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0;
	}
	25%,
	75% {
		transform: perspective(140px) rotateX(0deg);
		opacity: 1;
	}
	90%,
	100% {
		transform: perspective(140px) rotateY(180deg);
		opacity: 0;
	}
}
/*==============================
PreLoader CSS End
=================================*/
/*=================================
Buy Now Btn
====================================*/
.buy-now-btn {
	right: 20px;
	z-index: 99;
	top: 50%;
	position: fixed;
	transform: translateY(-50%);
	border-radius: 30px;
	display: inline-block;
	color: #ffffff;
	background-color: #82b440;
	padding: 10px 20px 10px 42px;
	box-shadow: 0 1px 20px 1px #82b440;
	font-size: 13px;
	font-weight: 600;
}
.buy-now-btn img {
	top: 50%;
	left: 20px;
	width: 15px;
	position: absolute;
	transform: translateY(-50%);
}
.buy-now-btn:hover {
	color: #ffffff;
	background-color: #94be5d;
}

.tint {
	width: 100%;
	height: 130vh;
	background-color: rgba(30, 30, 30, 0.4);
}

#navbarSupportedContent {
	display: flex;
	justify-content: flex-end;
}

.enquiry-button {
	position: fixed;
	padding: 10px 30px;
	background-color: #111;
	z-index: 2;
	color: rgb(151, 126, 68);
	font-size: 24px;
	letter-spacing: 10px;
	text-align: center;
	right: 0;
	transform-origin: bottom right;
	transform: rotate(-90deg) translateX(-40vh);
}
.enquiry-button:hover {
	cursor: pointer;
}
@media only screen and (max-width: 991px) {
	.enquiry-button {
		font-size: 16px;
	}
}

.floor-plans-container {
	margin: 0 96px;
}

.portfolio-list ul li {
	color: #ffffff !important;
}

/* The Modal backdrop */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* position fixed at top */
	z-index: 10;
	/*  on top */
	padding-top: 200px;
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgba(0, 0, 0, 0.2);
}

/* Modal Content */
.modal-content {
	margin: auto;
	box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.5);
	width: 50%;
}

/* The Close Button */
.modal-close {
	display: block;
	color: #000;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	right: 20px;
}

.modal-close:hover,
.modal-close:focus {
	color: #000000;
	text-decoration: none;
	cursor: pointer;
}

@media only screen and (max-width: 600px) {
	.modal-content {
		width: 80%;
		margin: 15px auto;
		padding: 20px;
	}
}
section.disclaimer_section {
	background: #333;
	padding: 20px;
	text-align: center;
}
section.disclaimer_section p {
	color: #ffffff;
} /*# sourceMappingURL=style.css.map */

/* Popup Form */
.popup {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.5);
	padding: 15px;
}
.popup .content {
	background-color: #fefefe;
	margin: 10% auto;
	padding: 20px;
	border: 1px solid #888;
	min-width: 280px;
	max-width: 550px;
}

.popup .content .title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #c7cec9;
	margin-bottom: 1.3rem;
}

.popup .content .title span {
	font-size: 1.7rem;
	cursor: pointer;
	margin-bottom: 15px;
}

.popup .content .title span:hover {
	font-weight: bold;
}

.popup .contact-us {
	margin-bottom: 30px;
}
.popup .contact-us h2 {
	font-size: 20px;
	margin-bottom: 25px;
}
.popup .contact-us form {
	display: flex;
	flex-direction: column;
	padding: 0;
	gap: 20px;
}
.popup .contact-us ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.popup .contact-us ul li {
	position: relative;
	padding-left: 40px;
	margin-bottom: 20px;
}
.popup .contact-us ul li:last-child {
	margin-bottom: 0;
}
.popup .contact-us ul li i {
	position: absolute;
	top: 5px;
	left: 0;
	font-size: 28px;
	color: #111;
}
.popup .contact-us ul li a {
	display: block;
	color: #111;
}
