/*Font styles used for the site*/
body {  
	font-family: quincy-cf, serif;
	font-size: clamp(16px, 1.6vw, 25px);
	line-height:1.5;
	color:var(--body_colour,#000);
}
img {
	max-width:100%;
	height:auto;
}
a {
	color:var(--link_colour);
}
a:hover {
	color:var(--link_colour_hover);
	text-decoration:none;
}
a:focus {
	text-decoration:none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
	color:var(--og-red,#eb2227);
	font-family: quincy-cf, serif;
	font-weight:100
}
h1,.h1{

}
h2,.h2{
	
}
h3,.h3{
	
}
h4,.h4{
	
}
h5,.h5{
	
}
h6,.h6{
	
}
p {
	
}
table {
	width:100%;
	margin-bottom:1em;
}

/*Button*/
.blockButton > a,
a.button,
button {
	display: inline-flex;
	align-items: center;
	margin-top: 50px;
    color: var(--button_colour,#eb2227);
    border: none;
    background: none;
	text-decoration:none;
    line-height: 1.4em;
    padding: 0;
    position: relative;
    transition: 300ms;
	font-size: 24px;
}
a.button::before {
	content: '';
	position: absolute;
	left: -52px;
	top: 50%;
	width: 140px;
	height: 112px;
	background-image: url(../images/bottom-shape-red.svg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateY(-50%) rotate(90deg);
	transition: transform 0.4s ease;
}
a.button {
	padding-left: 40px; /* make room for the arrow */
	transition: padding 0.4s ease, color 0.3s;
}
@media (min-width: 992px) {
	a.button {
	padding-left: 80px; /* make room for the arrow */
}
}

.blockButton> a:hover,
a.button:hover,
button:hover {
	background: none;
	color: var(--button_colour, #eb2227);
	border-color: transparent;
	padding-left: 100px;
	opacity: 0.5;
}
a.button:hover::before {
	transform: translateY(-50%) translateX(10px) rotate(90deg) scaleY(1.5);
}
button:focus {
	outline:0;
}

/* ---- Outline buttons ---- */
a.outline--btn--white,
a.outline--btn--red {
	display: inline-flex;
	align-items: center;
	padding: 12px 28px 12px 50px;
	border-radius: 12px;
	border: 1px solid;
	font-family: quincy-cf, serif;
	font-weight: 200;
	font-size: 24px;
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	margin-top: 30px;
	transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
/* White outline */
a.outline--btn--white {
	border-color: #fff;
	color: #fff;
}
/* Left arrow — fades out on hover */
a.outline--btn--white::before {
	content: '';
	position: absolute;
	left: -26px;
	top: 50%;
	width: 70px;
	height: 56px;
	background-image: url(../images/bottom-shape.svg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	transform: translateY(-50%) rotate(90deg);
	opacity: 1;
	transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Right arrow — slides in on hover */
a.outline--btn--white::after {
	content: '';
	position: absolute;
	right: -70px;
	top: 50%;
	width: 70px;
	height: 56px;
	background-image: url(../images/bottom-shape.svg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	transform: translateY(-50%) rotate(90deg);
	opacity: 0;
	transition: right 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
a.outline--btn--white span {
	display: block;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
a.outline--btn--white:hover {
	background: none;
	color: #fff;
	overflow: visible;
	opacity: 0.5;
}
a.outline--btn--white:hover span {
	transform: translateX(-15px);
}
a.outline--btn--white:hover::before {
	opacity: 0;
}
a.outline--btn--white:hover::after {
	right: -44px;
	opacity: 1;
}
/* Red outline */
a.outline--btn--red {
	border-color: var(--og-red);
	color: var(--og-red);
}
/* Left arrow — fades out on hover */
a.outline--btn--red::before {
	content: '';
	position: absolute;
	left: -26px;
	top: 50%;
	width: 70px;
	height: 56px;
	background-image: url(../images/bottom-shape-red.svg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	transform: translateY(-50%) rotate(90deg);
	opacity: 1;
	transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Right arrow — slides in on hover */
a.outline--btn--red::after {
	content: '';
	position: absolute;
	right: -70px;
	top: 50%;
	width: 70px;
	height: 56px;
	background-image: url(../images/bottom-shape-red.svg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	transform: translateY(-50%) rotate(90deg);
	opacity: 0;
	transition: right 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
a.outline--btn--red span {
	display: block;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
a.outline--btn--red:hover {
	background: none;
	color: var(--og-red);
	overflow: visible;
	opacity: 0.5;
}
a.outline--btn--red:hover span {
	transform: translateX(-15px);
}
a.outline--btn--red:hover::before {
	opacity: 0;
}
a.outline--btn--red:hover::after {
	right: -44px;
	opacity: 1;
}

blockquote {
	font-style:italic;
	font-size:1.5em;
	font-weight:400;
	padding:2.2em 1.1em;
	text-align:center;
}

blockquote cite{
	font-weight:700;
}
tbody, td, tbody, th {
	padding:0.3125rem 0.625rem;
}
tbody, td, tfoot, th, thead, tr {
	border-width:1px;
}

.gallery  {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -7.5px;
    margin-left: -7.5px;
	text-align:center;
}
.gallery  .gallery-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
	padding:7.5px;
	margin-bottom:0;
}
.gallery  .gallery-item img{
	width:100%;
	aspect-ratio:1;
}
.gallery.gallery-columns-2 .gallery-item {
	-ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.gallery.gallery-columns-3 .gallery-item {
	-ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.gallery.gallery-columns-4 .gallery-item {
	-ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.gallery.gallery-columns-5 .gallery-item {
	-ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}
@media (max-width:767.99px){
	.alignright,
	.alignleft,
	a img.alignright,
	a img.alignleft{
		float:none;
		margin:5px auto 20px;
		display:block;
	}
}