/*
Theme Name: Paul Tehrani
Theme URI: 
Version: 1.0
Author: Scott Flaherty // Acariah Creative
Author URI: 
*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	max-width: 100%;
	height: auto;
}

html,
body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 1.4rem;
	--color-blue: #3f586e;
	--color-dark-blue: #142533;
	--color-orange: #fda13f;
	--color-black: #070d12;
	--color-black-light: #2d2d2d;
	--color-line: #d8d8d8;
	color: var(--color-black);
}

.orange {
	color: var(--color-orange);
}

.container {
	max-width: calc(100% - 2rem);
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 768px) {
	.container {
		width: calc(750px - 2rem);
	}
}

@media (min-width: 992px) {
	.container {
		width: calc(970px - 2rem);
	}
}

@media (min-width: 1200px) {
	.container {
		width: calc(1170px - 2rem);
	}
}

header {
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 99;
	height: 70px;
	transition: all 0.3s;
	background: #fff;
	border-bottom: solid 1px transparent;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
}

.header.container {
	display: flex;
	align-items: center;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.header__logo a {
	display: block;
}

header .header__logo img {
	height: 25px;
	width: auto;
	display: block;
}

.header__menu-button {
	background: none;
	border: solid 1px #fff;
	color: #fff;
	font-size: 20px;
	line-height: 30px;
	margin-left: auto;
}

header .header__menu-button {
	color: var(--color-black);
	border: solid 1px var(--color-black);
}

.header__menu a {
	position: relative;
	color: var(--color-black);
}

.header__menu a:hover:after {
	transform: scale(1);
	transition: all 0.3s;
}

.header__menu a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fff;
	opacity: 1;
	transform: scale(0);
	transform-origin: center;
	transition: opacity 0.3s, transform 0.3s;
}

header .header__menu ul li.current_page_item a:after,
.header__menu ul li.current_page_item a:after {
	transform: scale(1);
	transition: all 0.3s;
}

section#content {
	margin-top: 70px;
}

header .header__menu-close {
	color: #fff;
	border: solid 1px #fff;
	position: absolute;
	top: 1rem;
	right: 1rem;
}

@media (max-width: 1024px) {
	.header__menu {
		position: fixed;
		right: -75vw;
		background: var(--color-blue);
		width: calc(75vw - 2rem);
		padding-left: 1rem;
		padding-right: 1rem;
		z-index: 99;
		padding-top: 4rem;
		padding-bottom: 2rem;
		height: calc(100vh - 6rem);
		top: 0;
		transition: right 0.3s;
	}
	.header__menu.active {
		right: 0px;
		transition: all 0.3s;
		box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.2);
	}
	.header__menu ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.header__menu ul li a {
		font-size: 24px;
		color: #fff;
		font-weight: bold;
		display: block;
		padding-left: 0;
		padding-right: 20px;
		padding-top: 1.4rem;
		padding-bottom: 1.4rem;
		transition: all 0.15s;
		text-decoration: none;
	}
	.header__menu ul li a:hover {
		text-decoration: none;
		color: var(--color-blue);
		transition: all 0.15s;
	}
	.header__menu ul li:last-of-type a {
		border: none;
	}
}

@media (min-width: 1025px) {
	.header__menu a:after {
		background-color: var(--color-blue);
	}

	.header__menu-button {
		display: none;
	}
	.header__menu-close {
		display: none;
	}
	header .col-md-12 {
		display: flex;
		width: 100%;
		align-items: center;
	}
	header .header__menu {
		margin-left: auto;
	}
	header .header__menu ul {
		margin: 0;
		padding: 0;
		list-style: none;
		display: flex;
		column-gap: 15px;
	}
	header .header__menu ul li {
		display: block;
	}
	header .header__menu ul li a {
		display: block;
		font-size: 1rem;
		font-weight: bold;
		text-transform: uppercase;
		padding-left: 5px;
		padding-right: 5px;
		text-decoration: none;
		padding-top: 5px;
		padding-bottom: 5px;
	}
}

.button {
	display: inline-block;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 25px;
	padding-right: 25px;
	border-radius: 3px;
	transition: all 0.15s;
}
.button:hover,
.button:focus {
	text-decoration: none;
	color: #fff;
	transition: all 0.15s;
}
.button.primary {
	background: var(--color-blue);
}
.button.primary:hover {
	background: var(--color-black);
}

.button.secondary {
	background: var(--color-orange);
}
.button.secondary:hover {
	background: var(--color-black);
}

.banner {
	background-size: cover;
	background-position: center center;
	min-height: calc(100vh - 70px);
	display: flex;
	border-bottom: solid 3rem var(--color-blue);
	color: #fff;
	box-sizing: border-box;
}

.banner.small {
	min-height: 30vh;
	border-bottom: solid 1rem var(--color-blue);
}

.banner .container {
	background: rgba(0, 0, 0, 0.4);
}

.banner .container,
.banner .container .row {
	display: flex;
	align-items: center;
}

.banner .banner__content-wrapper {
	position: relative;
	padding: 0;
}

.banner__content-title > * {
	font-size: 2rem;
	line-height: 3rem;
	font-weight: bold;
}

.banner__content-title {
	font-size: 5rem;
	font-weight: bold;
	text-transform: uppercase;
}
.banner__content-content {
	margin-top: 30px;
	font-size: 1.75rem;
}
.banner__content-ctas {
	margin-top: 30px;
}

.banner__content-ctas a {
	font-size: 1rem;
	line-height: 2rem;
	padding-left: 2rem;
	padding-right: 2rem;
	padding-top: 0.6rem;
	padding-bottom: 0.6rem;
}

.banner .banner__content-wrapper {
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	padding: 30px;
}

.banner .banner__content-wrapper:after {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 3px;
	width: 140px;
	background: #fff;
	content: '';
}

.banner .banner__content-wrapper:before {
	position: absolute;
	top: 0;
	left: 0;
	height: 65%;
	width: 3px;
	background: #fff;
	content: '';
}

@media (min-width: 768px) {
	.banner {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.banner.small {
		min-height: 40vh;
	}

	.banner .container {
		background: none;
	}

	.banner__content-title > * {
		font-size: 3rem;
		line-height: 4rem;
		font-weight: bold;
	}

	.banner__content-title {
		font-size: 2.4rem;
		font-weight: bold;
		text-transform: uppercase;
	}

	.banner__content-ctas {
		margin-top: 30px;
	}
}

@media (min-width: 1200px) {
	.banner__content-title > * {
		font-size: 4rem;
		line-height: 5rem;
		font-weight: bold;
	}
}

.about {
	margin-bottom: 3rem;
	margin-top: 3rem;
}

.about .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.about__content,
.about__image {
	width: 100%;
}

.about__image img {
	margin-bottom: 30px;
	width: 100%;
	height: auto;
}

.about__title {
	font-size: 2rem;
	font-weight: bold;
	position: relative;
	margin-bottom: 40px;
}

.about__title:after {
	content: '';
	width: 200px;
	position: absolute;
	bottom: -15px;
	height: 3px;
	background: var(--color-orange);
}

.about__title p {
	margin: 0;
}

.about__content p {
	line-height: 2rem;
}

.about__ctas {
	margin-top: 30px;
}

@media (min-width: 768px) {
	.about {
		margin-bottom: 5rem;
		margin-top: 5rem;
	}
}

@media (min-width: 1025px) {
	.about__content,
	.about__image {
		width: calc(50% - 1rem);
	}

	.about__image {
		padding-right: 1rem;
	}

	.about__content {
		padding-left: 1rem;
	}

	.about__image img {
		margin: 0;
	}

	.about__title {
		margin-bottom: 80px;
	}

	.about__ctas {
		margin-top: 80px;
	}
}

@media (min-width: 768px) {
	.subscription {
		text-align: center;
		padding-top: 30px;
		padding-bottom: 30px;
		width: 100%;
		background: var(--color-dark-blue);
		height: 200px;
		color: #fff;
	}
}

.four__column {
	padding-top: 60px;
	padding-bottom: 60px;
}

.four__column-title--main {
	text-align: center;
	font-size: 2.4rem;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 30px;
	position: relative;
}

.four__column-title--main:after {
	content: '';
	width: 200px;
	height: 3px;
	position: absolute;
	bottom: -15px;
	left: calc(50% - 100px);
	background: var(--color-blue);
}

.four__column-subtitle {
	text-align: center;
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 30px;
}

.four__column-title {
	font-weight: bold;
	font-size: 1.75rem;
}

.four__column-image {
	margin-bottom: 15px;
}

.four__column-cta {
	margin-top: 30px;
	text-align: center;
}

.four__column .col-md-3 {
	margin-bottom: 30px;
}

.four__column .col-md-3:last-of-type {
	margin-bottom: 0;
}

@media (min-width: 1025px) {
	.four__column-title--main {
		font-size: 4rem;
	}

	.four__column .col-md-3 {
		margin-bottom: 0;
	}
}

.testimonial__title {
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 60px;
}

.testimonial__title:after {
	content: '';
	width: 200px;
	height: 3px;
	position: absolute;
	bottom: -15px;
	left: calc(50% - 100px);
	background: var(--color-orange);
}

.testimonial__wrapper {
	display: flex;
	align-items: center;
}

.testimonial__image {
	display: none;
}

.testimonial__content {
	width: 100%;
	text-align: center;
	font-style: italic;
	font-size: 1rem;
	line-height: 2rem;
}

.testimonial__content p {
	margin-bottom: 20px;
}

.testimonial__content p:last-of-type {
	margin-bottom: 0;
}

.testimonial__attribution {
	margin-top: 15px;
	font-style: normal;
}

.lSSlideOuter .lSPager.lSpg > li.active a,
.lSSlideOuter .lSPager.lSpg > li:hover a {
	color: var(--color-orange) !important;
	background-color: var(--color-orange) !important;
}

@media (min-width: 992px) {
	.testimonial__title {
		margin-bottom: 60px;
	}

	.testimonial__image {
		width: 20%;
		height: auto;
		display: block;
		margin-right: 30px;
		border-right: solid 3px var(--color-orange);
		padding-right: 30px;
	}

	.testimonial__content {
		width: 80%;
		text-align: left;
	}
}

.full-width-content {
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.full-width-content .full__width-wrapper {
	width: 1100px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.full-width-quote {
	margin-top: 3rem;
	margin-bottom: 3rem;
	padding-top: 100px;
	padding-bottom: 100px;
	display: flex;
	width: calc(100% - 2rem);
	justify-content: center;
	padding-left: 1rem;
	padding-right: 1rem;
	background-size: cover;
	background-position: top center;
	position: relative;
}

.full-width-quote__content {
	font-size: 1.8rem;
	line-height: 3rem;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	position: relative;
	z-index: 1;
}

.full-width-quote__overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 0;
	background: rgba(0, 0, 0, 0.35);
}

.full-width-content .full__width-text > * {
	font-size: 1.4rem;
	line-height: 2rem;
	text-align: left;
}

@media (min-width: 768px) {
	.full-width-quote {
		margin-top: 5rem;
		margin-bottom: 5rem;
	}
	.full-width-content {
		margin-top: 5rem;
		margin-bottom: 5rem;
	}
}

@media (min-width: 992px) {
	.full-width-quote__content {
		font-size: 2rem;
		line-height: 3rem;
	}
	.full-width-content .full__width-text > * {
		font-size: 2rem;
		line-height: 3rem;
		text-align: center;
	}
}

@media (min-width: 1200px) {
	.full-width-content .container {
		width: calc(100% - 2rem);
	}
}

.contact-form {
	margin-top: 5rem;
	margin-bottom: 5rem;
}

.contact-form .form.submitting .wpcf7-spinner {
	position: relative;
	top: 7px;
}

.contact-form h1,
.contact-form h2 {
	font-size: 2rem;
	line-height: 2rem;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 1rem;
}

.wpcf7 form .wpcf7-response-output {
	margin-top: 2rem;
	margin-bottom: 0;
	padding: 1rem;
	border-color: var(--color-orange);
}

.contact-form h3 {
	font-size: 1rem;
	line-height: 1rem;
	margin-bottom: 2rem;
}

.contact-form .wpcf7-form br {
	display: none;
}

.contact-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.contact-form input[type='text'],
.contact-form input[type='tel'],
.contact-form input[type='email'],
.contact-form select,
.contact-form textarea {
	line-height: 1.6rem;
	font-size: 1rem;
	width: 100%;
	display: block;
	padding-left: 0.4rem;
	padding-right: 0.4rem;
	min-height: 40px;
	margin-top: 0.4rem;
	box-sizing: border-box;
}

.contact-form label {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.contact-form textarea {
	height: 200px;
}

.contact-form input[type='submit'] {
	display: inline-block;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 25px;
	padding-right: 25px;
	border-radius: 25px;
	transition: all 0.15s;
	background: var(--color-orange);
	border: none;
	text-transform: uppercase;
	font-size: 1rem;
	cursor: pointer;
	height: 42px;
}

.contact-form input[type='submit']:hover {
	background: #000;
	transition: all 0.15s;
}

.contact-form p {
	line-height: 2rem;
}

.contact-form p.description {
	margin-bottom: 2rem;
}

.contact-form > div {
	margin-top: 5rem;
}

#content section:first-of-type.contact-form .container > div {
	margin-top: 7rem;
}

@media (min-width: 768px) {
	#content section:first-of-type.contact-form .container > div {
		margin-top: 9rem;
		max-width: 75%;
	}

	.contact-form h1,
	.contact-form h2 {
		font-size: 3rem;
		line-height: 3rem;
	}

	.contact-form h3 {
		font-size: 1.4rem;
		line-height: 1.4rem;
	}

	.contact-form textarea {
		height: 300px;
	}
}

.products-list .product {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 2rem;
	row-gap: 1.6rem;
	padding-bottom: 2rem;
	border-bottom: solid 1px var(--color-line);
	padding-top: 2rem;
}

.products-list .product:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}

.products-list .product__image {
	width: 100%;
}

.products-list .product__image img {
	width: 100%;
	height: auto;
	display: block;
}

.products-list .product__content {
	width: 100%;
}

.products-list .product__title {
	font-size: 2rem;
	line-height: 2.4rem;
	font-weight: bold;
	margin: 0;
}

.products-list .product__subtitle {
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0.6rem;
	font-size: 0.8rem;
}

.products-list .product__description > * {
	line-height: 1.8rem;
	font-size: 1rem;
}

.products-list .product__buttons {
	flex-shrink: 0;
	width: 100%;
}

.products-list .product__price {
	margin-top: 1rem;
	font-weight: bold;
}

@media (min-width: 750px) {
	.products-list .product__image {
		width: 200px;
	}
	.products-list .product__content {
		flex: 1;
	}
	.products-list .product__price {
		text-align: right;
	}
	.products-list .product__content {
		width: auto;
	}
	.products-list .product__buttons {
		width: auto;
	}
}

footer {
	padding-top: 3rem;
	padding-bottom: 3rem;
	margin-top: 3rem;
	background: var(--color-black);
	color: #fff;
	font-size: 1rem;
}

footer .container {
	display: flex;
	flex-wrap: wrap;
}

.footer__content {
	display: flex;
	flex-wrap: wrap;
	margin-left: auto;
	width: 100%;
}

footer .container .footer__wrapper {
	width: 100%;
	border: none;
	border-bottom: solid 1px #cdd4db;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	box-sizing: border-box;
}

footer .container .footer__wrapper:last-of-type {
	margin-bottom: 0;
	border: none;
	padding-bottom: 0;
}

footer .widgettitle {
	text-transform: uppercase;
	font-size: 1.4rem;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 1rem;
}

footer .footer__logo img {
	height: 25px;
	width: auto;
}

footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

footer ul li {
	display: block;
}

footer ul li a {
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
	text-decoration: none;
}

footer ul li a:hover {
	color: #cdd4db;
}

footer .button.secondary {
	margin-top: 8px;
}

.footer__social a {
	font-size: 1.6rem;
	color: var(--color-orange);
	margin-right: 0.8rem;
	margin-top: 8px;
	display: inline-block;
}

.footer__social a:hover {
	color: #cdd4db;
}

footer .button {
	font-size: 1rem;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	footer {
		margin-top: 5rem;
	}
}

@media (min-width: 1025px) {
	footer {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	footer .footer__logo img {
		width: 100%;
		height: auto;
	}

	footer .container .footer__wrapper {
		width: calc(33.3333% - 2rem);
		border-right: solid 1px #cdd4db;
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.footer__content {
		width: 75%;
	}

	.footer__content .footer__wrapper {
		margin-left: auto;
	}

	footer .container .footer__logo {
		width: calc(25% - 2rem);
		border: none;
	}

	.footer__wrapper {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}
