:root {
	
	--sidebar-width: 300px;
	--container-width: 100%;
	--container--inner-width: 100%;
	--container--content-width: 1140px;
	--container--content-width--wide: 1400px;
	--container--content-width--narrow: 980px;
	--container--content-width--tight: 650px;
	--container--heading-width: 1400px;
	
	--site-header-height: 120px;
	
	--bg-body : #FFFAF4;
	--bg-box: #FAF4EC;
	--bg-md: #DEDAD3;
	--bg-drk: #615D54;
	--bg-pattern: url(/wp-content/themes/goodrelations/images/bg-pattern.png);
	
	--red: #EC1C24;
	--ui-brown: #847F67;
	--ui-brown-50:  rgba(132, 127, 103, 0.5);
	--ui-brass: #3e3c07;
	--grey-md: #707070;
	--neutral: #F2EEE7; 
	--light : #FFFAF4; 
	--logo-dark: #575757;
		
	--text: #5B554E; 
	--text-dark: #4D2E16;
	--text-md: #847E66;
	
	--box-radius: 32px;
	--card-radius: 16px;
	--filter-btn-radius: 12px;
	--container-radius: 85px;
	--btn-radius: 80px;
	
	--toggle-link-size: 16px;
	--toggle-link-large-size: 30px;
	--toggle-link-size--hover: 28px;
	--toggle-link-large-size--hover: 48px;

	
	--box-padding: 36px;
	--card-padding: 20px;
	--card-columns-margin: -20px;
	
	--slider-arrow-spacing: 24px;
	--slider-arrow-offset: -24px;
	--slider-arrow-spacing-sm: 12px;
	--slider-arrow-offset-sm: -12px;
	
	--heading-font : 'Albert Sans', sans-serif;
	--body-font : 'Albert Sans', sans-serif;
	--arrow-icon-url: url(/wp-content/themes/goodrelations/images/arrow.svg);
	
	
	--xl-heading-size: 3.25rem;
	--xl-heading-thin-weight: 700;
	--xl-heading-thin-line-height: 1.25em;
	
	--large-heading-size: 3rem;
	--large-heading-weight: 700;
	--large-heading-line-height: 0.925em;
	
	--secondary-heading-size: 2.125rem;
	--secondary-heading-weight: 700;
	--secondary-heading-line-height: 1.15em;
	
	--medium-heading-size: 1.75rem;
	--medium-heading-weight: 600;
	--medium-heading-line-height: 1.15em;
	
	--small-heading-size: 1.5rem;
	--small-heading-weight: bold;
	--small-heading-line-height: 1.15em;
	
	--smaller-heading-size: 1.25rem;
	--smaller-heading-weight: bold;
	--smaller-heading-line-height: 1.15em;
	
	--page-title-size: 3.25rem;
	--page-title-weight: 400;
	--page-title-line-height: 1.15em;
	
	--large-text-size: 1.25rem;
	--large-text-weight: 300;
	--large-text-line-height: 1.4em;
	
	--text-line-height: 1.425em;
	
	
	--wp--preset--font-size--small: var(--small-heading-size);
	--wp--preset--font-size--medium: var(--medium-heading-size);
	--wp--preset--font-size--large: var(--large-heading-size);
	--wp--preset--font-size--x-large: var(--xl-heading-size);
}
@media(max-width: 1280px){
	:root {
		--site-header-height: 90px;
	}
}
@media(max-width: 1024px){
	:root {
			/*--sidebar-width: 0;*/
		--site-header-height: 50px;
	}
}
@media(max-width: 768px){
	:root {
		/*--sidebar-width: 0;*/
		
		--site-header-height: 65px;
		
		--box-radius: 20px;
		--card-radius: 10px;
		--container-radius: 30px;
		
		--box-padding: 20px;
		--card-padding: 15px;
		
		--slider-arrow-spacing: 32px;
		--slider-arrow-offset: -16px;
	
		--page-title-size: 1.65rem;
		--xl-heading-size: 1.65rem;
		--large-heading-size: 1.5rem;
		--secondary-heading-size: 1.275rem;
		--medium-heading-size: 1.15rem;
		--large-text-size: 1.15rem;
	  }
	   
}
#wp-admin-bar-cad-acf-options-page-link .ab-item:before {
	content: '\f111';
	font-size: 18px;
    margin-top: 4px;
}

html {
 overflow-x: hidden;
}
html.user-logged-in {
	margin-top:0!important;
}
.user-logged-in #wpadminbar {
	position: absolute;
	margin-top: -24px;
	opacity: 0.05;
	transition: all 0.4s;
}
.user-logged-in #wpadminbar:hover{
	margin-top: 0;
	opacity: 1;
}
html, 
body {
	font-size:18px;
	background-color: var(--bg-body);
	font-family: var(--body-font);
}

* {
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	background-image:var(--bg-pattern);
	background-attachment: fixed;
	outline-color: var(--text);
}

::-moz-selection { 
  color: var(--light);
  background: var(--text);
}

::selection {
  color: var(--light);
  background: var(--text);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--heading-font);
	margin-top: 0;
	margin-bottom: 0.15em;
	font-weight:bold;
}

h2 {
	font-size:var(--medium-heading-size);
}
h3 {
	font-size:var(--smaller-heading-size);
}
h4 {
	font-size:1rem;
}



h1.archive-title,
h1.entry-title {
	font-size:var(--page-title-size);
	font-weight: var(--page-title-weight);
	line-height: var(--page-title-line-height);
	color: var(--text-dark);

}
.wp-block-heading.has-x-large-font-size,
.xl-heading {
	font-size:var(--xl-heading-size);
	font-weight: var(--xl-heading-weight);
	line-height: var(--xl-heading-line-height);
}
.wp-block-heading.has-large-font-size,
.large-heading {
	font-size:var(--large-heading-size);
	font-weight: var(--large-heading-weight);
	line-height: var(--large-heading-line-height);
}
.wp-block-heading.has-medium-font-size,
.medium-heading {
	font-size:var(--medium-heading-size);
	font-weight: var(--medium-heading-weight);
	line-height: var(--medium-heading-line-height);
}
.wp-block-heading.has-small-font-size,
.small-heading {
	font-size:var(--small-heading-size);
	font-weight: var(--small-heading-weight);
	line-height: var(--small-heading-line-height);
}

.large-text {
	font-size:var(--large-text-size);
	font-weight: var(--large-text-weight);
	line-height: var(--large-text-line-height);
}

.box .box-heading {
	display: inline-block;
	position: relative;
	padding-bottom: 10px;
}

.inline-heading {
	display: inline-block;
}
p {
	color: var(--text);
	font-size:1rem;
	margin-top: 0;
	line-height: var(--text-line-height);
}
a {
	color:  var(--text);
	transition: all 0.4s;
	outline-color: var(--text);
	cursor: pointer;
}
p a, 
.panel-content a,
.entry-content  p a{
	text-decoration:underline;
		color:  var(--red);
}
p a:hover,
.entry-content  p a:hover {
	color: var(	--text);
	
}
@media(max-width: 480px){
	p a {
		overflow-wrap: break-word;
	}
}

a > svg {
	transition: all 0.4s;
}
li {
	color:  var(--text);
}
.main-content-column ul ul, 
.main-content-column ol ol {
	margin-top: 0.75em;
	
}
.main-content-column ul li, 
.main-content-column ol li {
	margin-bottom: 0.75em;
	color:  var(--text);
	line-height: var(--text-line-height);
}

h2 sup, h3 sup, h4 sup {
	font-size:0.5em;
}
figure {
	position: relative;
	margin: unset;
}
figcaption {
	color: #fff;
	position: absolute;
    bottom: 0;
	left: 0;
    padding: 30px;
    background-color: rgba(0,0,0,0.5);
    width: 100%;
}

figcaption p {
	color: #fff;
	margin-bottom: 0.2em;
	    line-height: 1.25em;
}
figcaption a {
	color: #fff;
	text-decoration: underline;
}
figcaption.caption--below-image {
	position: static;
	background-color: transparent;
	color: var(--text);
	padding: 10px 0;
}
figcaption.caption--below-image a,
figcaption.caption--below-image p {
	color: var(--text)
}


img {
	max-width: 100%;
	height: auto;
	display: block;
}

blockquote, 
.wp-block-quote {
	border-left: 3px solid var(--bg-md);
	margin: 1.75rem;
	margin-left: 0;
	margin-right: 0;
	padding-left: 2em;
}
blockquote cite, 
.wp-block-quote cite {
	color: var(--text);
}

.table-container::-webkit-scrollbar {
  width: 10px;
}

.table-container::-webkit-scrollbar-track {
  background: var(--bg-neutral);
}


.table-container::-webkit-scrollbar-thumb {
  background: var(--bg-md);
}


.table-container::-webkit-scrollbar-thumb:hover {
   background: var(--ui-brown);
}
.entry-content  table,
table {
	max-width: 100%;
}
.entry-content  table tr {
	border: 0;
}
.entry-content  table th, 
.entry-content  table td {
	padding: 0.35rem;
	border-left: 0;
	border-right: 0;
	border-top: 0;
	border-bottom: 1px solid var(--ui-brown);
}
.entry-content  table tr:hover:nth-child(odd) td,
.entry-content  table tr:nth-child(odd) td {
	background-color: var(--neutral);
}
@media(max-width: 768px){
	.table-container  {
		overflow-x: scroll;
	}
	.table-container  > table {
		min-width: 700px;
	}
}

.sr-only {
	visibility: hidden;
	display:none;
}

button {
	cursor: pointer;
	outline-color: var(--text);
}
.btn {
	font-weight: 500;
	text-decoration: none;
	padding: calc(0.667em + 2px) calc(1.333em + 2px);
	font-size: 1.125em;
	display: inline-block;
	transition: all 0.4s;
}

.btn.cad-sc-btn {
	display: inline-block;
}
*:not(p) > .btn.cad-sc-btn  {
	margin-bottom: 1em;
}

.wp-block-buttons {
	margin-bottom: 1.5rem;
	margin-top:0.5rem
}
.wp-block-buttons.is-layout-flex {
	display:inline-flex;
} 
.wp-element-button,
.btn.btn-primary, 
.frm_button_submit {
	border-radius: var(--btn-radius);
	background-color: var(--red);
	font-family: var(--body-font);
	border:0;
	color: var(--light);
	font-weight: 600;
}

.btn:hover,
.btn.close:focus,
.btn.close:hover,
.btn:focus {
	background-color: var(--red);
	border-color: var(--red);
	color: var(--light);
}
.wp-element-button:hover ,
.wp-element-button:focus ,
.btn.btn-primary:hover , 
.frm_button_submit:hover,
.entry-content--simple .wp-element-button:hover {
	background-color: var(--text);
	color: var(--light);
}
.wp-element-button:focus ,
.btn.btn-primary:focus , 
.frm_button_submit:focus {
	outline: 2px solid;
}

.btn-lg {
	padding: 0.75rem 2rem;
}
.btn-md {
	padding: 0.5rem 1.5rem;
}
.btn-sm {
	padding: 0.25rem 1rem;
}
.btn.btn-primary svg.arrow_icon, 
.frm_button_submit svg.arrow_icon {
	fill: var(--light);
	height: 1rem;
	margin-left: 0.4em;
    margin-bottom: -0.1em;
}

.btn i {
	font-size:0.7em;
}
.sortfield,
.searchfield {
	display:inline-flex;
}

.sortfield select,
.searchfield input, 
.searchfield button {
	height: 50px;
	border: 0;
	padding: 0 1rem;
}
.searchfield {
	padding:0;
}

.searchfield input {
	border-radius: var(--btn-radius) 0 0 var(--btn-radius);
	font-size: 1.15rem;
}

.searchfield button[type="submit"] {
	border-radius:  0 var(--btn-radius) var(--btn-radius) 0;
	background-color: var(--red);
    color: #fff;
	font-size: 1.25rem;

}
.sortfield select {
	color: var(--text);
	border-radius: var(--btn-radius);
}
.border-btm {
	border-bottom: 1px solid;
}
.border-top {
	border-top: 1px solid;
}

.is-inline {
	display: inline;
}
fieldset {
	border:0;
}
svg {
	height: auto;
}

hr.wp-block-separator,
hr.sep {
	border-top: 1px solid var(--text);
	margin: 0.2em 0;
	border-style: solid;
}
.columns > hr.sep {
	width: 100%
}

:where(.wp-block-columns.is-layout-flex.gap-sm),
:where(.wp-block-columns.is-layout-flex:has(.box.wp-block-column)) {
    gap: 1em;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Lightbox */
.glightbox-container .goverlay {
	background-color:var(--bg-body);
	opacity: 0.9;
}

.gslider .gslide .gslide-description {
	background-color: transparent;
}
.gslider .gslide .gslide-description .gdesc-inner {
	padding: 15px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: var(--card-radius);
	margin-top: 10px;
	display:inline-block;
	width: auto;
}
.gslider .gslide .gslide-description .gslide-desc {
	color: #fff;
}
/* Formidable Forms */
.frm_forms .frm_form_fields .frm_fields_container {
	grid-gap: 0 1.25%;
}
.align-center .frm_form_fields .frm_fields_container {
	justify-content: center;
}
.frm_forms  .frm_form_field  .frm_primary_label,
.frm_forms   .frm_inside_container .frm_primary_label {
	color: var(--text);
	font-family: var(--body-font);
}
.frm_forms   .frm_inside_container .frm_primary_label { 
	position: absolute;
}

.frm_inside_container.frm_label_float_top .frm_primary_label {
	color: var(--text);
}
.frm_form_fields  .form-field .frm_dropzone,
.frm_form_fields .form-field .frm_dropzone.frm_single_upload {
	max-width: 100%;
}
.frm_form_fields  .form-field .frm_dropzone.dz-clickable .dz-message {
	border-radius: 10px;
	background-color: var(--bg-body);
}

.frm_submit.frm_last .frm_button_submit {
	width:100%;
	
}
/*** Custom Blocks ***/
/* Menu block */
.acf-block--inline-menu ul {
	display:inline-flex;
}
.acf-block--inline-menu li {
	margin: 0 1em 1em 0;
}
.acf-block--inline-menu li a {
	font-weight:bold;
	color: var(--red);
	font-size: var(--smaller-heading-size);
}
.acf-block--inline-menu li a:focus, 
.acf-block--inline-menu li a:hover {
	color: var(--dark)
}

.panel-menu-container {
	position:sticky;
	top: 110px;
	padding-right: 30px;
}

.acf-block--panel-menu li a {
	font-weight:bold;
	text-decoration:none;
}
.acf-block--panel-menu li.is-current--panel-sub a,
.acf-block--panel-menu li a:focus, 
.acf-block--panel-menu li a:hover {
	color: var(--red);
	text-decoration:underline;
}

.acf-block--panel-menu .back-link i {
	    font-weight: 500;
    font-size: 0.75em;
}
.acf-block--panel-menu .back-link:hover,
.acf-block--panel-menu .back-link:focus {
	color: var(--red);
}
.panel-menu-container a.btn {
	border-radius: var(--btn-radius);
	border: 1px solid;
	padding: 0.25em 0.75em;
	font-weight: 600;
}

@media(max-width:1024px){
	
}


/* Hover box */
.acf-block--hover-box {
	position: relative;
	height: 100%;
}
.acf-block--hover-box > div {
	display:flex;
	align-items: center;
	justify-content: center;
	text-align:center;
	border-radius: var(--card-radius);
	width: 100%;
	height: 100%;
}
.acf-block--hover-box .box--default {
	position: absolute;
	background: var(--red);
	opacity:1;
	padding: 1em;
	z-index:5;
	transition: all 0.35s;
}
.acf-block--hover-box .box--default > h4.box--heading {
	color: #fff;
	font-weight:bold;
	
}
.acf-block--hover-box:hover .box--default ,
.acf-block--hover-box:focus .box--default {
	opacity:0;
}
.acf-block--hover-box .box--hover {
	text-align:center;
	padding: 1em;
	background: var(--bg-md);
	position: relative;
	z-index:1;
}

/* summary card */

.acf-block--summary-card {
	position: relative;
	height: 100%;
	overflow: hidden;
	cursor: pointer;
}
.acf-block--summary-card > * {
	border-radius: var(--card-radius);
	padding: var(--box-padding);
	width: 100%;
	height: 100%;
}
.acf-block--summary-card .card--default {
	background: var(--bg-body);
	z-index:1;
	transition: all 0.35s;
}
.acf-block--summary-card h4.card--heading {
	color: var(--red);
	font-weight:bold;
	margin-top:0;
	font-size: var(--small-heading-size);
}
.acf-block--summary-card .card--hover > h4.card--heading.card--heading-hover {
	color: var(--light);
	text-decoration:none;
}

.acf-block--summary-card .card--hover {
	transform: translateY(calc(100% + 5px));
	background: var(--red);
	color: var(--light);
	z-index:5;
	position: absolute;
	top: 0;
	left:0;
	display:flex;
	flex-flow: column;
	justify-content: space-between;
	transition: all 0.5s;
	text-decoration:none;
}
.acf-block--summary-card:hover .card--hover,
.acf-block--summary-card:focus .card--hover {
	transform: translateY(0);
}
.acf-block--summary-card .card--hover span {
	color: var(--light);
	display:inline-flex;
	font-size: var(--smaller-heading-size);
	font-weight:bold;
}
.acf-block--summary-card .card--hover span svg {
fill: var(--light);
    height: 1.5rem;
    width: auto;
    margin-left: 0.5em;
    transform: translate(0, 0.1em);
	transition: all 0.5s;
}
.acf-block--summary-card .card--hover span:hover svg {
	transform: translate(0.5rem, 0.1em);
}
/** Helpers **/
.full-width {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.align-slider-spacing {
	margin-left: var(--slider-arrow-spacing);
	margin-right: var(--slider-arrow-spacing);
}

.align-slider-spacing-sm {
	margin-left: var(--slider-arrow-spacing-sm);
	margin-right: var(--slider-arrow-spacing-sm);
}
.align-slider-spacing-sm.w-100 {
	width: calc(100% - (var(--slider-arrow-spacing) * 2));
}

.align-slider-spacing-sm.w-100 {
	width: calc(100% - (var(--slider-arrow-spacing-sm) * 2));
}
.vbottom {
    display: flex;
    align-items: flex-end;
}

/** Site **/

.container {
	width: var(--container-width);
	max-width: 100%;
	margin: auto;
	position: relative;
}

.container--outer {
	padding: 20px;
	position: relative;
	max-width: 100%;
	z-index: 5;
}
.container--outer:last-child {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.container--inner {
	max-width: 100%;
	margin: auto;
	padding: 40px;
	position: relative;
}
@media(max-width: 768px){
	.container--inner {
		padding: 20px;
	}
	.container--outer {
		padding: 10px;
	}
}
.container--heading {
	width: var(--container--heading-width);
	max-width: 100%;
	margin: auto;
} 
.container--content {
	width: var(--container--content-width);
	max-width: 100%;
	margin: auto;
	position: relative;
}
.container--content-wide {
	width: var(--container--content-width--wide);
	max-width: 100%;
	margin: auto;
	position: relative;
}

.container--content-narrow {
	width: var(--container--content-width--narrow);
	max-width: 100%;
	margin: auto;
	position: relative;
}

.container--content-tight {
	width: var(--container--content-width--tight);
	max-width: 100%;
	margin: auto;
	position: relative;
}

@media(max-width:  1600px){
	.container--heading {
		padding: 0 20px
	} 
	
}
/**** Push Panels ****/
.is-pushable {
	transition: all 0.75s;
	transform: translateX(0);
	z-index: 1;
}
.is-pushed {
	transform: translateX(-100vw);
}
.push-panel {
	background-color: var(--bg-body);
	background-image: var(--bg-pattern);
	background-attachment: fixed;
	height: 100vh;
	position: fixed;
	transform: translateX(100vw);
	top: 0;
	transition: all 0.75s;
	max-width: calc(100% - var(--sidebar-width));
	width: 100%;
	z-index: 5;
	
}
.push-panel.is-active {
	transform: translateX(-20px);
}

.push-panel > .inner {
	height: 100vh;
	overflow-y:scroll;
}



.push-panel .close {
	width: auto;
	padding: 0.25rem 0.75rem;
	border-radius: var(--btn-radius);
	line-height: 1em;
	margin: 1rem 0;
	color: var(--light);
	background: var(--text);
	border:1px solid var(--ui-brown-50);
}

.push-panel .sticky-btn {
	position: sticky;
	top: 0;
	z-index: 90;
}
.push-panel .sticky-btn.is-sticky > .btn.close {
	margin-top:0;
	border-radius: 0 0 var(--btn-radius) 0;
	width: 120px;
	margin-bottom: 0;
}
.push-panel .container--content h3.panel-heading{
	color: var(--text-md);
	font-size: var(--small-heading-size);
}
.push-panel .container--content  h3[id]:not(:first-child) {
	margin-top: 2.75rem;
	padding-top: 2rem;
	border-top: 1px solid var(--bg-md);
}
.push-panel .container--content  h3[id]:first-child {
	margin-top:0;
}



@media(max-width:1400px){
	.push-panel {
		top: var(--site-header-height);
	}
	.push-panel > .inner {
		padding-left: 1.5rem;
	}
}
@media(max-width:1024px){
	.push-panel {
		max-width: 100%;
	}
	.push-panel .inner > .container--content  > .columns,
	.is-pushable > .columns {
		margin-left:0;
		margin-right:0
	}
}
@media(max-width:768px){
	.panel-menu-container {
		z-index:85;
		position: static;
		top: var(--site-header-height);
		background: var(--bg-body);
	}
	.panel-menu-container > .btn {
		display:none;
	}

	.acf-block--panel-menu ul {
		display:inline-flex;
		width:100%;
		flex-wrap: wrap;
		margin-bottom:0;
	}
	.acf-block--panel-menu ul li {
		margin: 0 1rem 0.65rem 0;
	}
}

/*z index top level containers */
	header#masthead {	
		z-index: 990;
	}

	#main-sidebar--panels {
		z-index: 995;
	}
	
	main#primary {
		position: relative;
		z-index: 985;
		min-height:  calc(100vh - var(--site-header-height));
	}

	body.header-scrolling header#masthead {	
		/*z-index: 980;*/
	}

	
	
.main-content-column {
	max-width: calc(100% - var(--sidebar-width));
}

@media(max-width: 1024px){
	.main-content-column {
		width: 100%;
		max-width: 100%;
	}

}
.box {
	border-radius: var(--box-radius);
	padding: var(--box-padding);
	background-color: var(--bg-box);
	position: relative;
	overflow: hidden;
}

.box[class^="mt-"],
.box[class^="mb-"] {
	display:inline-block;
}

.box.padding-xl {
	padding: calc(var(--box-padding) * 1.5);
}

.box.padding-xxl {
	padding: calc(var(--box-padding) * 2);
}

.eq-height-boxes > .box:only-child {
	height: 100%;
}

.box .box-footer {
	position: absolute;
	bottom: var(--box-padding);
	right: var(--box-padding);
	z-index: 20;
}
.box:has(.box-footer) {
	padding-bottom: calc( 30px + var(--box-padding));
}
.box:has(.box-footer.no-offset) {
	padding-bottom: var(--box-padding);
}

.box.wp-block-column > .wp-block-heading:first-child {
	margin-top:0;
}
.columns.is-masonry > .column {
  grid-row-end: span var(--row-span, 20);
}

.is-masonry>.columns>.column {
    padding: 0
}

.bg-body {
	background-color: var(--bg-body);
}
.bg-red {
	background-color: var(--red);
}
.light {
	background-color: var(--light);
}
.bg-md {
	background-color: var(--bg-md);
}
.bg-drk {
	background-color: var(--bg-drk);
}
.bg-neutral {
	background-color: var(--neutral);
}
.has-no-bg {
	background: transparent;
}


.has-cad-red-color,
.text-red, 
.text-red p, 
.text-red a {
	color: var(--red);
}
.has-cad-light-color,
.text-light ,
.text-light li,
.text-light a, 
.text-light p,
.text-white p, 
.text-white a {
	color:  var(--light);
}

.text-light a:hover ,
.text-white a:hover {
	color: #fff;
}

.has-cad-text-dark-color,
.text-dark {
	color: var(--text-dark);
}
.has-cad-text-md-color,
.text-md {
	color: var(--text-md);
}

.has-cad-text-color {
	color: var(--text);
}
.has-cad-ui-brown-color {
	color: var(--ui-brown);
}
.text-logo-dark {
	color: var(--logo-dark);
}
.mt-0 {
	margin-top: 0
}
.mt-xxs {
	margin-top: 0.1rem
}
.mt-xs {
	margin-top: 0.2rem
}
.mt-sm {
	margin-top: 0.4rem
}
.mt-md {
	margin-top: 0.75rem
}
.mt-lg {
	margin-top: 1.15rem
}
.mt-xl {
	margin-top: 2rem
}
.mt-xxl {
	margin-top: 2.65rem
}

.mb-0 {
	margin-bottom: 0
}
.mb-xxs {
	margin-bottom: 0.1rem
}
.mb-xs {
	margin-bottom: 0.2rem
}
.mb-sm {
	margin-bottom: 0.4rem
}
.mb-md {
	margin-bottom: 0.75rem
}
.mb-lg {
	margin-bottom: 1.15rem
}
.mb-xl {
	margin-bottom: 2rem
}

.mb-xxl {
	margin-bottom: 2.65rem
}

.is-paddingless-top {
	padding-top: 0;
}

.is-paddingless-bottom {
	padding-bottom: 0;
}

.is-paddingless-left {
	padding-left: 0;
}

.is-paddingless-right {
	padding-right: 0;
}

.w-100 {
	width: 100%;
}
.h-100 {
	height: 100%;
}

.is-underlined {
	text-decoration: underline;
}

.has-card-radius {
	border-radius: var(--card-radius);
}
.has-box-radius {
	border-radius: var(--box-radius);
}
/** Bulma **/
.columns {
	max-width: 100%;
}
.columns .column {
	margin-inline-start: 0;
	margin-inline-end: 0;
}
.columns.grid-lines > .column {
	border-bottom: 1px solid;
	border-right: 1px solid;
}

@media(min-width: 1024px){
	.columns.grid-lines > .column.is-6-desktop:nth-child(2n+2){
		border-right: 0;
	}
	.columns.grid-lines > .column.is-6-desktop:nth-last-child(-n+2):not(:nth-child(2)) {
		border-bottom: 0;
	}
	.columns.grid-lines > .column.is-4-desktop:nth-child(3n+3){
		border-right: 0;
	}
		
	.columns.grid-lines > .column.is-4-desktop:nth-last-child(-n+3):not(:nth-child(3)) {
		border-bottom: 0;
	}
	.columns.grid-lines > .column.is-3-desktop:nth-child(4n+4){
		border-right: 0;
	}
	.columns.grid-lines > .column.is-2-desktop:nth-last-child(-n+4):not(:nth-child(4)) {
		border-bottom: 0;
	}
}

@media(min-width: 768px){
	.columns.grid-lines > .column.is-6:nth-child(2n+2){
		border-right: 0;
	}
	.columns.grid-lines > .column.is-6:nth-last-child(-n+2) {
		border-bottom: 0;
	}
	.columns.grid-lines > .column.is-4:nth-child(3n+3){
		border-right: 0;
	}
		
	.columns.grid-lines > .column.is-4:nth-last-child(-n+3) {
		border-bottom: 0;
	}
	.columns.grid-lines > .column.is-3:nth-child(4n+4){
		border-right: 0;
	}
	.columns.grid-lines > .column.is-2:nth-last-child(-n+4) {
		border-bottom: 0;
	}
}

@media(max-width: 1024px) and (min-width: 769px){
	.columns.grid-lines > .column.is-6-tablet:nth-child(2n+2),
	.columns.grid-lines > .column.is-6-tablet-only:nth-child(2n+2){
		border-right: 0;
	}
	.columns.grid-lines > .column.is-6-tablet:nth-last-child(-n+2),
	.columns.grid-lines > .column.is-6-tablet-only:nth-last-child(-n+2) {
		border-bottom: 0;
	}

	.columns.grid-lines > .column.is-6-tablet-only:nth-child(3n+3){
		border-right: 1px solid;
	}
}

@media(max-width: 768px){
	.columns.grid-lines > .column,
	.columns.grid-lines > .column.is-12-mobile	{
		border-right: 0;
	}
	
	.columns.grid-lines > .column.is-12-mobile:last-child {
		border-bottom:0;
	}
	
	
}

/** Arrows **/

.grow-arrow {
    height: 18px;
    width: 18px;
	line-height: 14px;
    display: inline-block;
    background-color: var(--red);
    border-radius: 10px;
    transform: translateY(0.2em);
    margin-left: 0.2em;
	position:relative;
}
*:hover > .grow-arrow {
	width: 30px;
}
.grow-arrow svg,
.grow-arrow svg * {
	transition: all 0.3s;
}

.grow-arrow svg {
	width: 11px;
	height: 10px;
	transform: translate(0, 0);
}


*:hover > .grow-arrow svg  {
	overflow: visible;
	width: var(--grow-arrow-size--hover);
	height: var(--grow-arrow-size);
}
.link-item *:hover > .grow-arrow svg {
	left: 8px; 
}

*:hover > .grow-arrow svg #grow-arrow--line {
	transform: scale(1.75,1) translateY(35%);
    transform-origin: center right;
}

/** Accordion **/
details[open] {
	margin-bottom: 1.5rem;
}
details > summary {
	width: 100%;
    text-align: left;
    border: 0;
    background-color: transparent;
    color: var(--red);
	
    font-size: 1rem;
    padding: 0.35rem 0.75rem;
	padding-left: 35px;
	padding-bottom: 0.5rem;
	position: relative;
	transition: all 0.4s;
}
details > summary:has(strong) {
	color: var(--text-dark);
}
details > summary > strong {
	color: var(--red);
}
details > summary > *:only-child {
	font-weight: bold;
}
details summary::marker,
details summary::-webkit-details-marker {
  display:none;
  content: '';
}

details> summary:hover,
details[open] > summary {
	background-color: transparent;
	color: var(--text-dark);
}

details:not([open]),
details[open]  > summary {
	margin-bottom: 1.25rem;
}
details > * {
	padding: 0 0.75rem;
	padding-left: 35px;
}

.toggle-arrow {
	cursor: pointer;
	border-radius: 10px;
	position: absolute;
	right: 0;
	top: 0;
	width: var(--toggle-link-size);
	height: var(--toggle-link-size);
	transition: all 0.3s;
	border-radius: 30px;
	border: 1px solid;
}

.toggle-arrow:focus {
	outline: 2px solid;
	outline-color: var(--text);
}


.toggle-arrow > span{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0; 
	left: 0; 
	right: 0; 
	margin: auto; 
	display: flex;
    align-items: center;
    justify-content: center;
	line-height: 100%;
}
 .toggle-arrow .toggle-default {
	 font-weight: 300;
 }
details .toggle-arrow {
	left:0;
	right:auto;
	top: 0.5em;
}
details:not([open]) summary:hover  > .toggle-arrow {
	height: var(--toggle-link-size--hover);
}

.toggle-arrow:hover,
details:not([open]) summary:hover .toggle-arrow,
details[open] .toggle-arrow:not(:hover) {
	background-color: var(--red);
	border-color: var(--red);
}


details:not([open])  .toggle-arrow .toggle-open,
details:not([open]) .toggle-arrow .toggle-open,
details:not([open]) .toggle-arrow .toggle-close {
	opacity: 0;
}

details[open] .toggle-arrow .toggle-default,
details[open] summary:hover > .toggle-arrow .toggle-open,
details:not([open]) summary:hover .toggle-arrow .toggle-default,
details[open] summary:hover  .toggle-arrow .toggle-open,
details[open] summary .toggle-arrow .toggle-open {
	opacity: 0;
	height: 0; 
	width: 0;
}

details:not([open]) summary:hover  > .toggle-arrow .toggle-open  {
	opacity: 1;
	height: 100%; 
}

details[open] summary .toggle-arrow .toggle-close {
	opacity: 1;
	height: 100%; 
}
details:not([open]) summary .toggle-arrow .toggle-open svg {
	transform: scale(1,0);
	transition: all 0.3s;
}

details:not([open]) summary .toggle-arrow .toggle-open svg {
	transform: scale(1,1);
	transform-origin: center top;
}


/** Swiper **/
.swiper-container--outer {
	position: relative;
	margin-left: var(--slider-arrow-offset);
	margin-right: var(--slider-arrow-offset);
	padding-left: var(--slider-arrow-spacing);
	padding-right: var(--slider-arrow-spacing);
}
.swiper-container {
	overflow: hidden;
	position: relative;
}

.swiper-pagination-bullet {
	border: 1px solid #fff;
	background-color: #000;
	opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #fff;
}

.swiper-button-prev:after, .swiper-button-next:after {
	display: none;
}
.swiper-container--outer .swiper-button-prev {
	left: 0;
	right: auto;
}
.swiper-container--outer .swiper-button-next {
	right: 0;
	left: auto;
}

.swiper-btn:hover .grow-arrow {
	width: 26px;
}

.swiper-btn.swiper-button-prev .grow-arrow svg {
	transform: scale(-1);
	transform-origin: center;
}
.swiper-btn.swiper-button-next .grow-arrow svg {
	transform-origin: center;
}
.swiper-btn.swiper-button-prev:hover .grow-arrow svg {
	transform: scale(-1) translate(5px, 0);
}
.swiper-btn.swiper-button-next:hover .grow-arrow svg {
	transform:  translate(5px, 0);
}

/* thumbs */
.cad-posts-slider-thumbs  .swiper-slide {
	cursor:pointer;
	transform-origin: center;
	transition: all 0.4s;
}
.cad-posts-slider-thumbs  .swiper-slide:hover {
	transform: scale(1.05);
}
/** Common Nav **/
.horizontal-nav ul li {
	display: inline-block;
	line-height: 1.1em;
}
nav ul {
	list-style:none;
}
nav ul.menu {
	padding-left: 0;
}
nav ul li a:hover {
	color: var(--red);
}
li.menu-item-has-children {
	position:relative;
	padding-right: 30px;
}

.site-header .sub-menu {
  display: none;
  text-align: left;
  max-width: 100%;
}

.horizontal-nav .sub-menu  {
	position: absolute;
  top: 100%;
  left: 0;
}
.sub-menu--open > .sub-menu {
	/*display:block;*/
}
.sub-menu--open .sub-menu > li {
	display: inline-block;
	width: 100%;
}

/****** HEADER ******/
header.site-header {
	position: sticky;
	top: 0;
	transition: all 0.3s;
	background-color: var(--neutral);
	min-height: var(--site-header-height);
	width: var(--sidebar-width);
} 
.home .site-header > .container {
	background-color: var(--neutral);
}


.site-header > .container {
	width: 100%;
	margin-right: 0;
	padding: 0 20px;
	background-color: var(--bg-body);
	min-height: var(--site-header-height);
}

.site-header .main-nav-column {
	padding-left: 0;

}
.site-header  .site-branding.column {

	padding-bottom: 0;
}
.site-header  .site-branding img {
	width: 80px;
	max-width: 100%;
	height: auto;
	margin-bottom: 10px;
	margin-top: 10px;
}
.site-header  .site-branding .site-name {
	margin-bottom: 15px;
}
.site-header  .site-branding .site-name span {
	font-weight: 800;
	font-size: 1.4rem;
	display: inline;
	line-height: 0.8em;
	text-transform: capitalize;
}
.site-header  .site-branding .site-name a {
	text-decoration: none;
	transition: all 0.4s;
}
.site-header  .site-branding .site-name a:hover  {
	transform: scale(1.025);
}
#sidebar-toggle {
	padding: 0;
	background: transparent;
	width: 40px;
	height: 40px;
	font-size: 20px;
	color: var(--ui-brown);
	line-height: 12px;
	border: 1px solid var(--ui-brown-50);
	border-radius: 10px;
}

@media(max-width:1024px){
	header.site-header {
		width:100%;
	}
	.site-header > .container {
		min-height:var(--site-header-height);
	}
	.site-header .site-header--main {
		justify-content: space-between;
	}
	.site-branding {
		padding-top:0;
		display:flex;
		        align-items: center;
	}

	.site-header  .site-branding > .site-name {
		margin-bottom:0;
		
	}
	.site-header  .site-branding .site-name span {
		font-size:1rem;
		line-height: 0.8em;
	}
	.site-header  .site-branding .site-name br {
		display:none!important;
	}
}
@media(max-width: 768px){
	.site-header > .container {
		width: 100%;
	}
	header.site-header {
		min-height: 65px;
	/*	padding-top: 40px; /*accessibility widget*/
	}
	.site-header > .container {
		padding: 0 10px;
	}
	.columns.site-header--main {
		padding: 5px 0;
	}
	
}

/*scrolling */
.site-header  .column {
	transition: all 0.4s;
}
.site-header .scrolling {
	
}

/*** Accessibility Widget ***/
.fl-prefsEditor-separatedPanel {
    position: fixed;
	width: 100%;
    z-index: 9999;
    height: 0px;
}
.fl-prefsEditor-buttons {
	position:absolute;
	top:0;
	z-index:999;
}
.fl-prefsEditor-separatedPanel .fl-panelBar .fl-prefsEditor-buttons {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		box-shadow:none;
	}
	
.fl-prefsEditor-buttons button.flc-slidingPanel-toggleButton.fl-prefsEditor-showHide {
	/*display:none;*/
	text-transform:unset;
}

.fl-panelBar-wideScreen .flc-slidingPanel-toggleButton:not([aria-pressed="true"])  {
	display:none!important;
}

@media(max-width:768px){
	.fl-prefsEditor-buttons .flc-slidingPanel-toggleButton  {
		width: 100%;
		font-size: 0.8rem;
		background-color: var(--text);
		color: #fff;
		height: 40px;
	}
	.fl-prefsEditor-separatedPanel .fl-panelBar .fl-prefsEditor-buttons {
		height: 40px;
	}
	.flc-prefsEditor-reset.fl-prefsEditor-reset {
		top: 0;
		position: relative;
	}
	
	header.masthead  {
		
	}
}

.flc-toc-tocContainer.toc {
	padding: 0 5%;
}

/**** SIDEBAR ****/

#main-sidebar {
	width: var(--sidebar-width);

	padding: 0;
	display: flex;
	align-items: center;
	flex-flow: column;
	z-index: 20;

}
.main-sidebar-column > .inner {
	display: flex;
	flex-flow: column;
	width: var(--sidebar-width);
	margin: auto;
	max-width: 100%;
	position: fixed;
	top: var(--site-header-height);
	height: calc(100vh - var(--site-header-height));
	overflow-y:scroll;
	padding: 1.5rem 1.75rem;
	padding-right: 1rem;
	background-color: var(--neutral);
}
main ::-webkit-scrollbar {
  width: 5px;
}

main ::-webkit-scrollbar-track {
  background: var(--bg-neutral);
}


main ::-webkit-scrollbar-thumb {
  background: var(--bg-md);
}


main ::-webkit-scrollbar-thumb:hover {
   background: var(--ui-brown);
}

#sidebar-nav ul {
	margin: 0;
}
#sidebar-nav li a {
	text-decoration: none;
	display: inline-flex;
	   width: 100%;
    align-items: center;
	 padding: 10px 0;
}
#sidebar-nav ul.menu > li {
	border-top: 1px solid var(--ui-brown-50);
    padding: 20px 0;
}

#sidebar-nav ul.menu > li > a {
	 font-weight: 700;   
	 padding-top: 0;
}
#sidebar-nav  ul.menu > li:last-child  {
	border-bottom: 1px solid var(--ui-brown-50);
	padding-bottom: 10px;
}
#sidebar-nav  .menu-item.is-current > ul.sub-menu > li.is-current--sub > a,
#sidebar-nav  ul.menu > li.is-current > a,
#sidebar-nav  ul.menu > li a:hover,
#sidebar-nav   ul.menu > li a:focus  {
	text-decoration: underline;
	color: var(--red);
}

#sidebar-nav ul.sub-menu {
	padding-left:0;
}
#sidebar-nav ul.sub-menu > li {
	margin-bottom:0.5em;
}
#sidebar-nav ul.sub-menu > li a {
	padding: 2px 0;
}

.sidebar-item--cad-logo img {
	width: 160px;
	height: auto;
}

@media(max-width: 1024px){

	#main-sidebar {
		transition: all 0.5s;
		background-color: #fff;
		position: fixed;
		top: 0;
		height: 100%;
	}
	#main-sidebar:not(.is-open) {
		transform: translateX(calc(var(--sidebar-width) * -1));
	}
}

/*** Search Results ***/
#search-results-panel .column > .box {
	min-height: 60vh;
}
.search-results .result {
	padding: var(--card-padding);
	background: var(--bg-body);
	border-radius: var(--card-radius);
	margin-bottom: 1rem;
	display:inline-block;
	width: 100%;
}
.search-results .result p {
	margin-bottom:0;
}
.search-results .result a {
	font-weight:bold;
}
mark.search-result-item {
	background-color: yellow;
}

/**** FOOTER ****/

footer.site-footer {
	margin-left: var(--sidebar-width);
	font-weight: 500;
	margin-top: -1px;
	background: var(--bg-box);
	position: relative;
	z-index:999;
	transition: all 0.5s;
}

body.has-active-panel footer.site-footer:not(.show-over-panel) {
	transform:translateY(100%);
}

footer.site-footer .container--inner {
padding-left:0;
padding-right:0;
}

footer.site-footer .container--inner > .columns {
	margin:auto;

}
footer.site-footer .footer-item {
	padding: 0 30px;
}
footer.site-footer .footer-item:not(:first-child){
	margin-top: 1.5rem;
}
footer.site-footer .footer-heading {
	margin-bottom: 0.5em;
	color: var(--text-dark);
	font-size: 1.1rem;
}
footer.site-footer #footer-nav ul {
	columns: 2;
	padding-left: 0;
}
footer.site-footer #footer-nav ul li {
margin-bottom: 0.5em;
}

footer.site-footer .footer-item--credit p, 
footer.site-footer .footer-item--land-acknowledgement p {
	font-weight: 400;
	color: var(--grey-md);
}
footer.site-footer .footer-item--credit p{
    line-height: 1.25em;
	font-size: 0.85rem;
}
footer.site-footer .footer-item--land-acknowledgement p {
	font-size: 0.95rem;
}

footer.site-footer .footer-item--cad-logo .site-logo-link  {
	text-align: center;
	    display: inline-block;
}
footer.site-footer .footer-item--cad-logo img {
	width: 190px;
		height: auto;
}

@media(max-width: 1024px){
	footer.site-footer {
		padding: 0 0.75rem;
		margin-left:0;
	}
	footer .site-footer--content, 
		footer .container--inner{
		padding: 10px;
	}
	footer.site-footer .footer-item {
		padding: 0 ;
	}
	
}

@media(max-width: 480px){ 
	footer.site-footer .footer-item--newsletter .frm_fields_container {
		display: flex;
		align-items: flex-start;
		flex-flow: column;
	}
	footer.site-footer .footer-item--newsletter .frm_form_field ,
	footer.site-footer .footer-item--newsletter input {
		width: 100%;
	}
	
}

/**** FORMS ****/
.form-field  {
	position: relative;
}
@media(min-width:600px) and (max-width:980px){
	.frm_forms .frm_fourth,
	.frm_forms .frm_form_field.frm_fourth {
		grid-column: span 6/span 6;
	}
}

@media(max-width: 600px){
	.frm_form_fields .frm_fields_container {
		display:block;
	}
}


/** Breadcrumbs **/
.breadcrumbs {
	margin-bottom: 2rem;
	font-size: 0.9rem;
}
#cad-breadcrumbs a {
	color: var(--text);
}
#cad-breadcrumbs a:hover {
	color: var(--red);
}
@media(max-width: 768px){
	.breadcrumbs {
		font-size: 0.85rem;
		margin-bottom: 1rem;
	}
}
/** Pagination **/
.pagination  {
	margin-top: 30px;
	display: inline-block;
	width: 100%;
	text-align: center;
}
.pagination a,
.pagination span {
	font-weight: 600;
	color: var(--text-md);
	text-decoration: none;
	cursor: pointer;
	margin: 5px;
}
.pagination a:hover,
.pagination span:hover,
.pagination a:focus,
.pagination span:focus, 
.pagination span.current {
	text-decoration: underline;
	color: var(--red);
}
.pagination .prev , 
.pagination .next {
	font-size: 0;
    line-height: 1em;
    transform: translate(0, 3px);
    display: inline-block;
}

.pagination .prev svg {
	 transform: translate(0px, -1px) scale(-1);
}
.pagination .next svg {
	 transform: translate(0px, -1px);
}
.pagination .prev:hover svg,
.pagination .prev:focus svg  {
	 transform: translate(-4px, -1px) scale(-1);
}
.pagination .next:hover svg ,
.pagination .next:focus svg {
	 transform: translate(4px, -1px);
}
@media(max-width: 768px){
	.pagination {
		margin-bottom: 20px;
	}
}
/*************************
			PAGES
************************/
.heading-section { 
	transition: all 0.5s;
	min-height: 250px;
}
@media(min-width: 1024px){
	.heading-section {
		position: sticky;
		top: var(--site-header-height); 
	}
}


.heading-section h1:last-child,
.heading-section h1.title--no-underline {
	padding-bottom: 0;
	border-bottom: 0
}

body:not(.home) .page  >.heading-section {
		min-height: 300px;
}

body:not(.home) .heading-section > .container--heading {
	padding-top: 40px;
	padding-bottom: 40px;
}


.heading-section h1 {
	padding-bottom: 0.75em;
	border-bottom: 2px solid;
}
.page  > .heading-section .entry-content p, 
.page.cad-blocks-page  > .heading-section .subheading, 
.page p.subheading {
	font-size: var(--large-text-size);
	font-weight: var(--large-text-weight);
	line-height: var(--large-text-line-height);
	color: var(--text-dark);
}

article  > .heading-section figure {
	border-radius: var(--box-radius);
	overflow: hidden;
	margin-bottom:0;
}
article  > .heading-section figure img {
	min-height: 300px;
	width: 100%;
	object-fit: cover;
	max-height: 500px;
}

@media(min-width: 1024px){
	.page  > .heading-section .column:first-child {
		padding-right: 5%;
	}
}
@media(max-width: 768px){
	.heading-section,
	body:not(.home) .page  >.heading-section {
		min-height: 160px;
	}
	body:not(.home) .heading-section > .container--heading {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.heading-section .lp-subheading {
		margin-bottom: 0;
	}
	.heading-section h1 {
		padding-bottom: 0.5em;
		margin-bottom: 0.5em;
	}
}

.page .container--inner .inner-thumb > figure.post-thumb {
	margin-bottom: 2rem;
}
.page .inner-thumb .post-thumbnail img {
	width: 100%;
}

.entry-content figure.wp-block-image figcaption {
	position: static;
	background: transparent;
	color: var(--text);
	padding: 0.25rem 0 0.75rem 0;
	font-size: 0.9rem;
	font-style: italic;
}

.wp-block-image  img {
	border-radius: var(--box-radius);
}

/*** SIMPLE INNER PAGE ***/
.container--content  h1, 
.container--content  h2, 
.container--content  h3, 
.container--content  h4 {
   margin-top: 1.125em;
   font-weight: 400;
   margin-bottom: 0.5em;
   width: 100%;
}
.container--content  h1:not(.has-text-color), 
.container--content  h2:not(.has-text-color), 
.container--content  h3:not(.has-text-color), 
.container--content  h4:not(.has-text-color){
	  color: var(--red);
}
.container--content  h1 {
	font-size: var(--large-heading-size);
    font-weight: var(--large-heading-weight);
	display: inline-block;
    margin-bottom: 1em;
}
.container--content  h2 {
	font-size: var(--secondary-heading-size);
    font-weight: var(--secondary-heading-weight);
	display: inline-block;
    margin-bottom: 1em;
}
.container--content  h3{
	font-size: var(--medium-heading-size);
    font-weight: var(--medium-heading-weight);
}

.entry-content--simple a:hover {
	color: var(--red);
}

.container--content > h2:first-child {
	margin-top:0;
}

/*** HOME ***/
.home .heading-section {
background-color: var(--neutral);
}


/*** 404 ***/
.error404 .main-nav:not(.open-complete) .sub-menu li {
	opacity: 1;
}
.error404 .main-content-column .container--content-narrow {
	min-height: 400px;
	padding: 100px 30px;
}
.error404 .main-content-column h1 {
	font-size: 10rem;
	color: var(--ui-brown);
	line-height: 0.8em;
}
.error404 .main-content-column h4 {
	font-size:var(--large-text-size);
	font-weight: 400;
	color: var(--text);
}
.error404 #main-search .search--search-term {
	justify-content: center;
}
@media(max-width: 768px){
	.error404 h1 {
		font-size: 5rem;
	}
}
@media(max-width: 480px){
	.error404 h1 {
		font-size: 3.45rem;
	}
	.error404 p {
		font-size: 1rem;
	}
}

