/*
Theme Name: TRAIL
Theme URI: 
Description:
Version: 1.0
Author:
Author URI:
Tags:
*/
*, *:after, *:before {
	box-sizing:border-box;
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
	background: none;
	outline: none;
}

:root {
	--lighter-grey-color: #d5d8de;
	--light-grey-color: #eceff5;
	--med-grey-color: #8992a2;
	--grey-color: #3e4857;
	--red-color: #e32119;
	--white-color: #FFF;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizelegibility;
	font-size: 100%;
	-webkit-text-size-adjust: none;
	background-color: var(--light-grey-color);
	line-height: 1.2;
}

html, body, select, input, textarea, button {
	font-family: 'Montserrat', 'Arial', sans-serif;
	font-weight: 400;
	color: var(--grey-color);
}

::-moz-selection {background: rgba(0,0,0,0.1); text-shadow: none;}
::selection {background: rgba(0,0,0,0.1); text-shadow: none;}

::-webkit-input-placeholder {
	color:var(--med-grey-color);
	opacity: 1;
	transition: all .25s ease;
}

:focus::-webkit-input-placeholder {
	opacity: 0;
}

:-moz-placeholder {
	color:var(--med-grey-color);
	opacity: 1;
	transition: all .25s ease;
}

:focus:-moz-placeholder {
	opacity: 0;
}

::-moz-placeholder {
	color:var(--med-grey-color);
	opacity: 1;
	transition: all .25s ease;
}

:focus::-moz-placeholder {
	opacity: 0;
}

:-ms-input-placeholder {  
	color:var(--med-grey-color);
	opacity: 1;
	transition: all .25s ease;
}

:focus:-ms-input-placeholder {
	opacity: 0;
}

::placeholder {
	color:var(--med-grey-color);
	opacity: 1;
	transition: all .25s ease;
}

:focus::placeholder {
	opacity: 0;
}

button, input, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: none;
	border-radius: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	transition: background-color 99999s ease-in-out 0s;
	-webkit-text-fill-color: #000 !important;
	background-color: transparent !important;
}

a, input, textarea {
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}

a:link {-webkit-tap-highlight-color: rgba(0,0,0,0.1);}

iframe {
	width: 100%;
	height: auto;
}

.row {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-flex:0;
	-ms-flex:0 1 auto;
	flex:0 1 auto;
	-webkit-box-orient:horizontal;
	-webkit-box-direction:normal;
	-ms-flex-direction:row;
	flex-direction:row;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	padding-left: .5rem;
	padding-right: .5rem;
	width: 100%;
	max-width: 1600px;
	margin-right:auto;
	margin-left:auto;
}
.row.reverse{
	-webkit-box-orient:horizontal;
	-webkit-box-direction:reverse;
	-ms-flex-direction:row-reverse;
	flex-direction:row-reverse
}
.col.reverse{
	-webkit-box-orient:vertical;
	-webkit-box-direction:reverse;
	-ms-flex-direction:column-reverse;
	flex-direction:column-reverse
}
.col{
	-webkit-box-flex:0;
	-ms-flex:0 0 auto;
	flex:0 0 auto;
	padding-right:1rem;
	padding-left:1rem;
	-ms-flex-preferred-size:100%;
	flex-basis:100%;
	max-width:100%
}
.col-xs{
	-webkit-box-flex:1;
	-ms-flex-positive:1;
	flex-grow:1;
	-ms-flex-preferred-size:0;
	flex-basis:0;
	max-width:100%
}
.col-xs-1{
	-ms-flex-preferred-size:8.33333333%;
	flex-basis:8.33333333%;
	max-width:8.33333333%
}
.col-xs-2{
	-ms-flex-preferred-size:16.66666667%;
	flex-basis:16.66666667%;
	max-width:16.66666667%
}
.col-xs-3{
	-ms-flex-preferred-size:25%;
	flex-basis:25%;
	max-width:25%
}
.col-xs-4{
	-ms-flex-preferred-size:33.33333333%;
	flex-basis:33.33333333%;
	max-width:33.33333333%
}
.col-xs-5{
	-ms-flex-preferred-size:41.66666667%;
	flex-basis:41.66666667%;
	max-width:41.66666667%
}
.col-xs-6{
	-ms-flex-preferred-size:50%;
	flex-basis:50%;
	max-width:50%
}
.col-xs-7{
	-ms-flex-preferred-size:58.33333333%;
	flex-basis:58.33333333%;
	max-width:58.33333333%
}
.col-xs-8{
	-ms-flex-preferred-size:66.66666667%;
	flex-basis:66.66666667%;
	max-width:66.66666667%
}
.col-xs-9{
	-ms-flex-preferred-size:75%;
	flex-basis:75%;
	max-width:75%
}
.col-xs-10{
	-ms-flex-preferred-size:83.33333333%;
	flex-basis:83.33333333%;
	max-width:83.33333333%
}
.col-xs-11{
	-ms-flex-preferred-size:91.66666667%;
	flex-basis:91.66666667%;
	max-width:91.66666667%
}
.col-xs-12{
	-ms-flex-preferred-size:100%;
	flex-basis:100%;
	max-width:100%
}
.col-xs-offset-0{
	margin-left:0
}
.col-xs-offset-1{
	margin-left:8.33333333%
}
.col-xs-offset-2{
	margin-left:16.66666667%
}
.col-xs-offset-3{
	margin-left:25%
}
.col-xs-offset-4{
	margin-left:33.33333333%
}
.col-xs-offset-5{
	margin-left:41.66666667%
}
.col-xs-offset-6{
	margin-left:50%
}
.col-xs-offset-7{
	margin-left:58.33333333%
}
.col-xs-offset-8{
	margin-left:66.66666667%
}
.col-xs-offset-9{
	margin-left:75%
}
.col-xs-offset-10{
	margin-left:83.33333333%
}
.col-xs-offset-11{
	margin-left:91.66666667%
}
.start-xs{
	-webkit-box-pack:start;
	-ms-flex-pack:start;
	justify-content:flex-start;
	text-align:start
}
.center-xs{
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
	text-align:center
}
.end-xs{
	-webkit-box-pack:end;
	-ms-flex-pack:end;
	justify-content:flex-end;
	text-align:end
}
.top-xs{
	-webkit-box-align:start;
	-ms-flex-align:start;
	align-items:flex-start
}
.middle-xs{
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center
}
.bottom-xs{
	-webkit-box-align:end;
	-ms-flex-align:end;
	align-items:flex-end
}
.around-xs{
	-ms-flex-pack:distribute;
	justify-content:space-around
}
.between-xs{
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between
}
.first-xs{
	-webkit-box-ordinal-group:0;
	-ms-flex-order:-1;
	order:-1
}
.last-xs{
	-webkit-box-ordinal-group:2;
	-ms-flex-order:1;
	order:1
}
@media only screen and (min-width:48em){
	.row {
		max-width: 1480px;
		padding-left: 4.5rem;
		padding-right: 4.5rem;
	}
	.row--sm {
		max-width: 1280px;
	}
	.row--lg {
		max-width: 1600px;
		padding-left: .5rem;
		padding-right: .5rem;
	}
	.col {
		padding-right:1.5rem;
		padding-left:1.5rem;
	}
	.col-sm{
			-webkit-box-flex:1;
			-ms-flex-positive:1;
			flex-grow:1;
			-ms-flex-preferred-size:0;
			flex-basis:0;
			max-width:100%
	}
	.col-sm-1{
			-ms-flex-preferred-size:8.33333333%;
			flex-basis:8.33333333%;
			max-width:8.33333333%
	}
	.col-sm-2{
			-ms-flex-preferred-size:16.66666667%;
			flex-basis:16.66666667%;
			max-width:16.66666667%
	}
	.col-sm-3{
			-ms-flex-preferred-size:25%;
			flex-basis:25%;
			max-width:25%
	}
	.col-sm-4{
			-ms-flex-preferred-size:33.33333333%;
			flex-basis:33.33333333%;
			max-width:33.33333333%
	}
	.col-sm-5{
			-ms-flex-preferred-size:41.66666667%;
			flex-basis:41.66666667%;
			max-width:41.66666667%
	}
	.col-sm-6{
			-ms-flex-preferred-size:50%;
			flex-basis:50%;
			max-width:50%
	}
	.col-sm-7{
			-ms-flex-preferred-size:58.33333333%;
			flex-basis:58.33333333%;
			max-width:58.33333333%
	}
	.col-sm-8{
			-ms-flex-preferred-size:66.66666667%;
			flex-basis:66.66666667%;
			max-width:66.66666667%
	}
	.col-sm-9{
			-ms-flex-preferred-size:75%;
			flex-basis:75%;
			max-width:75%
	}
	.col-sm-10{
			-ms-flex-preferred-size:83.33333333%;
			flex-basis:83.33333333%;
			max-width:83.33333333%
	}
	.col-sm-11{
			-ms-flex-preferred-size:91.66666667%;
			flex-basis:91.66666667%;
			max-width:91.66666667%
	}
	.col-sm-12{
			-ms-flex-preferred-size:100%;
			flex-basis:100%;
			max-width:100%
	}
	.col-sm-offset-0{
			margin-left:0
	}
	.col-sm-offset-1{
			margin-left:8.33333333%
	}
	.col-sm-offset-2{
			margin-left:16.66666667%
	}
	.col-sm-offset-3{
			margin-left:25%
	}
	.col-sm-offset-4{
			margin-left:33.33333333%
	}
	.col-sm-offset-5{
			margin-left:41.66666667%
	}
	.col-sm-offset-6{
			margin-left:50%
	}
	.col-sm-offset-7{
			margin-left:58.33333333%
	}
	.col-sm-offset-8{
			margin-left:66.66666667%
	}
	.col-sm-offset-9{
			margin-left:75%
	}
	.col-sm-offset-10{
			margin-left:83.33333333%
	}
	.col-sm-offset-11{
			margin-left:91.66666667%
	}
	.start-sm{
			-webkit-box-pack:start;
			-ms-flex-pack:start;
			justify-content:flex-start;
			text-align:start
	}
	.center-sm{
			-webkit-box-pack:center;
			-ms-flex-pack:center;
			justify-content:center;
			text-align:center
	}
	.end-sm{
			-webkit-box-pack:end;
			-ms-flex-pack:end;
			justify-content:flex-end;
			text-align:end
	}
	.top-sm{
			-webkit-box-align:start;
			-ms-flex-align:start;
			align-items:flex-start
	}
	.middle-sm{
			-webkit-box-align:center;
			-ms-flex-align:center;
			align-items:center
	}
	.bottom-sm{
			-webkit-box-align:end;
			-ms-flex-align:end;
			align-items:flex-end
	}
	.around-sm{
			-ms-flex-pack:distribute;
			justify-content:space-around
	}
	.between-sm{
			-webkit-box-pack:justify;
			-ms-flex-pack:justify;
			justify-content:space-between
	}
	.first-sm{
			-webkit-box-ordinal-group:0;
			-ms-flex-order:-1;
			order:-1
	}
	.last-sm{
			-webkit-box-ordinal-group:2;
			-ms-flex-order:1;
			order:1
	}
}
@media only screen and (min-width:64em){
	.col-md{
			-webkit-box-flex:1;
			-ms-flex-positive:1;
			flex-grow:1;
			-ms-flex-preferred-size:0;
			flex-basis:0;
			max-width:100%
	}
	.col-md-1{
			-ms-flex-preferred-size:8.33333333%;
			flex-basis:8.33333333%;
			max-width:8.33333333%
	}
	.col-md-2{
			-ms-flex-preferred-size:16.66666667%;
			flex-basis:16.66666667%;
			max-width:16.66666667%
	}
	.col-md-3{
			-ms-flex-preferred-size:25%;
			flex-basis:25%;
			max-width:25%
	}
	.col-md-4{
			-ms-flex-preferred-size:33.33333333%;
			flex-basis:33.33333333%;
			max-width:33.33333333%
	}
	.col-md-5{
			-ms-flex-preferred-size:41.66666667%;
			flex-basis:41.66666667%;
			max-width:41.66666667%
	}
	.col-md-6{
			-ms-flex-preferred-size:50%;
			flex-basis:50%;
			max-width:50%
	}
	.col-md-7{
			-ms-flex-preferred-size:58.33333333%;
			flex-basis:58.33333333%;
			max-width:58.33333333%
	}
	.col-md-8{
			-ms-flex-preferred-size:66.66666667%;
			flex-basis:66.66666667%;
			max-width:66.66666667%
	}
	.col-md-9{
			-ms-flex-preferred-size:75%;
			flex-basis:75%;
			max-width:75%
	}
	.col-md-10{
			-ms-flex-preferred-size:83.33333333%;
			flex-basis:83.33333333%;
			max-width:83.33333333%
	}
	.col-md-11{
			-ms-flex-preferred-size:91.66666667%;
			flex-basis:91.66666667%;
			max-width:91.66666667%
	}
	.col-md-12{
			-ms-flex-preferred-size:100%;
			flex-basis:100%;
			max-width:100%
	}
	.col-md-offset-0{
			margin-left:0
	}
	.col-md-offset-1{
			margin-left:8.33333333%
	}
	.col-md-offset-2{
			margin-left:16.66666667%
	}
	.col-md-offset-3{
			margin-left:25%
	}
	.col-md-offset-4{
			margin-left:33.33333333%
	}
	.col-md-offset-5{
			margin-left:41.66666667%
	}
	.col-md-offset-6{
			margin-left:50%
	}
	.col-md-offset-7{
			margin-left:58.33333333%
	}
	.col-md-offset-8{
			margin-left:66.66666667%
	}
	.col-md-offset-9{
			margin-left:75%
	}
	.col-md-offset-10{
			margin-left:83.33333333%
	}
	.col-md-offset-11{
			margin-left:91.66666667%
	}
	.start-md{
			-webkit-box-pack:start;
			-ms-flex-pack:start;
			justify-content:flex-start;
			text-align:start
	}
	.center-md{
			-webkit-box-pack:center;
			-ms-flex-pack:center;
			justify-content:center;
			text-align:center
	}
	.end-md{
			-webkit-box-pack:end;
			-ms-flex-pack:end;
			justify-content:flex-end;
			text-align:end
	}
	.top-md{
			-webkit-box-align:start;
			-ms-flex-align:start;
			align-items:flex-start
	}
	.middle-md{
			-webkit-box-align:center;
			-ms-flex-align:center;
			align-items:center
	}
	.bottom-md{
			-webkit-box-align:end;
			-ms-flex-align:end;
			align-items:flex-end
	}
	.around-md{
			-ms-flex-pack:distribute;
			justify-content:space-around
	}
	.between-md{
			-webkit-box-pack:justify;
			-ms-flex-pack:justify;
			justify-content:space-between
	}
	.first-md{
			-webkit-box-ordinal-group:0;
			-ms-flex-order:-1;
			order:-1
	}
	.last-md{
			-webkit-box-ordinal-group:2;
			-ms-flex-order:1;
			order:1
	}
}
@media only screen and (min-width:75em){
	.col-lg{
			-webkit-box-flex:1;
			-ms-flex-positive:1;
			flex-grow:1;
			-ms-flex-preferred-size:0;
			flex-basis:0;
			max-width:100%
	}
	.col-lg-1{
			-ms-flex-preferred-size:8.33333333%;
			flex-basis:8.33333333%;
			max-width:8.33333333%
	}
	.col-lg-2{
			-ms-flex-preferred-size:16.66666667%;
			flex-basis:16.66666667%;
			max-width:16.66666667%
	}
	.col-lg-3{
			-ms-flex-preferred-size:25%;
			flex-basis:25%;
			max-width:25%
	}
	.col-lg-4{
			-ms-flex-preferred-size:33.33333333%;
			flex-basis:33.33333333%;
			max-width:33.33333333%
	}
	.col-lg-5{
			-ms-flex-preferred-size:41.66666667%;
			flex-basis:41.66666667%;
			max-width:41.66666667%
	}
	.col-lg-6{
			-ms-flex-preferred-size:50%;
			flex-basis:50%;
			max-width:50%
	}
	.col-lg-7{
			-ms-flex-preferred-size:58.33333333%;
			flex-basis:58.33333333%;
			max-width:58.33333333%
	}
	.col-lg-8{
			-ms-flex-preferred-size:66.66666667%;
			flex-basis:66.66666667%;
			max-width:66.66666667%
	}
	.col-lg-9{
			-ms-flex-preferred-size:75%;
			flex-basis:75%;
			max-width:75%
	}
	.col-lg-10{
			-ms-flex-preferred-size:83.33333333%;
			flex-basis:83.33333333%;
			max-width:83.33333333%
	}
	.col-lg-11{
			-ms-flex-preferred-size:91.66666667%;
			flex-basis:91.66666667%;
			max-width:91.66666667%
	}
	.col-lg-12{
			-ms-flex-preferred-size:100%;
			flex-basis:100%;
			max-width:100%
	}
	.col-lg-offset-0{
			margin-left:0
	}
	.col-lg-offset-1{
			margin-left:8.33333333%
	}
	.col-lg-offset-2{
			margin-left:16.66666667%
	}
	.col-lg-offset-3{
			margin-left:25%
	}
	.col-lg-offset-4{
			margin-left:33.33333333%
	}
	.col-lg-offset-5{
			margin-left:41.66666667%
	}
	.col-lg-offset-6{
			margin-left:50%
	}
	.col-lg-offset-7{
			margin-left:58.33333333%
	}
	.col-lg-offset-8{
			margin-left:66.66666667%
	}
	.col-lg-offset-9{
			margin-left:75%
	}
	.col-lg-offset-10{
			margin-left:83.33333333%
	}
	.col-lg-offset-11{
			margin-left:91.66666667%
	}
	.start-lg{
			-webkit-box-pack:start;
			-ms-flex-pack:start;
			justify-content:flex-start;
			text-align:start
	}
	.center-lg{
			-webkit-box-pack:center;
			-ms-flex-pack:center;
			justify-content:center;
			text-align:center
	}
	.end-lg{
			-webkit-box-pack:end;
			-ms-flex-pack:end;
			justify-content:flex-end;
			text-align:end
	}
	.top-lg{
			-webkit-box-align:start;
			-ms-flex-align:start;
			align-items:flex-start
	}
	.middle-lg{
			-webkit-box-align:center;
			-ms-flex-align:center;
			align-items:center
	}
	.bottom-lg{
			-webkit-box-align:end;
			-ms-flex-align:end;
			align-items:flex-end
	}
	.around-lg{
			-ms-flex-pack:distribute;
			justify-content:space-around
	}
	.between-lg{
			-webkit-box-pack:justify;
			-ms-flex-pack:justify;
			justify-content:space-between
	}
	.first-lg{
			-webkit-box-ordinal-group:0;
			-ms-flex-order:-1;
			order:-1
	}
	.last-lg{
			-webkit-box-ordinal-group:2;
			-ms-flex-order:1;
			order:1
	}
}

/* Helpers */
.vis-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.bg-white {
	background-color: var(--white-color);
}

.bg-red {
	background-color: var(--red-color);
}

.section-padded--header {
	padding-top: 12rem;
}

.section-padded-top--sm {
	padding-top: 3rem;
}

.section-padded-btm--sm {
	padding-bottom: 3rem;
}

.section-padded-top--lg {
	padding-top: 6rem;
}

.section-padded-btm--lg {
	padding-bottom: 6rem;
}

.section-sep {
	position: relative;
}

.section-sep:before {
	content: '';
	background-color: var(--lighter-grey-color);
	top: 0;
	left: 0;
	right: 0;
	max-width: 1380px;
	height: 1px;
	margin: 0 auto;
	position: absolute;
}

@media screen and (max-width: 47.9375em) {
	
	.col-xs-margin-btm {
		margin-bottom: 2rem;
	}
	
	.section-padded--header {
		padding-top: 7rem;
	}
	
	.section-padded-top--sm {
		padding-top: 2rem;
	}
	
	.section-padded-btm--sm {
		padding-bottom: 2rem;
	}
	
	.section-padded-top--lg {
		padding-top: 4rem;
	}
	
	.section-padded-btm--lg {
		padding-bottom: 4rem;
	}
	
	.section-sep:before {
		left: 1.5rem;
		right: 1.5rem;
	}
		
}

/* Type */
h1, h2, h3, h4, h5, h6, strong, b {
	font-weight: 600;
}

.type-med-grey {
	color: var(--med-grey-color);
}

.type-center {
	text-align: center;
}

.type-semi {
	font-weight: 600;
}

.type-reg {
	font-weight: 400;
}

.type-bold {
	font-weight: 700;
}

.type-red {
	color: var(--red-color);
}

h1, .type-h1 {
	font-size: 2.5rem;
	line-height: 1.4;
}

h2, .type-h2 {
	font-size: 1.875rem;
	line-height: 1.4;
}

h3, .type-h3 {
	font-size: 1.5rem;
	line-height: 1.4;
}

h4, .type-h4 {
	font-size: 1.25rem;
	line-height: 1.5;
}

h5, .type-h5 {
	font-size: 1.125rem;
	line-height: 1.5;
}

p, .type-p {
	font-size: .9375rem;
	line-height: 1.7;
}

.type-sm {
	font-size: .75rem;
	line-height: 1.7;
}

.type-vsm {
	font-size: .675rem;
	line-height: 1.7;
}

a {
	color: var(--grey-color);
	text-decoration: none;
}

@media (pointer: fine) {

	a:hover {
		color: var(--med-grey-color);
		text-decoration: none;
	}

}

.copy-block a:not(.btn) {
	text-decoration: underline;
}

.copy-block a:hover {
	text-decoration: none;
}

.type-white, .type-white a:not(.btn) {
	color: var(--white-color);
}

.type-white a:hover, a.type-white:hover {
	color: var(--white-color);
}

.copy-block .btn:not(:last-child), .copy-block p:not(:last-child), .copy-block h1:not(:last-child), .copy-block h2:not(:last-child), .copy-block h3:not(:last-child), .copy-block h4:not(:last-child), .copy-block ul:not(:last-child), .copy-block ol:not(:last-child) {
	margin-bottom: 1.375rem;
}

.copy-block h3, .copy-block h4, .copy-block h5, .copy-block h6 {
	font-weight: 400;
}

.copy-block img {
	display: block;
	max-width: 100%;
	height: auto;
}

.copy-block img.aligncenter {
	margin: 0 auto;
}

.copy-block img:not(:first-child) {
	margin-top: 2.5rem;
}

.copy-block img:not(:last-child) {
	margin-bottom: 2.5rem;
}

.copy-block ul, .copy-block ol {
  line-height: 1.7;
  font-size: .9375rem;
  padding: 0 4rem;
}

.copy-block li {
  padding: 0 0 0 1.125rem;
  position: relative
}

.copy-block ul li:before {
  background: var(--grey-color);
  content: '';
  display: block;
  border-radius: 50%;
  width: 0.3125rem;
  height: 0.3125rem;
  position: absolute;
  top: .75rem;
  left: 0
}

.copy-block ol {
  counter-reset: ol-counter
}

.copy-block ol li {
  counter-increment: ol-counter
}

.copy-block ol li:before {
  content: counter(ol-counter) ".";
  display: block;
  color: var(--grey-color);
  font-weight: 600;
  position: absolute;
  left: 0
}

.copy-block li:not(:last-child) {
	margin-bottom: .75rem;
}

@media screen and (max-width: 47.9375em) {
	
	h1, .type-h1 {
		font-size: 2.125rem;
	}
	
	.copy-block ul, .copy-block ol {
		padding: 0;
	}
	
}

/* Buttons */
.btn {
	background-color: var(--red-color);
	border-radius: 4px;
	color: #FFF;
	padding: .675rem 1.5rem;
	border: 1px solid var(--red-color);
	display: inline-block;
	text-align: center;
	transition: all .25s ease;
	cursor: pointer;
}

.btn[disabled] {
	opacity: .5;
}

.btn--white {
	color: var(--red-color);
	background-color: var(--white-color);
	border-color: var(--white-color);
}

.btn--transparent {
	border-color: var(--lighter-grey-color);
	background-color: transparent;
	color: var(--grey-color);
}

.btn--full {
	width: 100%;
}

.btn--padded {
	max-width: 12rem;
	width: 100%;
}

@media (pointer: fine) {

	.btn:not([disabled]):hover {
		background-color: transparent;
		color: var(--grey-color);
	}
	
	.btn--white:not([disabled]):hover {
		color: var(--white-color);
	}
	
	.btn--transparent:not([disabled]):hover {
		border-color: var(--grey-color);
	}

}

/* Images */
.lazyimage-container {
	position: relative;
	background-color: var(--lighter-grey-color);
}

.lazyimage-container img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
}

.lazyimage-container img, .lazyimage {
	-webkit-transition: opacity .25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity .25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.lazyload, .lazyloading {
	opacity: 0;
}

.lazyloaded {
	opacity: 1;
}

.image-bg {
	height: 0;
	padding-bottom: 70%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.image-bg--landscape {
	padding-bottom: 56.25%;
}

.image-bg--square {
	padding-bottom: 100%;
}

.image-rounded {
	overflow: hidden;
	border-radius: .5rem;
}

.image-rounded--shadow {
	box-shadow: 0 0 20px 4px rgba(0,0,0,0.15);
}

/* Site loader */
.site-loader {
	position: fixed;
	height: 4px;
	top: 0;
	left: 0;
	right: 0;
	z-index: 24;
	transition: all .5s;
	visibility: hidden;
	opacity: 0;
}

.site-loader:after {
	content: '';
	background: -moz-linear-gradient(90deg, rgba(76,19,17,1) 0%, rgba(76,19,17,0) 100%);
	background: -webkit-linear-gradient(90deg, rgba(76,19,17,1) 0%, rgba(76,19,17,0) 100%);
	background: linear-gradient(90deg, rgba(76,19,17,1) 0%, rgba(76,19,17,0) 100%);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform-origin: center left;
	z-index: 2;
	animation: expandd 2s ease infinite forwards;
}

.site-loading .site-loader {
  visibility: visible;
  opacity: 1;
}

@keyframes expandd {
  0% {
    transform: scaleX(0);
  }
  80% {
	  opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
  
}

/* Site header */
.site-header {
	position: fixed;
	z-index: 22;
	left: 0;
	right: 0;
	top: 0;
	padding-top: 2rem;
	border-top: 4px solid var(--red-color);
}

.site-header__wrap {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

.site-header__icon {
	display: block;
	position: absolute;
	left: 1rem;
	top: 0;
	z-index: 4;
}

.site-header__icon-svg {
	fill: var(--grey-color);
	display: block;
	width: 3.375rem;
	height: auto;
}

.site-header__type {
	display: block;
	position: absolute;
	left: 1rem;
	top: 0;
	z-index: 2;
	transform-origin: 1.6875rem center;
	transition: none;
}

.site-header__type-svg {
	fill: var(--grey-color);
	display: block;
	width: 12rem;
	height: auto;
}

@media screen and (max-width: 47.9375em) {

	.site-header {
		padding-top: 1rem;
	}
	
	.site-header__icon {
		position: fixed;
    left: 1.5rem;
    top: 1.25rem;
    z-index: 22;
	}
	
	.site-header__icon-svg {
		transition: fill .25s;
	}
	
	.site-header--nav-active .site-header__icon-svg {
		fill: var(--white-color);
		transition-delay: .25s;
	}

}

/* Site nav */
.site-header__nav-listing {
	display: flex;
	align-items: center;
	flex-flow: row nowrap;
	margin-top: .5rem;
}

.site-header__nav-list-item:not(:first-child) {
	margin-left: 2rem;
}

.site-header__nav-list-item-link {
	color: var(--med-grey-color);
	display: inline-flex;
	align-items: center;
	padding: .125rem 0;
}

.site-header__nav-list-item--active .site-header__nav-list-item-link {
	color: var(--red-color);
}

.site-header__nav-list-item-svg {
	width: .5rem;
	height: .5rem;
	display: block;
	margin: 0 .325rem 0 -.875rem;
	transform: scale(0);
	transition: all .25s ease;
	fill: var(--red-color);
}

.site-header__nav-list-item--active .site-header__nav-list-item-svg {
	transform: scale(1);
	animation: expand .325s ease-out 1;
}

@media (pointer: fine) {

	.site-header__nav-list-item:not(.site-header__nav-list-item--active) .site-header__nav-list-item-link:hover {
		color: var(--grey-color);
	}

}

@media screen and (min-width: 48em) {

	.site-header__nav {
		transform: none !important;
	}
	
}

@media screen and (max-width: 47.9375em) {
	
	.site-header__nav {
		transform: translateX(100%);
		background-color: var(--grey-color);
		position: fixed;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		z-index: 20;
		padding: 1.5rem;
		display: flex;
		align-items: center;
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
	}
	
	.site-header__nav-listing {
		display: block;
	}
	
	.site-header__nav-list-item {
		font-size: 1rem;
		padding: .375rem 0;
	}
	
	.site-header__nav-list-item:not(:first-child) {
		margin: 0;
	}
	
	.site-header__nav-list-item--active .site-header__nav-list-item-link {
		color: var(--white-color);
	}
	
	.site-header__nav-list-item-svg {
		fill: var(--white-color);
	}
	
	.site-header__nav-list-item--active .site-header__nav-list-item-svg {
		margin: 0 .5rem 0 0;
	}
	
}

/* Site nav toggle */
.site-header__nav-toggle {
	display: none;
	width: 2.5rem;
	height: 2rem;
	padding: .25rem;
	position: relative;
	z-index: 24;
	right: -.25rem;
	margin-top: .675rem;
	font-size: 1rem;
}

.site-header__nav-toggle div {
	content: '';
	height: 3px;
	background-color: var(--grey-color);
	position: absolute;
	top: 0;
	bottom: 0;
	right: .25rem;
	left: .25rem;
	margin: auto;
	border-radius: 3px;
}

.site-header__nav-toggle div:first-child {
	transform: translateY(-.5rem);
}

.site-header__nav-toggle div:last-child {
	transform: translateY(.5rem);
}

@media screen and (max-width: 47.9375em) {
	
	.site-header__nav-toggle {
		display: block;
	}
	
}

/* BGs section */
.section-bgs {
	position: relative;
	overflow: hidden;
}

.section-bgs__wrap {
	position: relative;
	z-index: 6;
}

.section-bgs__svg {
	position: absolute;
	z-index: 2;
}

.section-bgs__svg--1 {
	top: 10vh;
	left: 25vw;
	width: 30vw;
	height: auto;
}

.section-bgs__svg--2 {
	bottom: 5vh;
	right: 6vw;
	width: 18vw;
	height: auto;
}

.section-bgs__svg--3 {
	top: 10vh;
	left: 3vw;
	width: 30vw;
	height: auto;
}

.section-bgs__svg--4 {
	top: 50vh;
	right: 3vw;
	width: 23vw;
	height: auto;
}

@media screen and (max-width: 47.9375em) {
	
	.section-bgs__svg--1 {
		left: -6rem;
		width: 95vw;
		top: 4rem;
	}
	
	.section-bgs__svg--2 {
		right: -2rem;
		width: 65vw;
		bottom: -3rem;
	}
	
	.section-bgs__svg--3 {
		top: 11vh;
		left: -6vw;
		width: 67vw;
	}
	
	.section-bgs__svg--4 {
		top: 80vh;
		right: -22vw;
		width: 71vw;
	}
	
}

/* Intro section */
.section-intro {
	position: relative;
}

.section-intro__scroll-btn {
	position: absolute;
	bottom: 1.5rem;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: .25rem .25rem 1.125rem .25rem;
	cursor: pointer;
}

.section-intro__scroll-btn:before {
	content: '';
	position: absolute;
	bottom: 0;
	height: .875rem;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	background-color: var(--grey-color);
	z-index: 1;
}

.section-intro__scroll-btn:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 1.5rem;
	width: .45rem;
	height: .45rem;
	background-color: var(--light-grey-color);
	border: 1px solid var(--grey-color);
	z-index: 2;
	border-radius: 50%;
	animation: scroll 3s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(-50%);
    opacity: 0;
  }
  20% {
	  opacity: 1;
  }
  90% {
    
    opacity: 1;
  }
  100% {
	  opacity: 0;
	  transform: translateY(220%);
  }
}

@media screen and (max-width: 47.9375em) {
	
	.section-intro__scroll-btn {
		display: none;
	}
	
}

/* Home process block */
.home-process-listing__item:not(:last-child) {
	border-bottom: 1px solid var(--lighter-grey-color);
	margin-bottom: 2rem;
	padding-bottom: 2rem;
}

.home-process-listing__item-btn {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	text-align: left;
	cursor: pointer;
}

.home-process-listing__item-svg {
	width: .5rem;
	height: .5rem;
	display: block;
	margin: 0 .5rem 0 -1rem;
	transform: scale(0);
	transition: transform .25s ease;
	fill: var(--red-color);
}

.home-process-listing__item-btn--active .home-process-listing__item-svg {
	transform: scale(1);
	animation: expand .325s ease-out 1;
}

@keyframes expand {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.25)
  }
  100% {
	  transform: scale(1);
  }
}

.home-process-listing__item-btn--active .home-process-listing__item-heading {
	color: var(--red-color);
}

.home-process-listing__item-copy {
	width: 100%;
	margin-top: .675rem;
}

.home-process-images__item {
	width: 100%;
}

.home-process-images__item-heading, .home-process-images__item-copy, .home-process-next-btn {
	display: none;
}

.home-process-images__item-heading {
	margin: 1.25rem 0 .5rem;
}

.home-process-next-btn {
	padding: .25rem;
	width: 1.5rem;
	height: auto;
	position: relative;
	left: -.25rem;
	margin: .5rem 0 0;
}

.home-process-next-btn__svg {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 47.9375em) {
	
	.home-process-list {
		display: none;
	}
	
	.home-process-images__item-heading, .home-process-images__item-copy, .home-process-next-btn {
		display: block;
	}
	
}

/* Register interest banner */
.register-interest-banner {
	position: relative;
}

.register-interest-banner__bg {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	z-index: 2;
	background-image: url('library/images/trail-pattern.svg');
	background-attachment: fixed;
	background-repeat: repeat;
	width: 50%;
	background-size: 100px 100px;
	mix-blend-mode: overlay;
	display: block;
}

.register-interest-banner:after {
	content: '';
	position: absolute;
	left: 50%;
	width: 12%;
	top: 0;
	bottom: 0;
	z-index: 4;
	background: -moz-linear-gradient(90deg, rgba(227,33,25,1) 0%, rgba(227,33,25,0) 100%);
	background: -webkit-linear-gradient(90deg, rgba(227,33,25,1) 0%, rgba(227,33,25,0) 100%);
	background: linear-gradient(90deg, rgba(227,33,25,1) 0%, rgba(227,33,25,0) 100%);
}

@media screen and (max-width: 47.9375em) {
	
	.register-interest-banner__bg {
		width: 100%;
		position: relative;
		height: 200px;
		bottom: -4rem;
		top: auto;
	}
	
	.register-interest-banner:after {
		width: 100%;
		left: 0;
		right: 0;
		top: auto;
		bottom: calc(200px - 2.5rem);
		height: 2.5rem;
		background: -moz-linear-gradient(180deg, rgba(227,33,25,1) 0%, rgba(227,33,25,0) 100%);
		background: -webkit-linear-gradient(180deg, rgba(227,33,25,1) 0%, rgba(227,33,25,0) 100%);
		background: linear-gradient(180deg, rgba(227,33,25,1) 0%, rgba(227,33,25,0) 100%);
	}
	
}

/* Staff block */
.staff-block__item {
	margin-top: 3rem;
}

.staff-block__item-toggle {
	padding: .125rem 0;
	margin-top: .675rem;
	cursor: pointer;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.staff-block__item-wrap {
	padding: .125rem 0;
	margin-top: .675rem;
}

.staff-block__item-toggle-svg {
	display: block;
	width: .75rem;
	height: auto;
	fill: var(--red-color);
}

.staff-block__item-toggle-svg-vert {
	transition: transform .25s ease;
	transform-origin: center center;
}

.staff-block__item--active .staff-block__item-toggle-svg-vert {
	transform: scale(0);
}

.staff-block__item-desc {
	margin-top: 1rem;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	height: 0;
}

/* Blog listing filter */
.blog-listing__filter-wrap {
	display: flex;
	align-items: center;
	flex-flow: row wrap;
	justify-content: space-between;
}

.blog-listing__filter-icon {
	display: block;
	width: 1.25rem;
	height: auto;
}

.blog-listing__filter-clear-btn {
	cursor: pointer;
}

.blog-listing__filters {
	border-top: 1px solid var(--grey-color);
	padding: .75rem 0 0;
	margin: .5rem 0 0;
	display: flex;
	align-items: center;
	flex-flow: row wrap;
	width: 100%;
}

.blog-listing__filter-item:not(:last-child) {
	margin-right: 1.5rem;
}

.blog-listing__filter-item-btn {
	cursor: pointer;
	position: relative;
	padding-left: 1.125rem;
}

.blog-listing__filter-item-btn:before {
	content: '';
	border: 1px solid var(--grey-color);
	border-radius: 50%;
	width: .75rem;
	height: .75rem;
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.blog-listing__filter-item-btn:after {
	content: '';
	background-color: var(--grey-color);
	border-radius: 50%;
	width: .375rem;
	height: .375rem;
	position: absolute;
	z-index: 3;
	left: .175rem;
	top: 0;
	bottom: 0;
	margin: auto 0;
	transform: scale(0);
	transition: transform .25s ease;
}

.blog-listing__filter-item-btn:hover:after, .blog-listing__filter-item-btn--active:after {
	transform: scale(1);
	animation: expand .325s ease-out 1;
}

/* Blog listing item */
.blog-listing__item {
	margin-top: 3rem;
}

.blog-listing__item-wrap {
	background-color: var(--white-color);
	overflow: hidden;
	border-radius: .5rem;
	box-shadow: 0 0 20px 4px rgba(0,0,0,0.1);
	text-align: left;
}

.blog-listing__item--full .blog-listing__item-wrap {
	display: flex;
	flex-flow: row nowrap;
}

.blog-listing__item-img {
	flex-grow: 1;
}

.blog-listing__item-details {
	padding: 2rem;
	position: relative;
}

.blog-listing__item-tags {
	position: absolute;
	top: 0;
	transform: translateY(-50%);
}

.blog-listing__item-tag {
	background-color: var(--red-color);
	display: inline-block;
	padding: .25rem .75rem .175rem .75rem;
	text-transform: uppercase;
	color: var(--white-color);
	border-radius: .25rem;
	margin-right: .25rem;
}

.blog-listing__item-subheading {
	margin-top: .5rem;
}

.blog-listing__item-copy {
	margin-top: 1rem;
}

.blog-listing__item-link {
	margin-top: 2rem;
}

@media screen and (min-width: 64em) {
	
	.blog-listing__item--full .blog-listing__item-details {
		width: 40%;
	}
	
	.blog-listing__item--full .blog-listing__item-tags {
		transform: none;
		position: static;
		margin-bottom: 2rem;
	}
	
	.blog-listing__item--full .blog-listing__item-link {
		position: absolute;
		bottom: 2rem;
		width: calc(100% - 4rem);
	}
	
}

@media screen and (max-width: 63.9375em) {
	
	.blog-listing__item--full .blog-listing__item-wrap {
		display: block;
	}
	
}

@media screen and (min-width: 48em) {
	
	.blog-listing__item-wrap {
		height: 100%;
		display: flex;
    flex-flow: column;
	}
	
	.blog-listing__item-details {
		height: 100%;
		padding-bottom: 7rem;
	}
	
	.blog-listing__item-link {
		position: absolute;
		bottom: 2rem;
		right: 2rem;
		left: 2rem;
		width: auto;
	}
	
}

@media screen and (max-width: 47.9375em) {

	.blog-listing__item {
		margin-top: 2rem;
	}	
	
	.blog-listing__item-details {
		padding: 2rem 1.5rem 1.5rem 1.5rem;
	}
	
}

/* Blog single */
.blog-single__tag {
	background-color: var(--red-color);
	display: inline-block;
	padding: .25rem .75rem .175rem .75rem;
	text-transform: uppercase;
	color: var(--white-color);
	border-radius: .25rem;
	margin: .25rem;
	text-decoration: none !important;
}

.blog-single__tag:hover {
	color: var(--white-color);
}

/* Social listing */
.social-listing__item {
	margin-top: 3rem;
}

.social-listing__item-link {
	display: block;
	overflow: hidden;
  border-radius: .5rem;
}

.social-listing__item img {
	width: 100%;
	display: block;
}

@media (pointer: fine) {
	
	.social-listing__item-link:hover {
		box-shadow: 0 0 20px 4px rgba(0,0,0,0.15);
		transform: translateY(-.25rem);
	}
	
}

@media screen and (max-width: 47.9375em) {
	
	.social-listing__item {
		margin-top: 2rem;
	}
	
}

/* Forms */
label {
	color: var(--med-grey-color);
	font-size: .875rem;
	margin-bottom: .675rem;
	display: block;
}

input, textarea {
	border: 1px solid var(--med-grey-color);
	width: 100%;
	font-size: .9375rem;
	padding: 1rem;
	border-radius: .25rem;
	background-color: var(--white-color);
	transition: border .25s ease;
}

input:focus, textarea:focus {
	border: 1px solid var(--grey-color);
}

/* Contact form */
.contact-form {
	margin-top: 3rem;
}

.contact-form__list {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.contact-form__item {
	width: 100%;
}

.contact-form__item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.contact-form__item--half {
  width: calc(50% - 1rem);
}

.contact-form__item--success {
	max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all .25s ease;
}

.contact-form--sent .contact-form__item--success {
	max-height: 5rem;
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width: 47.9375em) {
	
	.contact-form {
		margin-top: 2rem;
	}
	
	.contact-form__item--half {
		width: 100%;
	}
	
}

/* Accordian */
.accordian {
	border: 1px solid var(--grey-color);
	padding: .75rem 2.5rem;
	background-color: var(--white-color);
}

.accordian__panel {
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.accordian__item:not(:last-child) .accordian__panel {
	border-bottom: 1px solid var(--lighter-grey-color);
}

.accordian__item:last-child .accordian__panel {
	border-top: 1px solid var(--lighter-grey-color);
}

.accordian__panel-wrap {
	padding: 2rem 0 4rem;
}

.accordian__heading {
  position: relative;
  display: block;
  padding: .25rem 2.5rem .25rem 0;
  margin: 1.5rem 0;
}

.accordian__heading:hover {
	color: var(--grey-color);
}

.accordian__item:not(:last-child) .accordian__heading:after {
	content: '';
	height: 1px;
	background-color: var(--lighter-grey-color);
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1.5rem;
}

.accordian__toggle-icon {
	position: absolute;
	fill: var(--grey-color);
	margin: auto 0;
	top: 0;
	bottom: 0;
	right: 0;
	width: 1.25rem;
	height: auto;
	transition: transform .25s ease;
}

.accordian__heading[aria-expanded=true] .accordian__toggle-icon {
	transform: rotate(.5turn);
}

@media screen and (max-width: 47.9375em) {
	
	.accordian {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	
	.accordian__heading {
		margin: 1rem 0;
	}
	
	.accordian__item:not(:last-child) .accordian__heading:after {
		bottom: -1rem;
	}
	
}

/* Site footer */
.site-footer {
	padding-top: 5rem;
	padding-bottom: 3rem;
}

.site-footer__link-list {
	display: flex;
	flex-flow: row nowrap;
	margin-top: 1.5rem;
}

.site-footer__link-list-item:not(:last-child) {
	margin-right: 1.5rem;
}

.site-footer__icon {
	fill: var(--grey-color);
	display: block;
	width: 20rem;
	height: auto;
}

.site-footer__legals {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding-top: 2rem;
	margin: 2rem 0 1.5rem;
}

.site-footer__legals:before {
	content: '';
	background-color: var(--light-grey-color);
	left: 1rem;
	right: 1rem;
	top: 0;
	height: 1px;
	position: absolute;
}

.site-footer__sub-link-list {
	display: flex;
	flex-flow: row nowrap;
}

.site-footer__sub-link-list-item:not(:first-child) {
	margin-left: 1.5rem;
}

@media screen and (max-width: 47.9375em) {
	
	.site-footer {
		padding-top: 3rem;
	}
	
	.site-footer__icon {
		width: 18rem;
	}
	
	.site-footer__link-list {
		margin-top: 1rem;
		display: block;
	}
	
	.site-footer__link-list-item:not(:last-child) {
		margin: 0 0 .675rem;
	}
	
	.site-footer__legals {
		display: block;
	}
	
	.site-footer__sub-link-list {
		margin-top: 1.5rem;
	}
	
}

/* Overlay register block */
.overlay-register-block {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 33;
  background-color: var(--white-color);
  transform: translateY(100%);
  transition: transform .25s ease;
  box-shadow: 0 -1px 6px 0 rgba(0,0,0,.07);
  padding: 3rem 0;
}

.overlay-register--open {
  transform: translateY(0)
}

.overlay-register__wrap {
	position: relative;
}

.overlay-register__close {
  padding: .25rem;
  position: absolute;
  right: 5.75rem;
  top: -1.5rem;
  z-index: 2;
  cursor: pointer;
  transition: transform .25s ease;
}

@media (pointer: fine) {

	.overlay-register__close:hover {
		transform: rotate(.25turn);
	}
	
}

.overlay-register__close-svg {
  stroke: var(--red-color);
  display: block;
  width: 1.5rem;
  height: auto;
}

@media screen and (max-width: 47.9375em) {
	
	.overlay-register-block {
		padding: 2.5rem 0;
	}
 
  .overlay-register__close {
    right: 1.25rem;
    top: -1rem
  }
  
  .overlay-register__copy {
	  margin-bottom: 1.375rem;
  }
  
}

/* Fit vids */
.fluid-width-video-wrapper {
  width: 100%;
  position: relative;
}

.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Flickity v2.2.1 */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.flickity-fade .flickity-slider {
  -webkit-transform: none !important;
  transform: none !important
}

.flickity-fade__slide {
  left: 0 !important;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

.flickity-fade__slide.is-selected {
  opacity: 1;
  z-index: 0;
  transition-delay: .5s;
}