/*** IMPORTS ***/
@import 'normalize.css';
@import 'reset.css';
@import 'typography.css';


/*** COLS ***/
.col-row {
	margin-right: -12px;
	margin-left: -12px;
}

.col {
	float: left;
	padding-right: 12px;
	padding-left: 12px;
}

.col-12 {
	width: 100%;
}

.col-9 {
	width: 75%;
}

.col-8 {
	width: 66.6666%;
}

.col-6 {
	width: 50%;
}

.col-4 {
	width: 33.3333%;
}

.col-3 {
	width: 25%;
}


/*** BUTTONS ***/
.btn {
	position: relative;
	display: inline-block;
	padding: 12px 24px;
	background-color: #7caa2e;
	border: 4px solid #5d8e08;
	font-weight: 700;
	color: #fff;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 1px solid #fff;
}

.btn--size-l {
	padding: 20px 80px;
	font-size: 1.05rem;
}


/*** RESPONSIVE VIDEO IFRAME ***/
.wp-block-embed__wrapper {
	height: 0;
	position: relative;
	padding-bottom: 56.25%;
}

	.wp-block-embed__wrapper iframe {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}


/*** FORMS ***/
.form-row {
	margin-bottom: 16px;
}

.form-label {
	display: block;
	margin-bottom: 4px;
	font-weight: bold;
}

.form-input input {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 0 !important;
	font: inherit;
	font-size: 15px;
}

.form-textarea textarea {
	width: 100%;
	height: 200px;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 0;
	font: inherit;
	font-size: 15px;
}

.form-input input:focus,
.form-textarea textarea:focus {
	border-color: #7caa2e;
	outline: none;
	box-shadow: none;
}

.form-submit input {
	padding: 12px 24px;
	background-color: #222;
	border: 0;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
}


/*** STRUCTURE STYLES ***/
.js-no-scroll {
	overflow: hidden;
}

.wrapper {
	width: 1320px;
	max-width: 100%;
	padding: 0 80px;
	margin: 0 auto;
}

.section {
	width: 100%;
	padding: 56px 0 80px;
}


/*** HEADER ***/
.header-main {
	width: 100%;
	position: relative;
	z-index: 100;
	padding: 32px 32px 20px 32px;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}

.banner-home .header-main {
	position: absolute;
	top: 0;
	left: 0;
}

	.header-main-logo {
		display: inline-block;
	}

		.header-main-logo img {
			height: 100px;
			display: block;
		}

	.header-main-nav {
		margin: 20px 0 0;
		color: #fff;
	}

		.header-main-nav ul {
			list-style: none;
		}

		.header-main-nav li {
			display: inline-block;
			position: relative;
			margin: 0 10px 10px;
			transition: 0.3s ease opacity;
		}

		.header-main-nav ul li::before,
		.header-main-nav ul li::after {
			content: "";
			position: absolute;
			right: 0;
			left: 0;
			transform: scale(0,1);
			transition: 0.3s ease all;
		}

		.header-main-nav ul li::before {
			top: -4px;
			border-top: 2px solid #7caa2e;
		}

		.header-main-nav ul li::after {
			bottom: -4px;
			border-bottom: 2px solid #7caa2e;
		}

		.header-main-nav ul:hover li {
			opacity: .5;
		}

		.header-main-nav ul li:hover {
			opacity: 1;
		}

		.header-main-nav li:hover::before,
		.header-main-nav li:hover::after {
			transform: scale(1);
		}

		.header-main-nav a {
			color: #fff;
		}

		.header-main-nav .current-menu-item::before,
		.header-main-nav .current-menu-item::after {
			transform: scale(1);
		}

	.nav-mobile-open {
		width: 28px;
		display: none;
		padding: 0;
		margin: auto 0;
		background: none;
		border: 0;
		border-radius: 0;
	}

		.nav-mobile-open span {
			height: 3px;
			display: block;
			margin-bottom: 6px;
			background-color: #fff;
		}

		.nav-mobile-open span:last-child {
			margin-bottom: 0;
		}


/*** NAV MOBILE ***/
.nav-mobile {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -100;
	opacity: 0;
	visibility: hidden;
	background-color: #ed3b2b;
	color: #fff;
	pointer-events: none;
	transition: 0.3s ease all;
}

.nav-mobile.js-is-open {
	z-index: 1000;
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

	.nav-mobile-close {
		width: 28px;
		height: 28px;
		display: block;
		position: absolute;
		top: 48px;
		right: 32px;
		z-index: 10;
		padding: 0;
		margin: 0;
		background: none;
		border: 0;
		border-radius: 0;
	}

		.nav-mobile-close span {
			height: 3px;
			display: block;
			background-color: #fff;
		}

		.nav-mobile-close span:first-child {
			transform: rotate(45deg);
		}

		.nav-mobile-close span:last-child {
			margin-top: -3px;
			transform: rotate(-45deg);
		}

	.nav-mobile-flex {
		width: 100%;
		height: 100%;
		display: flex;
	}

	.nav-mobile-menu {
		margin: auto;
		font-size: 24px;
		font-weight: 700;
		text-align: center;
		list-style: none;
	}

		.nav-mobile-menu li {
			margin: 8px 0;
		}

		.nav-mobile-menu a {
			color: #fff;
		}


/*** FOOTER ***/
.footer-main {
	width: 100%;
	position: relative;
	z-index: 1;
	padding-top: 88px;
	background-color: #ed3b2b;
	color: #fff;
}

	.footer-main .btn {
		width: 320px;
		max-width: calc(100% - 64px);
		position: absolute;
		top: 0;
		left: 50%;
		z-index: 10;
		padding-right: 0;
		padding-left: 0;
		box-shadow: 0 5px 16px -8px rgba(0,0,0,.7);
		white-space: nowrap;
		text-align: center;
		transform: translate(-50%,-50%);
	}

	.footer-main-top > div {
		width: 640px;
		max-width: 100%;
		margin: 0 auto 56px;
		/* font-size: 1.5rem; */
		font-size: 1.25rem;
		text-align: center;
	}

	.footer-main-top a {
		color: #ffd468;
	}

	.footer-main-top a:hover {
		text-decoration: underline;
	}

	.footer-main-bottom {
		display: flex;
		justify-content: space-between;
		padding: 40px 0;
		border-top: 2px solid #da2f23;
		font-size: 16px;
	}

		.footer-main-bottom-social {
			display: inline-block;
		}

			.footer-main-bottom-social img {
				width: 25px;
				display: inline-block;
				vertical-align: middle;
				margin-left: 8px;
			}

		.footer-main-bottom-trackie {
			width: 81px;
			display: inline-block;
			vertical-align: middle;
			margin-left: 20px;
		}

			.footer-main-bottom-trackie img {
				display: block;
			}


/*** TESTIMONIALS ***/
.footer-main-testimonials {
	margin-top: -20px;
	font-size: 14px;
}

	.footer-main-testimonials .splide {
		padding-bottom: 40px;
	}

	.footer-main-testimonials .slide-content {
		display: grid;
		grid-template-rows: none;
		grid-template-columns: 1fr auto;
		gap: 24px;
		padding: 32px 40px;
		margin-top: 20px;
		background-color: rgba(255,255,255,.08);
	}

	.footer-main-testimonials blockquote {
		position: relative;
		padding-top: 6px;
		margin: 0;
	}

		.footer-main-testimonials blockquote:before {
			content: "";
			width: 100px;
			height: 91px;
			position: absolute;
			top: -50px;
			left: -20px;
			z-index: 0;
			background: url(../images/icon_quote.svg) center / 100px no-repeat;
		}

		.footer-main-testimonials blockquote > * {
			position: relative;
			z-index: 1;
		}

		.footer-main-testimonials blockquote > *:last-child {
			margin-bottom: 0;
		}

	.footer-main-testimonials .img { 
		width: 200px;
		height: 200px;
		margin: 0 auto;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		border: 6px solid #ca3225;
		border-radius: 50%;
		overflow: hidden;
	}

	.footer-main-testimonials .splide__pagination {
		width: 100%;
		padding-top: 16px;
	}

		.footer-main-testimonials .splide__pagination button {
			width: 14px;
			height: 14px;
			margin: 0 4px;
			background-color: #ffd468;
			border-radius: 50%;
			opacity: 0.3;
			transition: 0.3s ease opacity;
		}

		.footer-main-testimonials .splide__pagination .is-active {
			
			opacity: 1;
		}


/*** HOME BANNER ***/
.banner {
	width: 100%;
	display: flex;
	position: relative;
	z-index: 0;
	background-color: #ed3b2b;
	overflow: hidden;
}

.banner-home {
	height: 90vh;
	min-height: 600px;
	position: relative;
	z-index: 1;
	background: url(../images/banner_home.jpg) center / cover no-repeat #f0f0f0;
}

.banner::before,
.banner::after {
	content: "";
	position: absolute;
	z-index: 0;
}

.banner::before {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,.1);
	pointer-events: none;
}

.banner::after {
	height: 400px;
	max-height: 50%;
	top: 0;
	right: 0;
	left: 0;
	background: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,0));
	pointer-events: none;
}

.banner-home::after {
	background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,0));
}

	.banner-title {
		width: 100%;
		position: relative;
		z-index: 10;
		margin: auto 0;
		color: #fff;
		text-align: center;
		text-shadow: 0 0 30px rgba(0,0,0,.7);
		transform: translateY(80%);
	}

		.banner-title .wrapper {
			width: 90%;
			min-width: 1350px;
		}

	.banner-home-title {
		text-align: left;
	}

		.banner-home-title h1 {
			float: left;
			margin: 0;
			font-size: 4.2rem;
		}

.banner-promo {
	width: auto;
	position: absolute;
	bottom: 1rem;
	right: 1rem;
}


/*** CONTACT PAGE ***/
.contact {
	display: flex;
	align-content: stretch;
	background-color: #f5f5f5;
}

	.contact-half {
		width: 50%;
	}

	.contact-bg {
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.contact-content {
		color: #ed3b2b;
	}

	.contact-form-wrap {
		width: 500px;
		max-width: 100%;
		padding: 32px 24px 24px;
		margin: 0 auto;
		background: #fff;
		box-shadow: 0 6px 15px rgba(0,0,0,0.16);
	}


/*** ORDER ONLINE ***/
.order {
	background-color: #f5f5f5;
}

	.order-form-wrap {
		width: 700px;
		max-width: 100%;
		padding: 32px 24px 24px;
		margin: 0 auto;
		background: #fff;
		box-shadow: 0 6px 15px rgba(0,0,0,0.16);
	}


/*** Product pages ***/
.wp-block-column figure.wp-block-image + figure.wp-block-image {
	margin-top: .5rem;
}


/*** PADDING/MARGIN RESET ***/
.p-0 {
	padding: 0;
}

.m-0 {
	margin: 0;
}
	
	
/*** MEDIA QUERIES ***/

/*** 1440px ***/
@media screen and (max-width: 1440px) {

	.header-main {
		font-size: 20px;
	}
	
		.header-main-logo img {
			height: 90px;
		}

	.banner-title .wrapper {
		width: 1350px;
		min-width: auto;
	}
	
}


/*** 1280px ***/
@media screen and (max-width: 1280px) {

	.header-main {
		font-size: 17px;
	}

		.header-main-logo img {
			height: 80px;
		}

	.banner-home-title h1 {
		font-size: 3.57rem;
	}

	.banner-promo {
		width: 350px;
	}
	
}


/*** 1024px ***/
@media screen and (max-width: 1024px) {

	html {
		font-size: 18px;
	}

	.wrapper {
		padding: 0 40px;
	}

	.footer-main-top > div {
		font-size: 1rem;
	}

	.banner-home-title h1 {
		font-size: 3.15rem;
	}

	.banner-promo {
		width: 300px;
	}

	.contact-half {
		width: 100%;
	}

	.contact-bg {
		display: none;
	}
	
}


/*** 800px ***/
@media screen and (max-width: 800px) {

	.header-main-logo img {
		height: 70px;
	}

	.banner-home {
		height: auto;
		min-height: auto;
		display: block;
		padding-bottom: 88px;
	}

		.banner-home .header-main {
			position: relative;
		}

	.banner-home-title {
		text-align: center;
		transform: none;
	}

		.banner-home-title h1 {
			width: 100%;
			margin: 40px 0;
			font-size: 2.73rem;
		}

		.banner-promo {
			width: 250px;
			float: right;
			position: static;
			margin: 0 1rem 0 0;
		}

	.footer-main-testimonials .slide-content {
		grid-template-rows: 1fr auto;
		grid-template-columns: none;
	}
	
}


/*** 600px ***/
@media screen and (max-width: 600px) {

	html {
		font-size: 16px;
	}

	.btn--size-l {
		padding: 20px 80px;
	}
	
	.wrapper {
		padding: 0 32px;
	}

	.header-main {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 16px 32px 16px 20px;
		padding-left: 20px;
	}

		.header-main-logo img {
			height: 60px;
		}

	.header-main-nav {
		display: none;
	}

	.nav-mobile-open {
		display: block;
	}

	.nav-mobile {
		display: block;
	}

	.footer-main-top > div {
		font-size: 1rem;
	}
	
	.banner-home {
		background-image: url(../images/banner_home_mobile.jpg);
	}

		.banner-home-title h1 {
			font-size: 48px;
		}
	
}


/*** 414px ***/
@media screen and (max-width: 414px) {

	.footer-main-bottom {
		display: block;
		text-align: center;
	}

		.footer-copyright {
			margin-bottom: 1.5rem;
		}

	.banner-home-title h1 {
		font-size: 36px;
	}

	.banner-promo {
		width: 200px;
	}
	
}


/*** 375px ***/
@media screen and (max-width: 375px) {

	.header-main-logo img {
		height: 50px;
	}

	.banner-home-title h1 {
		font-size: 30px;
	}
	
}


/*** 320px ***/
@media screen and (max-width: 320px) {

	.nav-mobile-menu {
		font-size: 20px;
	}
	
}




