:root {
	--Red: #DE0000;
	--Blue: #044068;
	--Light-Blue: #1D5377;
	--Grey: #F0F0F0;

	--width-full:  clamp(15px, 6vw, 60px);
	--width-xl: max(clamp(15px, 6vw, 60px), calc(50% - 810px));
	--width-l: max(clamp(15px, 6vw, 60px), calc(50% - 760px));
	--width-m: max(clamp(15px, 6vw, 60px), calc(50% - 700px));
	--width-s: max(clamp(15px, 6vw, 60px), calc(50% - 500px));

	--padding-xl: clamp(20px, 6vw, 110px);
	--padding-l: clamp(20px, 6vw, 100px);
	--padding-m: clamp(15px, 4vw, 50px);
	--padding-s: clamp(15px, 3vw, 30px);

	--gap-xl: clamp(20px, 5vw, 100px);
	--gap-l: clamp(15px, 3vw, 50px);
	--gap-m: clamp(15px, 2vw, 20px);
	--gap-s: clamp(10px, 2vw, 10px);
}

body , textarea , input , select {
	font-size: 16px;
	line-height: 1.2em;
	color: #666;
	font-family: 'Catamaran', sans-serif;
}

strong {
	font-weight: 800;
}

p > strong {
	color: #323232;
}

h1 , h2 , h3 , h4 , h5 , h6 , .hero , .title-large, .title-medium, .title-small {
	color: var(--Blue);
	line-height: 1.2em;
	margin: 0.8em 0;
	font-family: 'Oswald', sans-serif;
}

.hero {
	font-size: clamp(30px, 2.5vw, 64px);
}
h1, h2, .title-large {
	font-size: clamp(28px,  2vw, 38px);
}
h3 , .title-medium {
	font-size: clamp(26px, 1.8vw, 28px);
}
h4 , .title-small {
	font-size: 24px;
}

h5  {
	font-size: 20px;
}

h6 {
	font-size: 16px;
}
p {
	margin: 2em 0;
}

.minus-margin {
	margin-bottom: 0;
}

.minus-margin + * {
	margin-top: 5px;
}

.light-text {
	font-weight: 300;
}

.regular-text {
	font-weight: 400;
}
.semi-bold-text {
	font-weight: 600;
}

.catamaran-text {
	font-family: 'Catamaran', sans-serif;
}

.underline {
	text-decoration: underline;
}

a {
	color: var(--Blue);
	transition: .3s;
}
a:hover {
	opacity: 0.7;
}

.alignleft {
	float: left;
	margin-right: 20px;
}
.alignright {
	float: right;
	margin-left: 20px;
}
.aligncenter {
	margin: auto;
	text-align: center;
	display: block;
}

img {
	max-width: 100%;
	height: auto;
}
div.wp-caption {
	max-width: 100%;
	display: inline-block;
}
p.wp-caption-text {
	background-color: #f7f7f7;
	color: #808080;
	padding: 16px 25px;
	font-size: 18px;
	font-style: italic;
}

.button {
	padding: clamp(7px, 2vw, 14px) clamp(12px, 3vw, 25px);
	display: inline-block;
	text-decoration: none;
	color: #fff;
	background: var(--Red);
	border: 2px solid var(--Red);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 800;
	transition: .3s;
	letter-spacing: 1px;

}
.button.blue {
	background: var(--Blue);
	border-color: var(--Blue);
}

.button.white {
	background: #fff;
	border-color: #fff;
	color: var(--Blue);
}
.button.outline {
	background: transparent;

}

.button.outline {
	color: var(--Red);
}

.button.outline.blue {
	color: var(--Blue);
}

.button.outline.white {
	color: #fff;
}

.button + .button {
	margin-left: 15px;
}

.button:hover {
	transform: translateY(-2%) translateX(-2%);
	opacity: 1;
}


.mce-content-body a.button[data-mce-selected] {
	padding: 8px 20px;
	margin: 0;
	box-shadow: none;
	border-radius: 0;
}

.mce-content-body a.button.white {
	background-color: #eee;
}

.mce-content-body span[style="color: #ffffff;"] {
	color: #eee!important;
}



button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=search] {
	-webkit-appearance: none;
}

/* bullet points */

ul.check_ul {
	list-style: none;
	padding: 0;
}
ul.check_ul > li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 10px;
}

ul.check_ul > li > * {
	margin: 0;
}
ul.check_ul > li:last-child {
	margin-bottom: 0;
}
ul.check_ul > li::before {
	content: '';
	margin-right: 15px;
	min-width: 20px;
	min-height: 20px;
	background: center / 16px 12px no-repeat url("data:image/svg+xml,%3Csvg width='16' height='13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m5.43 12.23-5.2-5.2a.8.8 0 0 1 0-1.13l1.14-1.13a.8.8 0 0 1 1.13 0L6 8.27l7.5-7.5a.8.8 0 0 1 1.13 0l1.14 1.13a.8.8 0 0 1 0 1.13l-9.2 9.2a.8.8 0 0 1-1.14 0Z' fill='%23DE0000'/%3E%3C/svg%3E");
}

.styled_hr {
	width: clamp(80px, 5vw, 100px);
	height: clamp(5px, 1vw, 10px);
	border: none;
	margin: 1.5rem  0;
}



.styled_hr.center {
	margin-left: auto;
	margin-right: auto;
}

.styled_hr.right {
	margin-right: 0;
	margin-left: auto;
}

@media (max-width: 450px) {
	.button {
		min-width: 100%;
		box-sizing: border-box;
		text-align: center;
	}

	.button + .button {
		margin: 10px 0 0;
	}
}