/*------------------------------------------------------------------

Project:    cafe
Last change:    02/11/2020 [fixed Float bug, vf]
Assigned to:    Vitaly Friedman (vf), Sven Lennartz (sl)
Primary use:    Adventure tours website 

-------------------------------------------------------------------*/

/*------------------------------------------------------------------

							[Table of contents]

1. Default css
2. Button  
3. Preloader 
4. Animation
5. Background Shape Image css
6. Header
7. Slider-content
8. Heading-title
9. specialities
10. Our-items
11. testimonials
12. chef-section
13. email-subscription
14. Dowmload App
15. Preview page css

-------------------------------------------------------------------*/

/*------------------------ [Color codes] ------------------------
						

Background: #ffffff 
Content:    #999999 
Heading h2: #433a8b;
Header h1, h3, h4, h5, h6:  #000000  

a (standard):   #000000 
a (visited):    #34bf49 
a (hover):    #34bf49 
a (active): #34bf49

-------------------------------------------------------------------*/


/************************1. Default css***********************/

body {
	color: #999999;
	background-color: #ffffff;
	font: 400 14px/22px'Josefin Sans', sans-serif;
}
html {
	scroll-behavior: smooth;
}
h1,
h3,
h4,
h5,
h6 {
	color: #000000;
}
h1 {
	font-size: 60;
	line-height: 70px;
	font-weight: 700;
}
h2 {
	font-size: 48px;
	line-height: 60px;;
	color: #34bf49;
}
h3 {
	color: #000000;
	font-size: 30px;
}
h4 {
	color: #000000;
	font-size: 24px;
}
h5 {
	color: #000000;
	font-size: 20px;
}
h6 {
	color: #000000;
	font-size: 16px;
}
p {
	font-family: 'Josefin Sans', sans-serif;
	color: #999999;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-rendering: optimizeLegibility;
}
a {
	color: #999999;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	text-decoration: none !important;
	font-family: 'Josefin Sans', sans-serif;
	outline: none;
}
img {
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-ms-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	display: inline-block !important;
}
ul {
	margin-bottom: 0px;
}
li {
	list-style: none;
}
a:hover{
	color: #433a8b;
	cursor: pointer;
}
span {
	color: #222d39;
	font-size: 14px;
}
#wrap {
	overflow: hidden;
	position: relative;
}

.form-control:focus {
	border: none;
	outline: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.sticky {
	position: fixed;
	top: 0;
	width: 100%
}
/************************ 2. Button ***********************/
.btn {
	background: #34bf49;
	display: inline-block;
	font-size: 16px;
	text-transform: capitalize;
	padding: 10px 30px;
	font-weight: normal;
	border-radius: 0px;
	color: #fff;
	position: relative;
	overflow: hidden;
	border: none;
	font-family: "Josefin Sans";
	text-align: center;
	opacity: 1;
	-webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
	z-index: 1;
	position: relative;
}
.btn:before {
    top: 0;
    height: 100%;
    width: 0%;
    left: auto;
    right: 0;
    z-index: -1;
    content: "";
    position: absolute;
    transition: 0.5s all ease-in-out;
    background-color: #58ee6e;
}
.btn:hover:before {
    width: 100%;
    right: auto;
    left: 0;
}
.btn.focus, .btn:focus{
	
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.btn-primary:hover
{
	
	color: #000;
    background-color: #58ee6e;
    border-color: #58ee6e;
}

/************************ 3. Preloader ***********************/
.preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    background: #34bf49;
    z-index: 800;
    text-align: center;
    overflow: hidden;
    display: flex;
}
.preloader svg {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    filter: drop-shadow(2px 4px 6px black);
    fill: #fff;
}
svg #cap {
    transform-origin: center;
    animation: capAnimation 1s ease-in-out infinite
}
@keyframes capAnimation {
    0% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(5deg);
    }
}

/************************ 4. Animation ***********************/
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(10deg);
    }
}

@keyframes tesiMove {
    0% {
        transform: rotate(0deg); }
    15% {
        transform: rotate(2deg); }
    33% {
        transform: rotate(4deg); }
    66% {
        transform: rotate(2deg); }
    100% {
        transform: rotate(0deg); }
}


@keyframes scrolltop {
	0% {
		box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
	}
	100% {
		box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
	}
}
@-webkit-keyframes scrolltop {

	0% {
		-webkit-box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
		box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
	}
	100% {
		-webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
		box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
	}
}
@-o-keyframes scrolltop {
    0% {
		-webkit-box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
		box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
	}
	100% {
		-webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
		box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
	}
}
@keyframes scrolltop {
	0% {
		-webkit-box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
		box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
	}
	100% {
		-webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
		box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
	}
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}
/************************ 5. Background Shape Image css ***********************/
.shape-image-one img
{
	position: absolute;
    left: 10%;
}
.shape-image-two img{
	position: absolute;
    right: 0;
    top: -27%;
}
.shape-image-three img{
    position: absolute;
    left: 0;
    top: -30%;
}
 .shape-image-four img {
    position: absolute;
    left: 10%;
    top: 22%;
}
/************************ 6. Header ***********************/
.header {
	padding: 30px 0;
	width: 100%;
	background-color: #ffffff;
	position: absolute;
	z-index: 99;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.header.sticky {
	padding: 15px 0;
	position: fixed;
	top: 0;
	background-color: #ffffff;
	-webkit-box-shadow: 3px 3px 25px 0px rgba(1, 2, 2, 0.06);
	-moz-box-shadow: 3px 3px 25px 0px rgba(1, 2, 2, 0.06);
	box-shadow: 3px 3px 25px 0px rgba(1, 2, 2, 0.06);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	-webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}
.header .logo {
	float: left;
}
.tr-nav-item .nav-link {
	padding: 0!important;
	margin: 0 30px;
	color: #999999;
	font-weight: 600;
	font-size: 18px;
	position: relative;
}
.tr-nav-item .nav-link:after {
	position: absolute;
	left: 0px;
	bottom: -15px;
	height: 5px;
	width: 0;
	background: #34bf49;
	content: "";
	opacity: 0;
	border-radius: 16px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.tr-nav-item .nav-link.active:after,
.tr-nav-item .nav-link:hover:after {
	width: 40px;
	opacity: 1;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.tr-nav-item .nav-link:hover {
	color: #34bf49;
}
.tr-nabar-collapse .navbar-nav {
	align-self: baseline;
	margin-left: 45px;
}

.header-search i
{
	color: #34bf49;
	font-size: 18px;
	display: inline;
}
.header-search i:hover
{
	cursor: pointer;
}
.header-search .header-input
{
	display: none;
}
.header-input
{
	display: inline;
    width: auto;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid #34bf49;
    border-radius: unset;
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: -19px;
    height: 22px;
}
.header-input:focus
{
	border-bottom: 1px solid #34bf49;
}
.close-icon
{
	display: none;
}


/************************ 7. slider content ***********************/
.home-slider {
    background-image: url(../images/background-shape/bg-shape1.png);
    background-size: cover;
    background-repeat: no-repeat;
  	padding: 400px 0 160px 0;
    position: relative; 
}
.slider-obutton ,.slider-pbutton ,.play-button ,.slider-pbutton p{
    display: inline-block;;
}
.slider-obutton .btn
{
	padding: 15px 40px;
    font-size: 18px;
}
.slider-content span
{
	font-size: 24px;
	line-height: 46px;
	color: #222d39;
	font-weight: 400;
	font-family: "Josefin Sans";
	margin-bottom: 16px;
    display: inline-block;
}
.slider-content h1
{
	color: #464952;
	font-weight: 700;
	font-family: "Josefin Sans";
	font-size: 60px;
	line-height: 70px;
}
.slider-content p
{
	width: 602px;
	font-size: 18px;
	line-height: 24px;
	color: #999999;
	font-weight: 400;
	font-family: "Josefin Sans";
}
.slider-video-section
{
	margin-top: 125px;
}
.play-button
{
	width: 50px;
    height: 50px;
    border-radius: 25px;
    filter: drop-shadow(4.95px 4.95px 28.5px rgba(103,114,148,0.31));
    background-color: #fafafb;
    line-height: 50px;
    text-align: center;
    transition: transform .2s;
}
.play-button:hover {
  transform: scale(1.2);
}
.slider-pbutton p
{
	font-size: 18px;
	line-height: 46px;
	color: #464952;
	font-weight: 400;
	font-family: "Josefin Sans";
}
.slider-pbutton
{
	padding-left: 100px;
}
.close i
{
	float: right;
    margin: 10px 10px 0;
    color: #ffffff;
}
.modal-content
{
	background-color: transparent;
	border: none;
    position: relative;
}
.modal-content button
{
	position: absolute;
    right: 4%;
    z-index: 100;
    top: 2%;
}
.modal-body iframe
{
	margin: 0 auto;
    display: block;
}
.modal-body video
{
	margin: 0 auto;
    display: block;
    height: 100%;
}
.modal-content button:focus
{
	outline: none;
}

.home-slider-image
{
	position: absolute;
    right: 2%;
    top: 15%;
}
.home-slider-image img
{
	animation: rotate 4s alternate infinite linear both;
	box-shadow: 10px 10px 57px 0px rgba(103, 114, 148, 0.2);
    text-shadow: 10px 10px 57px rgba(103, 114, 148, 0.2);
    border-radius: 100%;
}

/************************ 8. Heading-title ***********************/
.specialities-top h2 {
	font-size: 48px;
	line-height: 70px;
	color: #34bf49;
	font-weight: 700;
	font-family: "Josefin Sans";
	text-align: center;
}
.specialities-top p {
    width: 610px;
    font-size: 20px;
    line-height: 30px;
    color: #999999;
    font-weight: 400;
    font-family: "Josefin Sans";
    text-align: center;
    margin: 0 auto;
    padding: 30px 0 100px;
}

/*********************** 9. specialities ********************/
.specialities {
    background-image: url(../images/background-shape/bg-shape2.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 300px;
    margin-top: 144px;
    background-position: 0px -100px;
}
.specialities-image {
	cursor: pointer;
    overflow: hidden;
    box-shadow: 10px 10px 57px 0px rgba(103, 114, 148, 0.2);
	text-shadow: 10px 10px 57px rgba(103, 114, 148, 0.2);
	position: relative;
}
.specialities-image img{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	width: 100%;
}
.specialities-image:hover img {
	-webkit-transform: scale(1.07);
	-moz-transform: scale(1.07);
	-ms-transform: scale(1.07);
	-o-transform: scale(1.07);
	transform: scale(1.07); 
	-webkit-transition: all 0.4s ease-in-out; 
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.specialities-image::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(52, 191, 73, 0.5) 0%, rgba(52, 191, 73, 0.5) 100%);
	background: linear-gradient(to right, rgba(52, 191, 73, 0.5) 0%, rgba(52, 191, 73, 0.5) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
	transition: all 0.4s ease-in-out;
}
.specialities-image:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
	    z-index: 1;

}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.specialities-section{
	padding-bottom:87px;
}
.specialities-column{
	padding-top: 80px !important;
}
.specialities-middle{
	padding-left: 100px !important;
}

.specialities-column h3{
	width: 400px;
	font-size: 30px;
	line-height: 40px;
	color: #464952;
	font-weight: 700;
	font-family: "Josefin Sans";
}
.specialities-column p{
	width: 500px;
	font-size: 18px;
	line-height: 24px;
	color: #999999;
	font-weight: 400;
	font-family: "Josefin Sans";
	margin-top: 30px;
}
/*********************** 10. Our_items ********************/

.our-item-section {
    margin-top: -265px;
    padding-bottom: 130px;
}
.our-item-tab.nav-tabs{
    border-bottom: none;
    display: block;
}
.our-item-tab.nav-tabs .nav-link:focus, .our-item-tab.nav-tabs .nav-link:hover
{
	border: none;
}
.our-item-tab.nav-tabs .nav-item:focus{
	outline: none;
}
.our-item-tab.nav-tabs .nav-item{
	margin-bottom: 39px;
}
.our-item-tab.nav-tabs .nav-item:last-child{
	margin-bottom: 0;
}
.our-item-tab.nav-tabs li a.active{
	color: #34bf49;
	background-color: #ffffff;
	border: none;
}
.our-item-tab.nav-tabs li a{
	font-size: 22px;
	line-height: 40px;
	color: #545760;
	font-weight: 600;
	font-family: "Josefin Sans";
	background-color: #f1f1f1;
	filter: drop-shadow(9.899px 9.899px 34.5px rgba(103,114,148,0.1));
	border: none;
	padding: 0;
	padding-left: 24px;
    height: 70px;
    width: 300px;
    line-height: 70px;
}
.our-item-tab li a.active::after {
	content: "\f107";
}
.our-item-tab li a::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 30px;
}
.tab-content>.tab-pane {
    display: inherit !important;
    opacity: 0;
    visibility: hidden;
    height: 0;
}
.tab-content>.tab-pane.active {
    display: block !important;
    opacity: 1;
    height: 100%;
    visibility: visible;
}
.our-item-section .bx-controls.bx-has-controls-direction {
    position: absolute;
    top: 0;
    right: 0;
} 
.our-item-section .bx-default-pager
{
	display: none;
}
.our-item-section .bx-controls-direction a
{
	line-height: 48px;
    background-color: #fff;
    text-align: center;
    color: #34bf49;
    border: 2px solid #34bf49;
    height: 50px;
    width: 50px;
    display: inline-block;
    font-size: 20px;
}
.our-item-section .bx-controls-direction .bx-prev {
    margin-right: 48px;
}
.our-item-section .bx-controls-direction a:hover
{
    background-color: #34bf49;
    color: #fff;
    border: 2px solid #34bf49;
}
.our-item h3{
	width: 500px;
	height: 70px;
	font-size: 24px;
	line-height: 36px;
	color: #464952;
	font-weight: 700;
	font-family: "Josefin Sans";
}
.our-item .item_order {
    margin: 39px 0;
}
.our-item p{
	width: 500px;
	font-size: 14px;
	line-height: 20px;
	color: #999999;
	font-weight: 400;
	font-family: "Josefin Sans";
	display: inline-block;
}
.our-item .our-item-button{
	display: inline-block;
	vertical-align: top;
	float: right;
}
.our-item .our-item-button .btn{
	padding: 15px 40px;   
	font-size: 18px;
}
.our-item .our-item-image{
	position: relative;
}
.our-item .our-item-image img{
	width: 100%;
}
.our-item .item-price {
    font-size: 36px;
    line-height: 70px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    width: 100px;
    height: 70px;
    background-color: rgba(52,191,73,0.8);
    position: absolute;
    bottom: 0;
}

/*********************** 11. testimonials ********************/

.testimonials
{
	background-image: url(../images/background-shape/bg-shape3.png);
    background-repeat: no-repeat;
    background-position: center;
	padding-bottom: 130px;
	background-size: cover;
    background-position: 0 -50px;
}
.bx-viewport {
    height: 100% !important;
}
#testimonials-slider-pager {
    border-style: solid;
    border-width: 1px;
    position: relative;
    animation-name: tesiMove; 
    animation-duration: 8s; 
    animation-timing-function: linear; 
    animation-iteration-count: infinite; 
    transition: all .4s ease;
    transform-origin: center center;
    width: 447px;
    height: 447px;
    border-radius: 223px;
    background-color: #ffffff;
    border: 1px solid #34bf49;
}

#testimonials-slider-pager:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 174px;
    height: 174px;
    border-radius: 50%;
}
#testimonials-slider-pager .testimonials-slider-pager-one .pager-item {
    width: 71px;
    height: 71px;
    display: inline-block;
    vertical-align: middle;
    position: absolute; 
}
#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(1) {
    top: -20px;
    left: 100px;
}
#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(2) {
    top: 126px;
    right: -20px;
}
#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(3) {
    bottom: 8px;
    left: 65px;
}
#testimonials-slider-pager .testimonials-slider-pager-one .pager-item > img,#testimonials-slider-pager .testimonials-slider-pager-two .pager-item > img {
    width: 100%;
    border-radius: 50%;
    transition: all .4s ease;
}
.testimonials-slider-pager-two
{
	border-style: solid;
	animation-name: tesiMove; 
	animation-duration: 8s;
	animation-timing-function: linear; 
	animation-iteration-count: infinite; 
	transition: all .4s ease; 
	transform-origin: center center; 
	margin: 0 auto;
	vertical-align: middle;
	width: 323px;
	height: 323px;
	border-radius: 161px;
	background-color: #ffffff;
	border: 1px solid #34bf49;
	position: relative;
	top: 14%;
}
#testimonials-slider-pager .testimonials-slider-pager-two .pager-item {
    width: 71px;
    height: 71px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
}
#testimonials-slider-pager .testimonials-slider-pager-two .pager-item:nth-child(1) {
    top: -13px;
    right: 56px;
}
#testimonials-slider-pager .testimonials-slider-pager-two .pager-item:nth-child(2) {
    bottom: 20px;
    right: 10px;
}
#testimonials-slider-pager .testimonials-slider-pager-two .pager-item:nth-child(3) {
    bottom: 106px;
    left: -29px;
}
#testimonials-slider-pager .testimonials-slider-pager-three .pager-item {
    width: 163px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all .4s ease;
}
#testimonials-slider-pager .testimonials-slider-pager-three .pager-item.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.95);
}
#testimonials-slider-pager .testimonials-slider-pager-three .pager-item > img {
    width: 100%;
    border-radius: 50%; 
}
.quote-image {
    margin-bottom: 30px;
}
.single-testi-one p{
  	width: 569px;
	font-size: 16px;
	line-height: 24px;
	color: #999999;
	font-weight: 400;
	font-family: "Josefin Sans";
}
.single-testi-one h3{
  	font-size: 20px;
	line-height: 30px;
	color: #464952;
	font-weight: 700;
	font-family: "Josefin Sans";
	margin-top: 103px;
}
.single-testi-one span{
  	font-size: 16px;
	line-height: 36px;
	color: #9a9a9a;
	font-weight: 400;
	font-family: "Josefin Sans";
}
/*********************** 12. chef section ********************/

.chef-section{
	background-image: url(../images/background-shape/bg-shape4.png);
    background-size: cover;
    background-repeat: no-repeat;
	padding-bottom:120px;
}
.chef-image img {
    box-shadow: 10px 10px 57px 0px rgba(103, 114, 148, 0.2);
    text-shadow: 10px 10px 57px rgba(103, 114, 148, 0.2);
    width: 100%;
}
.chef-content h3{ 
	font-size: 30px;
    line-height: 40px;
    color: #464952;
    font-weight: 700;
    font-family: "Josefin Sans";
    padding: 16px 0 30px;
}
.chef-content p{
	width: 657px;
	font-size: 16px;
	line-height: 24px;
	color: #999999;
	font-weight: 400;
	font-family: "Josefin Sans";
}
.chef-name{
	font-size: 20px;
	color: #34bf49;
	font-weight: 700;
	font-family: "Josefin Sans";
	margin: 80px 0 10px;
}
.chef-content span{
	font-size: 16px;
	line-height: 36px;
	color: #9a9a9a;
	font-weight: 400;
	font-family: "Josefin Sans";
}
.social-share {
    margin-top: 40px;
}
.social-share i{
	font-size: 18px;
	line-height: 28px;
	color: #9a9a9a;
	font-weight: 400;
	text-align: left;
}
.social-share a:hover i{
	color: #34bf49;
}
.chef-section .bx-controls.bx-has-controls-direction {
    position: absolute;
    bottom: 0;
    right: 0;
} 
.chef-section .bx-controls-direction a
{
	line-height: 48px;
    background-color: #fff;
    text-align: center;
    color: #34bf49;
    border: 2px solid #34bf49;
    height: 50px;
    width: 50px;
    display: inline-block;
    font-size: 20px;
}
.chef-section .bx-controls-direction .bx-prev {
    margin-right: 48px;
}
.chef-section .bx-controls-direction a:hover{
    background-color: #34bf49;
    color: #fff;
    border: 2px solid #34bf49;
}
.chef-slider-inner{
  	overflow: hidden;
}
/*********************** 13. email-subscription ********************/
.email-subscription{
 	background-image: url(../images/background-shape/bg-shape5.jpg);
    background-size: cover;
    background-repeat: no-repeat;
	padding: 130px 0;
}
.email-subscription:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
}
.email-subscription p{
 	width: 770px;
}
.email-form .form-control{
 	font-size: 18px;
	color: #9a9a9a;
	font-weight: 400;
	font-family: "Josefin Sans";
    padding: 0 100px 0 50px;
    height: 60px;
    border: none!important;
    -webkit-box-shadow: 3px 3px 24px 0px rgba(1, 2, 2, 0.02);
    -moz-box-shadow: 3px 3px 24px 0px rgba(1, 2, 2, 0.02);
    box-shadow: 3px 3px 24px 0px rgba(1, 2, 2, 0.02);
    border-radius: 0;

}
.email-form .email-form-button{
 	position: absolute;
    right: 0;
    top: 0;
    min-width: 128px;
    padding: 16px 0;
    font-size: 16px;
    color: #fafafb;
    font-weight: 600;
    font-family: "Josefin Sans";
    text-align: center;
    line-height: 28px;
}
/*********************** 14. Dowmload App ********************/
.download-app-section{
 	background-image: url(../images/background-shape/bg-shape6.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	padding: 130px 0;
}
.download-app-section .btn{
    font-size: 18px;
    padding: 14px 40px;
}
/*********************** 15. Footer ********************/
.footer-bottom{
    background-image: url(../images/footer-images/footer-back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0 43px;
}
.footer-bottom:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,.9);
}
.footer-icon a i{
	color: #464952;
    border: 2px solid #464952;
    height: 52px;
    width: 52px;
    line-height: 48px;
    text-align: center;
    border-radius: 50px;
    font-size: 25px;
}
.footer-icon a:hover i{
	background: #464952;
	color: #fff;
}
.footer-menu li {
	display: inline-block;
}
.footer-menu li a{
	height: 24px;
	font-size: 18px;
	color: #ffffff;
	font-weight: 600;
	font-family: "Josefin Sans";
	text-align: left;
}
.footer-menu li a:hover{
	color:#34bf49;
}
.footer-logo {
    padding: 109px 0;
}
.footer-copylink{
	padding-top: 40px;
}
.footer-copylink span{
	font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Josefin Sans";
    text-align: center;
}
.scroll-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #fff;
    color: #34bf49;
    cursor: pointer;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    -webkit-animation: scrolltop 2s infinite;
    -moz-animation: scrolltop 2s infinite;
    -ms-animation: scrolltop 2s infinite;
    -o-animation: scrolltop 2s infinite;
    animation: scrolltop 2s infinite;
    border: 3px solid #34bf49;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 47px;
}
.scroll-top:hover {
  background-color: #34bf49;
  color: #ffffff;
}
/*********************** 16. Preview Page CSS ********************/

.preview_slider
{
	background-image: url(../preview_img/preview-slider.png);
    background-size: cover;
    background-repeat: no-repeat;
  	padding:130px 0;
    position: relative; 
}
.preview_slider:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
}
.preview_logo {
    padding-bottom: 49px;
}
.preview_text p
{
font-size: 24px;
line-height: 36px;
color: #ffffff;
font-weight: 400;
font-family: "Josefin Sans";
text-align: center;
margin:0 auto;
}

.preview_title h2
{
	font-size: 36px;
    color: #34bf49;
    font-weight: 700;
    font-family: "Josefin Sans";
    text-align: center;
    line-height: 46px;
    margin-bottom: 5px;
}
.preview_center
{
	padding: 50px 0;
}

.preview_image {
    padding: 50px 0 25px;
    position: relative;
    display: inline-block;
}

.preview_image:hover:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    bottom: 25px;
    background: rgba(0,0,0,.8);
}
.view_demo_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    color: #33be53;
    font-size: 25px;
    text-decoration: underline !important;
    text-align: center;

}
.view_demo_btn:hover
{
	color: #fff;
}
.preview_image:hover .view_demo_btn {
    opacity: 1;
    visibility: visible;
}



.preview_image img
{
	box-shadow: 0px 10px 505px 0px rgba(3, 2, 3, 0.07);
    text-shadow: 0px 10px 505px rgba(3, 2, 3, 0.07);
}
.version
{
	font-size: 18px;
	line-height: 28px;
	color: #464952;
	font-weight: 400;
	font-family: "Josefin Sans";
	text-align: center;
	margin-bottom: 81px;
}

.feature-section
{
	padding-top: 55px;
}
.feature-section .feature
{
	font-size: 18px;
	line-height: 38px;
	color: #464952;
	font-weight: 400;
	font-family: "Josefin Sans";
}
.feature-section .feature:hover{
	color: #34bf49;
}
i.far.fa-check-circle {
    vertical-align: text-top;
}
.preview-footer
{
	background-color: #34bf49;
}
.preview-footer .copyright
{
	font-size: 18px;
    line-height: normal;
    color: #ffffff;
    font-weight: 600;
    font-family: "Josefin Sans";
    text-align: center;
    padding: 19px 0;
}
