﻿/*
Description:
		1 - Including files ("fonts.css", "reset.css" and others)
		2 - Tags styles and General styles
		3 - header
		4 - .content
		5 - footer
		* - @media rules
*/

/* 1 - BEGIN of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-Regular.eot');
	src: url('fonts/Montserrat/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Montserrat/Montserrat-Regular.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-Regular.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-Regular.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-Regular.svg#Montserrat') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-Light.eot');
	src: url('fonts/Montserrat/Montserrat-Light.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Montserrat/Montserrat-Light.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-Light.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-Light.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-Light.svg#Montserrat') format('svg');
	font-weight: 300;
	font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat/ontserrat-Medium.eot');
  src: url('fonts/Montserrat/Montserrat-Medium.woff2') format('woff2'),
	   url('fonts/Montserrat/Montserrat-Medium.woff') format('woff'),
	   url('fonts/Montserrat/Montserrat-Medium.ttf') format('truetype'),
	   url('fonts/Montserrat/Montserrat-Medium.svg#Montserrat') format('svg'),
	   url('fonts/Montserrat/Montserrat-Medium.eot?#iefix') format('embedded-opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-SemiBold.eot');
	src: url('fonts/Montserrat/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-SemiBold.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-SemiBold.svg#Montserrat') format('svg');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-Bold.eot');
	src: url('fonts/Montserrat/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Montserrat/Montserrat-Bold.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-Bold.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-Bold.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-Bold.svg#Montserrat') format('svg');
	font-weight: 700;
	font-style: normal;
}

/* BEGIN of CSS RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

/* END of CSS RESET */

/* 1 - END of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
/* 2 - BEGIN of Tags and General styles ---------------------------------------------------------- */

body {
	min-height: 500px;
	margin: 0 auto;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	line-height: 1.65;
	font-weight: 300;
	color: #666666;
}

a {
	text-decoration: none;
	outline: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: inherit;
	outline: none;
}

a:active {
	opacity: 0.6;
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
	color: inherit;
	text-decoration: none;
}

button, input, textarea, select {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
	opacity: 0.8;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

img {
	max-width: 100%;
}

h1 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 500;
}

h2 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 400;
}

h3 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 23px;
	line-height: 1.2;
	font-weight: 400;
}

h4 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 400;
}

h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 400;
}

h6 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 13px;
	line-height: 1.2;
	font-weight: 400;
}

blockquote {
	display: block;
	margin: 20px auto 20px;
	max-width: 840px;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 400;
}

p {
	padding: 0 0 15px;
}

ul, ol {
	padding: 0 0 15px 20px;
}

ul ol, ul ul, ol ul, ol ol {
	padding-bottom: 0;
}

.clear:before, .clear:after {
	content: "";
	display: block;
	clear: both;
}

.hide, .hidden {
	display: none;
}

.content-wrapper {
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}

.alignleft, img.alignleft {
	float: left;
	display: block;
	margin: 0 5px 0 0;
}

.alignright, img.alignright {
	float: right;
	display: block;
	margin: 0 0 0 5px;
}

.aligncenter, img.aligncenter {
	float: none;
	display: block;
	margin: 0 auto 0;
}

.alignnone, img.alignnone {
	margin: 0 0 0;
	display: block;
}

.container {
	max-width: 1120px;
}

/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

header {
	background: #ffffff;
	position: fixed;
	z-index: 99;
	left: 0;
	right: 0;
	top: 0;
	box-shadow: 0px 1px 8px 0px #555555;
}

header + * {
	padding-top: 169px;
}

.navbar, header, .logo, header + *, .logo img, .header-top, .header-bottom {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header-fixed {
	position: fixed;
	z-index: 99;
	left: 0;
	right: 0;
	top: 0;
}

.header-fixed + * {
	/* padding-top: 114px; */
}

.header-fixed .nav .logo > img {
	max-width: 160px;
}

.header-fixed .header-top {
	padding: 4px 0 6px;
}

.header-fixed .header-bottom {
	padding: 10px 0 10px;
}

.logo {
	float: left;
	display: block;
	margin: 0 auto 0;
	padding: 0 0 0;
	max-width: 220px;
}

.logo img {
	display: block;
	margin: 0 auto;
}

header .container {
	max-width: 1170px;
}

header a {
	color: #666666;
}

.header-top {
	padding: 12px 0 15px;
	margin: 0 0 0;
	font-size: 15px;
	font-weight: normal;
	text-align: center;
	background-color: #697979;
	color: #ffffff;
}

.header-top a {
	margin: 0 30px 0;
	display: inline-block;
	vertical-align: middle;
	color: #ffffff;
}

.header-top a i {
	font-size: 18px;
	margin: -2px 7px 0 0;
	color: #ab9d72;
	display: inline-block;
	vertical-align: middle;
}

.header-top a span {
	opacity: .7;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header-top a:hover span {
	opacity: 1;
}

.header-top a:hover {
	opacity: 1;
}

.header-bottom {
	padding: 17px 0 18px;
	margin: 0 0 0;
	text-align: center;
}

body .subnav {
	padding: 0 0 0;
	margin: 11px 11px 0;
	min-width: 217px;
	text-align: left;
	display: block;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #ffffff;
	border: 1px solid #ccc;
	display: none;
}

body li:hover > .subnav {
	/* display: block; */
}

body .subnav li {
	padding: 0 0 0;
	margin: 0 0 0;
	list-style: none;
}

body .subnav li a {
	padding: 11px 19px 12px;
	margin: 0 0 0;
	font-size: 15px;
	font-weight: 500;
	color: #666666;
	display: block;
}

body .subnav li a:hover {
	color: #ffffff;
	background-color: #ab9d72;
	opacity: 1;
}

body .subnav li:not(:last-child) {
	border-bottom: 1px solid #ccc;
}

body .subnav:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 13px;
}

.navbar {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	clear: none;
	border: none;
	min-height: 0;
	float: none;
	text-align: center;
}

.navbar-collapse {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav {
	margin: 0 0 0;
	padding: 0 0 0;
	border-radius: 0;
	border: none;
	min-height: 0;
	float: none;
}

.navbar-nav > li {
	outline: none;
	display: inline-block;
	vertical-align: middle;
	float: none;
}

.navbar-nav .logo {
	padding: 0 0 0;
	margin: 0 35px 0;
	width: 220px;
	display: block;
	float: none;
}

.nav > li > a > img {
	max-width: 100%;
	margin: 0 auto;
	display: block;
}

.navbar-nav > li > a {
	padding: 5px 3px 2px;
	margin: 0 8px 0;
	font-size: 15px;
	line-height: 20px;
	color: #6a6a6a;
	font-weight: 500;
	text-transform: none;
	position: relative;
	background: transparent;
}

.navbar-nav > li.active > a {
	color: #6a6a6a;
	background: transparent;
}

.nav > li > a:focus, .nav > li > a:hover {
	color: #6a6a6a;
	background: transparent;
}

.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
	background-color: #008d36;
}

.navbar-nav > li > .dropdown-menu {
	background-color: #e5e1d4;
}

.dropdown-menu li {
	position: relative;
}

.dropdown-menu li a {
	margin: 0 0 0;
	padding: 5px 20px 5px;
}






/* HEADER Doonbrae like styles Starts */

.main-nav-wr {
	position: fixed;
	z-index: 5;
	overflow: auto;
	top: 0;
	bottom: 0;
	width: 0;
	/* right: auto; */
	left: 0;
	text-align: center;
	color: #ffffff;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	text-align: left;

}

.main-nav-wr.active {
	width: 100%;
}

.main-nav-wr.active .main-nav-inner {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	opacity: 1;
	left: auto;
}

.main-nav-inner {
	padding: 70px 60px 70px;
	min-width: 390px;
	position: fixed;
	z-index: 5;
	overflow: auto;
	top: 0;
	bottom: 0;
	height: 100vh;
	margin: 0 0 0;



	right: auto;
	left: 0;
	width: 390px;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: perspective(500px) rotateY(90deg);
	transform: perspective(500px) rotateY(90deg);
	opacity: 0;
}

.main-nav-inner .img-wr {
	clear: both;
}

.main-nav-inner h4 {
	padding: 0 0 0;
	margin: 8px 0 35px;
	font-size: 25px;
	line-height: 1;
	font-weight: normal;
	font-family: 'SnellRoundhand';
}

.main-nav-inner .btn-main {
	margin: 30px auto 15px;
	display: block;
}

.main-nav-wr ul {
	padding: 25px 0 13px;
	margin: 0 0 0;
}

.main-nav-wr li {
	margin: 0 0 12px;
	padding: 0 0 0;
	list-style: none;
	position: relative;
}

.main-nav-wr a {
	margin: 0 0 0;
	padding: 0 0 0;
	font-size: 21px;
	font-weight: 400;
	letter-spacing: 0;
	color: #fff;
	display: block;
	position: relative;
}

.main-nav-wr ul a:not(:last-child):after {
    margin: 6px 0 0 25px;
    content: "\f107";
    font-size: 24px;
    line-height: 1;
    padding: 0 0 0;
    font-family: "FontAwesome";
    display: inline-block;
    vertical-align: middle;
    float: right;
}

.main-nav-wr .active > a:not(:last-child):after {
    content: "\f106";
}

.main-nav-wr * {
	/* position: relative; */
	/* z-index: 5; */
}

.main-nav-wr:before {
	/* content: ""; */
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: fixed;
	background-color: rgba(0,0,0,.5);
}

html body .btn-close-nav {
	content: "";
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	/* width: 0; */
	position: fixed;
	font-size: 0;
	color: transparent;
	-webkit-transition: all .9s ease;
	-o-transition: all .9s ease;
	transition: all .9s ease;
	backdrop-filter: blur(0px);
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	background: rgba(0,0,0,.0);
	visibility: visible;
	opacity: 0;
	visibility: hidden;
}

.main-nav-wr.active .btn-close-nav {
	background-color: rgba(0,0,0,.5);
	backdrop-filter: blur(3px);
	opacity: 1;
	/* width: 100%; */
	visibility: visible;
}

.main-nav-inner img {
	display: block;
	margin: 0 auto 20px;
	max-width: 200px;
}

a.btn-main.btn-book.bg-black {
	background: rgba(0, 0, 0, .2);
}

.btn-main .fa-calendar {
	margin: 0 6px 0 0;
	font-size: 120%;
}

.main-nav-wr .subnav {
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	background: transparent;
	margin: 0 auto 0;
	padding: 10px 0 10px 10px;
	border: none;
}

.main-nav-wr .subnav li:not(:last-child) {
	border-bottom: none;
}

.main-nav-wr .subnav li a {
	padding: 7px 20px 7px;
	margin: 0 0 0;
	font-size: 18px;
	font-weight: 300;
	color: inherit;
	display: block;
}

.main-nav-wr .social-links {
	text-align: center;
}

.main-nav-wr .social-links a {
	display: inline-block;
}

.main-nav-wr .social-links a i {
	width: 32px;
	height: 32px;
	line-height: 32px;
	font-size: 20px;
	border-radius: 50px;
	border-radius: 50%;
	display: inline-block;
	background-color: #ffffff;
	color: #697979;
}

/*  */

.icon-hamubrger {
	min-height: 19px;
	display: block;
	float: right;
	position: relative;
}

.btn-main-nav:hover .icon-bar:nth-of-type(1) {
	-webkit-transform: translateY(4px) translateX(-3px) rotate(-45deg);
	transform: translateY(4px) translateX(-3px) rotate(-45deg);
	width: 15px;
}

.btn-main-nav:hover .icon-bar:nth-of-type(3) {
	-webkit-transform: translateY(-4px) translateX(-3px) rotate(45deg);
	transform: translateY(-4px) translateX(-3px) rotate(45deg);
	width: 15px;
}

.btn-main-nav .icon-bar {
	position: relative;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.btn-main-nav.active .icon-hamubrger .icon-bar {
	margin: 0;
	height: 2px;
	width: 32px;
}

.btn-main-nav.active .icon-hamubrger  .icon-bar:nth-of-type(1) {
	top: 8px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn-main-nav.active .icon-bar:nth-of-type(2) {
	background-color: transparent;
}

.btn-main-nav:hover {
	opacity: 1;
}

.btn-main-nav.active .icon-hamubrger .icon-bar:nth-of-type(3) {
	top: 4px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

body .btn-main-nav {
	padding: 17px 33px 16px 100px;
	margin: 0 0 0;
	border: none;
	min-height: 30px;
	z-index: 25;
	outline: none;
	display: block;
	float: right;
	background-color: #ffffff;
	color: #333333;
	border-radius: 50px;
	position: relative;
	right: 0;
	top: 0;
}

.btn-main-nav.active i {
	display: none;
}

.btn-main-nav .icon-bar+.icon-bar {
	margin-top: 5px;
}

.btn-main-nav .icon-bar {
	width: 27px;
	height: 3px;
	background: #ffffff;
	display: block;
}

.btn-main-nav i {
	float: left;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	font-size: 17px;
	line-height: 1;
	margin: 0 0 0;
	padding: 19px 0 17px 35px;
	font-weight: 500;
	letter-spacing: 0;
}

.btn-main-nav:after {
	content: "";
	display: block;
	clear: both;
}

.btn-main-nav.active {
	background: transparent;
	opacity: 0;
}

body .main-nav-inner .btn-main-nav {
	margin: -25px -15px 0 0;
	opacity: 1;
	padding: 0;
	color: #ffffff;
}

.main-nav-inner .btn-main-nav .icon-bar {
	background: #ffffff;
}

.main-nav-inner .social-links {
	margin: 0 auto 0;
	padding: 0 0 0
}

.main-nav-inner .social-links a {
	margin: 0 3px;
}

.main-nav-inner .social-links i {
	font-size: 24px;
	width: 40px;
	height: 40px;
	line-height: 40px;
}

/*  */

/* width */
header *::-webkit-scrollbar {
  width: 10px;
}

/* Track */
header *::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
}

/* Handle */
header *::-webkit-scrollbar-thumb {
  background: #4d4d4d;
  background: rgba(0, 0, 0, .3);
  border-radius: 10px;
  box-shadow: inset 0 0 5px #000000;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
  cursor: pointer;
}

/*  */

header.header-compact {
	padding: 40px 0 40px;
    background-color: rgba(105, 121, 121, 0.9);
	box-shadow: none;
}

header.header-compact + * {
	padding-top: 0;
}

header.header-compact .logo  {
    margin: 28px auto 0;
    max-width: 200px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
	top: 0;
}

header .container-fluid {
	padding-right: 40px;
	padding-left: 40px;
}

.header-transparent .header-compact .logo {
	opacity: 0;
}

.header-transparent .header-compact.header-fixed .logo {
	opacity: 1;
}

.header-transparent .header-compact {
	background: transparent;
}

header.header-compact.header-fixed .logo {
    margin: 20px auto 0;
    max-width: 180px;
}

header.header-compact.header-fixed {
    padding: 30px 0 30px;
    background: #697979;
}




/* spinner css start */

.spinner-wr {
	background: #FFFFFF;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	/*!!!!!!!!!!!!!!!!!!!!!!!*/
	/* display: none; */
}

.spinner {
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}

.double-bounce1, .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50px;
	border-radius: 50%;
	background-color: #697979;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;

	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
	0%, 100% {
	transform: scale(0.0);
	-webkit-transform: scale(0.0);
	} 50% {
	transform: scale(1.0);
	-webkit-transform: scale(1.0);
	}
}

/* spinner css end */
/* back-to-top css start */

.back-to-top {
	position: fixed;
	bottom: 5px;
	right: 4px;
	z-index: 99;
	width: 44px;
	height: 44px;
	padding: 0 0 0;
	margin: 0 0 0;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	background: transparent url('img/i-arr-up.png') no-repeat center center;
	cursor: pointer;
	text-decoration: none;
	text-indent: -9999px;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	opacity: 0;
}

.back-to-top.show {
	opacity: 1;
}

.back-to-top:not(.show):hover {
	opacity: 0;
	cursor: default;
}

.back-to-top:hover {
	-moz-animation: bounce 1.5s infinite;
	-webkit-animation: bounce 1.5s infinite;
	animation: bounce 1.5s infinite;
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

/* back-to-top css end */

#ho_adv {
	display: none;
	position: absolute;
	width: 0;
	height: 0;
	left: -9999px;
}

/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */

.content {
	min-height: 200px;
	position: relative;
}

.box-wr {
	padding: 60px 0 60px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

/*  */

html body .bg-theme-main {
	background-color: #ab9d73;
	color: #ffffff;
}

html body .bg-theme-secondary {
	background-color: #697979;
	color: #ffffff;
}

html body .color-theme-main {
	color: #ab9d73;
}

html body .color-theme-secondary {
	color: #697979;
}

/*  */

body .bg-golden {
	background-color: #ab9d72;
	color: #ffffff;
}

body .bg-dark-gray {
	background-color: #697979;
	color: #ffffff;
}

body .bg-gray {
	background-color: #f8f8f8;
}

.border-bottom {
	border-bottom: 5px solid #ab9d72;
}

h2.bordered-bottom {
	padding: 0 0 25px;
	margin: 0 0 25px;
	position: relative;
	border: none;
}

h2.bordered-bottom:after {
	width: 200px;
	border-bottom: 4px solid #ab9d72;
	left: 0;
	bottom: 0;
	margin: auto;
	content: "";
	display: block;
	position: absolute;
}

.text-center h2.bordered-bottom:after {
	right: 0;
	width: 100px;
}

.img-wr {
	position: relative;
}

.img-wr img {
	display: block;
	margin: 0 auto 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.img-wr > a {
	display: block;
	overflow: hidden;
	width: 100%;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transition: all .7s ease;
	transition: all .7s ease;
}

.img-wr:hover a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.slide-item {
	outline: none;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

body .box-top-slider {
	padding: 0 0 0;
	margin: 0 0 0;
	color: #ffffff;
	text-shadow: -1px 1px 2px #222222;
}

.box-top-slider {
	padding: 0 0 0;
	margin: 0 0 0;
}

.box-top-slider .img-overlay {
	min-height: 0;
	position: relative;
}

.box-top-slider .text-wr {
	height: 600px;
	padding: 50px 0 20px;
}

.box-top-slider-inner-page .img-overlay {
	min-height: 500px;
}

body .box-top-slider-inner-page h1 {
	font-size: 60px;
	font-weight: 600;
}

.box-top-slider .pos-bottom {
    padding: 0 0 20px;
}

.box-top-slider.box-full-height .text-wr {
	height: 100vh;
	padding: 30px 0 30px;
}

.box-top-slider img {
	display: block;
    max-width: 75%;
	margin: 0 auto 0;
}

.box-top-slider.border-bottom {
	border-bottom: 6px solid #ab9d72;
}

.box-top-slider h1 {
	padding: 0 0 15px;
	font-size: 50px;
	font-weight: 300;
}

.box-top-slider h5 {
	font-size: 22px;
	line-height: 1.2;
	font-weight: 300;
}

.img-overlay {
	position: absolute;
	z-index: 5;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.pos-bottom {
	position: absolute;
	left: 0;
	right: 0;
	top: auto;
	bottom: 0;
}

.box-welcome p {
	font-size: 22px;
	line-height:1.9;
	padding: 0 0 0;
}

.box-categories {
	padding: 60px 0 60px;
}

.category-thumb-item {
	padding: 0 0 0;
	margin: 0 0 0;
}

.category-thumb-item .img-wr img {
	width: 100%;
}

.category-thumb-item h2 {
	font-size: 40px;
	letter-spacing: -.025em;
	padding: 0 0 0;
	font-weight: 600;
}

.category-thumb-item h3 {
	padding: 0 0 0;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
}

.category-thumb-item h3:after {
	margin: 0 4px 0 0;
	font-size: 25px;
	line-height: 1;
	content: "\f105";
	font-family: 'FontAwesome';
	float: right;
}

.category-thumb-item .bg-dark-gray {
	margin: 20px 20px 20px;
	padding: 10px 20px 10px;
	display: inline-block;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.category-thumb-item a:hover {
	opacity: 1;
}

.category-thumb-item .img-overlay {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.category-thumb-item a:hover .img-overlay {
	background-color: rgba(0, 0, 0, .3);
}

.category-thumb-item a:hover .bg-dark-gray {
	background-color: #566161;
}

.box-categories + .box-why-we {
	padding-top: 25px;
}

.box-why-we {
	-webkit-background-size: auto;
	background-size: auto;
	background-position: right bottom;
}

.box-why-we h2 {
	font-size: 50px;
	font-weight: 600;
	color: #333333;
}

.box-why-we .btn-main {
	padding: 20px 55px 20px;
	font-size: 22px;
	line-height: 22px;
	margin: 20px auto 0;
	font-weight: 500;
}

.box-why-we .list-styled {
	padding: 0 0 15px;
	margin: 0 0 0;
	font-size: 24px;
}

.box-why-we .list-styled li:before {
	font-size: 30px;
	top: 5px;
}

.box-why-we .list-styled li {
	padding: 0 0 10px 50px;
}

.box-why-we {
}

.box-why-we {
}

.list-styled {
	padding: 5px 0 16px;
	margin: 0 0 0;
}

.list-styled li {
	padding: 0 0 11px 35px;
	margin: 0 0 0;
	list-style: none;
	position: relative;
	color:#777777;
}

.list-styled li:before {
	font-size: 23px;
	left: 0;
	top: 4px;
	line-height: 1;
	position: absolute;
	content: "\f058";
	font-family: 'FontAwesome';
	color: #697979;
}

.box-btn-contacts {
	padding: 35px 0 35px;
}

.box-btn-contacts h3 {
	padding: 6px 24px 10px 0;
	display: inline-block;
	vertical-align: middle;
}

.box-btn-contacts .btn-main {
	margin: 16px 0 0;
	min-width: 240px;
}

.box-btn-contacts h2 {
	font-size: 40px;
	padding: 0 0 5px;
	font-weight: 600;
}

.box-btn-contacts h4 {
	font-size: 22px;
	padding: 0 0 0;
	font-weight: 400;
}

body .box-testimonials {
	padding: 120px 0 70px;
	min-height: 500px;
	color: #ffffff;
}

.box-testimonials .container {
	position: relative;
	z-index: 5;
}

.box-testimonials h4 {
	font-weight: 300;
	font-size:26px;
	padding: 10px 0 30px;
	line-height: 1.6;
}

.box-testimonials p {
	font-weight: 300;
}

.slider-testimonials {
	max-width: 950px;
	margin: 0 auto 0;
}

.slick-dots li button:before {
	font-size: 17px;
	line-height: 20px;
	width: 20px;
	height: 20px;
	color: #3a393c;
	opacity: 1;
}

.slick-dots li.slick-active button:before {
	color: #bfae80;
	opacity: 1;
}

.slick-dots li {
	width: 20px;
	height: 20px;
	margin: 0 3px;
}

.slick-dots li button {
	width: 20px;
	height: 20px;
	padding: 2px;
	opacity: 1;
}

.slick-dots {
	bottom: -36px;
}

.box-news-thumbs {
	padding: 50px 0 30px;
}

.news-thumbs-items-wr {
	padding: 16px 0 0;
}

.news-thumb-item {
	margin: 0 0 30px;
	padding: 0 0 0;
	text-align: left;
	background-color: #f7f7f7;
}

.news-thumb-item .img-wr {
	height: 226px;
	border-bottom: 6px solid #ab9d72;
	overflow: hidden;
	position: relative;
}

.news-thumb-item .img-wr img {
	display: block;
	width: 100%;
	margin: 0 0 0;
}

.news-thumb-item .text-wr {
	padding: 22px 22px 22px;
	height: 240px;
	overflow: hidden;
	position: relative;
}

.news-thumb-item h3 {
	font-size: 24px;
	padding: 0 0 5px;
	margin: 0 0 7px;
	line-height: 1.4;
	height: 70px;
	font-weight: 600;
	overflow: hidden;
}

.news-thumb-item p {
	line-height: 1.75;
	font-weight: 400;
	font-size: 15px;
	padding: 0 0 0;
}

.news-thumb-item a {
	color: #616262
}

.news-thumb-item > a {
	display: block;
}

.thumb-item-date {
	padding: 12px 8px 12px;
	font-size: 14px;
	line-height: 1.1;
	width: 65px;
	font-weight: 500;
	position: absolute;
	right: 0;
	bottom: 0;
	text-align: center;
	background-color: #697979;
	color: #ffffff;
}

.thumb-item-date i {
	font-size: 24px;
	padding: 0 0 0;
	font-weight: 600;
	display: block;
}

.thumb-item-date span {
	display: block;
}

.btn-arrow {
	font-size: 36px;
	line-height: 1;
	display: inline-block;
	position: absolute;
	right: 20px;
	bottom: 12px;
	color: #ab9d72;
}

body .btn-main, form input[type="submit"], form button {
	padding: 15px 35px 15px;
	margin: 0 auto 0;
	font-size: 19px;
	line-height: 20px;
	min-width: 180px;
	text-align: center;
	color: #ffffff;
	width: auto;
	font-style: normal;
	background: #ab9d72;
	border: 1px solid #ab9d72;
	font-weight: 400;
	text-align: center;
	position: relative;
	display: inline-block;
	border-radius: 50px;
}

body .btn-main:hover {
	color: #ffffff;
	background: #8c815e;
	border-color: #8c815e;
	opacity: 1;
}

.btn-main.bg-golden {
	background-color: #ab9d72;
	border-color: #ab9d72;
	color: #ffffff;
}

.btn-main.bg-golden:hover {
	background-color: #8c815e;
	border-color: #8c815e;
	color: #ffffff;
}

.btn-main.bg-dark-gray {
	background-color: #697979;
	border-color: #697979;
	color: #ffffff;
}

.btn-main.bg-dark-gray:hover {
	background-color: #586767;
	border-color: #586767;
	color: #ffffff;
}

.btn-main.bg-gray {
	background-color: #f8f8f8;
	border-color: #f8f8f8;
	color: #697979;
}

.btn-main.bg-gray:hover {
	background-color: #e8e8e8;
	border-color: #e8e8e8;
	color: #697979;
}

.btn-main.bg-transparent {
	background-color: transparent;
	border-color: #ffffff;
	color: #ffffff;
}

.btn-main.bg-transparent:hover {
	background-color: rgba(255,255,255,.3);
	border-color: #ffffff;
	color: #ffffff;
}

body .btn-large {
	padding: 18px 15px 18px;
	font-size: 16px;
	line-height: 20px;
	min-width: 220px;
}

.pagination-wr {
	font-size: 16px;
	font-weight: normal;
	padding: 21px 0 31px;
	margin: 0 0 0;
	text-align: center;
}

.pagination-wr span {
	padding: 6px 30px 0 0;
	margin: 0 0 0;
	display: inline-block;
	vertical-align: middle;
}

.pagination-wr a {
	font-size: 18px;
	line-height: 1;
	padding: 10px 5px 0;
	margin: 0 3px 0;
	width: 40px;
	height: 40px;
	color: inherit;
	background-color: #f1f1f1;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
}

.grid-main-area {
	font-size: 18px;
	margin: 0 -20px 0 0;
	margin: 0 -15px 0 0;
	padding: 2px 0 0;
}

.grid-main-area p {
	padding: 0 0 28px;
	text-align: justify;
	line-height:2;
	color:#777777;
}

.grid-main-area p a {
	color: inherit;
	text-decoration: underline;
}

.grid-main-area .list-styled {
	padding: 0 0 20px;
}

.grid-main-area h2.bordered-bottom {
	padding: 0 0 20px;
	margin: 0 0 17px;
}

.grid-main-area .list-styled li {
	padding: 0 0 7px 35px;
}

.grid-main-area p:last-child {
	padding-bottom: 0;
}

.block-thumb-item:last-child {
	margin-bottom: 0;
}

.grid-sidebar-right {
	margin: 0 0 0;
	padding: 31px 0 0 50px;
}

.block-thumb-item {
	margin: 0 auto 25px;
}

.block-thumb-item a {
	display: block;
}

.block-thumb-item .img-wr {
	overflow: hidden;
	border-bottom: 5px solid #ab9d72;
}

.block-thumb-item .img-wr img {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.btn-block {
	font-size: 25px;
	font-weight: 400;
	text-align: left;
	margin: 0 0 0;
	padding: 9px 40px 11px 25px;
	display: block;
	position: relative;
	color: #ffffff;
}

.btn-block:after {
	font-size: 45px;
	line-height: 1;
	position: absolute;
	height: 48px;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	font-family: "FontAwesome";
	content: "\f105";
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.btn-block:hover, .btn-block:focus {
	color: #ffffff;
	opacity: 1;
}

.btn-block:hover:after {
	right: 13px;
}

.box-dairy h2 {
	font-size: 32px;
}

.box-dairy {
	padding: 32px 0 50px;
	margin: 3px 0 0;
}

.dairy-items-wr {
	padding: 9px 0 0;
	margin: 0 -10px 0;
}

body .dairy-item {
	margin: 0 2px 30px;
	padding: 15px 20px 17px;
	width: 262px;
	line-height: 1.2;
	border-top: 4px solid #697979;
	box-shadow: 0px 0px 2px 0px #333333;
	background-color: #697979;
	color: #ffffff;
	display: inline-block;
	vertical-align: middle;
	text-align: left;
	position: relative;
}

body .dairy-item:hover {
	background-color: #ffffff;
	color: #697979;
	opacity: 1;
}

.dairy-item a {
	display: block;
	color: inherit;
}

.dairy-item p {
	font-size: 16px;
	padding: 0 0 0;
	font-weight: 600;
}

.dairy-item h3 {
	font-size: 38px;
	padding: 0 0 0;
	font-weight: 400;
}

.dairy-item i {
	font-size: 38px;
	padding: 25px 0 0;
	float: right;
	color: #ffffff;
}

.dairy-item:hover i {
	color: #ab9d72;
}

.dairy-item:after {
	content: "";
	display: block;
	clear: both;
}

.testimonials-items-wr .btns-wr {
	padding: 0 0 42px;
}

.testimonials-items-wr .btns-wr .btn-main {
	margin: 0 -2px 0;
}

.testimonials-item {
	padding: 41px 49px 42px;
	margin: 0 10px 30px 0;
	font-size: 17px;
	text-align: justify;
	position: relative;
}

.testimonials-item p {
	padding: 0 0 28px;
	position: relative;
	font-size:18px !important;
	line-height:1.9;
}

.testimonials-item p:last-child {
	padding-bottom: 0;
}

.testimonials-item strong {
	font-weight: 600;
}

.testimonials-item:last-child {
	margin-bottom: 15px;
}

.testimonials-item:before, .testimonials-item:after {
	margin: 20px 20px;
	width: 50px;
	height: 45px;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: contain;
	background-size: contain;
}

.testimonials-item:before {
	background-image: url('img/i-quote-left.png');
	left: 0;
	top: 0;
}

.testimonials-item:after {
	background-image: url('img/i-quote-right.png');
	left: auto;
	top: auto;
	bottom: 0;
	right: 0;
}


/* BEGIN of content of Contact Page */

.box-contacts .sidebar-main-area {
	padding: 20px 90px 0 0;
}

.box-contacts .sidebar-right {
	padding: 0 0 0;
	margin: 0 47px 0 11px;
}

.box-contacts .sidebar-right p {
	text-align: left;
	font-size: 16px;
	font-weight: 400;
	padding: 4px 0 15px;
}

.box-contacts h6 {
	padding: 18px 0 1px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
}

.box-contacts h6 i {
	margin: -3px 5px 0 -35px;
	float: left;
	width: 25px;
	font-size: 26px;
	line-height: 1;
	text-align: center;
	display: inline-block;
	color: #697979;
}

.box-contacts h6 .fa-envelope {
	font-size: 22px;
	margin-top: -1px;
}

.box-contacts a {
	color: inherit;
}

.form-row {
	margin: 0 0 25px;
}

.form-row:after {
	content: "";
	display: block;
	clear: both;
}

form {
	margin: 0 0 0;
	padding: 0 0 0;
}

form:after {
	content: "";
	display: block;
	clear: both;
}

form input, form textarea, form select {
	display: block;
	margin: 0 0 0;
	padding: 18px 18px 18px;
	font-size: 18px;
	line-height: 20px;
	font-weight: 300;
	color: #828282;
	background-color: #f0f0f0;
	clear: both;
	outline: none;
	width: 100%;
	border: 1px solid #f0f0f0;
	border-radius: 0;
}

form textarea {
	min-height: 130px;
}

form input[type="submit"], form button {
	margin: 0 0 0;
}

form input:hover, form textarea:hover, form select:hover {
	border-color: #cccccc;
	opacity: 1;
}

form input:focus, form textarea:focus, form select:focus {
	border-color: #cccccc;
	opacity: 1;
}

form label {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 18px;
	line-height: 20px;
	font-weight: 300;
	display: block;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	color: #828282;
}

form label span {
	padding: 0 0 0;
	margin: 0 0 0;
	position: absolute;
	left: 19px;
	top: 20px;
	display: block;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.input-wr {
	position: relative;
}

.input-focused span, .input-not-empty span {
	font-size: 70%;
	top: 3px;
	left: 8px;
	opacity: .8;
}

*::-webkit-input-placeholder {
	color: #5c5c5c;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-moz-placeholder {
	color: #5c5c5c;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*::-moz-placeholder {
	color: #5c5c5c;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-ms-input-placeholder {
	color: #5c5c5c;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:focus::-webkit-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus::-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-ms-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

.error_message {
	display: block;
	line-height: 22px;
	margin: 10px 0 30px;
	color: #FF0000;
}

.error_message:before {
	margin: -2px 20px 0 0;
	font-size: 20px;
	content: "\f06a";
	display: inline-block;
	vertical-align: middle;
	font-family: 'FontAwesome';
}

#succsess_page {
	color: #697979;
}

#succsess_page h1 {
	color: #697979;
	padding: 0 0 20px;
}

#succsess_page h1:before {
	margin: 0 10px 0 0;
	font-size: 20px;
	content: "\f00c";
	display: inline-block;
	vertical-align: middle;
	font-family: 'FontAwesome';
}

.box-contacts p {
	padding: 3px 0 34px;
	font-size: 17px;
}

/* END of content of Contact Page */




/* BEGIN of content of CONTACT Page NEW!!! */

/*  */

.box-contact .grid-main-area {
	padding: 0 15px 0 0;
	margin: 0 0 0 0;
}

.box-contact .grid-sidebar-right {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
}

/*  */

.block-info {
    position: relative;
    border: 5px solid;
    padding: 30px 35px 18px 50px;
    margin: 30px 0 0 20px;
    max-width: 390px;
    letter-spacing: 0;
}

.block-info h3 {
	font-size: 26px;
	padding: 0 0 30px;
	font-weight: 700;
	font-family: inherit;
}

.block-info h6 {
    font-size: 18px;
    padding: 0 0 5px;
    font-weight: 600;
}

.block-info h6 .fa {
    text-indent: 0;
    width: 35px;
    margin: 0 0 0 -35px;
    text-align: center;
}

html body .block-info p {
	padding: 0 0 18px;
}

.block-info p a {
	color: inherit;
	font-weight: 300;
}

.block-bg-half {
	position: absolute;
	z-index: -1;
	left: 68%;
	right: 0;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
	-webkit-background-size: auto 100%;
	background-size: auto 100%;
	background-position: left center;
}

label.alignleft {
	padding: 13px 10px 0 0;
}

label.alignleft + input {
	width: auto;
	clear: none;
}

/* END of content of CONTACT Page */


.parallax-container {
	height: 100%;
	background: transparent;
	margin: 0 auto 0;
}

.parallax-wr {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

img.parallax-slider {
	height: auto !important;
}

.parallax-mirror {
	z-index: 0 !important;
}



.img-bg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	/* background-attachment: fixed; */
	-webkit-transition: all 1.5s ease;
	-o-transition: all 1.5s ease;
	transition: all 1.5s ease;
}

.slide-item:not(.slide-zoomIn) .img-bg {
	-webkit-animation: slowZoomMin 20s linear infinite;
}

@-webkit-keyframes slowZoomMin {
	0% {
		-webkit-transform: scale(1);
	}
	100% {
		-webkit-transform: scale(1.3);
	}
}


.top-slider .slide-item .img-overlay * {
	opacity: 0;
	-webkit-transition: all .9s ease;
	-o-transition: all .9s ease;
	transition: all .9s ease;
}

.top-slider .slide-item.slick-current .img-overlay * {
	opacity: 1;
}



.slick-prev, .slick-next {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 40px;
	height: 80px;
	text-align: center;
	display: block;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.slick-slider:hover .slick-prev, .slick-slider:hover .slick-next {
	opacity: 1;
}

.slick-prev:hover, .slick-next:hover {
	margin: 0 -5px;
}

.slick-prev {
	left: 45px;
}

.slick-next {
	right: 45px;
}

.slick-prev:before, .slick-next:before {
	padding: 0 0 0;
	margin: 0 0 0;
	width: 40px;
	height: 80px;
	font-size: 80px;
	line-height: 1;
	text-align: center;
	display: block;
	font-family: "FontAwesome";
	background-color: transparent;
	color: #ffffff;
	opacity: 1;
}

.slick-prev:before {
	content: "\f104";
}

.slick-next:before {
	content: "\f105";
}

.table-simple {
	padding: 0 0 0;
	margin: 20px auto 20px;
	width: 100%;
	border-collapse: collapse;
}

.table-simple td {
	padding: 10px 6px 10px;
	margin: 0 0 0;
	vertical-align: middle;
	border: 1px solid;
}

.table-simple td p {
	padding: 0 0 0;
	margin: 0 0 0;
}

.parallax-item {
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

.box-top-slider .parallax-item {
	position: absolute;
	left: 0;
	right: 0;
	top: -100px;
	bottom: -100px;
}

.parallax-wr {
	overflow: hidden;
}

/*  */

.box-logos h5 {
	font-size: 14px;
	text-transform: uppercase;
}

.box-logos h5 strong {
	font-weight: 600;
}

.box-logos .container {
	max-width: 1160px;
}

.logos-slider a:hover {
	opacity: 1;
}

.logos-slider .slide-item {
	float: none;
	display: inline-block;
	vertical-align: middle;
}

.logos-slider .img-wr {
	margin: 5px auto 4px;
	padding: 0 5px 0;
	display: inline-block;
	vertical-align: middle;
}

.logos-slider img {
	max-height: 95px;
	opacity: 1;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
/*	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);*/
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}


/*  */

.box-top-slider .btn-pos-center {
	margin: 0 auto 50px;
	max-width: 250px;
	font-size: 20px;
	padding: 20px 15px 20px;
	border-radius: 30px;
	z-index: 6;
	position: absolute;
	left: 0;
	right: 0;
	top: auto;
	bottom: 0;
}

.box-top-slider .btn-pos-center i {
	font-size: 150%;
	margin: -6px 13px 0 0;
	line-height: 20px;
	display: inline-block;
	vertical-align: middle;
}

/*  */



body .btn-scroll-down {
	margin: 0 auto 5px;
	max-width: 70px;
	font-size: 70px;
	line-height: 1;
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	color: inherit;
}

.box-top-slider .btn-scroll-down:hover i {
	left: 0;
}

@-moz-keyframes bounce-arrow {
  0%, 20%, 50%, 80%, 100% {
	-moz-transform: translateY(0);
	transform: translateY(0);
  }
  40% {
	-moz-transform: translateY(-20px);
	transform: translateY(-20px);
  }
  60% {
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
  }
}
@-webkit-keyframes bounce-arrow {
  0%, 20%, 50%, 80%, 100% {
	-webkit-transform: translateY(0);
	transform: translateY(0);
  }
  40% {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
  }
  60% {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
  }
}
@keyframes bounce-arrow {
  0%, 20%, 50%, 80%, 100% {
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-webkit-transform: translateY(0);
	transform: translateY(0);
  }
  40% {
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
  }
  60% {
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
  }
}

.bounce-arrow {
  -moz-animation: bounce-arrow 2s infinite;
  -webkit-animation: bounce-arrow 2s infinite;
  animation: bounce-arrow 2s infinite;
}

/*  */

.vertical-middle {
	display: table-cell;
	vertical-align: middle;
	width: 2000px;
}

.vertical-bottom {
	display: table-cell;
	vertical-align: bottom;
	width: 2000px;
}

.vertical-align-wrapper {
	display: table;
	width: 100%;
	padding: 0 0 0;
	margin: 0 0 0;
}

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

.vertical-align-bottom {
	display: table-cell;
	vertical-align: bottom;
}

/*  */

.btn-main.bg-white {
	background: #ffffff;
	/* border-color: #ffffff; */
	color: #ab9d72;
}

.btn-watch-video i {
	font-size: 51px;
	position: absolute;
	width: 50px;
	height: 50px;
	line-height: 50px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

body .btn-main.btn-watch-video {
	padding-left: 60px;
}

/*  */

.box-welcome h1 {
	font-size: 38px;
	font-weight: 400;
}

.box-welcome .btn-main {
	margin: 35px auto 0;
    font-size: 20px;
    letter-spacing: .05em;
    font-weight: 600;
}

/*  */

body .block-watermark {
	z-index: -1;
	padding: 0 0 0;
	margin: 0 0 0;
	left: 0;
	right: 0;
	top: 0;
	color: #222222;
	text-transform: uppercase;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	position: absolute;
}

body .block-watermark + * {
	z-index: 3;
}

body .block-watermark h3 {
	font-size: 472px;
	opacity: .025;
	font-weight: 900;
	line-height: 1;
	padding: 0 0 0;
	margin: 0 0 0;
	letter-spacing: 0;
}

/*  */

.background-fixed {
	background-attachment: fixed;
}

.parallax-item.background-fixed {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

/*  */

.bg-logo-icon {
	background-image: url('img/leaf.png');
	background-repeat: no-repeat;
	background-position: left 8% bottom 3%;
	-webkit-background-size: auto 250px;
	background-size: auto 250px;
}

.bg-transparent.bg-logo-icon {
	background-image: url('img/leaf-gray.png');
	background-repeat: no-repeat;
	background-position: left 6% top 60px;
	-webkit-background-size: auto 250px;
	background-size: auto 250px;
}

/*  */

body .box-columns, body .box-columns.bg-gray {
	padding: 30px 0 30px;
}

.box-columns img {
    display: block;
    margin: 0 auto;
}

.columns-same-height-item {
	margin: 30px 0 30px;
	padding: 0 0 0;
	line-height: 1.9;
	position: relative;
}

.columns-same-height-item:nth-child(odd) .col-sm-6:first-child {
	float: right;
}

.columns-same-height-item:nth-child(odd).image-right .col-sm-6:first-child {
	float: left;
}

.columns-same-height-item .row {
	margin: 0 0 0;
}

.columns-same-height-item [class*="col-"] {
	padding: 0 0 0;
}

.columns-same-height-item .btn-main {
	margin: 15px 10px 0 0;
}

.columns-same-height-item .columns-item {
	/* padding: 30px 60px 30px 70px; */
	padding: 0px 30px 30px 30px;
	display: table-cell;
	vertical-align: middle;
	width: 900px;
}

.columns-same-height-item + .columns-same-height-item {
	margin-top: 60px;
}

/*  */

.btn-main.bg-theme-secondary {
    border-color: #697979;
}

.main-nav-wr li.active > .subnav {
	display: block;
}

.box-wr:first-child:not(.box-top-slider) {
    padding-top: 180px;
}

















/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
	padding: 20px 0 20px;
	font-size: 14px;
	font-weight: 300;
	/* border-top: 5px solid #ab9d72; */
	color: #ffffff;
	background-color: #ab9d73;
}

footer i {
	margin: 0 5px;
}

footer p, footer a {
	opacity: .7;
	color: #ffffff;
	padding: 0 0 0;
}

footer a:hover {
	opacity: 1;
}

.pos-fixed-bottom {
	padding: 0 0 0;
	position: fixed;
	z-index: 90;
	bottom: 0;
	left: 0;
	right: 0;
	background: #697979;
	border-top: 5px solid #ab9d72;
	color: #FFFFFF;
	text-align: center;
}

.pos-fixed-bottom * {
	color: #FFFFFF;
}

.footer-fixed-bottom a {
	padding: 10px 2px 4px;
	display: block;
	font-weight: 400;
	font-size: 13px;
	text-align: center;
	letter-spacing: 0;
}

.footer-fixed-bottom .img-wr {
	min-height: 27px;
}

.footer-fixed-bottom .img-wr img {
	max-width: 32px;
	max-height: 26px;
	display: block;
	margin: 0 auto;
}

.footer-fixed-bottom span {
	padding: 2px 0 0;
	display: block;
}

.footer-fixed-bottom [class*="col-"] {
	padding: 0 5px;
}

.footer-fixed-bottom [class*="col-"]+[class*="col-"] {
	border-left: 1px solid #888;
}








/* 5 - END of footer ---------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

@media screen and (max-width: 1199px) {
body {
	font-size: 14px;
	line-height: 1.65;
}
h1 {
	padding: 0 0 15px;
	font-size: 50px;
}
h2 {
	padding: 0 0 15px;
	font-size: 24px;
}
h3 {
	padding: 0 0 15px;
	font-size: 20px;
}
h4 {
	padding: 0 0 15px;
	font-size: 18px;
}
h5 {
	padding: 0 0 15px;
	font-size: 14px;
}
h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
.box-wr {
	padding: 40px 0 40px;
}
.header-top {
	padding: 10px 0 10px;
	margin: 0 0 0;
	font-size: 12px;
}
.header-top a i {
	font-size: 16px;
	margin: -2px 4px 0 0;
}
.header-top a {
	margin: 0 20px 0;
}
.navbar-nav .logo {
	margin: 0 20px 0;
	width: 160px;
}
.navbar-nav > li > a {
	padding: 4px 2px 2px;
	margin: 0 6px 0;
	font-size: 13px;
	line-height: 20px;
}
.header-bottom {
	padding: 15px 0 15px;
}
body .subnav li a {
	padding: 10px 15px 10px;
	font-size: 13px;
}
body .subnav {
	margin: 8px 8px 0;
	min-width: 180px;
}
header + * {
	padding-top: 128px;
}
.box-top-slider .img-overlay {
	min-height: 420px;
}
.box-welcome p {
	font-size: 17px;
}
.category-thumb-item h2 {
	font-size: 30px;
	letter-spacing: 0;
}
.category-thumb-item .bg-dark-gray {
	margin: 15px 15px 15px;
	padding: 10px 20px 10px;
}
h2.bordered-bottom {
	padding: 0 0 20px;
	margin: 0 0 20px;
}
.list-styled li:before {
	font-size: 20px;
	top: 1px;
}
.list-styled li {
	padding: 0 0 8px 30px;
}
.list-styled {
	padding: 0 0 15px;
}
.box-why-we {
	-webkit-background-size: contain;
	background-size: contain;
}
.box-btn-contacts .btn-main {
	padding: 12px 15px 12px;
	font-size: 18px;
	min-width: 170px;
}
body .box-testimonials {
	padding: 100px 0 70px;
	min-height: 400px;
}
.box-testimonials h4 {
	padding: 0 0 30px;
}
.news-thumb-item .img-wr {
	height: 190px;
	border-bottom: 4px solid #ab9d72;
}
.news-thumb-item p {
	line-height: 1.7;
	font-size: 13px;
}
.news-thumb-item h3 {
	font-size: 18px;
	padding: 0 0 5px;
	margin: 0 0 5px;
	height: 50px;
}
.news-thumb-item .text-wr {
	padding: 15px 15px 15px;
	height: 200px;
}
.btn-arrow {
	font-size: 30px;
	right: 15px;
	bottom: 10px;
}
.news-thumbs-items-wr {
	padding: 20px 0 0;
}
.grid-main-area {
	font-size: 18px;
	margin: 0 0 0 0;
	padding: 0 0 0;
}
.grid-main-area h2.bordered-bottom {
	padding: 0 0 15px;
	margin: 0 0 15px;
	font-size: 30px;
}
.grid-main-area p {
	padding: 0 0 15px;
	font-size: 18px;
}
.grid-main-area .list-styled {
	padding: 0 0 15px;
}
.grid-sidebar-right {
	margin: 0 0 0;
	padding: 15px 0 0 0;
}
.block-thumb-item {
	margin: 0 auto 15px;
}
.box-dairy h2 {
	font-size: 24px;
}
.dairy-item i {
	font-size: 30px;
	padding: 20px 0 0;
}
.dairy-item p {
	font-size: 14px;
}
.dairy-item h3 {
	font-size: 30px;
}
body .dairy-item {
	margin: 0 2px 10px;
	padding: 13px 15px 13px;
	width: 220px;
	border-top: 2px solid #697979;
}
.testimonials-item {
	padding: 40px 40px 40px;
	margin: 0 0 15px;
	font-size: 14px;
}
.testimonials-item p {
	padding: 0 0 15px;
}
.testimonials-items-wr .btns-wr {
	padding: 0 0 40px;
}
.testimonials-item:before, .testimonials-item:after {
	margin: 15px 15px;
	width: 30px;
	height: 28px;
}
.box-contacts .sidebar-right {
	padding: 0 0 0;
	margin: 0 0 0 20px;
}
.box-contacts .sidebar-main-area {
	padding: 20px 20px 0 0;
}
.box-contacts p {
	padding: 0 0 20px;
	font-size: 16px;
}
.slick-prev:before, .slick-next:before {
	width: 40px;
	height: 40px;
	font-size: 40px;
}
.slick-prev {
	left: 5px;
}
.slick-next {
	right: 5px;
}
.background-fixed {
	background-attachment: initial;
}
body .block-watermark {
	padding: 0 10px 0;
}
body .block-watermark h3 {
	font-size: 330px;
}
.columns-same-height-item .btn-main {
	margin: 0 auto 0;
}
.columns-same-height-item .columns-item {
	padding: 20px 40px 20px;
}




















}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 991px) {
body {
	font-size: 13px;
	line-height: 1.65;
}
h1 {
	padding: 0 0 15px;
	font-size: 40px;
}
h2 {
	padding: 0 0 15px;
	font-size: 22px;
}
h3 {
	padding: 0 0 15px;
	font-size: 18px;
}
h4 {
	padding: 0 0 15px;
	font-size: 16px;
}
h5 {
	padding: 0 0 15px;
	font-size: 13px;
}
h6 {
	padding: 0 0 15px;
	font-size: 11px;
}
.box-wr {
	padding: 35px 0 35px;
}
.header-top, .header-fixed .header-top {
	padding: 6px 0 6px;
	margin: 0 0 0;
	font-size: 11px;
}
.header-top a {
	margin: 0 10px 0;
}
.navbar-nav .logo {
	margin: 0 10px 0;
	width: 110px;
}
.nav .logo > img, .header-fixed .nav .logo > img {
	max-width: 100%;
}
.navbar-nav > li > a {
	padding: 4px 1px 2px;
	margin: 0 6px 0;
	font-size: 11px;
	line-height: 20px;
}
.header-bottom, .header-fixed .header-bottom {
	padding: 10px 0 10px;
}
header + * {
	padding-top: 90px;
}
.box-top-slider .img-overlay {
	min-height: 360px;
}
.box-welcome p {
	font-size: 15px;
}
.category-thumb-item h2 {
	font-size: 20px;
	letter-spacing: 0;
}
.category-thumb-item h3 {
	padding: 0 0 0;
	font-size: 13px;
}
.category-thumb-item h3:after {
	margin: 0 0 0 0;
	font-size: 16px;
}
.category-thumb-item .bg-dark-gray {
	margin: 10px 10px 10px;
	padding: 8px 15px 8px;
}
.border-bottom {
	border-bottom: 2px solid #ab9d72;
}
.box-why-we {
	-webkit-background-size: auto 80%;
	background-size: auto 80%;
}
.list-styled li:before {
	font-size: 18px;
	top: 2px;
}
.list-styled li {
	padding: 0 0 8px 25px;
}
.box-btn-contacts h3 {
	padding: 0 0 25px;
	display: block;
}
h2.bordered-bottom:after {
	width: 100px;
	border-bottom: 2px solid #ab9d72;
}
h2.bordered-bottom {
	padding: 0 0 15px;
	margin: 0 0 15px;
}
.news-thumbs-items-wr {
	padding: 15px 0 0;
}
.news-thumb-item .img-wr {
	height: 145px;
	border-bottom: 2px solid #ab9d72;
}
.thumb-item-date {
	padding: 8px 5px 8px;
	font-size: 12px;
	width: 48px;
}
.thumb-item-date i {
	font-size: 20px;
}
.news-thumb-item h3 {
	font-size: 15px;
	padding: 0 0 5px;
	margin: 0 0 5px;
	height: 44px;
}
.news-thumb-item p {
	font-size: 12px;
}
.btn-arrow {
	font-size: 24px;
	right: 10px;
	bottom: 5px;
}
footer {
	padding: 15px 0 15px;
	font-size: 11px;
	border-top: 2px solid #ab9d72;
}
.back-to-top {
	width: 24px;
	height: 24px;
	bottom: 80px;
	background-size: contain;
}
.slick-dots li button:before {
	font-size: 15px;
}
.pagination-wr {
	font-size: 12px;
	padding: 10px 0 5px;
}
.pagination-wr a {
	font-size: 12px;
	padding: 8px 2px 0;
	margin: 0 1px 0;
	width: 30px;
	height: 30px;
}
.pagination-wr span {
	padding: 2px 15px 0 0;
}
body .dairy-item {
	margin: 0 2px 10px;
	padding: 13px 15px 13px;
	width: 170px;
}
.dairy-item i {
	font-size: 22px;
	padding: 20px 0 0;
}
.dairy-item p {
	font-size: 11px;
}
.dairy-item h3 {
	font-size: 26px;
}
.grid-main-area {
	font-size: 13px;
}
.block-thumb-item .img-wr {
	border-bottom: 3px solid #ab9d72;
}
.btn-block:after {
	font-size: 26px;
	height: 30px;
	right: 15px;
}
.btn-block {
	font-size: 15px;
	padding: 6px 35px 8px 15px;
}
.btn-block:after {
	font-size: 26px;
	height: 28px;
	right: 15px;
}
body .btn-large {
	padding: 12px 15px 12px;
	font-size: 15px;
	line-height: 20px;
	min-width: 170px;
}
.testimonials-items-wr .btns-wr {
	padding: 0 0 35px;
}
.testimonials-item {
	padding: 40px 40px 40px;
	margin: 0 0 15px;
	font-size: 13px;
}
.box-contacts .sidebar-right p {
	font-size: 13px;
	padding: 2px 0 15px;
}
form input, form textarea, form select {
	padding: 13px 13px 13px;
	font-size: 14px;
}
form label {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 14px;
}
form label span {
	padding: 0 0 0;
	margin: 0 0 0;
	left: 18px;
	top: 15px;
}
.form-row {
	margin: 0 0 15px;
}
.box-contacts h6 {
	padding: 6px 0 1px;
	font-size: 14px;
}
.box-contacts .sidebar-main-area {
	padding: 10px 20px 0 0;
}
body .box-testimonials {
	padding: 100px 0 70px;
	min-height: 360px;
}
.columns-same-height-item .columns-item {
	padding: 20px 20px 20px;
}
header.header-compact.header-fixed .logo, header.header-compact .logo {
    margin: 10px auto 0;
    max-width: 150px;
}
body .btn-main, form input[type="submit"], form button {
    padding: 14px 25px 14px;
    margin: 0 auto 0;
    font-size: 16px;
    line-height: 20px;
    min-width: 160px;
}
header.header-compact, header.header-compact.header-fixed {
    padding: 15px 0 15px;
}
header .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
}
body .box-top-slider-inner-page h1 {
    font-size: 40px;
    font-weight: 600;
}
.box-wr:first-child:not(.box-top-slider) {
    padding-top: 100px;
}










}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
body {
	font-size: 14px;
	line-height: 1.65;
}
h1 {
	padding: 0 0 15px;
	font-size: 35px;
}
h2 {
	padding: 0 0 15px;
	font-size: 28px;
}
h3 {
	padding: 0 0 15px;
	font-size: 20px;
}
h4 {
	padding: 0 0 15px;
	font-size: 18px;
}
h5 {
	padding: 0 0 15px;
	font-size: 14px;
}
h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
.box-wr {
	padding: 30px 0 30px;
}
.navbar-toggle .icon-bar {
	position: relative;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
.navbar-toggle.active .icon-bar {
	margin: 0;
	height: 3px;
}
.navbar-toggle.active .icon-bar:nth-of-type(1) {
	top: 7px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.navbar-toggle.active .icon-bar:nth-of-type(2) {
	background-color: transparent;
}
.navbar-toggle.active .icon-bar:nth-of-type(3) {
	top: -7px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.navbar-toggle {
	padding: 0 0 0;
	margin: 20px 15px 0 0;
	border: none;
	min-height: 25px;
	position: relative;
	z-index: 5;
}
.navbar-toggle .icon-bar+.icon-bar {
	margin-top: 4px;
}
.navbar-toggle .icon-bar {
	width: 30px;
	height: 4px;
	background: #697979;
}
.logo {
	float: none;
	display: block;
	margin: 0 auto 0;
	padding: 0 0 0;
	max-width: 170px;
}
.navbar {
	margin: 0 0 0;
	padding: 0 0 0;
	float: right;
	position: static;
}
.navbar-nav > li {
	display: block;
	margin: 0 0 0;
}
.navbar-collapse {
	margin: 0 0 0;
	padding: 0 0 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #697979;
	height: 0;
	text-align: left;
	height: 100vh;
}
.navbar-nav {
	height: 100vh;
	margin: 0 0 0;
	padding: 30px 30px 30px;
}
.header-bottom, .header-fixed .header-bottom {
	padding: 11px 0 13px;
}
header + * {
	padding-top: 86px;
}
body .subnav {
	padding: 5px 0 5px 25px;
	margin: 0 0 0;
	text-align: left;
	position: static;
	background-color: #697879;
	border: 1px solid #697879;
}
.navbar-nav > li > a {
	padding: 14px 5px 14px;
	margin: 0 0 0;
	font-size: 20px;
	line-height: 20px;
	color: #ffffff;
}
.navbar-nav > li > a:hover {
	opacity: 1;
}
.nav > li > a:focus, .nav > li > a:hover {
	color: #ffffff;
}
body .subnav li a {
	padding: 5px 0 5px;
	font-size: 20px;
	font-weight: 300;
	color: #ffffff;
}
body .subnav li:not(:last-child) {
	border-bottom: none;
}
.navbar-collapse.in {
	overflow-y: auto;
}
body .subnav:before {
	display: none;
}
.box-top-slider .img-overlay {
	min-height: 300px;
}
.box-welcome p {
	font-size: 15px;
}
.category-thumb-item {
	padding: 0 0 0;
	margin: 0 0 15px;
}
.box-categories {
	padding: 30px 0 15px;
}
.box-why-we {
	-webkit-background-size: 55% auto;
	background-size: 55% auto;
	padding: 30px 0 90px;
}
.box-btn-contacts .btn-main {
	padding: 10px 15px 10px;
	font-size: 15px;
	min-width: 150px;
}
body .box-testimonials {
	padding: 50px 0 70px;
}
.box-testimonials h4 {
	padding: 0 0 20px;
}
.slick-dots {
	bottom: -30px;
}
.news-thumb-item .img-wr {
	height: auto;
}
.news-thumb-item h3 {
	font-size: 15px;
	padding: 0 0 5px;
	margin: 0 0 5px;
	height: auto;
}
.news-thumb-item .text-wr {
	padding: 15px 15px 25px;
	height: auto;
}
.news-thumb-item {
	margin: 0 0 15px;
}
body .btn-main, form input[type="submit"], form button {
    padding: 14px 25px 14px;
    font-size: 16px;
    line-height: 20px;
    min-width: 150px;
}
body .subnav li a:hover {
	background-color: transparent;
}
.pagination-wr {
	padding: 10px 0 0;
}
.grid-main-area {
	font-size: 12px;
	padding: 0 0 15px;
}
.grid-main-area .list-styled li {
	padding: 0 0 6px 25px;
}
body .dairy-item {
	margin: 0 2px 6px;
	padding: 10px 10px 6px;
	width: 148px;
}
.dairy-item i {
	font-size: 20px;
	padding: 16px 0 0;
}
.dairy-item p {
	font-size: 10px;
}
.dairy-item h3 {
	font-size: 24px;
}
.testimonials-items-wr .btns-wr .btn-main {
	margin: 0 -2px 0;
	min-width: 145px;
}
.testimonials-items-wr .btns-wr {
	padding: 0 0 30px;
}
.testimonials-item {
	padding: 25px 25px 25px;
	margin: 0 0 15px;
	font-size: 12px;
}
.box-contacts p {
	padding: 0 0 20px;
	font-size: 13px;
}
.box-contacts .sidebar-main-area {
	padding: 10px 0 0;
}
.box-contacts .sidebar-right {
	padding: 5px 0 0 35px;
	margin: 0 0 0 0;
}
.slick-prev, .slick-next {
	width: 20px;
	opacity: 1;
}
.slick-prev:before, .slick-next:before {
	width: 20px;
	height: 40px;
	font-size: 30px;
}
.navbar-nav > li > a:not(:last-child):after {
	content: "\f107";
	font-family: "FontAwesome";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	line-height: 1;
	margin: auto;
	font-size: 30px;
	height: 30px;
}
.navbar-nav > li.dropdown-active > a:not(:last-child):after {
	content: "\f106";
}
.navbar-toggle:hover {
	opacity: 1;
}
body li:hover > .subnav {
	display: none;
}
body li.dropdown-active > .subnav {
	display: block;
}
body .box-testimonials {
	padding: 100px 0 100px;
	min-height: 0;
}
body .btn-scroll-down {
	margin: 0 auto 3px;
	max-width: 50px;
	font-size: 30px;
	display: none;
}
body .block-watermark h3 {
	font-size: 140px;
}
body .block-watermark {
	padding: 15px 0 0;
}
.box-columns + .box-wr.box-columns {
	padding: 30px 0 0;
}
.columns-same-height-item:nth-child(odd) .col-sm-6:first-child {
	float: none;
}
.columns-same-height-item:nth-child(odd).image-right .col-sm-6:first-child {
	float: none;
}
.columns-same-height-item .columns-item {
	padding: 0 15px 20px;
	height: auto !important;
	display: block;
	width: auto;
	float: none;
}
.box-img + .box-columns.bg-gray {
	margin-top: 30px;
	padding-top: 30px;
}
.columns-same-height-item {
	margin: 0 0 30px;
}
.columns-same-height-item + .columns-same-height-item {
	margin-top: 30px;
}
body .box-columns, body .box-columns.bg-gray {
	padding: 30px 0 0;
}
body .btn-main-nav {
    padding: 12px 12px 12px;
    margin: 0 0 0;
}
.btn-main-nav i {
    display: none;
}
header.header-compact.header-fixed .logo, header.header-compact .logo {
    margin: 15px auto 0;
    max-width: 120px;
}
body .box-top-slider-inner-page h1 {
    font-size: 35px;
}
.box-top-slider.box-full-height .text-wr {
    height: 60vh;
    padding: 30px 0 30px;
}
.box-top-slider h1 {
    padding: 0 0 15px;
    font-size: 35px;
}
.box-top-slider h5 {
    font-size: 16px;
}
.box-welcome h1 {
    font-size: 32px;
}
.box-welcome .btn-main {
    margin: 20px auto 0;
}
.block-thumb-item:last-child {
	margin:  0 auto 15px;
}
.box-why-we h2 {
    font-size: 30px;
}
.box-why-we .list-styled {
    padding: 0 0 15px;
    font-size: 18px;
}
.box-why-we .list-styled li:before {
    font-size: 25px;
    top: 3px;
}
.box-btn-contacts h2 {
    font-size: 30px;
}
.box-btn-contacts .alignleft, .box-btn-contacts .alignright {
	float: none;
	display: block;
	margin: 0;
	text-align: center;
}
.box-top-slider .text-wr {
    height: 300px;
    padding: 100px 0 20px;
}
.box-contact .grid-main-area {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}
.block-info {
    border: 0px solid;
    padding: 30px 35px 18px 50px;
    margin: 20px 0 0 0;
}










}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 550px) {
.box-top-slider .img-overlay {
	min-height: 280px;
}



}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */
