/* EDITS OUTSIDE OF SASS */

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 160%;
	color: #3D3D3D;
}

.blobbottom, .blobtop {
	opacity: 1 !important;
}

.home header nav, header .logo {
	display: block !important;
}

header {
	padding: 0 0 20px 0;
}

.home header {
	padding: 0 0 20px 0;
}

.content h2 {
	text-align: center;
	font-style: normal;
	font-weight: 700;
	font-size: 46px;
	line-height: 56px;
	color: #FC1921;
	margin-bottom: 40px;
	margin-top: 10px;
}

.content h3 {
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 140%;
	color: #FC1921;
	margin-bottom: 30px;
	margin-top: 20px;
}

.content h3 + ul {
	margin-top: 0 !important;
	margin-bottom: 30px;
}

.single-page figure {
	width: 70% !important;
}

.content p {
	margin-bottom: 25px;
}

.content h4 {
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 140%;
	color: #3D3D3D;
	margin-top: 10px;
}

.wp-block-quote .wp-block-separator {
	border: 1px solid #EB5240 !important;
}

.wp-block-quote h4 {
	color: #FC1921;
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 140%;
	text-align: center;
	margin: 68px 0 33px 0;
}

.wp-block-quote p {
	color: #656565;
}




.buttons .button {
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 140%;
	text-align: center;
	color: #EB5240;
	border: 2px solid #FC1921 !important;
	border-radius: 70px;
	transition: background-color .2s ease-in-out;
	background-color: transparent;
	max-width: 450px;
	margin-bottom: 20px;
	text-transform: se
}

.buttons .button:hover {
	background-color: #FC1921;
	
}

.buttons a.back-button {
	color: #808284;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
}

.button .btn-bg, .button .btn-text {
	width: 100%;
	background-color: transparent;
	color: #FC1921;
	font-size: 18px;
	line-height: 140%;
}

.buttons .button:hover .btn-text {
	color: #fff;
}

.content a {
	color: #0000FF !important;
	transition: color .2s ease-in-out;
}

.content a:hover {
	text-decoration: underline;
}

header .logo img {
	margin: 20px 0;
	max-width: 250px;
}

header.top .container {
	max-width: 1200px;
}

footer .container {
	max-width: 1200px !important;
}
.footer_wrapper{
	display: flex;
}
@media screen and (max-width:47.9rem){
	.footer_wrapper{
		flex-direction: column;
	}
}

footer img {
	max-width: 150px;
	height: auto;
	margin-left: auto;
}
.footer-link {
	font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
	color: #3D3D3D;
	padding: 0 16px;
}
.footer-text{
	align-self: center;
}
.footer-logo{
	flex:1;
}
@media screen and (max-width:47.9rem){
	.footer-logo{
		align-self: center;
	}
	.footer-link{
		padding: 0 0 0 11px;
	}
}
/* New Home Button */

.after-button-links {
	text-align: center; /* Center the content */
	list-style-type: none; /* Remove the default list bullets */
	padding: 0; /* Remove default padding */
	margin: 60px 0 0 0; /* Remove default margin */
}

.after-button-links li {
	display: inline; /* Display the list items inline */
	padding: 0 20px; /* Add 20px of horizontal padding to each list item */
}

.after-button-links li:first-child {
	padding: 0 0 0 20px;
}

.after-button-links li:not(:last-child):after {
	content: "|"; /* Add a vertical pipe */
	padding-left: 20px; /* Add some space to the left of the pipe */
	color: #808284;
}

.after-button-links a {
	text-decoration: none; /* Remove the underlines from the links */
	color: #000; /* Set link color to black or any color you prefer */
}

.after-button-links a:hover {
	text-decoration: underline; /* Add underlines back in on hover, or style as you prefer */
}

/* Lightbox */ 

#lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 200px;
	flex-direction: row-reverse;
}

#lightbox img {
	max-width: 90%;
	max-height: 90%;
	border: 5px solid #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #555;
}

#close-button {
	position: relative;
	font-size: 50px;
	color: #fff;
	z-index: 1001;
	align-self: flex-start;
}

