/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : ULaunch - Multi Purpose Products Landing Page
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. General css
02. Navigation area css
03. Slider area css
04. About Product area css
05. Services area css
06. Features area css
07. FAQs area css
08. Why choose use area css
09. Testimonials area css
10. Contact us area css
11. Footer area css
12. Media Screens
-------------------------------------------------------------------------------------- */

/************************************/
/***** 	   01. General css		 ****/
/************************************/

body{
	font-size: 16px;
	font-family: 'Montserrat', sans-serif;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-family: 'Signika', sans-serif;
	margin-top:0;
	font-weight: 700;
}

img{
	max-width: 100%;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	background: #f7a401;
	z-index: 9999;
}

.loader{
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	border: 4px solid #Fff;
	top: calc(50% - 15px);
	animation: loader 2s infinite ease;
}

.loader-inner{
	vertical-align: top;
	display: inline-block;
	width: 100%;
	background-color: #fff;
	animation: loader-inner 2s infinite ease-in;
}

.btn-custom{
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 30px;
	text-align: center;
	color: #ff2938;
	background: #fff;
	border: 2px solid #fff;
	border-radius: 26px;
	transition: all 0.3s;
}

.btn-custom:hover{
	background: none;
	color: #fff;
}

/************************************/
/***** 02. Navigation area css  *****/
/************************************/

nav.navbar.bootsnav{
	background: none !important;
	z-index: 60;
	border-bottom: 1px solid transparent;
}

nav.navbar.bootsnav .navbar-nav{
	padding-top: 30px;
	transition: all 0.3s ease-in-out;
}

.navbar-brand{
	height: auto;
	padding: 0px 15px;
	transition: all 0.3s ease-in-out;
}

.navbar-right{
	margin-right: 0;
}

nav.navbar.bootsnav ul.nav > li{
	padding: 0 2px;
}

nav.navbar.bootsnav ul.nav > li > a{
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
	padding: 10px 20px;
	line-height: 1em;
	border-radius: 40px;
	letter-spacing: 0.05em;
	transition: all 0.3s ease-in-out;
}

nav.navbar.bootsnav ul.nav > li > a:hover{
	background: rgba(255,255,255,0.2) !important;
    color: #333c4e !important;
}

nav.navbar.bootsnav ul.nav > li.active > a{
	background: rgba(255,255,255,0.2) !important;
    color: #333c4e !important;
}


nav.navbar.bootsnav.sticky-header{
	background: #fff !important;
	transition: all 0.3s ease-out;
	
	border-bottom:1px solid rgba(0,0,0,0.05);
}

nav.navbar.bootsnav.sticky-header .navbar-brand{
	padding-top: 0px;
	padding-bottom: 0px;
}
nav.navbar.bootsnav.sticky-header .navbar-brand img{
	
	height: 72px;
}
nav.navbar.bootsnav.sticky-header .navbar-nav{
	padding-top: 20px;
}
nav.navbar.bootsnav.sticky-header ul.nav > li > a
{
	color:#333c4e !important;
}
nav.navbar.bootsnav.sticky-header ul.nav > li > a:hover{
	background: rgba(247,164,1,0.2) !important;
}
nav.navbar.bootsnav ul.nav > li.active > a
{
	background: rgba(247,164,1,0.2) !important;
}
/************************************/
/*****   03. Slider area css    *****/
/************************************/

.banner{
	position: relative;
	top: 0px;
	left: 0;
	width: 100%;
	background: url(../images/orginal-raw-honey.jpg) no-repeat bottom left;
	background-size: auto 100%;
	padding: 200px 0 100px;
}

.banner:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(247,164,1,0.8);
}

.banner .row{
	position: relative;
	z-index: 1;
}

.header-social{
	width: 30px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
}

.header-social-link{
	position: absolute;
	top: 22%;
	width: 100%;
}

.header-social-link:before{
	content: '';
	display: block;
	width: 1px;
	height: 200%;
	top: -210%;
	position: absolute;
	left: 15px;
	background: #fff;
}

.header-social-link:after{
	content: '';
	display: block;
	width: 1px;
	height: 300%;
	bottom: -310%;
	position: absolute;
	left: 15px;
	background: #fff;
}

.header-social-link a{
	display: block;
	text-align: center;
	color: #fff;
	padding: 4px 0;
}

.header-content h2{
	color: #f8b634;
	font-size: 50px;
	margin-bottom: 20px;
	line-height: 1.4em;
}

.header-content h2 span{
	background: #fff;
	padding: 0 10px;
}

.header-content p{
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5em;
}

.btn-shopnow{
	display: inline-block;
	background: #fff;
	color: #f7a401;
	font-size: 14px;
	letter-spacing: 0.25em;
	font-weight: 500;
	text-transform: uppercase;
	padding: 12px 24px;
	margin-top: 10px;
	transition: all 0.3s;
}

.btn-shopnow:hover{
	background: #000;
	color: #fff;
}

.header-image{
	text-align: center;
}

/*******************************************/
/*****   04. About Product area css    *****/
/*******************************************/

.about-product{
	padding: 80px 0;
}

.section-title{
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2{
	font-size: 50px;
	color: #242424;
	line-height: 1.4em;
}

.section-title h2 span{
	position: relative;
	z-index: 1;
}

.section-title h2 span:before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 13px;
	height: 8px;
	background: #ffc600;
	z-index: -1;
}

.section-title p{
	font-size: 12px;
	line-height: 1.8em;
	color: #7c7c7c;
}

.about-product .section-title{
	text-align: left;
}

.about-entry{
	padding-top: 20px;
}

.about-entry p{
	font-size: 14px;
	color: #b8b6b6;
	line-height: 1.8em;
	margin-bottom: 1.5em;
}

.about-feature{
	margin-top: 60px;
}

.about-feature-single{
	text-align: center;
}

.about-feature-single .icon-box{
	display: block;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin: 10px auto 0;
	background: #f7a401;
	position: relative;
}

.about-feature-single .icon-box i{
	font-size: 66px;
	color: #160f00;
	position: absolute;
	top: -24px;
	left: 10px;
}

.about-feature-single h3{
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: #242424;
	font-weight: 600;
	margin-top: 10px;
	line-height: 1.4em;
}

/**************************************/
/*****   05. Services area css    *****/
/**************************************/

.services{
	background: #f4f2f2;
	padding: 80px 0;
	position: relative;
}

.services:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../images/service-left.png) no-repeat left bottom, url(../images/service-right.png) no-repeat right bottom;
	background-size: 320px auto, 280px auto;
}

.services-container{
	max-width: 750px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.service-single{
	text-align: center;
	margin-bottom: 40px;
}

.service-single .icon-box{
	display: block;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	margin: 12px auto 0;
	background: #f7a401;
	position: relative;
}

.service-single .icon-box i{
	font-size: 110px;
	color: #160f00;
	position: absolute;
	top: -34px;
	left: 18px;
}

.service-single h3{
	margin: 20px 0;
	font-size: 26px;
	color: #242424;
	font-weight:600;
}

.service-single p{
	font-size: 12px;
	color: #7c7c7c;
	line-height: 1.8em;
}

/**************************************/
/*****   06. Features area css    *****/
/**************************************/

.features{
	padding: 80px 0;
}

.feature-single{
	border-bottom: 1px solid #f4f2f2;
	padding: 60px 0;
}

.feature-single:last-child{
	border: none;
	padding-bottom: 0;
}

.feature-entry{
	padding-top: 20px;
}

.feature-entry h3{
	color: #f7a401;
	font-size: 30px;
	font-weight: 600;
}

.feature-entry h4{
	color: #242424;
	font-size: 20px;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 20px;
}

.feature-entry p{
	color: #aba9a9;
	font-size: 14px;
	line-height: 1.8em;
	margin-bottom: 1.5em;
}

.feature-entry h5{
	color: #f7a401;
	font-size: 18px;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
}

.feature-image{
	text-align: center;
}

.feature-image img{
	border-radius: 50%;
}

/**************************************/
/*****     07. FAQs area css      *****/
/**************************************/

.faqs{
	background: #f4f2f2;
	padding: 80px 0;
}

.faq-container{
	max-width: 940px;
	margin: 0 auto;
}

.faq-category h3{
	font-size: 30px;
	color: #f7a401;
	font-weight: 600;
}

.faq-single{
	border-bottom: 1px solid #fff;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.faq-single .panel{
	margin-top: 0;
	box-shadow: none;
	background: none;
}

.faq-single .panel-heading{
	padding: 0;
}

.faq-single .panel-heading a{
	display: block;
	padding: 10px 0;
	font-size: 20px;
	color: #242424;
	font-weight: 600;
}

.faq-single .panel-body{
	padding: 20px;
	border: none !important;
	background: #fff;
}

.faq-single .panel-body p{
	font-size: 12px;
	line-height: 1.8em;
	color: #6b6a6a;
}

.faq-last{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

/*****************************************/
/*****  08. Why choose use area css  *****/
/*****************************************/

.why-choose{
	background: url(../images/orginal_raw_honey_for_sales.jpg) no-repeat right center;
	background-size: auto 100%;
	padding: 80px 0;
	position: relative;
}

.why-choose:before{
	content: '';
	display: block;
	position: absolute;
	width: 50%;
	top: 0;
	left: 0;
	bottom: 0;
	background: #f7a401;
}

.why-choose-container{
	background: #fff;
	padding: 40px 60px;
}

.why-choose-single{
	text-align: center;
}

.why-choose-single .icon-box{
	display: block;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin: 10px auto 0;
	background: #f7a401;
	position: relative;
}

.why-choose-single .icon-box i{
	font-size: 66px;
	color: #160f00;
	position: absolute;
	top: -24px;
	left: 10px;
}

.why-choose-single h3{
	font-size: 16px;
	color: #242424;
	font-weight: 600;
	margin-top: 16px;
}

.why-choose-single p{
	font-size: 12px;
	color: #bbb7b7;
	line-height: 1.5em;
}

/*****************************************/
/*****   09. Testimonials area css   *****/
/*****************************************/

.testimonials{
	padding: 80px 0;
	background: #f4f2f2;
}

.testimonial-single{
	background: #fff;
	padding: 30px;
}

.testimonial-single:after{
	content: '';
	display: block;
	clear: both;
}

.testimonial-left{
	width: 32%;
	float: left;
	padding-top: 20px;
	text-align: center;
}

.testimonial-left h3{
	color: #242424;
	font-size: 20px;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 6px;
}

.testimonial-left p{
	font-size: 12px;
	color: #b3b3b3;
	text-transform: uppercase;
}

.testimonial-left .ratting{
	border-top: 1px solid #f7a401;
	padding-top: 10px;
	color: #f7a401;
}

.testimonial-right{
	width: 64%;
	float: right;
}

.testimonial-right p{
	font-size: 14px;
	color: #b3b3b3;
	line-height: 1.5em;
	margin-bottom: 0;
}

.testimonial-button{
	text-align: center;
	padding-top: 30px;
}

.testimonial-button-prev,
.testimonial-button-next{
	display: inline-block;
	padding: 0 16px;
	font-size: 26px;
	color: #242424;
	cursor: pointer;
}

/*****************************************/
/*****    10. Contact us area css    *****/
/*****************************************/

.contact{
	padding: 80px 0;
}

.contact-form{
	max-width: 568px;
	margin: 0 auto 60px;
}

.contact-form .form-control{
	box-shadow: none;
	border-radius: 0;
	border: none;
	background: #f4f2f2;
	height: auto;
	padding: 10px 14px;
	resize: none;
}

.btn-contact{
	border: none;
	background: #f7a401;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 10px 20px;
	outline: 0;
}

.btn-contact:focus,
.btn-contact:hover{
	outline: 0;
	background: #242424;
	color:#fff;
}

.country-box{
	position: relative;
	margin-bottom: 30px;
}

.country-box img{
	width: 100%;
}

.country-box:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0,0,0,0.58);
}

.country-box h3{
	color: #fff;
	font-size: 50px;
	font-weight: 600;
	margin: 0;
	padding: 0 20px;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
}

.contact-single h3{
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	color: #f7a401;
	font-weight: 600;
}

.contact-single h3 i{
	margin-right: 10px;
}

.contact-single p{
	color: #aba9a9;
	line-height: 1.5em;
}

/*************************************/
/*****    11. Footer area css    *****/
/*************************************/

footer{
	background: #242424;
	padding: 40px 0;
}

.footer-site-info p{
	font-size: 14px;
	color: #fff;
	margin: 0;
}

.footer-site-info p a{
	color: #f7a401;
}

.footer-menu{
	text-align: center;
}

.footer-menu ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-menu ul li{
	display: inline-block;
}

.footer-menu ul li a{
	display: block;
	padding: 0 10px;
	color: #fff;
	font-size: 14px;
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li a:hover{
	color: #f7a401;
}

.footer-social{
	text-align: right;
}

.footer-social a{
	display: inline-block;
	color: #fff;
	font-size: 14px;
	padding-left: 10px;
	transition: all 0.3s ease-in-out;
}

.footer-social a:hover{
	color: #f7a401;
}

/************************************/
/*****    12. Media Screens     *****/
/************************************/

@media only screen and (max-width: 1200px){
	.header-social{
		left: 6px;
	}
	.navbar-default .navbar-nav>li>a:after{
		padding: 0 12px 0 14px;
	}
}

@media only screen and (max-width: 991px){
	.header-social{
		display: none;
	}
	
	nav.navbar.bootsnav .navbar-header{
		padding-left: 0;
		padding-right: 0;
		position: relative;
	}
	
	nav.navbar.bootsnav.sticky-header .navbar-brand,
	nav.navbar.bootsnav .navbar-brand{
		display: block;
		padding: 14px 0 13px;
	}
	
	nav.navbar.bootsnav .navbar-collapse{
		background: #fe60a1;
		background: linear-gradient(45deg, #fe60a1 0%, #ff8765 100%);
		background: -webkit-linear-gradient(45deg, #fe60a1 0%, #ff8765 100%);
		background: -moz-linear-gradient(45deg, #fe60a1 0%, #ff8765 100%);
		background: -o-linear-gradient(45deg, #fe60a1 0%, #ff8765 100%);
		padding: 0 15px;
		margin: 0;
	}
	
	nav.navbar.bootsnav .navbar-toggle{
		background: none;
		height: 36px;
		width: 36px;
		color: #fff;
		margin: 0;
		border: 1px solid #fff;
		border-radius: 0;
		position: absolute;
		right: 0;
		top: 16px;
	}
	
	nav.navbar.bootsnav .navbar-nav{
		margin: 0;
		padding: 0;
	}
	
	nav.navbar.bootsnav.sticky-header ul.nav > li > a,
	nav.navbar.bootsnav ul.nav > li > a{
		padding: 14px 0;
		border: none;
		margin: 0;
	}
	
	nav.navbar.bootsnav ul.nav > li > a:after{
		display: none;
	}
	
	nav.navbar.bootsnav ul.nav > li > a:hover{
		background: rgba(255,255,255,0) !important;
		color: #333c4e !important;
	}

	nav.navbar.bootsnav ul.nav > li.active > a{
		background: rgba(255,255,255,0) !important;
		color: #333c4e !important;
	}
	
	nav.navbar.bootsnav.sticky-header .navbar-nav{
		padding-top: 0;
	}
	
	.header-content h2{
		font-size: 36px;
	}
	
	.section-title h2{
		font-size: 36px;
	}
	
	.section-title h2 span:before{
		height: 6px;
		bottom: 10px;
	}
	
	.services:before{
		opacity: 0.2;
	}
	
	.why-choose{
		background-size: cover;
	}
	
	.contact-single{
		margin-bottom: 30px;
	}
}

/* Mobile Layout */
@media only screen and (max-width: 767px){
	nav.navbar.bootsnav.sticky-header .navbar-brand,
	nav.navbar.bootsnav .navbar-brand{
		padding-left: 15px;
		padding-right: 15px;
	}
	
	nav.navbar.bootsnav .navbar-toggle{
		right: 15px;
	}
	
	nav.navbar.bootsnav .navbar-collapse{
		margin-left: -15px;
		margin-right: -15px;
	}
	.section-title{
		margin-bottom: 40px;
	}
	
	.section-title h2{
		font-size: 26px;
	}
	
	.section-title h2 span:before{
		height: 4px;
		bottom: 8px;
	}
	
	.section-title p br{
		display: none;
	}
	
	.header-content{
		margin-bottom: 40px;
	}
	
	.header-content h2{
		font-size: 26px;
	}
	
	.banner{
		padding: 180px 0 60px;
	}
	
	.about-product,
	.services,
	.features,
	.faqs,
	.why-choose,
	.testimonials,
	.contact{
		padding: 60px 0;
	}
	
	.about-feature-single{
		margin-bottom: 30px;
	}
	
	.service-single h3{
		font-size: 22px;
	}
	
	.features .section-title{
		margin-bottom: 0;
	}
	
	.feature-single{
		padding: 40px 0;
	}
	
	.feature-single .pull-right{
		float: none !important;
	}
	
	.feature-image{
		margin-bottom: 30px;
	}
	
	.feature-entry h3{
		font-size: 24px;
	}
	
	.feature-entry h4{
		font-size: 18px;
	}
	
	.why-choose-container{
		padding: 40px 30px 10px;
	}
	
	.why-choose-single{
		margin-bottom: 40px;
	}
	
	.testimonial-left{
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}
	
	.testimonial-right{
		float: none;
		width: 100%;
	}
	
	.country-box h3{
		font-size: 26px;
	}
	
	.contact-single h3{
		font-size: 18px;
	}
	
	.footer-site-info{
		text-align: center;
		margin-bottom: 10px;
	}
	
	.footer-social{
		text-align: center;
		margin-top: 10px;
	}
}

/* Small Mobile Layout */

@media only screen and (max-width: 480px) {
	.faq-category h3{
		font-size: 26px;
	}
	
	.faq-single .panel-heading a{
		font-size: 18px;
	}
}


