/*!
Theme Name: yellowstone
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: yellowstone
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

yellowstone is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

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

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,300;1,400;1,700&display=swap');


/*======================
   02. Basic css
========================*/

@font-face {
    font-family: 'rockwellitalic';
    src: url('webfonts/mrockwell-italic-webfont.woff2') format('woff2'),
         url('webfonts/mrockwell-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'rockwellregular';
    src: url('webfonts/rock-webfont.woff2') format('woff2'),
         url('webfonts/rock-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'rockwellbold';
    src: url('webfonts/rockwell-bold-webfont.woff2') format('woff2'),
         url('webfonts/rockwell-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




html {
	font-size: 62.5%;
}

a,
button,
img {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

/*font-family: 'rockwellbold';
font-family: 'Lato', sans-serif;
font-family: 'Oswald', sans-serif;*/
body {
	line-height: 1.72;
	font-family: 'Lato', sans-serif;
	background-color: #fff;
	color: #232323;
	font-weight: 400;
	font-size: 1.8rem;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.loader3 {
	width: 6.0rem;
	height: 6.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 6.0rem;
	height: 6.0rem;
	border-radius: 100%;
	background: #FF9E18;
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 0;
	}
}

@-webkit-keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
}

/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	z-index: 999;
	width: 3.0rem;
	margin-left: auto;
	position: absolute;
	right: 2.5rem;
	top: 2.5rem;
}

.hamburger-menu span {
	background: #FF9E18;
	width: 100%;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 0.5rem;
}

.hamburger-menu .line-top.current {
	-webkit-transform: translateY(0.82rem) rotate(135deg);
	-ms-transform: translateY(0.82rem) rotate(135deg);
	transform: translateY(0.82rem) rotate(135deg);
}

.hamburger-menu .line-center.current {
	opacity: 0;
}

.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-0.82rem) rotate(-135deg);
	-ms-transform: translateY(-0.82rem) rotate(-135deg);
	transform: translateY(-0.82rem) rotate(-135deg);
}

header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	padding: 2rem 0 2.6rem;
	background-color: #232323;
}

/*sticky START CSS*/
header.sticky {
	-webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
	box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
}

.logo img {
	width: 43.3rem;
}

header .social_icon {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

#menu {
	margin-top: 3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

#menu li {
	display: inline-block;
	color: #fff;
}

#menu li a {
	font-size: 2.1rem;
	text-transform: uppercase;
	color: #FF9E18;
	padding: 0 4.2rem;
	font-weight: 500;
	line-height: 1.47;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.062rem;
}

#menu li a:hover {
	color: #D15E14;
}

#menu li a img {
	width: 2.4rem;
}

/*home_area*/
.home_area {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 51.3rem;
}

main {
	padding-top: 10rem;
}

/*cowboy_area*/
.cowboy_area {
	margin: 3.2rem 0 9.8rem;
}

.cowboy_area h1 {
	font-size: 4.8rem;
	line-height: 1.29;
	/* font-weight: 700; */
	/* font-family: 'rockwellbold'; */

	text-transform: uppercase;
	text-align: center;
}

.cowboy_area h2 {
	font-size: 3.2rem;
	font-weight: 700;
	font-family: 'rockwellbold';
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	line-height: 1;

}

.cowboy_area p {
	max-width: 56.1rem;
	padding-bottom: 2.3rem;
	font-size: 16px;
}

.cowboy_area ul li {
	font-size: 16px;
	position: relative;
	padding-left: 1.5rem;
	font-weight: 500;
}

.cowboy_area li::before {
	content: '-';
	position: absolute;
	left: 0;
	top: -0.3rem;
	font-size: 2.2rem;
	letter-spacing: 0.062rem;
}

.cowboy_area ul {
	padding-bottom: 3.2rem;
}

.cowboy_now {
	padding-top: 1.5rem;
	border-top: 0.1rem solid #979797;
	max-width: 52.1rem;
}

.cowboy_now h3 {
	font-size: 2.2rem;
	color: #D15E14;
	letter-spacing: 0.062rem;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	max-width: 18.2rem;
}

.cowboy_now h3 span {
	color: #232323;
}

.cow_img {
	max-width: 57.6rem;
	width: 100%;
}

.cow_img_2 {
	max-width: 58rem;
	width: 100%;
}

.cowboy_now img {
	max-width: 21.9rem;
}

/*yellow_right*/
.yellow_right {
	background-color: #232323;
	height: 100%;
	text-align: center;
	padding: 15rem 6.8rem;
}

.yellow_right img {
	max-width: 27rem;
}

.yellow_right h3 {
	color: #FF9E18;
	font-size: 2.2rem;
	margin-top: 4rem;
}

.yellow_man {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	width: 100%;
	height: 100%;
	padding-top: 14.8rem;
	padding-bottom: 14.8rem;
}

.yellow_left {
	max-width: 48rem;
	background-color: rgba(35, 35, 35, 0.75);
	padding: 4.2rem 7.5rem;
}

.yellow_left h2 {
	font-size: 2.7rem;
	color: #fff;
	font-weight: 700;
	line-height: 1.15;
	font-family: 'rockwellbold';
}

.yellow_left h3 {
	font-size: 2.2rem;
	line-height: 1.72rem;
	color: #fff;
	font-family: 'rockwellbold';
	text-align: right;
}

/*footer*/
.social_icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.social_icon a:not(:last-child) {
	margin-right: 2.5rem;
}

.social_icon a {
	width: 3.2rem;
	height: 3.2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.social_icon a:hover img {
	opacity: 0.8;
}

.social_icon a img {
	width: 3.2rem;
}

.footer_top {
	background-color: #FF9E18;
	padding-bottom: 15rem;
}

.footer_top h3 {
	font-size: 2.9rem;
	color: #232323;
	margin-bottom: 1.7rem;
	font-weight: 400;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
}

.footer_top p {
	font-size: 1.6rem;
	max-width: 48.7rem;
	letter-spacing: 0.03rem;
	line-height: 1.13;
}

.footer_bottom {
	background-color: #232323;
	padding: 1rem 0;
}

.footer_wap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer_first {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 4rem;
}

.footer_bottom img {
    max-height: 25px;
    padding-right: 5px;
}

.footer_first p {
	font-size: 1.6rem;
	color: #fff;
	letter-spacing: 0.062rem;
	margin-left: 2rem;
}

.footer_secd {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer_secd a {
	font-size: 1.6rem;
	color: #FF9E18;
	letter-spacing: 0.062rem;
}

.footer_secd a:not(:last-child) {
	margin-right: 2.5rem;
}

.footer_secd a:hover {
	color: #fff;
}

/*.f_input input {
    width: 100%;
    height: 5rem;
    color: #000;
    border-radius: 0.3rem;
    padding: 1.8rem 1.2rem 0.5rem;
    position: relative;
    border: 0.1rem solid #DDDDDD;
    font-size: 1.6rem;
}
.f_input label {
	position: absolute;
	left: 1.2rem;
	top: 50%;
	font-weight: 300;
	font-size: 1.6rem;
	color: #7C8495;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.f_input input:focus + label,
.f_input input:valid + label{
	top: 30%;
	font-size: 1.2rem;
}*/
.button {
	background-color: #fff;
	display: inline-block;
	max-width: 175px;
	color: #232323;
	line-height: 1;
	border: none;
	border-radius: 0.3rem;
	height: 5rem;
	margin-left: 0.8rem;
}

.button-prod {
	background-color: #fff;
	display: inline-block;
	/* max-width: 175px; */
	color: #232323;
	line-height: 1;
	border: none;
	border-radius: 0.3rem;
	height: 5rem;
	margin-left: 0.8rem;
	padding: 1.5rem 4rem 1.1rem;
	min-width: 170px;
}

.yell_btn {
	background-color: #FF9E18;
}

.form_wapper .button,
.button {
	margin-left: 0.8rem;
}

.button:hover,
.button-prod:hover {
	background-color: #D15E14;
	color: #fff;
}

.form_wapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 2.5rem;
}

/*return-to-top START CSS*/

.back-to-top {
	font-size: 2.4rem;
	width: 4.5rem;
	height: 4.5rem;
	line-height: 4.5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: #232323;
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}

/*carousel_area*/
.slider1  .owl-nav button, .slider2  .owl-nav button  {
	position: absolute;
	top: 50%;
	width: 0%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: transparent;
}

.slider1 .owl-nav button.owl-prev, .slider2 .owl-nav button.owl-prev {
	left: 4rem;
}

.slider1 .owl-nav button.owl-next, .slider2 .owl-nav button.owl-next {
	right: 4rem;
}

.owl-nav button img {
	width: 2.6rem;
}

#sync1 {padding-bottom:8px;}

/*product_box*/
.comming_soon {
	padding: 6rem 0 13rem;
}

.comming_soon h2 {
	text-align: center;
	font-size: 4.8rem;
	line-height: 1.27;
	color: #414141;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'rockwellbold';
	letter-spacing: 0.062rem;
}

.product_box {
	text-align: center;
}

.product_box h3 {
	font-size: 2.8rem;
	line-height: 1.28;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 1rem;
	font-family: 'rockwellbold';
}

.product_box h3 span {
	color: #FF9E18;
}

.yellow_prod {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	z-index: 1;
}

.yellow_prod::before {
	content: '';
	position: absolute;
	z-index: -1;
	width: 50%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(35, 35, 35, 0.75);
}

.yellow_prod h1 {
	font-size: 4.2rem;
	line-height: 1.28;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'rockwellbold';
	max-width: 43.5rem;
	padding: 10rem 0;
	margin-top: 10rem;
	color: #fff;

}

/*landing_page*/
.landing_page h1 {
	max-width: 100%;
	text-align: left;
	padding: 10.9rem 0 0.5rem;
}

.landing_page h2 {
	font-size: 2.4rem;
	line-height: 1.25;
	letter-spacing: 0.062rem;
	padding-bottom: 2.3rem;
	text-transform: capitalize;
}


.landing_page .landing_cont {
	padding-bottom: 11rem;
}

.landing_cont {
	color: #fff;
	max-width: 54rem;
}

/*land_card*/
.landing_wapper {
	margin: 3rem 0 11rem;
}

.land_card {
	text-align: center;
	padding: 1.7rem 2.4rem;
	height: 100%;
	border: 0.1rem solid transparent;
	position: relative;
	overflow: hidden;
}

.land_card a {
	position: absolute;
	left: -100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.land_card:hover.land_card a {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.land_card:hover {
	border: 0.1rem solid #707070;
}

.land_card:hover img {
	opacity: 0.25;
}

.land_text {
	margin-top: 2px;
	color: #FF9E18;
}

.land_text h3 {
	font-size: 2.8rem;
	line-height: 1.28;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'rockwellbold';
}

.land_text h4 {
	font-size: 2.1rem;
	line-height: 1.47;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
}

.land_friends {
	text-align: center;
	justify-content: center;
}

.land_friends h6 {
	font-size: 1.52rem;
    line-height: 1.46;
    text-transform: uppercase;
    letter-spacing: 0.062rem;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    color: #592E2C;
    font-weight: bold;
	padding-bottom: 9px;
}




.land_mid {
	display: -webkit-box;
	display: -ms-flexbox;
	border-top: 0.1rem solid #979797;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 20px;
}

.land_mid h4 {
	font-size: 3.2rem;
	line-height: 1.46;
	text-transform: uppercase;
	letter-spacing: 0.062rem;
	font-family: 'Oswald', sans-serif;
	text-align: center;
	color: #592E2C;
}

.land_card .button {
	white-space: nowrap;
}

.seas_card {
	padding: 1.7rem 0;
}

/*brand_wap*/
.brand_wap img {
	max-width: 35rem;
	padding-bottom: 3.5rem;
}

.brand_wap h4 {
	font-size: 3.2rem;
	line-height: 1.46;
	text-transform: uppercase;
	letter-spacing: 0.062rem;
	font-family: 'Oswald', sans-serif;
	max-width: 47rem;
	margin: 0 auto;
	padding: 3.5rem 6rem 0;
	border-top: 0.1rem solid #979797;
	color: #592E2C;
}

/*search_area*/
.search_area {
	margin-top: 10rem;
	padding: 8rem 0 16.5rem;
}

.search_area h2 {
	text-align: center;
	font-size: 2.6rem;
	line-height: 1;
	color: #4A4A4A;
	font-weight: 700;
	font-family: 'Oswald', sans-serif;
	padding: 0 12rem 1.8rem;
	border-bottom: 0.1rem solid #979797;
	display: inline-block;
}

.search_top {
	text-align: center;
}

.search_wap {
	padding-top: 7.3rem;
	max-width: 90rem;
	margin: 0 auto;
}

.search_wap .media img {
	width: 19.2rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 4rem;
}

.search_wap .media-body h5 {
	font-size: 2.6rem;
	line-height: 1.15;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'rockwellbold';
	color: #FF9E18;
}

.search_wap .media-body h5 a {
	color: #FF9E18;
}

.search_wap .media-body h5 a:hover {
	color: #D15E14;
	text-decoration: underline;
	
}

.search_wap .media-body p {
	font-size: 1.8rem;
	font-weight: 600;
}

.search_wap .media:not(:last-child) {
	margin-bottom: 10rem;
}

/*about_wapper*/
.about_wapper {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 51.7rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 20rem;

}

.about_wapper a img {
	width: 7rem;
}

.about_us {
	padding: 6rem 0 4rem;
}

.about_us h2 {
	line-height: 1.28;
	font-size: 4.2rem;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'rockwellbold';
	letter-spacing: 0.062rem;
}

.extra_padd p:not(:last-child) {
	margin-bottom: 3rem;
	font-size: 2rem;
}

.about_us img {
	height: 36.5rem;
	-o-object-fit: cover;
	object-fit: cover;
}


/* campaing landing page */

.campaign_page {
	padding: 6rem 0 4rem;
}

.campaign_page h2 {
	line-height: 1.28;
	font-size: 4.2rem;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'rockwellbold';
	letter-spacing: 0.062rem;
}


.campaign_page img {
    height: 400px;
    width: 333px !important;
}

.form_submission_error {display:none;}

.campaign_area {
	background-color: #232323;
	padding-bottom: 8.8rem;
	color: #fff;
	padding-left:10px;
	padding-right:10px;
}
@media only screen and (min-device-width: 1200px){
	.campaign_area {
	padding-left: 15%;
	padding-right: 15%;

}}


.gform_wrapper  a {
    color: #FF9E18;
  
}

.campaign_area h2{
	font-size: 2.9rem;
    color: #FF9E18;
    margin-bottom: 1.7rem;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-align: center;
}

.campaign_left h2 {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 2.6rem;
	font-family: 'rockwellbold';
	text-transform: uppercase;
	letter-spacing: 0.062rem;
}

.campaign_area p { text-align: center;
    font-size: 1.1em;}

.campaign_left h3 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 2.6rem;
    font-family: 'rockwellbold';
    text-transform: uppercase;
    letter-spacing: 0.062rem;
	margin: 3.8rem 0 2.1rem;
}

.lats_left a {
	color: #fff;
}

.campaign_left a:hover {
	color: #FF9E18;
}

.campaign_area .form_wapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.campaign_area .form_wapper input {
	padding-bottom: 2.3rem;
}


/* Gravity Forms Campaign */


fieldset {
/* min-width: 0; */
/* padding: 0; */
margin: 0;
border: 0;
padding-bottom: 15px;
}

input[type=checkbox], input[type=radio] {
	margin: 9px;
    transform: scale(1.5);
    clear: both;
}
@media only screen and (max-device-width: 800px){

input[type=checkbox], input[type=radio] {
float:left;
}}


legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    padding-top: 15px;
    line-height: inherit;
    color: inherit;
    white-space: normal;
    font-size: 20px;
	font-weight: bold;
}

label {
    display: contents;
    margin-bottom: 0.5rem;
    font-size: 17px;
}

/*lats_area*/
.lats_area {
	background-color: #232323;
	padding-bottom: 8.8rem;
	color: #fff;
	font-size: 2rem;
	
}

.lats_left h2 {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 2.6rem;
	font-family: 'rockwellbold';
	text-transform: uppercase;
	letter-spacing: 0.062rem;
}

.lats_left h3 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 2.6rem;
    font-family: 'rockwellbold';
    text-transform: uppercase;
    letter-spacing: 0.062rem;
	margin: 3.8rem 0 2.1rem;
}

.lats_left a {
	color: #fff;
}

.lats_left a:hover {
	color: #FF9E18;
}

.lats_area .form_wapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.lats_area .form_wapper input {
	padding-bottom: 2.3rem;
}

.f_name input,
.f_sub input,
.f_input input {
	width: 100%;
	height: 5rem;
	color: #000;
	border-radius: 0.3rem;

	position: relative;
	border: 0.1rem solid #DDDDDD;
	font-size: 1.6rem;
}

.ab_input textarea {
	width: 100%;
	height: 14.2rem;
	color: #000;
	border-radius: 0.3rem;
	padding: 1.8rem 1.2rem 0.5rem;
	border: 0.1rem solid #DDDDDD;
	font-size: 1.6rem;
	resize: none;
}

.f_name label,
.f_sub label,
.f_input label {
	position: absolute;
	left: 1.2rem;
	top: 50%;
	font-weight: 300;
	font-size: 1.6rem;
	color: #7C8495;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.f_name input:focus+label,
.f_name input:valid+label {
	top: 30%;
	font-size: 1.2rem;
}

.f_input input:focus+label,
.f_input input:valid+label {
	top: 30%;
	font-size: 1.2rem;
}

.f_sub input:focus+label,
.f_sub input:valid+label {
	top: 30%;
	font-size: 1.2rem;
}

.ab_input div {
	margin-bottom: 2.3rem;
}

/*detail_wapper*/
.detail_wapper {
	position: relative;
	z-index: 1;
	margin-top: 10rem;
}

.detail_wapper>img {
	position: absolute;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center center;
	object-position: center center;
	width: 100%;
	height: 49rem;
	z-index: -1;
	opacity: 0.2;
}

.breadcrumb {
	padding: 2rem 0 0 2.4rem;
	margin-bottom: 0rem;
	background-color: transparent;
	border-radius: 0;
}

.breadcrumb-item a,
.breadcrumb-item {
	font-size: 1.6rem;
	line-height: 1.18;
	color: #592E2C;
	letter-spacing: 0.062rem;
}

.breadcrumb-item.active {
	color: #592E2C;

}

.breadcrumb-item+.breadcrumb-item::before {
	color: #592E2C;
	content: ">";
}

.radio_item input {
	display: none;
}

.radio_item label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: 1.14;
	color: #232323;
	font-size: 1.8rem;
	letter-spacing: 0.062rem;
	font-weight: 700;
}

.radio_item label span {

		width: 5px;
		height: 5px;
		border-radius: 50%;
		border: 0.1rem solid #232323;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		position: relative;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		margin-right: 1.0rem;
		background: rgb(97, 97, 97);
}

.radio_item label span::before {
	content: '';
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background-color: #232323;
	opacity: 0;
	display: block;
}

.radio_item input:checked+label span::before {
	opacity: 1;
}

.details_right .radio_item:not(:last-child) {
	margin-bottom: 10px;
	padding-top: 10px;
}

.details_right h2 {
	font-size: 4.2rem;
	font-weight: 700;
	line-height: 1.28;
	margin-bottom: 1.2rem;
	font-family: 'rockwellbold';
	text-transform: uppercase;
	letter-spacing: 0.062rem;
}

.details_right h3 {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.14;
	margin-bottom: 2.4rem;
	text-transform: uppercase;
	letter-spacing: 0.062rem;
}

.line_breck P {
	font-size: 1.9rem;
	line-height: 1.93;
	max-width: 57rem;
	font-weight: 600;
	margin-bottom: 3.5rem;
}

.accordian_content .accordion_btn {
	width: 100%;
	padding: 2.4rem 0;
	font-size: 3.2rem;
	text-decoration: none;
	text-align: left;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.062rem;
	background-color: transparent;
	font-family: 'Oswald', sans-serif;
	color: #FF9E18;
	border: none;
	border-top: 0.1rem solid #979797;
}

.line_breck h5 {
	font-size: 2.4rem;
	line-height: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.062rem;
	font-family: 'Oswald', sans-serif;
	padding: 2.4rem 0;
	border-top: 0.1rem solid #979797;
	border-bottom: 0.1rem solid #979797;
}

.details_right .land_card {
	padding: 1.7rem 0rem;
}

.details_right .land_text h3 {
	margin-bottom: 0.5rem;
	font-size: 2.2rem;
}

.line_breck {
	margin-top: -35rem;
	margin-bottom: 11.6rem;
}

.header_two .logo img {
	width: 24.3rem;
	margin-top: -3rem;
}

.header_two .social_icon a img {
	width: 2.4rem;
}

.header_two .social_icon a:not(:last-child) {
	margin-right: 1.2rem;
}

.header_two .social_icon {
	padding-right: 1.6rem;
}

/* SEARCH BOX TOP */
.header_two .social_icon a:first-child{
	border-right: 0.1rem solid #fff;
	padding-right: 1.2rem;
} 

/*modal*/
.modal-header {
	padding: 1rem;
}

.modal-header .close {
	font-size: 3.5rem;
}

.form-control, #input_4_1, #input_5_3 {
	height: calc(2.5em + .75rem + .2rem);
	padding: 0.5rem 0.75rem;
	font-size: 1.6rem;
	max-width: 650px;
	width:350px;
}

#field_5_10, #field_2_6, .gform_heading, #gform_5_validation_container {display:none;}

.btn {
	padding: .375rem 2.75rem;
	font-size: 1.6rem;
}

.detail_wapper #sync2 .item img {
	height: 5.9rem;
	-o-object-fit: contain;
	object-fit: contain;
	width: 5rem;
}

.detail_wapper #sync1 .item img {
	height: 73rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.seasoning_det_wap #sync1 .item img {
	height: 57rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.seasoning_det_wap .line_breck {
	margin-top: -23rem;
}

.seasoning_det_wap .details_right h3 {
	max-width: 60rem;
}

.line_breck .land_img img {
	height: 24.8rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.slider1 .owl-dots, .slider2 .owl-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 0.5rem;
	-moz-column-gap: 0.5rem;
	column-gap: 0.5rem;
}

.slider1 .owl-dots .owl-dot, 
.slider2 .owl-dots .owl-dot{
	background-color: rgba(255, 158, 24, 0.3);
	width: 100%;
	height: 2rem;
	padding: 0.1rem;
}

.owl-dots {display:none}

.slider1 .owl-dots .owl-dot.active, 
.slider2 .owl-dots .owl-dot.active {
	background-color: #FF9E18;
}

/*where_buy_area*/
.where_buy_area {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	/* height: 376px; */
	/* padding-top: 10rem; */
	position: relative;
	z-index: 1;
}

.where_buy_area::before {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 0.8);
}

.where_buy_area h1 {
	font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 2.6rem;
    font-family: 'rockwellbold';
    text-transform: uppercase;
    letter-spacing: 0.062rem;
	color: #4A4A4A;
	text-align: center;
	padding-top: 8rem;
	max-width: 650px;
	margin-left: auto;
    margin-right: auto;
}

.stores_input {
	border: 0.1rem solid #D6D6D6;
	margin-top: 3.8rem;
	padding: 2.1rem 1.7rem 1.6rem;
	width: 80rem;
	margin-left: auto;
	margin-right: auto;
}

.search_input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.search_input input:first-child {
	width: 20.1rem;
	border: 0.3rem;
	font-size: 1.8rem;
	padding-left: 5px;
	line-height: 1.16;
	color: #000;
	background-size: 1.7rem;
	background-repeat: no-repeat;
	background-position: 2rem center;
	height: 4.5rem;
}

.search_input input {
	font-size: 1.6rem;
	background-color: #fff;
	color: #4A4A4A;
	padding: 1.3rem 3.6rem 1.3rem 2.1rem;
	border: none;
	border-radius: 0.3rem;
	height: 4.5rem;
	width: 16.8rem;
}

.search_input button {
	height: 4.5rem;
}

.search_input select {
	width: 13.8rem;
	font-size: 1.6rem;
	height: 4.5rem;
	border-radius: 0.3rem;
}

.search_input h4 {
	font-size: 1.8rem;
	color: #4A4A4A;
	padding: 0 1.4rem;
	position: relative;
}

.search_input h4::after {
	content: '';
	width: 0.1rem;
	position: absolute;
	height: 390%;
	left: 0;
	top: -3.4rem;
	background-color: #D6D6D6;
}

.search_input h4::before {
	content: '';
	width: 0.1rem;
	position: absolute;
	height: 390%;
	right: 0;
	top: -3.4rem;
	background-color: #D6D6D6;
}

.where_buy_area .accordian_content .accordion_btn {
	font-size: 1.6rem;
	line-height: 1.43;
	border: none;
	color: #4A4A4A;
	font-family: 'Lato', sans-serif;
	text-transform: capitalize;
}

.where_buy_area .accordian_content .accordion_btn i {
	margin-left: 1rem;
	font-size: 1.5rem;
}

.where_buy_area .accordion {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
}

.stores_input input::-webkit-input-placeholder {
	color: #232323;
}

.stores_input input::-moz-placeholder {
	color: #232323;
}

.stores_input input:-ms-input-placeholder {
	color: #232323;
}

.stores_input input::-ms-input-placeholder {
	color: #232323;
}

.stores_input input::placeholder {
	color: #232323;
}

.showing_area iframe {
	width: 100%;
	height: 76rem;
}

.show_box {
	border: 0.1rem solid #9B9B9B;
	margin-bottom: 2rem;
}

.show_cont {
	padding: 1.8rem 1.6rem;
}

.show_cont h4 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	line-height: 1.8;
}

.show_cont h3 {
	font-size: 1.6rem;
	line-height: 1.43;
	font-weight: 700;
	text-transform: uppercase;
}

.show_cont p {
	font-size: 1.6rem;
	line-height: 1.43;
}

.show_cont a {
	font-size: 1.4rem;
	line-height: 1.64;
	color: #000;
}

.showing_area h2 {
	font-size: 2.2rem;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.view_buy a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 0.1rem solid #E6E6E6;
	font-size: 1.6rem;
	line-height: 1.43;
	padding: 1.4rem;
	width: 100%;
	color: #000;
}

.view_buy a img {
	width: 1rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-left: 3rem;
}

.view_buy .buy2 img {
	margin-left: 5rem;
}

.showing_area {
	margin-bottom: 11.7rem;
}

.wal_wap h2 {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.46;
	text-transform: uppercase;
	letter-spacing: 0.062rem;
	font-family: 'Oswald', sans-serif;
	color: #592E2C;
	margin-bottom: 3.8rem;
}

.wal_images {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.wal_images img {
	width: 28rem;
}

.wal_images .kro {
	width: 21.4rem;
}

.wal_images a {
	margin: 0 2rem;
}

.wal_area {
	margin-bottom: 11.7rem;
}

.landing_wapper .land_img img {
	height: 40rem;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.detail_wapper #sync2 .current .item img {
	border: 0.1rem solid #979797;
}

.detail_wapper #sync2 {
	max-width: 37.8rem;
	margin-left: auto;
	margin-right: auto;
}

.landing_wapper_one .land_img img {
	height: 30rem;
}


.btn {
	padding: 0.375rem 2.75rem;
	font-size: 1.6rem;
	background-color: #FF9E18;
	max-width: 150px;
	margin-left: 5px;
	margin-top: 10px;
}


.default-layout p {
	padding-bottom: 2rem;
	line-height: 1.72;
	font-family: 'Lato', sans-serif;
	background-color: #fff;
	color: #232323;
	font-weight: 400;
	font-size: 1.8rem;
} 

.default-layout p.b {
	font-style: italic;
} 


.default-layout .center {
	display: block;
	margin-left: auto;
	margin-right: auto;
    height: auto;

}
.default-layout strong {
	font-family: 'Lato', sans-serif;
	font-weight: 700 !important;
}




.default-layout ul {

	list-style-type: "- ";
	padding-left:10px;
	padding-bottom:15px;
}

.default-layout ul li {
	position: relative;
	line-height: 1.72;
	font-family: 'Lato', sans-serif;
	background-color: #fff;
	color: #232323;
	font-weight: 400;
	font-size: 1.8rem;

}


.default-layout {
	padding-top:10rem; 
	padding-bottom: 4rem;
	padding-left: 15%; 
	padding-right: 15%

}



.default-layout h2 {
	line-height: 1.28;
	font-size: 4.2rem;
	font-weight: 700;
	font-family: 'Oswald', sans-serif
}

.default-layout h3 {
	line-height: 1.28;
	font-size: 3.2rem;
	font-family: 'Oswald', sans-serif
}

.default-layout h4 {
	line-height: 1.28;
	font-size: 2.7rem;
	font-family: 'Oswald', sans-serif
}

.default-layout h5 {
	line-height: 1.28;
	font-size: 2.2rem;
	font-family: 'Oswald', sans-serif
}

.default-layout img {
	height: 36.5rem;
	-o-object-fit: cover;
	object-fit: cover;
}

.mc4wp-form-185 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 2.5rem;
}


/* OVERRIDES */

.media-body {
    -ms-flex: 1;
    flex: 1;
    text-align: left;
}

.gfield--type-honeypot {display:none}

