/*
@File: Osta Template Styles

* 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 AREA STYLE - **

** - Default Btn Area Style
** - Read More Area Style

** - HOME PAGE STYLE - **

** - Header Area Style
** - Nav Area
** - Hero Slider Area Style
** - Feature Area Style
** - About Area Style
** - Services Area Style
** - Prevent Area Style
** - Process Area Style
** - Project Area Style
** - Product Area Style
** - Appointment Area Style
** - Blog Area Style
** - Blog Area Style
** - Footer Top Area Style
** - Footer Bottom Area Style
** - Sidebar Area Style

** - OTHER STYLE AREA - **

** - Preloader Area Style
** - Go Top Style
** - Video wave Style
** - Section Title Area Style
** - Nice select Area

*******************************************
/*


/*
Default Style
============================*/
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');

$body-font-family :  'Mukta', sans-serif;
$heading-font-family : 'Amiri', serif;

$main-color: #dab583;
$body-color: #8b8b8b;
$heading-color: #242424;
$white-color: #ffffff;
$black-color: #000000;
$box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
$transition: all 0.5s;
$border-radius: 4px;

body {
	padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    font-family: $body-font-family;
	color: $body-color;
}
a {
	display: inline-block;
    transition: $transition;
	text-decoration: none;
	color: $main-color;
	&:hover {
        text-decoration: none;
        color: $heading-color;
	}
	&:focus {
		text-decoration: none;
	}
}
button {
    outline: 0 !important; 
	box-shadow: none;
	border: none;
    &:focus {
        box-shadow: none;
    }
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: $heading-color;
	font-weight: 700;
	font-family: $heading-font-family;
	text-transform: capitalize;
}
h3 {
	font-size: 25px;
	text-transform: capitalize;
	font-weight: 600;
}
.d-table {
    width: 100%;
    height: 100%;
}
.d-table-cell {
    vertical-align: middle;
}
p {
    font-size: 16px;
	margin-bottom: 15px;
	&:last-child {
        margin-bottom: 0;
    }
} 
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.form-control {
    height: 50px;
    color: $heading-color;
	border: 1px solid #e8e8e8;
	background-color: #f2f9fc;
	border-radius: 0;
	font-size: 14px;
	padding: 10px 20px;
	width: 100%;
	&::placeholder {
		color: #495057;
	}
	&:focus {
		color: $black-color;
		background-color: transparent;
		box-shadow: unset;
		outline: 0;
		border: 1px solid $main-color;
	}
}
.form-control:hover, .form-control {
    &:focus {
        box-shadow: unset;
    }
}
textarea {   
    &.form-control {
        height: auto;
    }
}
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-70 {
    padding-top: 70px;
}
.pb-70 {
    padding-bottom: 70px;
}
.mt-30 {
	margin-top: 30px;
}
.mb-30 {
	margin-bottom: 30px;
}
.mt-100 {
	margin-top: -100px;
}
.pl-0 {
	padding-left: 0;
}
.pr-0 {
	padding-right: 0;
}

//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;
	img {
		top: 50%;
		left: 20px;
		width: 15px;
		position: absolute;
		transform: translateY(-50%);
	}
	&:hover {
		background-color: $main-color;
		color: #ffffff;
	}
}

/*
Default Btn Area Style*/
.default-btn {
	font-size: 16px;
    color: $white-color;
	padding: 15px 30px;
    transition: $transition;
    text-transform: uppercase;
    position: relative;
	text-align: center;
	overflow: hidden;
	line-height: 1;
	z-index: 1;
	background-color: $main-color;
	border-radius: 50px;
	&.two {
		border-radius: 0;
		background-color: $heading-color;
		&::before {
			background-color: $main-color;
		}
		&::after {
			background-color: $main-color;
		}
	}
	&.four {
		background-color: #43bd75;
		border-radius: 0;
		line-height: 1.4;
		i {
			position: relative;
			right: -9px;
		}
		&::before {
			background-color: $main-color;
		}
		&::after {
			background-color: $main-color;
		}
	}
	i {
		font-size: 20px;
		position: relative;
		top: 3px;
		margin-right: 5px;
	}
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 100%;
		background-color: $heading-color;
		z-index: -1;
		transition: $transition;
	}
	&::after {
		content: "";
		position: absolute;
		bottom: 0;
		right: 0;
		width: 0;
		height: 100%;
		background-color: $heading-color;
		z-index: -1;
		transition: $transition;
	}
	&.active {
		margin-left: 20px;
		color: $heading-color;
		background-color: $white-color;
	}
	&:hover {
		color: $white-color;
		&::before  {
			left: auto;
			right: 0;
			width: 50%;
		}
		&::after  {
			left: 0;
			right: 0;
			width: 50%;
			
		}
	}
}

/*
Read More Area Style*/
.read-more {
	line-height: 1;
	color: $body-color;
	font-weight: 500;
	transition: $transition;
	display: block;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	&:hover {
		color: $main-color; 
		letter-spacing: 1.5px;
		i {
			color: $main-color;
			animation: rotation 0.5s linear infinite;
		}
	}
}

/*===== DEFAULT STYLE END ======*/


/*====================================================
HOME PAGE FIVE STYLE
======================================================*/
.menu-wrap {
	.menu-slide-bar {
		position: unset;
		overflow-y: scroll;
		top: 0;
		left: 0;
		width: 100%;
		padding: 10px;
		height: 100vh;
		display: block;
		background-color: #fff3e8;
		z-index: 99999;
		transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
		box-shadow: $box-shadow;
		margin-bottom: 30px;
		&.show {
			left: 0;
		}
	}
	.close-mobile-menu {
		margin-bottom: 15px;
		.close-btn {
			position: absolute;
			font-size: 25px;
			top: 24px;
			right: 20px;
			background-color: $heading-color;
			width: 30px;
			height: 30px;
			display: inline-block;
			text-align: center;
			line-height: 31px;
			color: $white-color;
			display: none;
		}
		.logo-area {
			text-align: center;
			display: block;
			img {
				max-width: 100px;
			}
			.logo-two {
				display: none;
			}
		}
	}
	.on-side {
		overflow: hidden;
	}
	.body-overlay {
		background-color: rgba(255, 243, 232, 0.5);
		height: 100%;
		width: 100%;
		position: fixed;
		top: 0;
		z-index: 9999;
		left: -100%;
		transition: $transition;
		&.active {
			left: 0;
		}
	}
	.side-mobile-menu {
		ul {
			list-style: none;
			margin: 0;
			padding: 0;
			.nav-item {
				.nav-link {
					padding: 13px 0;
					display: block;
					border-bottom: 1px solid rgba(0, 0, 0, 0.05);
					font-size: 14px;
					color: $heading-color;
					font-weight: 600;
					text-transform: uppercase;
					position: relative;
					transition: $transition;
					&:hover {
						color: $main-color;
						padding-left: 5px;
					}
					&.active {
						color: $main-color;
						padding-left: 5px;
					}
				}
				ul {
					padding-left: 0;
					list-style: none;
					.nav-item {
						padding-left: 15px;
						&:hover {
							.nav-link {
								color: $main-color;
								padding-left: 20px;
							}
						}
						.nav-link {
							position: relative;
							padding-left: 15px;
							text-transform: capitalize;
							font-size: 13px;
							&.active {
								color: $main-color;
								padding-left: 20px;
							}
						}
					}
				}
			}
			.has-children {
				.dropdown-toggles {
					&:before {
						position: absolute;
						content: "";
						width: 10px;
						height: 10px;
						border-width: 0 2px 0 0;
						border-style: solid;
						border-color: initial;
						right: 14px;
						top: 59%;
						transform: rotate(-0) translateY(-50%);
						transform-origin: top;
						transition: all 0.3s ease-out;
					}
					&:after {
						position: absolute;
						content: "";
						width: 10px;
						height: 10px;
						border-width: 0 0 2px 0;
						border-style: solid;
						border-color: initial;
						right: 10px;
						top: 50%;
						transform: rotate(-0) translateY(-50%);
						transform-origin: top;
						transition: all 0.3s ease-out;
					}
				}
				a[aria-expanded=true] {
					&:before {
						display: none;
					}
				}
			}
		}
	}
	.mobile-menu {
		width: 50px;
		height: 50px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		background-color: $heading-color;
		transition: $transition;
		float: right;
		display: none;
		border-radius: $border-radius;
		.mobile-menu-btn {
			position: relative;
			display: inline-block;
			width: 30px;
			height: 24px;
			.mobile-menu-bar {
				position: absolute;
				width: 30px;
				height: 3px;
				background-color: $white-color;
				top: 0;
				transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
				transition-duration: 0.275s;
				&:before {
					display: block;
					content: "";
					top: 10px;
					transition: opacity 0.125s ease 0.275s;
					position: absolute;
					width: 30px;
					height: 3px;
					background-color: $white-color;
				}
				&:after {
					display: block;
					content: "";
					top: 20px;
					transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
					position: absolute;
					width: 30px;
					height: 3px;
					background-color: $white-color;
				}
			}
		}
		&.open {
			transform: rotate(360deg);
			opacity: 0;
		}
	}
	.mobileMenus {
		.mm-collapse {
			&:not(.mm-show) {
				display: none;
			}
		}
		.mm-collapsing {
			position: relative;
			height: 0;
			overflow: hidden;
			transition-timing-function: ease;
			transition-duration: .35s;
			transition-property: height, visibility;
		}
	}
	.others-option-two {
		position: relative;
		z-index: 1;
		.search {
			position: relative;
			display: block;
			margin-top: 20px;
			.search-txt {
				border: none;
				background: none;
				outline: none;
				padding: 0;
				color: $body-color;
				font-size: 16px;
				transition: $transition;
				line-height: 40px;
				width: 100%;
				border-radius: 50px;
				border: 1px solid #fff3e8;
				&::placeholder {
					padding-right: 50px;
					transition: $transition;
					position: relative;
					left: 0;
					top: 1px;
					text-align: left;
					padding-left: 20px;
					
				}
			}
			.search-btn {
				width: 40px;
				height: 40px;
				border-radius: 50%;
				background: #fff3e8;
				transition: $transition;
				text-align: center;
				line-height: 40px;
				position: absolute;
				top: 1px;
				right: 37px;
				i {
					position: relative;
					top: 4px;
					color: $body-color;
					font-size: 20px;
					transition: $transition;
				}
			}
			&:hover {
				.search-txt {
					width: 100%;
					padding: 0 10px;
					border: 1px solid $main-color;
					&::placeholder {
						padding-left: 0;
					}
				}
				.search-btn {
					background-color: $main-color;
					right: 0;
					i {
						color: $white-color;
					}
				}
			}
		}
		.social-icon {
			line-height: 1;
			text-align: center;
			margin-top: 20px;
			li {
				display: inline-block;
				a {
					padding: 0 5px;
					i {
						font-size: 20px;
						transition: $transition;
					}
				}
				&:last-child {
					a {
						padding-right: 0;
					}
				}
				&:first-child {
					a {
						padding-left: 0;
					}
				}
				&:nth-child(1) {
					a {
						i {
							color: #0c92ff;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(2) {
					a {
						i {
							color: #1da1f2;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(3) {
					a {
						i {
							color: #fe0eb2;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(4) {
					a {
						i {
							color: #d32f2f;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(5) {
					a {
						i {
							color: #e52d27;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
			}
		}
		p {
			text-align: center;
			margin-top: 20px;
			font-size: 12px;
		}
		.menu-shape {
			position: absolute;
			bottom: -30px;
			left: 0;
			z-index: -1;
		}
	}
	&.inner-page-menu {
		.menu-slide-bar {
			height: 518px;
			margin-bottom: 0;
			padding: 30px;
		}
	}
}

/*
Banner Area Five Style
======================================================*/
.banner-slider-item {
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	&.bg-1 {
		background-image: url(../../assets/img/food-page-img/food-banner-img/1.jpg);
	}
	&.bg-2 {
		background-image: url(../../assets/img/food-page-img/food-banner-img/2.jpg);
	}
	&.bg-3 {
		background-image: url(../../assets/img/food-page-img/food-banner-img/3.jpg);
	}
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.5));
	}
	.banner-food-content {
		position: absolute;
		bottom: 30px;
		left: 30px;
		.date {
			margin-bottom: 15px;
			li {
				text-transform: capitalize;
				color: $white-color;

			}
		}
		h3 {
			font-size: 30px;
			margin-bottom: 20px;
			color: $white-color;
		}
		.read-icon {
			display: inline-block;
			color: $white-color;
			width: 30px;
			height: 30px;
			font-size: 20px;
			border: 1px dashed $white-color;
			border-radius: 50%;
			text-align: center;
			&:hover {
				color: #ff9600;
				border-color: #ff9600;
			}
		}
	}
}
.banner-wrap-five {
	position: relative;
	&.owl-theme {
		.owl-nav [class*=owl-].owl-prev::before {
			content: "PREV";
			position: absolute;
			left: 10px;
			bottom: 50%;
			font-size: 14px;
			transition: $transition;
			width: 50px;
			height: 50px;
			line-height: 50px;
			background-color: #ff9600;
			color: $white-color;
			border-radius: 50%;
		}
		.owl-nav [class*=owl-].owl-next::before {
			content: "NEXT";
			position: absolute;
			right: 10px;
			bottom: 50%;
			font-size: 14px;
			transition: $transition;
			width: 50px;
			height: 50px;
			line-height: 50px;
			background-color: #ff9600;
			color: $white-color;
			border-radius: 50%;
			&:hover {
				background-color: $white-color;
				color: #ff9600;
			}
		}
		span {
			display: none;
		}
		.owl-nav [class*=owl-].owl-prev:hover {
			&::before {
				background-color: $white-color;
				color: #ff9600;
			}
		}
		.owl-nav [class*=owl-].owl-next:hover {
			&::before {
				background-color: $white-color;
				color: #ff9600;
			}
		}
	}
}

/*
Food Item Area Style
======================================================*/
.food-item-area {
	border-bottom: 1px dashed $body-color;
}
.single-food {
	position: relative;
	margin-bottom: 30px;
	.single-food-content {
		position: absolute;
		left: -15px;
		bottom: 30px;
		span {
			position: absolute;
			top: 3px;
			left: 20px;
			color: $heading-color;
			font-size: 16px;
		}
	}
}

/*
Quick Recipes Area Style
======================================================*/
.quick-recipes-area {
	.single-exploring {
		text-align: center;
		.exploring-content {
			padding-top: 30px;
			max-width: 800px;
			margin: auto;
			.date {
				margin-bottom: 15px;
			}
			.read-more {
				color: $body-color;
				&:hover {
					color: #ff9600;
				}
			}
			.follow {
				margin-top: 30px;
				position: relative;
				display: inline-block;
				font-size: 20px;
				margin-bottom: 10px;
				&::before {
					content: "";
					position: absolute;
					top: 50%;
					left: -120px;
					width: 100px;
					height: 1px;
					border: 1px dashed #eeeeee;
				}
				&::after {
					content: "";
					position: absolute;
					top: 50%;
					right: -120px;
					width: 100px;
					height: 1px;
					border: 1px dashed #eeeeee;
				}
			}
			.social-icon {
				line-height: 1;
				li {
					display: inline-block;
					a {
						padding: 0 5px;
						i {
							font-size: 15px;
							transition: $transition;
							border: 1px solid #e4e4e4;
							border-radius: 50px;
							display: inline-block;
							padding: 5px;
							transition: $transition;
						}
					}
					&:last-child {
						a {
							padding-right: 0;
						}
					}
					&:first-child {
						a {
							padding-left: 0;
						}
					}
					&:nth-child(1) {
						a {
							i {
								color: #0c92ff;
							}
							&:hover {
								i {
									color: $main-color;
									border: 1px solid $main-color;
								}
							}
						}
					}
					&:nth-child(2) {
						a {
							i {
								color: #1da1f2;
							}
							&:hover {
								i {
									color: $main-color;
									border: 1px solid $main-color;
								}
							}
						}
					}
					&:nth-child(3) {
						a {
							i {
								color: #fe0eb2;
							}
							&:hover {
								i {
									color: $main-color;
									border: 1px solid $main-color;
								}
							}
						}
					}
					&:nth-child(4) {
						a {
							i {
								color: #d32f2f;
							}
							&:hover {
								i {
									color: $main-color;
									border: 1px solid $main-color;
								}
							}
						}
					}
					&:nth-child(5) {
						a {
							i {
								color: #e52d27;
							}
							&:hover {
								i {
									color: $main-color;
									border: 1px solid $main-color;
								}
							}
						}
					}
				}
			}
		}
	}
	.blogger {
		.blogger-img {
			position: relative;
		}
		.blogger-content {
			margin-top: 0;
			max-width: unset;
			p {
				border-bottom: none;
				padding-bottom: 0;
				margin-bottom: 10px;
			}
			.follow {
				position: relative;
				&::before {
					content: "";
					position: absolute;
					top: 50%;
					left: 0;
					width: 40px;
					height: 1px;
					border: 1px dashed #eeeeee;
				}
				&::after {
					content: "";
					position: absolute;
					top: 50%;
					right: 0;
					width: 40px;
					height: 1px;
					border: 1px dashed #eeeeee;
				}
			}
		}
	}
	.food-newsletter {
		box-shadow: $box-shadow;
		padding: 30px;
		h3 {
			text-transform: uppercase;
			margin-bottom: 20px;
		}
		.newsletter-form {
			.form-control {
				margin-bottom: 20px;
				background-color: $white-color;
			}
		}
		.default-btn.four {
			width: 100%;
			background-color: #ff9600;
		}
	}
}

/*
Best Product Area Style
======================================================*/
.single-best-product {
	text-align: center;
	transition: $transition;
	.best-product-content {
		padding: 30px;
		.admin {
			margin-bottom: 15px;
			span {
				display: inline-block;
				margin-left: 5px;
				font-size: 16px;
				position: relative;
				top: 3px;
			}
		}
		h3 {
			margin-bottom: 20px;
			transition: $transition;
			&:hover {
				color: #ff9600;
			}
		}
		.date {
			li {
				text-transform: capitalize;
			}
		}
	}
	&:hover {
		transform: translateY(-5px);
	}
}
.book-Restaurant {
	background-image: url(../../assets/img/food-page-img/book-bg.jpg);
	background-position: center center;
    background-repeat: no-repeat;
	background-size: cover;
	padding-top: 50px;
	padding-bottom: 50px;
	.book-Restaurant-content {
		background-color: rgba(255, 255, 255, 0.9);
		text-align: center;
		padding: 30px;
		max-width: 247px;
		margin: 0 auto 0;
		.date {
			margin-bottom: 10px;
			li {
				text-transform: capitalize;
			}
		}
	}
}
.bast-recent-post {
	.recent {
		margin-top: 30px;
		border-top: 1px dashed #eeeeee;
		border-bottom: 1px dashed #eeeeee;
		padding-bottom: 5px;
		padding-top: 5px;
		margin-bottom: 30px;
	}
	ul {
		li {
			position: relative;
			padding-left: 90px;
			margin-bottom: 20px;
			&:last-child {
				margin-bottom: 0;
			}
			h3 {
				font-size: 18px;
				transition: $transition;
				&:hover {
					color: #ff9600;
				}
			}
			img {
				position: absolute;
				left: 0;
				top: 0;
			}
			span {
				margin-bottom: 5px;
				display: block;
			}
			h3 {
				margin-bottom: 0;
			}
		}
	}
}
.pagination-area.food {
	.page-numbers {
		background-color: #ff9600;
	}
}
.instagram-area.five {
	background-color: #fff3e8;
	padding-bottom: 40px;
}
.footer-area.five {
	background-color: #fff3e8;
	.footer-wrap {
		p {
			color: $body-color;
			a {
				color: $body-color;
				&:hover {
					color: #ff9600;
				}
			}
		}
		.logo-two {
			display: none;
		}
	}
	.important-links {
		margin-bottom: 0;
		li a {
			&:hover {
				color: #ff9600;
			}
		}
	}
	.social {
		margin-bottom: 0;
	}
}
.food-bottom-wrap {
	border-top: 1px dashed #eeeeee;
	padding-top: 30px;
	margin-top: 30px;
}


/*===============================================
Add Area Two Style
=================================================*/


/*
Instagram Area Two Style
=================================================*/
.single-slider-instagram {
	position: relative;
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 0;
		background-color: $main-color;
		opacity: 0.5;
		transition: $transition;
	}
	.instagram-link {
		position: absolute;
		top: -100%;
		left: 0;
		width: 100%;
		height: 100%;
		justify-content: center;
		align-items: center;
		display: flex;
		z-index: 1;
		transition: $transition;
		i {
			color: $white-color;
			font-size: 50px;
			transition: $transition;
			&:hover {
				color: $heading-color;
			}
		}
	}
	&:hover {
		.instagram-link {
			top: 0;
		}
		&::before {
			height: 100%;
		}
	}
}

/*
Footer Area Two Style
=================================================*/
.footer-area {
	background-color: #1f1f1f;
	.footer-wrap {
		text-align: center;
		max-width: 510px;
		margin: 0 auto 50px;
		img {
			margin-bottom: 20px;
		}
		p {
			color: $white-color;
			text-transform: uppercase;
			i {
				position: relative;
				top: 1px;
				color: #ff0000;
			}
			a {
				color: $white-color;
				&:hover {
					color: $main-color;
				}
			}
		}
	}
	.important-links {
		margin-bottom: 20px;
		li {
			display: inline-block;
			padding: 0 5px;
			a {
				color: #959595;
				text-transform: uppercase;
				&:hover {
					color: $white-color;
				}
			}
			&:first-child {
				padding-left: 0;
			}
			&:last-child {
				padding-right: 0;
			}
		}
	}
	.social {
		margin-bottom: 20px;
		float: right;
		li {
			display: inline-block;
			padding: 0 5px;
			a {
				color: $white-color;
				i {
					font-size: 20px;
					transition: $transition;
				}
				&:hover {
					color: $main-color;
				}
			}
			&:first-child {
				padding-left: 0;
			}
			&:last-child {
				padding-right: 0;
			}
			&:nth-child(1) {
				a {
					i {
						color: #0c92ff;
					}
					&:hover {
						i {
							color: $main-color;
						}
					}
				}
			}
			&:nth-child(2) {
				a {
					i {
						color: #1da1f2;
					}
					&:hover {
						i {
							color: $main-color;
						}
					}
				}
			}
			&:nth-child(3) {
				a {
					i {
						color: #fe0eb2;
					}
					&:hover {
						i {
							color: $main-color;
						}
					}
				}
			}
			&:nth-child(4) {
				a {
					i {
						color: #d32f2f;
					}
					&:hover {
						i {
							color: $main-color;
						}
					}
				}
			}
			&:nth-child(5) {
				a {
					i {
						color: #e52d27;
					}
					&:hover {
						i {
							color: $main-color;
						}
					}
				}
			}
		}
	}
}

/*
Blogger News Area Style
======================================================*/
.blogger {
	text-align: center;
	margin-bottom: 30px;
	.blogger-content {
		box-shadow: $box-shadow;
		background-color: $white-color;
		max-width: 400px;
		margin: -50px auto 0;
		padding: 30px;
		position: relative;
		h3 {
			font-size: 20px;
		}
		span {
			font-size: 18px;
			display: block;
			margin-bottom: 10px;
		}
		p {
			border-bottom: 1px dashed #e4e4e4;
			padding-bottom: 15px;
		}
		.social-icon {
			line-height: 1;
			li {
				display: inline-block;
				a {
					padding: 0 5px;
					i {
						font-size: 15px;
						transition: $transition;
						border: 1px solid #e4e4e4;
						border-radius: 50px;
						display: inline-block;
						padding: 5px;
						transition: $transition;
					}
				}
				&:last-child {
					a {
						padding-right: 0;
					}
				}
				&:first-child {
					a {
						padding-left: 0;
					}
				}
				&:nth-child(1) {
					a {
						i {
							color: #0c92ff;
						}
						&:hover {
							i {
								color: $main-color;
								border: 1px solid $main-color;
							}
						}
					}
				}
				&:nth-child(2) {
					a {
						i {
							color: #1da1f2;
						}
						&:hover {
							i {
								color: $main-color;
								border: 1px solid $main-color;
							}
						}
					}
				}
				&:nth-child(3) {
					a {
						i {
							color: #fe0eb2;
						}
						&:hover {
							i {
								color: $main-color;
								border: 1px solid $main-color;
							}
						}
					}
				}
				&:nth-child(4) {
					a {
						i {
							color: #d32f2f;
						}
						&:hover {
							i {
								color: $main-color;
								border: 1px solid $main-color;
							}
						}
					}
				}
				&:nth-child(5) {
					a {
						i {
							color: #e52d27;
						}
						&:hover {
							i {
								color: $main-color;
								border: 1px solid $main-color;
							}
						}
					}
				}
			}
		}
	}
}

/*
Exploring Area Style
======================================================*/ 
.exploring-area {
	.container {
		max-width: 1300px;
	}
	.blogger {
		.blogger-img {
			position: relative;
			.astiver {
				position: absolute;
				bottom: -25px;
				z-index: 1;
				right: 0;
				left: 0;
				p {
					position: absolute;
					top: 25px;
					left: 0;
					right: 0;
					color: $white-color;
				}
			}
		}
		.blogger-content {
			margin-top: 0;
			p {
				border-bottom: none;
				padding-bottom: 0;
				margin-bottom: 10px;
			}
			.follow {
				position: relative;
				&::before {
					content: "";
					position: absolute;
					top: 50%;
					left: 0;
					width: 40px;
					height: 1px;
					border: 1px dashed #eeeeee;
				}
				&::after {
					content: "";
					position: absolute;
					top: 50%;
					right: 0;
					width: 40px;
					height: 1px;
					border: 1px dashed #eeeeee;
				}
			}
		}
	}
}
.single-exploring {
	.exploring-content {
		margin-top: -40px;
		.dddddd {
			position: relative;
			z-index: 1;
			margin-bottom: 15px;
			.date {
				position: absolute;
				top: 35%;
				left: 40px;
				li {
					text-transform: capitalize;
					color: $white-color;
					border-color: $white-color;
				}
			}
		}
		h3 {
			font-size: 30px;
			margin-bottom: 25px;
		}
		p {
			margin-bottom: 30px;
		}
		.read-more {
			color: #43bd75;
			i {
				position: relative;
				top: 3px;
				color: #43bd75;
			}
		}
	}
}

/*====================================================
INNER PAGE STYLE AREA
======================================================*/
/* 

/*
Page Title Area Style
=====================================================*/
.page-title-area {
	position: relative;
	padding-top: 0;
	padding-bottom: 0;
	z-index: 1;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: $black-color;
		opacity: 0.5;
		z-index: -1;
	}
	&.bg-1 {
		background-image: url(../../assets/img/page-title-bg/1.jpg);
	}
	&.bg-2 {
		background-image: url(../../assets/img/page-title-bg/2.jpg);
	}
	&.bg-3 {
		background-image: url(../../assets/img/page-title-bg/3.jpg);
	}
	&.bg-4 {
		background-image: url(../../assets/img/page-title-bg/4.jpg);
	}
	&.bg-5 {
		background-image: url(../../assets/img/page-title-bg/5.jpg);
	}
	&.bg-6 {
		background-image: url(../../assets/img/page-title-bg/6.jpg);
	}
	&.bg-7 {
		background-image: url(../../assets/img/page-title-bg/7.jpg);
	}
	&.bg-8 {
		background-image: url(../../assets/img/page-title-bg/8.jpg);
	}
	&.bg-9 {
		background-image: url(../../assets/img/page-title-bg/9.jpg);
	}
	&.bg-10 {
		background-image: url(../../assets/img/page-title-bg/10.jpg);
	}
	&.bg-11 {
		background-image: url(../../assets/img/page-title-bg/11.jpg);
	}
	&.bg-12 {
		background-image: url(../../assets/img/page-title-bg/12.jpg);
	}
	&.bg-13 {
		background-image: url(../../assets/img/page-title-bg/13.jpg);
	}
	&.bg-14 {
		background-image: url(../../assets/img/page-title-bg/14.jpg);
	}
	&.bg-15 {
		background-image: url(../../assets/img/page-title-bg/15.jpg);
	}
	&.bg-16 {
		background-image: url(../../assets/img/page-title-bg/16.jpg);
	}
	&.bg-17 {
		background-image: url(../../assets/img/page-title-bg/17.jpg);
	}
	&.bg-18 {
		background-image: url(../../assets/img/page-title-bg/18.jpg);
	}
	&.bg-19 {
		background-image: url(../../assets/img/page-title-bg/19.jpg);
	}
	&.bg-20 {
		background-image: url(../../assets/img/page-title-bg/20.jpg);
	}
	.page-title-content {
		text-align: center;
		padding-top: 215px;
    	padding-bottom: 215px;
		h2 {
			margin-bottom: 15px;
			color: $white-color;
			font-size: 40px;
			font-weight: 700;
		}
		ul {
			padding-left: 0;
			list-style-type: none;
			margin-top: 10px;
			margin-bottom: 0;
			li {
				display: inline-block;
				position: relative;
				font-size: 15px;
				font-weight: 500;
				padding-right: 15px;
				padding-left: 15px;
				color: $white-color;
				&::before {
					content: "";
					position: absolute;
					top: 10px;
					right: -7px;
					background-color: $main-color;
					width: 10px;
					height: 10px;
					border-radius: 50%;
				}
				&:last-child {
					&::before {
						display: none;
					}
				}
				a {
					color: $white-color;
					&:hover {
						color: $main-color;
					}
				}
			}
			.active {
				color: $main-color;
			}
		}
	}	
}

/*
Contact Area Style
=====================================================*/
.contact-area {
	.contact-wrap {
		background-color: $white-color;
		position: relative;
		z-index: 1;
	}
	.contact-title {
		margin-bottom: 30px;
		.top-title {
			text-transform: uppercase;
			letter-spacing: 5px;
			display: inline-block;
			margin-bottom: 10px;
		}
	}
	.contact-form {
		background-color: $white-color;
		padding: 50px;
		margin: 0 auto 0;
		background-color: #f4f4f4;
		position: relative;
		z-index: 1;
	}
	#contactForm {
		.form-group {
			margin-bottom: 30px;
		}
		#msgSubmit {
			margin-bottom: 0;
			margin-top: 30px;
		}
		.text-danger {
			color: #dc3545;
		}
		.text-succuss {
			color: #43bd75;
		}
		.hidden {
			display: none;
		}
		.list-unstyled {
			margin-top: 10px;
			color: #dc3545;
		}
	}
}

/*
Map Area Style
======================================================*/ 
.map-area {
	.map-wrap {
		iframe {
			height: 500px;
			width: 100%;
		}
	}
}

/*
Quick Recipes Area Style
======================================================*/
.quick-recipes-area {
	.single-exploring {
		text-align: center;
		.exploring-content {
			padding-top: 30px;
			max-width: 800px;
			margin: auto;
			.date {
				margin-bottom: 15px;
			}
			.read-more {
				color: $body-color;
				&:hover {
					color: #ff9600;
				}
			}
			.follow {
				margin-top: 0;
				position: relative;
				display: inline-block;
				font-size: 20px;
				margin-bottom: 10px;
				&::before {
					content: "";
					position: absolute;
					top: 50%;
					left: -120px;
					width: 100px;
					height: 1px;
					border: 1px dashed #eeeeee;
				}
				&::after {
					content: "";
					position: absolute;
					top: 50%;
					right: -120px;
					width: 100px;
					height: 1px;
					border: 1px dashed #eeeeee;
				}
			}
			.social-icon {
				line-height: 1;
				li {
					display: inline-block;
					a {
						padding: 0 5px;
						i {
							font-size: 15px;
							transition: $transition;
							border: 1px solid #e4e4e4;
							border-radius: 50px;
							display: inline-block;
							padding: 5px;
							transition: $transition;
						}
					}
					&:last-child {
						a {
							padding-right: 0;
						}
					}
					&:first-child {
						a {
							padding-left: 0;
						}
					}
					&:nth-child(1) {
						a {
							i {
								color: #0c92ff;
							}
							&:hover {
								i {
									color: $main-color;
									border: 1px solid $main-color;
								}
							}
						}
					}
					&:nth-child(2) {
						a {
							i {
								color: #1da1f2;
							}
							&:hover {
								i {
									color: $main-color;
									border: 1px solid $main-color;
								}
							}
						}
					}
					&:nth-child(3) {
						a {
							i {
								color: #fe0eb2;
							}
							&:hover {
								i {
									color: $main-color;
									border: 1px solid $main-color;
								}
							}
						}
					}
					&:nth-child(4) {
						a {
							i {
								color: #d32f2f;
							}
							&:hover {
								i {
									color: $main-color;
									border: 1px solid $main-color;
								}
							}
						}
					}
					&:nth-child(5) {
						a {
							i {
								color: #e52d27;
							}
							&:hover {
								i {
									color: $main-color;
									border: 1px solid $main-color;
								}
							}
						}
					}
				}
			}
		}
	}
	.blogger {
		.blogger-img {
			position: relative;
		}
		.blogger-content {
			margin-top: 0;
			max-width: unset;
			p {
				border-bottom: none;
				padding-bottom: 0;
				margin-bottom: 10px;
			}
			.follow {
				position: relative;
				&::before {
					content: "";
					position: absolute;
					top: 50%;
					left: 0;
					width: 40px;
					height: 1px;
					border: 1px dashed #eeeeee;
				}
				&::after {
					content: "";
					position: absolute;
					top: 50%;
					right: 0;
					width: 40px;
					height: 1px;
					border: 1px dashed #eeeeee;
				}
			}
		}
	}
	.food-newsletter {
		box-shadow: $box-shadow;
		padding: 30px;
		h3 {
			text-transform: uppercase;
			margin-bottom: 20px;
		}
		.newsletter-form {
			.form-control {
				margin-bottom: 20px;
				background-color: $white-color;
			}
		}
		.default-btn.four {
			width: 100%;
			background-color: #ff9600;
		}
	}
}

/*
Best Product Area Style
======================================================*/
.single-best-product {
	text-align: center;
	transition: $transition;
	.best-product-content {
		padding: 30px;
		.admin {
			margin-bottom: 15px;
			span {
				display: inline-block;
				margin-left: 5px;
				font-size: 16px;
				position: relative;
				top: 3px;
			}
		}
		h3 {
			margin-bottom: 20px;
			transition: $transition;
			&:hover {
				color: #ff9600;
			}
		}
		.date {
			li {
				text-transform: capitalize;
			}
		}
	}
	&:hover {
		transform: translateY(-5px);
	}
}
.book-Restaurant {
	background-image: url(../../assets/img/food-page-img/book-bg.jpg);
	background-position: center center;
    background-repeat: no-repeat;
	background-size: cover;
	padding-top: 50px;
	padding-bottom: 50px;
	.book-Restaurant-content {
		background-color: rgba(255, 255, 255, 0.9);
		text-align: center;
		padding: 30px;
		max-width: 247px;
		margin: 0 auto 0;
		.date {
			margin-bottom: 10px;
			li {
				text-transform: capitalize;
			}
		}
	}
}
.bast-recent-post {
	.recent {
		margin-top: 30px;
		border-top: 1px dashed #eeeeee;
		border-bottom: 1px dashed #eeeeee;
		padding-bottom: 5px;
		padding-top: 5px;
		margin-bottom: 30px;
	}
	ul {
		li {
			position: relative;
			padding-left: 90px;
			margin-bottom: 20px;
			&:last-child {
				margin-bottom: 0;
			}
			h3 {
				font-size: 18px;
				transition: $transition;
				&:hover {
					color: #ff9600;
				}
			}
			img {
				position: absolute;
				left: 0;
				top: 0;
			}
			span {
				margin-bottom: 5px;
				display: inline-block;
			}
			h3 {
				margin-bottom: 0;
			}
		}
	}
}

/*
Travel About Page Area Style
======================================================*/
.travel-about-page {
	padding-top: 70px;
	text-align: center !important;
	.follow-wrap {
		text-align: center;
	}
	.travel-about-img {
		img {
			border: 10px solid $white-color;
			box-shadow: $box-shadow;
			transform: rotate(5deg);
		}
	}
	.single-exploring {
		.exploring-content {
			text-align: center;
		}
	}
}
.timeline-img2 {
	background-image: url(../../assets/img/timeline-img/2.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
}

/*
Blog Page Area Style
======================================================*/
.exploring-area {
	.exploring-bg-wrap {
		background-color: $white-color;
		padding-top: 100px;
		position: relative;
		z-index: 1;
		.exploring-wrap {
			text-align: center;
			max-width: 700px;
			margin: auto;
			.date {
				margin-bottom: 25px;
				display: inline-block;
				li {
					background-color: #16a085;
					color: $white-color;
					padding: 8px 10px;
					border: none;
					margin: 0 5px;
				}
			}
			h2 {
				font-size: 40px;
				margin-bottom: 35px;
			}
			.admin {
				position: relative;
				display: inline-block;
				padding-left: 100px;
				text-align: left;
				img {
					border-radius: 50px;
					position: absolute;
					top: -16px;
					left: 0;
				}
				h3 {
					margin-bottom: 0;
				}
			}
		}
	}
}

/*
Blog Details Area Style
======================================================*/
.blog-details-left-area {
	.blog-details-single-post {
		margin-bottom: 30px;
		span {
			text-transform: uppercase;
			background-color: #43bd75;
			padding: 5px 10px;
			line-height: 1;
			color: $white-color;
			display: inline-block;
			margin-bottom: 20px;
		}
		h3 {
			font-size: 28px;
			margin-bottom: 20px;
		}
		ul {
			li {
				display: inline-block;
				padding: 0 10px;
				font-size: 16px;
				&:first-child {
					padding-left: 0;
					padding-right: 0;
				}
				a {
					color: $body-color;
					i {
						color: $body-color;
						transition: $transition;
					}
					&:hover {
						color: $main-color;
						i {
							color: $main-color;
						}
					}
				}
				i {
					position: relative;
					top: 2px;
					margin-right: 5px;
				}
			}
		}
		.blog-details-img {
			margin-top: 30px;
			margin-bottom: 30px;
		}
	}
	.blog-details-admin {
		border-top: 1px solid #eeeeee;
		border-bottom: 1px solid #eeeeee;
		padding-top: 10px;
		padding-bottom: 10px;
		margin-bottom: 30px;
		.blog-admin {
			padding-left: 50px;
			img {
				position: absolute;
				left: 0;
				top: -0;
				border-radius: 50px;
			}
			h3 {
				margin-bottom: 0;
				font-size: 20px;
			}
		}
		.social-icon {
			line-height: 1;
			float: right;
			li {
				display: inline-block;
				a {
					padding: 0 5px;
					i {
						font-size: 20px;
						transition: $transition;
					}
				}
				&:last-child {
					a {
						padding-right: 0;
					}
				}
				&:first-child {
					a {
						padding-left: 0;
					}
				}
				&:nth-child(1) {
					a {
						i {
							color: #0c92ff;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(2) {
					a {
						i {
							color: #1da1f2;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(3) {
					a {
						i {
							color: #fe0eb2;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(4) {
					a {
						i {
							color: #d32f2f;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(5) {
					a {
						i {
							color: #e52d27;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
			}
		}
	}
	.blockquote-1 {
		position: relative;
		padding-left: 20px;
		margin-top: 50px;
		margin-bottom: 50px;
		&::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 3px;
			height: 100%;
			background-color: #43bd75;
		}
		p {
			font-size: 25px;
			color: #595959;
		}
		span {
			font-size: 20px;
			font-style: italic;
			color: #43bd75;
		}
	}
	.color {
		color: #43bd75;
	}
	.single-post-2 {
		p {
			margin-bottom: 30px;
		}
		.single-post-img-1 {
			background-image: url(../../assets/img/blog-details-img/4.jpg);
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			height: 100%;
		}
		ul {
			margin-top: 50px;
			margin-bottom: 30px;
			li {
				margin-bottom: 15px;
				font-size: 20px;
				position: relative;
				padding-left: 35px;
				i {
					position: absolute;
					top: 0;
					left: 0;
					color: #43bd75;
				}
			}
		}
	}
	.blockquote-2 {
		background-color: #eeeeee;
		position: relative;
		padding: 30px;
		margin-top: 50px;
		margin-bottom: 50px;
		&::before {
			content: "";
			position: absolute;
			top: 30px;
			left: 30px;
			width: 100%;
			height: 100%;
			background-image: url(../../assets/img/blog-details-img/quate.png);
			background-position: top left;
			background-repeat: no-repeat;
		}
		p {
			font-size: 25px;
			color: #595959;
		}
		span {
			font-size: 20px;
			font-style: italic;
			color: #43bd75;
		}
	}
	.blog-details-sheare {
		border-top: 1px solid #eeeeee;
		border-bottom: 1px solid #eeeeee;
		padding-top: 10px;
		padding-bottom: 10px;
		margin-top: 50px;
		.blog-sheare-tag {
			ul {
				li {
					display: inline-block;
					background-color: #eeeeee;
					padding: 5px 10px;
				}
			}
		}
		.social-icon {
			line-height: 1;
			text-align: right;
			.share {
				position: relative;
				top: -3px;
			}
			li {
				display: inline-block;
				a {
					padding: 0 5px;
					i {
						font-size: 20px;
						transition: $transition;
					}
				}
				&:last-child {
					a {
						padding-right: 0;
					}
				}
				&:first-child {
					a {
						padding-left: 0;
					}
				}
				&:nth-child(1) {
					a {
						i {
							color: #0c92ff;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(2) {
					a {
						i {
							color: #1da1f2;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(3) {
					a {
						i {
							color: #fe0eb2;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(4) {
					a {
						i {
							color: #d32f2f;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(5) {
					a {
						i {
							color: #e52d27;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
			}
		}
	}
	.prev-next {
		border-bottom: 1px solid #eeeeee;
		padding-top: 10px;
		padding-bottom: 10px;
		position: relative;
		&::before {
			content: "";
			position: absolute;
			top: 5px;
			left: 50%;
			height: 80%;
			width: 1px;
			background-color: #eeeeee;
		}
		.prev-post {
			font-size: 18px;
			a {
				color: $body-color;
				&:hover {
					color: #43bd75;
				}
			}
			i {
				position: relative;
				top: 1px;
				color: #43bd75;
			}
		}
		.next-post {
			font-size: 18px;
			float: right;
			a {
				color: $body-color;
				&:hover {
					color: #43bd75;
				}
			}
			i {
				position: relative;
				top: 1px;
				color: #43bd75;
			}
		}
	}
	.related-post-wrap {
		margin-top: 50px;
		.title {
			text-align: center;
			font-size: 30px;
		}
	}
	.related-post {
		margin-top: 30px;
		position: relative;
		img {
			width: unset;
		}
		.admin {
			position: relative;
			span {
				position: absolute;
				top: 8px;
				left: 40px;
			}
		}
		&.owl-theme {
			.owl-nav [class*=owl-].owl-prev::before {
				content: "PREV";
				position: absolute;
				left: -125px;
				bottom: 0;
				font-size: 14px;
				transition: $transition;
				width: 50px;
				height: 50px;
				line-height: 50px;
				background-color: #43bd75;
				color: $white-color;
				border-radius: 50%;
			}
			.owl-nav [class*=owl-].owl-next::before {
				content: "NEXT";
				position: absolute;
				right: -125px;
				bottom: 0;
				font-size: 14px;
				transition: $transition;
				width: 50px;
				height: 50px;
				line-height: 50px;
				background-color: #43bd75;
				color: $white-color;
				border-radius: 50%;
			}
			
			.owl-nav {
				margin-top: 0;
				position: absolute;
				left: 100px;
				right: 100px;
				top: 25%;
				transform: translateY(35px);
				span {
					display: none;
				}
			}
			.owl-nav [class*=owl-].owl-prev:hover {
				&::before {
					background-color: #b56953;
					color: $white-color;
				}
			}
			.owl-nav [class*=owl-].owl-next:hover {
				&::before {
					background-color: #b56953;
					color: $white-color;
				}
			}
		}
	}
	.profile {
		background-color: #eeeeee;
		padding: 30px;
		margin-top: 20px;
		position: relative;
		padding-left: 230px;
		img {
			border-radius: 50%;
			position: absolute;
			top: 13px;
			left: 30px;
		}
		.social-icon {
			line-height: 1;
			.share {
				position: relative;
				top: -3px;
			}
			li {
				display: inline-block;
				a {
					padding: 0 5px;
					i {
						font-size: 20px;
						transition: $transition;
					}
				}
				&:last-child {
					a {
						padding-right: 0;
					}
				}
				&:first-child {
					a {
						padding-left: 0;
					}
				}
				&:nth-child(1) {
					a {
						i {
							color: #0c92ff;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(2) {
					a {
						i {
							color: #1da1f2;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(3) {
					a {
						i {
							color: #fe0eb2;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(4) {
					a {
						i {
							color: #d32f2f;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(5) {
					a {
						i {
							color: #e52d27;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
			}
		}
	}
	.comments-wrap {
		margin-top: 50px;
		border-top: 1px solid #eeeeee;
		padding-top: 40px;
		.title {
			font-size: 30px;
			margin-bottom: 30px;
		}
		ul {
			li {
				position: relative;
				background-color: #eeeeee;
				padding: 30px;
				padding-left: 150px;
				margin-bottom: 30px;
				&:last-child {
					margin-bottom: 0;
				}
				img {
					border-radius: 50%;
					position: absolute;
					top: 35px;
    				left: 30px;
				}
				h3 {
					margin-bottom: 0;
					font-size: 20px;
				}
				span {
					margin-bottom: 10px;
					display: block;
				}
				p {
					margin-bottom: 0;
				}
				a {
					position: absolute;
					top: 30px;
					right: 30px;
				}
			}
			.ml-30 {
				margin-left: 30px;
			}
		}
	}
}
.blog-details-right-area {
	.blog-widget {
		margin-bottom: 35px;
		.title {
			padding-bottom: 10px;
			border-bottom: 1px solid #eeeeee;
			margin-bottom: 25px;
		}
		&.search-widget {
			.search-form {
				position: relative;
				.form-control {
					height: 50px;
					border: 1px solid $white-color;
					background-color: $white-color;
					box-shadow: $box-shadow;
					padding: 10px;
					width: 100%;
					&:focus {
						border-color: #43bd75;
					}
				}
				button {
					position: absolute;
					top: 0;
					right: 0;
					height: 50px;
					width: 50px;
					background-color: #43bd75;
					transition: $transition;
					&:hover {
						background-color: $main-color;
					}
					i {
						color: $white-color;
					}
				}
			}
		}
		&.resent-post-widget {
			ul {
				li {
					border-bottom: 1px solid #eeeeee;
					padding-bottom: 10px;
					margin-bottom: 10px;
					height: 80px;
					&:last-child {
						padding-bottom: 0;
						border-bottom: none;
						margin-bottom: 0;
					}
					a {
						position: relative;
						display: block;
						padding-left: 90px;
						img {
							position: absolute;
							top: 0;
							left: 0;
						}
						span {
							display: block;
							margin-bottom: 5px;
							color: $body-color;
						}
						h3 {
							font-size: 18px;
							transition: $transition;
							&:hover {
								color: #43bd75;
							}
						}
					}
				}
			}
		}
		&.archives-widget {
			ul {
				li {
					border-bottom: 1px solid #eeeeee;
					padding-bottom: 10px;
					margin-bottom: 10px;
					&:last-child {
						padding-bottom: 0;
						border-bottom: none;
						margin-bottom: 0;
					}
					a {
						position: relative;
						display: block;
						color: $body-color;
						span {
							display: block;
							margin-bottom: 5px;
							color: $body-color;
							float: right;
						}
						&:hover {
							color: #43bd75;
							span {
								color: #43bd75;
							}
						}
					}
				}
			}
		}
		&.categories-widget {
			ul {
				li {
					border-bottom: 1px solid #eeeeee;
					padding-bottom: 10px;
					margin-bottom: 10px;
					&:last-child {
						padding-bottom: 0;
						border-bottom: none;
						margin-bottom: 0;
					}
					a {
						position: relative;
						display: block;
						color: $body-color;
						span {
							display: block;
							margin-bottom: 5px;
							color: $body-color;
							float: right;
						}
						&:hover {
							color: #43bd75;
							span {
								color: #43bd75;
							}
						}
					}
				}
			}
		}
		&.tags-widget {
			ul {
				li {
					border: 1px solid #eeeeee;
					padding: 10px;
					margin-right: 5px;
					margin-bottom: 10px;
					display: inline-block;
					transition: $transition;
					a {
						position: relative;
						display: block;
						color: $body-color;
					}
					&:hover {
						background-color: #43bd75;
						a {
							color: $white-color;
						}
					}
				}
			}
		}
	}
}
.blog-details-area {
	.contact-form {
		margin-top: 40px;
	}
}

/* 
Cart Area Style
=====================================================*/
.cart-area {
	.cart-table {
		table {
			margin-bottom: 0;
			thead {
				tr {
					th {
						border-bottom-width: 0px;
						vertical-align: middle;
						padding: 0 0 15px;
						text-transform: uppercase;
						border: none;
						font-weight: 600;
						font-size: 15px;
					}
				}
			}
			tbody {
				tr {
					td {
						vertical-align: middle;
						color: #666666;
						padding-left: 0;
						padding-right: 0;
						font-size: 14px;
						border-color: #eaedff;
						border-left: none;
						border-right: none;
					}
					td.product-thumbnail {
						img {
							width: 60px;
							height: 60px;
						}
						a {
							display: block;
						}
					}
					td.product-name {
						a {
							color: #666666;
							font-weight: 600;
							display: inline-block;
							&:hover {
								color: $heading-color;
							}
						}
					}
					td.product-price {
						span {
							font-weight: 500;
						}
					}
					td.product-subtotal {
						.remove {
							color: #666666;
							float: right;
							position: relative;
							top: 1px;
							transition: all 0.5s;
							i {
								font-size: 22px;
							}
							&:hover {
								color: red;
							}
						}
						overflow: hidden;
						span {
							font-weight: 500;
						}
					}
					td.product-quantity {
						.input-counter {
							max-width: 130px;
							min-width: 130px;
							text-align: center;
							display: inline-block;
							position: relative;
							span {
								position: absolute;
								top: 0;
								background-color: transparent;
								cursor: pointer;
								color: $heading-color;
								width: 40px;
								height: 100%;
								line-height: 48px;
								transition: 0.5s;
								&:hover {
									color: $main-color;
								}
							}
							span.minus-btn {
								left: 0;
							}
							span.plus-btn {
								right: 0;
							}
							input {
								height: 45px;
								color: $heading-color;
								outline: 0;
								display: block;
								border: none;
								background-color: #f8f8f8;
								text-align: center;
								width: 100%;
								font-size: 15px;
								font-weight: 500;
								&::placeholder {
									color: $heading-color;
								}
							}
						}
					}
				}
			}
		}
	}
	.cart-buttons {
		margin-top: 30px;
	}
	.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;
		h3 {
			margin-bottom: 25px;
		}
		ul {
			padding: 0;
			margin: 0 0 25px;
			list-style-type: none;
			li {
				border: 1px solid #eaedff;
				padding: 10px 15px;
				color: #323232;
				overflow: hidden;
				font-weight: 600;
				&:first-child {
					border-bottom: none;
				}
				&:last-child {
					border-top: none;
				}
				span {
					float: right;
					color: #666666;
					font-weight: normal;
				}
			}
		}
	}
	.cart-area {
		.nice-select {
			height: 50px;
			line-height: 49px;
			border-radius: 0;
			width: 100%;
			margin-bottom: 18px;
		}  
	}
	.cart-wraps {
		box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
		background-color: #fff;
		padding: 40px;
	}
	.coupon-wrap {
		margin-top: 50px;
		background-color: $white-color;
		padding: 40px;
		box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
		.nice-select {
			background-color: #f2f9fc;
			.list {
				width: 100%;
			}
		}
		.nice-select .option {
			color: $heading-color !important;
			&:hover {
				color: $white-color !important;
				background-color: #1089d4 !important;
			}
		}
		select .option.focus, .nice-select .option.selected.focus {
			background-color: #1089d4 !important;
			color: $white-color !important;
		}
		h3 {
			padding-bottom: 25px;
		}
		.form-group {
			margin-bottom: 18px; 
		}
		.nice-select {
			height: 50px;
			width: 100%;
			margin-bottom: 19px;
			border-radius: 0;
			.current {
				position: relative;
				top: 4px;
			}
		}
	}
	.table-bordered>:not(caption)>* {
		border-top: none;
	}
	.text-right {
		text-align: right;
	}
	.default-btn {
		display: inline-flex;
	}
}

/* 
Checkout Area Style 
=====================================================*/
.checkout-area {
	.user-actions {
		box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
		background: $white-color;
		padding: 18px 20px 15px;
		margin-bottom: 65px;
		border-top: 3px solid $main-color;
		position: relative;
		color: $main-color; 
		&::before {
			content: '';
			position: absolute;
			right: 0;
			bottom: -35px;
			width: 100%;
			height: 1px;
			background: #eeeeee;
		}
		i {
			color: $main-color;
			margin-right: 2px;
			font-size: 20px;
			position: relative;
			top: 4px;
		}
		span {
			display: inline-block;
			font-weight: 500;
			color: $heading-color;
			a {
				display: inline-block;
				color: $main-color;
				font-size: 15px;
				&:hover {
					color: $main-color;
				}
				&:focus {
					color: $main-color;
				}
			}
		}
	}
	.checkout-area {
		.title {
			margin-bottom: 25px;
			font-size: 20px;
			font-weight: 700;  
		}
	}
	.billing-details {
		background-color: $white-color;
		padding: 30px;
		box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
		.form-group {
			margin-bottom: 20px;
			label {
				display: block;
				color: $heading-color;
				margin-bottom: 10px;
				font-size: 15px;
				font-weight: 500;
				.required {
					color: red;
				}
			}
			.nice-select {
				float: unset;
				line-height: 45px;
				color: $heading-color;
				padding-top: 0;
				padding-bottom: 0;
				.list {
					background-color: $white-color;
					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;
					.option {
						transition: 0.5s;
						padding-left: 20px;
						padding-right: 20px;
						&:hover {
							background-color: $main-color !important;
							color: $white-color;
						}
					}
					.option.selected {
						background-color: transparent;
					}
				}
				&:after {
					right: 20px;
				}
			}
			.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
				background-color: $main-color !important;
				color: $white-color !important;
			}
			textarea {
				padding-top: 13px;
			}
		}
		.form-check {
			margin-bottom: 20px;
			.form-check-label {
				color: $heading-color;
			}
			label {
				position: relative;
				top: 1px;
				font-size: 14px;
				font-weight: 500;
			}
		}
		.col-lg-12 {
			&:last-child {
				.form-group {
					margin-bottom: 0;
				}
			}
		}
	}
	.order-details {
		.order-table {
			background-color: $white-color;
			padding: 30px;
			box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
			table {
				margin-bottom: 0;
				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: 700;
						}
					}
				}
				tbody {
					tr {
						td {
							vertical-align: middle;
							color: $heading-color;
							border-color: #eaedff;
							font-size: 14px;
							padding-left: 20px;
							padding-right: 20px;
						}
						td.product-name {
							a {
								color: $heading-color;
								display: inline-block;
								font-weight: 500;
								font-size: 14px;
								&:hover {
									color: $heading-color;
								}
							}
						}
						td.order-subtotal {
							span {
								color: $heading-color;
								font-weight: 600;
							}
						}
						td.order-shipping {
							span {
								color: $heading-color;
								font-weight: 600;
							}
						}
						td.total-price {
							span {
								color: $heading-color;
								font-weight: 600;
							}
						}
						td.shipping-price {
							font-weight: 600;
						}
						td.order-subtotal-price {
							font-weight: 600;
						}
						td.product-subtotal {
							font-weight: 600;
						}
					}
				}
			}
		}
		.payment-box {
			background-color: $white-color;
			box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
			margin-top: 30px;
			padding: 30px;
			.payment-method {
				p {
					[type="radio"] {
						&:checked {
							display: none;
							&+label {
								padding-left: 27px;
								cursor: pointer;
								display: block;
								font-weight: 600;
								color: $main-color;
								position: relative;
								margin-bottom: 8px;
								&::before {
									content: '';
									position: absolute;
									left: 0;
									top: 3px;
									width: 18px;
									height: 18px;
									border: 1px solid #dddddd;
									border-radius: 50%;
									background: $white-color;
								}
								&::after {
									content: '';
									width: 12px;
									height: 12px;
									background: $main-color;
									position: absolute;
									top: 6px;
									left: 3px;
									border-radius: 50%;
									transition: 0.5s;
									opacity: 1;
									visibility: visible;
									transform: scale(1);
								}
							}
						}
						&:not(:checked) {
							display: none;
							&+label {
								padding-left: 27px;
								cursor: pointer;
								display: block;
								font-weight: 600;
								color: $heading-color;
								position: relative;
								margin-bottom: 8px;
								&::before {
									content: '';
									position: absolute;
									left: 0;
									top: 3px;
									width: 18px;
									height: 18px;
									border: 1px solid #dddddd;
									border-radius: 50%;
									background: $white-color;
								}
								&::after {
									content: '';
									width: 12px;
									height: 12px;
									background: $main-color;  
									position: absolute;
									top: 6px;
									left: 3px;
									border-radius: 50%;
									transition: 0.5s;
									opacity: 0;
									visibility: hidden;
									transform: scale(0);
								}
							}
						}
					}
				}
			}
			.btn.order-btn {
				display: block;
				margin-top: 25px;
			}
			.default-btn {
				margin-top: 20px;
				display: block;
				text-align: center;
			}
		}
	}
}

/*
Product Details Area Style
=====================================================*/
.product-details-area {
	.product-details-desc {
		h3 {
			margin-bottom: 12px;
			font-weight: 700;
		}
		p {
			margin-bottom: 0;
		}
		.price {
			margin-bottom: 10px;
			color: #333333;
			font-weight: 700;
			span {
				padding: 0 5px;
			}
			.old-price {
				text-decoration: line-through;
				color: #828893;
				font-size: 13px;
			}
		}
		.product-review {
			margin-bottom: 15px;
			.rating {
				display: inline-block;
				padding-right: 5px;
				font-size: 14px;
				i {
					color: #ffba0a;
				}
			}
			.rating-count {
				display: inline-block;
				color: #333333;
				border-bottom: 1px solid #333333;
				line-height: initial;
				&:hover {
					color: $main-color;
					border-color: $main-color;
				}
			}
		}
		.product-add-to-cart {
			margin-top: 20px;
			.input-counter {
				max-width: 130px;
				min-width: 130px;
				margin-right: 10px;
				text-align: center;
				display: inline-block;
				position: relative;
				span {
					position: absolute;
					top: 0;
					background-color: transparent;
					cursor: pointer;
					color: #d0d0d0;
					width: 40px;
					height: 100%;
					line-height: 48px;
					transition: 0.5s;
					&:hover {
						color: $heading-color;
					}
				}
				span.minus-btn {
					left: 0;
				}
				span.plus-btn {
					right: 0;
				}
				input {
					height: 45px;
					color: #333333;
					outline: 0;
					display: block;
					border: none;
					background-color: #f8f8f8;
					text-align: center;
					width: 100%;
					font-size: 17px;
					font-weight: 600;
					&::placeholder {
						color: #333333;
					}
				}
			}
			.default-btn {
				border: none;
				cursor: pointer;
				float: right;
			}
			.btn {
				height: 45px;
				top: -2px;
				position: relative;
				padding-top: 0;
				padding-bottom: 0;
				i {
					margin-right: 2px;
				}
			}
		}
		.buy-checkbox-btn {
			margin-top: 20px;
			input {
				display: none;
			}
			.cbx {
				margin: auto;
				user-select: none;
				cursor: pointer;
				span {
					display: inline-block;
					vertical-align: middle;
					transform: translate3d(0, 0, 0);
					&:first-child {
						position: relative;
						width: 18px;
						height: 18px;
						border-radius: 3px;
						transform: scale(1);
						vertical-align: middle;
						border: 1px solid #ebebeb;
						transition: all 0.2s ease;
						transition: 0.5s;
						svg {
							position: absolute;
							top: 3px;
							left: 2px;
							fill: none;
							stroke: #ffffff;
							stroke-width: 2;
							stroke-linecap: round;
							stroke-linejoin: round;
							stroke-dasharray: 16px;
							stroke-dashoffset: 16px;
							transition: all 0.3s ease;
							transition-delay: 0.1s;
							transform: translate3d(0, 0, 0);
							transition: 0.5s;
						}
						&:before {
							content: "";
							width: 100%;
							height: 100%;
							background: #333333;
							display: block;
							transform: scale(0);
							opacity: 1;
							border-radius: 50%;
							transition: 0.5s;
						}
					}
					&:last-child {
						padding-left: 4px;
						color: #57647c;
					}
				}
				&:hover {
					span {
						&:first-child {
							border-color: #333333;
						}
					}
				}
			}
			.inp-cbx {
				&:checked {
					&+.cbx {
						span {
							&:first-child {
								background: #333333;
								border-color: #333333;
								animation: wave 0.4s ease;
								svg {
									stroke-dashoffset: 0;
								}
								&:before {
									transform: scale(3.5);
									opacity: 0;
									transition: all 0.6s ease;
								}
							}
						}
					}
				}
			}
			.item {
				&:not(:first-child) {
					margin-top: 15px;
				}
			}
			.btn {
				display: block;
				width: 100%;
			}
			.default-btn {
				text-transform: uppercase;
				display: block;
				text-align: center;
			}
		}
		.custom-payment-options {
			margin-top: 20px;
			span {
				display: block;
				color: #57647c;
				margin-bottom: 15px;
			}
			.payment-methods {
				a {
					display: inline-block;
					img {
						width: 40px;
						margin-right: 5px;
					}
				}
			}
		}
	}
	.product-details-image {
		text-align: center;
		background-color: #f7f7f7;
	}
	.tab {
		.tabs_item {
			display: none;
			&:first-child {
				display: block;
			}
		}
	}
	.products-details-tab {
		margin-top: 50px;
		.tabs {
			list-style-type: none;
			margin-bottom: -1px;
			padding-left: 0;
			li {
				display: inline-block;
				line-height: initial;
				margin-right: 5px;
				a {
					display: inline-block;
					position: relative;
					text-transform: uppercase;
					color: #333333;
					border: 1px solid #eeeeee;
					padding-top: 15px;
					padding-bottom: 15px;
					padding-right: 30px;
					padding-left: 48px;
					font-weight: 700;
					.dot {
						position: absolute;
						top: 50%;
						transform: translateY(-50%);
						left: 30px;
						width: 12px;
						height: 12px;
						border: 1px solid #333333;
						transition: 0.5s;
						border-radius: 50%;
						&::before {
							position: absolute;
							top: 0;
							content: '';
							left: 0;
							right: 0;
							bottom: 0;
							background: #333333;
							margin: 2px;
							border-radius: 50%;
							transition: 0.5s;
						}
					}
					&:hover {
						color: #ffffff;
						background-color: $main-color;
						border-color: $main-color;
						.dot {
							border-color: #ffffff;
							&::before {
								background: #ffffff;
							}
						}
					}
					&:focus {
						color: #ffffff;
						background-color: $main-color;
						border-color: $main-color;
						.dot {
							border-color: #ffffff;
							&::before {
								background: #ffffff;
							}
						}
					}
				}
				&:last-child {
					margin-right: 0;
				}
			}
			li.current {
				a {
					color: #ffffff;
					background-color: $main-color;
					border-color: $main-color;
					.dot {
						border: 1px solid $white-color;
						&::before {
							background: #ffffff;
						}
					}
				}
			}
		}
		.tab_content {
			border: 1px solid #eeeeee;
			padding: 30px;
			.tabs_item {
				.products-details-tab-content {
					p {
						margin-bottom: 20px;
						font-size: 14px;
						&:last-child {
							margin-bottom: 0;
						}
					}
					.additional-information {
						padding-left: 0;
						margin-bottom: 0;
						list-style-type: none;
						text-align: left;
						li {
							border: 1px solid #eeeeee;
							border-bottom: none;
							padding: 10px 15px;
							color: #57647c;
							&:last-child {
								border-bottom: 1px solid #eeeeee;
							}
							span {
								display: inline-block;
								width: 30%;
								color: #333333;
								font-size: 16px;
								font-weight: 600;
							}
						}
					}
					h3 {
						margin-bottom: 15px;
						font-weight: 700;
					}
					.product-review-form {
						.review-title {
							position: relative;
							.rating {
								display: inline-block;
								.fas.fa-star {
									color: #ffba0a;
								}
								i {
									color: #ffba0a;
									font-size: 14px;
								}
							}
							p {
								margin-bottom: 0;
								display: inline-block;
								padding-left: 5px;
								line-height: initial;
							}
							.btn {
								position: absolute;
								right: 0;
								bottom: 10px;
								padding: 10px 11px;
								font-size: 11px;
								&:focus {
									border: none !important;
									box-shadow: none !important;
									border: 4px;
									background-color: $heading-color;
								}
							}
						}
						.review-comments {
							margin-top: 35px;
							.review-item {
								margin-top: 30px;
								position: relative;
								padding-right: 200px;
								border-top: 1px dashed #eeeeee;
								padding-top: 30px;
								.rating {
									.fas.fa-star {
										color: #ffba0a;
									}
									i {
										font-size: 14px;
										color: #ffba0a;
									}
								}
								h3 {
									margin-top: 10px;
									margin-bottom: 10px;
								}
								span {
									margin-bottom: 10px;
									font-size: 13px;
									display: block;
									strong {
										font-weight: 600;
									}
								}
								p {
									margin-bottom: 0;
								}
								.review-report-link {
									position: absolute;
									right: 0;
									color: #57647c;
									top: 40px;
									text-decoration: underline;
									&:hover {
										color: #ff4800;
									}
								}
							}
						}
						.review-form {
							margin-top: 30px;
							form {
								.form-group {
									margin-bottom: 20px;
									label {
										color: #444444;
										text-transform: uppercase;
										font-size: 13px;
										font-weight: 600;
										margin-bottom: 12px;
									}
									textarea {
										padding-top: 15px;
									}
									.form-control {
										font-size: 14px;
									}
								}
								.btn {
									&:focus {
										box-shadow: none;
										border: none;
										border-radius: 0;
									}
								}
							}
						}
					}
				}
			}
		}
	}
}

/*
Sign In & Log In  Area Style
=====================================================*/
.user-area-all-style {
	position: relative;
	z-index: 1;
	.contact-form-action {
		background-color: $white-color;
		border-radius: 4px;
		box-shadow: $box-shadow;
		padding: 40px;
		margin: auto;
		max-width: 570px;
		form {
			.submit-btn {
				margin-top: 24px;
			}
			.default-btn {
				font-size: 14px;
				padding: 15px 40px;
				margin-bottom: 30px;
				&.btn-two {
					display: table;
					margin: 0 auto 0; 
					padding: 15px 40px;
				}
			}
			.col-lg-4 {
				&:nth-child(1) .default-btn {
					background-color: #db4a39;
				}
				&:nth-child(2) .default-btn {
					background-color: #3b5998;
					display: table;
					margin: 0 auto 30px;
				}
				&:nth-child(3) .default-btn {
					background-color: #00acee;
					float: right;
				}
			}
			.reset-btn {
				margin-top: 0;
			}
			.form-condition {
				margin-bottom: 20px;
				.agree-label {
					font-weight: 600;
					a {
						color: $main-color;
					}
				}
			}
			.form-group {
				margin-bottom: 30px;
			}
		}
		.account-desc {
			margin: 25px auto 0;
			display: table;
			font-weight: 600;
			a {
				color: $main-color;
				margin-left: 10px;
				font-weight: 600;
			}
		}
		#chb1 {
			position: relative;
			top: 2px;
			margin-right: 4px;
		}
		#chb2 {
			position: relative;
			top: 2px;
			margin-right: 4px;
		}
		.forget {
			float: right;
			color: $main-color;
			font-weight: 600;
		}
		.now-register {
			font-weight: 600;
			float: right;
			margin-bottom: 30px;
			a {
				color: $main-color;
			}
		}
		.now-log-in {
			color: $main-color;
			font-weight: 600;
			.font-q {
				font-weight: 600;
			}
		}
	}
	.log-in-img {
		background-image: url(../../assets/img/log-in-img.jpg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		height: 100%;
	}
	.sign-in-img {
		background-image: url(../../assets/img/sign-in-img.jpg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		height: 100%;
	}
}
.recover-password-area {
	.contact-form-action {
		max-width: 570px;
		box-shadow: $box-shadow;
		.form-heading {
			h3 {
				font-size: 30px;
				margin-bottom: 20px;
			}
			 p {
				 margin-bottom: 30px;
			 }
		 }
	}
}

/*
Client Area Style
======================================================*/
.single-client {
	text-align: center;
	background-color: $white-color;
	position: relative;
	margin-top: 30px;
	margin-bottom: 165px;
	border-radius: $border-radius;
	transition: $transition;
	padding: {
		top: 50px;
		left: 30px;
		right: 30px;
		bottom: 30px;
	}
	.quotes {
		background-color: $white-color;
		box-shadow: $box-shadow;
		color: $main-color;
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 30px;
		border-radius: 50%;
		display: inline-block;
		position: absolute;
		left: 0;
		right: 0;
		margin: auto;
		top: -30px;
		transition: $transition;
	}
	p {
		transition: $transition;
	}
	ul {
		li {
			display: inline-block;
			i {
				font-size: 20px;
				color: #ffba0a;
				transition: $transition;
			}
		}
	}
	&::before {
		position: absolute;
		width: 0;
		height: 0;
		content: "";
		border-top: 45px solid #ffffff;
		border-right: 10px solid transparent;
		border-bottom: 0;
		border-left: 50px solid transparent;
		bottom: -24px;
		left: 20px;
		transition: $transition;
	}
	background-color: #fef4f8;
	margin-bottom: 195px;
	transition: $transition;
	&::before {
		border-top: 45px solid #fef4f8;
		border-right: 45px solid transparent;
		border-left: 45px solid transparent;
		left: 0;
		right: 0;
		margin: auto;
	}
	.client-img {
		left: 0;
		right: 0;
		h3 {
			color: $heading-color;
		}
	}
	&:hover {
		transform: translateY(-5px);
	}
	
}
.client-img {
	position: absolute;
    left: 30px;
    bottom: -170px;
	img {
		border-radius: 10px;
		margin-bottom: 15px;
	}
	h3 {
		margin-bottom: 0;
		font-size: 20px;
		color: $white-color;
	}
	span {
		font-weight: 600;
		font-size: 13px;
		line-height: 1;
		color: $main-color;
	}
}

/*
Terms Conditions Area CSS
======================================================*/
.terms-conditions-area {
	h3 {
		margin-bottom: 30px;
	}
	ul {
		li {
			margin-bottom: 20px;
			p {
				position: relative;
				padding-left: 35px;
				strong {
					position: absolute;
					left: 0;
					top: 0;
				}
			}
		}
	}
}
.single-privacy {
	h3 {
		margin-bottom: 30px;
	}
	ul {
		li {
			margin-bottom: 20px;
			p {
				position: relative;
				padding-left: 35px;
				strong {
					position: absolute;
					left: 0;
					top: 0;
				}
			}
		}
	}
}

/* 
Coming Soon Area Style
=====================================================*/
.coming-soon-area {
	position: relative;
	height: 100vh;
	overflow: hidden;
	background-image: url(../../assets/img/coming-soon-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: $body-color;
		opacity: 0.4;
	}
	.coming-soon-content {
		text-align: center;
		max-width: 750px;
		margin-left: auto;
		margin-right: auto;
		position: relative;
		z-index: 2;
		clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
		background-color: #fef4f8;
		padding: 70px 30px;
		h1 {
			margin-bottom: 0;
			color: $heading-color;
			font-size: 60px;
			margin-top: -18px;
		}
		p {
			font-size: 16px;
			max-width: 600px;
			margin-top: 15px;
			margin-bottom: 0;
			margin-left: auto;
			margin-right: auto;
		}
		#timer {
			margin-top: 30px;
			div {
				display: inline-block;
				color: $heading-color;
				position: relative;
				margin-left: 35px;
				margin-right: 35px;
				font-size: 45px;
				font-weight: 700;
				span {
					display: block;
					text-transform: capitalize;
					margin-top: -15px;
					font-size: 16px;
					font-weight: normal;
				}
				&:last-child {
					margin-right: 0;
					&::before {
						display: none;
					}
				}
				&:first-child {
					margin-left: 0;
				}
				&::before {
					content: "";
					position: absolute;
					right: -50px;
					top: -10px;
					font-size: 70px;
					color: $white-color;
				}
			}
		}
		.newsletter-form {
			position: relative;
			max-width: 500px;
			margin-left: auto;
			margin-right: auto;
			margin-top: 50px;
			.input-newsletter {
				display: block;
				width: 100%;
				height: 60px;
				border: none;
				background-color: rgba(255, 255, 255, 0.3);
				padding-left: 15px;
				color: $white-color;
				outline: 0;
				transition: 0.5s;
				border: 1px solid $heading-color;
				color: $body-color;
				&:focus {
					border-color: $main-color;
				}
			}
			button {
				position: absolute; 
				right: 0;
				top: 0;
				height: 60px;
				padding: 0 30px;
				text-transform: uppercase;
				outline: 0;
				color: $white-color;
				transition: 0.5s;
				font-weight: 500;
				font-size: 15px;
				cursor: pointer;
				&::after {
					border-radius: 0;
				}
				&::before {
					border-radius: 0;
				}
				&:hover {
					color: $white-color;
					background-color: $main-color;
				}
			}
			.default-btn {
				border-radius: 0;
			}
			#validator-newsletter {
				color: $white-color;
				font-size: 14px;
				position: absolute;
				left: 0;
				right: 0;
				bottom: -30px;
				margin: 0 auto;
			}
		}
		ul {
			margin-top: 30px;
			li {
				display: inline-block;
				margin: 0 5px;
				a {
					width: 30px;
					height: 30px;
					line-height: 36px;
					background-color: $main-color;
					border-radius: 50%;
					color: $white-color;
					transition: $transition;
					i {
						font-size: 18px;
					}
					&:hover {
						transform: translateY(-5px);
					}
				}
			}
		}
	}
	#validator-newsletter {
		text-align: left;
		color: #dc3545!important;
	}
} 

/*
404 Error Area Style
=====================================================*/
.error-area {
	padding: 50px 0;
	height: 100vh;  
    text-align: center;
    position: relative;
    z-index: 1;
	background-color: $white-color;
    .error-content-wrap {
		h1 {
			font-size: 300px;
			line-height: 1;
			color: $heading-color;
			.a {
				animation: bounce 3s infinite linear;
				display: inline-block;
			}
			.b {
				animation: bounce 3s infinite linear;
				display: inline-block;
			}
		}
        z-index: 1;
        position: relative;
        h3 {
            margin: 30px 0 0;
			position: relative;
			color: #ff0000;
        }
        p {
			margin: 20px 0 20px;
			font-size: 19px;
			color: $heading-color;
        }
    }
}

/*
Video Area Style
=====================================================*/
.single-minimal-blog {
	.videos-btn {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		justify-content: center;
		align-items: center;
		display: flex;
	}
}

/*
Full Width Area Style
=====================================================*/
.full-width-blog {
	padding-top: 100px;
	padding-bottom: 100px;
}

/*
Left Sidebar Area Style
=====================================================*/
.left-sidebar {
	.single-featured .featured-content {
		padding: 20px;
	}
}

/*
Post Style Two Area Style
=====================================================*/
.post-style-two {
	max-width: 810px;
	margin: auto;
}
.video-page { 
	padding-bottom: 100px;
}

/*
Featured Area Style
======================================================*/ 
.single-featured {
	transition: $transition;
	margin-bottom: 30px;
	.featured-content {
		box-shadow: $box-shadow;
		background-color: $white-color;
		text-align: center;
		padding: 30px;
		max-width: 490px;
		margin: -100px auto 0;
		position: relative;
		.date {
			margin-bottom: 10px;
		}
		h3 {
			margin-bottom: 15px;
			transition: $transition;
		}
		p {
			margin-bottom: 20px;
		}
	}
	&.two {
		margin-top: 30px;
		.featured-content {
			margin-top: -200px;
		}
	}
	&.four {
		margin-top: -70px;
	}
	&.six {
		margin-top: -70px;
	}
	&:hover {
		transform: translateY(-5px);
		.featured-content {
			h3 {
				color: $main-color;
			}
		}
	}
}

/*
Latest Articles Area Style
======================================================*/
.latest-articles-area {
	.container-fluid {
		padding-left: 45px;
		padding-right: 45px;
	}
}
.latest-articles-img {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	z-index: 1;
	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: $black-color;
		opacity: 0.2;
		z-index: -1;
	}
	&.bg-1 {
		background-image: url(../../assets/img/latest-articles-img/1.jpg);
	}
	&.bg-2 {
		background-image: url(../../assets/img/latest-articles-img/2.jpg);
	}
	&.bg-3 {
		background-image: url(../../assets/img/latest-articles-img/3.jpg);
	}
	&.bg-4 {
		background-image: url(../../assets/img/latest-articles-img/4.jpg);
	}
	&.bg-5 {
		background-image: url(../../assets/img/latest-articles-img/5.jpg);
	}
	&.bg-6 {
		background-image: url(../../assets/img/latest-articles-img/6.jpg);
	}
	&.bg-7 {
		background-image: url(../../assets/img/latest-articles-img/7.jpg);
	}
	&.bg-8 {
		background-image: url(../../assets/img/latest-articles-img/8.jpg);
	}
	&.bg-9 {
		background-image: url(../../assets/img/latest-articles-img/9.jpg);
	}
	&.bg-10 {
		background-image: url(../../assets/img/latest-articles-img/10.jpg);
	}
}
.latest-articles-content {
	background-color: $white-color;
	box-shadow: $box-shadow;
	padding: 30px;
	.date {
		margin-bottom: 15px;
	}
	h3 {
		margin-bottom: 15px;
		transition: $transition;
		font-size: 22px;
		&:hover {
			color: $main-color;
		}
	}
	p {
		margin-bottom: 20px;
	}
	&.must {
		padding: 0 0;
		box-shadow: none;
		background-color: transparent;
		h3 {
			font-size: 18px;
		}
		.read-more {
			font-size: 15px;
		}
	}
}

/*
Product Area Style
======================================================*/ 
.single-product {
	text-align: center;
	padding: 30px;
	transition: $transition;
	border: 1px solid #eeeeee;
	margin-bottom: 30px;
	position: relative;
	.product-content {
		padding-top: 30px;
		ul {
			line-height: 1;
			margin-bottom: 15px;
			li {
				display: inline-block;
				color: #43bd75;
				padding: 0 5px;
				del {
					color: $body-color;
				}
			}
		}
		h3 {
			text-transform: uppercase;
			margin-bottom: 0;
			transition: $transition;
			font-size: 20px;
			&:hover {
				color: $main-color;
			}
		}
		.default-btn.four {
			position: absolute;
			left: 0;
			right: 0;
			margin: auto;
			max-width: 185px;
			bottom: -24px;
			padding: 10px 30px;
			transform: scale(0);
		}
	}
	&:hover {
		border-color: #16a085;
		.default-btn.four {
			transform: scale(1);
		}
	}
}

/*
Minimal Area Style
======================================================*/
.minimal-blog-wrap {
	.single-minimal-blog {
		position: relative;
		&::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: $black-color;
			opacity: 0.2;
		}
	}
	margin-bottom: 50px;
	.minimal-blog-content {
		text-align: center;
		.date-two {
			margin-bottom: 20px;
		}
		h3 {
			margin-bottom: 15px;
			transition: $transition;
			font-size: 30px;
			&:hover {
				color: $main-color;
			}
		}
		p {
			margin-bottom: 20px;
		}
		.social-icon {
			line-height: 1;
			margin-bottom: 20px;
			li {
				display: inline-block;
				span {
					font-size: 16px;
					position: relative;
					top: -4px;
				}
				a {
					padding: 0 5px;
					i {
						font-size: 20px;
						transition: $transition;
					}
				}
				&:last-child {
					a {
						padding-right: 0;
					}
				}
				&:first-child {
					a {
						padding-left: 0;
					}
				}
				&:nth-child(1) {
					a {
						i {
							color: #0c92ff;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(2) {
					a {
						i {
							color: #1da1f2;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(3) {
					a {
						i {
							color: #fe0eb2;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(4) {
					a {
						i {
							color: #d32f2f;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
				&:nth-child(5) {
					a {
						i {
							color: #e52d27;
						}
						&:hover {
							i {
								color: $main-color;
							}
						}
					}
				}
			}
		}
	}
}

/*====================================================
OTHERS STYLE AREA
======================================================*/

/*
Preloader Area Style*/
.loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	overflow: hidden;
	z-index: 9999;
	.loader-section {
		position: fixed;
		top: 0;
		width: 51%;
		height: 100%;
		background: $white-color;
		z-index: 10;
	}
	.loader-section.section-left {
		left: 0;
	}
	.loader-section.section-right {
		right: 0;
	}
}
.loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #16a085;
	animation: spin 1.7s linear infinite;
	z-index: 11;
	&:before {
		content: "";
		position: absolute;
		top: 5px;
		left: 5px;
		right: 5px;
		bottom: 5px;
		border-radius: 50%;
		border: 3px solid transparent;
		border-top-color: #e74c3c;
		animation: spin-reverse .6s linear infinite;
	}
	&:after {
		content: "";
		position: absolute;
		top: 15px;
		left: 15px;
		right: 15px;
		bottom: 15px;
		border-radius: 50%;
		border: 3px solid transparent;
		border-top-color: #f9c922;
		animation: spin 1s linear infinite;
	}
}
.loaded {
	.loader-wrapper {
		.loader-section.section-left {
			transform: translateX(-100%);
			transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
		}
		.loader-section.section-right {
			transform: translateX(100%);
			transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
		}
		visibility: hidden;
		transform: translateY(-100%);
		transition: all 0.3s 1s ease-out;
	}
	.loader {
		opacity: 0;
		transition: all 0.3s ease-out;
	}
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes spin-reverse {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

/*
Go Top Style*/
.go-top {
	position: fixed;
	cursor: pointer;
	top: 93%;
	right: -10%;
	background-color: $main-color;
	z-index: 4;
	width: 40px;
	text-align: center;
	height: 42px;
	line-height: 42px;
	opacity: 0;
	visibility: hidden;
	transition: .9s;
	i {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		right: 0;
		margin: 0 auto;
		color: $white-color;
		transition: 0.5s;
		font-size: 20px;
		&:last-child {
			opacity: 0;
			visibility: hidden;
			top: 60%;
		}
	}
	&::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background-color: $main-color;
		opacity: 0;
		visibility: hidden;
		transition: 0.5s;
	}
	&:hover {
		color: $white-color;
		background-color: $heading-color;
		&::before {
			opacity: 1;
			visibility: visible;
		}
		i {
			&:first-child {
				opacity: 0;
				top: 0;
				visibility: hidden;
			}
			&:last-child {
				opacity: 1;
				visibility: visible;
				top: 50%;
			}
		}
	}
	&:focus {
		color: $white-color;
		&::before {
			opacity: 1;
			visibility: visible;
		}
		i {
			&:first-child {
				opacity: 0;
				top: 0;
				visibility: hidden;
			}
			&:last-child {
				opacity: 1;
				visibility: visible;
				top: 50%;
			}
		}
	}
}
.go-top.active {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	right: 3%;
	top: 93%;
}

/*
Video wave Style*/
.video-btn {
	display: inline-block;
	width: 80px;
	height: 80px;
	line-height: 89px;
	text-align: center;
	border-radius: 0;
	color: $main-color;
	position: relative;
	top: 3px;
	z-index: 1;
	background-image: linear-gradient(to bottom right, #d2044d, #ff5e68);
	i {
		font-size: 50px;
		font-weight: 700;
		color: $white-color;
		position: absolute;
		top: 0;
		left: 4px;
		justify-content: center;
		align-items: center;
		display: flex;
		width: 100%;
		height: 100%;
	}
	&::after, &::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
		bottom: 0;
		left: 0;
		border-radius: 0;
		background-image: linear-gradient(to bottom right, #d2044d, #ff5e68);
	}
	&::before {
		animation: ripple 1.6s ease-out infinite;
	}
	&::after {
		animation: ripple 1.6s ease-out infinite;
	}
	&:hover {
		background-color: $main-color;
		i {
			color: $white-color;
		}
		&::after, &::before {
			background-color: $main-color;
		}
	}
}
@keyframes ripple {
	0%, 35% {
		transform: scale(0);
	  	opacity: 1;
	}
	50% {
		transform: scale(1.5);
	  	opacity: 0.8;
	}
	100% {
	  	opacity: 0;
		transform: scale(2);
	}
}

/*
Section Title Area Style*/
.section-title {
	max-width: 900px;
	margin:-6px auto 40px;
	text-align: center;
	position: relative;
	&.three {
		margin-bottom: 30px;
		h2 {
			text-transform: uppercase;
			font-size: 30px;
		}
	}
	&.four {
		h2 {
			background-color: transparent;
			&::before {
				display: none;
			}
			&::after {
				display: none;
			}
		}
	}
	span {
		color: $main-color;
		display: block;
		margin-bottom: 8px;
		font-weight: 600;
	}
	h2 {
		font-size: 40px;
		margin-bottom: 15px; 
		position: relative;
		display: block;
		text-transform: capitalize;
		background-color: $white-color;
		z-index: 1;
		i {
			position: relative;
			top: 5px;
		}
		&:last-child {
			margin-bottom: 0;
		}
		&::before {
			content: "";
			position: absolute;
			top: 50%;
			left: 0;
			width: 250px;
			height: 1px;
			border-bottom: 1px dashed $body-color;
			z-index: -1;
		}
		&::after {
			content: "";
			position: absolute;
			top: 50%;
			right: 0;
			width: 250px;
			height: 1px;
			border-bottom: 1px dashed $body-color;
			z-index: -1;
		}
	}
	&.white-title {
		span {
			color: $white-color;
		}
		h2 {
			color: $white-color;
		}
		p {
			color: $white-color;
		}
	}
}

/*
Nice select Area Style*/
.nice-select .list {
	width: 100%;
}
.nice-select {
	.option {
		&:hover {
			background-color: $heading-color;
			color: $white-color;
		}
	}
	.option.selected.focus {
		color: $heading-color;
	}
}

/*
Page-navigation Area Style*/
.pagination-area {
	margin-top: 35px;
	.page-numbers {
		width: 38px;
		height: 38px;
		background-color: $main-color;
		color: $white-color;
		text-align: center;
		display: inline-block;
		border-radius: 50px;
		line-height: 41px;
		position: relative;
		margin-left: 3px;
		margin-right: 3px;
		font-size: 20px;
		font-weight: 600;
		&.prev {
			width: 50px;
			height: 50px;
			line-height: 53px;
			font-size: 15px;
		}
		&.next {
			width: 50px;
			height: 50px;
			line-height: 53px;
			font-size: 15px;
		}
		&:hover {
			color: $white-color;
			background-color: $heading-color;
		}
		i {
			position: relative;
			top: 2.2px;
		}
	}
	.page-numbers.current {
		color: $white-color;
		background-color: $heading-color;
	}
}

.date {
	line-height: 1;
	li {
		display: inline-block;
		border-right: 1px dashed $body-color;
		text-transform: uppercase;
		padding: 0 8px;
		&:first-child {
			padding-left: 0;
		}
		&:last-child {
			border-right: none;
			padding-right: 0;
		}
	}
	&.date-two {
		li {
			background-color: #b99995;
			color: $white-color;
			padding: 8px 10px;
			margin: 0 10px;
			&:first-child {
				border-right: none;
				background-color: #c98f88;
				margin-left: 0;
			}
			&:first-child {
				margin-right: 0;
			}
		}
	}
}