@charset "UTF-8";

/* ************************************************************************* */
/* NORMALIZE CSS v8.0.0 | MIT License | github.com/necolas/normalize.css     */
/* ************************************************************************* */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

h1 {
    font-size: 2em;
    margin: .67em 0;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button;
    appearance: button;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: .35em .75em .625em;
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type=checkbox],
[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
    appearance: textfield;
    outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

[hidden],
template {
    display: none;
}



/* ************************************************************ */
/* HTML Tag Styles                                              */
/* ************************************************************ */

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background: rgba(235, 235, 235, 1);
    color: rgba(0, 56, 76, 1);
    font-family: "montserrat", sans-serif;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 500;
    overflow-y: scroll;
}

@media (max-width:75em) {
    body {
        font-size: 1.25rem;
    }
}

a {
    color: rgba(0, 56, 76, 1);
    text-decoration: none;
    transition: .4s all;
}

a:hover {
    color: rgba(32, 99, 108, 1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: rgba(218, 188, 70, 1);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

h1 {
    font-size: 3.125rem;
    padding: 0 0 3.125rem 0;
}

@media (max-width:75em) {

    h1 {
        font-size: 2.25rem;
    }
}

h2 {
    font-size: 1.5rem;
    padding: 0 0 .625rem 0;
}

@media (max-width:75em) {

    h2 {
        font-size: 1.125rem;
    }
}

p {
    margin: .625rem;
}

p:last-of-type {
    margin: 0;
}

address,
cite {
    font-style: normal;
}

blockquote,
figure {
    margin: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}

dd {
    margin-left: 0;
}

img {
    width: 100%;
    vertical-align: middle;
}

svg {
    fill: currentColor;
}

textarea {
    resize: vertical;
}

fieldset {
    margin: 0;
}

button,
fieldset {
    border: 0;
    padding: 0;
}

button {
    border-radius: 0;
    background: transparent;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a,
area,
button,
input,
label,
select,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

[hidden] {
    display: none !important;
}

[tabindex="-1"]:focus {
    outline: none !important;
}



/* ************************************************************ */
/* Font Styles                                                  */
/* ************************************************************ */

.light {
    font-weight: 300;
}

.regular {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.bold {
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
}



/* ************************************************************ */
/* Colour Overides                                              */
/* ************************************************************ */

.gold {
    color: rgba(218, 188, 70, 1);
}

.blue {
    color: rgba(0, 56, 76, 1);
}

.white {
    color: rgba(255, 255, 255, 1);
}



/* ************************************************************ */
/* Alignment                                                    */
/* ************************************************************ */

.middle {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width:75em) {
    .middle {
        position: static;
    }
}

/* ************************************************************ */
/* Holding Page                                                 */
/* ************************************************************ */

.split-content {
    display: grid;
    gap: 0;
    grid-template-areas: "main aside";
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

@media (max-width:75em) {
    .split-content {
        grid-template-areas: "main" "aside";
        grid-template-columns: 1fr;
    }
}

.main {
    grid-area: main;
    height: 100%;
    padding: 3.125rem;
    text-align: center;
    width: 100%;
}

@media (max-width:75em) {
    .main {
        height: fit-content;
        padding: 3.125rem 1.25rem;
    }
}

.logo {
    display: block;
    margin: 0 auto;
    padding: 0 0 3.125rem 0;
    max-width: 21.875rem;
    width: 100%;
}

@media (max-width:75em) {
    .logo {
        max-width: 17.5rem;
    }
}

.keyline {
    background: rgba(0, 56, 76, 1);
    height: .1825rem;
    margin: 1.25rem auto;
    max-width: 6.25rem;
    width: 100%;
}

.pullout-panel {
    background: rgba(218, 188, 70, 1);
    margin: 2.25rem auto;
    padding: 1.25rem 3.125rem;
    width: 100%;
}

.pullout-panel a {
    color: rgba(0, 56, 76, 1);
}

.pullout-panel a:hover {
    color: rgba(32, 99, 108, 1);
}

.aside {
    background: rgba(0, 56, 76, 1) url('/assets/images/background-logo.svg') no-repeat center;
    background-size: 125%;
    color: rgba(255, 255, 255, 1);
    font-size: 2.5rem;
    grid-area: aside;
    height: 100%;
    padding: 3.125rem;
    position: relative;
    text-align: left;
    width: 100%;
}

@media (max-width:75em) {
    .aside {
        font-size: 1.75rem;
        height: fit-content;
        padding: 1.25rem;
        text-align: center;
    }
}

.aside ul {
    list-style-image: url('/assets/images/dot.svg');
}

@media (max-width:75em) {
    .aside ul  {
        list-style-position: inside;
        padding: 0;
    }
}

.aside ul li {
    margin: 0 0 3.125rem 0;
    padding: 0 0 0 1.25rem;
}

.aside ul li:last-of-type {
    margin: 0;
}

@media (max-width:75em) {
    .aside ul li  {
        margin: 0 0 2.25rem 0;
        padding: 0;
    }
}

.aside-content {
    height: fit-content;
    padding: 3.125rem;
}