﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400&family=Sora:wght@200;300;400;500&display=swap');

body {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

.maxPageWidth {
    width: 96%;
    margin: 0 auto;
    max-width: 1440px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    font-weight: 400;
}
p {
    font-weight: 200;
}
b, strong {
    font-weight: 400;
}

 a {
     color: inherit;
     text-decoration: inherit;
 }
a.linkButton {
    color: #FFF;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 13px 50px;
    line-height: 1em;
    display: inline-block;

}
a.linkButton.action {
    background-color: #155667;
}
a.linkButton:hover {
    background-color: rgb(68, 68, 68);
}

p > a.linkButton {
    margin-top: 10px;
}

header {
    padding: 20px 0 50px;
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}
header .maxPageWidth {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
header .headerLogo {
    height: 75px;
}
header nav ul {
    list-style: none;
    margin: 0 10px 0 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}
header nav ul li {
    padding: 10px 30px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 300;
    color: #FFF;
}
header nav ul li a {
    padding: 0 0 3px 0;
}

header nav ul li a:after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #FFF;
    margin: 5px auto 0;
    transition: width 0.15s ease-in;
}
header nav ul li.isActive a:after {
    width: 100%;
    transition: none;
}
header nav ul li:hover a:after {
    width: 100%;
}
.pageTopImage {
    width: 100%;
    aspect-ratio: 2/1;
    position: relative;
}
.pageTopImage img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.pageTopImage .maxPageWidth {
    height: calc(100% - 110px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 110px;
}
.pageTopImage .theHeaderContent {
    position: relative;
    z-index: 1;
    margin: 0 30px 0 0;
    text-align: right;
    padding: 20px 20px 20px 180px;
    width: calc(100% - 200px);
    background: rgba(0, 0, 0, 0.5);
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0) 100%);
    color: #FFF;
}
.pageTopImage .theHeaderContent h1 {
    font-size: 6rem;
    margin: 0 0 20px 0;
}
.pageTopImage .theHeaderContent p {
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 0.25px;
}

.headerWithImage {
    width: 100%;
    padding: 150px 0 0;
    min-height: 50vh;
    background: no-repeat center center;
    background-size: cover;
}
.headerWithImage .maxPageWidth {
    display: flex;
    align-content: center;
    justify-content: flex-end;
    padding: 150px 0;
}
.headerWithImage .theContent {
    position: relative;
    z-index: 1;
    margin: 0 30px 0 0;
    text-align: right;
    padding: 20px 20px 20px 180px;
    width: calc(100% - 200px);
    background: rgba(0, 0, 0, 0.5);
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0) 100%);
    color: #FFF;
}
.headerWithImage .theContent h1 {
    margin-bottom: 25px;
}
.headerWithImage .theContent p {
    font-size: 1.75rem;
    font-weight: 200;
    letter-spacing: 0.25px;
}

.pageStartNoImage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 0 20px 0;
}
.pageStartNoImage .theContent {
    max-width: 950px;
    padding: 0 20px;
    text-align: center;
    margin: 50px auto 85px;
}
.pageStartNoImage h1 {
    font-size: 3.8rem;
    line-height: 1.2em;
    margin: 0 auto 25px;
}
.pageStartNoImage p {
    font-size: 1.2rem;
    line-height: 1.8em;
    font-weight: 200;
    max-width: 850px;
    margin: 0 auto 20px;
}
.pageStartNoImage p:last-child {
    margin-bottom: 0;
}

.centreText {
    padding: 100px 10px;
    text-align: center;
}
.centreText h2 {
    font-size: 3rem;
    max-width: 850px;
    margin: 0 auto 25px;
    line-height: 1.3em;
    letter-spacing: 0.5px;
}
.centreText p {
    font-size: 1.2rem;
    line-height: 1.8em;
    font-weight: 200;
    max-width: 850px;
    margin: 0 auto;
}
.centreText p:not(:last-child) {
    margin-bottom: 20px;
}

.contentImageSplit {
    margin: 50px auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
}
.contentImageSplit article {
    width: calc(50% - 50px);
}
.contentImageSplit .theImageArea img {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center center;
    position: relative;
    z-index: 1;
}

.contentImageSplit.offsetImage {
    border-bottom: 75px;
}

.contentImageSplit.offsetImage .theImageArea img {
    top: -200px;
}


.contentImageSplit .theContentArea h2 {
    font-size: 3rem;
    margin: -10px 0 25px;
    max-width: 550px;
    line-height: 1.2em;
}
.contentImageSplit .theContentArea p {
    font-size: 1.2rem;
    line-height: 1.8em;
    font-weight: 200;
    max-width: 550px;
    margin-bottom: 20px;
}
.contentImageSplit .theContentArea p:last-child {
    margin-bottom: 0;
}
.contentImageSplit.imageRight .theContentArea {
    order: 0;
    text-align: right;
}
.contentImageSplit.imageRight .theContentArea h2,
.contentImageSplit.imageRight .theContentArea p {
    margin-left: auto;
    margin-right: 0;
}
.contentImageSplit.imageRight .theImageArea {
    order: 1;
}
.contentImageSplit .theContentArea p + h2 {
    margin-top: 50px;
}

.centreText .contentLogo,
.contentImageSplit .contentLogo {
    width: 50%;
    display: block;
    margin-bottom: 30px;
    max-width: 350px;
}
.contentImageSplit.imageRight .contentLogo {
    margin-right: 0;
    margin-left: auto;
}
.centreText .contentLogo {
    margin: 0 auto 50px;
}

.imageGrid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}
.imageGrid ul li {
    width: calc(50% - 50px);
    aspect-ratio: 4/3;
}
.imageGrid ul li img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.imageGallery {
    margin: 0 auto 20px;
}


.imageTextout {
    width: 100%;
    background: no-repeat center center;
    background-size: cover;
    padding: 80px 0;
}
.imageTextout .theTextContent {
    padding: 80px;
    margin: 0 auto;
    width: calc(90% - 160px);
    max-width: 950px;
    background-color: rgba(0,0,0,0.7);
    color: #FFF;
    text-align: center;
}
.imageTextout .theTextContent h3 {
    font-size: 3.5rem;
    letter-spacing: 0.5px;
    margin: 0 auto 30px;
}
.imageTextout .theTextContent p {
    margin: 0 auto 30px;
    line-height: 2em;
    font-size: 1.2rem;
    font-weight: 200;
}
.imageTextout .theTextContent p:last-child {
    margin-bottom: 0;
}
.imageTextout .theTextContent .linkButton.action {
    background-color: rgba(0,0,0,0);
    color: #FFF;
    border: 1px solid #FFF;
}
.imageTextout .theTextContent .linkButton.action:hover {
    background-color: #155667;
    color: #FFF;
}

.fullWidthImage {
    width: 100%;
    height: 75vh;
    background: center center no-repeat;
    background-size: 100%;
    background-attachment: fixed;
}



.benefitsContent {
    margin: 0 auto 75px;
}
.benefitsContent > article {
    margin: 0 auto;
    padding: 25px 20px 0;
}
.benefitsContent > article:not(:last-child) {
    margin-bottom: 50px;
}
.benefitsContent > article .headerArea {
    padding: 0 0 10px 0;
    margin: 0 auto 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.benefitsContent > article .headerArea h3 {
    font-size: 3.5rem;
    margin: 0 auto 5px;
}
.benefitsContent > article .headerArea p {
    font-size: 1.4rem;
    font-weight: 300;
}
.benefitsContent > article .detailsArea {
    columns: 350px 3;
    padding: 15px 0 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.9);
    column-gap: 40px;
    column-rule: solid 1px rgba(0, 0, 0, 0.2);
}
.benefitsContent > article .detailsArea .keepTogether {
    -webkit-break-inside: avoid;
    break-inside: avoid;
}
.benefitsContent > article .detailsArea h4 {
    font-size: 1.5rem;
    margin: 25px auto 10px;
    font-weight: 300;
    line-height: 1.2;
}
.benefitsContent > article .detailsArea h4:first-child {
    margin-top: 0;
}
.benefitsContent > article li,
.benefitsContent > article p {
    font-weight: 300;
    line-height: 1.4em;
    margin: 0 auto 5px;
    font-size: 1rem;
}

.benefitsContent > article ul {
    list-style: disc outside;
    padding: 5px 0 0 25px;
    max-width: 350px;
    margin-bottom: 30px;
}
.benefitsContent > article ul li {
    list-style-position: outside;
    margin: 0 auto 12px;
}

.formFeedback {
    padding: 20px;
    text-align: center;
    border: 3px solid #155667;
    margin: 0 auto 25px;
}
.formFeedback h3 {
    font-size: 2rem;
    margin: 0 auto 20px;
    font-weight: 400;
}
.formFeedback p {
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 1.4em;
}
.formFeedback p:not(:last-child) {
    margin-bottom: 10px;
}


.contactFormArea {
    width: 90%;
    max-width: 650px;
}
.contactFrom {
    margin: 30px auto 0;
}
.contactForm ul li:not(.buttonArea) {
    background-color: #E9EFF1;
    border-radius: 8px;
    margin: 0 auto 10px;
    padding: 15px;
    font-weight: 300;
}
.contactForm ul li:not(.buttonArea) .theInputs {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.contactForm ul li label,
.contactForm ul li p {
    margin: 0 5px 0 0;
    position: relative;
    top: 5px;
    font-weight: 300;
}
.contactForm ul li label:has(+ input:focus-visible),
.contactForm ul li label:has(+ textarea:focus-visible),
.contactForm ul li p:has(+ input:focus-visible) {
    color: #155667;
    font-weight: 400;
}
.contactForm ul li input[type="text"],
.contactForm ul li textarea {
    border: none;
    margin: 0;
    padding: 0;
    background-color: #E9EFF1;
    flex-grow: 1;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    position: relative;
    top: 0;
    padding: 3px;
    border-bottom: 2px solid #E9EFF1;
}
.contactForm ul li input[type="text"]:focus,
.contactForm ul li textarea:focus {
    font-weight: 400;
    outline: none;
    border-bottom: 2px solid #155667;
}
.contactForm ul li textarea {
    height: 4rem;
}
.contactForm ul li .requiredError {
    width: 100%;
    text-align: right;
    margin: 10px 0 0 0;
    color: #e00000;
    font-weight: 400;
}
.contactForm ul li.buttonArea {
    text-align: center;
    padding: 10px 0 0 0;
}
.contactForm ul li:has(span[style*="display: inline;"]) {
    border: 2px solid #e00000;
}


.bodyTextArea {
    margin: -50px auto 50px;
    width: 90%;
}
.bodyTextArea h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
}
.bodyTextArea p {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    line-height: 1.3em;
}
table.cookiesTable {
    width: 100%;
    margin: 30px auto;
}
table.cookiesTable th,
table.cookiesTable td {
    font-size: 1.1rem;
    font-weight: 200;
    padding: 5px;
    text-align: left;
    line-height: 1.4em;
}
table.cookiesTable th {
    font-weight: 400;
}

footer .footerBar {
    background-color: #155667;
    color: #FFF;
}
footer .footerBar .maxPageWidth {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
footer .footerBar article {
    width: 50%;
}
footer .footerBar .footerImage img {
    width: 100%;
    aspect-ratio: 4/3;
    display: block;
    object-fit: cover;
    object-position: center center;
}

footer .footerBar .footerContent {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
footer .footerBar .footerContent div {
    padding: 0 50px;
}
footer .footerBar .footerContent h5 {
    margin: 0 0 8px;
    font-size: 2rem;
}
footer .footerBar .footerContent p {
    line-height: 1.6em;
    font-weight: 200;
}
footer .footerBar .footerContent p:not(:last-child) {
    margin-bottom: 20px;
}
footer .footerBar .footerContent p + h5 {
    margin-top: 30px;
}

footer .postFooter {
    padding: 15px 0;
}
footer .postFooter p {
    font-size: 0.9rem;
    font-weight: 200;
    margin: 0 auto 10px;
    text-align: center;
}
footer .postFooter p:last-child {
    margin-bottom: 0;
}