@import 'normalize.css';
@import 'fonts.css';


/* Global Styles */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'AP Text', sans-serif;
    position: relative;
    background: #f5f5f5;
    line-height: 1.3;
    font-weight: 100;
    -webkit-overflow-scrolling: touch;
}

.centraliser {
    position: relative;
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
}

.clearfix::before,
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0 none;
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    clip: rect(0 0 0 0);
    white-space: nowrap;
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.25s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.overlay.active,
.overlay.mobile-nav {
    visibility: visible;
    opacity: 1;
}

img {
    display: block;
    width: 100%;
}

p {
    margin: 0 0 1rem;
    line-height: 1.5;
}

a {
    color: #c93232;
}

a:hover {
    text-decoration: none;
    color: #000;
}


/* Header */

header {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #e4e4e4;
    z-index: 2;
}

header .centraliser {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header #logo {
    display: block;
    width: 8.5rem;
    padding: 0.75rem 0;
    flex-shrink: 0;
}

header .contact {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    list-style: none;
    font-size: 75%;
    color: #4d4d54;
}

header .contact a {
    display: flex;
    width: 2rem;
    height: 2rem;
    border-radius: 1rem;
    border: 1px solid #e3e3e3;
    transition: all 0.25s ease;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    color: #4d4d54;
}

header .contact a:hover {
    border-color: #c93232;
    color: #c93232;
}

header .contact a + a {
    margin-left: 0.5rem;
}

header .contact .icon-phone {
    width: 0.875rem;
}

header .contact .icon-email {
    width: 1rem;
}

header .contact span {
    display: none;
}


/* Navigation */

#nav {
    background: #fff;
    border-bottom: 1px solid #e4e4e4;
}

#nav .centraliser {
    display: flex;
    align-items: center;
}

#nav .centraliser::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: #fff;
    z-index: 2;
}

#nav .site-title {
    font-family: 'AP Display', sans-serif;
    margin: 0 auto 0 0;
    padding: 0.625rem 1rem 0.625rem 0;
    align-self: center;
    font-weight: 400;
    font-size: 112.5%;
    color: #4d4d54;
    z-index: 2;
}

.menu-icon {
    position: relative;
    background: transparent;
    width: 2rem;
    height: 2rem;
    margin: 0.875rem 1rem 0.875rem 0;
    padding: 0;
    border: 0 none;
    border-radius: 0;
    cursor: pointer;
    z-index: 2;
}

.menu-icon span.inactive {
    display: block;
    position: absolute;
    top: 50%; left: 50%;
    background: #4d4d53;
    width: 1.125rem;
    height: 2px;
    margin: 0;
    border-radius: 1;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
}

.menu-icon span.inactive::before,
.menu-icon span.inactive::after {
    content: '';
    display: block;
    position: absolute;
    background: #4d4d53;
    width: 100%;
    height: 2px;
    border-radius: 1;
    transition: all 0.3s ease;
}

.menu-icon span.inactive::before {
    top: -6px;
    transform-origin: top right;
}

.menu-icon span.inactive::after {
    top: 6px;
    transform-origin: bottom right;
}

.menu-icon span.active {
    display: block;
    position: absolute;
    top: 50%; left: 50%;
    width: 1.125rem;
    height: 2px;
    margin: 0;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
    visibility: hidden;
    opacity: 0;
}

.menu-icon span.active::before,
.menu-icon span.active::after {
    content: '';
    display: block;
    position: absolute;
    background: #4d4d53;
    width: 1.125rem;
    height: 2px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-icon span.active::before {
    transform: rotate(-45deg);
}

.menu-icon span.active::after {
    transform: rotate(45deg);
}

.menu-icon.active span.inactive {
    transform: translate(-50%, -50%) rotate(360deg);
    visibility: hidden;
    opacity: 0;
}

.menu-icon.active span.active {
    transform: translate(-50%, -50%) rotate(360deg);
    visibility: visible;
    opacity: 1;
}

.menu-icon.active + ul {
    visibility: visible;
    opacity: 1;
}

nav {
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    transform: translate(0, -100%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

nav.active {
    transform: translate(0, 0);
}

nav ul {
    display: block;
    background: #fff;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li {
    display: block;
}

nav ul li a {
    display: block;
    position: relative;
    padding: 0.625rem 1rem;
    text-decoration: none;
    align-items: center;
    font-size: 93.75%;
    color: #4d4d54;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0;
    background: #c93232;
    width: 0;
    transition: all 0.375s ease;
}

nav ul li a:hover::before {
    width: 0.375rem;
}

nav ul li a.active::before {
    background: #c93232;
    width: 0.375rem;
}

nav ul li.has-child {
    position: relative;
}

nav ul li.has-child button.arrow {
    position: absolute;
    top: 0.25rem; right: 1rem;
    background: transparent;
    width: 2rem;
    height: 2rem;
    border: 0 none;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

nav ul li.has-child button.arrow::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: #4d4d54;
    width: 2px;
    height: 2px;
    box-shadow: -6px 0 0 #4d4d54,
                -4px 0 0 #4d4d54,
                -2px 0 0 #4d4d54,
                0 -2px 0 #4d4d54,
                0 -4px 0 #4d4d54,
                0 -6px 0 #4d4d54;
    transform: translate(-50%, calc(-50% + 3px)) rotate(45deg);
}

nav ul li.has-child button.arrow:hover {
    background: #c93232;
}

nav ul li.has-child button.arrow:hover::before {
    background: #fff;
    box-shadow: -6px 0 0 #fff,
                -4px 0 0 #fff,
                -2px 0 0 #fff,
                0 -2px 0 #fff,
                0 -4px 0 #fff,
                0 -6px 0 #fff;
}

nav ul li.has-child button.arrow.active {
    transform: rotate(180deg);
}

nav ul ul {
    display: none;
    position: initial;
}

nav ul ul li a {
    padding-left: 2rem;
}


/* Search */
#search-form,
.search-form {
    position: relative;
    margin: 0 0 0 auto;
    z-index: 2;
}

#search-form #search,
.search-form #search {
    background: #efefef;
    width: 45vw;
    max-width: 10.5rem;
    margin: 0;
    padding: 0.625rem 0.75rem;
    border: 0 none;
    border-radius: 3px;
    font-weight: 300;
}

#search-form button,
.search-form button {
    position: absolute;
    top: 50%; right: 0.75rem;
    background: transparent;
    width: 1.125rem;
    transform: translate(0, -50%);
    border: 0 none;
    cursor: pointer;
}

/* Breadcrumbs */

#breadcrumbs {
    background: #fff;
    border-bottom: 1px solid #e4e4e4;
}

#breadcrumbs ul {
    display: flex;
    list-style: none;
    display: table;
}

#breadcrumbs ul li {
    position: relative;
    padding: 0.75rem 0;
    font-size: 75%;
    color: #000;
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
    padding-right: 8px;
}


/*
#breadcrumbs ul li + li {
    margin-left: 1rem;
    padding-left: calc(1rem + 4px);
}*/

#breadcrumbs ul li + li::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%; left: 0;
    background: transparent url('../img/icon-breadcrumb-arrow.svg') no-repeat center center;
    background-size: 4px 7px;
    width: 4px;
    height: 7px;
    transform: translate(0, calc(-50% - 1px));
}

#breadcrumbs ul li a,
#breadcrumbs ul li span {
    display: block;
    padding: 0.25rem 0;
    text-decoration: none;
    color: #4d4d54;
}

#breadcrumbs ul li a:hover {
    color: #c93232;
}

/* Footer */

footer #social {
    background: #fff;
}

footer #social .centraliser {
    display: flex;
    justify-content: flex-end;
}

footer #social .social {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    list-style: none;
}

footer #social .social li {
    padding: 1rem 0.25rem;
}

footer #social .social li a {
    display: block;
    border: 2px solid transparent;
    border-radius: 10rem;
    transition: all 0.25s ease-in-out;
}

footer #social .social li a:hover {
    border-color: #30303c;
}

footer #social .social li a img {
    max-width: 2rem;
}

footer #acknowledgement {
    background: #30303c;
    padding: 1.75rem 1rem;
    color: #fff;
}

footer #acknowledgement .centraliser {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

footer #acknowledgement img {
    max-width: 5.75rem;
    margin: 0 auto 1rem;
}

footer #acknowledgement p {
    width: 100%;
    max-width: 43.75rem;
    text-align: center;
    font-size: 75%;
}


/* Columns */

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

.cols-1,
.cols-2,
.cols-3,
.cols-4,
.cols-5,
.cols-6,
.cols-7,
.cols-8,
.cols-9,
.cols-10,
.cols-11,
.cols-12 {
    width: 100%;
}


/* Forms */

form fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

.animated-label {
    position: relative;
    width: 100%;
}

.animated-label::before,
.animated-label::after {
    content: '';
    display: table;
    clear: both;
}

.animated-label label {
    position: absolute;
    top: 0; left: 0;
    margin: 0.5rem 0.75rem 0;
    padding: 0.625rem 0.5rem 0;
    border: 3px solid transparent;
    border-bottom: 0 none;
    transition: all 0.25s ease;
    line-height: 1.25;
    font-weight: 300;
    font-size: 93.75%;
    cursor: text;
    z-index: 1;
}

.animated-label .selectized ~ label {
    cursor: pointer;
}

.animated-label .selectized[disabled] ~ label {
    cursor: revert;
}

.animated-label.focused label {
    top: -1.125rem;
    background: #f5f5f5;
    margin-top: 0;
    font-size: 93.75%;
}

.animated-label.info input,
.animated-label.info textarea,
.animated-label.info select {
    padding-right: 3rem;
}

.animated-label.info .info-hover {
    position: absolute;
    top: 1.375rem; right: 1rem;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    z-index: 1;
}

.animated-label.info .info-hover.active {
    opacity: 1;
}

.animated-label.info .info-hover.active span {
    visibility: visible;
    opacity: 1;
}

.animated-label.info .info-hover span {
    position: absolute;
    bottom: calc(100% + 1rem); right: -1rem;
    background: #fff;
    width: 12.125rem;
    padding: 0.625rem 0.5rem;
    border-radius: 0.25rem;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-align: center;
    visibility: hidden;
    line-height: 1.4;
    font-size: 87.5%;
    opacity: 0;
}

.animated-label.info .info-hover span:before {
    content: '';
    position: absolute;
    top: 100%; right: 1rem;
    border: 7px solid transparent;
    border-top-color: #fff;
}

#filters input,
#filters textarea,
#filters select,
form input,
form textarea,
form select {
    display: block;
    background: transparent;
    width: 100%;
    height: auto;
    margin: 0 0 2.5rem;
    padding: 1.125rem 1.25rem;
    border: 3px solid #000;
    border-radius: 0.375rem;
    transition: all 0.25s ease;
    font-weight: 300;
    font-size: 93.75%;
    line-height: 1;
    resize: vertical;
    outline: none;
    color: #000;
}

#filters input:focus,
#filters textarea:focus,
#filters select:focus,
form input:focus,
form textarea:focus,
form select:focus {
    border-color: #000;
}

#filters input:focus ~ label,
#filters textarea:focus ~ label,
#filters select:focus ~ label,
form input:focus ~ label,
form textarea:focus ~ label,
form select:focus ~ label {
    top: -1.125rem;
    font-size: 80%;
}

#filters input[disabled],
#filters input[readonly],
#filters select[disabled],
#filters select[readonly],
#filters textarea[disabled],
#filters textarea[readonly],
form input[disabled],
form input[readonly],
form textarea[disabled],
form textarea[readonly],
form select[disabled],
form select[readonly] {
    background: #f7f7f7;
}

#filters input[disabled] ~ label,
#filters input[readonly] ~ label,
#filters textarea[disabled] ~ label,
#filters textarea[readonly] ~ label,
#filters select[disabled] ~ label,
#filters select[readonly]~ label,
form input[disabled] ~ label,
form input[readonly] ~ label,
form textarea[disabled] ~ label,
form textarea[readonly] ~ label,
form select[disabled] ~ label,
form select[readonly]~ label {
    background: #f7f7f7;
    cursor: revert;
}


#filters input.date-picker,
#filters textarea.date-picker,
#filters select.date-picker
form input.date-picker,
form textarea.date-picker,
form select.date-picker {
    cursor: text;
}

#filters  input.error,
#filters  textarea.error,
#filters  select.error,
form input.error,
form textarea.error,
form select.error {
    margin-bottom: 0;
    border-color: #c93232;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

#filters input.error:focus,
#filters textarea.error:focus,
#filters select.error:focus
form input.error:focus,
form textarea.error:focus,
form select.error:focus {
    border-color: #c93232;
}

#filters .actions,
form .actions {
    display: flex;
    margin-bottom: 2.5rem;
    align-items: center;
}


/* Buttons */

#sec-advert .button,
main button,
main .button {
    display: inline-block;
    background: #c93232;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 0 none;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
    font-size: 87.5%;
    cursor: pointer;
    color: #fff;
}

#sec-advert .button:hover,
main button:hover,
main .button:hover {
    background: #f72424;
}


/* Errors */

p.error,
span.error {
    display: block;
    background: #c93232;
    width: 100%;
    margin: 0;
    padding: 0.375rem 0.625rem;
    font-size: 80%;
    color: #fff;
}

p.error {
    text-align: center;
    color: #c93232;
}

span.error {
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

p.error:empty,
span.error:empty {
    display: none;
}


/* Card */

.card {
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
}

.card .card-image {
    background: no-repeat center center;
    background-size: contain;
    padding-top: 10rem;
    margin-top:5px;
}

/*
.card:nth-child(2n) .card-image {
    background-color: #30303b;
}
    */
.card .card-text {
    padding: 1.25rem;
}

.card h4 {
    margin: 0 0 1rem;
    font-weight: 400;
    font-size: 150%;
}

.card .extract {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.card .extract :last-child {
    margin-bottom: 0;
}

.card .more {
    display: block;
    position: relative;
    padding-left: 0.875rem;
    transition: all 0.25s ease-in-out;
    text-decoration: none;
    font-weight: 400;
    color: #000;
}

.card .more::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%; left: 0;
    background: transparent url('../img/icon-arrow.svg') no-repeat center center;
    background-size: 7px 10px;
    width: 7px;
    height: 10px;
    transform: translate(0, -50%);
}

.card .more:hover {
    color: #c93232;
}


/* Slider */

.slider {
    position: relative;
}

.slider .slick-prev,
.slider .slick-next {
    position: absolute;
    top: 50%;
    background: transparent;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 2rem;
    transform: translate(0, -50%);
    text-indent: -999rem;
    cursor: pointer;
}

.slider .slick-prev {
    left: 0.5rem;
}

.slider .slick-next {
    right: 0.5rem;
}

.slider .slick-prev::before,
.slider .slick-next::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%; left: 50%;
    background: transparent url('../img/icon-arrow.svg') no-repeat center center;
    background-size: 7px 10px;
    width: 7px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.slider .slick-prev::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.slider .slick-prev:hover,
.slider .slick-next:hover {
    border-color: #c93232;
}


/* Page Intro */

#page-intro {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

#page-intro > * + * {
    margin-top: 2.5rem;
}

.clsCalAndDate,
#page-intro .date {
    margin: 0 0 0.5rem;
    font-size: 75%;
    color: #c93232;
}

#page-intro h1 {
    margin: 0 0 0.5rem;
    letter-spacing: -2px;
    font-weight: 400;
    font-size: 250%;
    line-height: 1.1;
}

.intro-text .intro-text-inner {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid #c93232;
}

.intro-text .intro-text-inner h3 {
    margin: 0 0 1rem;
    letter-spacing: -0.5px;
    line-height: 1.15;
    font-weight: 400;
    font-size: 200%;
}

.intro-text .button {
    margin-left: 2.375rem;
}

.intro-image {
    background: #fff no-repeat center center;
    background-size: cover;
    height: calc(100vw - 2rem);
    max-height: 20rem;
}

.intro-slider {
    background: #fff;
    border-radius: 0.75rem;
}

.intro-slider .slick-list {
    max-width: calc(100% - 6rem);
    margin: 2.5rem auto;
    border-radius: 0.75rem;
}

.link-list h4 {
    margin: 0;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e2e2;
    font-weight: 300;
    font-size: 125%;
}

.link-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.link-list ul li {
    padding: 0 1rem;
}


.link-list ul li + li a {
    border-top: 1px solid #e2e2e2;
}

.link-list ul li a {
    display: block;
    position: relative;
    padding: 0.75rem 0;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
    color: #232323;
}

.link-list ul li a::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%; right: 0;
    background: transparent url('../img/icon-arrow.svg') no-repeat center center;
    background-size: contain;
    width: 1rem;
    height: 1rem;
    transition: all 0.4s ease-in-out;
    transform: translate(0, -50%);
}

.link-list ul li a:hover {
    color: #c93232;
}

.link-list ul li a:hover::after {
    right: 1rem;
}

.link-list.downloads ul li span {
    display: block;
    padding: 0.75rem 0;
    font-weight: 400;
}

.link-list.downloads ul li a {
    padding-left: 2.5rem;
}

.link-list.downloads ul li a::after {
    right: auto; left: 1rem;
}


/* Page Specific */

/* -- Home */

#home {}

.hero,
#hero {
    background: #c93232 no-repeat center center;
    background-size: cover;
    padding: 2rem 0;
}

.hero .hero-modal,
#hero .hero-modal {
    background: #fff;
    width: 100%;
    max-width: 32.5rem;
    margin: 0 0 0 auto;
    padding: 2rem 1.5rem;
}

.hero .hero-modal .hero-inner,
#hero .hero-modal .hero-inner {
    border-left: 3px solid #c93232;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.hero .hero-modal .hero-inner .category,
#hero .hero-modal .hero-inner .category {
    margin: 0 0 1rem;
    text-transform: uppercase;
    font-size: 62.5%;
    color: #c93232;
}

.hero .hero-modal .hero-inner h2,
#hero .hero-modal .hero-inner h2 {
    margin: 0 0 1rem;
    letter-spacing: -0.5px;
    line-height: 1.15;
    font-weight: 400;
    font-size: 200%;
}

.hero .hero-modal .hero-inner .description,
#hero .hero-modal .hero-inner .description {
    font-size: 100%;
}

.hero .hero-modal .button,
#hero .hero-modal .button {
    margin-left: 1.625rem;
}

.latest-items {}

.latest-items h3 {
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 200%;
}

.latest-items .latest-item {
    margin-bottom: 2.5rem;
}


/* Search Results */

#search-results #page-intro {
    padding-bottom: 0;
}


/* Single Article */

.article-slider {
    margin-bottom: 2.5rem;
    padding: 1rem 4rem;
}

.article-slider .slide {
    border-radius: 0.75rem;
}

.article-slider .slick-prev,
.article-slider .slick-next {
    width: 3rem;
    height: 3rem;
}

.article-slider .slick-prev::before,
.article-slider .slick-next::before {
    background-size: 9px 14px;
    width: 9px;
    height: 14px;
}

.article-slider .slick-prev::before {
    transform: translate(calc(-50% - 1px), -50%) rotate(180deg);
}

.article-slider .slick-next::before {
    transform: translate(calc(-50% + 1px), -50%);
}

.article-body {
    margin-bottom: 2.5rem;
}

.article-footer {
    margin: 5rem 0 0;
    padding: 2rem 0.25rem 0;
    border-top: 4px solid #c93232;
    font-size: 93.75%;
}

.sidebar {
    margin-bottom: 2.5rem;
}


/* Responsive */

@media only screen and (min-width: 451px) {
    footer #acknowledgement .centraliser {
        flex-wrap: nowrap;
    }

    footer #acknowledgement img {
        margin: 0 2rem 0 0;
    }

    footer #acknowledgement p {
        width: calc(100% - 7.75rem);
        text-align: left;
    }
}

@media only screen and (min-width: 551px) {
    main button,
    main .button {
        padding: 1rem 2.5rem;
    }

    .hero .hero-modal,
    #hero .hero-modal {
        padding: 3.125rem;
    }

    .hero .hero-modal .hero-inner,
    #hero .hero-modal .hero-inner {
        padding-left: 2.25rem;
    }

    .hero .hero-modal .hero-inner h2,
    #hero .hero-modal .hero-inner h2 {
        margin-bottom: 1.5rem;
        font-size: 300%;
    }

    .hero .hero-modal .hero-inner .description,
    #hero .hero-modal .hero-inner .description {
        font-size: 112.5%;
    }

    .hero .hero-modal .button ,
    #hero .hero-modal .button {
        margin-left: 2.375rem;
        font-size: 100%;
    }

    .intro-text .intro-text-inner {
        padding-left: 2.25rem;
    }

    .intro-text .intro-text-inner p {
        font-size: 112.5%;
    }
}

@media only screen and (min-width: 641px) {
    header .contact a {
        width: auto;
        height: auto;
        border-radius: 0;
        border: 0 none;
    }

    header .contact a img {
        margin-right: 0.5rem;
    }

    header .contact a span {
        display: block;
    }

    header .contact a + a {
        margin-left: 1.5rem;
    }
}

@media only screen and (min-width: 769px) {
    /*
        Columns calculations formula:
        ((((100% - (11 gutters)) / 12 columns) * columns) + (covered gutters))
     */

    .cols-1 {
        width: calc((100% - (11 * 2.5rem)) / 12);
    }

    .cols-2 {
        width: calc((((100% - (11 * 2.5rem)) / 12) * 2) + (1 * 2.5rem));
    }

    .cols-3 {
        width: calc((((100% - (11 * 2.5rem)) / 12) * 3) + (2 * 2.5rem));
    }

    .cols-4 {
        width: calc((((100% - (11 * 2.5rem)) / 12) * 4) + (3 * 2.5rem));
    }

    .cols-5 {
        width: calc((((100% - (11 * 2.5rem)) / 12) * 5) + (4 * 2.5rem));
    }

    .cols-6 {
        width: calc((((100% - (11 * 2.5rem)) / 12) * 6) + (5 * 2.5rem));
    }

    .cols-7 {
        width: calc((((100% - (11 * 2.5rem)) / 12) * 7) + (6 * 2.5rem));
    }

    .cols-8 {
        width: calc((((100% - (11 * 2.5rem)) / 12) * 8) + (7 * 2.5rem));
    }

    .cols-9 {
        width: calc((((100% - (11 * 2.5rem)) / 12) * 9) + (8 * 2.5rem));
    }

    .cols-10 {
        width: calc((((100% - (11 * 2.5rem)) / 12) * 10) + (9 * 2.5rem));
    }

    .cols-11 {
        width: calc((((100% - (11 * 2.5rem)) / 12) * 11) + (10 * 2.5rem));
    }

    .cols-12 {
        width: 100%;
    }

    #page-intro > * + * {
        margin-top: 0;
    }

    #page-intro h1 {
        font-size: 300%;
    }

    .intro-image {
        height: auto;
        max-height: 100%;
    }

    .intro-slider .slick-list {
        position: absolute;
        top: 50%; left: 50%;
        max-height: calc(100% - 2rem);
        margin: 0;
        transform: translate(-50%, -50%);
    }

    .article-body {
        padding-left: 2.25rem;
    }
}

@media only screen and (min-width: 841px) {
    #nav .centraliser::before {
        content: none;
    }

    #nav .site-title {
        padding-right: 3.75rem;
    }

    .menu-icon {
        display: none;
    }

    nav {
        position: relative;
        transform: translate(0, 0);
    }

    nav ul {
        display: flex;
    }

    nav ul li::before {
        content: '';
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
        background: #fff;
        z-index: 2;
    }

    nav ul li a {
        margin: 0 0.5rem;
        padding: 1.25rem 0.25rem;
        z-index: 4;
    }

    nav ul li a::before {
        top: auto;
        height: 0.25rem;
    }

    nav ul li a:hover::before,
    nav ul li.has-child:hover a::before {
        width: 100%;
    }

    nav ul li a.active::before {
        width: 100%;
    }

    nav ul li.has-child > a {
        padding-right: 1.25rem;
    }

    nav ul li.has-child button.arrow {
        top: 25px; right: 0.25rem;
        width: 0.75rem;
        height: 0.5rem;
        z-index: 3;
    }

    nav ul li.has-child button.arrow::before {
        transform: translate(-50%, calc(-50% + 1px)) rotate(45deg);
    }

    nav ul li.has-child button.arrow::before,
    nav ul li.has-child button.arrow:hover::before {
        background: rgba(77, 77, 84, 0.75);
        box-shadow: -4px 0 0 rgba(77, 77, 84, 0.75),
                    -2px 0 0 rgba(77, 77, 84, 0.75),
                    0 -2px 0 rgba(77, 77, 84, 0.75),
                    0 -4px 0 rgba(77, 77, 84, 0.75);
    }

    nav ul li.has-child button.arrow:hover {
        background: transparent;
    }

    nav ul li.has-child a:hover + button.arrow,
    nav ul li.has-child:hover button.arrow {
        transform: rotate(180deg);
    }

    nav ul li.has-child:hover > ul {
        transform: translate(0, 0);
    }

    nav ul ul {
        display: block;
        position: absolute;
        top: 100%; left: 0.5rem;
        min-width: 10rem;
        transition: all 0.25s ease;
        transform: translate(0, -100%);
        z-index: 1;
    }

    nav ul ul li a {
        margin: 0;
        padding: 0.5rem;
        transition: all 0.25s ease;
    }

    nav ul ul li a::before {
        content: none;
    }

    nav ul ul li a:hover {
        background: #c93232;
        color: #fff;
    }
}