/*
	Theme Name: SMS Cooperative Custom WordPress Theme
	Theme URI: http://www.guidomediaservices.com
	Description: Custom Genesis Child Theme Created For [Client Name]
	Author: Guido Media
	Author URI: http://www.guidomediaservices.com
	Version: 1.0.0

	Template: genesis
	Template Version: 2.0.0
*/


/* Defaults ---------------------------------------------------------------------------------------------------- */

:root {
	--primary: #921718;
	--secondary: #f27f09;
	--highlight: #00b0a9;
	--yellow: #ffce20;
	--purple: #992d87;
	--black: #191f22;
	--white: #fff;
	--serif: 'Minion', serif;
	--sans-serif: 'Google Sans', sans-serif;

	--font-tiny: 11px;
	--font-sm: 13px;
	--font-norm: 15px;
	--font-med: 20px;
	--font-lg: 24px;
	--lh-tiny: 21px;
	--lh-sm: 23px;
	--lh-norm: 25px;
	--lh-med: 30px;
	--lh-lg: 34px;

	--hd-tiny: 22px;
	--hd-sm: 30px;
	--hd-med: 42px;
	--hd-lg: 55px;
	--hd-xlg: 70px;
	--hd-xxlg: 90px;
	--lhh-tiny:32px;
	--lhh-sm: 40px;
	--lhh-med: 52px;
	--lhh-lg: 65px;
	--lhh-xlg: 80px;
	--lhh-xxlg: 100px;
}

/* Baseline Reset (normalize.css 2.1.2)
	normalize.css v2.1.2 | MIT License | git.io/normalize
--------------------------------------------- */

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}

/* Box Sizing */
*,
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

/* Float Clearing */
.clearfix:before,
.entry-content:before,
.entry:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.pagination:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.widget:before,
.wrap:before {
	content: " ";
	display: table;
}
.clearfix:after,
.entry-content:after,
.entry:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.pagination:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.widget:after,
.wrap:after {
	clear: both;
	content: " ";
	display: table;
}
.clear {
	clear: both;
}

/* Typographical Elements ---------------------------------------------------------------------------------------------------- */
html {
	font-size: var(--font-normal);
	font-family:var(--sans-serif);
}
body {
}
a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.home .featured-content img,
.button,
.nav-primary ul li a,
.nav-primary ul li a::after {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition:    all 0.3s ease-in-out;
	-ms-transition:     all 0.3s ease-in-out;
	-o-transition:      all 0.3s ease-in-out;
	transition:         all 0.3s ease-in-out;
}
::-moz-selection {
	background-color: var(--black);
	color: var(--white);
}
::selection {
	background-color: var(--black);
	color: var(--white);
}
a {
	color:var(--primary);
}
a img {
}
a:hover {
}
p {
}
strong {
}
ol,
ul {
}
blockquote,
blockquote::before {
}
blockquote {
}
blockquote::before {
}
.entry-content code {
}
cite {
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
}

/* Objects */
img {
	height: auto;
	max-width: 100%;
}
.featured-content img,
.gallery img {
	width: auto; /* IE8 */
}

/* Forms ---------------------------------------------------------------------------------------------------- */
input,
select,
textarea {
	background-color: var(--white);
	border: 1px solid var(--primary);;
	color: var(--black);
	font-size: 14px;
	padding-left: 12px;
	padding-right:12px;
	height:50px;
	line-height:50px;
	width: 100%;
}
input,
select {
	height:50px;
	line-height:50px;
}
textarea {
	line-height:20px;
	padding-top:20px;
}
input:focus,
textarea:focus {
	border: 1px solid var(--primary);
	outline: none;
}
::-moz-placeholder {
	color: var(--black);
}
::-webkit-input-placeholder {
	color: var(--black);
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button,
.wp-block-button__link,
.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), 
.gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), 
.gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*="mceu_"]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), 
.gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), 
.gform-theme.gform-theme--framework.gform_wrapper input:is([type="submit"], [type="button"], [type="reset"]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), 
.gform-theme.gform-theme--framework.gform_wrapper input:is([type="submit"], [type="button"], [type="reset"]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), 
.gform-theme.gform-theme--framework.gform_wrapper input[type="submit"].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	background-color: var(--secondary);
	border: solid 2px var(--secondary);
	color: #fff;
	cursor: pointer;
	font-size:var(--font-norm);
	padding-left: 30px;
	padding-right: 30px;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	width: auto;
	height: 40px;
	line-height: 36px;
	padding-top: 0;
	padding-bottom: 0;
	display: inline-block;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button:hover,
.entry-content .button:hover,
.wp-block-button__link:hover,
.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, 
.gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, 
.gform-theme.gform-theme--framework.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*="mceu_"]):not(.mce-open):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, 
.gform-theme.gform-theme--framework.gform_wrapper button.button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, 
.gform-theme.gform-theme--framework.gform_wrapper input:is([type="submit"], [type="button"], [type="reset"]).button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, 
.gform-theme.gform-theme--framework.gform_wrapper input:is([type="submit"], [type="button"], [type="reset"]):where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover, 
.gform-theme.gform-theme--framework.gform_wrapper input[type="submit"].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover  {
	color: var(--secondary);
	background-color: transparent;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Gravity Forms ---------------------------------------------------------------------------------------------------- */
.gform_wrapper {
	max-width: 100%;
	width: 100%;
}
.gform_wrapper label, .gform_wrapper legend {
	padding: 0;
	font-weight:bold;
	font-size:var(--font-norm);
}
.gform_wrapper .field_sublabel_below span > label{
	display:none;
}
.gform_wrapper .gfield_checkbox li input,
.gform_wrapper .gfield_checkbox li input[type="checkbox"],
.gform_wrapper .gfield_radio li input[type="radio"] {
	margin-top: 0;
}
.gform_wrapper fieldset{
  border:none;
  padding:0;
}
.gform_wrapper ul {
	margin: 0;
	padding: 0;
}
.gform-theme--foundation .gform_fields {
    grid-row-gap: 0px;
  row-gap: 0px;
}
.gform_wrapper div.gfield,
.gform_wrapper fieldset {
	margin: 0;
	list-style-type: none;
	margin-bottom: 10px;
}
div.gchoice{
	margin-bottom:7px;
}
div.gchoice > label {
	font-weight:normal;
}
.gform_wrapper .gform_footer input[type="submit"] {
	font-size: 14px;
}
.gform_wrapper .gfield_checkbox label,
.gform_wrapper .show-label label {
	display: block;
	font-weight: normal;
}
div.gform_confirmation_message {
	text-align: center;
}

/* Custom radio buttons */
ul.gfield_radio {
	display:flex;
	justify-content:space-between;
}
.gfield_radio div,
.gfield_checkbox div{
  	display: block;
  	position: relative;
  	padding-left: 0px;
  	margin-bottom: 12px;
  	cursor: pointer;
  	-webkit-user-select: none;
  	-moz-user-select: none;
  	-ms-user-select: none;
  	user-select: none;
}
.gfield_radio div label,
.gfield_checkbox div label{
	margin-left: 35px;
}
.gfield_radio div input,
.gfield_checkbox div input[type="checkbox"]{
  	position: absolute;
  	opacity: 0;
  	cursor: pointer;
}
.gfield_radio div label:before,
.gfield_checkbox div label:before {
  	position: absolute;
  	top: 0;
  	left: 0;
  	height: 25px;
  	width: 25px;
  	background-color: #eee;
 	border-radius: 20%;
	content:"";
	cursor:pointer;
}
.gfield_radio div label:hover:before,
.gfield_checkbox div label:hover:before{
  	background-color: #ccc;
}
.gfield_radio div input[type="radio"]:checked ~ label:before,
.gfield_checkbox div input[type="checkbox"]:checked ~ label:before {
  	background-color: var(--primary);
}
.gfield_radio div label:after,
.gfield_checkbox div label:after {
  	content: "";
  	position: absolute;
  	display: none;
}
.gfield_radio div input[type="radio"]:checked ~ label:after,
.gfield_checkbox div input[type="checkbox"]:checked ~ label:after {
   	display: block;
}
.gfield_radio div label:after,
.gfield_checkbox div label:after {
 	left: 9px;
  	top: 5px;
  	width: 5px;
  	height: 10px;
  	border: solid white;
  	border-width: 0 3px 3px 0;
  	-webkit-transform: rotate(45deg);
  	-ms-transform: rotate(45deg);
  	transform: rotate(45deg);
}

/* Credit Card Fields */
.gform_card_icon_container {
 margin:8px 0 6px;
 height:32px
}
div.gform_card_icon {
 margin-right:4px;
 text-indent:-9000px;
 background-image:url(/wp-content/plugins/gravityforms/images/gf-creditcard-icons.png);
 background-repeat:no-repeat;
 width:36px;
 height:32px;
 float:left
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_visa {
 background-position:0 0
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_visa {
 background-position:0 -32px
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_visa {
 background-position:0 -64px
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_mastercard {
 background-position:-36px 0
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_mastercard {
 background-position:-36px -32px
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_mastercard {
 background-position:-36px -64px
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_amex {
 background-position:-72px 0
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_amex {
 background-position:-72px -32px
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_amex {
 background-position:-72px -64px
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_discover {
 background-position:-108px 0
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_discover {
 background-position:-108px -32px
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_discover {
 background-position:-108px -64px
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_maestro {
 background-position:-144px 0
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_maestro {
 background-position:-144px -32px
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_maestro {
 background-position:-144px -64px
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_jcb {
 background-position:-180px 0
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_jcb {
 background-position:-180px -32px
}
.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_jcb {
 background-position:-180px -64px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_visa {
 background-position:0 -192px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_visa {
 background-position:0 -224px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_visa {
 background-position:0 -256px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_mastercard {
 background-position:-36px -192px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_mastercard {
 background-position:-36px -224px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_mastercard {
 background-position:-36px -256px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_amex {
 background-position:-72px -192px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_amex {
 background-position:-72px -224px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_amex {
 background-position:-72px -256px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_discover {
 background-position:-108px -192px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_discover {
 background-position:-108px -224px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_discover {
 background-position:-108px -256px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_maestro {
 background-position:-144px -192px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_maestro {
 background-position:-144px -224px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_maestro {
 background-position:-144px -256px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_jcb {
 background-position:-180px -192px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_jcb {
 background-position:-180px -224px
}
.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_jcb {
 background-position:-180px -256px
}
.ginput_complex .ginput_cardinfo_left,.ginput_complex .ginput_cardinfo_right {
 min-height:43px;
 position:relative;
 float:left
}
.ginput_complex .ginput_cardinfo_left {
 width:50%;
 margin-right:1%
}
.ginput_complex .ginput_cardinfo_right {
 min-width:85px!important
}
.ginput_complex .ginput_cardinfo_right label {
 white-space:nowrap!important
}
.ginput_complex span.ginput_cardextras {
 display:block;
 overflow:hidden;
}
.ginput_container_creditcard input{
 margin-bottom:8px
}
.ginput_complex .ginput_cardinfo_right span.ginput_card_expiration_container {
 position:relative
}
.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month,.ginput_complex select.ginput_card_expiration.ginput_card_expiration_year {
 width:47%!important;
 display:-moz-inline-stack;
 display:inline-block
}
.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month {
 margin-right:4px
}
.ginput_complex .ginput_cardinfo_right input.ginput_card_security_code {
 max-width:50%!important;
 position:relative
}
.ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon {
 width:32px;
 height:23px;
 background-image:url(../images/gf-creditcard-icons.png);
 background-repeat:no-repeat;
 background-position:0 -128px;
 position:relative;
 top:-2px;
 left:6px;
 display:-moz-inline-stack;
 display:inline-block
}
div.gfield_creditcard_warning_message {
 display:none!important
}
#gform_fields li.credit_card_setting.field_setting ul li {
 padding:2px 0 4px
}

/* Date Picker */
#ui-datepicker-div {
	background: #FFF;
	border: 1px solid var(--primary);
	display:none;
	padding:20px;
	width:auto;
}
#ui-datepicker-div select {
	height: 25px;
	line-height: 25px;
}
.ui-icon {
	cursor: pointer;
}
.ui-datepicker-header a {
	cursor: pointer;
}
.ui-datepicker-prev {
	float: left;
	width: 10%;
}
.ui-state-disabled {
	display:none;
}
.ui-datepicker-next {
	float: right;
	width: 10%;
}
.ui-state-disabled {
	 display:none;
}
.ui-datepicker-title {
	margin-top: 20px;
}
.ui-datepicker-title select {
	float: left;
	width: 70%;
}
.ui-datepicker-month {
	margin: 0px 5% 6px;
}
.ui-datepicker-year {
	margin: 0px 15% 6px;
}
.ui-datepicker-today {
	border-radius: 4px;
}
.ui-datepicker-today a {
	color: #fff;
}
#ui-datepicker-div table {
	width: 100%;
}
#ui-datepicker-div td,
#ui-datepicker-div th  {
	text-align: center;
}
#ui-datepicker-div td a {
	display: block;
	padding: 5px;
}

/* Site Containers ---------------------------------------------------------------------------------------------------- */
.site-container {
}
.wrap {
	margin: 0 auto;
	width: 96%;
	max-width: 1140px;
}
.site-inner {
	margin: 0 auto;
	width: 96%;
	max-width: 1140px;
	clear: both;
}
.home .site-inner {
	padding: 0;
	width: 100%;
	max-width: 100%;
}

/* Wrapping div for .content and .sidebar-primary */

.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	width: 980px;
}
.content-sidebar-sidebar .content-sidebar-wrap {
	float: left;
}
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
	float: right;
}

/* Layout */
.content {
	float: right;
	width: 740px;
}
.content-sidebar .content,
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content {
	float: left;
}
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content,
.sidebar-sidebar-content .content {
	width: 520px;
}
.full-width-content .content {
	width: 100%;
}

/* Primary Sidebar ---------------------------------------------------------------------------------------------------- */
.sidebar-primary {
	float: right;
	width: 360px;
}
.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
	float: left;
}

/* WordPress ---------------------------------------------------------------------------------------------------- */
.avatar {
	border-radius: 50%;
	float: left;
}
.alignleft .avatar {
	margin-right: 24px;
	margin-right: 2.4rem;
}
.alignright .avatar {
	margin-left: 24px;
	margin-left: 2.4rem;
}
.search-form {
	overflow: hidden;
}
.search-form input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}
img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 2.4rem;
}
a.alignnone img,
.alignnone img {
	margin-bottom: 12px;
	margin-bottom: 1.2rem;
}
.alignleft {
	float: left;
	text-align: left;
}
.alignright {
	float: right;
	text-align: right;
}
a.alignleft,
a.alignright {
    max-width: 100%;
}
a.alignleft img,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
	margin: 0 2.4rem 2.4rem 0;
}
a.alignright img,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
	margin: 0 0 2.4rem 2.4rem;
}
.entry-content .wp-caption-text {
	font-size: 14px;
	font-size: 1.4rem;
	text-align: center;
}
.widget_calendar table {
	width: 100%;
}
.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* Site Header ---------------------------------------------------------------------------------------------------- */
.site-header {
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	background-color:#fff;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.site-header .wrap {
	width: 90%;
	max-width:90%;
	height: 100%;
}

/* Title Area */
.title-area {
	float: left;
}
.site-title {
	margin: 0;
	padding: 0;
	margin-top: 10px;
}
.site-title a {
	width: 185px;
	height: 60px;
	display: block;
	background-image: url(images/logo.webp);
	background-size:contain;
	background-position:left center;
	background-repeat:no-repeat;
	text-indent: -9999px;
}

/* Page Title */
.page-title::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: #301818;
	background: linear-gradient(90deg,rgba(48, 24, 24, 1) 0%, rgba(163, 23, 25, 1) 61%, rgba(239, 84, 10, 1) );
	z-index: -1;
}
.page-title::after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-image:url(images/header-bg.webp);
	background-size:cover;
	background-repeat:no-repeat;
	z-index: 1;
	opacity:0.4;
}
.page-title {
	height:100vh;
	min-height:450px;
	max-height:600px;
	position: relative;
	color:#fff;
	align-items: center;
  	display: flex;
	text-align:left;
}
.page-title.no-image{
	max-height:450px;
	min-height:350px;
}
.page-title .wrap{
	width:1350px;
	max-width:90%;
	margin-left:auto;
	margin-right:auto;
	font-size:var(--font-lg);
	line-height:var(--lh-lg);
	letter-spacing:-1px;
	z-index:9;
	position:relative;
	padding-right:600px;
}
body.single .page-title .wrap{
	padding-right:300px;
}
.page-title h1 {
	font-size:var(--hd-xlg);
	letter-spacing:-2px;
	line-height:var(--lhh-xlg);
	margin-bottom:20px;
}
body.single .page-title h1 {
	font-size:var(--hd-med);
	line-height:var(--lhh-med);
}
body.no-header .page-title::before {
	display:none!important;
}
body.no-header .page-title {
	height:225px;
	max-height:225px;
	min-height:1px;
	padding-top:80px;
	background-color:var(--primary);
	background-image:none!important;
}

/* Primary Navigation ---------------------------------------------------------------------------------------------------- */
.nav-primary {
	float: right;
	width:800px;
}
.nav-primary ul {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
}
.nav-primary ul li {
	display: inline-block;
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.nav-primary ul li a {
	display: block;
	text-decoration: none;
	color:var(--black);
	font-weight:bold;
	text-decoration:none;
	height:80px;
	line-height:80px;
	font-size:var(--font-norm);
	letter-spacing:-1px;
	position:relative;
	overflow:hidden;
}
.nav-primary ul li a::after{
	width:100%;
	height:3px;
	content:"";
	position:absolute;
	bottom:25px;
	left:-100%;
	background-color:var(--primary);
}
.nav-primary ul li a:hover,
.nav-primary ul li.current_page_item {
	color:var(--primary);
}
.nav-primary ul li a:hover::after,
.nav-primary ul li.current_page_item::after{
	left:0;
}
.nav-primary .sub-menu {
	left: -9999px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity 0.4s ease-in-out;
	-moz-transition:    opacity 0.4s ease-in-out;
	-ms-transition:     opacity 0.4s ease-in-out;
	-o-transition:      opacity 0.4s ease-in-out;
	transition:         opacity 0.4s ease-in-out;
	width: 280px;
	z-index: 99;
	padding: 0;
	margin: 0;
	height: auto;
}
.nav-primary .sub-menu li {
	width: 100%;
	padding: 0;
	margin: 0;
}
.nav-primary .sub-menu a {
	padding: 0;
	position: relative;
	width: 100%;
	display: block;
}
.nav-primary .sub-menu a:hover {
}
.nav-primary .sub-menu .sub-menu {
	margin: -50px 0 0 179px;
}
.nav-primary .menu-item:hover {
}
.nav-primary .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}
.show-menu, .close-menu, .nav-primary ul li.mobile {
	display: none;
}

/* Home Page ---------------------------------------------------------------------------------------------------- */
body.home .content{
	width:100%;
	max-width:100%;
	padding-top:0;
	padding-bottom:0;
}

/* Hero */
body.home .hero{
	min-height:60vh;
	height:auto;
	justify-content:left;
	padding-left:0;
	padding-right:0;
	padding-top:120px;
	background: #301818;
	background: linear-gradient(90deg,rgba(48, 24, 24, 1) 0%, rgba(163, 23, 25, 1) 61%, rgba(239, 84, 10, 1) );
}
body.home .hero > div{
	font-size:var(--font-lg);
	line-height:var(--lh-lg);
	letter-spacing:-1px;
	color:#fff;
	padding-right:0;
	padding-left:10%;
	padding-top:50px;
	padding-bottom:150px;
}
body.home .hero > div h2{
	font-size:var(--hd-lg);
	letter-spacing:-2px;
	line-height:var(--lhh-lg);
}
body.home .hero > div h2 strong{
	color:var(--secondary);
	display:block;
	font-size:var(--hd-xlg);
}
body.home .hero > div img{
	width:100%;
	max-width:600px;
}

/* Content 1 */
body.home .content-1{
	max-width:90%;
	margin-left:auto;
	margin-right:auto;
	margin-top:65px;
	margin-bottom:65px;
	font-size:var(--font-med);
	line-height:var(--lh-med);
	text-align:center;
}
body.home .content-1 h3{
	font-size:var(--hd-lg);
	line-height:var(--lhh-lg);
	margin-top:0;
}
body.home .content-1 h4{
	font-size:var(--hd-sm);
	line-height:var(--lhh-sm);
	color:var(--secondary);
	text-transform:uppercase;
	margin-bottom:0;
	margin-top:0;
}
body.home .content-1 .wp-block-columns:nth-of-type(2) > div{
	padding:20px;
	border-radius:10px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
}
body.home .content-1 .wp-block-columns:nth-of-type(2) h4{
	text-transform:none;
	color:var(--black);
	margin-top:25px;
}
body.home .content-1 .wp-block-columns:nth-of-type(2) > div img{
	width:75px;
	display:block;
	height:auto;
	margin-left:auto;
	margin-right:auto;
}

/* Content 2 */
body.home .content-2{
	padding-left:5%;
	padding-right:5%;
	width:100%;
	padding-top:65px;
	padding-bottom:65px;
	background-color:#f7f3f0;
	text-align:center;
	font-size:var(--font-med);
	line-height:var(--lh-med);
	gap:0;
	margin-bottom:0;
}
body.home .content-2 h2{
	font-size:var(--hd-med);
	line-height:var(--lhh-med);
	letter-spacing:-2px;
	color:var(--secondary);
	font-weight:900;
	margin-top:0;
	margin-bottom:0;
}
.content-2.wp-block-columns > div{
	border-right:solid 3px #ccc;
	padding-left:15px;
	padding-right:15px;
	padding-top:35px;
	padding-bottom:35px;
}
.content-2.wp-block-columns > div:last-of-type{
	border:none;
}
.content-2.wp-block-columns > div img{
	width:75px;
	display:block;
	height:auto;
	margin-left:auto;
	margin-right:auto;
}

/* Content 3 */
body.home .content-3{
	background: #191F22;
	background: linear-gradient(90deg,rgba(25, 31, 34, 1) 70%, rgba(239, 84, 10, 1) 100%);
	padding-left:5%;
	padding-right:5%;
	width:100%;
	padding-top:65px;
	padding-bottom:65px;
	font-size:var(--font-med);
	line-height:var(--lh-med);
	gap:0;
	margin-bottom:0;
	color:#fff;
}
body.home .content-3 > div h4{
	color:var(--secondary);
	margin:0;
	text-transform:uppercase;
}
body.home .content-3 > div h3{
	font-size:var(--hd-med);
	line-height:var(--lhh-med);
	margin:0;
}
body.home .content-3 > div:first-of-type{
	flex: 0 0 30%;
	margin-right:5%;
	padding-right:5%;
	border-right:solid 3px var(--secondary);
}
body.home .content-3 > div:not(:first-of-type){
	text-align:center;
	text-transform:uppercase;
	font-weight:bold;
	padding-top:30px;
}
body.home .content-3 > div figure{
	width:125px;
	height:125px;
	border:solid 2px var(--secondary);
	border-radius:50%;
	text-align:center;
	padding:25px;
	display:block;
	margin-left:auto;
	margin-right:auto;
}
body.home .content-3 > div img{
	width:75px;
	height:75px;
	display:block;
	height:auto;
}

/* Content ---------------------------------------------------------------------------------------------------- */
body:not(.home) .site-inner{
	width: 100%;
	max-width:100%;
	background-color:#f7f3f0;
}
body:not(.home) .content {
	float:none;
	width: 100%;
	max-width:100%;
	height: 100%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	z-index: 9;
	color: var(--black);
	padding-top: 65px;
	padding-bottom: 65px;
	font-size:var(--font-med);
	line-height:var(--lh-med);
}
body:not(.home) .content .entry-content > p,
body:not(.home) .content .entry-content > h2,
body:not(.home) .content .entry-content > h3,
body:not(.home) .content .entry-content > h4,
body:not(.home) .content .entry-content > .wp-block-columns,
.entry-header {
	width:95%;
	max-width:1350px;
	margin-left:auto;
	margin-right:auto;
}
body:not(.home) .content h2{
	font-size:var(--hd-med);
	line-height:var(--lhh-med);
}
body:not(.home) .content h3,
body:not(.home) .content h4{
	font-size:var(--hd-sm);
	line-height:var(--lhh-sm);
	letter-spacing:-2px;
}
body:not(.home) .content h2{
	color:var(--primary);
}
body:not(.home) .entry-content > .wp-block-media-text {
  width: 100%;
  padding-left:10%;
  padding-right:10%;
  margin-bottom: 65px;
  padding-top:50px;
  padding-bottom:50px;
}
body:not(.home) .entry-content > .wp-block-media-text.tan {
	background-color: #fff;
	background-color: #f5f1ef;
}
body:not(.home) .entry-content > .wp-block-media-text > .wp-block-media-text__content{
	padding-right:16%;
}
body:not(.home) .entry-content > .wp-block-media-text.has-media-on-the-right > .wp-block-media-text__content{
	padding-right:8%;
	padding-left:16%;
}
body:not(.home) .entry-content > .wp-block-media-text > .wp-block-media-text__content h3{
	font-size:var(--hd-sm);
	line-height:var(--lhh-sm);
}
body:not(.home) .entry-content > .wp-block-media-text figure{
	border-radius:20px;
	min-height:550px;
	overflow:hidden;
}
body:not(.home) .entry-content > .wp-block-media-text.is-image-fill-element:not(.tall) > .wp-block-media-text__media img{
	max-height:600px;
}

/* About */
body.about .wp-block-column:first-of-type{
	padding:25px;
	border-radius:15px;
	background-color:#fff;
}
body.about .wp-block-column:first-of-type figure{
	background-color:#f7f3f0;
	border-radius:50%;
	padding:40px;
}
body.about .content h2{
	color:var(--secondary);
}

/* Team */
body.team .content{
	max-width:1350px;
}
body.team .team-container{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	margin-bottom:50px;
}
body.team .team-container .intro{
	flex: 0 0 100%;
	margin-bottom:40px;
}
body.team .team-container h2{
	color:var(--black);
	margin-bottom:0;
}
body.team .intro > p{
	width:650px;
}
body.team .team-container article.team{
	text-align:center;
	font-size:var(--font-norm);
	line-height:var(--lh-norm);
}
body.team .team-container#executives-container article.team{
	flex: 0 0 28%;
	margin-left:2.5%;
	margin-right:2.5%;
	padding: 20px;
  	border-radius: 10px;
  	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 15px;
	background-color:#fff;
}
body.team article.team .image{
	width:250px;
	height:250px;
	border-radius:50%;
	background-size:cover;
	background-position:top center;
	margin-left:auto;
	margin-right:auto;
	position:relative;
}
body.team article.team .image.no-image{
	background-image:url(images/headshot.webp);
}
body.team article.team h3{
	font-size:var(--font-lg);
	line-height:var(--lh-lg);
	margin:0;
	color:var(--black);
}
body.team article.team .position{
	font-weight:bold;
	color:var(--primary);
	font-size:var(--font-med);
	line-height:var(--lh-med);
}
body.team .team-container#staff-container article.team,
body.team .team-container#board-of-directors-container article.team{
	flex: 0 0 23%;
	margin-right:20px;
	border-right:solid 3px #ccc;
	margin-bottom:35px;
	padding-right:20px;
}
body.team .team-container#staff-container article.team:first-of-type,
body.team .team-container#board-of-directors-container article.team:first-of-type,
body.team .team-container#staff-container article.team:first-of-type:nth-of-type(5n),
body.team .team-container#board-of-directors-container article.team:nth-of-type(5n){
	margin-left:0;
}
body.team .team-container#staff-container article.team:nth-of-type(4n),
body.team .team-container#board-of-directors-container article.team:nth-of-type(4n){
	margin-right:0;
	padding-right:0;
	border:none;
}
body.team .team-container#staff-container article.team .position,
body.team .team-container#board-of-directors-container article.team .position{
	font-size:var(--font-norm);
	line-height:var(--lh-norm);
}
body.team .team-container#staff-container article.team .image,
body.team .team-container#board-of-directors-container article.team .image{
	width:200px;
	height:200px;
}
body.team article.team p.link{
	margin-top:0;
}
body.team article.team p.link a{
	color:var(--secondary);
	text-decoration:none;
}

/* News */
body.news .content{
	width:95%;
	max-width:1350px;
}
article.news{
	display:flex;
	justify-content:left;
	margin-bottom:65px;
	background-color:#fff;
	padding: 20px;
  	border-radius: 10px;
  	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 15px;
}
article.news .image{
	display:block;
	flex: 0 0 450px;
	height:250px;
	margin-right:25px;
	border-radius:10px;
	background-size:cover;
	background-repeat:no-repeat;
}
article.news .details h2{
	font-size:var(--hd-sm);
	line-height:var(--lhh-sm);
	margin-top:0;
}
article.news .details a.more{
	color:var(--primary);
	font-weight:bold;
	text-decoration:none;
}
article.news .details p:has(.more) {
	margin-bottom:0;
}
article.news .meta{
	font-size:var(--font-norm);
	line-height:var(--lh-norm);
	color:#999;
	font-weight:bold;
}

/* Carrers */
body.careers .content > article{
	width:95%;
	max-width:1350px;
	margin-left:auto;
	margin-right:auto;
	background-color:#fff;
	padding: 20px;
  	border-radius: 10px;
  	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 15px;
}
body.careers .wp-block-column:first-of-type{
	padding-right:25px;
	margin-right:25px;
	border-right:solid 3px #ccc;
}
body.careers .wp-block-column:first-of-type figure{
	background-color:#f7f3f0;
	border-radius:50%;
	padding:40px;
}
body.careers .wp-block-column .block{
	border-radius:10px;
	padding:20px;
	background-color:#f7f3f0;
	display:block;
}

/* Contact */
body.contact.no-header .page-title{
	background-color:var(--highlight);
}
body.contact .content h2{
	color:var(--highlight);
}
body.contact .content{
	width:95%;
	max-width:800px;
}
body.contact .site-inner iframe{
	margin-top:55px;
}

/* Entries ---------------------------------------------------------------------------------------------------- */
.entry {
}
.entry-content ol,
.entry-content p,
.entry-content ul,
.quote-caption {
}
.entry-content ol,
.entry-content ul {
}
.entry-content ol li {
}
.entry-content ul li {
}
.entry-content ol ol,
.entry-content ul ul,
.entry-content .wp-caption p {
}
.entry-content .search-form {
}
.entry-meta {
}
.entry-header .entry-meta {
}
.entry-footer .entry-meta {
}
.entry-comments-link::before {
}
.entry-categories,
.entry-tags {
}

/* Comments ---------------------------------------------------------------------------------------------------- */
.entry-pings,
.comment-respond,
.entry-comments {
}
.comment-content {
	clear: both;
}
.entry-comments .comment-author {
	margin-bottom: 0;
}
.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%
}
.comment-respond label {
}
.comment-list li,
.ping-list li {
	list-style-type: none;
}
.comment-list li {
}
.comment-list li li {
}
li.comment {
}
.comment-header {
}
.comment .avatar {
	margin: 0 16px 24px 0;
	margin: 0 1.6rem 2.4rem 0;
}
.comment-header  .comment-meta,
.comment-header  .comment-meta a {
}
.comment-reply-link {
}
.entry-pings .reply {
}
.form-allowed-tags {
}

/* Pre Footer ---------------------------------------------------------------------------------------------------- */
#pre-footer{
	padding-top:25px;
	padding-bottom:25px;
	background: linear-gradient(90deg,rgba(136, 23, 24, 1) 50%, rgba(239, 84, 10, 1) 100%);
}
#pre-footer > .wrap{
	max-width:90%;
	margin-left:auto;
	margin-right:auto;
	color:#fff;
	font-size:var(--font-med);
	line-height:var(--lh-med);
}
#pre-footer section > div{
	display:flex;
	justify-content:left
}
#pre-footer section > div .widgettitle{
	font-size:var(--hd-med);
	line-height:var(--lhh-med);
	font-weight:bold;
	flex: 0 0 30%;
	margin-right:5%;
	padding-top:25px;
	padding-bottom:25px;
	border-right:solid 3px #fff;
	background-image:url(images/logo-icon.webp);
	background-repeat:no-repeat;
	background-position:left center;
	background-size:90px;
	padding-left:100px;
}
#pre-footer section > div p{
	padding-top:25px;
}

/* Site Footer ---------------------------------------------------------------------------------------------------- */
.site-footer {
	padding-top:20px;
	padding-bottom:20px;
	background-color:var(--black);
	color:#fff;
	text-align:center;
}
.site-footer .wrap > .column{
	flex: 0 0 30%;
	margin-right:3%;
}
.site-footer .wrap > .column:last-of-type{
	margin-right:0;
}
.site-footer .wrap > .column span.title{
	font-size:var(--font-med);
	font-weight:bold;
	display:block;
	margin-top:15px;
}
.site-footer .wrap > .bottom{
	flex:0 0 100%;
	font-size:var(--font-sm);
	text-align:center;
	padding-top:5px;
	margin-top:5px;
	border-top:solid 1px #f5f1ef;
}
.site-footer a {
	color:#fff;
	text-decoration:none;
}
.site-footer a:hover {
	color:var(--black);
}
.site-footer a:hover{
	color:var(--primary);
}
.site-footer ul.menu{
	margin-left:0;
	padding-left:0;
	display:flex;
	justify-content:center;
}
.site-footer ul.menu li{
	margin: left 15px;
	margin-right:15px;
	display:block;
}
.site-footer a.footer-logo {
	width:165px;
	height:70px;
	background-image:url(images/logo-white.webp);
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center center;
	display:block;
	text-indent:-9999px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:20px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------ */
/* Media Queries ---------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------ */

@media only screen and (max-width: 1860px) {
	body.home .content-1 .wp-block-media-text__content{
		padding-left:0;
		padding-right:400px;
		padding-top:50px;
		padding-bottom:50px;
	}
	body.home .content-1 figure::before{
		left:-300px;
	}
	body.home .content-1 .wp-block-columns:nth-of-type(2) > div h4{
		font-size:var(--hd-tiny);
		line-height:var(--lhh-tiny);
	}
	body.home .content-1 .wp-block-columns:nth-of-type(2) > div{
		font-size:var(--font-norm);
		line-height:var(--lh-norm);
	}
	body.home .content-2{
		padding-left:1.25%;
		padding-right:1.25%;
	}
}

@media only screen and (max-width: 1580px) {
	body.home .hero{
		overflow:hidden;
	}
	body.home .hero.wp-block-media-text.is-image-fill-element > .wp-block-media-text__media img{
		object-position:20% 50%!important;
	}
	body.home .hero > div h2{
		font-size:var(--hd-med);
		line-height:var(--lhh-med);
	}
}

@media only screen and (max-width: 1480px) {
	body.home .content-1 .is-layout-flex{
		flex-wrap:wrap!important;
		justify-content:center;
	}
	body.home .content-1 .is-layout-flex:nth-of-type(2) > div{
		flex: 0 0 30%;
	}
	body.home .content-2 h2 {
  		font-size: var(--hd-sm);
  		line-height: var(--lhh-sm);
	}
	body.home .content-3{
		flex-wrap:wrap!important;
	}
	body.home .content-3 div.wp-block-column:first-of-type{
		flex: 0 0 100%;
		text-align:center;
		margin-bottom:40px;
		border-right:none;
		padding-right:0;
		margin-right:0;
	}
	body.home .content-3 div.wp-block-column:first-of-type .wp-block-buttons > .wp-block-button{
		margin-left:auto;
		margin-right:auto;
	}
	body.home .content-3 > div:not(:first-of-type){
		flex: 0 0 25%;
	}
	.page-title{
		background-position:50%;
	}
	.page-title h1 {
		font-size: var(--hd-lg);
		line-height: var(--lhh-lg);
	}
	.page-title .wrap{
		padding-right:500px;
	}
	body.team .content{
		max-width:95%;
	}
}

@media only screen and (max-width: 1220px) {
	.nav-primary{
		width:70%;
	}
	body.home .content-1 .is-layout-flex:first-of-type {
		display:block;
		text-align:center;
	}
	body.home .content-1 h3{
		margin-bottom:0;
	}
	body.home .content-2 h2 {
    	font-size: var(--hd-tiny);
    	line-height: var(--lhh-tiny);
  	}
	.page-title .wrap{
		padding-right:400px;
	}
	#pre-footer section > div .widgettitle{
		flex: 0 0 450px;
	}
}

@media only screen and (max-width: 1023px) {
	.show-menu,
	.nav-primary ul li.mobile{
		display: block;
	}
	.show-menu, .close-menu{
		position: absolute;
		top:22.5px;
		right: 30px;
		width: 35px;
		height: 35px;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center center;
		text-indent: -99999px;
		cursor: pointer;
	}
	.show-menu a{
		height:5px;
		width:100%;
		display:block;
		margin-top:15px;
		position:relative;
	}
	.show-menu::before,
	.show-menu::after{
		height:5px;
		width:100%;
		display:block;
		position:absolute;
		left:0;
		top:0;
		content:"";
	}
	.show-menu::after{
		top:auto;
		bottom:0;
	}
	.close-menu a{
		height:5px;
		width:100%;
		display:block;
		margin-top:15px;
		position:relative;
		transform: rotate(45deg);
	}
	.close-menu::after{
		height:5px;
		width:100%;
		display:block;
		position:absolute;
		left:0;
		top:15px;
		content:"";
		transform: rotate(-45deg);
	}
	.show-menu a,
	.show-menu::before,
	.show-menu::after,
	.close-menu a,
	.close-menu::after{
		background-color:var(--primary);
	}
	.scrolled .show-menu a,
	.scrolled .show-menu::before,
	.scrolled .show-menu::after,
	.scrolled .close-menu a,
	.scrolled .close-menu::after{
		background-color:var(--primary);
	}
	.show-menu a:hover,
	.show-menu:hover::before,
	.show-menu:hover::after,
	.close-menu a:hover,
	.close-menu:hover::after{
		background-color:var(--secondary);
	}
	.nav-primary {
		position: fixed;
		height: 100%;
		width: 80%;
		left: -100%;
		top:0;
		background-color:var(--primary);
		overflow-y:scroll;
		-webkit-transition: left 1s ease-in-out;
		-moz-transition: left 1s ease-in-out;
		-ms-transition: left 1s ease-in-out;
		-o-transition: left 1s ease-in-out;
		transition: left 1s ease-in-out;
	}
	.nav-primary.active{
		left:0;
	}
	.nav-primary ul {
		display: block;
	}
	.nav-primary ul li {
		width: 100%;
		display: block;
		height:auto;
		min-height:11vh;
		border-bottom: 1px #fff dotted;
	}
	.nav-primary ul li a,
	.scrolled .nav-primary ul li a{
		height:11vh;
		line-height:11vh;
		color: #fff;
		font-size:16px;
		display:block;
	}
	.nav-primary li.phone a{
		color:#fff;
		font-size:20px;
	}
	.nav-primary ul li a:hover,
	.scrolled .nav-primary ul li a:hover{
		color:#222;
	}
	body.home .hero > div{
		width:480px;
	}
	body.home .content-1 .is-layout-flex:nth-of-type(2) > div{
		flex: 0 0 28%;
	}
	body.home .content-3 > div:not(:first-of-type){
		font-size:var(--font-norm);
		line-height:var(--lh-norm);
	}
	.page-title .wrap{
		padding-right:0;
		text-align:center;
	}
	#pre-footer section > div{
		display:block;
		text-align:center;
	}
	#pre-footer section > div .widgettitle{
		border-right:none;
		margin-right:0;
		padding-right:0;
		padding-left:0;
		background-position:top center;
		padding-top:85px;
		display:block;
		padding-bottom:0;
	}
	body.team .intro > p{
		width:100%;
	}
	body.team .team-container#executives-container article.team {
		flex: 0 0 100%;
		margin-bottom:25px;
		text-align:left;
	}
	body.team article.team .image{
		float:left;
		margin-right:40px;
	}
	body.team .team-container#executives-container article.team h3{
		margin-top:60px;
	}
	body.team .team-container#board-of-directors-container article.team{
		flex: 0 0 48%;
	}
	body.team .team-container#board-of-directors-container article.team:nth-of-type(2n) {
  		margin-right: 0;
  		padding-right: 0;
  		border: none;
	}
	article.news .image{
		flex: 0 0 250px;
	}
	body.careers .is-layout-flex{
		display:block;
	}
	body.careers .is-layout-flex > div:first-of-type{
		border-right:none;
		margin-right:0;
		padding-right:0;
		text-align:center;
		border-bottom: solid 3px #ccc;
	}
}

@media only screen and (max-width: 800px) {
	.wp-block-media-text.is-stacked-on-mobile {
		grid-template-columns: 100% !important;
	}
	.wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__content {
		grid-column: 1;
		grid-row: 2;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__media {
		grid-column: 1;
		grid-row: 1;
	}
	body.home .hero{
		padding-top:100px;
		padding-bottom:100px;
	}
	body.home .wp-block-media-text.hero{
		display:block;
		text-align:center;
	}
	body.home .hero > div{
		width:100%;
		padding-left:5%;
		padding-right:5%;
	}
	body.home .hero > div h2 {
		font-size: var(--hd-lg);
		line-height: var(--lhh-lg);
	}
	body.home .wp-block-media-text.hero > figure{
		display:none;
	}
	body.home .hero .wp-block-buttons > .wp-block-button{
		margin-left:auto;
		margin-right:auto;
	}
	.page-title{
		min-height:300px;
		max-height:450px;
	}
	.page-title .wrap {
  		font-size: var(--font-med);
  		line-height: var(--lh-med);
	}
	.page-title h1 {
    	font-size: var(--hd-med);
    	line-height: var(--lhh-med);
  	}
	body:not(.home) .content h2 {
  		font-size: var(--hd-sm);
  		line-height: var(--lhh-sm);
	}
}

@media only screen and (max-width: 780px) {
	body.home .content-1 .wp-block-columns:nth-of-type(2) > div h4 {
		font-size: var(--hd-sm);
		line-height: var(--lhh-sm);
	}
	body.home .content-2 h2 {
    	font-size: var(--hd-med);
    	line-height: var(--lhh-med);
  	}
	article.news{
		display:block;
	}
	article.news .image{
		margin-right:0;
	}
}

@media only screen and (max-width: 680px) {
	body.home .hero > div h2{
		font-size:var(--hd-med);
		line-height:var(--lhh-med);
	}
	body.home .hero > div h2 strong {
		font-size: var(--hd-lg);
	}
	body.home .hero > div {
  		font-size: var(--font-med);
  		line-height: var(--lh-med);
	}
	body.team .content{
		text-align:center;
	}
	body.home .content-1 h3 {
		font-size: var(--hd-med);
		line-height: var(--lhh-med);
	}
	body.team .team-container#executives-container article.team{
		text-align:center;
	}
	body.team article.team .image {
    	float:none;
    	margin-left:auto;
		margin-right:auto;
  }
	body.team .team-container#executives-container article.team h3{
		margin-top:40px;
	}
	body.team .team-container#board-of-directors-container article.team{
		flex: 0 0 100%;
		margin-left:0;
		margin-right:0;
		padding-left:0;
		padding-right:0;
		border-right:none;
	}
}

@media only screen and (max-width: 480px) {

}
