@charset "utf-8";
/*------------------------------------------------------------------------- CUSTOM FONTS 
*/
@font-face {
    font-family: 'lato-light';
    src: url('/css/fonts/lato-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'lato-regular';
    src: url('/css/fonts/lato-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'lato-italic';
    src: url('/css/fonts/lato-italic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'lato-bold';
    src: url('/css/fonts/lato-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'lato-bold-italic';
    src: url('/css/fonts/lato-bold-italic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'lato-black';
    src: url('/css/fonts/lato-black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*------------------------------------------------------------------------- RESET 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	outline: 0;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
:focus {
	outline: 0;
}
a {
    text-decoration: none;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
.wow {
    visibility: hidden;
}

/*------------------------------------------------------------------------- CORE LAYOUT 
*/
html {
    height: 100%;
}
body {
    min-height: 100%;
    background-color: #fff;
    font-family: 'lato-regular';
    position: relative;
    min-height: 100%;
    font-size: 15px;
    color: #202020;
    overflow-x: hidden;
	display: flex;
	flex-flow: column nowrap;
	min-height: 100vh;
}
.container {
    max-width: 1280px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
}
#pageContent {
    flex: 1;
}
section {
    position: relative;
    overflow: hidden;
    padding: 20px 10px;
}
section .row {
    display: flex;
    flex-flow: row nowrap;
    height: 100%;
}
section .column {
    flex: 1 1 50%;
}
@media (max-width: 767px) 
{
    section .row {
        flex-flow: column nowrap;
    }
}

/*------------------------------------------------------------------------- GLOBAL TEXT STYLES 
*/
.waiverform {
    text-transform: uppercase;
    font-weight: bolder;
}
.waiverformLower {
    text-transform: lowercase;
    font-weight: bolder;
}
.waiverformTitle {
    text-transform: capitalize;
    font-weight: bolder;
}
.waiverform sup {
    vertical-align: super;
	font-size: 50%;
}
.wfBlue {
    color: #0479d8;
}
.wfYellow {
    color: #d2dc20; 
}
.wfOrange {
    color: #ff9933; 
}
.wfDarkBlue {
    color: #18222c;
}
.wfRed {
    color: #d0181f;
}
.wfPurple {
    color: #5f018b;
}
.wfGreen {
    color: #23a455;
}
strong  {
    font-family: 'lato-bold';
}
em {
    font-family: 'lato-italic';
}
strong em, em strong  {
    font-family: 'lato-bold-italic';
}

/*------------------------------------------------------------------------- ELEMENT: IMAGE
*/
.image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto 20px;
}
.image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.image-wrapper .image-caption {
    position: relative;
    padding: 15px 20px;
    background-color: #212121;
    color: #fff;
    line-height: 1.2em;
    font-size: 14px;
    font-family: 'lato-light';
    text-transform: uppercase;
}
.image-wrapper.circular {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    border: 5px solid #fff;
}
.image-wrapper.fixed-size img {
    width: auto;
    max-width: 400px;
}

/*------------------------------------------------------------------------- GLOBAL BACKGROUND ELEMENTS
*/
.bgWavyYellow {
    background: #fccc00 url(/images/backgrounds/yellow-wavy-background-faded.jpg) top left / cover no-repeat;
}
.bgWavyYellow h2 {
    color: #000;
    text-align: center;
    border: 0;
    font-size: 32px;
    margin: 0;
}
.bgWavyYellow h2 .wfBlue {
    color: #000;
}
.bgWhite {
    background-color: #fff;
}
.bgBlue {
    background-color: #0479d8 !important;
    color: #fff;
}
.bgDarkBlue {
    background-color: #18222c;
    color: #fff;
}
.bgRed {
    background-color: #d0181f !important;
    color: #fff;
}
.bgGreen {
    background-color: #23a455 !important;
    color: #fff;
}
.bgOrange {
    background-color: #ff7f00 !important;
    color: #fff;
}
.bgGreen .wfBlue,
.bgPurple .wfBlue,
.bgRed .wfBlue,
.bgOrange .wfBlue {
    color: #fff;
}
.bgBlack {
    background-color: #000;
    color: #fff;
}
.bgPurple {
    background-color: #5f018b !important;
    color: #fff;
}
.shiny-divider::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
    opacity: 0.8;
}
.bgSwoosh::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(/images/backgrounds/background-wave.png) bottom right / contain no-repeat;
    opacity: 0.7;
    mix-blend-mode: screen;
}

/*------------------------------------------------------------------------- GLOBAL FORM ELEMENT STYLES 
*/
form {
    width: 100%;
    max-width: 480px;
    margin: 40px auto;
}
input,
select,
textarea {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.7);
    border: 1px solid #ccc;
    color: #999;
    transition: all 0.25s ease;
    padding: 5px 10px;
}
input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
    color: #000;
    background-color: #fff;
    border-color: #0479d8;
}
textarea {
    height: auto;
    min-height: 120px;
    font-family: 'lato-regular';
    padding: 10px;
    resize: none;
}
label {
    display: block;
    text-transform: uppercase;
    margin: 20px 0 10px;
}
.field-validation-error {
    background: #990000;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    padding: 5px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 5px;
}
.field-validation-error::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: url(/images/icons/warning.svg) center center / 100% no-repeat;
    filter: invert(1);
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
}
select {
    background-image: url(/Images/icons/arrow-down.svg) !important;
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
}
select:hover {
    cursor: pointer;
    background-position: right center 5px;
}
button {
    border: 0;
    background-color: #0479d8;
    width: 100%;
    height: 40px;
    margin: 20px 0 0;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.25s ease;
    border-radius: 5px;
}
button span {
    position: relative;
    display: inline-block;
    font-family: 'lato-bold';
}
button:hover {
    background-color: #d2dc23;
    color: #18222c;
    cursor: pointer;
}
button span::before {
    content: '';
    position: absolute;
    display: block;
    left: -20px;
    top: 2px;
    width: 15px;
    height: 15px;
    background: url(/images/icons/caret-right.svg) center center / 60% no-repeat;
    filter: invert(1);
    transition: inherit;
}
button:hover span::before {
    filter: invert(9%) sepia(42%) saturate(515%) hue-rotate(169deg) brightness(99%) contrast(92%); /* wf dark blue */
}

/*------------------------------------------------------------------------- HEADER
*/
header {
    background-color: #111;
    min-height: 60px;
    position: sticky;
    top: 0;
    width: 100%;
    padding: 10px;
    z-index: 99;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}
header .logo {
    display: block;
    width: 100%;
    max-width: 305px;
    min-width: 180px;
    height: 46px;
    background: url(/images/waiverform-logo-white.svg) center center / 100% no-repeat;
    text-indent: -9999px;
}
header .row {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}
header .column {
    flex: 1 0 auto;
}
header .column:last-of-type {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 767px)
{
    header .row {
        flex-flow: column nowrap;
    }
    header .column {
        justify-content: center !important;
    }
    header .logo {
        margin: 0 auto 10px;
    }
}

/*------------------------------------------------------------------------- MAIN NAVIGATION
*/
#main-navigation {
    display: flex;
    flex-flow: row nowrap;
    margin: 0 auto 0 0;
    height: 40px;
}
#main-navigation li {
    position: relative;
    height: 100%;
}
#main-navigation li a::before,
#main-navigation li a::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    transition: inherit;
}
#main-navigation li.has-sub-menu a::after {
    background: url(/images/icons/arrow-down.svg) center center / 100% no-repeat;
    filter: invert(1);
}
#main-navigation li:not(.has-sub-menu) a {
    padding-right: 10px;
}
#main-navigation li:not(.has-sub-menu) a::after {
    display: none;
}
#main-navigation li a::before {
    width: 15px;
    height: 15px;
    background: center center / 100% no-repeat;
    filter: invert(34%) sepia(49%) saturate(4263%) hue-rotate(189deg) brightness(101%) contrast(87%); /* wf blue */
}
#main-navigation #navFeatures a::before {
    background-image: url(/images/icons/features.svg);
}
#main-navigation #navAbout a::before {
    background-image: url(/images/icons/about.svg);
}
#main-navigation #navContact a::before {
    background-image: url(/images/icons/contact.svg);
}
#main-navigation #navPartners a::before {
    background-image: url(/images/icons/partners.svg);
}
#main-navigation li a {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    position: relative;
    font-family: 'lato-bold';
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    height: 100%;
    padding: 0 5px;
    line-height: 40px;
    gap: 10px;
    transition: all 0.25s ease;
    white-space: nowrap;
}
#main-navigation li:has(.sub-menu.open) a,
#main-navigation li a:hover {
    background-color: #18222c;
    color: #d2dc20;
}
#main-navigation li:has(.sub-menu.open) a::after,
#main-navigation li:has(.sub-menu.open) a::before,
#main-navigation li a:hover::after,
#main-navigation li a:hover::before {
    filter: invert(85%) sepia(39%) saturate(908%) hue-rotate(9deg) brightness(99%) contrast(87%); /* wf yellow */
}
#main-navigation li:has(.sub-menu.open) > a::after {
    background-image: url(/images/icons/arrow-up.svg);
}

/*------------------------------------------------------------------------- MAIN NAVIGATION SUB-MENUS
*/
#main-navigation .sub-menu {
    position: absolute;
    width: 320px;
    max-height: 0;
    height: auto;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: rgba(24,34,44,0.9);
    opacity: 0;
    padding: 10px 0 0;
    pointer-events: none;
}
#main-navigation .sub-menu.child {
    position: relative;
    background-color: rgba(40,40,40,0.9);
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}
#main-navigation .sub-menu.open.child  li a {
    padding: 0 40px;
}
#main-navigation .sub-menu.open {
    max-height: 800px;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
}
#main-navigation .sub-menu li a::before {
    display: none;
}
#main-navigation .sub-menu li a {
    padding: 0 20px;
}
#main-navigation .sub-menu.open li a {
    background: transparent;
    color: #fff;
    padding: 0 20px;
}
#main-navigation .sub-menu.open li a:hover {
    background-color: #1084df;
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(9,104,179,1) 0%, rgba(16,132,223,1) 100%);
}

/*------------------------------------------------------------------------- MOBILE MENU BUTTON
*/
#menu-button {
    display: none;
    position: relative;
    height: 40px;
    width: 120px;
    font-family: 'lato-bold';
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 15px 0 15px;
    transition: all 0.25s ease;
    margin: 0 auto;
}
#menu-button::before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background: url(/images/icons/menu.svg) center center / 100% no-repeat;
    filter: invert(1);
    transition: inherit;
}
#menu-button:hover {
    background-color: #18222c;
    color: #d2dc20;
}
#menu-button:hover::before {
    filter: invert(85%) sepia(39%) saturate(908%) hue-rotate(9deg) brightness(99%) contrast(87%); /* wf yellow */
}

/*------------------------------------------------------------------------- MOBILE MAIN NAVIGATION
*/
@media (max-width: 560px)
{
    nav {
        width: 100%;
    }
    #menu-button {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 5px;
    }
    #main-navigation {
        height: auto;
        max-height: 0;
        width: 100%;
        flex-flow: column nowrap;
        transition: all 0.5s ease;
        overflow: hidden;
    }
    #main-navigation li a::after {
        display: none;
    }

    nav.open #main-navigation {
        max-height: 800px;
        width: 100%;
        border-top: 1px solid #18222c;
    }
    nav.open #menu-button::before {
        background-image: url(/images/icons/close.svg);
        background-size: 80%;
    }
    #main-navigation .sub-menu {
        display: none;
    }
}

/*------------------------------------------------------------------------- SECTION GLOBAL CONTENT STYLES
*/

section h1.narrow, h2 {
    position: relative;
    font-family: 'lato-light';
    font-size: 44px;
    text-transform: uppercase;
    margin: 0 -40px 20px;
    padding: 10px 10px 10px 30px;
    border-left: 5px solid #fff;
    line-height: 0.95em;
}

section h1.wide {
    color: #0479d8;
    font-size: 30px;
    font-family: 'lato-light';
    text-transform: uppercase;
    padding: 22px 0px 20px 0px;
    border-style: solid;
    border-width: 1px 0px 1px 0px;
    border-color: rgba(4, 121, 216, 0.6);
    margin: 0 0 30px;
}

section.bgWhite h2,
section.bgWhite h1.narrow {
    color: #0179d6;
    border-left: 5px solid rgba(4, 121, 216, 0.6);
}
section.bgWhite h1.wfDarkBlue,
section.bgWhite h2.wfDarkBlue {
    color: #18222c;
    border-color: #18222c;
}
section.bgWhite h1.wfOrange,
section.bgWhite h2.wfOrange {
    color: #ff7f00;
    border-color: #ff7f00;
}
section.bgWhite h1.wfRed,
section.bgWhite h2.wfRed {
    color: #d0181f;
    border-color: #d0181f;
}
section.bgWhite h1.wfPurple,
section.bgWhite h2.wfPurple {
    color: #5f018b;
    border-color: #5f018b;
}
section.bgWhite h1.wfGreen,
section.bgWhite h2.wfGreen {
    color: #23a455;
    border-color: #23a455;
}
section h1 .waiverform {
    color: #111;
}
section h1 .waiverform sup {
    font-size: 40%;
}
section h4 {
    color: #0479d8;
    font-size: 30px;
    font-family: 'lato-light';
    text-transform: uppercase;
    padding: 22px 0px 20px 0px;
    border-style: solid;
    border-width: 1px 0px 1px 0px;
    border-color: rgba(4, 121, 216, 0.6);
    margin: 0 0 30px;
}
section h5 {
    font-family: 'lato-black';
    color: #0479d8;
    margin: 20px 0 10px;
}
section p {
    font-size: 16px;
    font-family: 'lato-light';
    line-height: 1.5em;
    margin: 0 0 20px;
}
section a.anchor,
section a:not([class]) {
    color: #0073aa;
    white-space: nowrap;
    position: relative;
    transition: all 0.25s ease;
}
section a.anchor::after,
section a:not([class])::after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 1px;
    left: 50%;
    bottom: 0;
    background-color: #18222c;
    opacity: 1;
    transition: inherit;
}
section a.anchor:hover
section a:not([class]):hover {
    color: #18222c;
}
section a.anchor:hover::after,
section a:not([class]):hover::after {
    width: 100%;
    left: 0;
    opacity: 1;
}
section:not(.bgWhite) a.anchor,
section:not(.bgWhite) a:not([class]) {
    color: #fff;
}
section ul {
    list-style-type: disc;
    margin: 0 0 20px 20px;
    font-family: 'lato-light';
    line-height: 1.5em;
}
section ul li::marker {
    color: #0479d8;
    font-weight: 900;
}
section ul li {
    line-height: 1.4em;
    margin-bottom: 5px;
}
section ul.tick-list {
    margin: 20px 0;
    text-transform: uppercase;
    font-family: 'lato-black';
    line-height: 1.2em;
}
section ul.tick-list li {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin: 0 0 10px;
}
section ul.tick-list li::before {
    content: '';
    width: 15px;
    height: 15px;
    margin-right: 15px;
    display: block;
    background: url(/images/icons/tick.svg) center center / 100% no-repeat;
    filter: invert(85%) sepia(39%) saturate(908%) hue-rotate(9deg) brightness(99%) contrast(87%); /* wf yellow */
}
section ul.tick-list.wfBlue {
    text-transform: none;
}
section ul.tick-list.wfBlue li::before {
    filter: invert(34%) sepia(49%) saturate(4263%) hue-rotate(189deg) brightness(101%) contrast(87%); /* wf blue */
}
section ul.arrow-list {
    list-style-type: none;
}
section ul.arrow-list li {
    position: relative;
    padding-left: 10px;
}
section ul.arrow-list li::before {
    content: '';
    display: block;
    position: absolute;
    left: -15px;
    top: 7px;
    width: 10px;
    height: 10px;
    background: url(/images/icons/caret-right.svg) center center / 80% no-repeat;
    filter: invert(34%) sepia(49%) saturate(4263%) hue-rotate(189deg) brightness(101%) contrast(87%); /* wf blue */
}
section ul.arrow-list.yellow li::before {
    filter: invert(85%) sepia(39%) saturate(908%) hue-rotate(9deg) brightness(99%) contrast(87%); /* wf yellow */
}
section.yellow-wavy-bg {
    background: #fec501 url(/images/backgrounds/yellow-wavy-background-faded.jpg) left top / cover no-repeat;
}

section ol {
    list-style-type: decimal;
    margin: 10px 0 20px 25px;
    font-family: 'lato-light';
    font-size: 16px;
    line-height: 1.5em;
}
section ol li::marker {
    font-family: 'lato-black';
}
section ol li {
    padding-left: 10px;
    margin: 0 0 10px;
}
section ol.alpha {
    list-style-type: lower-alpha;
}
section ol.alpha li::marker {
    font-family: 'lato-bold-italic';
}
section ul.icon-list {
    list-style-type: none;
    margin: 0;
}
section ul.icon-list li {
    display: flex;
    flex-flow: row nowrap;
    align-content: center;
    line-height: 24px;
    position: relative;
}
section ul.icon-list li::before {
    content: '';
    display: block;
    border: 2px solid #0479d8;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    box-sizing: border-box;
    margin: 0 5px 0 0;
    transition: all 0.25s ease;
}
section ul.icon-list li::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    left: 0;
    top: 0;
    position: absolute;
    background-position: center center;
    background-size: 50%;
    background-repeat: no-repeat;
    filter: invert(34%) sepia(49%) saturate(4263%) hue-rotate(189deg) brightness(101%) contrast(87%); /* wf blue */
}
section ul.icon-list li a {
    color: #0479d8;
}
section ul.icon-list li a::after {
    background-color: #0479d8;
}
section table {
    margin: 20px auto;
}
section table tr:nth-child(odd) {
    background-color: #f2f2f2;
}
section table tr th {
    border: 1px solid #999;
    padding: 10px;
    font-size: 14px;
    font-family: 'lato-black';
}
section table tr td {
    border: 1px solid #999;
    padding: 10px;
    font-size: 14px;
}
section table#privacy-definitions tr td:first-of-type {
    width: 120px;
}
section .row.notes {
    border-top: 1px solid rgba(4, 121, 216, 0.3);
    margin: 20px 0 0;
    padding: 20px 0 0;
}
section .row.notes p {
    color: #606060;
    font-size: 14px;
}

@media (max-width: 560px)
{
    section h4 {
        font-size: 20px;
    }
}

/*------------------------------------------------------------------------- ELEMENT: BACKGROUND SCROLL FX LAYER 
*/
section .bgfxLayer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: grayscale(50%);
    opacity: 0.25;
    transition: transform 0.1s linear;
    transform: scale(1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}
section#fitness-profile .bgfxLayer {
    background-image: url(/images/backgrounds/fitness-trainers-photo-background.jpg);
}
section#outdoor-profile .bgfxLayer {
    background-image: url(/images/backgrounds/outdoor-activity-photo-background-climbing.jpg);
}
section#tattoo-profile .bgfxLayer {
    background-image: url(/images/industry/tattoo/tattoo-parlour-snippet-photo.jpg);
}
section#equine-paperless .bgfxLayer {
    background-image: url(/images/industry/equine/horse-riding-paperless-bg.jpg);
}
section#equine-custom-waiver .bgfxLayer {
    background-image: url(/images/industry/equine/horse-riding-customise-forms-bg.jpg);
}
section#fitness-waivers .bgfxLayer {
    background-image: url(/images/industry/fitness/yoga-instructors-photo-background.jpg);
}
section#karting-branding .bgfxLayer {
    background-image: url(/images/industry/karting/go-karting-finish-line-panel-background.jpg);
}
section#karting-groups .bgfxLayer {
    background-image: url(/images/industry/karting/karting-track-banner-photo.jpg);
}
section#spa-questions .bgfxLayer {
    background-image: url(/images/industry/spa/spa-background-questionnaire.jpg);
}
section#spa-feedback .bgfxLayer {
    background-image: url(/images/industry/spa/spa-generic-background.jpg);
}
section#spa-analytics .bgfxLayer {
    background-image: url(/images/industry/spa/spa-background-analytics.jpg);
}
section#outdoor-waivers .bgfxLayer {
    background-image: url(/images/industry/outdoor/outdoor-activities-waivers-bg.jpg);
}

/*------------------------------------------------------------------------- ELEMENT: JUMP TO CONTENT BUTTON 
*/
.jump-to-content.anchor {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6); 
    text-indent: -9999px;
    transition: all 0.25s ease;
}
.jump-to-content.anchor:hover {
    background-color: rgba(255, 255, 255, 0.9); 
}
.jump-to-content.anchor::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: url(/images/icons/arrow-down.svg) center center / 40% no-repeat;
}
.bgWavyYellow .jump-to-content.anchor {
    background-color: rgba(0,0,0,0.6);
}
.bgWavyYellow .jump-to-content.anchor::after { 
    filter: invert(1);
}
.bgWavyYellow .jump-to-content.anchor:hover {
    background-color: rgba(0,0,0,0.9);
}

/*------------------------------------------------------------------------- ELEMENT: READ MORE BUTTON 
*/
.read-more-button {
    display: block;
    position: relative;
    width: 100px;
    height: 25px;
    line-height: 23px;
    padding: 0 0 0 20px;
    font-family: 'lato-bold';
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    background-color: #0479d8;
    transition: all 0.25s ease;
    margin: 20px 0;
    border: 1px solid rgba(255,255,255,0.25);
}
.read-more-button::before {
    content: '';
    display: block;
    position: absolute;
    left: 5px;
    top: 8px;
    width: 8px;
    height: 8px;
    background: url(/images/icons/caret-right.svg) center center / 100% no-repeat;
    filter: invert(1);
    transition: inherit;
}
.read-more-button:hover {
    background-color: #d2dc23;
    color: #18222c;
}
.read-more-button:hover::before {
    filter: invert(0);
}

/*------------------------------------------------------------------------- ELEMENT: FLIP PHOTO
*/
.flip-photo-wrapper {
    position: relative;
    display: block;
}
.flip-photo-wrapper img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
}
.flip-photo-wrapper img.image-front {
    opacity: 1;
    transform: scaleX(1);
    z-index: 1;
}
.flip-photo-wrapper img.image-back {
    opacity: 0;
    transform: scaleX(0);
    z-index: 0;
}
.flip-photo-wrapper:hover img.image-front {
    opacity: 0;
    transform: scaleX(0);
    z-index: 0;
}
.flip-photo-wrapper:hover img.image-back {
    opacity: 1;
    transform: scaleX(1);
    z-index: 1;
}

/*------------------------------------------------------------------------- ELEMENT: PHOTO BOX
*/
.photo-box {
    color: #fff;
    background-color: #0479d8;
    padding: 0 0 10px;
}
.photo-box .caption {
    font-family: 'lato-light';
    text-transform: uppercase;
    padding: 15px 20px;
    font-size: 14px;
}
.photo-box .waiverform .wfBlue {
    color: #fff;
}
.photo-box .tick-list {
    padding: 0 20px;
    margin: 10px 0;
    font-size: 13px;
}
.photo-box .tick-list li {
    margin: 0 0 5px;
}

/*------------------------------------------------------------------------- ELEMENT: CTA BOX
*/
.cta-box {
    color: #fff;
    background-color: #18222c;
    padding: 0 0 10px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
.cta-box .cta-box-title {
    padding: 20px;
}
.cta-box .cta-box-title h4 {
    color: #fff;
    border: 0;
    padding: 0;
    margin: 0;
    font-size: 44px;
}
.cta-box .cta-box-image {
    position: relative;
}
.cta-box .cta-box-image a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.cta-box .cta-box-image a img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.3s ease;
}
.cta-box .cta-box-image a:hover img {
    transform: scale(110%);
    opacity: 0.7;
}

.cta-box .cta-box-text {
    padding: 20px;
}
.cta-box .cta-box-text .cta-text-title {
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'lato-black';
    margin: 0 0 10px;
}
.cta-box .cta-box-text p {
    margin: 0;
    font-family: 'lato-italic';
    line-height: 1.4em;
}

/*------------------------------------------------------------------------- ELEMENT: TOGGLE ITEM 
*/
.toggle-item {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.05);
    margin: 10px 0 20px;
    padding: 20px 50px 20px 20px;
    transition: all 0.3s ease;
    line-height: 1.1em;
}
.toggle-item .toggle-title {
    display: block;
    position: relative;
    color: #000;
    font-family: 'lato-black';
}
.toggle-item .toggle-title:after {
    content: '';
    display: block;
    position: absolute;
    right: -30px;
    top: calc(50% - 5px);
    width: 10px;
    height: 10px;
    background: url(/images/icons/caret-right.svg) center center / 100% no-repeat;
    filter: invert(34%) sepia(49%) saturate(4263%) hue-rotate(189deg) brightness(101%) contrast(87%); /* wf blue */
    transition: all 0.25s ease;
}
.toggle-item .toggle-content {
    max-height: 0;
    transition: all 0.25s ease;
    overflow: hidden;
    margin-top: 10px;
}
.toggle-item.open .toggle-content {
    max-height: 800px;
}
.toggle-item.open .toggle-title::after {
    transform: rotate(90deg);
}
.toggle-item .toggle-content p:last-of-type {
    margin-bottom: 0;
}

/*------------------------------------------------------------------------- ELEMENT: ICON MENU
*/
.icon-menu {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    list-style: none;
    width: 100%;
    margin: 30px auto -20px;
}
.icon-menu li {
    margin: 0 5px;
}
.icon-menu li .icon {
    display: block;
    width: 55px;
    height: 55px;
    margin: 0 auto 10px;
    border-radius: 50%;
    border: 3px solid #0479d8;
    position: relative;
    transition: inherit;
}
.icon-menu li a {
    display: block;
    text-align: center;
    font-size: 9px;
    line-height: 10px;
    text-transform: uppercase;
    font-family: 'lato-bold';
    color: #0479d8;
    width: 80px;
    white-space: normal;
    transition: all 0.25s ease;
}
.icon-menu li a .icon::after {
    background-size: 70%;
}
.icon-menu li a::after {
    display: none;
}
.icon-menu li a:hover {
    color: #18222c;
}
.icon-menu li a:hover .icon {
    border-color: #18222c;
}
.icon-menu li a:hover .icon::after {
    filter: invert(9%) sepia(42%) saturate(515%) hue-rotate(169deg) brightness(99%) contrast(92%); /* wf dark blue */
}

/*------------------------------------------------------------------------- ELEMENT: SNIPPET (& WRAPPER)
*/
.snippets-wrapper {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
}
.bgWavyYellow .snippets-wrapper {
    margin: 30px 0;
}
.snippets-wrapper:has(.why-choose-wf) {
    flex-flow: row wrap;
}
.snippets-wrapper:has(.index) {
    gap: 0;
}
.snippets-wrapper .snippet {
    background-color: rgba(0,0,0,0.7);
    padding: 0;
    flex: 1 1 33%;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
}
.snippets-wrapper .snippet.index {
    background-color: transparent;
}
.snippets-wrapper .snippet:not(.page):not(.index)::after {
    content: '';
    width: 100%;
    height: 13px;
    left: 0;
    bottom: -15px;
    position: absolute;
    background:  url(/images/snippet-box-shadow.png) center top / 100% 100% no-repeat;
}
.snippets-wrapper .snippet.why-choose-wf {
    flex: 0 1 calc(25% - 10px);
}
.snippets-wrapper .snippet h4 {
    border: 0;
    font-size: 20px;
    font-family: 'lato-bold';
    background-color: #000;
    padding: 20px;
    margin: 0;
    position: relative;
}
.snippets-wrapper .snippet h4::before {
    bottom: 0;
    top: auto;
}
.snippets-wrapper .snippet h4 a {
    color: #fff;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.snippets-wrapper .snippet h4 a::before {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    margin: 0 5px 0 -15px;
    background: url(/images/icons/caret-right.svg) center center / 100% no-repeat;
    filter: invert(34%) sepia(49%) saturate(4263%) hue-rotate(189deg) brightness(101%) contrast(87%); /* wf blue */
    transition: margin 0.25s ease;
}
.snippets-wrapper .snippet h4 a:hover::before {
    margin-left: 0;
}
.snippets-wrapper .snippet .snippet-text {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-flow: column nowrap;
}
.snippets-wrapper .snippet p {
    color: #fff;
    font-family: 'lato-light';
}
.snippets-wrapper .snippet .read-more-button {
    margin: auto 0 0;
}
.snippets-wrapper .snippet .snippet-image {
    padding: 10px 10px 0;
    overflow: hidden;
}
.snippets-wrapper .snippet .snippet-image img {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.snippets-wrapper .snippet.page .snippet-link:hover .snippet-image img,
.snippets-wrapper .snippet .snippet-image a:hover img {
    opacity: 0.5;
}
/* index page snippets */
.snippets-wrapper .snippet.index:not(:last-of-type) {
    border-right: 1px solid rgba(255,255,255,0.25);
}
.snippets-wrapper .snippet.index h4 {
    background: transparent;
    padding: 0;
    color: #fff;
    font-size: 24px;
    font-family: 'lato-light';
    margin: 0 0 20px;
}
.snippets-wrapper .snippet.index h4 .wfBlue {
    font-family: 'lato-regular';
}
.snippets-wrapper .snippet.index p {
    font-size: 15px;
    line-height: 17px;
}
.snippets-wrapper .snippet.index .read-more-button {
    margin: auto 0 20px 20px; 
}
.snippets-wrapper .snippet.index .snippet-image {
    padding: 0;
    height: 300px;
    background-color: #000;
}
.snippets-wrapper .snippet.index .snippet-image img {
    transition: all 0.5s ease;
}
.snippets-wrapper .snippet.index .snippet-link:hover .snippet-image img {
    transform: scale(120%);
    opacity: 0.6;
}
/* page snippets */
.snippets-wrapper:has(.snippet.page) {
    gap: 0;
    justify-content: flex-start;
}
.snippets-wrapper .snippet.page {
    height: 400px;
}
.snippets-wrapper .snippet.page .snippet-link {
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
}
.snippets-wrapper .snippet.page h4 {
    font-family: 'lato-light';
    color: #fff;
    background-color: transparent;
}
.snippets-wrapper .snippet.page h4::before {
    top: 0;
    bottom: auto;
}
.snippets-wrapper .snippet.page .snippet-image {
    padding: 0;
    height: calc(100% - 100px);
}
.snippets-wrapper .snippet.page .snippet-link:hover .snippet-image img {
    transform: scale(120%);
}
/* why choose wf snippets */
.snippets-wrapper .snippet.why-choose-wf h4 {
    text-align: center;
    color: #fff;
    font-size: 24px;
    min-height: 170px;
}
.snippets-wrapper .snippet.why-choose-wf h4 .icon {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto 10px;
    border: 3px solid #fff;
    border-radius: 50%;
    position: relative;
}
.snippets-wrapper .snippet.why-choose-wf .snippet-text {
    text-align: center;
    background-color: #0479d8;
}
.snippets-wrapper .snippet.why-choose-wf .snippet-text p {
    font-family: 'lato-regular';
}
.snippets-wrapper .snippet.why-choose-wf .snippet-text p .wfBlue {
    color: #fff;
}

@media (max-width: 1080px)
{
    .snippets-wrapper:has(.index) {
        flex-flow: row wrap;
    }
}

@media (max-width: 980px)
{
    .snippets-wrapper .snippet.why-choose-wf {
        flex: 0 1 calc(50% - 10px);
    }
}

@media (max-width: 767px)
{
    .snippets-wrapper:not(:has(.index)) {
        flex-wrap: wrap;
        gap: 10px !important;
    }
    .snippets-wrapper .snippet:not(.page):not(.index) {
        flex: 1 0 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    .snippets-wrapper .snippet.page {
        height: 240px;
    }
}

/*------------------------------------------------------------------------- SECTION: HEADING 
*/
section.page-heading {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
}
section.page-heading p {
    position: relative;
    text-transform: uppercase;
    font-family: 'lato-bold';
    font-size: 22px;
    letter-spacing: -1px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    white-space: nowrap;
    margin-bottom:0;
}
section.page-heading p .icon::before {
    content: '';
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    border: 3px solid #fff;
    border-radius: 50%;
    margin-right: 15px;
    flex: 0 0 40px;
}
section.page-heading p .icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    display: block;
}

/*------------------------------------------------------------------------- SECTION: HEADER BANNER
*/
section.header-banner {
    padding: 0;
    height: 400px;
    transition: height 0.25s ease;
}
section.header-banner .container {
    padding: 0;
}
section.header-banner .header-banner-bg {
    position: fixed;
    width: 100%;
    height: 400px;
    background-color: #18222c;
    overflow: hidden;
}
section.header-banner .header-banner-bg img {
    display: block;
    min-width: 100%;
    min-height: 100%;
    animation: animatedBanner ease-in 10s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
section.header-banner .header-banner-title-strip {
    position: relative;
    background-color: rgba(0, 0, 0, 0.85);
    height: 100%;
    width: 100%;
    max-width: 380px;
    padding: 40px;
    color: #fff;
}
section.header-banner .header-banner-title-strip p {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    font-size: 15px;
    font-family: 'lato-light';
}
section.header-banner .header-banner-title-strip div.intro {
    text-transform: uppercase;
    font-family: 'lato-black';
    font-size: 24px;
    margin: 0 0 40px;
}
section.header-banner .jump-to-content.anchor {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

@keyframes animatedBanner {
    0%   {  transform: scale(1.3) translateX(10%);  }
    5%   {  transform: scale(1.3) translateX(10%);  }
    95%  {  transform: scale(1) translateX(0);      }
    100% {  transform: scale(1) translateX(0);      }
}

@media (max-width: 1600px)
{
    section.header-banner .header-banner-bg img {
        height: auto;
        width: auto;
        left: calc((100vw - 1600px) / 2);
    }
}
@media (max-width: 767px)
{
    section.header-banner {
        height: 300px;
    }
    section.header-banner .header-banner-title-strip {
        max-width: 100%;
    }
}
@media (max-width: 480px)
{
    section.header-banner {
        height: 400px;
    }
    section.header-banner .header-banner-title-strip {
        padding: 30px;
    }
}

/*------------------------------------------------------------------------- SECTION: TEXT 
*/
section.text-area {
    padding: 80px 0;
    overflow: hidden;
}
section.text-area .column {
    padding: 0 40px;
}

/*------------------------------------------------------------------------- SECTION: TEXT (WHITE)
*/

section.text-area.white:not(:has(.row)) {
    padding: 40px 30px 40px;
}

@media (max-width: 400px)
{
    section.text-area.white:not(:has(.row)) {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/*------------------------------------------------------------------------- SECTION: TEXT (BLUE)
*/
.bgDarkBlue .waiverform .wfBlue,
.bgBlue .waiverform .wfBlue,
section.text-area.blue .waiverform .wfBlue {
    color: #fff;
}
section.text-area.bgBlue h2 {
    color: #fff;
    border-color: #fff;
}
section.text-area.bgBlue p {
    line-height: 1.8em;
    font-size: 16px;
}
section.bgBlue .photo-box {
    background-color: rgba(0, 0, 0, 0.5);
}

/*------------------------------------------------------------------------- SECTION: SHADOWED
*/
.shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
}
.shadow::after,
.shadow::before {
    content: '';
    display: block;
    width: 100%;
    height: 48px;
    position: absolute;
    left: 0;
    background: url(/images/section-shadow.png) center top / 100% 100% no-repeat;
    mix-blend-mode: multiply;
    z-index: 4;
}
.shadow::before {
    top: -24px;
    transform: rotate(180deg);
}
.shadow::after {
    bottom: -24px;
}
.shadow.outer::before {
    transform: rotate(0);
    height: 24px;
    opacity: 0.5;
}
.shadow.outer::after {
    transform: rotate(180deg);
    height: 24px;
    opacity: 0.5;
}
section:has(.shadow.outer) {
    z-index: 10;
    overflow: visible;
}

/*------------------------------------------------------------------------- SECTION: WHY CHOOSE WAIVERFORM?
*/
section#why-waiverform {
    padding: 40px 0;
}

/*------------------------------------------------------------------------- SECTION: TEXT (DARK BLUE)
*/
section.dark-blue {
    background-color: #18222c;
    color: #fff;
}
section.text-area.dark-blue .waiverform .wfBlue {
    color: #fff;
}
section.text-area.dark-blue h2 {
    color: #fff;
    border-color: #fff;
}
section.text-area.dark-blue p {
    line-height: 1.8em;
    font-size: 16px;
}

/*------------------------------------------------------------------------- SECTION: BENEFITS CHECK LIST
*/
section#benefits-checklist {
    padding: 80px 20px;
}
section#benefits-checklist h4 {
    color: #18222c;
    font-size: 44px;
    font-family: 'lato-light';
    text-transform: uppercase;
    padding: 0;
    border: 0;
    text-align: center;
    margin: 0 0 30px;
}
section#benefits-checklist ul.tick-list li {
    font-size: 28px;
    text-transform: none;
    font-family: lato-light;
}
section#benefits-checklist ul.tick-list li::before {
    filter: invert(12%) sepia(10%) saturate(1631%) hue-rotate(169deg) brightness(94%) contrast(96%); /* wf dark blue */
    width: 25px;
    height: 25px;
    margin-right: 25px;
}

@media (max-width: 640px)
{
    section#benefits-checklist {
        padding: 40px 20px
    }
    section#benefits-checklist h4 {
        font-size: 32px;
    }
    section#benefits-checklist ul.tick-list li {
        font-size: 20px;
    }
    section#benefits-checklist ul.tick-list li::before {
        width: 15px;
        height: 15px;
        margin-right: 15px;
    }
}

/*------------------------------------------------------------------------- SECTION: FAQs
*/
section.faqs {
    padding: 20px 0 40px;
}
section.faqs .column:first-of-type {
    flex: 0 0 280px;
    padding: 0 10px;
}
section.faqs .column:last-of-type {
    flex: 1 1 auto;
    padding: 0 20px;
}
section.faqs #faqs-menu {
    position: fixed;
    padding: 20px 0px 20px 0px;
    border-style: solid;
    border-width: 1px 0px 1px 0px;
    border-color: #0479d8;
    margin-bottom: 20px;
    transition: all 0.25s ease;
}
section.faqs #faqs-menu a {
    text-transform: uppercase;
    font-family: 'lato-black';
}
section.faqs h5 {
    color: #0479d8;
    font-size: 26px;
    text-transform: uppercase;
    font-family: 'lato-regular';
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin: 40px 0 30px;
    position: relative;
}
section.faqs h5::before {
    height: 30px;
    margin: 0 10px 0 0;
    flex: 0 0 30px;
    border-color: #0479d8;
}
section.faqs h5::after {
    filter: invert(34%) sepia(49%) saturate(4263%) hue-rotate(189deg) brightness(101%) contrast(87%); /* wf blue */
    width: 20px;
    height: 20px;
    left: 5px;
}

@media (max-width: 767px)
{
    section.faqs .column {
        flex: 1 0 auto !important;
    }
    section.faqs #faqs-menu {
        position: relative;
    }
}

/*------------------------------------------------------------------------- SECTION: SITE MAP
*/
section#site-map h2 {
    font-size: 40px;
}
section#site-map h5 {
    text-transform: uppercase;
    font-family: 'lato-light';
    font-size: 24px;
    margin: 20px 0;
}
section#site-map ul li ul {
    margin: 10px 0 10px 30px;
}
section#site-map ul.site-map-links > li > a {
    text-transform: uppercase;
}

/*------------------------------------------------------------------------- SECTION: CONTACT FORM
*/
section#contact-form {
    padding-top: 40px;
}
section#contact-form h2 {
    font-size: 40px;
}
section#contact-form .column:last-of-type {
    display: flex;
    justify-content: flex-end;
}
section#contact-form .column:last-of-type .cta-box {
    margin: auto auto 0 auto;
}

/*------------------------------------------------------------------------- SECTION: PARTNERSHIPS FORM
*/
section#partnership-form {
    background-color: #000;
    color: #fff;
    padding: 40px 10px;
}
section#partnership-form .column:last-of-type {
    padding: 0 0 0 40px;
}
section#partnership-form h4 {
    color: #fff;
    padding: 0 0 20px;
    border-top: 0;
    border-bottom-color: rgba(255,255,255,0.25);
    flex: 1 0 100%;
}
section#partnership-form form {
    background-color: rgba(24, 34, 44, 0.9);
    padding: 30px;
    margin: 0 auto 20px;
    position: relative;
}
section#partnership-form form a {
    color: #fff;
}
section#partnership-form form a:hover {
    color: #fec501;
}
section#partnership-form form::before {
    bottom: 0;
    top: auto;
}
section#partnership-form form label {
    font-size: 12px;
}
section#partnership-form form input,
section#partnership-form form select {
    background-color: rgba(140, 140, 140, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}
section#partnership-form form select,
section#partnership-form form input::placeholder {
    text-transform: uppercase;
    color: #ccc;
    font-size: 12px;
}
section#partnership-form form input:hover,
section#partnership-form form select:hover 
section#partnership-form form input:focus,
section#partnership-form form select:focus {
    background-color: #fff;
    border-color: #0479d8;
    color: #000;   
}

@media (max-width: 767px)
{
    section#partnership-form .column:last-of-type {
        padding: 30px 0 0;
    }
}

@media (max-width: 480px)
{
    section#partnership-form form {
        padding: 30px 15px;
    }
}

/*------------------------------------------------------------------------- SECTION: STAFF
*/
section#staff .row {
    margin: 0 0 60px;
}
section#staff .column:first-of-type {
    flex: 0 1 260px;
}
section#staff .flip-photo-wrapper {
    width: 100%;
    max-width: 260px;
    height: 260px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
}
section#staff h4 {
    padding: 0 0 10px;
    border-top: 0;
    font-size: 30px;
}

@media (max-width: 767px)
{
    section#staff h4 {
        text-align: center;
    }
    section#staff h4 strong {
        display: block;
    }
}

/*------------------------------------------------------------------------- SECTION: FEATURE COMPARE
*/
section.feature-compare {
    padding: 0;
    color: #fff;
    border-bottom: 20px solid #fff;
    background: linear-gradient(to right, #18222c 0%,#18222c 50%,#2989d8 50%,#0479d8 50%,#0479d8 100%); 
}
section.feature-compare:nth-of-type(even) {
    background: linear-gradient(to left, #18222c 0%,#18222c 50%,#2989d8 50%,#0479d8 50%,#0479d8 100%); 
}
section.feature-compare .column {
    padding: 60px 40px;
    flex: 1 0 40%;
    position: relative;
}
section.feature-compare .column.bgBlue {
    background-color: #0479d8;
}
section.feature-compare .column.bgDarkBlue {
    background-color: #18222c;
}
section.feature-compare .column:nth-of-type(2) {
    flex: 0 0 20%;
    padding: 0;
    display: flex;
    align-items: center;
}
section.feature-compare .column:nth-of-type(2)::before {
   content: '';
   display: block;
   position: absolute;
   left: -1px;
   top: 0;
   width: 50%;
   height: 100%;
   clip-path: polygon(100% 50%, 0 100%, 0 0);
}
section.feature-compare .column:nth-of-type(2).bgBlue::before {
    background-color: #18222c;
}
section.feature-compare .column:nth-of-type(2).bgDarkBlue::before {
    background-color: #0479d8;
}
section.feature-compare .image-wrapper {
    max-width: 300px;
    margin: 0 auto;
}
section.feature-compare h3 {
    font-family: 'lato-light';
    text-transform: uppercase;
    font-size: 36px;
    margin: 0 0 20px;
}
section.feature-compare p {
    font-size: 18px;
    font-family: 'lato-light';
}

@media (max-width: 767px)
{
    section.feature-compare .column:nth-of-type(2)::before {
        clip-path: polygon(50% 100%, 0 0, 100% 0);
        left: 0;
        top: -1px;
        height: 50%;
        width: 100%;
    }
    section.feature-compare .container {
        padding: 0;
    }
    section.feature-compare .column:nth-of-type(1) {
        padding-bottom: 10px;
    }
    section.feature-compare .column:nth-of-type(3) {
        padding-top: 30px;
    }
}

/*------------------------------------------------------------------------- SECTION: FOOTER SNIPPETS
*/
section.footer-snippets {
    background-color: #1689e3;
    padding: 40px 20px 40px;
}
section.footer-snippets h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 28px;
    font-family: 'lato-light';
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
}

/*------------------------------------------------------------------------- SECTION: BANNER AND VIDEO (HOME PAGE)
*/
#homeBanner {
    padding: 0;
    height: auto;
    overflow: visible;
}
#homeBanner .container {
    padding: 0;
    height: 100%;
}
#homeBanner .column {
    display: flex;
    align-items: flex-end;
}
#banner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#banner .slides {
	height: 100%;
	position: relative;
}
#banner .slide {
	opacity: 0;
	width: 100%;
	height: 100%;
    min-height: 100%;
	position: absolute;
	transition: 3s ease opacity;
	pointer-events: none;
	margin: 0;
	left: 0;
	top: 0;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
#banner .slide h3 {
    position: absolute;
    width: 50%;
    color: #fff;
    font-family: 'lato-light';
    font-size: 36px;
    line-height: 1em;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    opacity: 0;
    margin-left: -999px;
    z-index: 2;
    transition: all 1.5s ease 2s;
}
#banner .slide img {
    display: block;
    position: relative;
    height: 110%;
    margin: -10% 0 -10% auto;
}
#banner .slide.active {
	opacity: 1;
	pointer-events: auto;
}
#banner .slide.active h3 {
	opacity: 1;
    margin-left: 20px;
}
#video-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 780px;
    padding: 30px;
    margin: 20px auto 0;
    background: url(/images/backgrounds/tablet-video-bg-2.png) center bottom / 100% no-repeat;
    z-index: 10;
}
#video-wrapper::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    margin: 30px 0 0 -30px;
    height: 204px;
    pointer-events: none;
    background: url(/images/backgrounds/tablet-video-bg-reflection.png) center top / 100% no-repeat;
    z-index: 99;
}
#video-wrapper video {
    position: relative;
    width: 100%;
    min-width: 480px;
    height: auto;
}

@media (max-width: 960px)
{
    #homeBanner {
        height: auto;
    }
    #homeBanner .row {
        flex-flow: column nowrap;
        height: auto;
    }
    #homeBanner .row .column:first-of-type { order: 2; }
    #homeBanner .row .column:last-of-type { order: 1; }
    #homeBanner #banner {
        height: 300px;
    }
    #banner .slide {
        justify-content: center;
    }
    #banner .slide img {
        width: auto;
        height: 120%;
        margin: 0 -30% 0 0;

    }
    #video-wrapper {
        margin: -20px auto 0;
    }
    #video-wrapper video {
        min-width: 100%;
    }
    #homeBanner .column {
        align-items: flex-start;
    }
    #banner .slide.active h3 {
        margin-left: -35%;
    }
}
@media (max-width: 640px)
{
    #homeBanner #banner {
        height: 300px;
    }
    #banner .slide h3 {
        font-size: 28px;
        font-family: 'lato-regular';
    }
    #banner .slide img {
        opacity: 0.9;
    }
}
@media (max-width: 400px)
{
    #banner .slide img {
        display: none;
    }
    #banner .slide h3 {
        width: calc(100% - 40px);
    }
    #banner .slide.active h3 {
        margin-left: 0;
    }
    #homeBanner #banner {
        height: 160px;
    }
    #homeBanner .column:last-of-type {
        display: none;
    }
    #video-wrapper {
        background: none;
        padding: 0;
        margin: 0;
    }
    #video-wrapper::after {
        display: none;
    }
}
/*------------------------------------------------------------------------- SECTION: KEY FEATURES (HOME PAGE) 
*/
#key-features {
    position: relative;
    background-color: #000;
    color: #fff;
    clip-path: polygon(100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px), 0 0);
    padding: 80px 20px 120px;
}
.key-features-wrapper {
    position: relative;
    z-index: 12;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px 20px;
    justify-items: center;
    justify-content: center;
}
.key-feature {
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
}
.key-feature h3 {
    font-size: 26px;
    text-transform: uppercase;
    margin: 0 0 10px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    color: #fff;
}
.key-feature h3 span {
    font-family: 'lato-bold';
    display: inline-block;
    margin: 0;
}
.key-feature p {
    font-family: 'lato-light';
    font-size: 16px;
    line-height: 1.3em;
}
.key-feature .icon {
    display: block;
    position: relative;
    border: 3px solid #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    margin-right: 10px;
    flex: 0 0 55px;
}

/*------------------------------------------------------------------------- FOOTER 
*/
footer {
    position: relative;
    background-color: #18222c;
    color: #fff;
    font-size: 16px;
    padding: 30px 10px 0;
}
footer .container {
    display: flex;
    flex-flow: row nowrap;
}
footer .row:first-of-type {
    padding: 0 0 40px;
}
footer .column {
    flex: 1 1 auto;
}
footer a {
    color: #fff;
    transition: all 0.25s ease;
}
footer a:hover {
    color: #1084df;
}
footer h4 {
    font-size: 20px;
    font-family: 'lato-bold';
    color: #fff;
    margin: 0 0 20px;
}
.footer-links {
    margin: 0 0 20px;
}
.footer-links li {
    margin: 0 0 10px;
}
footer p {
    margin: 0 0 10px;
}
footer p a {
    font-family: 'lato-bold';
}

@media (max-width: 767px)
{
    footer .container {
        flex-flow: column nowrap;
    }
    footer .row:first-of-type .column {
        padding-bottom: 20px;
    }
}
@media (max-width: 320px)
{
    footer p a {
        display: block;
        margin-top: 10px;
    }
}

/*------------------------------------------------------------------------- FOOTER FOOTNOTES
*/
footer .footnote {
    background-color: #0f1922;
    position: relative;
    align-items: center;
    font-size: 14px;
}
footer .footnote::before,
footer .footnote::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
}
footer .footnote::after {
    top: -30px;
    width: 60px;
    height: 60px;
    background: url(/images/shiny.png) center center / 100% no-repeat;
    margin: 0 auto;
}
footer .footnote .container {
    align-items: center;
    padding: 10px 0;
}
footer .footnote .c3software-logo {
    display: block;
    width: 66px;
    height: 20px;
    background: url(/images/c3software-logo.svg) center center / 100% no-repeat;
    text-indent: -9999px;
}
.footnote .waiverform-fooer-logo {
    display: block;
    width: 170px;
    height: 40px;
    background: url(/images/waiverform-logo-white.svg) center center / 100% no-repeat;
    text-indent: -9999px;
    margin-left: 10px;
}
footer .footnote ul {
    display: flex;
    flex-flow: row nowrap;
    margin: 0 auto;
}
footer .footnote ul li {
    display: flex;
    flex-flow: row nowrap;
}
footer .footnote ul:not(.social-media-links) li:not(:first-of-type)::before {
    content: '|';
    display: block;
    margin: 0 10px;
}
footer .footnote ul li a {
    white-space: nowrap;
}
footer a.active {
    color: #fec501;
}
footer .footnote p.copyright {
    display: flex;
    flex-flow: row nowrap;
    white-space: nowrap;
    align-items: center;
    margin: 0;
}
footer .footnote .social-media-links {
    gap: 5px;
}
footer .footnote .social-media-links a {
    display: block;
    filter: invert(1);
    width: 24px;
    height: 24px;
    background: center center / 100% no-repeat;
    text-indent: -9999px;
    transition: all 0.25s ease;
    filter: invert(34%) sepia(49%) saturate(4263%) hue-rotate(189deg) brightness(101%) contrast(87%); /* wf blue */
}
footer .footnote .social-media-links a.facebook {
    background-image: url(/images/icons/facebook.svg);
}
footer .footnote .social-media-links a.instagram {
    background-image: url(/images/icons/instagram.svg);
}
footer .footnote .social-media-links a.twitter {
    background-image: url(/images/icons/twitter.svg);
}
footer .footnote .social-media-links a.linkedin {
    background-image: url(/images/icons/linkedin.svg);
}
footer .footnote .social-media-links a:hover {
    filter: invert(85%) sepia(39%) saturate(908%) hue-rotate(9deg) brightness(99%) contrast(87%); /* wf yellow */
}

@media (max-width: 1080px)
{
    footer .footnote .container {
        flex-flow: column nowrap;
        align-items: center;
        padding: 20px 0;
    }
    footer .footnote .column {
        padding: 10px 0;
    }
    footer .footnote .c3software-logo {
        width: 100px;
        height: 30px;
        margin: 0 0 20px;
    }
}
@media (max-width: 540px)
{
    footer .footnote ul:not(.social-media-links) {
        flex-flow: column nowrap;
        align-items: center;
        padding: 0;
    }
    footer .footnote ul:not(.social-media-links) li:not(:first-of-type)::before  {
        display: none;
    }
    footer .footnote ul:not(.social-media-links) li {
        margin: 0 0 15px;
    }
}
@media (max-width: 340px)
{
    footer .footnote p.copyright {
        flex-flow: column nowrap;
    }
    .footnote .waiverform-fooer-logo {
        margin-left: 0;
    }
}

/*------------------------------------------------------------------------- COOKIE BAR 
*/
#cookie-bar {
    position: fixed;
    bottom: -60px;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.85);
    border-top: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 10px;
    transition: opacity 0.25s ease;
}
#cookie-bar .container {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 20px;
}
#cookie-bar .icon {
    width: 60px;
    flex: 1 0 60px;
    height: 60px;
    display: block;
    position: relative;
}
#cookie-bar .icon::after {
    background-size: 80%;
}
#cookie-bar p {
    font-size: 14px;
    margin: 0 auto;
}
#cookie-bar a {
    color: #d2dc20;
}
#cookie-bar #cookie-button {
    background-color: #0479d8;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 120px;
    flex: 1 0 120px;
    height: 20px;
    line-height: 20px;
    font-size: 11px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.25s ease;
}
#cookie-bar #cookie-button:hover {
    background-color: #d2dc20;
    color: #18222c;
}

@media (max-width: 640px)
{
    #cookie-bar .container {
        flex-flow: column nowrap;
    }
    #cookie-bar #cookie-button {
        flex: 1 0 auto;
    }
}


/*------------------------------------------------------------------------- BACK TO TOP BUTTON 
*/
a#top {
	position: fixed;
	bottom: -60px;
	right: 20px;
	width: 32px;
	height: 32px;
	z-index: 99;
	opacity: 0;
	text-indent: -9999px;
	transition: all 0.25s ease;
    background-color: rgba(17,17,17,0.7);
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 2px;
}
a#top::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:  url(../images/icons/arrow-up.svg) center center / 50% no-repeat;
    filter: invert(1);
}
a#top.show {
	opacity: 0.6;
	bottom: 80px;
}
a#top:hover {
	background-color: #1084df;
	opacity: 1;
	border-color: transparent;
}

/*------------------------------------------------------------------------- ICONS 
*/
.icon::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: center center / 50% no-repeat;
    filter: invert(1);
}
.icon.wfYellow::after {
    filter: invert(85%) sepia(39%) saturate(908%) hue-rotate(9deg) brightness(99%) contrast(87%); /* wf yellow */
}
.icon.wfBlue::after {
    filter: invert(34%) sepia(49%) saturate(4263%) hue-rotate(189deg) brightness(101%) contrast(87%); /* wf blue */
}
.icon.wfOrange::after {
    filter: invert(82%) sepia(9%) saturate(7498%) hue-rotate(327deg) brightness(97%) contrast(96%); /* wf orange */
}
.icon-about::after {
    background-image: url(/images/icons/about.svg);
}
.icon-analytics::after {
    background-image: url(/images/icons/analytics.svg);
}
.icon-branding::after {
    background-image: url(/images/icons/branding.svg);
}
.icon-cookies::after {
    background-image: url(/images/icons/cookies.svg); 
}
.icon-custom-waiver::after {
    background-image: url(/images/icons/customise-waivers.svg);
}
.icon-dashboard::after {
    background-image: url(/images/icons/dashboard.svg); 
}
.icon-data::after {
    background-image: url(/images/icons/data.svg); 
}
.icon-data-export::after {
    background-image: url(/images/icons/data-export.svg);
}
.icon-faq::after {
    background-image: url(/images/icons/faq.svg); 
}
.icon-features::after {
    background-image: url(/images/icons/features.svg); 
}
.icon-first-aid::after {
    background-image: url(/images/icons/first-aid.svg); 
}
.icon-mail::after {
    background-image: url(/images/icons/mail.svg); 
}
.icon-news::after {
    background-image: url(/images/icons/news.svg); 
}
.icon-partners::after {
    background-image: url(/images/icons/partners.svg); 
}
.icon-payment::after {
    background-image: url(/images/icons/payment.svg); 
}
.icon-search::after {
    background-image: url(/images/icons/search.svg); 
}
.icon-security::after {
    background-image: url(/images/icons/privacy.svg); 
}
.icon-signature::after {
    background-image: url(/images/icons/signature.svg);
}
.icon-simple-pricing::after {
    background-image: url(/images/icons/simple-pricing.svg);
}
.icon-site-map::after {
    background-image: url(/images/icons/site-map.svg); 
}
.icon-smiley-face::after {
    background-image: url(/images/icons/smiley-face.svg); 
}
.icon-social-media::after {
    background-image: url(/images/icons/social-media.svg);
}
.icon-survey::after {
    background-image: url(/images/icons/survey.svg);
}
.icon-template::after {
    background-image: url(/images/icons/template.svg); 
}
.icon-terms::after {
    background-image: url(/images/icons/attention.svg); 
}
.icon-users::after {
    background-image: url(/images/icons/users.svg); 
}
.icon-waiver::after {
    background-image: url(/images/icons/instant-waivers.svg); 
}
.icon-cake::after {
    background-image: url(/images/icons/cake-candles-solid.svg)
}

/*------------------------------------------------------------------------- CSS STEP ANIMATION
*/
.step__animate:nth-child(n+1) {
	animation-delay: 0s;
}
.step__animate:nth-child(n+2) {
	animation-delay: 0.25s;
}
.step__animate:nth-child(n+3) {
	animation-delay: 0.5s;
}
.step__animate:nth-child(n+4) {
	animation-delay: 0.75s;
}
.step__animate {
	animation-duration: 1s;
}
/*------------------------------------------------------------------------- POP BUTTON ON HOVER CSS ANIMATION
*/
/* Pop */
@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
  -webkit-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/*------------------------------------------------------------------------- RESOURCES & DOWNLOADS */
section ul.templates {
    padding: 0; /* Remove default padding */
    margin:0;
}

    section ul.templates li {
        list-style-type: none;
        display: flex; /* Use flexbox layout */
        align-items: center; /* Align items horizontally centered */
        margin-bottom: 15px; /* Space between list items */
    }

        section ul.templates li img {
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-right: 15px; /* Space between the image and text */
        }

        section ul.templates li article {
            display: flex;
            flex-direction: column; /* Stack the text and link vertically */
        }

        section ul.templates li strong {
            margin-bottom: 5px; /* Space between text and link */
            font-weight: bold;
        }

        section ul.templates li a {
            /*display: inline-block;*/ /* Make link an inline block */
            margin-top: 5px; /* Optional: Adjust if you want space above the link */
            white-space:normal; /* Allow text to wrap */
        }

span.date {
    font-size: 0.9em; /* Slightly smaller font size */
    color: #555; /* Dark gray color */
    font-style: italic; /* Italic style to distinguish it */
    margin-top: 5px; /* Optional: Adds space between the disclaimer text and the date */
}

/* Bootstap style alert */

.alert[validationmessages] {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    position: relative;
    font-size: 14px;
}

    .alert[validationmessages] ul {
        list-style: none;
        padding-left: 0;
    }

.alert-danger[validationmessages] {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-dismissible[validationmessages] {
    padding-right: 35px;
}

.alert[validationmessages] .close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: #721c24;
    cursor: pointer;
    width: 10px;
    margin: 0;
    padding: 0;
    height: 10px;
}