/*  ---------------------------------------------------
    Description: Main script location for PICNIC.lk 
    Author: Nuwan DIssanayake   SoftNet
    Author URI: https://Softnet.com
    Version: 1.0 Last edited: 01/03/2022
---------------------------------------------------------  */
/* Template default CSS
/*----------------------------------------*/
html, body {
	height: 100%;
	font-family: "Cabin", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Lora", serif;
}
h1 {
	font-size: 70px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
p {
	font-size: 16px;
	font-family: "Cabin", sans-serif;
	color: #6b6b6b;
	font-weight: 400;
	line-height: 26px;
	margin: 0 0 15px 0;
}
img {
	max-width: 100%;
}
input:focus, select:focus, button:focus, textarea:focus {
	outline: none;
}
a:hover, a:focus {
	text-decoration: none;
	outline: none;
	color: #fff;
}
ul, ol {
	padding: 0;
	margin: 0;
}

/*---------------------
	Variables
-----------------------*/
:root{
    --color-primary: #FF6819;
}


/*---------------------
  Helper CSS
-----------------------*/
.section-title {
	text-align: center;
	margin-bottom: 22px;
}
.section-title span {
	font-size: 18px;
	 color: var(--color-primary);/*var(--color-primary); */
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.section-title h2 {
	font-size: 44px;
	color: #19191a;
	line-height: 58px;
	margin-top: 10px;
}
.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.spad {
	padding-top: 40px;
	padding-bottom: 100px;
}
.spad-2 {
	padding-top: 50px;
	padding-bottom: 70px;
}
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6, .text-white p, .text-white span, .text-white li, .text-white a {
	color: #fff;
}

/* buttons */
.primary-btn {
	display: inline-block;
	font-size: 13px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	position: relative;
}
.primary-btn:after {
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 2px;
	background: var(--color-primary);
	content: "";
}
/* Mobile Nav search button/modal */
.spacial-controls {
	position: fixed;
	width: 111px;
	height: 91px;
	top: 0;
	right: 0;
	z-index: 999;
}
.spacial-controls .search-switch {
	display: block;
	height: 100%;
	padding-top: 30px;
	background: #323232;
	text-align: center;
	cursor: pointer;
}
.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	z-index: 99999;
}
.search-model-form {
	padding: 0 15px;
}
.search-model-form input {
	width: 500px;
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #333;
	background: none;
	color: #999;
}
.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 28px;
	line-height: 28px;
	top: 30px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*------------------------------------------------------------------ 
   LOADER 
-------------------------------------------------------------------*/
#preloader {
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 11000;
	position: fixed;
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #1C1F30;  /*#fff*/
}

.loader {
    display: block;
    flex-wrap: wrap;
    width: 250px;
    height: auto;
    -webkit-transform-style: preserve-3d;
}

.loader img {
    width: 100%;
    height: auto;
}

.box {
	position: absolute;
	top: 0;
	left: 0;
	width: 75px;
	height: 75px;
	background-image: none;
	background-size: auto auto;
	background-image: none;
	-webkit-animation: move 2s ease-in-out infinite both;
	animation: move 2s ease-in-out infinite both;
	animation-delay: 0s;
	animation-delay: 0s;
	animation-delay: 0s;
	/*background-image: url('../img/loader.png');*/
	background-size: 100% 100%;
}

.box:nth-child(1) {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

.box:nth-child(2) {
	-webkit-animation-delay: -2s;
	animation-delay: -2s;
}

.box:nth-child(3) {
	-webkit-animation-delay: -3s;
	animation-delay: -3s;
}

@-webkit-keyframes move {
	0%,
	100% {
		-webkit-transform: none;
		transform: none;
	}
	12.5% {
		-webkit-transform: translate(40px, 0);
		transform: translate(40px, 0);
	}
	25% {
		-webkit-transform: translate(80px, 0);
		transform: translate(80px, 0);
	}
	37.5% {
		-webkit-transform: translate(80px, 40px);
		transform: translate(80px, 40px);
	}
	50% {
		-webkit-transform: translate(80px, 40px);
		transform: translate(80px, 40px);
	}
	62.5% {
		-webkit-transform: translate(30px, 60px);
		transform: translate(30px, 60px);
	}
	75% {
		-webkit-transform: translate(0, 80px);
		transform: translate(0, 40px);
	}
	87.5% {
		-webkit-transform: translate(0, 40px);
		transform: translate(0, 40px);
	}
}

@keyframes move {
	0%,
	100% {
		-webkit-transform: none;
		transform: none;
	}
	12.5% {
		-webkit-transform: translate(40px, 0);
		transform: translate(40px, 0);
	}
	25% {
		-webkit-transform: translate(80px, 0);
		transform: translate(80px, 0);
	}
	37.5% {
		-webkit-transform: translate(80px, 40px);
		transform: translate(80px, 40px);
	}
	50% {
		-webkit-transform: translate(80px, 80px);
		transform: translate(80px, 80px);
	}
	62.5% {
		-webkit-transform: translate(40px, 80px);
		transform: translate(40px, 80px);
	}
	75% {
		-webkit-transform: translate(0, 80px);
		transform: translate(0, 80px);
	}
	87.5% {
		-webkit-transform: translate(0, 40px);
		transform: translate(0, 40px);
	}
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

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


/*------------------------------------------------------------------ 
   Mobile NAv / main Nav header 
-------------------------------------------------------------------*/
.offcanvas-menu-wrapper { /*mobile menu header hide*/
	display: none;
}
.canvas-open { /*mobile side menu*/
	display: none;
}

.header-section.header-normal .menu-item {
	-webkit-box-shadow: 0px 12px 15px rgba(36, 11, 12, 0.05);
	box-shadow: 0px 12px 15px rgba(36, 11, 12, 0.05);
}

.top-nav {
	border-bottom: 1px solid #e5e5e5;
}
.top-nav .top-nav-hide{ /* for the hide when scroll */
	display: none;
}

.top-nav .tn-left li {
	list-style: none;
	display: inline-block;
	font-size: 16px;
	color: #19191a;
	font-weight: 500;
	padding: 6px 0 6px;
	margin-right: 64px;
	position: relative;
}
.top-nav .tn-left li:after {
	position: absolute;
	right: -32px;
	top: 0;
	width: 1px;
	height: 100%;
	background: #e5e5e5;
	content: "";
}
.top-nav .tn-left li:last-child {
	margin-right: 0;
}
.top-nav .tn-left li:last-child:after {
	display: none;
}
.top-nav .tn-left li i {
	color: var(--color-primary);
	margin-right: 4px;
}
.top-nav .tn-right {
	text-align: right;
}
.top-nav .tn-right .top-social {
	display: inline-block;
	margin-right: 35px;
	padding: 6px 0;
}
.top-nav .tn-right .top-social a {
	display: inline-block;
	font-size: 16px;
	color: #19191a;
	margin-left: 15px;
}
.top-nav .tn-right .bk-btn {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	padding: 9px 28px 9px;
	background: var(--color-primary);
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.top-nav .tn-right .language-option {
	display: inline-block;
	margin-left: 30px;
	cursor: pointer;
	padding: 6px 0px 6px;
	position: relative;
}
.top-nav .tn-right .language-option:hover .flag-dropdown {
	top: 40px;
	opacity: 1;
	visibility: visible;
}
.top-nav .tn-right .language-option img {
	height: 26px;
	width: 26px;
	border-radius: 50%;
	margin-right: 10px;
}
.top-nav .tn-right .language-option span {
	font-size: 16px;
	color: #19191a;
	text-transform: uppercase;
	font-weight: 500;
}
.top-nav .tn-right .language-option .flag-dropdown {
	position: absolute;
	left: 0;
	top: 60px;
	width: 100px;
	background: #ffffff;
	display: block;
	padding: 10px 15px;
	-webkit-box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
	box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 99;
}
.top-nav .tn-right .language-option .flag-dropdown ul li {
	list-style: none;
	text-align: left;
}
.top-nav .tn-right .language-option .flag-dropdown ul li a {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	color: #19191a;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.top-nav .tn-right .language-option .flag-dropdown ul li a:hover {
	color: var(--color-primary);
}
/*Second Nav header styles*/
.menu-item {
	/* position: relative; 
	z-index: 9;  */
	/********************/
	position: absolute;
	top: 39px;
    left: 0px;
    z-index: 20;
    background-position: left;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: auto 100%;
    width: 91%;
    margin: 0 5%;
    border-radius: 0 0 10px 10px;
	/********************/
}
.menu-item.fixed-menu { /*make main nav bar fixed when scrolling JS in main.js*/
    width: 100%;
	top: 0;
    position: fixed;
    box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    background: #fff;
    z-index: 20;
    margin: 0;
}
.menu-item .logo {
	padding: 5px 0;
}
.menu-item .logo a {
	display: inline-block;
}
.menu-item .nav-menu {
	text-align: right;
}
.menu-item .nav-menu .mainmenu {
	display: inline-block;
}
.menu-item .nav-menu .mainmenu li {
	list-style: none;
	display: inline-block;
	position: relative;
	z-index: 1;
}
.menu-item .nav-menu .mainmenu li.active a:after {
	opacity: 1;
}
.menu-item .nav-menu .mainmenu li:hover>a:after {
	opacity: 1;
}
.menu-item .nav-menu .mainmenu li:hover .dropdown {
	top: 77px;
	opacity: 1;
	visibility: visible;
}
.menu-item .nav-menu .mainmenu li a {
	font-size: 16px;
	color: #19191a;
	margin-right: 42px;
	font-weight: 500;
	display: inline-block;
	padding: 15px 0;
	position: relative;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.menu-item .nav-menu .mainmenu li a:after {
	position: absolute;
	left: 0;
	top: 45px;
	width: 100%;
	height: 3px;
	background: var(--color-primary);
	content: "";
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.menu-item .nav-menu .mainmenu li .dropdown {
	position: absolute;
	left: 0;
	top: 97px;
	width: 180px;
	background: #ffffff;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-box-shadow: 0px 9px 15px rgba(25, 25, 26, 0.05);
	box-shadow: 0px 9px 15px rgba(25, 25, 26, 0.05);
}
.menu-item .nav-menu .mainmenu li .dropdown li {
	list-style: none;
	display: block;
}
.menu-item .nav-menu .mainmenu li .dropdown li a {
	font-size: 16px;
	color: #19191a;
	display: block;
	text-align: left;
	padding: 8px 15px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.menu-item .nav-menu .mainmenu li .dropdown li a:hover {
	color: var(--color-primary);
}
.menu-item .nav-menu .mainmenu li .dropdown li a:after {
	display: none;
}
.menu-item .nav-menu .nav-right {
	display: inline-block;
	margin-left: 43px;
	padding: 15px 0px;
}
.menu-item .nav-menu .nav-right i {
	font-size: 16px;
	color: #19191a;
	cursor: pointer;
}


/*------------------------------------------------------------------ 
   Slider Styles -OwlCarousel
-------------------------------------------------------------------*/
.hero-section {
	position: relative;
	padding-top: 60px;
	padding-bottom: 100px;
}
.hero-section .container {
	position: relative;
	z-index: 5;
}
.hero-slider {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.hero-slider .owl-item::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #26282b;
    background: -moz-linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
    background: -webkit-linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
    background: linear-gradient(161deg, #26282b 0%, #26282b 49%, #9f8054 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#26282b",endColorstr="#9f8054",GradientType=1);
    opacity: 0.65;
}

.hero-slider.owl-carousel .owl-dots {
	position: absolute;
	left: 0;
	bottom: 58px;
	width: 100%;
	text-align: center;
}
.hero-slider.owl-carousel .owl-dots button {
	height: 6px;
	width: 6px;
	background: #ffffff;
	opacity: 0.5;
	border-radius: 50%;
	margin-right: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.hero-slider.owl-carousel .owl-dots button.active {
	width: 30px;
	border-radius: 50px;
	opacity: 1;
}
.hero-slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}
.hero-slider .owl-stage-outer, .hero-slider .owl-stage, .hero-slider .owl-item, .hero-slider .hs-item {
	height: 100%;
}

/*slider text column*/
.hero-text {
	padding-top: 80px;/* padding-top: 145px; */
}
.hero-text h1 {
	font-size: 80px;
	line-height: 90px;
	color: #ffffff;
	margin-bottom: 16px;
}
.hero-text p {
	font-size: 18px;
	color: #ffffff;
	line-height: 25px;
	margin-bottom: 20px;/* margin-bottom: 35px;   */
	font-weight: 100;
}
.hero-text p.slogan{
	margin-bottom: 4px;
}
.hero-text p i{
	margin-right: 7px;
	color: var(--color-primary);
}
.hero-text p span{
	color: var(--color-primary);
}
.hero-text div a.primary-btn{
	color: gainsboro;
}
.hero-text div a.primary-btn:hover{
	color: white;
	background-color: var(--color-primary);
	padding:3px 4px;
	border-radius: 7px
}
.hero-text div.hero-btn{
	margin-top: 14px;
}

/*------------------------------------------------------------------ 
   Hotel search form inside corousel
-------------------------------------------------------------------*/
.search-form {
	background: #ffffff;
	padding: 38px 40px 38px 40px;/* padding: 44px 40px 50px 40px;  */
	border-radius: 4px;
	margin-top: 40px;
}
.search-form h3 {
	color: #19191a;
	margin-bottom: 36px;
	text-shadow: 5px 5px 14px var(--color-primary);
	font-weight: 600;
}
.search-form form .search-box {
	position: relative;
	margin-bottom: 15px;
}
.search-form form .search-box label {
	font-size: 14px;
	color: #707079;
	display: block;
	margin-bottom: 10px;
	font-weight: 600;
}
.search-form form .search-box input {
	width: 100%;
	height: 40px;
	border: 1px solid #ebebeb;
	border-radius: 2px;
	font-size: 12px;
	color: #19191a;
	text-transform: uppercase;
	font-weight: 500;
	padding-left: 20px;
}
.search-form form .search-box i {
	color: var(--color-primary);
	position: absolute;
	right: 18px;
	bottom: 12px;
}
.search-form form button {
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	border: 1px solid var(--color-primary);
	border-radius: 2px;
	color: var(--color-primary);
	font-weight: 700;
	background: transparent;
	width: 100%;
	height: 46px;
	margin-top: 30px;
	letter-spacing: 3px;
}
.search-form form button:hover {
	color: #ebebeb;
	background-color: var(--color-primary);
}

/*------------------------------------------------------------------ 
   About Us section style
-------------------------------------------------------------------*/
.about-text {
	text-align: center;
	padding: 0 35px;
}
.about-text p {
	color: #595960;
	font-weight: 500;
}
.about-text p.f-para {
	margin-bottom: 10px;
}
.about-text p.f-para span, .about-text p.s-para span{
	color: var(--color-primary);
}
.about-text p.s-para {
	margin-bottom: 35px;
}
.about-text .about-btn {
	color: #19191a;
}
.about-text .about-btn:hover{
	color: white;
	background-color: var(--color-primary);
	padding:3px 4px;
	border-radius: 7px;
}
.about-pic img {
	min-width: 100%;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
	border-radius: 6px;
}


/*------------------------------------------------------------------ 
   Service section style
-------------------------------------------------------------------*/
.services-section {
	padding-bottom: 60px;
	background: #f9f9f9;
}
.services-section .section-title {
	margin-bottom: 36px;
}
.service-item {
	text-align: center;
	padding: 30px 35px 18px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.5s;
}
.service-item:hover {
	background-color: var(--color-primary);
	border-radius: 80px 80px 0 0;
}
.service-item:hover i {
	color: #ffffff;
}
.service-item:hover h4 {
	color: #ffffff;
}
.service-item:hover p {
	color: #ffffff;
}
.service-item i {
	display: inline-block;
	color: #dfa974;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.service-item h4 {
	color: #19191a;
	font-size: 22px;
	margin-bottom: 15px;
	margin-top: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.service-item p {
	color: #707079;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
	

/*------------------------------------------------------------------ 
   Blog & Event section
-------------------------------------------------------------------*/
.blog-section.blog-page {
	padding-top: 0;
	padding-bottom: 88px;
}
.blog-item {
	height: 450px;
	position: relative;
	margin-bottom: 30px;
	border-radius: 5px;
	box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.blog-item::after{
	content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #26282b;
    opacity: 0.25;
}
.blog-item:hover{
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.blog-item.small-size {
	height: 400px;
}
.blog-item .bi-text {
	position: absolute;
	left: 0;
	bottom: 25px;
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
}
.blog-item .bi-text .b-tag {
	display: inline-block;
	color: #ffffff;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: var(--color-primary);
	padding: 3px 10px;
	border-radius: 2px;
}
.blog-item .bi-text .Planned-tag {
	display: inline-block;
	color: #ffffff;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: rgb(25, 206, 25);
	padding: 3px 10px;
	border-radius: 2px;
	margin-left: 12px;
}
.blog-item .bi-text .done-tag {
	display: inline-block;
	color: #ffffff;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #d30a0a;
	padding: 3px 10px;
	border-radius: 2px;
	margin-left: 12px;
}
.blog-item .bi-text h4 {
	margin-top: 18px;
	margin-bottom: 18px;
}
.blog-item .bi-text h4 a {
	color: #ffffff;
}
.blog-item .bi-text .b-time {
	font-size: 12px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 3px;
}


/*------------------------------------------------------------------ 
   Testimonial section
-------------------------------------------------------------------*/
.testimonial-section {
	background: #f9f9f9;
}
.testimonial-section .section-title {
	margin-bottom: 30px;
}
.testimonial-slider.owl-carousel .owl-item img {
	width: auto;
	margin: 0 auto;
}
.testimonial-slider.owl-carousel .owl-nav button {
	height: 44px;
	width: 44px;
	border: 1px solid #ebebeb;
	font-size: 24px;
	color: #707079;
	background: #ffffff;
	line-height: 48px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	left: -190px;
	top: 50%;
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.testimonial-slider.owl-carousel .owl-nav button:hover {
	border-color: #19191a;
	color: #19191a;
}
.testimonial-slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -190px;
}
.testimonial-slider .ts-item {
	text-align: center;
}
.testimonial-slider .ts-item p {
	font-size: 20px;
	color: #707079;
	line-height: 30px;
	margin-bottom: 50px;
}
.testimonial-slider .ts-item .ti-author {
	margin-bottom: 15px;
}
.testimonial-slider .ts-item .ti-author .rating {
	display: inline-block;
}
.testimonial-slider .ts-item .ti-author .rating i {
	color: #f5b917;
	font-size: 16px;
}
.testimonial-slider .ts-item .ti-author h5 {
	font-size: 20px;
	color: #19191a;
	display: inline-block;
}



/*------------------------------------------------------------------ 
   Newsletter section
-------------------------------------------------------------------*/
#newsletter{
    width: 100%;
    padding: 100px 0;
}
#newsletter .newsletter-box{
    width: 100%;
    height: 300px;
    background: url(../img/newsletter.gif);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}
#newsletter .newsletter-box .item{
    align-self: center;
}
#newsletter .title .title-primary{
    color: var(--color-primary);
    /* font-family: var(--font-secondary); */
    position: relative;
    z-index: 2;
}
#newsletter .title .title-primary:before{
    content: '\f0e0';
    font-family: 'FontAwesome';
    position: absolute;
    top: 150%;
    left: 40%;
    transform: translate(-50%, -50%);
    font-size: 240px;
    color: #ffffff;
    opacity: 0.1;
    z-index: -1;
} 
#newsletter .title .title-secondary{
    font-weight: 700;
    color: #ffffff;
    z-index: -1;  
}  
#newsletter .newsletter-box .item input{
    margin: 0;
    padding: 23px;
    border-radius: 0;
    background-color: transparent;
    text-transform: capitalize;
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
} 
#newsletter .newsletter-box .item input::placeholder{
    color: #ffffff;
}
#newsletter .newsletter-box .item input:focus{
    box-shadow: none;
}
#newsletter .newsletter-box .item .btn-theme{
    margin: 0;
    padding: 15px;
    background-color: var(--color-primary);
    text-transform: capitalize;
    box-shadow: none;
    border-radius: 0;
} 


/*------------------------------------------------------------------ 
   Footer section
-------------------------------------------------------------------*/
footer{
    width: 100%;
    padding-top: 50px;
    background-color: #222222;
    color: #ffffff;
}
footer h4{
	color: #ffffff !important;
}
footer ul.social-icon{
    display: flex;
    list-style: none;
    padding: 0; 
    margin: 0;
}
footer ul.social-icon>li{
    margin: 0 5px;
}
footer ul.social-icon>li>a{
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #282828;
    text-align: center;
    color: #ffffff;
    line-height: 50px;
    transition: 0.5s ease;
}
footer ul.social-icon>li>a:hover{
    color: #ffffff;
    background-color: var(--color-primary);
}
footer ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
footer ul>li{
    margin: 5px 0;
}
footer ul>li>a{
    display: block;
    padding: 2px 0;
    font-weight: 300;
    font-size: 14px;
    color: #ffffff;
    transition: 0.5s ease;
}
footer ul>li>a:hover{
    opacity: 0.8;
    color: var(--color-primary);
}
footer .images img{
    width: 100%;
    margin: 5px;
}
footer .footer-copy-right{
    width: 100%;
    padding: 10px 0;
    background-color: #1B1B1B;
    margin-top: 50px;
}
footer .footer-copy-right .logo{
    font-weight: 400;
}
footer .footer-copy-right .logo span{
    font-weight: 400;
	color: var(--color-primary);
}
footer .footer-copy-right .item{
    align-self: center;
}
footer .footer-copy-right .item p{
    margin: 0 !important;
}







/*------------------------------------------------------------------ ----------------------*/
/*-------------------------------- Responsive Media Styles --------------------------------*/
/*------------------------------------------------------------------ ----------------------*/
@media only screen and (min-width: 1554px) and (max-width: 1920px) {

}
@media only screen and (min-width: 1200px) and (max-width: 1250px) {

}
@media only screen and (min-width: 1200px) {
	/*common*/
	.container {
		max-width: 1170px;
	}
	/*slider*/
	.hero-slider .hs-item{
	    height: 95vh;
	}
	.hero-slider .owl-item::after{
		height: 95vh;
	}
	.hero-slider.owl-carousel .owl-dots {
		bottom: 77px;
	}
	


}
/* Medium Device: 1200px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	/*About section*/
	.section-title h2 {
    	font-size: 38px;
	}
	/*Testimonial section*/
	.testimonial-slider.owl-carousel .owl-nav button {
		left: -150px;
	}
	.testimonial-slider.owl-carousel .owl-nav button.owl-next {
		right: -150px;
	}
}
@media only screen and (max-width: 991px) {

	.top-nav { /*avoid display top header*/
		display: none;
	}
	.menu-item .nav-menu {/*avoid display second nav header*/
		display: none;
	}

	/* Nav bar */	
	.menu-item{
		top: 0;
	}

	/*Mobile menu*/
	.offcanvas-menu-overlay {   /*  */
		position: fixed;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0.7);
		z-index: 98;
		height: 100%;
		width: 100%;
		visibility: hidden;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
	}
	.offcanvas-menu-overlay.active {
		visibility: visible;
	}
	.canvas-open { /*mobile view side panel open button*/
		position: fixed;
		right: 50px;
		top: 12px;
		font-size: 22px;
		width: 30px;
		height: 30px;
		color: #19191a;
		border: 1px solid #19191a;
		border-radius: 2px;
		line-height: 33px;
		text-align: center;
		z-index: 100;
		display: block;
		cursor: pointer;	
	}
	
	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		top: 0;
		width: 300px;
		z-index: 999;
		background: #ffffff;
		text-align: center;
		overflow-y: auto;
		height: 100%;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		padding: 80px 30px 30px 30px;
		display: block;
	}
	.offcanvas-menu-wrapper .canvas-close {
		height: 30px;
		width: 30px;
		border: 1px solid #19191a;
		border-radius: 50%;
		text-align: center;
		line-height: 30px;
		cursor: pointer;
		position: absolute;
		right: 30px;
		top: 30px;
		padding-right: 1px;
	}
	.offcanvas-menu-wrapper .search-icon {
		color: #19191a;
		text-align: center;
		cursor: pointer;
		margin-bottom: 10px;
	}
	.offcanvas-menu-wrapper .header-configure-area {
		margin-bottom: 30px;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option {
		display: inline-block;
		cursor: pointer;
		padding: 13px 0;
		position: relative;
		margin-bottom: 10px;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option:hover .flag-dropdown {
		top: 40px;
		opacity: 1;
		visibility: visible;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option img {
		height: 26px;
		width: 26px;
		border-radius: 50%;
		margin-right: 10px;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option span {
		font-size: 16px;
		color: #19191a;
		text-transform: uppercase;
		font-weight: 500;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown {
		position: absolute;
		left: 0;
		top: 60px;
		width: 100px;
		background: #ffffff;
		display: block;
		padding: 10px 15px;
		-webkit-box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
		box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
		z-index: 99;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li {
		list-style: none;
		text-align: left;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li a {
		font-size: 14px;
		text-transform: uppercase;
		font-weight: 500;
		color: #19191a;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	.offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li a:hover {
		color: var(--color-primary);
	}
	.offcanvas-menu-wrapper .header-configure-area .bk-btn {
		display: inline-block;
		font-size: 13px;
		font-weight: 700;
		padding: 16px 28px 15px;
		background: var(--color-primary);
		color: #ffffff;
		text-transform: uppercase;
		letter-spacing: 2px;
	}
	.offcanvas-menu-wrapper .mainmenu {
		display: none;
	}
	.offcanvas-menu-wrapper .slicknav_menu {
		background: transparent;
		padding: 0;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_btn {
		float: none;
		margin: 0 0 10px 0;
		display: none;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav {
		display: block !important;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul {
		margin: 0;
		text-align: left;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li .dropdown {
		padding-left: 20px;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a {
		margin: 0;
		padding: 10px;
		font-weight: 600;
		font-size: 14px;
		color: #19191a;
		border-bottom: 1px solid #e5e5e5;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a:hover {
		border-radius: 0;
		background: transparent;
		color: var(--color-primary);
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row a {
		border-bottom: 0;
		padding-left: 0;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row span {
		color: #19191a;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row:hover a {
		color: var(--color-primary);
	}
	.offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row:hover span {
		color: var(--color-primary);
	}
	.offcanvas-menu-wrapper .top-social {
		display: inline-block;
		margin-top: 30px;
		margin-bottom: 20px;
	}
	.offcanvas-menu-wrapper .top-social a {
		display: inline-block;
		font-size: 16px;
		color: #19191a;
		margin-right: 20px;
	}
	.offcanvas-menu-wrapper .top-social a:last-child {
		margin-right: 0;
	}
	.offcanvas-menu-wrapper .top-widget li {
		list-style: none;
		font-size: 16px;
		color: #19191a;
		font-weight: 500;
		line-height: 28px;
	}
	.offcanvas-menu-wrapper .top-widget li i {
		color: var(--color-primary);
		margin-right: 4px;
	}
	.offcanvas-menu-wrapper.show-offcanvas-menu-wrapper {
		left: 0;
		opacity: 1;
		visibility: visible;
	}

	/*slider*/
	.hero-text {
		margin-bottom: 40px;
	}
	.hero-slider.owl-carousel .owl-dots {
		bottom: 33px;
	}
	
	/*About us*/
	.about-text {
		margin-bottom: 30px;
	}
	.about-pic img {
		margin-bottom: 20px;
	}
	.section-title h2 {
    	font-size: 38px;
	}

	/*footer section*/
	footer div.heading{
		text-align: center;
	}
	footer div.heading ul{
		margin-bottom: 35px;
	}
	footer div.show_case{
		margin-top: 35px;
		text-align: center;
	}


}

/* Tablet Device: 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	/* Testimonial Slider */
	.testimonial-slider.owl-carousel .owl-nav button {
		left: -30px;
	}
	.testimonial-slider.owl-carousel .owl-nav button.owl-next {
		right: -30px;
	}
}
/* Large Mobile: 480px */
@media only screen and (max-width: 767px) {
	.about-text .section-title h2 {
		font-size: 30px;
		line-height: 40px;
	}
	/* Testimonial Slider */
	.testimonial-slider.owl-carousel .owl-nav {
		display: none;
	}
}
/* Small Mobile: 320px */
@media only screen and (max-width: 479px) {
	.canvas-open { /* nav bar */
		right: 30px;
	}
}













