﻿:root {
    --vsm-white: 255, 255, 255;
    --vsm-black: 9, 9, 9;
    --vsm-body-copy-colour: 95, 99, 104;
    --vsm-accent-colour: 255, 211, 68;
    --vsm-primary-colour: 242, 93, 14;
    --vsm-secondary-colour: 37, 24, 116;
    --vsm-tertiary-colour: 214, 218, 213;
    --vsm-quaternary-colour: 214, 218, 213;
    --vsm-quinary-colour: 214, 218, 213
}

:root {
    --vsm-heading: 4.375rem;
    --vsm-md-heading: 2.5rem;
    --vsm-sm-heading: 1.875rem;
    --vsm-xs-heading: 1.125rem;
    --vsm-xxs-heading: 0.75rem;
    --vsm-text-size: 1rem;
    --vsm-button-text-size: 0.875rem;
    --vsm-intro-text-size: 1.5rem;
    --vsm-oversized-text-size: 1.875rem
}

@media only screen and (min-width: 125rem) {
    :root {
        font-size: 120%
    }
}

:root {
    --vsm-mobile-padding-top: 1.875rem;
    --vsm-mobile-padding-bottom: 1.875rem;
    --vsm-tablet-padding-top: 3.125rem;
    --vsm-tablet-padding-bottom: 3.125rem;
    --vsm-desktop-padding-top: 5rem;
    --vsm-desktop-padding-bottom: 5rem
}

@media only screen and (min-width: 125rem) {
    .container {
        max-width: 82.5rem
    }
}

html,
body {
    color: rgba(var(--vsm-body-copy-colour), 1)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: rgba(var(--vsm-black), 1)
}

.align-left {
    text-align: left
}

.align-center {
    text-align: center
}

.align-right {
    text-align: right
}

.heading {
    font-size: var(--vsm-heading)
}

.md-heading {
    font-size: var(--vsm-md-heading)
}

.sm-heading {
    font-size: var(--vsm-sm-heading)
}

.xs-heading {
    font-size: var(--vsm-xs-heading)
}

.xxs-heading {
    font-size: var(--vsm-xxs-heading)
}

a {
    color: rgba(var(--vsm-primary-colour), 1)
}

a:hover {
    color: rgba(var(--vsm-secondary-colour), 1)
}

.rte blockquote {
    font-size: 2rem;
    line-height: 1.4375em;
    position: relative;
    padding: 1.5rem 0 1.5rem;
    margin: .938rem 0;
    width: calc(100% - 1.5em);
    max-width: 98vw;
    left: 1.5em;
    display: block;
    text-align: left;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative
}

.rte blockquote p {
    font-size: 2rem;
    line-height: 1.4375em
}

.btn {
    background: #000;
    color: #fff;
    border-radius: 0;
    padding: .625rem 1.875rem;
    font-size: var(--vsm-button-text-size);
    font-weight: 600
}

.btn:hover {
    border: .063rem solid rgba(var(--vsm-primary-colour), 1);
    background-color: rgba(var(--vsm-primary-colour), 1)
}

.btn.btn-primary {
    border: .063rem solid rgba(var(--vsm-primary-colour), 1);
    background-color: rgba(var(--vsm-primary-colour), 1)
}

.btn.btn-primary:hover {
    border: .063rem solid rgba(var(--vsm-black), 1);
    background-color: rgba(var(--vsm-black), 1)
}

.btn.btn-secondary {
    border: .063rem solid rgba(var(--vsm-secondary-colour), 1);
    background-color: rgba(var(--vsm-secondary-colour), 1)
}

.btn.btn-secondary:hover {
    border: .063rem solid rgba(var(--vsm-black), 1);
    background-color: rgba(var(--vsm-black), 1)
}

.btn span {
    color: #fff;
    font-size: var(--vsm-button-text-size);
    font-weight: 600
}

.btn:focus,
.btn-primary:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--vsm-primary-colour), 0.1)
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--vsm-primary-colour), 0.1)
}

.inline-link {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    font-size: .875rem
}

.inline-link:after {
    content: "";
    position: relative;
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    left: .625rem
}

.inline-link:hover:after {
    left: 1.25rem;
    animation: forwardMovement 800ms infinite
}

.back-to-link {
    position: relative;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    font-size: 1rem
}

.back-to-link:before {
    content: "";
    position: relative;
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    left: 0px;
    margin-right: .625rem
}

.back-to-link:hover:before {
    left: -0.625rem;
    animation: backwardMovement 800ms infinite
}

@keyframes forwardMovement {
    0% {
        left: .625rem
    }

    50% {
        left: 1.25rem;
        opacity: 0
    }

    100% {
        left: 1.25rem;
        opacity: 0
    }
}

@keyframes backwardMovement {
    0% {
        left: 0px
    }

    50% {
        left: -0.625rem;
        opacity: 0
    }

    100% {
        left: 0px;
        opacity: 0
    }
}

.padding-top {
    padding-top: var(--vsm-mobile-padding-top)
}

@media(min-width: 768px) {
    .padding-top {
        padding-top: var(--vsm-tablet-padding-top)
    }
}

@media(min-width: 1024px) {
    .padding-top {
        padding-top: var(--vsm-desktop-padding-top)
    }
}

.padding-bottom {
    padding-bottom: var(--vsm-mobile-padding-bottom)
}

@media(min-width: 768px) {
    .padding-bottom {
        padding-bottom: var(--vsm-tablet-padding-bottom)
    }
}

@media(min-width: 1024px) {
    .padding-bottom {
        padding-bottom: var(--vsm-desktop-padding-bottom)
    }
}

.rte img {
    max-width: 100%;
    height: auto
}

.rte iframe {
    max-width: 100%
}

.rte.larger-text,
.larger-text {
    font-size: var(--vsm-intro-text-size);
    font-weight: 300
}

.rte.larger-text li,
.rte.larger-text p,
.rte.larger-text dd,
.rte.larger-text a,
.larger-text li,
.larger-text p,
.larger-text dd,
.larger-text a {
    font-size: var(--vsm-intro-text-size);
    font-size: inherit
}

.media {
    border-radius: 0px;
    overflow: hidden
}

.general-contact-details {
    list-style: none;
    padding: 0;
    margin: 0
}

.general-contact-details li {
    display: block
}

.general-contact-details li i {
    margin-right: .625rem
}

.socials {
    list-style: none;
    padding: 0;
    margin: 0
}

.socials li {
    display: inline-block
}

.socials li a {
    margin-right: .625rem
}

ul.job-data-highlights {
    list-style: none;
    margin: 0
}

.icon {
    margin-left: 0em;
    margin-right: .4em;
    width: 1.25rem
}

.icon:before {
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    right: 0px;
    color: rgba(var(--vsm-primary-colour), 1)
}

.icon.location:before {
    content: ""
}

.icon.remote:before {
    content: ""
}

.icon.money:before {
    content: ""
}

.icon.type:before {
    content: ""
}

.icon.sector:before {
    content: ""
}

@font-face {
    font-family: "candidate-portal";
    src: url("../fonts/candidate-portal.eot");
    src: url("../fonts/candidate-portal.eot") format("embedded-opentype"), url("../fonts/candidate-portal.ttf") format("truetype"), url("../fonts/candidate-portal.woff") format("woff"), url("../fonts/candidate-portal.svg") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block
}

[class^=icon-],
[class*=" icon-"] {
    font-family: "candidate-portal" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-download:before {
    content: ""
}

.icon-settings:before {
    content: ""
}

.icon-job-alerts:before {
    content: ""
}

.icon-job-applications:before {
    content: ""
}

.icon-dashboard:before {
    content: ""
}

.icon-shortlisted-jobs:before {
    content: ""
}

.icon-profile:before {
    content: ""
}

@media only screen and (max-width: 47.938rem) {
    .lax {
        transform: none !important
    }
}

/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
    z-index: 9990;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    background: #0b0b0b;
    background: rgba(0, 0, 0, .9);
    outline: none !important;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.lity.lity-opened {
    opacity: 1
}

.lity.lity-closed {
    opacity: 0
}

.lity * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.lity-wrap {
    z-index: 9990;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    outline: none !important
}

.lity-wrap:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em
}

.lity-loader {
    z-index: 9991;
    color: #fff;
    position: absolute;
    top: 50%;
    margin-top: -0.8em;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.lity-loading .lity-loader {
    opacity: 1
}

.lity-container {
    z-index: 9992;
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    white-space: normal;
    max-width: 100%;
    max-height: 100%;
    outline: none !important
}

.lity-content {
    z-index: 9993;
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: -o-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease, -o-transform .3s ease
}

.lity-loading .lity-content,
.lity-closed .lity-content {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8)
}

.lity-content:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    box-shadow: 0 0 8px rgba(0, 0, 0, .6)
}

.lity-close {
    z-index: 9994;
    width: 35px;
    height: 35px;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-appearance: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    font-size: 35px;
    font-family: Arial, Baskerville, monospace;
    line-height: 35px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    border: 0;
    background: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.lity-close::-moz-focus-inner {
    border: 0;
    padding: 0
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    font-size: 35px;
    font-family: Arial, Baskerville, monospace;
    line-height: 35px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    border: 0;
    background: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.lity-close:active {
    top: 1px
}

.lity-image img {
    max-width: 100%;
    display: block;
    line-height: 0;
    border: 0
}

.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
    width: 100%;
    max-width: 964px
}

.lity-iframe-container {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: auto;
    pointer-events: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch
}

.lity-iframe-container iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #000
}

.lity-hide {
    display: none
}

/*!
 * icheck-bootstrap v3.0.1 (https://github.com/bantikyan/icheck-bootstrap)
 * Copyright 2018 Hovhannes Bantikyan.
 * Licensed under MIT (https://github.com/bantikyan/icheck-bootstrap/blob/master/LICENSE)
 */
[class*=icheck-] {
    min-height: 22px;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    padding-left: 0
}

.icheck-inline {
    display: inline-block
}

.icheck-inline+.icheck-inline {
    margin-left: .75rem;
    margin-top: 6px
}

[class*=icheck-]>label {
    padding-left: 29px !important;
    min-height: 22px;
    line-height: 22px;
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer
}

[class*=icheck-]>input:first-child {
    position: absolute !important;
    opacity: 0;
    margin: 0
}

[class*=icheck-]>input:first-child:disabled {
    cursor: default
}

[class*=icheck-]>input:first-child+input[type=hidden]+label::before,
[class*=icheck-]>input:first-child+label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid #d3cfc8;
    border-radius: 0;
    margin-left: -29px
}

[class*=icheck-]>input:first-child:checked+input[type=hidden]+label::after,
[class*=icheck-]>input:first-child:checked+label::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 10px;
    border: 2px solid #fff;
    border-left: none;
    border-top: none;
    transform: translate(7.75px, 4.5px) rotate(45deg);
    -ms-transform: translate(7.75px, 4.5px) rotate(45deg)
}

[class*=icheck-]>input[type=radio]:first-child+input[type=hidden]+label::before,
[class*=icheck-]>input[type=radio]:first-child+label::before {
    border-radius: 50%
}

[class*=icheck-]>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
[class*=icheck-]>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-width: 2px
}

[class*=icheck-]>input:first-child:disabled+input[type=hidden]+label,
[class*=icheck-]>input:first-child:disabled+input[type=hidden]+label::before,
[class*=icheck-]>input:first-child:disabled+label,
[class*=icheck-]>input:first-child:disabled+label::before {
    pointer-events: none;
    cursor: default;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65
}

.icheck-default>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-default>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #adadad
}

.icheck-default>input:first-child:checked+input[type=hidden]+label::before,
.icheck-default>input:first-child:checked+label::before {
    background-color: #e6e6e6;
    border-color: #adadad
}

.icheck-default>input:first-child:checked+input[type=hidden]+label::after,
.icheck-default>input:first-child:checked+label::after {
    border-bottom-color: #333;
    border-right-color: #333
}

.icheck-primary>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-primary>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #2e6da4
}

.icheck-primary>input:first-child:checked+input[type=hidden]+label::before,
.icheck-primary>input:first-child:checked+label::before {
    background-color: #337ab7;
    border-color: #2e6da4
}

.icheck-success>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-success>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #4cae4c
}

.icheck-success>input:first-child:checked+input[type=hidden]+label::before,
.icheck-success>input:first-child:checked+label::before {
    background-color: #5cb85c;
    border-color: #4cae4c
}

.icheck-info>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-info>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #46b8da
}

.icheck-info>input:first-child:checked+input[type=hidden]+label::before,
.icheck-info>input:first-child:checked+label::before {
    background-color: #5bc0de;
    border-color: #46b8da
}

.icheck-warning>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-warning>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #eea236
}

.icheck-warning>input:first-child:checked+input[type=hidden]+label::before,
.icheck-warning>input:first-child:checked+label::before {
    background-color: #f0ad4e;
    border-color: #eea236
}

.icheck-danger>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-danger>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #d43f3a
}

.icheck-danger>input:first-child:checked+input[type=hidden]+label::before,
.icheck-danger>input:first-child:checked+label::before {
    background-color: #d9534f;
    border-color: #d43f3a
}

.icheck-turquoise>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-turquoise>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #1abc9c
}

.icheck-turquoise>input:first-child:checked+input[type=hidden]+label::before,
.icheck-turquoise>input:first-child:checked+label::before {
    background-color: #1abc9c;
    border-color: #1abc9c
}

.icheck-emerland>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-emerland>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #2ecc71
}

.icheck-emerland>input:first-child:checked+input[type=hidden]+label::before,
.icheck-emerland>input:first-child:checked+label::before {
    background-color: #2ecc71;
    border-color: #2ecc71
}

.icheck-peterriver>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-peterriver>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #3498db
}

.icheck-peterriver>input:first-child:checked+input[type=hidden]+label::before,
.icheck-peterriver>input:first-child:checked+label::before {
    background-color: #3498db;
    border-color: #3498db
}

.icheck-amethyst>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-amethyst>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #9b59b6
}

.icheck-amethyst>input:first-child:checked+input[type=hidden]+label::before,
.icheck-amethyst>input:first-child:checked+label::before {
    background-color: #9b59b6;
    border-color: #9b59b6
}

.icheck-wetasphalt>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-wetasphalt>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #34495e
}

.icheck-wetasphalt>input:first-child:checked+input[type=hidden]+label::before,
.icheck-wetasphalt>input:first-child:checked+label::before {
    background-color: #34495e;
    border-color: #34495e
}

.icheck-greensea>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-greensea>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #16a085
}

.icheck-greensea>input:first-child:checked+input[type=hidden]+label::before,
.icheck-greensea>input:first-child:checked+label::before {
    background-color: #16a085;
    border-color: #16a085
}

.icheck-nephritis>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-nephritis>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #27ae60
}

.icheck-nephritis>input:first-child:checked+input[type=hidden]+label::before,
.icheck-nephritis>input:first-child:checked+label::before {
    background-color: #27ae60;
    border-color: #27ae60
}

.icheck-belizehole>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-belizehole>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #2980b9
}

.icheck-belizehole>input:first-child:checked+input[type=hidden]+label::before,
.icheck-belizehole>input:first-child:checked+label::before {
    background-color: #2980b9;
    border-color: #2980b9
}

.icheck-wisteria>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-wisteria>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #8e44ad
}

.icheck-wisteria>input:first-child:checked+input[type=hidden]+label::before,
.icheck-wisteria>input:first-child:checked+label::before {
    background-color: #8e44ad;
    border-color: #8e44ad
}

.icheck-midnightblue>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-midnightblue>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #2c3e50
}

.icheck-midnightblue>input:first-child:checked+input[type=hidden]+label::before,
.icheck-midnightblue>input:first-child:checked+label::before {
    background-color: #2c3e50;
    border-color: #2c3e50
}

.icheck-sunflower>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-sunflower>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #f1c40f
}

.icheck-sunflower>input:first-child:checked+input[type=hidden]+label::before,
.icheck-sunflower>input:first-child:checked+label::before {
    background-color: #f1c40f;
    border-color: #f1c40f
}

.icheck-carrot>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-carrot>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #e67e22
}

.icheck-carrot>input:first-child:checked+input[type=hidden]+label::before,
.icheck-carrot>input:first-child:checked+label::before {
    background-color: #e67e22;
    border-color: #e67e22
}

.icheck-alizarin>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-alizarin>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #e74c3c
}

.icheck-alizarin>input:first-child:checked+input[type=hidden]+label::before,
.icheck-alizarin>input:first-child:checked+label::before {
    background-color: #e74c3c;
    border-color: #e74c3c
}

.icheck-clouds>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-clouds>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #ecf0f1
}

.icheck-clouds>input:first-child:checked+input[type=hidden]+label::before,
.icheck-clouds>input:first-child:checked+label::before {
    background-color: #ecf0f1;
    border-color: #ecf0f1
}

.icheck-clouds>input:first-child:checked+input[type=hidden]+label::after,
.icheck-clouds>input:first-child:checked+label::after {
    border-bottom-color: #95a5a6;
    border-right-color: #95a5a6
}

.icheck-concrete>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-concrete>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #95a5a6
}

.icheck-concrete>input:first-child:checked+input[type=hidden]+label::before,
.icheck-concrete>input:first-child:checked+label::before {
    background-color: #95a5a6;
    border-color: #95a5a6
}

.icheck-orange>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-orange>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #f39c12
}

.icheck-orange>input:first-child:checked+input[type=hidden]+label::before,
.icheck-orange>input:first-child:checked+label::before {
    background-color: #f39c12;
    border-color: #f39c12
}

.icheck-pumpkin>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-pumpkin>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #d35400
}

.icheck-pumpkin>input:first-child:checked+input[type=hidden]+label::before,
.icheck-pumpkin>input:first-child:checked+label::before {
    background-color: #d35400;
    border-color: #d35400
}

.icheck-pomegranate>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-pomegranate>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #c0392b
}

.icheck-pomegranate>input:first-child:checked+input[type=hidden]+label::before,
.icheck-pomegranate>input:first-child:checked+label::before {
    background-color: #c0392b;
    border-color: #c0392b
}

.icheck-silver>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-silver>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #bdc3c7
}

.icheck-silver>input:first-child:checked+input[type=hidden]+label::before,
.icheck-silver>input:first-child:checked+label::before {
    background-color: #bdc3c7;
    border-color: #bdc3c7
}

.icheck-asbestos>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-asbestos>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: #7f8c8d
}

.icheck-asbestos>input:first-child:checked+input[type=hidden]+label::before,
.icheck-asbestos>input:first-child:checked+label::before {
    background-color: #7f8c8d;
    border-color: #7f8c8d
}

/*!
 * Bootstrap-select v1.14.0-beta2 (https://developer.snapappointments.com/bootstrap-select)
 *
 * Copyright 2012-2021 SnapAppointments, LLC
 * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
 */
@-webkit-keyframes bs-notify-fadeOut {
    0% {
        opacity: .9
    }

    100% {
        opacity: 0
    }
}

@-o-keyframes bs-notify-fadeOut {
    0% {
        opacity: .9
    }

    100% {
        opacity: 0
    }
}

@keyframes bs-notify-fadeOut {
    0% {
        opacity: .9
    }

    100% {
        opacity: 0
    }
}

.bootstrap-select>select.bs-select-hidden,
select.bs-select-hidden,
select.selectpicker {
    display: none !important
}

.bootstrap-select {
    vertical-align: middle
}

.bootstrap-select>.dropdown-toggle {
    position: relative;
    width: 100%;
    text-align: right;
    white-space: nowrap;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.bootstrap-select>.dropdown-toggle:after {
    margin-top: -1px
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: #999
}

.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover {
    color: rgba(255, 255, 255, .5)
}

.bootstrap-select>select {
    position: absolute !important;
    bottom: 0;
    left: 50%;
    display: block !important;
    width: .5px !important;
    height: 100% !important;
    padding: 0 !important;
    opacity: 0 !important;
    border: none;
    z-index: 0 !important
}

.bootstrap-select>select.mobile-device {
    top: 0;
    left: 0;
    display: block !important;
    width: 100% !important;
    z-index: 2 !important
}

.bootstrap-select.is-invalid .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle,
.was-validated .bootstrap-select select:invalid+.dropdown-toggle {
    border-color: #b94a48
}

.bootstrap-select.is-valid .dropdown-toggle,
.was-validated .bootstrap-select select:valid+.dropdown-toggle {
    border-color: #28a745
}

.bootstrap-select.fit-width {
    width: auto !important
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 220px
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: thin dotted #333 !important;
    outline: 5px auto -webkit-focus-ring-color !important;
    outline-offset: -2px
}

.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: none;
    height: auto
}

:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]) {
    width: 100%
}

.bootstrap-select.form-control.input-group-btn {
    float: none;
    z-index: auto
}

.form-inline .bootstrap-select,
.form-inline .bootstrap-select.form-control:not([class*=col-]) {
    width: auto
}

.bootstrap-select:not(.input-group-btn),
.bootstrap-select[class*=col-] {
    float: none;
    display: inline-block;
    margin-left: 0
}

.bootstrap-select.dropdown-menu-right,
.bootstrap-select[class*=col-].dropdown-menu-right,
.row .bootstrap-select[class*=col-].dropdown-menu-right {
    float: right
}

.form-group .bootstrap-select,
.form-horizontal .bootstrap-select,
.form-inline .bootstrap-select {
    margin-bottom: 0
}

.form-group-lg .bootstrap-select.form-control,
.form-group-sm .bootstrap-select.form-control {
    padding: 0
}

.form-group-lg .bootstrap-select.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.form-control .dropdown-toggle {
    height: 100%;
    font-size: inherit;
    line-height: inherit;
    border-radius: inherit
}

.bootstrap-select.form-control-lg .dropdown-toggle,
.bootstrap-select.form-control-sm .dropdown-toggle {
    font-size: inherit;
    line-height: inherit;
    border-radius: inherit
}

.bootstrap-select.form-control-sm .dropdown-toggle {
    padding: .25rem .5rem
}

.bootstrap-select.form-control-lg .dropdown-toggle {
    padding: .5rem 1rem
}

.form-inline .bootstrap-select .form-control {
    width: 100%
}

.bootstrap-select.disabled,
.bootstrap-select>.disabled {
    cursor: not-allowed
}

.bootstrap-select.disabled:focus,
.bootstrap-select>.disabled:focus {
    outline: 0 !important
}

.bootstrap-select.bs-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 0 !important;
    padding: 0 !important
}

.bootstrap-select.bs-container .dropdown-menu {
    z-index: 1060
}

.bootstrap-select .dropdown-toggle .filter-option {
    position: static;
    top: 0;
    left: 0;
    float: left;
    height: 100%;
    width: 100%;
    text-align: left;
    overflow: hidden;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto
}

.bs3.bootstrap-select .dropdown-toggle .filter-option {
    padding-right: inherit
}

.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {
    position: absolute;
    padding-top: inherit;
    padding-bottom: inherit;
    padding-left: inherit;
    float: none
}

.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
    padding-right: inherit
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow: hidden
}

.bootstrap-select .dropdown-toggle .filter-expand {
    width: 0 !important;
    float: left;
    opacity: 0 !important;
    overflow: hidden
}

.bootstrap-select .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -2px;
    vertical-align: middle
}

.bootstrap-select .dropdown-toggle .bs-select-clear-selected {
    position: relative;
    display: block;
    margin-right: 5px;
    text-align: center
}

.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected {
    padding-right: inherit
}

.bootstrap-select .dropdown-toggle .bs-select-clear-selected span {
    position: relative;
    top: -webkit-calc(((-1em / 1.5) + 1ex)/ 2);
    top: calc((-.6666666667em + 1ex)/2);
    pointer-events: none
}

.bs3.bootstrap-select .dropdown-toggle .bs-select-clear-selected span {
    top: auto
}

.bootstrap-select .dropdown-toggle.bs-placeholder .bs-select-clear-selected {
    display: none
}

.input-group .bootstrap-select.form-control .dropdown-toggle {
    border-radius: inherit
}

.bootstrap-select[class*=col-] .dropdown-toggle {
    width: 100%
}

.bootstrap-select .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bootstrap-select .dropdown-menu>.inner:focus {
    outline: 0 !important
}

.bootstrap-select .dropdown-menu.inner {
    position: static;
    float: none;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.bootstrap-select .dropdown-menu li {
    position: relative
}

.bootstrap-select .dropdown-menu li.active small {
    color: rgba(255, 255, 255, .5) !important
}

.bootstrap-select .dropdown-menu li.disabled a {
    cursor: not-allowed
}

.bootstrap-select .dropdown-menu li a {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.bootstrap-select .dropdown-menu li a.opt {
    position: relative;
    padding-left: 2.25em
}

.bootstrap-select .dropdown-menu li a span.check-mark {
    display: none
}

.bootstrap-select .dropdown-menu li a span.text {
    display: inline-block
}

.bootstrap-select .dropdown-menu li small {
    padding-left: .5em
}

.bootstrap-select .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: 96%;
    margin: 0 2%;
    min-height: 26px;
    padding: 3px 5px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    pointer-events: none;
    opacity: .9;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bootstrap-select .dropdown-menu .notify.fadeOut {
    -webkit-animation: .3s linear 750ms forwards bs-notify-fadeOut;
    -o-animation: .3s linear 750ms forwards bs-notify-fadeOut;
    animation: .3s linear 750ms forwards bs-notify-fadeOut
}

.bootstrap-select .no-results {
    padding: 3px;
    background: #f5f5f5;
    margin: 0 5px;
    white-space: nowrap
}

.bootstrap-select.fit-width .dropdown-toggle .filter-option {
    position: static;
    display: inline;
    padding: 0
}

.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,
.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
    display: inline
}

.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {
    content: " "
}

.bootstrap-select.fit-width .dropdown-toggle .caret {
    position: static;
    top: auto;
    margin-top: -1px
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    position: absolute;
    display: inline-block;
    right: 15px;
    top: 5px
}

.bootstrap-select.show-tick .dropdown-menu li a span.text {
    margin-right: 34px
}

.bootstrap-select .bs-ok-default:after {
    content: "";
    display: block;
    width: .5em;
    height: 1em;
    border-style: solid;
    border-width: 0 .26em .26em 0;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,
.bootstrap-select.show-menu-arrow.show>.dropdown-toggle {
    z-index: 1061
}

.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
    content: "";
    border-left: 7px solid rgba(0, 0, 0, 0);
    border-right: 7px solid rgba(0, 0, 0, 0);
    border-bottom: 7px solid rgba(204, 204, 204, .2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none
}

.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
    content: "";
    border-left: 6px solid rgba(0, 0, 0, 0);
    border-right: 6px solid rgba(0, 0, 0, 0);
    border-bottom: 6px solid #fff;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {
    bottom: auto;
    top: -4px;
    border-top: 7px solid rgba(204, 204, 204, .2);
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
    bottom: auto;
    top: -4px;
    border-top: 6px solid #fff;
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {
    right: 12px;
    left: auto
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {
    right: 13px;
    left: auto
}

.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,
.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,
.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,
.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before {
    display: block
}

.bs-actionsbox,
.bs-donebutton,
.bs-searchbox {
    padding: 4px 8px
}

.bs-actionsbox {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bs-actionsbox .btn-group {
    display: block
}

.bs-actionsbox .btn-group button {
    width: 50%
}

.bs-donebutton {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bs-donebutton .btn-group {
    display: block
}

.bs-donebutton .btn-group button {
    width: 100%
}

.bs-searchbox+.bs-actionsbox {
    padding: 0 8px 4px
}

.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none
}

@keyframes plyr-progress {
    to {
        background-position: 25px 0;
        background-position: var(--plyr-progress-loading-size, 25px) 0
    }
}

@keyframes plyr-popup {
    0% {
        opacity: .5;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes plyr-fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.plyr {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    align-items: center;
    direction: ltr;
    display: flex;
    flex-direction: column;
    font-family: inherit;
    font-family: var(--plyr-font-family, inherit);
    font-variant-numeric: tabular-nums;
    font-weight: 400;
    font-weight: var(--plyr-font-weight-regular, 400);
    line-height: 1.7;
    line-height: var(--plyr-line-height, 1.7);
    max-width: 100%;
    min-width: 200px;
    position: relative;
    text-shadow: none;
    transition: box-shadow .3s ease;
    z-index: 0
}

.plyr audio,
.plyr iframe,
.plyr video {
    display: block;
    height: 100%;
    width: 100%
}

.plyr button {
    font: inherit;
    line-height: inherit;
    width: auto
}

.plyr:focus {
    outline: 0
}

.plyr--full-ui {
    box-sizing: border-box
}

.plyr--full-ui *,
.plyr--full-ui :after,
.plyr--full-ui :before {
    box-sizing: inherit
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
    touch-action: manipulation
}

.plyr__badge {
    background: #4a5464;
    background: var(--plyr-badge-background, #4a5464);
    border-radius: 2px;
    border-radius: var(--plyr-badge-border-radius, 2px);
    color: #fff;
    color: var(--plyr-badge-text-color, #fff);
    font-size: 9px;
    font-size: var(--plyr-font-size-badge, 9px);
    line-height: 1;
    padding: 3px 4px
}

.plyr--full-ui ::-webkit-media-text-track-container {
    display: none
}

.plyr__captions {
    animation: plyr-fade-in .3s ease;
    bottom: 0;
    display: none;
    font-size: 13px;
    font-size: var(--plyr-font-size-small, 13px);
    left: 0;
    padding: 10px;
    padding: var(--plyr-control-spacing, 10px);
    position: absolute;
    text-align: center;
    transition: transform .4s ease-in-out;
    width: 100%
}

.plyr__captions span:empty {
    display: none
}

@media(min-width: 480px) {
    .plyr__captions {
        font-size: 15px;
        font-size: var(--plyr-font-size-base, 15px);
        padding: 20px;
        padding: calc(var(--plyr-control-spacing, 10px)*2)
    }
}

@media(min-width: 768px) {
    .plyr__captions {
        font-size: 18px;
        font-size: var(--plyr-font-size-large, 18px)
    }
}

.plyr--captions-active .plyr__captions {
    display: block
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty)~.plyr__captions {
    transform: translateY(-40px);
    transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4))
}

.plyr__caption {
    background: rgba(0, 0, 0, .8);
    background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
    border-radius: 2px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    color: #fff;
    color: var(--plyr-captions-text-color, #fff);
    line-height: 185%;
    padding: .2em .5em;
    white-space: pre-wrap
}

.plyr__caption div {
    display: inline
}

.plyr__control {
    background: 0 0;
    border: 0;
    border-radius: 3px;
    border-radius: var(--plyr-control-radius, 3px);
    color: inherit;
    cursor: pointer;
    flex-shrink: 0;
    overflow: visible;
    padding: 7px;
    padding: calc(var(--plyr-control-spacing, 10px)*.7);
    position: relative;
    transition: all .3s ease
}

.plyr__control svg {
    fill: currentColor;
    display: block;
    height: 18px;
    height: var(--plyr-control-icon-size, 18px);
    pointer-events: none;
    width: 18px;
    width: var(--plyr-control-icon-size, 18px)
}

.plyr__control:focus {
    outline: 0
}

.plyr__control.plyr__tab-focus {
    outline-color: #00b3ff;
    outline-color: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
    outline-offset: 2px;
    outline-style: dotted;
    outline-width: 3px
}

a.plyr__control {
    text-decoration: none
}

.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control.plyr__control--pressed .label--not-pressed,
.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
a.plyr__control:after,
a.plyr__control:before {
    display: none
}

.plyr--full-ui ::-webkit-media-controls {
    display: none
}

.plyr__controls {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    text-align: center
}

.plyr__controls .plyr__progress__container {
    flex: 1;
    min-width: 0
}

.plyr__controls .plyr__controls__item {
    margin-left: 2.5px;
    margin-left: calc(var(--plyr-control-spacing, 10px)/4)
}

.plyr__controls .plyr__controls__item:first-child {
    margin-left: 0;
    margin-right: auto
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
    padding-left: 2.5px;
    padding-left: calc(var(--plyr-control-spacing, 10px)/4)
}

.plyr__controls .plyr__controls__item.plyr__time {
    padding: 0 5px;
    padding: 0 calc(var(--plyr-control-spacing, 10px)/2)
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,
.plyr__controls .plyr__controls__item.plyr__time+.plyr__time,
.plyr__controls .plyr__controls__item.plyr__time:first-child {
    padding-left: 0
}

.plyr [data-plyr=airplay],
.plyr [data-plyr=captions],
.plyr [data-plyr=fullscreen],
.plyr [data-plyr=pip],
.plyr__controls:empty {
    display: none
}

.plyr--airplay-supported [data-plyr=airplay],
.plyr--captions-enabled [data-plyr=captions],
.plyr--fullscreen-enabled [data-plyr=fullscreen],
.plyr--pip-supported [data-plyr=pip] {
    display: inline-block
}

.plyr__menu {
    display: flex;
    position: relative
}

.plyr__menu .plyr__control svg {
    transition: transform .3s ease
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
    transform: rotate(90deg)
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
    display: none
}

.plyr__menu__container {
    animation: plyr-popup .2s ease;
    background: rgba(255, 255, 255, .9);
    background: var(--plyr-menu-background, hsla(0, 0%, 100%, 0.9));
    border-radius: 4px;
    bottom: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
    color: #4a5464;
    color: var(--plyr-menu-color, #4a5464);
    font-size: 15px;
    font-size: var(--plyr-font-size-base, 15px);
    margin-bottom: 10px;
    position: absolute;
    right: -3px;
    text-align: left;
    white-space: nowrap;
    z-index: 3
}

.plyr__menu__container>div {
    overflow: hidden;
    transition: height .35s cubic-bezier(0.4, 0, 0.2, 1), width .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.plyr__menu__container:after {
    border: 4px solid rgba(0, 0, 0, 0);
    border-top: var(--plyr-menu-arrow-size, 4px) solid rgba(255, 255, 255, .9);
    border-width: var(--plyr-menu-arrow-size, 4px);
    content: "";
    height: 0;
    position: absolute;
    right: 14px;
    right: calc(var(--plyr-control-icon-size, 18px)/2 + var(--plyr-control-spacing, 10px)*.7 - var(--plyr-menu-arrow-size, 4px)/2);
    top: 100%;
    width: 0
}

.plyr__menu__container [role=menu] {
    padding: 7px;
    padding: calc(var(--plyr-control-spacing, 10px)*.7)
}

.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio] {
    margin-top: 2px
}

.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child {
    margin-top: 0
}

.plyr__menu__container .plyr__control {
    align-items: center;
    color: #4a5464;
    color: var(--plyr-menu-color, #4a5464);
    display: flex;
    font-size: 13px;
    font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
    padding: 4.66667px 10.5px;
    padding: calc(var(--plyr-control-spacing, 10px)*.7/1.5) calc(var(--plyr-control-spacing, 10px)*.7*1.5);
    -webkit-user-select: none;
    user-select: none;
    width: 100%
}

.plyr__menu__container .plyr__control>span {
    align-items: inherit;
    display: flex;
    width: 100%
}

.plyr__menu__container .plyr__control:after {
    border: 4px solid rgba(0, 0, 0, 0);
    border: var(--plyr-menu-item-arrow-size, 4px) solid rgba(0, 0, 0, 0);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.plyr__menu__container .plyr__control--forward {
    padding-right: 28px;
    padding-right: calc(var(--plyr-control-spacing, 10px)*.7*4)
}

.plyr__menu__container .plyr__control--forward:after {
    border-left-color: #728197;
    border-left-color: var(--plyr-menu-arrow-color, #728197);
    right: 6.5px;
    right: calc(var(--plyr-control-spacing, 10px)*.7*1.5 - var(--plyr-menu-item-arrow-size, 4px))
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus:after,
.plyr__menu__container .plyr__control--forward:hover:after {
    border-left-color: initial
}

.plyr__menu__container .plyr__control--back {
    font-weight: 400;
    font-weight: var(--plyr-font-weight-regular, 400);
    margin: 7px;
    margin: calc(var(--plyr-control-spacing, 10px)*.7);
    margin-bottom: 3.5px;
    margin-bottom: calc(var(--plyr-control-spacing, 10px)*.7/2);
    padding-left: 28px;
    padding-left: calc(var(--plyr-control-spacing, 10px)*.7*4);
    position: relative;
    width: calc(100% - 14px);
    width: calc(100% - var(--plyr-control-spacing, 10px)*.7*2)
}

.plyr__menu__container .plyr__control--back:after {
    border-right-color: #728197;
    border-right-color: var(--plyr-menu-arrow-color, #728197);
    left: 6.5px;
    left: calc(var(--plyr-control-spacing, 10px)*.7*1.5 - var(--plyr-menu-item-arrow-size, 4px))
}

.plyr__menu__container .plyr__control--back:before {
    background: #dcdfe5;
    background: var(--plyr-menu-back-border-color, #dcdfe5);
    box-shadow: 0 1px 0 #fff;
    box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
    content: "";
    height: 1px;
    left: 0;
    margin-top: 3.5px;
    margin-top: calc(var(--plyr-control-spacing, 10px)*.7/2);
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus:after,
.plyr__menu__container .plyr__control--back:hover:after {
    border-right-color: initial
}

.plyr__menu__container .plyr__control[role=menuitemradio] {
    padding-left: 7px;
    padding-left: calc(var(--plyr-control-spacing, 10px)*.7)
}

.plyr__menu__container .plyr__control[role=menuitemradio]:after,
.plyr__menu__container .plyr__control[role=menuitemradio]:before {
    border-radius: 100%
}

.plyr__menu__container .plyr__control[role=menuitemradio]:before {
    background: rgba(0, 0, 0, .1);
    content: "";
    display: block;
    flex-shrink: 0;
    height: 16px;
    margin-right: 10px;
    margin-right: var(--plyr-control-spacing, 10px);
    transition: all .3s ease;
    width: 16px
}

.plyr__menu__container .plyr__control[role=menuitemradio]:after {
    background: #fff;
    border: 0;
    height: 6px;
    left: 12px;
    opacity: 0;
    top: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform .3s ease, opacity .3s ease;
    width: 6px
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before {
    background: #00b3ff;
    background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)))
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:after {
    opacity: 1;
    transform: translateY(-50%) scale(1)
}

.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus:before,
.plyr__menu__container .plyr__control[role=menuitemradio]:hover:before {
    background: rgba(35, 40, 47, .1)
}

.plyr__menu__container .plyr__menu__value {
    align-items: center;
    display: flex;
    margin-left: auto;
    margin-right: -5px;
    margin-right: calc(var(--plyr-control-spacing, 10px)*.7*-1 + 2);
    overflow: hidden;
    padding-left: 24.5px;
    padding-left: calc(var(--plyr-control-spacing, 10px)*.7*3.5);
    pointer-events: none
}

.plyr--full-ui input[type=range] {
    -webkit-appearance: none;
    background: 0 0;
    border: 0;
    border-radius: 26px;
    border-radius: calc(var(--plyr-range-thumb-height, 13px)*2);
    color: #00b3ff;
    color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
    display: block;
    height: 19px;
    height: calc(var(--plyr-range-thumb-active-shadow-width, 3px)*2 + var(--plyr-range-thumb-height, 13px));
    margin: 0;
    min-width: 0;
    padding: 0;
    transition: box-shadow .3s ease;
    width: 100%
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
    background: 0 0;
    background-image: linear-gradient(90deg, currentColor 0, transparent 0);
    background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
    border: 0;
    border-radius: 2.5px;
    border-radius: calc(var(--plyr-range-track-height, 5px)/2);
    height: 5px;
    height: var(--plyr-range-track-height, 5px);
    -webkit-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease;
    -webkit-user-select: none;
    user-select: none
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #fff;
    background: var(--plyr-range-thumb-background, #fff);
    border: 0;
    border-radius: 100%;
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
    height: 13px;
    height: var(--plyr-range-thumb-height, 13px);
    margin-top: -4px;
    margin-top: calc(var(--plyr-range-thumb-height, 13px)/2*-1 - var(--plyr-range-track-height, 5px)/2*-1);
    position: relative;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    width: 13px;
    width: var(--plyr-range-thumb-height, 13px)
}

.plyr--full-ui input[type=range]::-moz-range-track {
    background: 0 0;
    border: 0;
    border-radius: 2.5px;
    border-radius: calc(var(--plyr-range-track-height, 5px)/2);
    height: 5px;
    height: var(--plyr-range-track-height, 5px);
    -moz-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease;
    user-select: none
}

.plyr--full-ui input[type=range]::-moz-range-thumb {
    background: #fff;
    background: var(--plyr-range-thumb-background, #fff);
    border: 0;
    border-radius: 100%;
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
    height: 13px;
    height: var(--plyr-range-thumb-height, 13px);
    position: relative;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    width: 13px;
    width: var(--plyr-range-thumb-height, 13px)
}

.plyr--full-ui input[type=range]::-moz-range-progress {
    background: currentColor;
    border-radius: 2.5px;
    border-radius: calc(var(--plyr-range-track-height, 5px)/2);
    height: 5px;
    height: var(--plyr-range-track-height, 5px)
}

.plyr--full-ui input[type=range]::-ms-track {
    color: rgba(0, 0, 0, 0)
}

.plyr--full-ui input[type=range]::-ms-fill-upper,
.plyr--full-ui input[type=range]::-ms-track {
    background: 0 0;
    border: 0;
    border-radius: 2.5px;
    border-radius: calc(var(--plyr-range-track-height, 5px)/2);
    height: 5px;
    height: var(--plyr-range-track-height, 5px);
    -ms-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease;
    user-select: none
}

.plyr--full-ui input[type=range]::-ms-fill-lower {
    background: 0 0;
    background: currentColor;
    border: 0;
    border-radius: 2.5px;
    border-radius: calc(var(--plyr-range-track-height, 5px)/2);
    height: 5px;
    height: var(--plyr-range-track-height, 5px);
    -ms-transition: box-shadow .3s ease;
    transition: box-shadow .3s ease;
    user-select: none
}

.plyr--full-ui input[type=range]::-ms-thumb {
    background: #fff;
    background: var(--plyr-range-thumb-background, #fff);
    border: 0;
    border-radius: 100%;
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
    height: 13px;
    height: var(--plyr-range-thumb-height, 13px);
    margin-top: 0;
    position: relative;
    -ms-transition: all .2s ease;
    transition: all .2s ease;
    width: 13px;
    width: var(--plyr-range-thumb-height, 13px)
}

.plyr--full-ui input[type=range]::-ms-tooltip {
    display: none
}

.plyr--full-ui input[type=range]:focus {
    outline: 0
}

.plyr--full-ui input[type=range]::-moz-focus-outer {
    border: 0
}

.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
    outline-color: #00b3ff;
    outline-color: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
    outline-offset: 2px;
    outline-style: dotted;
    outline-width: 3px
}

.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
    outline-color: #00b3ff;
    outline-color: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
    outline-offset: 2px;
    outline-style: dotted;
    outline-width: 3px
}

.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
    outline-color: #00b3ff;
    outline-color: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
    outline-offset: 2px;
    outline-style: dotted;
    outline-width: 3px
}

.plyr__poster {
    background-color: #000;
    background-color: var(--plyr-video-background, var(--plyr-video-background, #000));
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity .2s ease;
    width: 100%;
    z-index: 1
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
    opacity: 1
}

.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster {
    display: none
}

.plyr__time {
    font-size: 13px;
    font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px))
}

.plyr__time+.plyr__time:before {
    content: "⁄";
    margin-right: 10px;
    margin-right: var(--plyr-control-spacing, 10px)
}

@media(max-width: 767px) {
    .plyr__time+.plyr__time {
        display: none
    }
}

.plyr__tooltip {
    background: rgba(255, 255, 255, .9);
    background: var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
    border-radius: 3px;
    border-radius: var(--plyr-tooltip-radius, 3px);
    bottom: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
    color: #4a5464;
    color: var(--plyr-tooltip-color, #4a5464);
    font-size: 13px;
    font-size: var(--plyr-font-size-small, 13px);
    font-weight: 400;
    font-weight: var(--plyr-font-weight-regular, 400);
    left: 50%;
    line-height: 1.3;
    margin-bottom: 10px;
    margin-bottom: calc(var(--plyr-control-spacing, 10px)/2*2);
    opacity: 0;
    padding: 5px 7.5px;
    padding: calc(var(--plyr-control-spacing, 10px)/2) calc(var(--plyr-control-spacing, 10px)/2*1.5);
    pointer-events: none;
    position: absolute;
    transform: translate(-50%, 10px) scale(0.8);
    transform-origin: 50% 100%;
    transition: transform .2s ease .1s, opacity .2s ease .1s;
    white-space: nowrap;
    z-index: 2
}

.plyr__tooltip:before {
    border-left: 4px solid rgba(0, 0, 0, 0);
    border-left: var(--plyr-tooltip-arrow-size, 4px) solid rgba(0, 0, 0, 0);
    border-right: 4px solid rgba(0, 0, 0, 0);
    border-right: var(--plyr-tooltip-arrow-size, 4px) solid rgba(0, 0, 0, 0);
    border-top: 4px solid rgba(255, 255, 255, .9);
    border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
    bottom: -4px;
    bottom: calc(var(--plyr-tooltip-arrow-size, 4px)*-1);
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 0;
    z-index: 2
}

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr .plyr__control:hover .plyr__tooltip,
.plyr__tooltip--visible {
    opacity: 1;
    transform: translate(-50%) scale(1)
}

.plyr .plyr__control:hover .plyr__tooltip {
    z-index: 3
}

.plyr__controls>.plyr__control:first-child .plyr__tooltip,
.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip {
    left: 0;
    transform: translateY(10px) scale(0.8);
    transform-origin: 0 100%
}

.plyr__controls>.plyr__control:first-child .plyr__tooltip:before,
.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip:before {
    left: 16px;
    left: calc(var(--plyr-control-icon-size, 18px)/2 + var(--plyr-control-spacing, 10px)*.7)
}

.plyr__controls>.plyr__control:last-child .plyr__tooltip {
    left: auto;
    right: 0;
    transform: translateY(10px) scale(0.8);
    transform-origin: 100% 100%
}

.plyr__controls>.plyr__control:last-child .plyr__tooltip:before {
    left: auto;
    right: 16px;
    right: calc(var(--plyr-control-icon-size, 18px)/2 + var(--plyr-control-spacing, 10px)*.7);
    transform: translateX(50%)
}

.plyr__controls>.plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip--visible,
.plyr__controls>.plyr__control:first-child+.plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__controls>.plyr__control:first-child+.plyr__control:hover .plyr__tooltip,
.plyr__controls>.plyr__control:first-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls>.plyr__control:first-child:hover .plyr__tooltip,
.plyr__controls>.plyr__control:last-child .plyr__tooltip--visible,
.plyr__controls>.plyr__control:last-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls>.plyr__control:last-child:hover .plyr__tooltip {
    transform: translate(0) scale(1)
}

.plyr__progress {
    left: 6.5px;
    left: calc(var(--plyr-range-thumb-height, 13px)*.5);
    margin-right: 13px;
    margin-right: var(--plyr-range-thumb-height, 13px);
    position: relative
}

.plyr__progress input[type=range],
.plyr__progress__buffer {
    margin-left: -6.5px;
    margin-left: calc(var(--plyr-range-thumb-height, 13px)*-0.5);
    margin-right: -6.5px;
    margin-right: calc(var(--plyr-range-thumb-height, 13px)*-0.5);
    width: calc(100% + 13px);
    width: calc(100% + var(--plyr-range-thumb-height, 13px))
}

.plyr__progress input[type=range] {
    position: relative;
    z-index: 2
}

.plyr__progress .plyr__tooltip {
    font-size: 13px;
    font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
    left: 0
}

.plyr__progress__buffer {
    -webkit-appearance: none;
    background: 0 0;
    border: 0;
    border-radius: 100px;
    height: 5px;
    height: var(--plyr-range-track-height, 5px);
    left: 0;
    margin-top: -2.5px;
    margin-top: calc(var(--plyr-range-track-height, 5px)/2*-1);
    padding: 0;
    position: absolute;
    top: 50%
}

.plyr__progress__buffer::-webkit-progress-bar {
    background: 0 0
}

.plyr__progress__buffer::-webkit-progress-value {
    background: currentColor;
    border-radius: 100px;
    min-width: 5px;
    min-width: var(--plyr-range-track-height, 5px);
    -webkit-transition: width .2s ease;
    transition: width .2s ease
}

.plyr__progress__buffer::-moz-progress-bar {
    background: currentColor;
    border-radius: 100px;
    min-width: 5px;
    min-width: var(--plyr-range-track-height, 5px);
    -moz-transition: width .2s ease;
    transition: width .2s ease
}

.plyr__progress__buffer::-ms-fill {
    border-radius: 100px;
    -ms-transition: width .2s ease;
    transition: width .2s ease
}

.plyr--loading .plyr__progress__buffer {
    animation: plyr-progress 1s linear infinite;
    background-image: linear-gradient(-45deg, rgba(35, 40, 47, 0.6) 25%, transparent 0, transparent 50%, rgba(35, 40, 47, 0.6) 0, rgba(35, 40, 47, 0.6) 75%, transparent 0, transparent);
    background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%, transparent 25%, transparent 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%, transparent 75%, transparent);
    background-repeat: repeat-x;
    background-size: 25px 25px;
    background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
    color: rgba(0, 0, 0, 0)
}

.plyr--video.plyr--loading .plyr__progress__buffer {
    background-color: rgba(255, 255, 255, .25);
    background-color: var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25))
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
    background-color: rgba(193, 200, 209, .6);
    background-color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6))
}

.plyr__volume {
    align-items: center;
    display: flex;
    max-width: 110px;
    min-width: 80px;
    position: relative;
    width: 20%
}

.plyr__volume input[type=range] {
    margin-left: 5px;
    margin-left: calc(var(--plyr-control-spacing, 10px)/2);
    margin-right: 5px;
    margin-right: calc(var(--plyr-control-spacing, 10px)/2);
    position: relative;
    z-index: 2
}

.plyr--is-ios .plyr__volume {
    min-width: 0;
    width: auto
}

.plyr--audio {
    display: block
}

.plyr--audio .plyr__controls {
    background: #fff;
    background: var(--plyr-audio-controls-background, #fff);
    border-radius: inherit;
    color: #4a5464;
    color: var(--plyr-audio-control-color, #4a5464);
    padding: 10px;
    padding: var(--plyr-control-spacing, 10px)
}

.plyr--audio .plyr__control.plyr__tab-focus,
.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control[aria-expanded=true] {
    background: #00b3ff;
    background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
    color: #fff;
    color: var(--plyr-audio-control-color-hover, #fff)
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
    background-color: rgba(193, 200, 209, .6);
    background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)))
}

.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
    background-color: rgba(193, 200, 209, .6);
    background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)))
}

.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
    background-color: rgba(193, 200, 209, .6);
    background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)))
}

.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2), 0 0 0 3px rgba(35, 40, 47, .1);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1))
}

.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2), 0 0 0 3px rgba(35, 40, 47, .1);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1))
}

.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2), 0 0 0 3px rgba(35, 40, 47, .1);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1))
}

.plyr--audio .plyr__progress__buffer {
    color: rgba(193, 200, 209, .6);
    color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6))
}

.plyr--video {
    background: #000;
    background: var(--plyr-video-background, var(--plyr-video-background, #000));
    overflow: hidden
}

.plyr--video.plyr--menu-open {
    overflow: visible
}

.plyr__video-wrapper {
    background: #000;
    background: var(--plyr-video-background, var(--plyr-video-background, #000));
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
    aspect-ratio: 16/9
}

@supports not (aspect-ratio: 16/9) {

    .plyr__video-embed,
    .plyr__video-wrapper--fixed-ratio {
        height: 0;
        padding-bottom: 56.25%;
        position: relative
    }
}

.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.plyr--full-ui .plyr__video-embed>.plyr__video-embed__container {
    padding-bottom: 240%;
    position: relative;
    transform: translateY(-38.28125%)
}

.plyr--video .plyr__controls {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    background: var(--plyr-video-controls-background, linear-gradient(transparent, rgba(0, 0, 0, 0.75)));
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    bottom: 0;
    color: #fff;
    color: var(--plyr-video-control-color, #fff);
    left: 0;
    padding: 5px;
    padding: calc(var(--plyr-control-spacing, 10px)/2);
    padding-top: 20px;
    padding-top: calc(var(--plyr-control-spacing, 10px)*2);
    position: absolute;
    right: 0;
    transition: opacity .4s ease-in-out, transform .4s ease-in-out;
    z-index: 3
}

@media(min-width: 480px) {
    .plyr--video .plyr__controls {
        padding: 10px;
        padding: var(--plyr-control-spacing, 10px);
        padding-top: 35px;
        padding-top: calc(var(--plyr-control-spacing, 10px)*3.5)
    }
}

.plyr--video.plyr--hide-controls .plyr__controls {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%)
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
    background: #00b3ff;
    background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
    color: #fff;
    color: var(--plyr-video-control-color-hover, #fff)
}

.plyr__control--overlaid {
    background: #00b3ff;
    background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b3ff)));
    border: 0;
    border-radius: 100%;
    color: #fff;
    color: var(--plyr-video-control-color, #fff);
    display: none;
    left: 50%;
    opacity: .9;
    padding: 15px;
    padding: calc(var(--plyr-control-spacing, 10px)*1.5);
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
    z-index: 2
}

.plyr__control--overlaid svg {
    left: 2px;
    position: relative
}

.plyr__control--overlaid:focus,
.plyr__control--overlaid:hover {
    opacity: 1
}

.plyr--playing .plyr__control--overlaid {
    opacity: 0;
    visibility: hidden
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
    display: block
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
    background-color: rgba(255, 255, 255, .25);
    background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25)))
}

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
    background-color: rgba(255, 255, 255, .25);
    background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25)))
}

.plyr--full-ui.plyr--video input[type=range]::-ms-track {
    background-color: rgba(255, 255, 255, .25);
    background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25)))
}

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2), 0 0 0 3px rgba(255, 255, 255, .5);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5))
}

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2), 0 0 0 3px rgba(255, 255, 255, .5);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5))
}

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
    box-shadow: 0 1px 1px rgba(35, 40, 47, .15), 0 0 0 1px rgba(35, 40, 47, .2), 0 0 0 3px rgba(255, 255, 255, .5);
    box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5))
}

.plyr--video .plyr__progress__buffer {
    color: rgba(255, 255, 255, .25);
    color: var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25))
}

.plyr:fullscreen {
    background: #000;
    border-radius: 0 !important;
    height: 100%;
    margin: 0;
    width: 100%
}

.plyr:fullscreen video {
    height: 100%
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
    display: block
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg {
    display: none
}

.plyr:fullscreen.plyr--hide-controls {
    cursor: none
}

@media(min-width: 1024px) {
    .plyr:-webkit-full-screen .plyr__captions {
        font-size: 21px;
        font-size: var(--plyr-font-size-xlarge, 21px)
    }

    .plyr:fullscreen .plyr__captions {
        font-size: 21px;
        font-size: var(--plyr-font-size-xlarge, 21px)
    }
}

.plyr:-webkit-full-screen {
    background: #000;
    border-radius: 0 !important;
    height: 100%;
    margin: 0;
    width: 100%
}

.plyr:-webkit-full-screen video {
    height: 100%
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
    display: block
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen+svg {
    display: none
}

.plyr:-webkit-full-screen.plyr--hide-controls {
    cursor: none
}

@media(min-width: 1024px) {
    .plyr:-webkit-full-screen .plyr__captions {
        font-size: 21px;
        font-size: var(--plyr-font-size-xlarge, 21px)
    }
}

.plyr:-moz-full-screen {
    background: #000;
    border-radius: 0 !important;
    height: 100%;
    margin: 0;
    width: 100%
}

.plyr:-moz-full-screen video {
    height: 100%
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
    display: block
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen+svg {
    display: none
}

.plyr:-moz-full-screen.plyr--hide-controls {
    cursor: none
}

@media(min-width: 1024px) {
    .plyr:-moz-full-screen .plyr__captions {
        font-size: 21px;
        font-size: var(--plyr-font-size-xlarge, 21px)
    }
}

.plyr:-ms-fullscreen {
    background: #000;
    border-radius: 0 !important;
    height: 100%;
    margin: 0;
    width: 100%
}

.plyr:-ms-fullscreen video {
    height: 100%
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
    display: block
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen+svg {
    display: none
}

.plyr:-ms-fullscreen.plyr--hide-controls {
    cursor: none
}

@media(min-width: 1024px) {
    .plyr:-ms-fullscreen .plyr__captions {
        font-size: 21px;
        font-size: var(--plyr-font-size-xlarge, 21px)
    }
}

.plyr--fullscreen-fallback {
    background: #000;
    border-radius: 0 !important;
    bottom: 0;
    display: block;
    height: 100%;
    left: 0;
    margin: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 10000000
}

.plyr--fullscreen-fallback video {
    height: 100%
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
    display: block
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen+svg {
    display: none
}

.plyr--fullscreen-fallback.plyr--hide-controls {
    cursor: none
}

@media(min-width: 1024px) {
    .plyr--fullscreen-fallback .plyr__captions {
        font-size: 21px;
        font-size: var(--plyr-font-size-xlarge, 21px)
    }
}

.plyr__ads {
    border-radius: inherit;
    bottom: 0;
    cursor: pointer;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

.plyr__ads>div,
.plyr__ads>div iframe {
    height: 100%;
    position: absolute;
    width: 100%
}

.plyr__ads:after {
    background: #23282f;
    border-radius: 2px;
    bottom: 10px;
    bottom: var(--plyr-control-spacing, 10px);
    color: #fff;
    content: attr(data-badge-text);
    font-size: 11px;
    padding: 2px 6px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    right: var(--plyr-control-spacing, 10px);
    z-index: 3
}

.plyr__ads:after:empty {
    display: none
}

.plyr__cues {
    background: currentColor;
    display: block;
    height: 5px;
    height: var(--plyr-range-track-height, 5px);
    left: 0;
    margin: -var(--plyr-range-track-height, 5px)/2 0 0;
    opacity: .8;
    position: absolute;
    top: 50%;
    width: 3px;
    z-index: 3
}

.plyr__preview-thumb {
    background-color: rgba(255, 255, 255, .9);
    background-color: var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
    border-radius: 3px;
    bottom: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
    margin-bottom: 10px;
    margin-bottom: calc(var(--plyr-control-spacing, 10px)/2*2);
    opacity: 0;
    padding: 3px;
    padding: var(--plyr-tooltip-radius, 3px);
    pointer-events: none;
    position: absolute;
    transform: translateY(10px) scale(0.8);
    transform-origin: 50% 100%;
    transition: transform .2s ease .1s, opacity .2s ease .1s;
    z-index: 2
}

.plyr__preview-thumb--is-shown {
    opacity: 1;
    transform: translate(0) scale(1)
}

.plyr__preview-thumb:before {
    border-left: 4px solid rgba(0, 0, 0, 0);
    border-left: var(--plyr-tooltip-arrow-size, 4px) solid rgba(0, 0, 0, 0);
    border-right: 4px solid rgba(0, 0, 0, 0);
    border-right: var(--plyr-tooltip-arrow-size, 4px) solid rgba(0, 0, 0, 0);
    border-top: 4px solid rgba(255, 255, 255, .9);
    border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
    bottom: -4px;
    bottom: calc(var(--plyr-tooltip-arrow-size, 4px)*-1);
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 0;
    z-index: 2
}

.plyr__preview-thumb__image-container {
    background: #c1c8d1;
    border-radius: 2px;
    border-radius: calc(var(--plyr-tooltip-radius, 3px) - 1px);
    overflow: hidden;
    position: relative;
    z-index: 0
}

.plyr__preview-thumb__image-container img {
    height: 100%;
    left: 0;
    max-height: none;
    max-width: none;
    position: absolute;
    top: 0;
    width: 100%
}

.plyr__preview-thumb__time-container {
    bottom: 6px;
    left: 0;
    position: absolute;
    right: 0;
    white-space: nowrap;
    z-index: 3
}

.plyr__preview-thumb__time-container span {
    background-color: rgba(0, 0, 0, .55);
    border-radius: 2px;
    border-radius: calc(var(--plyr-tooltip-radius, 3px) - 1px);
    color: #fff;
    font-size: 13px;
    font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
    padding: 3px 6px
}

.plyr__preview-scrubbing {
    bottom: 0;
    filter: blur(1px);
    height: 100%;
    left: 0;
    margin: auto;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .3s ease;
    width: 100%;
    z-index: 1
}

.plyr__preview-scrubbing--is-shown {
    opacity: 1
}

.plyr__preview-scrubbing img {
    height: 100%;
    left: 0;
    max-height: none;
    max-width: none;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: 0;
    width: 100%
}

.plyr--no-transition {
    transition: none !important
}

.plyr__sr-only {
    clip: rect(1px, 1px, 1px, 1px);
    border: 0 !important;
    height: 1px !important;
    overflow: hidden;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important
}

.plyr [hidden] {
    display: none !important
}

@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper,
swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide,
swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-centered>.swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: rgba(0, 0, 0, 0)
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size)/44*27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size)/2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
    display: none !important
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0px, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    -ms-touch-action: none;
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1))
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2*var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical>.swiper-scrollbar {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2*var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move;
    touch-action: none
}

.swiper .swiper-notification,
swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-grid>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next+.swiper-slide,
.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px)
}

.swiper-flip {
    overflow: visible
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height
}

.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden
}

[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
    transition-duration: 50ms
}

[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
    transition-delay: 50ms
}

[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
    transition-duration: .1s
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
    transition-delay: .1s
}

[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
    transition-duration: .15s
}

[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
    transition-delay: .15s
}

[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
    transition-duration: .2s
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
    transition-delay: .2s
}

[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
    transition-duration: .25s
}

[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
    transition-delay: .25s
}

[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
    transition-duration: .3s
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
    transition-delay: .3s
}

[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
    transition-duration: .35s
}

[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
    transition-delay: .35s
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
    transition-duration: .4s
}

[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
    transition-delay: .4s
}

[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
    transition-duration: .45s
}

[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
    transition-delay: .45s
}

[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
    transition-duration: .5s
}

[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
    transition-delay: .5s
}

[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
    transition-duration: .55s
}

[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
    transition-delay: .55s
}

[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
    transition-duration: .6s
}

[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
    transition-delay: .6s
}

[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
    transition-duration: .65s
}

[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
    transition-delay: .65s
}

[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
    transition-duration: .7s
}

[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
    transition-delay: .7s
}

[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
    transition-duration: .75s
}

[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
    transition-delay: .75s
}

[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
    transition-duration: .8s
}

[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
    transition-delay: .8s
}

[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
    transition-duration: .85s
}

[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
    transition-delay: .85s
}

[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
    transition-duration: .9s
}

[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
    transition-delay: .9s
}

[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
    transition-duration: .95s
}

[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
    transition-delay: .95s
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
    transition-duration: 1s
}

[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
    transition-delay: 1s
}

[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
    transition-duration: 1.05s
}

[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
    transition-delay: 1.05s
}

[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
    transition-duration: 1.1s
}

[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
    transition-delay: 1.1s
}

[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
    transition-duration: 1.15s
}

[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
    transition-delay: 1.15s
}

[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
    transition-duration: 1.2s
}

[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
    transition-delay: 1.2s
}

[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
    transition-duration: 1.25s
}

[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
    transition-delay: 1.25s
}

[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
    transition-duration: 1.3s
}

[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
    transition-delay: 1.3s
}

[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
    transition-duration: 1.35s
}

[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
    transition-delay: 1.35s
}

[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
    transition-duration: 1.4s
}

[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
    transition-delay: 1.4s
}

[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
    transition-duration: 1.45s
}

[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
    transition-delay: 1.45s
}

[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
    transition-duration: 1.5s
}

[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
    transition-delay: 1.5s
}

[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
    transition-duration: 1.55s
}

[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
    transition-delay: 1.55s
}

[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
    transition-duration: 1.6s
}

[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
    transition-delay: 1.6s
}

[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
    transition-duration: 1.65s
}

[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
    transition-delay: 1.65s
}

[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
    transition-duration: 1.7s
}

[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
    transition-delay: 1.7s
}

[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
    transition-duration: 1.75s
}

[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
    transition-delay: 1.75s
}

[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
    transition-duration: 1.8s
}

[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
    transition-delay: 1.8s
}

[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
    transition-duration: 1.85s
}

[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
    transition-delay: 1.85s
}

[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
    transition-duration: 1.9s
}

[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
    transition-delay: 1.9s
}

[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
    transition-duration: 1.95s
}

[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
    transition-delay: 1.95s
}

[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
    transition-duration: 2s
}

[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
    transition-delay: 2s
}

[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
    transition-duration: 2.05s
}

[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
    transition-delay: 2.05s
}

[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
    transition-duration: 2.1s
}

[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
    transition-delay: 2.1s
}

[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
    transition-duration: 2.15s
}

[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
    transition-delay: 2.15s
}

[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
    transition-duration: 2.2s
}

[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
    transition-delay: 2.2s
}

[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
    transition-duration: 2.25s
}

[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
    transition-delay: 2.25s
}

[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
    transition-duration: 2.3s
}

[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
    transition-delay: 2.3s
}

[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
    transition-duration: 2.35s
}

[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
    transition-delay: 2.35s
}

[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
    transition-duration: 2.4s
}

[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
    transition-delay: 2.4s
}

[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
    transition-duration: 2.45s
}

[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
    transition-delay: 2.45s
}

[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
    transition-duration: 2.5s
}

[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
    transition-delay: 2.5s
}

[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
    transition-duration: 2.55s
}

[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
    transition-delay: 2.55s
}

[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
    transition-duration: 2.6s
}

[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
    transition-delay: 2.6s
}

[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
    transition-duration: 2.65s
}

[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
    transition-delay: 2.65s
}

[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
    transition-duration: 2.7s
}

[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
    transition-delay: 2.7s
}

[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
    transition-duration: 2.75s
}

[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
    transition-delay: 2.75s
}

[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
    transition-duration: 2.8s
}

[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
    transition-delay: 2.8s
}

[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
    transition-duration: 2.85s
}

[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
    transition-delay: 2.85s
}

[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
    transition-duration: 2.9s
}

[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
    transition-delay: 2.9s
}

[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
    transition-duration: 2.95s
}

[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
    transition-delay: 2.95s
}

[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
    transition-duration: 3s
}

[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
    transition-delay: 3s
}

[data-aos][data-aos][data-aos-easing=linear],
body[data-aos-easing=linear] [data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75)
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease
}

[data-aos][data-aos][data-aos-easing=ease-in],
body[data-aos-easing=ease-in] [data-aos] {
    transition-timing-function: ease-in
}

[data-aos][data-aos][data-aos-easing=ease-out],
body[data-aos-easing=ease-out] [data-aos] {
    transition-timing-function: ease-out
}

[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
    transition-timing-function: ease-in-out
}

[data-aos][data-aos][data-aos-easing=ease-in-back],
body[data-aos-easing=ease-in-back] [data-aos] {
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045)
}

[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back],
body[data-aos-easing=ease-in-out-back] [data-aos] {
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

[data-aos][data-aos][data-aos-easing=ease-in-sine],
body[data-aos-easing=ease-in-sine] [data-aos] {
    transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715)
}

[data-aos][data-aos][data-aos-easing=ease-out-sine],
body[data-aos-easing=ease-out-sine] [data-aos] {
    transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine],
body[data-aos-easing=ease-in-out-sine] [data-aos] {
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

[data-aos][data-aos][data-aos-easing=ease-in-quad],
body[data-aos-easing=ease-in-quad] [data-aos] {
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53)
}

[data-aos][data-aos][data-aos-easing=ease-out-quad],
body[data-aos-easing=ease-out-quad] [data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad],
body[data-aos-easing=ease-in-out-quad] [data-aos] {
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic],
body[data-aos-easing=ease-in-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53)
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic],
body[data-aos-easing=ease-out-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],
body[data-aos-easing=ease-in-out-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

[data-aos][data-aos][data-aos-easing=ease-in-quart],
body[data-aos-easing=ease-in-quart] [data-aos] {
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53)
}

[data-aos][data-aos][data-aos-easing=ease-out-quart],
body[data-aos-easing=ease-out-quart] [data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart],
body[data-aos-easing=ease-in-out-quart] [data-aos] {
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform
}

[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0)
}

[data-aos=fade-up] {
    transform: translate3d(0, 100px, 0)
}

[data-aos=fade-down] {
    transform: translate3d(0, -100px, 0)
}

[data-aos=fade-right] {
    transform: translate3d(-100px, 0, 0)
}

[data-aos=fade-left] {
    transform: translate3d(100px, 0, 0)
}

[data-aos=fade-up-right] {
    transform: translate3d(-100px, 100px, 0)
}

[data-aos=fade-up-left] {
    transform: translate3d(100px, 100px, 0)
}

[data-aos=fade-down-right] {
    transform: translate3d(-100px, -100px, 0)
}

[data-aos=fade-down-left] {
    transform: translate3d(100px, -100px, 0)
}

[data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity, transform
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    transform: translateZ(0) scale(1)
}

[data-aos=zoom-in] {
    transform: scale(0.6)
}

[data-aos=zoom-in-up] {
    transform: translate3d(0, 100px, 0) scale(0.6)
}

[data-aos=zoom-in-down] {
    transform: translate3d(0, -100px, 0) scale(0.6)
}

[data-aos=zoom-in-right] {
    transform: translate3d(-100px, 0, 0) scale(0.6)
}

[data-aos=zoom-in-left] {
    transform: translate3d(100px, 0, 0) scale(0.6)
}

[data-aos=zoom-out] {
    transform: scale(1.2)
}

[data-aos=zoom-out-up] {
    transform: translate3d(0, 100px, 0) scale(1.2)
}

[data-aos=zoom-out-down] {
    transform: translate3d(0, -100px, 0) scale(1.2)
}

[data-aos=zoom-out-right] {
    transform: translate3d(-100px, 0, 0) scale(1.2)
}

[data-aos=zoom-out-left] {
    transform: translate3d(100px, 0, 0) scale(1.2)
}

[data-aos^=slide][data-aos^=slide] {
    transition-property: transform
}

[data-aos^=slide][data-aos^=slide].aos-animate {
    transform: translateZ(0)
}

[data-aos=slide-up] {
    transform: translate3d(0, 100%, 0)
}

[data-aos=slide-down] {
    transform: translate3d(0, -100%, 0)
}

[data-aos=slide-right] {
    transform: translate3d(-100%, 0, 0)
}

[data-aos=slide-left] {
    transform: translate3d(100%, 0, 0)
}

[data-aos^=flip][data-aos^=flip] {
    backface-visibility: hidden;
    transition-property: transform
}

[data-aos=flip-left] {
    transform: perspective(2500px) rotateY(-100deg)
}

[data-aos=flip-left].aos-animate {
    transform: perspective(2500px) rotateY(0)
}

[data-aos=flip-right] {
    transform: perspective(2500px) rotateY(100deg)
}

[data-aos=flip-right].aos-animate {
    transform: perspective(2500px) rotateY(0)
}

[data-aos=flip-up] {
    transform: perspective(2500px) rotateX(-100deg)
}

[data-aos=flip-up].aos-animate {
    transform: perspective(2500px) rotateX(0)
}

[data-aos=flip-down] {
    transform: perspective(2500px) rotateX(100deg)
}

[data-aos=flip-down].aos-animate {
    transform: perspective(2500px) rotateX(0)
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container .swiper-slide-visible {
    z-index: 2
}

.swiper-container .swiper-slide-visible.swiper-slide-active {
    z-index: 2
}

.vsm* .plyr__poster {
    background-size: cover
}

.vsm* .plyr__control--overlaid {
    background-color: rgba(0, 0, 0, .2);
    padding: 1.25rem
}

@media(min-width: 1024px) {
    .vsm* .plyr__control--overlaid {
        padding: 3.125rem
    }
}

.vsm* .plyr__control--overlaid svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: rgba(var(--vsm-primary-colour), 1)
}

@media(min-width: 1024px) {
    .vsm* .plyr__control--overlaid svg {
        width: 3.125rem;
        height: 3.125rem
    }
}

.vsm* .plyr__control--overlaid:hover svg {
    fill: rgba(var(--vsm-white), 1)
}

.vsm* .plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before {
    background-color: rgba(var(--vsm-primary-colour), 1)
}

.vsm* .plyr--video .plyr__control.plyr__tab-focus,
.vsm* .plyr--video .plyr__control:hover,
.vsm* .plyr--video .plyr__control[aria-expanded=true] {
    background-color: rgba(var(--vsm-primary-colour), 1)
}

.vsm* .plyr--full-ui input[type=range] {
    color: rgba(var(--vsm-primary-colour), 1)
}

.element .error {
    color: red;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 300
}

.element label {
    font-size: 14px;
    font-size: .875rem;
    font-weight: 500;
    margin-bottom: .5rem
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(var(--vsm-primary-colour), 0);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(var(--vsm-primary-colour), 0.1)
}

.element.checkbox .error {
    color: red;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 300
}

.element.checkbox label {
    font-size: 12px;
    font-size: .75rem;
    font-weight: 300;
    margin-bottom: .5rem
}

.element.radio .error {
    color: red;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 300
}

.element.radio label {
    font-size: 12px;
    font-size: .75rem;
    font-weight: 300;
    margin-bottom: .5rem
}

[class*=icheck-]>label {
    padding-left: 1.813rem !important;
    min-height: 1.375rem;
    line-height: 1.375rem
}

[class*=icheck-]>input:first-child+input[type=hidden]+label::before,
[class*=icheck-]>input:first-child+label::before {
    width: 1.375rem;
    height: 1.375rem;
    margin-left: -1.813rem
}

[class*=icheck-]>input:first-child:checked+input[type=hidden]+label::after,
[class*=icheck-]>input:first-child:checked+label::after {
    width: .438rem;
    height: .625rem;
    border-width: .125rem;
    transform: translate(0.484rem, 0.281rem) rotate(45deg)
}

[class*=icheck-]>label.hidden {
    color: rgba(0, 0, 0, 0);
    font-size: 0;
    -webkit-text-size-adjust: none
}

[class*=icheck-]>input:first-child+input[type=hidden]+label::before,
[class*=icheck-]>input:first-child+label::before {
    border: .063rem solid rgba(194, 194, 194, .8);
    background-color: rgba(var(--vsm-white), 1)
}

.icheck-primary>input:first-child:checked+input[type=hidden]+label::before,
.icheck-primary>input:first-child:checked+label::before {
    background-color: rgba(var(--vsm-primary-colour), 0.2);
    border: .063rem solid rgba(var(--vsm-primary-colour), 0.1)
}

.icheck-primary>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-primary>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border: .063rem solid rgba(var(--vsm-primary-colour), 0.5)
}

[class*=icheck-]>input:first-child:checked+input[type=hidden]+label::after,
[class*=icheck-]>input:first-child:checked+label::after {
    border-color: rgba(var(--vsm-primary-colour), 1);
    border-width: .188rem
}

[class*=icheck-]>input[type=radio]:first-child:checked+label::after {
    border-color: rgba(var(--vsm-primary-colour), 1);
    border-width: 0;
    background: rgba(var(--vsm-primary-colour), 1);
    border-radius: 100em;
    width: 1rem;
    height: 1rem;
    top: .189rem;
    left: .189rem;
    transform: translate(0px, 0px) rotate(0deg)
}

.element.text {
    margin-bottom: .5rem
}

.element.text input {
    border-radius: 0;
    border: .063rem solid rgba(0, 0, 0, .1);
    background: #fff;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    padding: .625rem
}

.element.text input:focus {
    outline: none
}

.element.text input::-webkit-input-placeholder {
    color: rgba(var(--vsm-body-copy-colour), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.element.text input:-moz-placeholder {
    color: rgba(var(--vsm-body-copy-colour), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.element.text input:-ms-input-placeholder {
    color: rgba(var(--vsm-body-copy-colour), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.element.text input::placeholder {
    color: rgba(var(--vsm-body-copy-colour), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

input::-webkit-calendar-picker-indicator {
    opacity: 0
}

input::-webkit-calendar-picker-indicator {
    display: none
}

.element.select {
    margin-bottom: .5rem;
    position: relative
}

.element.select .field {
    position: relative
}

.element.select .field:before {
    pointer-events: none;
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-primary-colour), 1);
    position: absolute;
    top: .938rem;
    right: .938rem
}

.element.select select {
    background-image: none;
    border: .063rem solid rgba(0, 0, 0, .1);
    border-radius: 0;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    padding: .625rem
}

.element.select select:focus {
    outline: none
}

.element.select .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%
}

.element.select .bootstrap-select>.dropdown-toggle {
    background: rgba(0, 0, 0, 0);
    border: .063rem solid rgba(0, 0, 0, .1);
    border-radius: 0;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    padding: .625rem 2.5rem .625rem .625rem
}

.element.select .bootstrap-select>.dropdown-toggle:after {
    display: none
}

.element.select .bootstrap-select .dropdown-toggle:focus,
.element.select .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: thin dotted rgba(0, 0, 0, 0) !important;
    outline: 0px 0 rgba(0, 0, 0, 0) !important;
    outline-offset: 0
}

.element.select .btn-check:focus+.btn-light,
.element.select .btn-light:focus {
    color: rgba(var(--vsm-black), 1);
    background: rgba(0, 0, 0, 0);
    border: .063rem solid rgba(0, 0, 0, .1);
    box-shadow: 0 0 0 .25rem rgba(var(--vsm-primary-colour), 0.1)
}

.element.select .bootstrap-select>.dropdown-toggle.bs-placeholder,
.element.select .bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.element.select .bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.element.select .bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: rgba(var(--vsm-body-copy-colour), 0.7)
}

.element.select .bootstrap-select>.dropdown-toggle,
.element.select .bootstrap-select>.dropdown-toggle:active,
.element.select .bootstrap-select>.dropdown-toggle:focus,
.element.select .bootstrap-select>.dropdown-toggle:hover {
    color: rgba(var(--vsm-black), 1)
}

.element.select .bootstrap-select .bs-ok-default:after {
    content: "";
    margin-right: .625rem;
    width: .438rem;
    height: .625rem;
    border: 2px solid rgba(var(--vsm-primary-colour), 1);
    border-left: none;
    border-top: none;
    transform: translate(7.75px, 4.5px) rotate(45deg)
}

.element.select .bootstrap-select .dropdown-item:active {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: rgba(var(--vsm-primary-colour), 0.3)
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: rgba(var(--vsm-primary-colour), 1)
}

select:required:invalid {
    color: rgba(var(--vsm-body-copy-colour), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

select option {
    background-color: #fff !important;
    color: #000 !important
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.286em + .75rem + 2px);
    margin: 0;
    overflow: hidden;
    opacity: 0
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(2.286em + .75rem + 2px);
    padding: .59rem .75rem;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: .063rem solid rgba(0, 0, 0, .1);
    border-radius: 0;
    width: 100%
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.custom-file {
    position: relative
}

.custom-file input {
    position: absolute
}

.custom-file-label {
    position: relative
}

.custom-file-label label {
    position: relative
}

.custom-file-label::after {
    position: absolute;
    top: .938rem;
    right: .625rem;
    bottom: 0;
    z-index: 3;
    display: block;
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-primary-colour), 1)
}

.element.textarea {
    margin-bottom: .5rem
}

.element.textarea textarea {
    border-radius: 0;
    border: .063rem solid rgba(0, 0, 0, .1);
    background: #fff;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    padding: .625rem
}

.element.textarea textarea:focus {
    outline: none
}

.element.textarea textarea::-webkit-input-placeholder {
    color: rgba(var(--vsm-body-copy-colour), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.element.textarea textarea:-moz-placeholder {
    color: rgba(var(--vsm-body-copy-colour), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.element.textarea textarea:-ms-input-placeholder {
    color: rgba(var(--vsm-body-copy-colour), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.element.textarea textarea::placeholder {
    color: rgba(var(--vsm-body-copy-colour), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.hidden-fields {
    background: rgba(var(--vsm-body-copy-colour), 0.2);
    padding: 1.875rem
}

.vsm-hero-slider .swiper-container.disabled {
    cursor: auto;
    pointer-events: none !important;
    transition-duration: 0ms !important
}

.vsm-hero-slider .swiper-wrapper.disabled {
    cursor: auto;
    transform: translate3d(0px, 0, 0) !important;
    pointer-events: none !important;
    transition-duration: 0ms !important
}

.vsm-hero-slider .swiper-wrapper.disabled .swiper-slide {
    cursor: auto;
    transition-duration: 0ms !important
}

.vsm-hero-slider .swiper-pagination.disabled {
    display: none !important
}

@media(min-width: 768px) {
    .outer-double-slides .swiper-container.disabled {
        pointer-events: none !important;
        transition-duration: 0ms !important
    }

    .outer-double-slides .swiper-wrapper.disabled {
        transform: translate3d(0px, 0, 0) !important;
        pointer-events: none !important;
        transition-duration: 0ms !important
    }

    .outer-double-slides .swiper-wrapper.disabled .swiper-slide {
        transition-duration: 0ms !important
    }

    .outer-double-slides .swiper-pagination.disabled {
        display: none !important
    }
}

@media(min-width: 768px) {
    .outer-triple-slides .swiper-container.disabled {
        pointer-events: none !important;
        transition-duration: 0ms !important
    }

    .outer-triple-slides .swiper-wrapper.disabled {
        transform: translate3d(0px, 0, 0) !important;
        pointer-events: none !important;
        transition-duration: 0ms !important
    }

    .outer-triple-slides .swiper-wrapper.disabled .swiper-slide {
        transition-duration: 0ms !important
    }

    .outer-triple-slides .swiper-pagination.disabled {
        display: none !important
    }
}

.author .media {
    border-radius: 100em;
    overflow: hidden;
    position: relative
}

.author .media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden
}

.author .media[data-initials]:before {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    opacity: 1;
    content: attr(data-initials);
    display: inline-block;
    font-weight: 600;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0;
    text-align: center
}

.media {
    position: relative
}

.media span.media-info {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #f7f7f7;
    color: rgba(var(--vsm-black), 1);
    font-size: 12px;
    font-size: .75rem;
    padding: .375rem .75rem
}

.media span.media-info i {
    color: rgba(var(--vsm-primary-colour), 1);
    font-size: 10px;
    font-size: .625rem
}

header {
    position: sticky;
    top: 0;
    z-index: 99
}

.vsm-top {
    position: sticky;
    width: 100%;
    top: 0;
    transform: translateY(0);
    transition: top 800ms ease;
    transition: transform 800ms ease;
    z-index: 99
}

.vsm-top.hidden {
    transform: translateY(-100%)
}

.vsm-top.switch-fixed {
    position: fixed
}

.vsm-top.switch-fixed .navigation .primary-nav ul li a {
    color: rgba(var(--vsm-white), 1)
}

.vsm-top.switch-fixed .navigation .primary-nav ul li.dropdown>a:after {
    color: rgba(var(--vsm-white), 1)
}

.vsm-top.switch-fixed .navigation .primary-nav ul li.meganav>a:after {
    color: rgba(var(--vsm-white), 1)
}

.vsm-top.switch-fixed .navigation .more-nav ul li a {
    color: rgba(var(--vsm-white), 1)
}

.vsm-top.switch-fixed .navigation .more-nav ul li .burger-menu span {
    background: rgba(var(--vsm-white), 1)
}

.vsm-top.switch-fixed .navigation .more-nav ul li .burger-menu span::before,
.vsm-top.switch-fixed .navigation .more-nav ul li .burger-menu span:after {
    background: rgba(var(--vsm-white), 1)
}

.vsm-top.switch-fixed .navigation .brand .logo-1 {
    display: block
}

.vsm-top.switch-fixed .navigation .brand .logo-2 {
    display: none
}

@media(min-width: 1024px) {
    .vsm-top {
        background: rgba(0, 0, 0, 0);
        box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0)
    }
}

.vsm-top.fixed {
    background: rgba(var(--vsm-white), 1);
    box-shadow: 0 0px 1.875rem 0 rgba(0, 0, 0, .05);
    position: fixed
}

.vsm-top.fixed .navigation .primary-nav ul li a {
    color: rgba(var(--vsm-black), 1)
}

.vsm-top.fixed .navigation .primary-nav ul li.dropdown>a:after {
    color: rgba(var(--vsm-black), 1)
}

.vsm-top.fixed .navigation .primary-nav ul li.meganav>a:after {
    color: rgba(var(--vsm-black), 1)
}

.vsm-top.fixed .navigation .more-nav ul li a {
    color: rgba(var(--vsm-black), 1)
}

.vsm-top.fixed .navigation .more-nav ul li .burger-menu span {
    background: rgba(var(--vsm-black), 1)
}

.vsm-top.fixed .navigation .more-nav ul li .burger-menu span:before,
.vsm-top.fixed .navigation .more-nav ul li .burger-menu span:after {
    background: rgba(var(--vsm-black), 1)
}

.vsm-top.fixed .navigation .brand .logo-1 {
    display: none
}

.vsm-top.fixed .navigation .brand .logo-2 {
    display: block
}

@media(min-width: 1024px) {
    .vsm-top.fixed .navigation .brand .logo-1 {
        display: none
    }

    .vsm-top.fixed .navigation .brand .logo-2 {
        display: block
    }
}

.vsm-top .signed-in-bar {
    background: rgba(var(--vsm-black), 1);
    display: flex;
    padding: .625rem 0
}

.vsm-top .signed-in-bar .signed-as {
    font-size: 14px;
    font-size: .875rem
}

.vsm-top .signed-in-bar .signed-as a:hover {
    color: rgba(var(--vsm-white), 1)
}

.vsm-top .signed-in-bar .media {
    margin: 0 .625rem;
    width: 2.813rem;
    height: 2.813rem;
    overflow: hidden;
    border-radius: 100em;
    position: relative
}

.vsm-top .signed-in-bar .media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden
}

.vsm-top .signed-in-bar .media[data-initials]:before {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    opacity: 1;
    content: attr(data-initials);
    display: inline-block;
    font-weight: 600;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0;
    width: 2.813rem;
    height: 2.813rem;
    line-height: 2.813rem;
    text-align: center;
    font-size: 12px;
    font-size: .75rem
}

.vsm-top .signed-in-bar .sign-out-btn {
    width: 2.813rem;
    height: 2.813rem;
    overflow: hidden;
    border-radius: 100em;
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none
}

.vsm-top .signed-in-bar .sign-out-btn i {
    color: rgba(var(--vsm-white), 1)
}

.vsm-top .navigation {
    padding: .938rem 0
}

.vsm-top .navigation>.container>.row>.col-auto {
    z-index: 1
}

.vsm-top .navigation .brand .logo-1 {
    display: none
}

.vsm-top .navigation .brand .logo-2 {
    display: block
}

@media(min-width: 1024px) {
    .vsm-top .navigation .brand .logo-1 {
        display: none
    }

    .vsm-top .navigation .brand .logo-2 {
        display: block
    }
}

.vsm-top .navigation .nowrap {
    flex-wrap: nowrap
}

.vsm-top .navigation .d-flex {
    flex: 1 0 auto;
    width: auto;
    justify-content: flex-end
}

@media(min-width: 768px) {
    .vsm-top .navigation .d-flex {
        width: auto
    }
}

@media(min-width: 1024px) {
    .vsm-top .navigation .d-flex {
        justify-content: space-between
    }
}

.vsm-top .navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex
}

.vsm-top .navigation .brand {
    display: block
}

.vsm-top .navigation .brand img {
    height: 1.563rem
}

@media(min-width: 1024px) {
    .vsm-top .navigation .brand img {
        height: 3.125rem
    }
}

.vsm-top .navigation .primary-nav {
    display: flex;
    align-items: center;
    flex: 1 0 auto
}

@media(min-width: 768px) {
    .vsm-top .navigation .primary-nav {
        width: auto
    }
}

.vsm-top .navigation .primary-nav nav {
    display: none
}

@media(min-width: 1024px) {
    .vsm-top .navigation .primary-nav nav {
        display: flex;
        flex: 1 0 auto;
        width: auto
    }
}

.vsm-top .navigation .primary-nav ul li a {
    display: block;
    padding: .875rem .938rem;
    text-decoration: none;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 500;
    color: rgba(var(--vsm-black), 1)
}

.vsm-top .navigation .primary-nav ul li a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation .primary-nav ul li.dropdown>a {
    position: relative
}

.vsm-top .navigation .primary-nav ul li.dropdown>a:after {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-black), 1);
    margin-left: .313rem;
    position: relative;
    top: -2px
}

.vsm-top .navigation .primary-nav ul li.dropdown:hover {
    background: rgba(var(--vsm-white), 1);
    box-shadow: 0 -0.625rem 1.875rem 0 rgba(0, 0, 0, .05);
    border-top-left-radius: .313rem;
    border-top-right-radius: .313rem
}

.vsm-top .navigation .primary-nav ul li.dropdown:hover>a {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation .primary-nav ul li.dropdown:hover>a:after {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation .primary-nav ul li.dropdown:hover ul {
    display: block;
    background: rgba(var(--vsm-white), 1);
    box-shadow: 0 1.875rem 1.875rem 0 rgba(0, 0, 0, .05);
    border-radius: .313rem;
    border-top-left-radius: 0px
}

.vsm-top .navigation .primary-nav ul li.dropdown:hover ul li a {
    padding: .625rem 1.25rem;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 500;
    color: rgba(var(--vsm-black), 1)
}

.vsm-top .navigation .primary-nav ul li.dropdown:hover ul li:hover {
    background: rgba(var(--vsm-primary-colour), 0.05)
}

.vsm-top .navigation .primary-nav ul li.dropdown:hover ul li:hover a {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation .primary-nav ul li.dropdown:hover ul li:hover a:after {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation .primary-nav ul li.meganav>a {
    position: relative
}

.vsm-top .navigation .primary-nav ul li.meganav>a:after {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-black), 1);
    margin-left: .313rem;
    position: relative;
    top: -2px
}

.vsm-top .navigation .primary-nav ul li.meganav:hover {
    background: rgba(var(--vsm-white), 1);
    box-shadow: 0 -0.625rem 1.875rem 0 rgba(0, 0, 0, .05);
    border-top-left-radius: .313rem;
    border-top-right-radius: .313rem
}

.vsm-top .navigation .primary-nav ul li.meganav:hover>a {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation .primary-nav ul li.meganav:hover>a:after {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation .primary-nav ul li.meganav:hover .mega-menu {
    display: block
}

.vsm-top .navigation .primary-nav ul li ul {
    display: none;
    position: absolute;
    width: 21em
}

.vsm-top .navigation .primary-nav .mega-menu {
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    background: rgba(var(--vsm-white), 1);
    box-shadow: 0 1.875rem 1.875rem 0 rgba(0, 0, 0, .05)
}

.vsm-top .navigation .primary-nav .mega-menu .container {
    padding: 2.5rem 1.25rem
}

.vsm-top .navigation .primary-nav .mega-menu .col {
    flex: 0 0 auto
}

.vsm-top .navigation .primary-nav .mega-menu .col:nth-child(1) {
    width: 25%;
    border-right: .063rem solid rgba(0, 0, 0, .1)
}

.vsm-top .navigation .primary-nav .mega-menu .col:nth-child(2) {
    width: 50%;
    border-right: .063rem solid rgba(0, 0, 0, .1)
}

.vsm-top .navigation .primary-nav .mega-menu .col:nth-child(3) {
    width: 25%
}

.vsm-top .navigation .primary-nav .mega-menu h4 {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .75rem
}

.vsm-top .navigation .primary-nav .mega-menu h4 a {
    color: rgba(var(--vsm-black), 1);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .75rem;
    padding: 0
}

.vsm-top .navigation .primary-nav .mega-menu nav {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto)
}

.vsm-top .navigation .primary-nav .mega-menu nav a {
    display: block;
    padding: .625rem
}

.vsm-top .navigation .primary-nav .mega-menu nav a:hover {
    background: rgba(var(--vsm-primary-colour), 0.05)
}

.vsm-top .navigation .primary-nav .mega-menu nav a:hover h5 {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation .primary-nav .mega-menu nav a:hover a {
    color: rgba(var(--vsm-body-copy-colour), 1)
}

.vsm-top .navigation .primary-nav .mega-menu nav a h5 {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(var(--vsm-black), 1)
}

.vsm-top .navigation .primary-nav .mega-menu nav a p {
    font-size: 13px;
    font-size: .8125rem;
    color: rgba(var(--vsm-body-copy-colour), 1)
}

.vsm-top .navigation .form-holder {
    width: 100%;
    transition: 800ms all ease-in-out
}

.vsm-top .navigation .search-bar {
    display: none;
    flex: 1 0 auto;
    align-items: center
}

.vsm-top .navigation .search-bar .btn {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    padding: 5px .938rem
}

.vsm-top .navigation .field {
    position: relative;
    border-radius: 0
}

.vsm-top .navigation .field select {
    background-image: none;
    border-radius: 0
}

.vsm-top .navigation .field:before {
    pointer-events: none;
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-primary-colour), 1);
    position: absolute;
    top: .75rem;
    right: .938rem
}

.vsm-top .navigation .more-nav {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: auto
}

@media(min-width: 1024px) {
    .vsm-top .navigation .more-nav {
        width: auto
    }
}

.vsm-top .navigation .more-nav nav {
    display: flex;
    align-items: center;
    width: 100%
}

@media(min-width: 1024px) {
    .vsm-top .navigation .more-nav nav {
        width: auto
    }
}

.vsm-top .navigation .more-nav ul {
    display: flex;
    align-items: center
}

.vsm-top .navigation .more-nav ul li {
    margin: 0 0 0 1.563rem;
    display: none
}

@media(min-width: 768px) {
    .vsm-top .navigation .more-nav ul li {
        display: block
    }
}

.vsm-top .navigation .more-nav ul li:nth-child(1) {
    display: block
}

.vsm-top .navigation .more-nav ul li:nth-child(2) {
    display: block
}

.vsm-top .navigation .more-nav ul li:nth-child(3) {
    display: block
}

.vsm-top .navigation .more-nav ul li:nth-child(4) {
    display: block
}

.vsm-top .navigation .more-nav ul li:nth-child(5) {
    display: block
}

.vsm-top .navigation .more-nav ul li a {
    color: rgba(var(--vsm-black), 1);
    font-size: 18px;
    font-size: 1.125rem
}

.vsm-top .navigation .more-nav ul li a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation .more-nav ul li.mobile {
    display: block;
    margin-left: .325rem
}

@media(min-width: 1024px) {
    .vsm-top .navigation .more-nav ul li.mobile {
        display: none
    }
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop {
    margin: 0 8px;
    position: relative
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop span {
    display: block;
    padding: 3px 0px;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 600;
    color: rgba(var(--vsm-black), 1)
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop span img {
    display: inline-block;
    width: 100%;
    max-width: 20px
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop span span {
    display: inline-block;
    padding: 3px 6px
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop span i {
    color: rgba(var(--vsm-black), 1)
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop .menu-dropdown {
    display: none;
    position: absolute;
    background: rgba(var(--vsm-white), 1);
    box-shadow: 0 1.875rem 1.875rem 0 rgba(0, 0, 0, .05);
    left: 0;
    width: 8rem;
    border-bottom-left-radius: .313rem;
    border-bottom-right-radius: .313rem;
    border-top-right-radius: .313rem;
    border: 1px solid rgba(0, 0, 0, .05)
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop .menu-dropdown ul {
    flex-direction: column;
    align-items: flex-start
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop .menu-dropdown ul li {
    margin: 0;
    width: 100%
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop .menu-dropdown ul li a {
    padding: 0.3125rem 0.625rem;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    display: block;
    width: 100%
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop .menu-dropdown ul li a img {
    display: inline-block;
    width: 100%;
    max-width: 20px
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop .menu-dropdown ul li a span {
    display: inline-block
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop:hover {
    border-top-left-radius: .313rem;
    border-top-right-radius: .313rem;
    box-shadow: .175rem 0 .875rem 0 rgba(0, 0, 0, .15)
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop:hover span {
    position: relative;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop:hover span:after {
    content: "";
    background: rgba(var(--vsm-white), 1);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 1
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop:hover span i {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation .more-nav ul li.lang .toggle-drop:hover .menu-dropdown {
    display: block
}

.vsm-top .navigation .burger-menu {
    background: rgba(0, 0, 0, 0);
    width: 3.125rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    padding: .625rem .938rem;
    cursor: pointer
}

.vsm-top .navigation .burger-menu span {
    background: rgba(var(--vsm-black), 1);
    width: 100%;
    height: .188rem;
    display: block;
    position: relative
}

.vsm-top .navigation .burger-menu span:before {
    content: "";
    display: block;
    position: absolute;
    background: rgba(var(--vsm-black), 1);
    width: 100%;
    height: .188rem;
    top: -0.375rem
}

.vsm-top .navigation .burger-menu span:after {
    content: "";
    display: block;
    position: absolute;
    background: rgba(var(--vsm-black), 1);
    width: 100%;
    height: .188rem;
    top: .375rem
}

.vsm-top .navigation .burger-menu:hover span {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation .burger-menu:hover span:before,
.vsm-top .navigation .burger-menu:hover span:after {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation.search-open {
    background: rgba(var(--vsm-white), 1)
}

.vsm-top .navigation.search-open .brand .logo-1 {
    display: none
}

.vsm-top .navigation.search-open .brand .logo-2 {
    display: block
}

.vsm-top .navigation.search-open .d-flex {
    flex: 1 0 0
}

.vsm-top .navigation.search-open .d-flex .primary-nav {
    flex: 1 0 0
}

@media(min-width: 768px) {
    .vsm-top .navigation.search-open .d-flex {
        flex: 1 0 auto
    }

    .vsm-top .navigation.search-open .d-flex .primary-nav {
        flex: 1 0 auto
    }
}

.vsm-top .navigation.search-open .primary-nav nav {
    display: none
}

.vsm-top .navigation.search-open .search-bar {
    display: flex;
    max-width: 100%
}

@media(min-width: 768px) {
    .vsm-top .navigation.search-open .search-bar {
        max-width: 100%
    }
}

.vsm-top .navigation.search-open .search-bar select {
    max-width: 7.5rem
}

@media(min-width: 768px) {
    .vsm-top .navigation.search-open .search-bar select {
        max-width: 100%
    }
}

.vsm-top .navigation.search-open .more-nav nav li {
    display: none
}

.vsm-top .navigation.search-open .more-nav nav li.search-bar-btn {
    display: block;
    margin: 0 .938rem 0 1.563rem
}

.vsm-top .navigation.search-open .more-nav nav li.search-bar-btn a {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation.search-open .more-nav nav li.search-bar-btn i:before {
    content: ""
}

.vsm-top .navigation.responsive-links .primary-nav>nav {
    display: none;
    width: 100% !important;
    overflow: visible
}

@media(min-width: 992px) {
    .vsm-top .navigation.responsive-links .primary-nav>nav {
        display: flex;
        flex: 1 0 auto;
        width: auto
    }
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.displayed-nav {
    width: 100%
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.displayed-nav>li {
    width: auto;
    white-space: nowrap
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.displayed-nav>li.hide {
    display: none;
    width: 0
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.displayed-nav>li.display {
    display: block;
    width: auto
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.displayed-nav>li .mega-menu {
    white-space: normal
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.more-nav li {
    position: relative
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.more-nav li span {
    cursor: pointer;
    font-size: 14px;
    font-size: .875rem;
    text-decoration: none;
    color: rgba(var(--vsm-black), 0.5);
    font-weight: 500;
    display: block;
    padding: .625rem
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.more-nav li span:hover {
    color: rgba(var(--vsm-black), 1)
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.more-nav li span i {
    margin-left: .25rem;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.more-nav li .submenu {
    display: none;
    position: absolute;
    right: 0;
    padding: .625rem;
    list-style: none;
    background: rgba(var(--vsm-white), 1);
    box-shadow: 0 .625rem 1.875rem 0 rgba(0, 0, 0, .05);
    border-radius: .313rem;
    border-top-right-radius: 0;
    width: 10rem;
    font-size: 14px;
    font-size: .875rem
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.more-nav li .submenu li a {
    text-decoration: none;
    color: rgba(var(--vsm-black), 0.5);
    display: block;
    font-weight: 500;
    padding: .325rem 0
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.more-nav li .submenu li a:hover {
    color: rgba(var(--vsm-black), 1)
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.more-nav:hover li span {
    background: rgba(var(--vsm-white), 1);
    box-shadow: 0 -0.625rem 1.875rem 0 rgba(0, 0, 0, .05);
    border-top-left-radius: .313rem;
    border-top-right-radius: .313rem
}

.vsm-top .navigation.responsive-links .primary-nav>nav ul.more-nav:hover li .submenu {
    display: block
}

.vsm-top .navigation .more-nav nav ul li a {
    position: relative
}

.vsm-top .navigation .more-nav nav ul li a .tooltip {
    position: absolute;
    display: block;
    background: rgba(var(--vsm-primary-colour), 1);
    border-radius: 0.25rem;
    padding: 0.125rem 0.3125rem;
    font-size: 12px;
    font-size: .75rem;
    color: rgba(var(--vsm-white), 0.9);
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    text-align: center
}

.vsm-top .navigation .more-nav nav ul li a:hover .tooltip {
    opacity: 1
}

.vsm-top .navigation.search-open .more-nav nav ul li a:hover .tooltip {
    opacity: 0
}

.vsm-top .notification-bar {
    background: rgba(var(--vsm-primary-colour), 1);
    padding: 0.625rem 0
}

.vsm-top .notification-bar .col-auto {
    display: flex;
    align-items: center
}

.vsm-top .notification-bar .col-auto .rte {
    margin-right: 1.25rem;
    color: rgba(var(--vsm-white), 1);
    font-size: 14px;
    font-size: .875rem
}

.vsm-top .notification-bar .col-auto .rte p,
.vsm-top .notification-bar .col-auto .rte a,
.vsm-top .notification-bar .col-auto .rte li,
.vsm-top .notification-bar .col-auto .rte h1,
.vsm-top .notification-bar .col-auto .rte h2,
.vsm-top .notification-bar .col-auto .rte h3,
.vsm-top .notification-bar .col-auto .rte h4,
.vsm-top .notification-bar .col-auto .rte h5,
.vsm-top .notification-bar .col-auto .rte h6 {
    color: rgba(var(--vsm-white), 1);
    line-height: 1.2
}

.vsm-top .notification-bar .col-auto .rte p,
.vsm-top .notification-bar .col-auto .rte a {
    font-size: 14px;
    font-size: .875rem;
    margin: 0.3125rem 0
}

.vsm-top .notification-bar .col-auto .rte a {
    text-decoration: underline;
    font-weight: bold;
    white-space: nowrap
}

.vsm-top .notification-bar .col-auto .rte a:hover {
    text-decoration: none
}

.vsm-top .notification-bar .col-auto .btn {
    padding: 0.4375rem 1.25rem;
    background: rgba(var(--vsm-white), 0);
    border: 1px solid rgba(var(--vsm-white), 1);
    line-height: 1;
    font-size: 12px;
    font-size: .75rem
}

.vsm-top .notification-bar .col-auto .btn span {
    font-size: 12px;
    font-size: .75rem
}

.vsm-top .notification-bar .col-auto .btn:hover {
    background: rgba(var(--vsm-white), 1);
    border: 1px solid rgba(var(--vsm-white), 1)
}

.vsm-top .notification-bar .col-auto .btn:hover span {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-mobile-menu {
    background: rgba(var(--vsm-secondary-colour), 1);
    position: fixed;
    width: 100%;
    height: 100vh;
    opacity: 0;
    top: 0;
    z-index: -1;
    visibility: hidden;
    transition: 300ms all ease-in-out;
    scroll-behavior: smooth;
    overflow: scroll;
    padding: 1.875rem 0
}

.vsm-mobile-menu .brand {
    display: inline-block
}

.vsm-mobile-menu .brand img {
    height: 1.875rem
}

.vsm-mobile-menu .burger-menu {
    position: absolute;
    right: .938rem;
    top: .938rem;
    z-index: 1;
    color: rgba(var(--vsm-white), 1);
    font-size: 20px;
    font-size: 1.25rem
}

.vsm-mobile-menu .mobile-nav {
    margin-top: 1.875rem
}

.vsm-mobile-menu .mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.vsm-mobile-menu .mobile-nav ul li a {
    color: rgba(var(--vsm-white), 0.9);
    text-decoration: none;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0px;
    padding: .625rem 0;
    display: block;
    border-bottom: .063rem solid rgba(255, 255, 255, .1)
}

.vsm-mobile-menu .mobile-nav ul li a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-mobile-menu .mobile-nav ul li ul {
    margin-bottom: .625rem
}

.vsm-mobile-menu .mobile-nav ul li ul li a {
    padding-left: .625rem;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400
}

body.mobile-menu-open {
    overflow: hidden
}

@media(min-width: 1024px) {
    body.mobile-menu-open {
        overflow: visible
    }
}

body.mobile-menu-open .vsm-top {
    top: -100%;
    transform: translateY(-100%)
}

@media(min-width: 1024px) {
    body.mobile-menu-open .vsm-top {
        top: 0%;
        transform: translateY(0%)
    }
}

body.mobile-menu-open .vsm-mobile-menu {
    visibility: visible;
    opacity: 1;
    z-index: 99
}

@media(min-width: 1024px) {
    body.mobile-menu-open .vsm-mobile-menu {
        opacity: 0;
        z-index: -1;
        visibility: hidden
    }
}

body.mobile-menu-open .vsm-responsive-nav {
    opacity: 0
}

.vsm-centralised-title-intro-text .md-heading {
    font-size: var(--vsm-md-heading)
}

.vsm-centralised-title-intro-text .rte {
    font-size: var(--vsm-intro-text-size)
}

.vsm-centralised-title-intro-text .rte li,
.vsm-centralised-title-intro-text .rte p,
.vsm-centralised-title-intro-text .rte dd,
.vsm-centralised-title-intro-text .rte a {
    font-size: var(--vsm-intro-text-size);
    font-size: inherit
}

.vsm-aligned-title-intro-text .md-heading {
    font-size: var(--vsm-md-heading)
}

.vsm-aligned-title-intro-text .rte {
    font-size: var(--vsm-intro-text-size)
}

.vsm-aligned-title-intro-text .rte li,
.vsm-aligned-title-intro-text .rte p,
.vsm-aligned-title-intro-text .rte dd,
.vsm-aligned-title-intro-text .rte a {
    font-size: var(--vsm-intro-text-size);
    font-size: inherit
}

.vsm-content-image-50-40 {
    position: relative
}

.vsm-content-image-50-40 .md-heading {
    font-size: var(--vsm-md-heading)
}

.vsm-content-image-50-40 .rte {
    font-size: var(--vsm-intro-text-size)
}

.vsm-content-image-50-40 .rte li,
.vsm-content-image-50-40 .rte p,
.vsm-content-image-50-40 .rte dd,
.vsm-content-image-50-40 .rte a {
    font-size: var(--vsm-intro-text-size);
    font-size: inherit
}

.vsm-content-image-50-40 .media {
    overflow: hidden
}

.vsm-content-image-50-40 .order-md-1 .content {
    padding-left: 0
}

.vsm-content-image-50-40 .order-md-2 .content {
    padding-right: 0
}

.vsm-content-image-50-40 .content {
    display: flex;
    height: 100%;
    padding: 8.3333333333%
}

.vsm-content-image-50-40 img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-content-image-50-40.full-width .order-md-1 .content,
.vsm-content-image-50-40.full-width .order-md-2 .content {
    padding-left: 8.3333333333%;
    padding-right: 8.3333333333%
}

.vsm-oversized-statement-block .rte {
    font-size: var(--vsm-oversized-text-size)
}

.vsm-oversized-statement-block .rte li,
.vsm-oversized-statement-block .rte p,
.vsm-oversized-statement-block .rte dd,
.vsm-oversized-statement-block .rte a {
    font-size: var(--vsm-oversized-text-size);
    font-size: inherit
}

.vsm-split-content-50-50 .content {
    margin-bottom: 1.875rem
}

.vsm-split-content-50-50 .media {
    overflow: hidden
}

.vsm-split-content-50-50 .sm-heading {
    font-size: var(--vsm-sm-heading)
}

.vsm-split-content-33-33-33 .vsm-header {
    text-align: center;
    margin-bottom: 1.875rem
}

.vsm-split-content-33-33-33 .content {
    margin-bottom: 1.875rem
}

.vsm-split-content-33-33-33 .sm-heading {
    font-size: var(--vsm-sm-heading)
}

.vsm-split-content-25-25-25-25 .media {
    height: 9.375rem;
    margin-bottom: 1.875rem
}

.vsm-split-content-25-25-25-25 .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-split-content-25-25-25-25 .content {
    margin-bottom: 1.875rem
}

.vsm-split-content-25-25-25-25 .xs-heading {
    font-size: var(--vsm-xs-heading)
}

.vsm-content-image-50-50 {
    position: relative
}

.vsm-content-image-50-50 .md-heading {
    font-size: var(--vsm-md-heading)
}

.vsm-content-image-50-50 .rte {
    font-size: var(--vsm-text-size)
}

.vsm-content-image-50-50 .rte li,
.vsm-content-image-50-50 .rte p,
.vsm-content-image-50-50 .rte dd,
.vsm-content-image-50-50 .rte a {
    font-size: var(--vsm-text-size);
    font-size: inherit
}

.vsm-content-image-50-50 .rte.larger-text {
    font-size: var(--vsm-intro-text-size)
}

.vsm-content-image-50-50 .rte.larger-text li,
.vsm-content-image-50-50 .rte.larger-text p,
.vsm-content-image-50-50 .rte.larger-text dd,
.vsm-content-image-50-50 .rte.larger-text a {
    font-size: var(--vsm-intro-text-size);
    font-size: inherit
}

.vsm-content-image-50-50 .media {
    overflow: hidden
}

.vsm-content-image-50-50 .order-md-1 .content {
    padding-left: 0
}

@media(min-width: 768px) {
    .vsm-content-image-50-50 .order-md-1 .content {
        padding-right: 8.333%
    }
}

.vsm-content-image-50-50 .order-md-2 .content {
    padding-right: 0
}

@media(min-width: 768px) {
    .vsm-content-image-50-50 .order-md-2 .content {
        padding-left: 8.333%
    }
}

.vsm-content-image-50-50 .content {
    display: flex;
    height: 100%;
    margin-bottom: 1.875rem
}

.vsm-content-image-50-50 img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-split-grid-images-content-features .vsm-header {
    text-align: center;
    margin-bottom: 1.875rem
}

.vsm-split-grid-images-content-features .medias .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: .938rem;
    row-gap: .938rem
}

@media(min-width: 1024px) {
    .vsm-split-grid-images-content-features .medias .grid {
        column-gap: 1.875rem;
        row-gap: 1.875rem
    }
}

.vsm-split-grid-images-content-features .medias .grid .media {
    width: 100%;
    overflow: hidden
}

.vsm-split-grid-images-content-features .medias .grid .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-split-grid-images-content-features .content {
    margin-bottom: 1.875rem
}

.vsm-split-grid-images-content-features .content .feature {
    display: flex;
    margin: .938rem 0px
}

.vsm-split-grid-images-content-features .content .feature .media {
    flex: 1;
    max-width: 5rem;
    max-height: 5rem;
    min-width: 5rem;
    min-height: 5rem;
    border-radius: 100em;
    overflow: hidden;
    margin-right: .938rem
}

.vsm-split-grid-images-content-features .content .feature .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-split-grid-images-content-features .content .feature .description {
    flex: 1
}

.vsm-intro-content-40-60 .content {
    margin-bottom: 1.875rem
}

.vsm-indented-content {
    position: relative
}

.vsm-indented-content .md-heading {
    font-size: var(--vsm-md-heading)
}

.vsm-content-layout-1 {
    position: relative;
    z-index: 0
}

.vsm-content-layout-1 .media {
    margin-bottom: 1.875rem;
    overflow: hidden;
    z-index: -1
}

@media(min-width: 768px) {
    .vsm-content-layout-1 .media {
        margin-top: 3.125rem;
        margin-bottom: 0px
    }
}

.vsm-content-layout-1 .media img {
    width: 100%
}

.vsm-content-layout-1 .content {
    margin-bottom: 1.875rem
}

@media(min-width: 768px) {
    .vsm-content-layout-1 .overlap-wrapper {
        position: relative;
        left: -46.6666666667%
    }
}

@media(min-width: 768px) {
    .vsm-content-layout-2 .content {
        padding: calc(8.33333% + 3rem)
    }
}

.vsm-content-layout-2 .media {
    margin-bottom: 1.5rem;
    overflow: hidden
}

.vsm-content-layout-2 .media img {
    width: 100%
}

@media(min-width: 768px) {
    .vsm-content-layout-2 .abs-left {
        position: absolute;
        left: 0;
        width: calc(50% - var(--bs-gutter-x)/2)
    }

    .vsm-content-layout-2 .abs-left .media {
        position: relative;
        overflow: hidden;
        padding-top: 65%;
        left: .938rem;
        width: calc(100% - .938rem)
    }

    .vsm-content-layout-2 .abs-left .media img {
        position: absolute;
        object-fit: cover;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        max-width: 100%;
        width: 100%
    }
}

@media(min-width: 768px) {
    .vsm-content-layout-3 .content {
        padding: calc(8.33333% + 3rem)
    }
}

.vsm-content-layout-3 .media {
    margin-bottom: 1.5rem;
    overflow: hidden
}

.vsm-content-layout-3 .media img {
    width: 100%
}

.vsm-content-layout-3 .media .plyr__poster-enabled .plyr__poster {
    background-size: cover !important
}

.vsm-content-layout-4 .vsm-body {
    overflow: hidden
}

.vsm-content-layout-4 .plyr__poster-enabled .plyr__poster {
    background-size: cover !important
}

.vsm-content-layout-4 .component-wrapper {
    position: relative
}

.vsm-content-layout-4 .component-wrapper .container {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%
}

@media(min-width: 768px) {
    .vsm-content-layout-4 .component-wrapper .container {
        position: absolute
    }
}

.vsm-content-layout-4 .right-col {
    position: relative;
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
    max-width: 33.75rem;
    z-index: 1
}

@media(min-width: 768px) {
    .vsm-content-layout-4 .right-col {
        max-width: 100%;
        left: calc(50% + .75rem);
        padding-right: 0;
        padding-left: 0;
        right: 0;
        bottom: 0;
        top: 0
    }
}

.vsm-content-layout-4 .right-col .mw-660 {
    max-width: 41.25rem
}

@media(min-width: 768px) {
    .vsm-content-layout-4 .right-col .mw-660 .content {
        padding: calc(8.33333% + 3rem)
    }
}

.vsm-content-layout-4 .right-col .w-50 {
    width: 100% !important
}

@media(min-width: 768px) {
    .vsm-content-layout-4 .right-col .w-50 {
        width: 50% !important
    }
}

.vsm-content-layout-4 .right-col .media {
    padding-top: 60%;
    position: relative
}

@media(min-width: 768px) {
    .vsm-content-layout-4 .right-col .media {
        padding-top: 30%;
        width: calc(50% - .75rem);
        overflow: hidden
    }
}

.vsm-content-layout-4 .right-col .media img,
.vsm-content-layout-4 .right-col .media .video {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    height: 100%;
    overflow: hidden
}

@media(min-width: 768px) {
    .vsm-content-layout-4 .left-col {
        width: calc(50% - .75rem)
    }
}

.vsm-content-layout-4 .left-col .media {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    margin-bottom: .938rem;
    width: 100%;
    top: 0
}

@media(min-width: 768px) {
    .vsm-content-layout-4 .left-col .media {
        padding-top: 130%
    }
}

.vsm-content-layout-4 .left-col .media img,
.vsm-content-layout-4 .left-col .media .video {
    top: 0;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.vsm-content-layout-4 .left-col .media .plyr--stopped .plyr__video-embed {
    aspect-ratio: auto !important
}

.vsm-content-layout-4 .left-col .media .plyr__poster-enabled .plyr__poster {
    width: 100%;
    height: 100%;
    background-size: cover !important
}

.vsm-content-layout-5 .component-wrapper .media {
    overflow: hidden;
    margin-bottom: 1.5rem
}

.vsm-content-layout-5 .component-wrapper .media img {
    width: 100%;
    aspect-ratio: 16/5;
    object-fit: cover
}

.vsm-content-layout-5 .component-wrapper .media .video {
    width: 100%;
    aspect-ratio: 16/5;
    object-fit: cover
}

.vsm-content-layout-6 .component-wrapper {
    position: relative;
    padding: 5rem 0 5rem 0
}

.vsm-content-layout-6 .media {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 5rem);
    z-index: 0
}

.vsm-content-layout-6 .media:after {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 5rem);
    background: rgba(0, 0, 0, .5);
    display: block;
    top: 0;
    left: 0;
    mix-blend-mode: multiply
}

.vsm-content-layout-6 .media img {
    width: 100%;
    height: calc(100% - 5rem);
    object-fit: cover
}

.vsm-content-layout-6 .media .video {
    width: 100%;
    object-fit: cover
}

.vsm-content-layout-6 .overlay-content {
    position: relative;
    z-index: 2;
    text-align: center
}

.vsm-content-layout-6 .overlay-content .header {
    padding-bottom: 5rem;
    color: #fff
}

.vsm-content-layout-6 .overlay-content .header .xs-heading,
.vsm-content-layout-6 .overlay-content .header .sm-heading,
.vsm-content-layout-6 .overlay-content .header p {
    color: #fff
}

.vsm-content-layout-6 .overlay-content .box {
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 0 1.875rem rgba(0, 0, 0, .2);
    border-radius: .188rem;
    z-index: 1;
    position: relative
}

.vsm-content-layout-6 .overlay-content .box .media {
    padding: 0px;
    position: relative;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: auto
}

.vsm-content-layout-6 .overlay-content .box .media:after {
    display: none
}

.vsm-content-layout-6 .overlay-content .box .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-content-layout-6 .overlay-content .box .content {
    padding: 1.875rem 1.875rem
}

.vsm-content-layout-6 .overlay-content .box.box-1 {
    margin-top: 0px
}

.vsm-content-layout-6 .overlay-content .box.box-2 {
    margin-top: 5rem
}

.vsm-content-layout-7 .component-wrapper {
    position: relative;
    z-index: 0
}

.vsm-content-layout-7 .component-wrapper .vsm-body {
    position: relative;
    z-index: -1
}

.vsm-content-layout-7 .component-wrapper .medias {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-basis: 100%;
    column-gap: .938rem;
    row-gap: .938rem;
    align-items: center;
    justify-items: center
}

@media only screen and (max-width: 33rem) {
    .vsm-content-layout-7 .component-wrapper .medias {
        overflow: hidden
    }
}

@media(min-width: 768px) {
    .vsm-content-layout-7 .component-wrapper .medias {
        justify-content: left
    }
}

.vsm-content-layout-7 .component-wrapper .medias .media {
    flex-basis: calc(33.333333% - .938rem);
    position: relative;
    max-width: 100%;
    overflow: hidden
}

@media(min-width: 768px) {
    .vsm-content-layout-7 .component-wrapper .medias .media {
        flex-basis: calc(50% - .938rem)
    }

    .vsm-content-layout-7 .component-wrapper .medias .media:nth-child(2) {
        top: 7rem
    }

    .vsm-content-layout-7 .component-wrapper .medias .media:nth-child(3) {
        top: -5rem;
        left: -7rem
    }

    .vsm-content-layout-7 .component-wrapper .medias .media:nth-child(4) {
        max-width: 30%;
        left: -6rem;
        top: -1rem
    }

    .vsm-content-layout-7 .component-wrapper .medias .media:nth-child(5) {
        margin-top: -7rem;
        left: 8.3333%
    }
}

.vsm-content-layout-7 .component-wrapper .medias .media img {
    width: 100%
}

.vsm-full-width-inline-banner .media {
    overflow: hidden
}

.vsm-full-width-inline-banner .media img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover
}

.vsm-full-width-inline-banner .media .video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover
}

.vsm-full-width-inline-banner .plyr__poster-enabled .plyr__poster {
    width: 100%;
    height: 100%;
    background-size: cover !important
}

.vsm-contained-full-width-banner .media {
    overflow: hidden
}

.vsm-contained-full-width-banner .media img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover
}

.vsm-contained-full-width-banner .media .video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover
}

.vsm-contained-full-width-banner .plyr__video-embed {
    max-height: 45.625rem
}

.vsm-contained-full-width-banner .plyr__poster-enabled .plyr__poster {
    width: 100%;
    height: 100%;
    background-size: cover !important
}

.vsm-double-media .media {
    overflow: hidden
}

.vsm-double-media .media img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover
}

.vsm-double-media .media .video {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover
}

.vsm-double-media .media .video .plyr {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.vsm-double-media .media .video .plyr__poster-enabled .plyr__poster {
    width: 100%;
    height: 100%;
    background-size: cover !important
}

.vsm-short-content-33-33-33 .component-wrapper .col {
    flex: 1 0 100%
}

@media(min-width: 768px) {
    .vsm-short-content-33-33-33 .component-wrapper .col {
        flex: 1 0 50%
    }
}

@media(min-width: 1024px) {
    .vsm-short-content-33-33-33 .component-wrapper .col {
        flex: 1 0 33%
    }
}

.vsm-short-content-33-33-33 .component-wrapper .content {
    margin-bottom: 1.875rem
}

.vsm-short-content-33-33-33 .component-wrapper .content .feature {
    display: flex;
    margin: .938rem 0px
}

.vsm-short-content-33-33-33 .component-wrapper .content .feature .media {
    flex: 1;
    max-width: 5rem;
    max-height: 5rem;
    min-width: 5rem;
    min-height: 5rem;
    border-radius: 100em;
    overflow: hidden;
    margin-right: .938rem;
    background: #000;
    display: flex;
    align-content: center;
    justify-content: center
}

.vsm-short-content-33-33-33 .component-wrapper .content .feature .media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 1.875rem
}

.vsm-short-content-33-33-33 .component-wrapper .content .feature .description {
    flex: 1
}

.vsm-split-content-25-25-25-25 .vsm-body .col {
    flex: 1 0 100%
}

@media(min-width: 1024px) {
    .vsm-split-content-25-25-25-25 .vsm-body .col {
        flex: 1 0 25%;
        max-width: 25%
    }
}

.vsm-split-image-row-50-50 .medias .col {
    flex: 1 0 33%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-split-image-row-50-50 .medias .col {
        flex: 1 0 33%
    }
}

@media(min-width: 1024px) {
    .vsm-split-image-row-50-50 .medias .col {
        flex: 1 0 33%
    }
}

.vsm-split-image-row-50-50 .medias .media {
    flex: 1;
    width: 10rem;
    height: 10rem;
    min-width: 5rem;
    min-height: 5rem;
    border-radius: 100em;
    overflow: hidden;
    margin: 0 auto .938rem auto;
    background: #000;
    display: flex;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-split-image-row-50-50 .medias .media {
        width: 5rem;
        height: 5rem
    }
}

@media(min-width: 1024px) {
    .vsm-split-image-row-50-50 .medias .media {
        width: 8rem;
        height: 8rem
    }
}

.vsm-split-image-row-50-50 .medias .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-split-image-row-50-50 .medias h5 {
    margin: 0 auto .938rem auto;
    text-align: center;
    font-size: 14px;
    font-size: .875rem
}

.vsm-stats-count-up .col {
    position: relative;
    flex: 1 0 49%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-stats-count-up .col {
        flex: 1 0 24%
    }
}

@media(min-width: 1024px) {
    .vsm-stats-count-up .col {
        flex: 1 0 24%
    }
}

.vsm-stats-count-up .col:last-child .stat:after {
    display: none
}

.vsm-stats-count-up .col .stat:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-right: .063rem solid rgba(0, 0, 0, .1);
    width: 100%;
    height: 100%
}

.vsm-stats-count-up .stat .media {
    flex: 1;
    width: 10rem;
    height: 10rem;
    min-width: 5rem;
    min-height: 5rem;
    border-radius: 100em;
    margin: 0 auto .938rem auto;
    display: flex;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-stats-count-up .stat .media {
        width: 5rem;
        height: 5rem
    }
}

@media(min-width: 1024px) {
    .vsm-stats-count-up .stat .media {
        width: 8rem;
        height: 8rem
    }
}

.vsm-stats-count-up .stat .media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 3.125rem;
    margin: 0 auto
}

.vsm-stats-count-up .stat .count {
    margin: 0 auto .938rem auto;
    text-align: center;
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 1;
    font-weight: 600;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-stats-count-up .stat .description {
    margin: 0 auto .938rem auto;
    text-align: center;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1
}

.vsm-content-in-image-50-50 .vsm-header {
    text-align: center
}

.vsm-content-in-image-50-50 .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-content-in-image-50-50 .col {
        flex: 1 0 50%
    }
}

.vsm-content-in-image-50-50 .content-in-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-bottom: 1.875rem
}

.vsm-content-in-image-50-50 .content-in-image .media {
    position: absolute;
    top: 0;
    overflow: hidden;
    transform: scale(1.1);
    transition: all 300ms ease-in-out;
    width: 100%;
    height: 100%
}

.vsm-content-in-image-50-50 .content-in-image .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-content-in-image-50-50 .content-in-image .media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1)
}

.vsm-content-in-image-50-50 .content-in-image .content {
    position: relative;
    z-index: 1;
    padding: 1.875rem
}

.vsm-content-in-image-50-50 .content-in-image .content .md-heading {
    color: #fff
}

.vsm-content-in-image-50-50 .content-in-image .content .rte {
    color: #fff
}

.vsm-content-in-image-50-50 .content-in-image .content .rte p,
.vsm-content-in-image-50-50 .content-in-image .content .rte li,
.vsm-content-in-image-50-50 .content-in-image .content .rte dd {
    color: #fff
}

.vsm-content-in-image-50-50 .content-in-image:hover .media {
    transform: scale(1)
}

.vsm-content-in-image-carousel {
    position: relative;
    overflow: hidden
}

.vsm-content-in-image-carousel .vsm-header {
    margin-bottom: 1.875rem
}

.vsm-content-in-image-carousel .swiper-container {
    overflow: visible
}

.vsm-content-in-image-carousel .swiper-pagination {
    display: none;
    position: relative;
    margin: 1.875rem 0 0 0
}

.vsm-content-in-image-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-content-in-image-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-content-in-image-carousel .swiper-navigation {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end
}

.vsm-content-in-image-carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-content-in-image-carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-content-in-image-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-content-in-image-carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-content-in-image-carousel .swiper-button-next:after {
    content: ""
}

.vsm-content-in-image-carousel .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-content-in-image-carousel .col {
        flex: 1 0 50%
    }
}

.vsm-content-in-image-carousel .content-in-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-bottom: 1.875rem
}

.vsm-content-in-image-carousel .content-in-image .media {
    position: absolute;
    top: 0;
    overflow: hidden;
    transform: scale(1.1);
    transition: all 300ms ease-in-out;
    width: 100%;
    height: 100%
}

.vsm-content-in-image-carousel .content-in-image .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-content-in-image-carousel .content-in-image .media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1)
}

.vsm-content-in-image-carousel .content-in-image .content {
    position: relative;
    z-index: 1;
    padding: 1.875rem
}

.vsm-content-in-image-carousel .content-in-image .content .md-heading {
    color: #fff
}

.vsm-content-in-image-carousel .content-in-image .content .rte {
    color: #fff
}

.vsm-content-in-image-carousel .content-in-image .content .rte p,
.vsm-content-in-image-carousel .content-in-image .content .rte li,
.vsm-content-in-image-carousel .content-in-image .content .rte dd {
    color: #fff
}

.vsm-content-in-image-carousel .content-in-image:hover .media {
    transform: scale(1)
}

.vsm-content-in-image-100 .content-in-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0px
}

.vsm-content-in-image-100 .content-in-image .media {
    position: absolute;
    top: 0;
    overflow: hidden;
    transform: scale(1.1);
    transition: all 300ms ease-in-out;
    width: 100%;
    height: 100%
}

.vsm-content-in-image-100 .content-in-image .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-content-in-image-100 .content-in-image .media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1)
}

.vsm-content-in-image-100 .content-in-image .content {
    position: relative;
    z-index: 1;
    padding: 1.875rem
}

.vsm-content-in-image-100 .content-in-image .content .xs-heading {
    color: #fff
}

.vsm-content-in-image-100 .content-in-image .content .md-heading {
    color: #fff
}

.vsm-content-in-image-100 .content-in-image .content .rte {
    color: #fff
}

.vsm-content-in-image-100 .content-in-image .content .rte p,
.vsm-content-in-image-100 .content-in-image .content .rte li,
.vsm-content-in-image-100 .content-in-image .content .rte dd {
    color: #fff
}

.vsm-content-in-image-100 .content-in-image:hover .media {
    transform: scale(1)
}

.vsm-content-in-image-100 .content-in-image [class*=col] {
    align-self: center
}

.vsm-content-in-image-100 .content-in-image .col {
    width: 66.666666%
}

.vsm-content-in-image-100 .content-in-image .col-auto {
    width: 100%
}

.vsm-profile-cards .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-profile-cards .col {
        flex: 1 0 33%
    }
}

.vsm-profile-cards .col:nth-child(odd) {
    background: rgba(0, 0, 0, .1)
}

.vsm-profile-cards .col:nth-child(even) {
    background: rgba(0, 0, 0, .05)
}

.vsm-profile-cards .profile {
    padding: 1.875rem 0
}

.vsm-profile-cards .profile .media {
    flex: 1;
    width: 10rem;
    height: 10rem;
    position: relative;
    min-width: 5rem;
    min-height: 5rem;
    border-radius: 100em;
    overflow: hidden;
    margin: 0 auto .938rem auto;
    display: flex;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-profile-cards .profile .media {
        width: 5rem;
        height: 5rem
    }
}

@media(min-width: 1024px) {
    .vsm-profile-cards .profile .media {
        width: 8rem;
        height: 8rem
    }
}

.vsm-profile-cards .profile .media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden
}

.vsm-profile-cards .profile .media[data-initials]:before {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    opacity: 1;
    content: attr(data-initials);
    display: inline-block;
    font-weight: 600;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0;
    width: 10rem;
    height: 10rem;
    line-height: 10rem;
    text-align: center;
    font-size: 14px;
    font-size: .875rem
}

@media(min-width: 768px) {
    .vsm-profile-cards .profile .media[data-initials]:before {
        width: 5rem;
        height: 5rem;
        line-height: 5rem
    }
}

@media(min-width: 1024px) {
    .vsm-profile-cards .profile .media[data-initials]:before {
        width: 8rem;
        height: 8rem;
        line-height: 8rem
    }
}

.vsm-profile-cards .profile .content {
    text-align: center
}

.vsm-profile-cards .profile .content h4 {
    margin: 0 auto 5px auto;
    text-align: center;
    font-size: 18px;
    font-size: 1.125rem
}

.vsm-profile-cards .profile .content p {
    margin: 0 auto .938rem auto;
    text-align: center;
    font-size: 16px;
    font-size: 1rem
}

.vsm-profile-cards .profile .content .btn {
    text-align: center;
    display: inline-block;
    margin: 0 auto
}

.vsm-profile-cards .profile .content .social {
    list-style: none;
    padding: 0;
    margin: .938rem auto 0 auto;
    text-align: center
}

.vsm-profile-cards .profile .content .social li {
    display: inline-block;
    margin: 0 .625rem
}

.vsm-the-team .content {
    text-align: center
}

.vsm-the-team .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-the-team .col {
        flex: 1 0 33%
    }
}

.vsm-the-team .person {
    display: flex;
    margin: .938rem 0px;
    align-items: center
}

.vsm-the-team .person .media {
    flex: 1;
    width: 10rem;
    flex-grow: 0;
    height: 4rem;
    min-width: 5rem;
    min-height: 5rem;
    border-radius: 100em;
    overflow: hidden;
    margin-right: .938rem;
    position: relative
}

@media(min-width: 768px) {
    .vsm-the-team .person .media {
        width: 5rem
    }
}

@media(min-width: 1024px) {
    .vsm-the-team .person .media {
        width: 8rem
    }
}

.vsm-the-team .person .media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden
}

.vsm-the-team .person .media[data-initials]:before {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    opacity: 1;
    content: attr(data-initials);
    display: inline-block;
    font-weight: 600;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 14px;
    font-size: .875rem
}

.vsm-the-team .person .description {
    flex: 1
}

.vsm-the-team .person .description h4,
.vsm-the-team .person .description p {
    margin: 0;
    line-height: 1
}

.vsm-the-team .person .description h4 {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: .313rem
}

.vsm-the-team .person .description p {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.2
}

.vsm-content-cards-33-33-33 .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-content-cards-33-33-33 .col {
        flex: 1 0 33%
    }
}

.vsm-content-cards-33-33-33 .content-card {
    box-shadow: 0 0 1.875rem rgba(0, 0, 0, .1);
    margin-bottom: .938rem
}

.vsm-content-cards-33-33-33 .content-card .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9
}

.vsm-content-cards-33-33-33 .content-card .content {
    text-align: center;
    position: relative;
    padding: 0 1.875rem 1.875rem 1.875rem;
    z-index: 1
}

.vsm-content-cards-33-33-33 .content-card .content .media {
    flex: 1;
    max-width: 5rem;
    max-height: 5rem;
    min-width: 5rem;
    min-height: 5rem;
    border-radius: 100em;
    overflow: hidden;
    margin: -2.5rem auto 1.875rem auto;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1
}

.vsm-content-cards-33-33-33 .content-card .content .media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 3.125rem
}

.vsm-latest-featured .vsm-header {
    margin-bottom: 1.875rem
}

.vsm-latest-featured .row.justify-content-between .col {
    flex: 1 0 0%
}

.vsm-latest-featured .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-latest-featured .col {
        flex: 1 0 33%
    }
}

.vsm-latest-featured .content-card {
    margin-bottom: .938rem
}

.vsm-latest-featured .content-card .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9
}

.vsm-latest-featured .content-card .content {
    text-align: left;
    position: relative;
    z-index: 1
}

.vsm-latest-featured .content-card .content .media {
    flex: 1;
    max-width: 5rem;
    max-height: 5rem;
    min-width: 5rem;
    min-height: 5rem;
    border-radius: 100em;
    overflow: hidden;
    margin: -2.5rem auto 1.875rem auto;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1
}

.vsm-latest-featured .content-card .content .media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 3.125rem
}

.vsm-latest-featured-alt .vsm-header {
    margin-bottom: 1.875rem
}

.vsm-latest-featured-alt .row.justify-content-between .col {
    flex: 1 0 0%
}

.vsm-latest-featured-alt .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-latest-featured-alt .col {
        flex: 1 0 33%
    }
}

.vsm-latest-featured-alt .content-card {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-bottom: .938rem
}

.vsm-latest-featured-alt .content-card .media {
    position: absolute;
    top: 0;
    overflow: hidden;
    transform: scale(1.1);
    transition: all 300ms ease-in-out;
    width: 100%;
    height: 100%
}

.vsm-latest-featured-alt .content-card .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-latest-featured-alt .content-card .media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1)
}

.vsm-latest-featured-alt .content-card .content {
    position: relative;
    z-index: 1;
    padding: 1.875rem
}

.vsm-latest-featured-alt .content-card .content .media {
    position: relative;
    width: 1.875rem;
    height: 1.875rem
}

.vsm-latest-featured-alt .content-card .content .media:before {
    display: none
}

.vsm-latest-featured-alt .content-card .content .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-latest-featured-alt .content-card .content .subtitle {
    color: #fff
}

.vsm-latest-featured-alt .content-card .content .xs-heading {
    color: #fff
}

.vsm-latest-featured-alt .content-card .content .rte {
    visibility: hidden;
    height: 0;
    opacity: 0;
    transition: visibility 0s, opacity .5s linear;
    color: #fff
}

.vsm-latest-featured-alt .content-card .content .rte p,
.vsm-latest-featured-alt .content-card .content .rte li,
.vsm-latest-featured-alt .content-card .content .rte dd {
    color: #fff
}

.vsm-latest-featured-alt .content-card:hover .media {
    transform: scale(1)
}

.vsm-latest-featured-alt .content-card:hover .content .rte {
    height: 100%;
    visibility: visible;
    opacity: 1
}

.vsm-contact-details {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center
}

.vsm-contact-details .content .contact-email {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: .625rem;
    display: inline-block
}

.vsm-contact-details .content .contact-number {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center
}

.vsm-contact-details .content .contact-number i {
    margin-right: .625rem
}

.vsm-contact-details .content .contact-number span {
    font-size: 24px;
    font-size: 1.5rem
}

.vsm-contact-details .content .contact-address {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center
}

.vsm-contact-details .content .contact-address i {
    margin-right: .625rem
}

.vsm-contact-details .content .contact-address span {
    font-size: 24px;
    font-size: 1.5rem
}

.vsm-contact-details .content .social {
    list-style: none;
    padding: 0;
    margin: 0
}

.vsm-contact-details .content .social li {
    display: inline-block;
    margin: 0 .625rem
}

.vsm-office-locations .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-office-locations .col {
        flex: 1 0 33%;
        max-width: 33%
    }
}

@media(min-width: 768px) {
    .vsm-office-locations.carousel .col {
        flex: 1 0 100%;
        max-width: 100%
    }
}

.vsm-office-locations.carousel .swiper-pagination {
    display: none;
    position: relative;
    margin: 1.875rem 0 0 0
}

.vsm-office-locations.carousel .swiper-pagination .swiper-pagination-bullet {
    margin: .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-office-locations.carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-office-locations.carousel .swiper-navigation {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end
}

.vsm-office-locations.carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-office-locations.carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-office-locations.carousel .swiper-button-prev:after {
    content: ""
}

.vsm-office-locations.carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-office-locations.carousel .swiper-button-next:after {
    content: ""
}

.vsm-office-locations .location-card {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 18.75rem;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-bottom: .938rem
}

.vsm-office-locations .location-card .media {
    position: absolute;
    top: 0;
    overflow: hidden;
    transform: scale(1.1);
    transition: all 300ms ease-in-out;
    width: 100%;
    height: 100%
}

.vsm-office-locations .location-card .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-office-locations .location-card .content {
    position: relative;
    z-index: 1;
    padding: 1.875rem;
    background: rgba(0, 0, 0, .7);
    width: 100%
}

.vsm-office-locations .location-card .content .xs-heading {
    color: #fff
}

.vsm-office-locations .location-card .content .xs-heading a {
    color: #fff;
    text-decoration: none
}

.vsm-office-locations .location-card .content .details {
    visibility: hidden;
    height: 0;
    opacity: 0;
    transition: visibility 0s, opacity .5s linear;
    color: #fff
}

.vsm-office-locations .location-card .content .details p,
.vsm-office-locations .location-card .content .details li,
.vsm-office-locations .location-card .content .details dd {
    color: #fff;
    margin-bottom: .5rem
}

.vsm-office-locations .location-card .content .details .contact-email,
.vsm-office-locations .location-card .content .details .contact-number,
.vsm-office-locations .location-card .content .details .contact-address {
    margin-bottom: .5rem;
    display: block
}

.vsm-office-locations .location-card .content .details .contact-email i,
.vsm-office-locations .location-card .content .details .contact-number i,
.vsm-office-locations .location-card .content .details .contact-address i {
    margin-right: .313rem
}

.vsm-office-locations .location-card:hover .media {
    transform: scale(1)
}

.vsm-office-locations .location-card:hover .content .details {
    height: 100%;
    visibility: visible;
    opacity: 1
}

.vsm-image-grid .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-image-grid .col {
        flex: 1 0 50%;
        max-width: 50%
    }
}

.vsm-image-grid .media {
    width: 100%;
    overflow: hidden;
    height: 100%
}

.vsm-image-grid .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-image-grid .medias {
    height: 100%
}

.vsm-image-grid .medias .grid-left {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: .938rem;
    row-gap: .938rem
}

@media(min-width: 1024px) {
    .vsm-image-grid .medias .grid-left {
        column-gap: 1.875rem;
        row-gap: 1.875rem
    }
}

.vsm-image-grid .medias .grid-right {
    height: 100%;
    margin-top: .938rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr
}

@media(min-width: 768px) {
    .vsm-image-grid .medias .grid-right {
        margin-top: 0
    }
}

.vsm-small-boxes .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-small-boxes .col {
        flex: 1 0 25%;
        max-width: 25%
    }
}

.vsm-small-boxes .small-box-card {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 9.375rem;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-bottom: .938rem
}

.vsm-small-boxes .small-box-card:hover .media {
    transform: scale(1)
}

.vsm-small-boxes .small-box-card:hover .content .details {
    height: 100%;
    visibility: visible;
    opacity: 1
}

.vsm-small-boxes .media {
    position: absolute;
    top: 0;
    overflow: hidden;
    transform: scale(1.1);
    transition: all 300ms ease-in-out;
    width: 100%;
    height: 100%
}

.vsm-small-boxes .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-small-boxes .media:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: darken;
    background: rgba(0, 0, 0, .3);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1)
}

.vsm-small-boxes .content {
    position: relative;
    z-index: 1;
    padding: 1.875rem;
    width: 100%
}

.vsm-small-boxes .content .media {
    position: relative;
    width: 1.875rem;
    height: 1.875rem;
    margin-bottom: .5rem
}

.vsm-small-boxes .content .media:after {
    display: none
}

.vsm-small-boxes .content .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-small-boxes .content .xs-heading {
    color: #fff
}

.vsm-small-boxes .content .xs-heading a {
    color: #fff;
    text-decoration: none
}

.vsm-small-boxes .content .details {
    visibility: hidden;
    height: 0;
    opacity: 0;
    transition: visibility 0s, opacity .5s linear;
    color: #fff
}

.vsm-small-boxes .content .details p,
.vsm-small-boxes .content .details li,
.vsm-small-boxes .content .details dd {
    color: #fff;
    margin-bottom: .5rem
}

.vsm-small-boxes .content .details .contact-email,
.vsm-small-boxes .content .details .contact-number,
.vsm-small-boxes .content .details .contact-address {
    margin-bottom: .5rem;
    display: inline-block
}

.vsm-small-boxes .content .details .contact-email i,
.vsm-small-boxes .content .details .contact-number i,
.vsm-small-boxes .content .details .contact-address i {
    margin-right: .313rem
}

.vsm-medium-boxes .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-medium-boxes .col {
        flex: 1 0 50%;
        max-width: 50%
    }
}

.vsm-medium-boxes .medium-box {
    border: .063rem solid rgba(0, 0, 0, .2);
    padding: 1.875rem;
    margin-bottom: 24px
}

.vsm-medium-boxes .medium-box .head {
    display: flex;
    align-items: center;
    margin-bottom: 1.875rem
}

.vsm-medium-boxes .medium-box .head .media {
    margin-right: 1.875rem
}

.vsm-medium-boxes .medium-box .head .sm-heading {
    margin-bottom: 0
}

.vsm-profile-details .profile-head {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-profile-details .profile-head {
        flex: 1 0 25%;
        max-width: 25%;
        margin-right: 8.333%
    }
}

.vsm-profile-details .profile-body {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-profile-details .profile-body {
        flex: 0 0 auto;
        width: 58.3333333333%;
        max-width: 100%
    }
}

.vsm-profile-details .profile-contacts .media {
    width: 100%;
    overflow: hidden;
    height: 100%;
    position: relative;
    max-width: 15.938rem;
    max-height: 15.938rem;
    margin: 0 auto
}

.vsm-profile-details .profile-contacts .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}

.vsm-profile-details .profile-contacts .contacts {
    list-style: none;
    padding: 1.25rem 0;
    margin: 0
}

.vsm-profile-details .profile-contacts .contacts li {
    margin-bottom: .625rem
}

.vsm-profile-details .profile-contacts .contacts li:nth-child(1) .btn {
    width: 100%;
    background: none;
    border: .063rem solid rgba(0, 0, 0, .2);
    color: #000
}

.vsm-profile-details .profile-contacts .contacts li:nth-child(1) .btn span {
    color: #000
}

.vsm-profile-details .profile-contacts .contacts li:nth-child(1) .btn i {
    color: rgba(var(--vsm-primary-colour), 1);
    margin-right: .625rem
}

.vsm-profile-details .profile-contacts .contacts li:nth-child(2) .btn {
    width: 100%;
    background: none;
    border: .063rem solid rgba(0, 0, 0, .2);
    color: #000
}

.vsm-profile-details .profile-contacts .contacts li:nth-child(2) .btn span {
    color: #000
}

.vsm-profile-details .profile-contacts .contacts li:nth-child(2) .btn i {
    color: rgba(var(--vsm-primary-colour), 1);
    margin-right: .625rem
}

.vsm-profile-details .profile-contacts .contacts li:nth-child(3) .btn {
    background: rgba(var(--vsm-primary-colour), 1);
    width: 100%
}

.vsm-profile-details .profile-contacts .contacts .btn {
    padding: .625rem
}

.vsm-profile-details .profile-contacts .contacts .back-link {
    display: block;
    position: relative;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    font-size: .875rem
}

.vsm-profile-details .profile-contacts .contacts .back-link:before {
    content: "";
    position: relative;
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    left: 0px;
    margin-right: .625rem
}

.vsm-profile-details .profile-details .profile-stats {
    list-style: none;
    margin: 0 0 1.25rem 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.vsm-profile-details .profile-details .profile-stats li {
    position: relative;
    flex: 1 0 auto;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-profile-details .profile-details .profile-stats li {
        flex: 1 0 auto
    }
}

.vsm-profile-details .profile-details .profile-stats li .count {
    font-size: 60px;
    font-size: 3.75rem;
    font-weight: 700;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-profile-details .profile-details .profile-stats li .description {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    font-size: .75rem
}

.vsm-profile-details .profile-details .profile-summary {
    list-style: none;
    padding: 0;
    margin: 0
}

.vsm-profile-details .profile-details .profile-summary li {
    margin-bottom: .625rem
}

.vsm-profile-details .profile-details .profile-summary li strong {
    font-weight: 700
}

.vsm-profile-details .profile-details .profile-summary li span {
    font-weight: 700;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-profile-details .profile-details .rte {
    margin: 1.25rem 0
}

.vsm-profile-header-details .hero {
    background: rgba(var(--vsm-black), 1);
    position: relative
}

.vsm-profile-header-details .hero .bg {
    padding-top: 3.75rem;
    min-height: 3.75rem;
    padding-bottom: 1.875rem;
    height: 100%;
    align-items: flex-end;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.vsm-profile-header-details .hero .bg .md-heading {
    font-weight: 600
}

.vsm-profile-header-details .hero .bg .md-heading:after {
    display: none
}

.vsm-profile-header-details .hero .bg .container>.row>.col {
    flex: 1 0 0%
}

.vsm-profile-header-details .hero .bg .container>.row .content {
    padding-bottom: 1.875rem;
    z-index: 1;
    position: relative
}

@media(min-width: 768px) {
    .vsm-profile-header-details .hero .bg .container>.row .content {
        padding-bottom: 1.875rem
    }
}

.vsm-profile-header-details .hero .bg .container>.row .content .xs-heading {
    font-weight: 600;
    opacity: .9;
    color: rgba(var(--vsm-white), 1);
    font-size: 20px;
    font-size: 1.25rem
}

.vsm-profile-header-details .hero .bg .container>.row .content .xs-heading:after {
    display: none
}

.vsm-profile-header-details .hero .bg .container>.row .content .md-heading {
    color: rgba(var(--vsm-white), 1)
}

.vsm-profile-header-details .hero .bg .container>.row .content .md-heading span {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-profile-header-details .hero .bg .container>.row .content .rte {
    padding-right: 0;
    opacity: 1;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
    color: rgba(var(--vsm-white), 1);
    margin-bottom: 5rem
}

.vsm-profile-header-details .hero .bg .container>.row .content .rte p,
.vsm-profile-header-details .hero .bg .container>.row .content .rte li,
.vsm-profile-header-details .hero .bg .container>.row .content .rte a {
    color: inherit;
    font-size: inherit;
    line-height: inherit
}

@media(min-width: 1024px) {
    .vsm-profile-header-details .hero .bg .container>.row .content .rte {
        padding-right: 0%
    }
}

.vsm-profile-header-details .hero .bg .container>.row .content .btn {
    background: rgba(0, 0, 0, 0);
    border: 0.0625rem solid rgba(var(--vsm-white), 1)
}

.vsm-profile-header-details .hero .bg .container>.row .content .btn span {
    color: rgba(var(--vsm-white), 1)
}

.vsm-profile-header-details .hero .bg .container>.row .content .btn:hover {
    border-color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-profile-header-details .hero .bg .container>.row .content .btn:hover span {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-profile-header-details .profile-details .cm-header {
    margin-top: -6.25rem
}

.vsm-profile-header-details .profile-details .cm-header>.row {
    justify-content: center
}

.vsm-profile-header-details .profile-details .cm-header>.row .media {
    aspect-ratio: 1/1;
    overflow: hidden;
    height: 15.625rem;
    border-radius: 18.75rem
}

.vsm-profile-header-details .profile-details .cm-header>.row .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-profile-header-details .profile-details .contact-detail-list {
    margin-bottom: 1.875rem
}

.vsm-profile-header-details .profile-details .contact-detail-list .contact-item {
    border-bottom: 0.0625rem solid rgba(0, 0, 0, .1);
    padding: 0.9375rem 0;
    text-align: center
}

.vsm-profile-header-details .profile-details .contact-detail-list .contact-item:last-child {
    border-bottom: 0
}

.vsm-profile-header-details .profile-details .contact-detail-list .contact-item .label {
    font-size: 14px;
    font-size: .875rem;
    margin-bottom: 0.3125rem;
    display: inline-block;
    font-weight: 600
}

.vsm-profile-header-details .profile-details .contact-detail-list .contact-item .rte {
    font-weight: 600;
    color: rgba(var(--vsm-quaternary-colour), 1)
}

.vsm-profile-header-details .profile-details .contact-detail-list .contact-item .rte p {
    font-size: inherit;
    font-weight: inherit;
    color: inherit
}

.vsm-profile-header-details .profile-details .contact-detail-list .contact-item .rte address {
    color: rgba(var(--vsm-body-copy-colour), 1);
    font-weight: 600;
    font-size: 16px;
    font-size: 1rem
}

.vsm-profile-header-details .profile-details .contact-detail-list .contact-item .social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center
}

.vsm-profile-header-details .profile-details .contact-detail-list .contact-item .social li a {
    margin: 0 0.625rem;
    color: rgba(var(--vsm-body-copy-colour), 1)
}

.vsm-profile-header-details .profile-details .contact-detail-list .contact-item .social li a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-profile-header-details .profile-details .vsm-body>.row>.col:nth-child(1) {
    flex: 1 0 100%
}

@media(min-width: 1024px) {
    .vsm-profile-header-details .profile-details .vsm-body>.row>.col:nth-child(1) {
        flex: 1 0 50%
    }
}

.vsm-profile-header-details .profile-details .vsm-body>.row>.col:nth-child(2) {
    flex: 1 0 100%
}

@media(min-width: 1024px) {
    .vsm-profile-header-details .profile-details .vsm-body>.row>.col:nth-child(2) {
        flex: 1 0 50%
    }
}

.vsm-large-short-quote .bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(var(--vsm-primary-colour), 1);
    padding: 5rem 0
}

.vsm-large-short-quote .quote {
    display: flex;
    flex-shrink: 0
}

.vsm-large-short-quote .ico {
    flex: 0 0 auto;
    margin-right: .938rem
}

.vsm-large-short-quote .ico i {
    font-size: 40px;
    font-size: 2.5rem;
    color: rgba(var(--vsm-white), 1)
}

.vsm-large-short-quote .content {
    color: rgba(var(--vsm-white), 1);
    flex: 1 0 auto;
    max-width: 100%;
    flex-shrink: 1
}

.vsm-large-short-quote .content p {
    font-size: 40px;
    font-size: 2.5rem;
    margin: 0;
    font-weight: 400
}

.vsm-large-short-quote .content .star-rating {
    font-size: 30px;
    font-size: 1.875rem
}

.vsm-large-short-quote .content .author {
    font-size: 14px;
    font-size: .875rem
}

.vsm-full-width-call-to-action .content {
    color: rgba(var(--vsm-white), 1)
}

.vsm-full-width-call-to-action .md-heading {
    color: rgba(var(--vsm-white), 1)
}

.vsm-full-width-call-to-action .bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(var(--vsm-primary-colour), 1);
    padding: 5rem 0
}

.vsm-full-width-call-to-action .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-full-width-call-to-action .col {
        flex: 1 0 50%;
        max-width: 50%
    }
}

.vsm-full-width-call-to-action-alt .content {
    color: rgba(var(--vsm-white), 1)
}

.vsm-full-width-call-to-action-alt .bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(var(--vsm-primary-colour), 1);
    padding: 5rem 0
}

.vsm-full-width-call-to-action-alt .row {
    justify-content: center
}

.vsm-full-width-call-to-action-alt .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-full-width-call-to-action-alt .col {
        flex: 1 0 50%;
        max-width: 50%
    }
}

.vsm-full-width-call-to-action-alt .col .content {
    text-align: center
}

.vsm-full-width-call-to-action-alt .col .content p {
    margin-bottom: .313rem;
    font-size: 24px;
    font-size: 1.5rem
}

.vsm-accordion-mixed-content-50-50 .col {
    position: relative;
    flex: 1 0 100%;
    justify-items: center;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-accordion-mixed-content-50-50 .col {
        flex: 1 0 50%;
        max-width: 50%
    }
}

.vsm-accordion-mixed-content-50-50 .media {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    margin-bottom: .938rem;
    width: 100%;
    top: 0
}

@media(min-width: 768px) {
    .vsm-accordion-mixed-content-50-50 .media {
        padding-top: 100%
    }
}

.vsm-accordion-mixed-content-50-50 .media img,
.vsm-accordion-mixed-content-50-50 .media .video {
    top: 0;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.vsm-accordion-mixed-content-50-50 .media .plyr__poster-enabled .plyr__poster {
    width: 100%;
    height: 100%;
    background-size: cover !important
}

.vsm-accordion-mixed-content-50-50 .accordion-item {
    border: 0;
    border-bottom: .063rem solid rgba(0, 0, 0, .1)
}

.vsm-accordion-mixed-content-50-50 .accordion-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    -webkit-appearance: none
}

.vsm-accordion-mixed-content-50-50 .accordion-header:after {
    margin-right: .625rem;
    content: "";
    transform: rotate(180deg);
    font-size: 16px;
    font-size: 1rem;
    display: flex;
    position: relative;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-accordion-mixed-content-50-50 .accordion-header.collapsed:after {
    content: "";
    transform: rotate(0deg)
}

.vsm-timeline-horizontal {
    position: relative;
    overflow: hidden
}

.vsm-timeline-horizontal .bg {
    background-color: rgba(var(--vsm-primary-colour), 0.05);
    padding: 1.875rem 0;
    overflow: hidden;
    position: relative
}

.vsm-timeline-horizontal .swiper-navigation {
    position: absolute;
    width: 100%;
    top: 26px;
    left: 0
}

@media(min-width: 768px) {
    .vsm-timeline-horizontal .swiper-navigation {
        top: 50%
    }
}

.vsm-timeline-horizontal .swiper-button-prev {
    left: .938rem;
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-timeline-horizontal .swiper-button-prev:after {
    content: ""
}

.vsm-timeline-horizontal .swiper-button-next {
    right: .938rem;
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-timeline-horizontal .swiper-button-next:after {
    content: ""
}

.vsm-timeline-horizontal .timeline {
    overflow: visible;
    position: relative;
    z-index: 1
}

.vsm-timeline-horizontal .timeline .swiper-wrapper {
    display: flex
}

.vsm-timeline-horizontal .timeline .swiper-slide {
    margin-right: 0px;
    display: flex;
    height: auto
}

@media(min-width: 768px) {
    .vsm-timeline-horizontal .timeline .swiper-slide {
        margin-right: -100px
    }
}

.vsm-timeline-horizontal .timeline .swiper-slide .events {
    display: grid;
    grid-template-rows: 1fr;
    grid-row-gap: 100px;
    position: relative
}

@media(min-width: 768px) {
    .vsm-timeline-horizontal .timeline .swiper-slide .events {
        grid-template-rows: 1fr 1fr
    }
}

.vsm-timeline-horizontal .timeline .swiper-slide .events .event:nth-child(1n) {
    opacity: 0;
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 0.5s
}

.vsm-timeline-horizontal .timeline .swiper-slide .events .event:nth-child(2n) {
    opacity: 0;
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 1s
}

.vsm-timeline-horizontal .timeline .swiper-slide .events .event:nth-child(3n) {
    opacity: 0;
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 1.5s
}

.vsm-timeline-horizontal .timeline .swiper-slide .events .event:nth-child(4n) {
    opacity: 0;
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 2s
}

.vsm-timeline-horizontal .timeline .swiper-slide .events .event:nth-child(5n) {
    opacity: 0;
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 2.5s
}

.vsm-timeline-horizontal .timeline .swiper-slide .events .event:nth-child(6n) {
    opacity: 0;
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 3s
}

.vsm-timeline-horizontal .timeline .swiper-slide .events .event:nth-child(7n) {
    opacity: 0;
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 3.5s
}

.vsm-timeline-horizontal .timeline .swiper-slide .events .event:nth-child(8n) {
    opacity: 0;
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 4s
}

.vsm-timeline-horizontal .timeline .swiper-slide .events .event:nth-child(9n) {
    opacity: 0;
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 4.5s
}

.vsm-timeline-horizontal .timeline .swiper-slide .events .event:nth-child(10n) {
    opacity: 0;
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 5s
}

.vsm-timeline-horizontal .timeline .swiper-slide .events-holder {
    grid-area: eventPoint
}

.vsm-timeline-horizontal .timeline .swiper-slide:nth-child(odd) .events {
    grid-template-areas: "eventPoint"
}

.vsm-timeline-horizontal .timeline .swiper-slide:nth-child(odd) .events .event {
    top: 50vh
}

@media(min-width: 768px) {
    .vsm-timeline-horizontal .timeline .swiper-slide:nth-child(odd) .events .event {
        top: 50vh
    }
}

@media(min-width: 768px) {
    .vsm-timeline-horizontal .timeline .swiper-slide:nth-child(odd) .events {
        grid-template-areas: "eventPoint""."
    }
}

.vsm-timeline-horizontal .timeline .swiper-slide:nth-child(odd) .events .events-holer {
    align-self: flex-end
}

.vsm-timeline-horizontal .timeline .swiper-slide:nth-child(even) .events {
    grid-template-areas: "eventPoint"
}

.vsm-timeline-horizontal .timeline .swiper-slide:nth-child(even) .events .event {
    top: 50vh
}

@media(min-width: 768px) {
    .vsm-timeline-horizontal .timeline .swiper-slide:nth-child(even) .events .event {
        top: -50vh
    }
}

@media(min-width: 768px) {
    .vsm-timeline-horizontal .timeline .swiper-slide:nth-child(even) .events {
        grid-template-areas: ".""eventPoint"
    }
}

.vsm-timeline-horizontal .timeline .swiper-slide:nth-child(even) .events .events-holder {
    align-self: flex-start
}

.vsm-timeline-horizontal .timeline .swiper-slide .events-holder {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1.875rem
}

@media(min-width: 768px) {
    .vsm-timeline-horizontal .timeline .swiper-slide .events-holder {
        padding-top: 0px;
        justify-content: flex-end
    }
}

.vsm-timeline-horizontal .timeline .swiper-slide .event {
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 2;
    padding-bottom: .938rem
}

.vsm-timeline-horizontal .timeline .swiper-slide .event .media {
    width: 40%;
    margin-right: 1.25rem
}

.vsm-timeline-horizontal .timeline .swiper-slide .event .media img {
    width: 100%;
    object-fit: cover
}

.vsm-timeline-horizontal .timeline .swiper-slide .event .content {
    width: 60%
}

.vsm-timeline-horizontal .timeline .swiper-slide.swiper-slide-active .events .event,
.vsm-timeline-horizontal .timeline .swiper-slide.swiper-slide-visible .events .event {
    opacity: 1;
    top: 0
}

.vsm-timeline-horizontal .timeline-control-setter {
    border-top: .063rem solid rgba(0, 0, 0, .2);
    border-bottom: .063rem solid rgba(0, 0, 0, .2);
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    z-index: 0
}

@media(min-width: 768px) {
    .vsm-timeline-horizontal .timeline-control-setter {
        top: calc(50% - 24px)
    }
}

.vsm-timeline-horizontal .timeline-control {
    overflow: hidden
}

.vsm-timeline-horizontal .timeline-control .swiper-slide {
    margin-right: 0px
}

@media(min-width: 768px) {
    .vsm-timeline-horizontal .timeline-control .swiper-slide {
        margin-right: -6.25rem
    }
}

.vsm-timeline-horizontal .timeline-control .swiper-slide .date {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: 600;
    color: rgba(var(--vsm-primary-colour), 1);
    text-align: center
}

@media(min-width: 768px) {
    .vsm-timeline-horizontal .timeline-control .swiper-slide .date {
        text-align: left
    }
}

.vsm-timeline-vertical {
    overflow: hidden;
    height: 100%
}

@media(min-width: 768px) {
    .vsm-timeline-vertical {
        height: 100vh
    }
}

.vsm-timeline-vertical .swiper-button-prev {
    left: auto;
    top: 45%;
    right: .938rem;
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-timeline-vertical .swiper-button-prev:after {
    content: ""
}

.vsm-timeline-vertical .swiper-button-next {
    right: .938rem;
    top: 50%;
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-timeline-vertical .swiper-button-next:after {
    content: ""
}

.vsm-timeline-vertical .bg {
    background-color: rgba(var(--vsm-primary-colour), 0.05);
    padding: 1.875rem 0;
    position: relative
}

.vsm-timeline-vertical .events {
    display: flex;
    justify-self: flex-end
}

@media(max-width: 767px) {
    .vsm-timeline-vertical .swiper-navigation {
        display: none
    }
}

@media(max-width: 767px) {
    .vsm-timeline-vertical .swiper-container {
        pointer-events: none
    }
}

.vsm-timeline-vertical .swiper-container .swiper-wrapper {
    height: auto !important
}

@media(max-width: 767px) {
    .vsm-timeline-vertical .swiper-container .swiper-wrapper {
        pointer-events: none
    }
}

@media(min-width: 768px) {
    .vsm-timeline-vertical .swiper-container {
        height: 80vh
    }
}

.vsm-timeline-vertical .swiper-container .swiper-slide {
    height: auto !important
}

.vsm-timeline-vertical .swiper-container .swiper-slide.swiper-slide-active .left-side .event,
.vsm-timeline-vertical .swiper-container .swiper-slide.swiper-slide-prev .left-side .event {
    left: 0%
}

.vsm-timeline-vertical .swiper-container .swiper-slide.swiper-slide-active .right-side .event,
.vsm-timeline-vertical .swiper-container .swiper-slide.swiper-slide-prev .right-side .event {
    right: 0%
}

.vsm-timeline-vertical .row.left-side:before,
.vsm-timeline-vertical .row.right-side:before {
    content: "";
    width: 100%;
    height: .063rem;
    background: rgba(0, 0, 0, .2);
    display: block;
    margin: 0 auto;
    left: 0;
    right: 0;
    position: absolute;
    top: -0.438rem
}

@media(min-width: 768px) {

    .vsm-timeline-vertical .row.left-side:before,
    .vsm-timeline-vertical .row.right-side:before {
        width: .063rem;
        height: 100%;
        top: 0
    }
}

.vsm-timeline-vertical .row .event {
    position: relative
}

.vsm-timeline-vertical .row.left-side .event:nth-child(1n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 0.5s
}

.vsm-timeline-vertical .row.left-side .event:nth-child(2n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 1s
}

.vsm-timeline-vertical .row.left-side .event:nth-child(3n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 1.5s
}

.vsm-timeline-vertical .row.left-side .event:nth-child(4n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 2s
}

.vsm-timeline-vertical .row.left-side .event:nth-child(5n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 2.5s
}

.vsm-timeline-vertical .row.left-side .event:nth-child(6n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 3s
}

.vsm-timeline-vertical .row.left-side .event:nth-child(7n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 3.5s
}

.vsm-timeline-vertical .row.left-side .event:nth-child(8n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 4s
}

.vsm-timeline-vertical .row.left-side .event:nth-child(9n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 4.5s
}

.vsm-timeline-vertical .row.left-side .event:nth-child(10n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 5s
}

.vsm-timeline-vertical .row.right-side .event:nth-child(1n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 0.5s
}

.vsm-timeline-vertical .row.right-side .event:nth-child(2n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 1s
}

.vsm-timeline-vertical .row.right-side .event:nth-child(3n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 1.5s
}

.vsm-timeline-vertical .row.right-side .event:nth-child(4n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 2s
}

.vsm-timeline-vertical .row.right-side .event:nth-child(5n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 2.5s
}

.vsm-timeline-vertical .row.right-side .event:nth-child(6n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 3s
}

.vsm-timeline-vertical .row.right-side .event:nth-child(7n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 3.5s
}

.vsm-timeline-vertical .row.right-side .event:nth-child(8n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 4s
}

.vsm-timeline-vertical .row.right-side .event:nth-child(9n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 4.5s
}

.vsm-timeline-vertical .row.right-side .event:nth-child(10n) {
    position: relative;
    transition: all 1s ease-in-out;
    transition-delay: 5s
}

.vsm-timeline-vertical .date-placeholder {
    text-align: center;
    position: relative;
    z-index: 1
}

.vsm-timeline-vertical .date-placeholder .date {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: 600;
    color: rgba(var(--vsm-primary-colour), 1);
    text-align: center;
    position: relative
}

.vsm-timeline-vertical .date-placeholder .date:after {
    content: "";
    display: block;
    width: .938rem;
    height: .938rem;
    border-radius: 100em;
    background: rgba(var(--vsm-primary-colour), 1);
    margin: 0 auto
}

.vsm-timeline-vertical .left-side {
    position: relative
}

.vsm-timeline-vertical .left-side .events {
    justify-content: flex-start
}

.vsm-timeline-vertical .left-side .events .events-holder {
    padding: .938rem 0px 0 0px
}

@media(min-width: 768px) {
    .vsm-timeline-vertical .left-side .events .events-holder {
        padding: .938rem .938rem 0 .938rem
    }
}

.vsm-timeline-vertical .left-side .events .events-holder .event {
    padding-bottom: .938rem
}

.vsm-timeline-vertical .right-side {
    position: relative
}

.vsm-timeline-vertical .right-side .events {
    justify-content: flex-end
}

.vsm-timeline-vertical .right-side .events .events-holder {
    padding: .938rem 0px 0 0px
}

@media(min-width: 768px) {
    .vsm-timeline-vertical .right-side .events .events-holder {
        padding: .938rem .938rem 0 .938rem
    }
}

.vsm-timeline-vertical .right-side .events .events-holder .event {
    padding-bottom: .938rem
}

.vsm-timeline-vertical .events-holder {
    flex: 1 0 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

@media(min-width: 768px) {
    .vsm-timeline-vertical .events-holder {
        flex: 1 0 50%;
        max-width: 50%
    }
}

.vsm-timeline-vertical .event {
    flex: 1 0 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    z-index: 2
}

@media(min-width: 768px) {
    .vsm-timeline-vertical .event {
        flex-direction: column
    }
}

@media(min-width: 1024px) {
    .vsm-timeline-vertical .event {
        flex-direction: row
    }
}

@media(min-width: 1024px) {
    .vsm-timeline-vertical .event {
        align-items: center
    }
}

@media(min-width: 768px) {
    .vsm-timeline-vertical .event {
        padding: .938rem 1.875rem
    }
}

.vsm-timeline-vertical .event .media {
    width: 40%;
    margin-bottom: .938rem;
    margin-right: 1.25rem
}

@media(min-width: 768px) {
    .vsm-timeline-vertical .event .media {
        width: 100%
    }
}

@media(min-width: 1024px) {
    .vsm-timeline-vertical .event .media {
        width: 40%
    }
}

@media(min-width: 768px) {
    .vsm-timeline-vertical .event .media {
        margin-right: 0px
    }
}

@media(min-width: 1024px) {
    .vsm-timeline-vertical .event .media {
        margin-right: 1.25rem
    }
}

.vsm-timeline-vertical .event .media img {
    width: 100%;
    object-fit: cover
}

.vsm-timeline-vertical .event .content {
    width: 60%
}

@media(min-width: 768px) {
    .vsm-timeline-vertical .event .content {
        width: 100%
    }
}

@media(min-width: 1024px) {
    .vsm-timeline-vertical .event .content {
        width: 60%
    }
}

.vsm-timeline-single-view .bg {
    position: relative
}

.vsm-timeline-single-view .swiper-container {
    height: 100%
}

.vsm-timeline-single-view .swiper-container .swiper-wrapper {
    flex-direction: column
}

.vsm-timeline-single-view .swiper-container .swiper-wrapper .swiper-slide {
    display: flex
}

.vsm-timeline-single-view .swiper-slide {
    height: 400px;
    height: auto !important;
    overflow: auto
}

.vsm-timeline-single-view .event {
    flex: 1 0 100%;
    max-width: 100%;
    display: flex;
    padding: .938rem 5rem .938rem 1.875rem;
    z-index: 2;
    overflow: hidden;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    height: auto
}

@media(min-width: 768px) {
    .vsm-timeline-single-view .event {
        flex-direction: row;
        align-items: center
    }
}

.vsm-timeline-single-view .event .media {
    width: 40%;
    margin-right: 1.25rem
}

.vsm-timeline-single-view .event .media img {
    width: 100%;
    object-fit: cover
}

.vsm-timeline-single-view .event .content {
    width: 60%
}

.vsm-timeline-single-view .swiper-pagination {
    top: 0;
    right: 0;
    text-align: left;
    height: 50%;
    width: auto !important;
    display: flex;
    flex-direction: column
}

.vsm-timeline-single-view .swiper-pagination-bullet {
    width: auto;
    display: block;
    height: auto;
    background: none;
    position: relative;
    font-size: 16px;
    font-size: 1rem;
    padding: .625rem .938rem;
    transform: scale(1);
    color: #000;
    opacity: .5;
    visibility: hidden
}

.vsm-timeline-single-view .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .2);
    left: 0;
    top: 0
}

.vsm-timeline-single-view .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    display: block
}

.vsm-timeline-single-view .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    background: #000
}

.vsm-timeline-single-view .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
    display: block;
    visibility: visible
}

.vsm-timeline-single-view .swiper-pagination-bullet.swiper-pagination-bullet-active-prev-prev {
    visibility: hidden
}

.vsm-timeline-single-view .swiper-pagination-bullet.swiper-pagination-bullet-active-prev {
    display: block;
    visibility: visible
}

.vsm-timeline-single-view .swiper-pagination-bullet.swiper-pagination-bullet-active-next-next {
    visibility: hidden
}

.vsm-timeline-single-view .swiper-pagination-bullet.swiper-pagination-bullet-active-next {
    display: block;
    visibility: visible
}

.vsm-double-accordion .btn {
    margin-bottom: 1.875rem
}

.vsm-double-accordion .vsm-body .container>.row>.col {
    flex: 1 0 100%
}

@media(min-width: 768px) {
    .vsm-double-accordion .vsm-body .container>.row>.col {
        flex: 1 0 0
    }
}

.vsm-double-accordion .vsm-footer {
    text-align: center
}

.vsm-double-accordion .accordion .accordion-item {
    box-shadow: 0 0 1.875rem rgba(0, 0, 0, .05);
    border: 0;
    margin-bottom: 1.875rem
}

.vsm-double-accordion .accordion .accordion-item .accordion-header {
    padding: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
    position: relative
}

.vsm-double-accordion .accordion .accordion-item .accordion-header:before {
    content: "";
    position: absolute;
    display: block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    right: 1.25rem;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-double-accordion .accordion .accordion-item .accordion-header.collapsed:before {
    content: ""
}

.vsm-double-accordion .accordion .accordion-item .accordion-collapse {
    padding: 0 1.25rem 1.25rem 1.25rem
}

.vsm-single-accordion .vsm-header>.container>.row>.col,
.vsm-single-accordion .vsm-body>.container>.row>.col {
    flex: 0 0 auto;
    width: 83.3333333333%
}

.vsm-single-accordion .btn {
    margin-bottom: 1.875rem
}

.vsm-single-accordion .vsm-footer {
    text-align: center
}

.vsm-single-accordion .accordion .accordion-item {
    border: 0;
    border-bottom: .063rem solid rgba(0, 0, 0, .1);
    margin-bottom: 1.875rem
}

.vsm-single-accordion .accordion .accordion-item .accordion-header {
    padding: 1.25rem 0;
    font-size: 30px;
    font-size: 1.875rem;
    position: relative
}

.vsm-single-accordion .accordion .accordion-item .accordion-header:before {
    content: "";
    position: absolute;
    display: block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    right: 0px;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-single-accordion .accordion .accordion-item .accordion-header.collapsed:before {
    content: ""
}

.vsm-single-accordion .accordion .accordion-item .accordion-collapse {
    padding: 0 0px 1.25rem 0px
}

.vsm-double-box-carousel .vsm-body {
    overflow: hidden;
    padding: 1.875rem 0
}

.vsm-double-box-carousel .flex-wrapper {
    display: flex;
    flex-direction: column
}

.vsm-double-box-carousel .flex-wrapper .flex-item:nth-child(1) {
    order: 1
}

.vsm-double-box-carousel .flex-wrapper .flex-item:nth-child(2) {
    order: 2
}

.vsm-double-box-carousel .swiper-pagination {
    position: relative;
    margin: 1.875rem 0 0 0;
    display: none
}

.vsm-double-box-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-double-box-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-double-box-carousel .swiper-navigation {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end
}

.vsm-double-box-carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-double-box-carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-double-box-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-double-box-carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-double-box-carousel .swiper-button-next:after {
    content: ""
}

.vsm-double-box-carousel .swiper-container {
    overflow: visible
}

.vsm-double-box-carousel .swiper-wrapper {
    display: flex
}

.vsm-double-box-carousel .swiper-slide {
    height: auto;
    background: rgba(0, 0, 0, .1);
    padding: 3.75rem 1.875rem
}

.vsm-double-box-carousel .content {
    display: flex
}

.vsm-double-box-carousel .content .col .media {
    border-radius: 0;
    height: 9.375rem;
    margin: 0 auto;
    text-align: center
}

.vsm-double-box-carousel .content .col .media img {
    margin: 0 auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain
}

.vsm-wide-media-carousel .vsm-header {
    overflow: hidden;
    padding: 1.875rem 0
}

.vsm-wide-media-carousel .vsm-header>.container>.row {
    justify-content: center
}

.vsm-wide-media-carousel .vsm-header>.container>.row>.col {
    width: 83.3333333333%;
    flex: 0 0 auto
}

.vsm-wide-media-carousel .vsm-body {
    overflow: hidden;
    padding: 1.875rem 0
}

.vsm-wide-media-carousel .vsm-body>.container>.row {
    justify-content: center
}

.vsm-wide-media-carousel .vsm-body>.container>.row>.col {
    width: 83.3333333333%;
    flex: 0 0 auto
}

.vsm-wide-media-carousel .flex-wrapper {
    display: flex;
    flex-direction: column
}

.vsm-wide-media-carousel .flex-wrapper .flex-item:nth-child(1) {
    order: 1
}

.vsm-wide-media-carousel .flex-wrapper .flex-item:nth-child(2) {
    order: 2
}

.vsm-wide-media-carousel .swiper-pagination {
    position: relative;
    margin: 1.875rem 0 0 0;
    display: none
}

.vsm-wide-media-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-wide-media-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-wide-media-carousel .swiper-navigation {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end
}

.vsm-wide-media-carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-wide-media-carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-wide-media-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-wide-media-carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-wide-media-carousel .swiper-button-next:after {
    content: ""
}

.vsm-wide-media-carousel .swiper-container {
    overflow: visible
}

.vsm-wide-media-carousel .swiper-wrapper {
    display: flex
}

.vsm-wide-media-carousel .swiper-slide {
    height: auto
}

.vsm-wide-media-carousel .media {
    overflow: hidden
}

.vsm-wide-media-carousel .media img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover
}

.vsm-wide-media-carousel .media .video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover
}

.vsm-wide-media-carousel .media .video .plyr {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.vsm-wide-media-carousel .media .video .plyr__poster-enabled .plyr__poster {
    width: 100%;
    height: 100%;
    background-size: cover !important
}

.vsm-job-carousel .vsm-body {
    overflow: hidden;
    padding: 1.875rem 0
}

.vsm-job-carousel .flex-wrapper {
    display: flex;
    flex-direction: column
}

.vsm-job-carousel .flex-wrapper .flex-item:nth-child(1) {
    order: 1
}

.vsm-job-carousel .flex-wrapper .flex-item:nth-child(2) {
    order: 2
}

.vsm-job-carousel .swiper-pagination {
    position: relative;
    margin: 1.875rem 0 0 0;
    display: none
}

.vsm-job-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: 0 .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-job-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-job-carousel .swiper-navigation {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end
}

.vsm-job-carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-job-carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-job-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-job-carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-job-carousel .swiper-button-next:after {
    content: ""
}

.vsm-job-carousel .swiper-container {
    overflow: visible
}

.vsm-job-carousel .swiper-wrapper {
    display: flex
}

.vsm-job-carousel .swiper-slide {
    height: auto;
    background: rgba(0, 0, 0, 0);
    padding: 1.875rem 1.875rem;
    border: .063rem solid rgba(0, 0, 0, .1)
}

.vsm-job-carousel .content {
    display: flex
}

.vsm-job-carousel .job-data .post-date {
    display: inline-block;
    font-size: 13px;
    font-size: .8125rem;
    color: rgba(var(--vsm-body-copy-colour), 0.5)
}

.vsm-job-carousel .job-data .job-ref {
    display: inline-block;
    font-size: 13px;
    font-size: .8125rem;
    color: rgba(var(--vsm-body-copy-colour), 0.5);
    margin-bottom: .938rem
}

.vsm-job-carousel .job-data .xs-heading a {
    color: rgba(var(--vsm-black), 1);
    text-decoration: none
}

.vsm-job-carousel .job-data .xs-heading a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-job-carousel .job-data ul.job-data-highlights {
    list-style: none;
    margin: 0
}

.vsm-job-carousel .job-data ul.job-data-highlights li {
    display: flex;
    margin-bottom: .625rem
}

.vsm-job-carousel .job-data .icon {
    margin-left: -2em;
    margin-right: 1em;
    width: 1.25rem
}

.vsm-full-width-testimonial-carousel .bg {
    background: rgba(var(--vsm-primary-colour), 0.05);
    padding: 3.75rem 0
}

.vsm-full-width-testimonial-carousel .swiper-pagination {
    position: relative;
    margin: 1.875rem 0 0 0
}

.vsm-full-width-testimonial-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: 0 .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-full-width-testimonial-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-full-width-testimonial-carousel .swiper-navigation {
    position: relative;
    display: none;
    justify-content: flex-end
}

.vsm-full-width-testimonial-carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-full-width-testimonial-carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-full-width-testimonial-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-full-width-testimonial-carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-full-width-testimonial-carousel .swiper-button-next:after {
    content: ""
}

.vsm-full-width-testimonial-carousel .testimonial-data .col {
    width: 100%;
    flex: 1 0 100%;
    justify-content: center;
    text-align: center
}

.vsm-full-width-testimonial-carousel .testimonial-data .media {
    width: 6.25rem;
    height: 6.25rem;
    overflow: hidden;
    border-radius: 100px;
    margin: 0 auto;
    position: relative
}

.vsm-full-width-testimonial-carousel .testimonial-data .media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden
}

.vsm-full-width-testimonial-carousel .testimonial-data .media[data-initials]:before {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    opacity: 1;
    content: attr(data-initials);
    display: inline-block;
    font-weight: 600;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0;
    width: 6.25rem;
    height: 6.25rem;
    line-height: 6.25rem;
    text-align: center;
    font-size: 14px;
    font-size: .875rem
}

.vsm-full-width-testimonial-carousel .testimonial-data blockquote {
    width: 83.3333333333%;
    margin: 1.875rem auto
}

.vsm-full-width-testimonial-carousel .testimonial-data blockquote q {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
    display: block
}

.vsm-full-width-testimonial-carousel .testimonial-data blockquote .name {
    display: block;
    font-weight: 600;
    font-size: 18px;
    font-size: 1.125rem
}

.vsm-full-width-testimonial-carousel .testimonial-data blockquote .position {
    display: block;
    font-weight: 300;
    font-size: 16px;
    font-size: 1rem
}

.vsm-short-testimonial-carousel .vsm-header {
    margin-bottom: 1.875rem
}

.vsm-short-testimonial-carousel .vsm-header .col {
    flex: 0 0 auto;
    width: 83.3333333333%
}

.vsm-short-testimonial-carousel .swiper-pagination {
    position: relative;
    margin: 1.875rem 0 0 0
}

.vsm-short-testimonial-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-short-testimonial-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-short-testimonial-carousel .swiper-navigation {
    position: relative;
    display: none;
    justify-content: flex-end
}

.vsm-short-testimonial-carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-short-testimonial-carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-short-testimonial-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-short-testimonial-carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-short-testimonial-carousel .swiper-button-next:after {
    content: ""
}

.vsm-short-testimonial-carousel .testimonial-data .col {
    width: 100%;
    flex: 1 0 100%
}

.vsm-short-testimonial-carousel .testimonial-data .col:nth-child(1) {
    display: flex;
    align-items: center
}

.vsm-short-testimonial-carousel .testimonial-data .media {
    width: 5.625rem;
    height: 5.625rem;
    overflow: hidden;
    border-radius: 100px;
    margin-right: 1.875rem;
    position: relative
}

.vsm-short-testimonial-carousel .testimonial-data .media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden
}

.vsm-short-testimonial-carousel .testimonial-data .media[data-initials]:before {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    opacity: 1;
    content: attr(data-initials);
    display: inline-block;
    font-weight: 600;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0;
    width: 5.625rem;
    height: 5.625rem;
    line-height: 5.625rem;
    text-align: center;
    font-size: 14px;
    font-size: .875rem
}

.vsm-short-testimonial-carousel .testimonial-data .author .name {
    display: block;
    font-weight: 600;
    font-size: 18px;
    font-size: 1.125rem
}

.vsm-short-testimonial-carousel .testimonial-data .author .position {
    display: block;
    font-weight: 300;
    font-size: 16px;
    font-size: 1rem;
    margin-top: .5rem
}

.vsm-short-testimonial-carousel .testimonial-data .rte {
    margin: .938rem auto;
    font-size: 16px;
    font-size: 1rem
}

.vsm-short-testimonial-carousel .testimonial-data .rte p {
    font-size: 16px;
    font-size: 1rem
}

.vsm-short-testimonial-carousel .testimonial-data .rte p a {
    font-weight: 600;
    text-decoration: none
}

.vsm-full-width-featured-testimonial-carousel .flex-wrapper {
    display: flex;
    flex-direction: column
}

.vsm-full-width-featured-testimonial-carousel .flex-wrapper .flex-item:nth-child(1) {
    order: 1
}

.vsm-full-width-featured-testimonial-carousel .flex-wrapper .flex-item:nth-child(2) {
    order: 2
}

.vsm-full-width-featured-testimonial-carousel .bg {
    padding: 3.75rem 0
}

.vsm-full-width-featured-testimonial-carousel .swiper-pagination {
    display: none;
    position: relative;
    margin: 1.875rem 0 0 0
}

.vsm-full-width-featured-testimonial-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-full-width-featured-testimonial-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-full-width-featured-testimonial-carousel .swiper-navigation {
    position: relative;
    display: flex;
    justify-content: flex-end
}

.vsm-full-width-featured-testimonial-carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-full-width-featured-testimonial-carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-full-width-featured-testimonial-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-full-width-featured-testimonial-carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-full-width-featured-testimonial-carousel .swiper-button-next:after {
    content: ""
}

.vsm-full-width-featured-testimonial-carousel .testimonial-data .col {
    justify-content: center;
    flex: 0 0 100%
}

@media(min-width: 768px) {
    .vsm-full-width-featured-testimonial-carousel .testimonial-data .col:nth-child(1) {
        flex: 0 0 auto;
        width: 41.6666666667%
    }

    .vsm-full-width-featured-testimonial-carousel .testimonial-data .col:nth-child(2) {
        flex: 0 0 auto;
        width: 58.333%
    }
}

.vsm-full-width-featured-testimonial-carousel .testimonial-data .media {
    width: 100%;
    height: 100%
}

.vsm-full-width-featured-testimonial-carousel .testimonial-data .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-full-width-featured-testimonial-carousel .testimonial-data blockquote {
    width: 108.333%;
    background: rgba(var(--vsm-white), 1);
    left: -8.3333%;
    position: relative;
    padding: 8.3333%
}

.vsm-full-width-featured-testimonial-carousel .testimonial-data blockquote q {
    font-size: 24px;
    font-size: 1.5rem;
    display: block
}

.vsm-full-width-featured-testimonial-carousel .testimonial-data blockquote a.inline-link {
    display: inline-block;
    margin-bottom: 1.875rem
}

.vsm-full-width-featured-testimonial-carousel .testimonial-data blockquote .name {
    display: block;
    font-weight: 600;
    font-size: 18px;
    font-size: 1.125rem
}

.vsm-full-width-featured-testimonial-carousel .testimonial-data blockquote .position {
    display: block;
    font-weight: 300;
    font-size: 16px;
    font-size: 1rem
}

.vsm-full-width-featured-columns-carousel {
    position: relative;
    overflow: hidden
}

.vsm-full-width-featured-columns-carousel .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.vsm-full-width-featured-columns-carousel .component-wrapper {
    position: relative;
    z-index: 1
}

.vsm-full-width-featured-columns-carousel h1,
.vsm-full-width-featured-columns-carousel h2,
.vsm-full-width-featured-columns-carousel h3,
.vsm-full-width-featured-columns-carousel h4,
.vsm-full-width-featured-columns-carousel h5,
.vsm-full-width-featured-columns-carousel h6,
.vsm-full-width-featured-columns-carousel p,
.vsm-full-width-featured-columns-carousel li {
    color: rgba(var(--vsm-white), 1)
}

.vsm-full-width-featured-columns-carousel .vsm-header {
    margin-bottom: 5rem
}

@media(min-width: 768px) {
    .vsm-full-width-featured-columns-carousel .vsm-header .col:nth-child(1) {
        max-width: 33.3333%
    }
}

@media(min-width: 768px) {
    .vsm-full-width-featured-columns-carousel .vsm-body .col .rte {
        padding-right: 25%
    }
}

.vsm-full-width-featured-columns-carousel .bg {
    padding: 5rem 0;
    position: relative;
    width: 100%;
    height: 100%
}

.vsm-full-width-featured-columns-carousel .bg:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    mix-blend-mode: multiply
}

.vsm-full-width-featured-columns-carousel .swiper-container {
    overflow: visible
}

.vsm-full-width-featured-columns-carousel .swiper-pagination {
    display: none;
    position: relative;
    margin: 1.875rem 0 0 0
}

.vsm-full-width-featured-columns-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-full-width-featured-columns-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-full-width-featured-columns-carousel .swiper-navigation {
    position: relative;
    display: flex;
    justify-content: flex-end
}

.vsm-full-width-featured-columns-carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-full-width-featured-columns-carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-white), 1);
    position: relative;
    top: 0;
    border: 2px solid rgba(var(--vsm-white), 1);
    border-radius: 100em;
    width: 5rem;
    height: 5rem
}

.vsm-full-width-featured-columns-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-full-width-featured-columns-carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-white), 1);
    position: relative;
    top: 0;
    border: 2px solid rgba(var(--vsm-white), 1);
    border-radius: 100em;
    width: 5rem;
    height: 5rem
}

.vsm-full-width-featured-columns-carousel .swiper-button-next:after {
    content: ""
}

.vsm-full-width-stats-carousel {
    position: relative;
    overflow: hidden
}

.vsm-full-width-stats-carousel h1,
.vsm-full-width-stats-carousel h2,
.vsm-full-width-stats-carousel h3,
.vsm-full-width-stats-carousel h4,
.vsm-full-width-stats-carousel h5,
.vsm-full-width-stats-carousel h6,
.vsm-full-width-stats-carousel p,
.vsm-full-width-stats-carousel li,
.vsm-full-width-stats-carousel .big-stat {
    color: rgba(var(--vsm-white), 1)
}

.vsm-full-width-stats-carousel .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.vsm-full-width-stats-carousel .component-wrapper {
    position: relative;
    z-index: 1
}

.vsm-full-width-stats-carousel .vsm-body .actions {
    padding-top: 9.375rem;
    text-align: center;
    position: relative;
    z-index: 2
}

@media(min-width: 768px) {
    .vsm-full-width-stats-carousel .vsm-body .actions {
        padding-top: 13.75rem
    }
}

.vsm-full-width-stats-carousel .vsm-body .actions .btn {
    margin: 1.875rem auto
}

.vsm-full-width-stats-carousel .bg {
    padding: 5rem 0;
    position: relative;
    width: 100%;
    height: 100%
}

.vsm-full-width-stats-carousel .bg:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    mix-blend-mode: multiply
}

.vsm-full-width-stats-carousel .swiper-container {
    overflow: visible
}

.vsm-full-width-stats-carousel .swiper-container .swiper-slide .xs-heading,
.vsm-full-width-stats-carousel .swiper-container .swiper-slide .rte {
    opacity: 0;
    transition: 800ms opacity ease-in-out
}

@media(min-width: 768px) {
    .vsm-full-width-stats-carousel .swiper-container .swiper-slide .xs-heading {
        max-width: 33.3333%
    }
}

@media(min-width: 768px) {
    .vsm-full-width-stats-carousel .swiper-container .swiper-slide .rte {
        max-width: 70%
    }
}

.vsm-full-width-stats-carousel .swiper-container .swiper-slide.swiper-slide-active .xs-heading,
.vsm-full-width-stats-carousel .swiper-container .swiper-slide.swiper-slide-active .rte {
    opacity: 1
}

.vsm-full-width-stats-carousel .swiper-pagination {
    display: none;
    position: relative;
    margin: 1.875rem 0 0 0
}

.vsm-full-width-stats-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-full-width-stats-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-full-width-stats-carousel .swiper-navigation {
    position: relative;
    display: flex;
    justify-content: center
}

.vsm-full-width-stats-carousel .swiper-navigation div {
    left: 0;
    right: 0
}

.vsm-full-width-stats-carousel .swiper-button-prev {
    margin: 0 0 0 0px;
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-white), 1);
    position: relative;
    top: 0;
    border: 2px solid rgba(var(--vsm-white), 1);
    border-radius: 100em;
    width: 3.125rem;
    height: 3.125rem
}

@media(min-width: 1024px) {
    .vsm-full-width-stats-carousel .swiper-button-prev {
        width: 5rem;
        height: 5rem
    }
}

.vsm-full-width-stats-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-full-width-stats-carousel .swiper-button-next {
    margin: 0 0 0 1.875rem;
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-white), 1);
    position: relative;
    top: 0;
    border: 2px solid rgba(var(--vsm-white), 1);
    border-radius: 100em;
    width: 3.125rem;
    height: 3.125rem
}

@media(min-width: 1024px) {
    .vsm-full-width-stats-carousel .swiper-button-next {
        width: 5rem;
        height: 5rem
    }
}

.vsm-full-width-stats-carousel .swiper-button-next:after {
    content: ""
}

.vsm-full-width-stats-carousel .big-stat {
    position: relative;
    padding-bottom: 1.875rem;
    font-size: 80px;
    font-size: 5rem
}

.vsm-full-width-stats-carousel .big-stat:after {
    content: "";
    position: relative;
    width: 108.33%;
    height: .063rem;
    display: block;
    background: rgba(var(--vsm-white), 1)
}

@media(min-width: 768px) {
    .vsm-full-width-stats-carousel .big-stat {
        font-size: 130px;
        font-size: 8.125rem
    }
}

.vsm-content-carousel {
    position: relative;
    overflow: hidden
}

.vsm-content-carousel .flex-wrapper {
    display: flex;
    flex-direction: column
}

.vsm-content-carousel .flex-wrapper .flex-item:nth-child(1) {
    order: 1
}

.vsm-content-carousel .flex-wrapper .flex-item:nth-child(2) {
    order: 2
}

.vsm-content-carousel .vsm-header {
    margin-bottom: 1.875rem;
    text-align: center
}

.vsm-content-carousel .vsm-header .col {
    flex: 0 0 auto;
    width: 83.3333333333%
}

.vsm-content-carousel .vsm-body .media {
    display: flex;
    margin-bottom: .938rem
}

.vsm-content-carousel .swiper-pagination {
    display: none;
    position: relative;
    margin: 1.875rem 0 0 0
}

.vsm-content-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-content-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-content-carousel .swiper-navigation {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end
}

.vsm-content-carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-content-carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-content-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-content-carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-content-carousel .swiper-button-next:after {
    content: ""
}

.vsm-data-capture .col {
    height: 100%;
    width: 100%;
    flex: 1 0 auto
}

@media(min-width: 1024px) {
    .vsm-data-capture .col {
        width: 50%;
        flex: 1 0 auto
    }
}

.vsm-data-capture .form-preview {
    position: relative;
    height: 100%
}

.vsm-data-capture .form-preview img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.vsm-data-capture .form-preview .details {
    position: absolute;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    top: 0;
    height: 100%;
    padding: 8.33%;
    color: rgba(var(--vsm-white), 1);
    z-index: 1;
    width: 100%
}

.vsm-data-capture .form-preview .details::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .2);
    z-index: -1
}

.vsm-data-capture .form-preview .details i.icon {
    position: relative;
    font-size: 40px;
    font-size: 2.5rem
}

.vsm-data-capture .form-preview .details i.icon:before {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-white), 1)
}

.vsm-data-capture .form-preview .details .md-heading {
    margin: .938rem 0;
    color: rgba(var(--vsm-white), 1)
}

.vsm-data-capture .form-holder {
    padding: 8.33%
}

.vsm-data-capture-alt a:hover {
    color: rgba(var(--vsm-white), 1)
}

.vsm-data-capture-alt i.icon {
    position: relative;
    font-size: 40px;
    font-size: 2.5rem;
    display: inline-block;
    margin-right: 1.25rem
}

.vsm-data-capture-alt i.icon:before {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-white), 1)
}

.vsm-data-capture-alt .md-heading {
    display: inline-block;
    color: rgba(var(--vsm-white), 1);
    margin-bottom: 1.25rem
}

.vsm-data-capture-alt .rte {
    color: rgba(var(--vsm-white), 1)
}

.vsm-data-capture-alt .rte p {
    color: rgba(var(--vsm-white), 1)
}

.vsm-data-capture-alt .form-preview {
    position: relative
}

.vsm-data-capture-alt .form-preview:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    background: rgba(0, 0, 0, .6);
    z-index: 1;
    mix-blend-mode: multiply
}

.vsm-data-capture-alt .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.vsm-data-capture-alt .form-holder {
    position: relative;
    z-index: 2;
    padding: 8.33333%
}

.vsm-data-capture-alt .form-holder .error {
    color: rgba(var(--vsm-white), 1)
}

.vsm-data-capture-alt .form-holder label {
    color: rgba(var(--vsm-white), 1)
}

.vsm-data-capture-alt .form-holder .element.text input {
    background: rgba(255, 255, 255, .5);
    color: rgba(var(--vsm-white), 1)
}

.vsm-data-capture-alt .form-holder .element.text input::-webkit-input-placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.vsm-data-capture-alt .form-holder .element.text input:-moz-placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.vsm-data-capture-alt .form-holder .element.text input:-ms-input-placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.vsm-data-capture-alt .form-holder .element.text input::placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.vsm-data-capture-alt .form-holder .element.submit .btn {
    margin-top: 2.063rem;
    background: rgba(var(--vsm-primary-colour), 1);
    width: 100%
}

.vsm-data-capture-alt .form-holder .element .icheck-primary>input:first-child:checked+input[type=hidden]+label::before,
.vsm-data-capture-alt .form-holder .element .icheck-primary>input:first-child:checked+label::before {
    background-color: rgba(var(--vsm-white), 1);
    border: .063rem solid rgba(var(--vsm-white), 1)
}

.vsm-data-capture-alt .form-holder .col {
    flex: 1 0 100%;
    width: 100%
}

@media(min-width: 1024px) {
    .vsm-data-capture-alt .form-holder .col:nth-child(1) {
        width: 83.3333333333%;
        flex: 1 0 auto
    }

    .vsm-data-capture-alt .form-holder .col:nth-child(2) {
        width: 16.6666666667%;
        flex: 1 0 auto
    }
}

.vsm-data-capture-alt .form-holder .col .col {
    width: 100%;
    flex: 1 0 100%
}

@media(min-width: 1024px) {
    .vsm-data-capture-alt .form-holder .col .col:nth-child(1) {
        flex: 1 0 auto;
        width: 41.6666666667%
    }

    .vsm-data-capture-alt .form-holder .col .col:nth-child(2) {
        flex: 1 0 auto;
        width: 41.6666666667%
    }

    .vsm-data-capture-alt .form-holder .col .col:nth-child(3) {
        flex: 1 0 auto;
        width: 16.6666666667%
    }
}

.vsm-drop-off-your-cv a:hover {
    color: rgba(var(--vsm-white), 1)
}

.vsm-drop-off-your-cv .bg {
    background: rgba(var(--vsm-secondary-colour), 1);
    padding: 3.75rem 0
}

.vsm-drop-off-your-cv .bg .content {
    color: rgba(var(--vsm-white), 1)
}

.vsm-drop-off-your-cv .bg .md-heading {
    color: rgba(var(--vsm-white), 1)
}

.vsm-drop-off-your-cv .col {
    flex: 1 0 100%
}

@media(min-width: 1024px) {
    .vsm-drop-off-your-cv .col {
        flex: 1 0 0
    }
}

.vsm-drop-off-your-cv .container>.row {
    justify-content: center;
    align-self: center
}

@media(min-width: 1024px) {
    .vsm-drop-off-your-cv .container>.row>.col:nth-child(1) {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .vsm-drop-off-your-cv .container>.row>.col:nth-child(2) {
        flex: 0 0 auto;
        width: 50%
    }
}

.vsm-drop-off-your-cv .form-holder .error {
    color: rgba(var(--vsm-white), 1)
}

.vsm-drop-off-your-cv .form-holder label {
    color: rgba(var(--vsm-white), 1)
}

.vsm-drop-off-your-cv .form-holder .element.text input {
    background: rgba(255, 255, 255, .3);
    color: rgba(var(--vsm-white), 1)
}

.vsm-drop-off-your-cv .form-holder .element.text input::-webkit-input-placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.vsm-drop-off-your-cv .form-holder .element.text input:-moz-placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.vsm-drop-off-your-cv .form-holder .element.text input:-ms-input-placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.vsm-drop-off-your-cv .form-holder .element.text input::placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

.vsm-drop-off-your-cv .form-holder .element.file .custom-file label {
    background: rgba(var(--vsm-white), 0.3)
}

.vsm-drop-off-your-cv .form-holder .element.file .custom-file-label:after {
    color: rgba(var(--vsm-white), 1)
}

.vsm-drop-off-your-cv .form-holder .element.select select {
    background-color: rgba(var(--vsm-white), 0.3);
    color: rgba(var(--vsm-white), 1)
}

.vsm-drop-off-your-cv .form-holder .element.submit .btn {
    margin-top: 2.063rem;
    background: rgba(var(--vsm-primary-colour), 1);
    width: 100%
}

.vsm-drop-off-your-cv .form-holder .element .icheck-primary>input:first-child:checked+input[type=hidden]+label::before,
.vsm-drop-off-your-cv .form-holder .element .icheck-primary>input:first-child:checked+label::before {
    background-color: rgba(var(--vsm-white), 1);
    border: .063rem solid rgba(var(--vsm-white), 1)
}

.vsm-get-in-touch-form .col {
    flex: 1 0 100%
}

@media(min-width: 768px) {
    .vsm-get-in-touch-form .col {
        flex: 1 0 0
    }
}

.vsm-get-in-touch-form .general-contact-details li {
    margin-bottom: 1rem
}

.vsm-get-in-touch-form .socials li {
    margin-bottom: 1rem
}

.vsm-split-get-in-touch-form-content .col {
    flex: 1 0 100%
}

@media(min-width: 768px) {
    .vsm-split-get-in-touch-form-content .col {
        flex: 1 0 0
    }
}

.vsm-split-get-in-touch-form-content .general-contact-details li {
    margin-bottom: 1rem;
    font-size: var(--vsm-intro-text-size);
    font-weight: 300
}

.vsm-split-get-in-touch-form-content .socials li {
    font-size: var(--vsm-intro-text-size);
    font-weight: 300;
    margin-bottom: 1rem
}

.vsm-form-hero .icheck-primary>input:first-child:checked+input[type=hidden]+label::before,
.vsm-form-hero .icheck-primary>input:first-child:checked+label::before {
    background-color: rgba(var(--vsm-white), 1);
    border: .063rem solid rgba(var(--vsm-white), 1)
}

.vsm-form-hero .error {
    color: rgba(var(--vsm-white), 1)
}

.vsm-form-hero .col {
    flex: 1 0 100%
}

@media(min-width: 768px) {
    .vsm-form-hero .col {
        flex: 1 0 0
    }
}

.vsm-form-hero .content {
    margin-bottom: 1.875rem
}

.vsm-form-hero .form-holder .submit {
    text-align: center
}

.vsm-form-hero .bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
    position: relative;
    width: 100%;
    height: 100%
}

.vsm-form-hero .bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    mix-blend-mode: multiply
}

.vsm-form-hero .component-wrapper {
    position: relative;
    z-index: 1;
    color: rgba(var(--vsm-white), 1)
}

.vsm-form-hero .xs-heading,
.vsm-form-hero .sm-heading,
.vsm-form-hero .md-heading {
    color: rgba(var(--vsm-white), 1)
}

.vsm-form-hero .form-holder {
    border: .063rem solid rgba(var(--vsm-white), 0.2);
    padding: 8.3333%
}

.vsm-hero-slider .vsm-body {
    background: rgba(var(--vsm-black), 1)
}

.vsm-hero-slider .bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    align-items: center;
    display: flex;
    align-items: center;
    position: relative
}

.vsm-hero-slider .bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    mix-blend-mode: multiply
}

.vsm-hero-slider .bg .video {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 0
}

.vsm-hero-slider .bg .video video {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    min-height: 50%;
    min-width: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-hero-slider .bg .container {
    z-index: 1
}

@media(min-width: 1024px) {
    .vsm-hero-slider .bg .container .col {
        max-width: 50%
    }
}

.vsm-hero-slider .bg .container .content .xs-heading,
.vsm-hero-slider .bg .container .content .md-heading {
    color: rgba(var(--vsm-white), 1)
}

.vsm-hero-slider .bg .container .content .rte p,
.vsm-hero-slider .bg .container .content .rte ul,
.vsm-hero-slider .bg .container .content .rte li,
.vsm-hero-slider .bg .container .content .rte dd {
    color: rgba(var(--vsm-white), 1)
}

.vsm-hero-slider .progressbar .swiper-pagination {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0px;
    width: 100%;
    height: .25rem
}

.vsm-hero-slider .progressbar .swiper-navigation {
    display: flex
}

.vsm-hero-slider .swiper-navigation {
    position: absolute;
    display: none;
    bottom: 1.875rem;
    width: 100%;
    justify-content: center
}

.vsm-hero-slider .swiper-navigation div {
    margin: 0 1.25rem 0 0px;
    left: 0;
    right: 0
}

.vsm-hero-slider .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-hero-slider .swiper-button-prev:after {
    content: ""
}

.vsm-hero-slider .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-hero-slider .swiper-button-next:after {
    content: ""
}

.vsm-hero-slider .swiper-pagination {
    left: auto;
    right: 1.25rem;
    top: 0;
    width: 1.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center
}

.vsm-hero-slider .swiper-pagination .swiper-pagination-bullet {
    margin-bottom: .313rem;
    background-color: rgba(var(--vsm-white), 0.7)
}

.vsm-hero-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-hero-slider .swiper-pagination-progressbar {
    background-color: rgba(var(--vsm-primary-colour), 0.1)
}

.vsm-hero-slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-hero-slider.single-message-search-bar .search-bar>.row>.col {
    flex: 1 0 100%
}

@media(min-width: 768px) {
    .vsm-hero-slider.single-message-search-bar .search-bar>.row>.col {
        flex: 0 0 auto;
        width: 58.3333333333%
    }
}

.vsm-hero-slider.single-message-search-bar .search-bar .input-group-text {
    border-radius: 0;
    border: 0;
    background-color: rgba(var(--vsm-white), 1);
    height: 2.875rem
}

.vsm-hero-slider.single-message-search-bar .search-bar .form-control {
    border: 0
}

.vsm-hero-slider.single-message-search-bar .search-bar i {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-hero-slider.single-message-search-bar .overlay-content {
    position: absolute;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%
}

.vsm-hero-slider.single-message-search-bar .overlay-content .xs-heading,
.vsm-hero-slider.single-message-search-bar .overlay-content .md-heading {
    color: rgba(var(--vsm-white), 1)
}

.vsm-hero-slider.single-message-search-bar .overlay-content .rte p,
.vsm-hero-slider.single-message-search-bar .overlay-content .rte ul,
.vsm-hero-slider.single-message-search-bar .overlay-content .rte li,
.vsm-hero-slider.single-message-search-bar .overlay-content .rte dd {
    color: rgba(var(--vsm-white), 1)
}

.vsm-hero-slider.single-message-search-bar .swiper-pagination-bullet {
    z-index: 3
}

.vsm-default-internal-hero .search-bar>.row>.col {
    flex: 1 0 100%
}

@media(min-width: 768px) {
    .vsm-default-internal-hero .search-bar>.row>.col {
        flex: 0 0 auto;
        width: 100%
    }
}

@media(min-width: 992px) {
    .vsm-default-internal-hero .search-bar>.row>.col {
        flex: 0 0 66.66666667%;
        width: 66.66666667%
    }
}

@media(min-width: 992px) {
    .vsm-default-internal-hero .search-bar>.row>.col .form-holder form>.row {
        flex-wrap: nowrap
    }
}

.vsm-default-internal-hero .search-bar>.row>.col .form-holder .col {
    width: 100%;
    flex: 1 0 100%
}

@media(min-width: 768px) {
    .vsm-default-internal-hero .search-bar>.row>.col .form-holder .col {
        flex: 1 0 auto;
        width: auto
    }
}

.vsm-default-internal-hero .search-bar>.row>.col .form-holder .col:nth-child(2) {
    width: 70%;
    flex: 1 0 70%
}

@media(min-width: 768px) {
    .vsm-default-internal-hero .search-bar>.row>.col .form-holder .col:nth-child(2) {
        flex: 1 0 auto;
        width: auto
    }
}

.vsm-default-internal-hero .search-bar>.row>.col .form-holder .col-auto {
    width: 30%;
    flex: 1 0 30%
}

@media(min-width: 768px) {
    .vsm-default-internal-hero .search-bar>.row>.col .form-holder .col-auto {
        flex: 0 0 auto;
        width: auto
    }
}

.vsm-default-internal-hero .search-bar>.row>.col .form-holder .col-auto .btn {
    width: 100%
}

.vsm-default-internal-hero .search-bar .input-group-text {
    border-radius: 0;
    border: 0;
    background-color: rgba(var(--vsm-white), 1);
    height: 2.6875rem
}

.vsm-default-internal-hero .search-bar .input-group input,
.vsm-default-internal-hero .search-bar .input-group select {
    height: 2.6875rem
}

.vsm-default-internal-hero .search-bar .input-group .element:nth-child(1) {
    width: 65%
}

.vsm-default-internal-hero .search-bar .input-group .element:nth-child(2) {
    width: 35%
}

.vsm-default-internal-hero .search-bar .form-select {
    padding-right: 1.875rem
}

.vsm-default-internal-hero .search-bar .form-control {
    border: 0
}

.vsm-default-internal-hero .search-bar i {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-default-internal-hero .component-wrapper {
    width: 100%
}

.vsm-default-internal-hero .content {
    position: relative
}

.vsm-default-internal-hero .content.align-center .search-bar>.row {
    justify-content: center
}

.vsm-default-internal-hero .content.align-left .search-bar>.row {
    justify-content: flex-start
}

.vsm-default-internal-hero .content.align-right .search-bar>.row {
    justify-content: flex-end
}

.vsm-default-internal-hero .content .xs-heading,
.vsm-default-internal-hero .content .md-heading {
    color: rgba(var(--vsm-white), 1)
}

.vsm-default-internal-hero .content .rte p,
.vsm-default-internal-hero .content .rte ul,
.vsm-default-internal-hero .content .rte li,
.vsm-default-internal-hero .content .rte dd {
    color: rgba(var(--vsm-white), 1)
}

.vsm-default-internal-hero .bg {
    padding: 9rem 0 4.375rem 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    display: flex;
    align-items: center;
    position: relative
}

.vsm-default-internal-hero .bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    mix-blend-mode: multiply
}

.vsm-default-internal-hero.alt .search-bar>.row>.col {
    flex: 1 0 100%
}

@media(min-width: 768px) {
    .vsm-default-internal-hero.alt .search-bar>.row>.col {
        flex: 0 0 auto;
        width: 58.3333333333%
    }
}

.vsm-default-internal-hero.alt .search-bar .input-group-text {
    border-radius: 0;
    border: 0;
    background-color: rgba(var(--vsm-white), 1);
    height: 2.875rem
}

.vsm-default-internal-hero.alt .search-bar .form-control {
    border: 0
}

.vsm-default-internal-hero.alt .search-bar i {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-default-internal-hero.alt .component-wrapper {
    width: 100%
}

.vsm-default-internal-hero.alt .content {
    position: relative
}

.vsm-default-internal-hero.alt .content.align-center .search-bar>.row {
    justify-content: center
}

.vsm-default-internal-hero.alt .content.align-left .search-bar>.row {
    justify-content: flex-start
}

.vsm-default-internal-hero.alt .content.align-right .search-bar>.row {
    justify-content: flex-end
}

.vsm-default-internal-hero.alt .content .xs-heading,
.vsm-default-internal-hero.alt .content .md-heading {
    color: rgba(var(--vsm-white), 1)
}

.vsm-default-internal-hero.alt .content .rte p,
.vsm-default-internal-hero.alt .content .rte ul,
.vsm-default-internal-hero.alt .content .rte li,
.vsm-default-internal-hero.alt .content .rte dd {
    color: rgba(var(--vsm-white), 1)
}

.vsm-default-internal-hero.alt .bg {
    padding: 10rem 0 9.375rem 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    align-items: center;
    display: flex;
    align-items: center;
    position: relative
}

.vsm-default-internal-hero.alt .bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    mix-blend-mode: multiply
}

.vsm-default-single-media-hero .search-bar {
    width: 100%
}

.vsm-default-single-media-hero .search-bar>.row>.col {
    flex: 1 0 100%
}

@media(min-width: 768px) {
    .vsm-default-single-media-hero .search-bar>.row>.col {
        flex: 0 0 auto;
        width: 58.3333333333%
    }
}

.vsm-default-single-media-hero .search-bar .input-group-text {
    border-radius: 0;
    border: 0;
    background-color: rgba(var(--vsm-white), 1);
    height: 2.875rem
}

.vsm-default-single-media-hero .search-bar .form-control {
    border: 0
}

.vsm-default-single-media-hero .search-bar i {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-default-single-media-hero .component-wrapper {
    width: 100%
}

.vsm-default-single-media-hero .content {
    position: relative
}

.vsm-default-single-media-hero .content.searchbar-holder {
    margin-top: 1.875rem
}

.vsm-default-single-media-hero .content .play-btn {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgba(var(--vsm-white), 1);
    width: auto;
    flex: 1 0 auto
}

.vsm-default-single-media-hero .content .play-btn span {
    margin-left: 10px
}

.vsm-default-single-media-hero .content .play-btn:before {
    transition: 300ms background-color ease-in-out;
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-indent: 2px;
    font-size: .6rem;
    color: rgba(var(--vsm-white), 1);
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 100rem;
    background-color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-default-single-media-hero .content.align-center {
    text-align: center;
    justify-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1 0 100%;
    max-width: 100%
}

.vsm-default-single-media-hero .content.align-center .search-bar>.row {
    justify-content: center
}

.vsm-default-single-media-hero .content.align-left {
    text-align: left;
    justify-items: start;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    flex: 1 0 100%;
    max-width: 100%
}

.vsm-default-single-media-hero .content.align-left .search-bar>.row {
    justify-content: flex-start
}

.vsm-default-single-media-hero .content.align-right {
    text-align: right;
    justify-items: end;
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 100%;
    flex: 1 0 100%;
    max-width: 100%
}

.vsm-default-single-media-hero .content.align-right .search-bar>.row {
    justify-content: flex-end
}

.vsm-default-single-media-hero .content .xs-heading,
.vsm-default-single-media-hero .content .heading {
    color: rgba(var(--vsm-white), 1)
}

.vsm-default-single-media-hero .content .rte p,
.vsm-default-single-media-hero .content .rte ul,
.vsm-default-single-media-hero .content .rte li,
.vsm-default-single-media-hero .content .rte dd {
    color: rgba(var(--vsm-white), 1)
}

.vsm-default-single-media-hero .bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    align-items: center;
    display: flex;
    align-items: center;
    position: relative
}

.vsm-default-single-media-hero .bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    mix-blend-mode: multiply
}

.vsm-default-single-media-hero .bg .video {
    position: absolute;
    z-index: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh
}

.vsm-default-single-media-hero .bg .video:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    mix-blend-mode: multiply
}

.vsm-default-single-media-hero .bg .video video {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    min-height: 50%;
    min-width: 50%;
    width: 100%;
    height: 110%;
    object-fit: cover;
    pointer-events: none !important
}

.vsm-default-single-media-hero .bg .video iframe {
    pointer-events: none !important;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%)
}

@media(min-aspect-ratio: 16/9) {
    .vsm-default-single-media-hero .bg .video iframe {
        height: 56.25vw
    }
}

@media(max-aspect-ratio: 16/9) {
    .vsm-default-single-media-hero .bg .video iframe {
        width: 177.78vh
    }
}

.vsm-default-single-media-hero .bg .container {
    z-index: 1
}

footer.vsm-default-footer {
    background: rgba(var(--vsm-secondary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    padding: 3.75rem 0
}

footer.vsm-default-footer .xs-heading {
    color: rgba(var(--vsm-white), 1);
    margin: .938rem 0;
    font-size: 16px;
    font-size: 1rem
}

footer.vsm-default-footer ul {
    list-style: none;
    padding: 0;
    margin: 0
}

footer.vsm-default-footer ul li a {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 14px;
    font-size: .875rem;
    font-weight: 400;
    text-decoration: none
}

footer.vsm-default-footer ul li a:hover {
    color: rgba(var(--vsm-white), 1)
}

footer.vsm-default-footer .contact-info {
    display: flex;
    flex-wrap: wrap
}

footer.vsm-default-footer .contact-info div {
    flex: 1 0 70%;
    font-size: 14px;
    font-size: .875rem;
    color: rgba(var(--vsm-white), 1);
    font-weight: 600
}

footer.vsm-default-footer .contact-info div a {
    color: rgba(var(--vsm-white), 0.7);
    font-weight: 600
}

footer.vsm-default-footer .contact-info div a:hover {
    color: rgba(var(--vsm-white), 1)
}

footer.vsm-default-footer .contact-info div:nth-of-type(1) {
    flex: 1 0 30%;
    font-weight: 300
}

footer.vsm-default-footer .contact-info div:nth-of-type(3) {
    flex: 1 0 30%;
    font-weight: 300
}

footer.vsm-default-footer .social {
    list-style: none;
    display: flex;
    flex-direction: row
}

footer.vsm-default-footer .social li {
    margin-right: 1.25rem
}

footer.vsm-default-footer .social li a {
    font-size: 16px;
    font-size: 1rem
}

footer.vsm-default-footer .social li a i {
    font-size: 20px;
    font-size: 1.25rem
}

footer.vsm-default-footer .general-contact-details li {
    margin-bottom: .75rem;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 300
}

footer.vsm-default-footer .general-contact-details li a {
    font-size: 24px;
    font-size: 1.5rem;
    color: rgba(var(--vsm-white), 1);
    font-weight: 500
}

footer.vsm-default-footer .newsletter-signup .form-holder {
    width: 100%;
    max-width: 300px
}

footer.vsm-default-footer .newsletter-signup input {
    border-radius: 0;
    border: 2px solid rgba(var(--vsm-white), 1);
    background: rgba(var(--vsm-white), 0);
    color: rgba(var(--vsm-white), 1)
}

footer.vsm-default-footer .newsletter-signup input::-webkit-input-placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

footer.vsm-default-footer .newsletter-signup input:-moz-placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

footer.vsm-default-footer .newsletter-signup input:-ms-input-placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

footer.vsm-default-footer .newsletter-signup input::placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

footer.vsm-default-footer .newsletter-signup .btn {
    background: rgba(var(--vsm-white), 1);
    color: rgba(var(--vsm-black), 1);
    font-size: 18px;
    font-size: 1.125rem
}

footer.vsm-default-footer .newsletter-signup p {
    color: rgba(var(--vsm-white), 0.7);
    font-weight: 400
}

footer.vsm-default-footer-no-links {
    background: rgba(var(--vsm-secondary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    padding: 3.75rem 0
}

footer.vsm-default-footer-no-links .xs-heading {
    color: rgba(var(--vsm-white), 1);
    margin: .938rem 0;
    font-size: 16px;
    font-size: 1rem
}

footer.vsm-default-footer-no-links ul {
    list-style: none;
    padding: 0;
    margin: 0
}

footer.vsm-default-footer-no-links ul li a {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 14px;
    font-size: .875rem;
    font-weight: 400;
    text-decoration: none
}

footer.vsm-default-footer-no-links ul li a:hover {
    color: rgba(var(--vsm-white), 1)
}

footer.vsm-default-footer-no-links .social {
    list-style: none;
    display: flex;
    flex-direction: row
}

footer.vsm-default-footer-no-links .social li {
    margin-right: 1.25rem
}

footer.vsm-default-footer-no-links .social li a {
    font-size: 16px;
    font-size: 1rem
}

footer.vsm-default-footer-no-links .social li a i {
    font-size: 20px;
    font-size: 1.25rem
}

footer.vsm-default-footer-no-links .general-contact-details li {
    margin-bottom: .75rem;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 300
}

footer.vsm-default-footer-no-links .general-contact-details li a {
    font-size: 24px;
    font-size: 1.5rem;
    color: rgba(var(--vsm-white), 1);
    font-weight: 500
}

footer.vsm-default-footer-no-links .newsletter-signup {
    margin-bottom: 1.875rem
}

footer.vsm-default-footer-no-links .newsletter-signup .form-holder {
    width: 100%;
    max-width: 300px
}

footer.vsm-default-footer-no-links .newsletter-signup input {
    border-radius: 0;
    border: 2px solid rgba(var(--vsm-white), 1);
    background: rgba(var(--vsm-white), 0);
    color: rgba(var(--vsm-white), 1)
}

footer.vsm-default-footer-no-links .newsletter-signup input::-webkit-input-placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

footer.vsm-default-footer-no-links .newsletter-signup input:-moz-placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

footer.vsm-default-footer-no-links .newsletter-signup input:-ms-input-placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

footer.vsm-default-footer-no-links .newsletter-signup input::placeholder {
    color: rgba(var(--vsm-white), 0.7);
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

footer.vsm-default-footer-no-links .newsletter-signup .btn {
    background: rgba(var(--vsm-white), 1);
    color: rgba(var(--vsm-black), 1);
    font-size: 18px;
    font-size: 1.125rem
}

footer.vsm-default-footer-no-links .newsletter-signup h1,
footer.vsm-default-footer-no-links .newsletter-signup h2,
footer.vsm-default-footer-no-links .newsletter-signup h3,
footer.vsm-default-footer-no-links .newsletter-signup h4,
footer.vsm-default-footer-no-links .newsletter-signup h5,
footer.vsm-default-footer-no-links .newsletter-signup h6 {
    color: rgba(var(--vsm-white), 1)
}

footer.vsm-default-footer-no-links .newsletter-signup p {
    color: rgba(var(--vsm-white), 0.7);
    font-weight: 400
}

.vsm-default-signoff {
    background: rgba(var(--vsm-secondary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    padding: 1.875rem 0;
    font-size: 12px;
    font-size: .75rem
}

.vsm-default-signoff a {
    color: rgba(var(--vsm-white), 1);
    text-decoration: none
}

.vsm-default-signoff a:hover {
    text-decoration: underline
}

.vsm-default-signoff .copyright {
    display: inline-block;
    margin-right: .938rem
}

.vsm-default-signoff .signoff-links {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0
}

.vsm-default-signoff .signoff-links li {
    display: inline-block
}

.vsm-default-signoff .signoff-links li a {
    margin-right: .313rem
}

.vsm-default-signoff .designed-by {
    display: inline-block;
    text-align: right
}

.vsm-404-page {
    height: 100vh;
    text-align: center;
    color: rgba(var(--vsm-white), 1)
}

.vsm-404-page h1,
.vsm-404-page h2,
.vsm-404-page h3,
.vsm-404-page h4,
.vsm-404-page h5,
.vsm-404-page h6 {
    color: rgba(var(--vsm-white), 1)
}

.vsm-404-page .bg {
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative
}

.vsm-404-page .bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, .3);
    mix-blend-mode: multiply;
    top: 0;
    left: 0;
    z-index: 0
}

.vsm-404-page .component-wrapper {
    height: 100%;
    z-index: 1;
    position: relative
}

.vsm-404-page .vsm-body {
    height: 100%
}

.vsm-404-page .container {
    height: 100%
}

.vsm-job-search-results-listings .vsm-body .container>.row>.col:nth-child(1) {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 768px) {
    .vsm-job-search-results-listings .vsm-body .container>.row>.col:nth-child(1) {
        width: 25%
    }
}

.vsm-job-search-results-listings .vsm-body .container>.row>.col:nth-child(2) {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 768px) {
    .vsm-job-search-results-listings .vsm-body .container>.row>.col:nth-child(2) {
        width: 75%
    }
}

.vsm-job-search-results-listings .job-listing,
.vsm-job-search-results-listings .faux-listing {
    list-style: none;
    margin: 0 0 0px 0;
    padding: 0 0 0px 0
}

.vsm-job-search-results-listings .job-listing>li,
.vsm-job-search-results-listings .faux-listing>li {
    margin: 0px 0;
    padding: .938rem 0 25px 0;
    border-top: .063rem solid rgba(0, 0, 0, .1)
}

.vsm-job-search-results-listings .element.checkbox label {
    font-weight: 600
}

.vsm-job-search-results-listings .element.radio label {
    font-weight: 600
}

.job-listing .job-data.in-shortlist {
    background: rgba(var(--vsm-primary-colour), 0.05);
    padding: 1.875rem
}

.job-listing .job-data .add-to-shortlist {
    color: rgba(var(--vsm-body-copy-colour), 1);
    font-size: 14px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none
}

.job-listing .job-data .add-to-shortlist:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.job-listing .job-data .add-to-shortlist i {
    position: relative;
    margin-right: .625rem
}

.job-listing .job-data .add-to-shortlist i:before {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-primary-colour), 1)
}

.job-listing .job-data .add-to-shortlist.added i:before {
    content: ""
}

.job-listing .job-data .post-date {
    display: inline-block;
    font-size: 13px;
    font-size: .8125rem;
    color: rgba(var(--vsm-body-copy-colour), 0.5)
}

.job-listing .job-data .job-ref {
    display: inline-block;
    font-size: 13px;
    font-size: .8125rem;
    color: rgba(var(--vsm-body-copy-colour), 0.5)
}

.job-listing .job-data .xs-heading {
    margin: .625rem 0
}

.job-listing .job-data .xs-heading a {
    color: rgba(var(--vsm-black), 1);
    text-decoration: none
}

.job-listing .job-data .xs-heading a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.job-listing .job-data ul.job-data-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex
}

.job-listing .job-data ul.job-data-highlights li {
    margin-bottom: .625rem;
    margin-right: .938rem;
    display: flex;
    font-size: 14px;
    font-size: .875rem
}

.job-search-filters .filter {
    margin-top: .938rem;
    display: flex;
    flex-wrap: wrap
}

.job-search-filters .filter .label {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-content: center
}

.job-search-filters .filter .label.toggler:after {
    content: "";
    position: relative;
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: normal;
    right: 0px;
    top: 2px;
    font-size: 12px;
    font-size: .75rem;
    color: rgba(var(--vsm-primary-colour), 1)
}

.job-search-filters .filter .label.toggler.collapsed:after {
    content: ""
}

.job-search-filters .filter .element.radio,
.job-search-filters .filter .element.checkbox {
    margin-right: 1.875rem
}

.job-search-filters .filter .element.select,
.job-search-filters .filter .element.text {
    width: 100%
}

@media(min-width: 768px) {
    .job-search-filters .filter {
        flex-direction: column
    }
}

.job-search-filters .filter-apply .btn {
    border-color: rgba(var(--vsm-primary-colour), 1);
    background-color: rgba(var(--vsm-primary-colour), 1)
}

.job-search-filters .filter-apply .btn:hover {
    border-color: rgba(var(--vsm-black), 1);
    background-color: rgba(var(--vsm-black), 1)
}

.job-search-filters .filter-clear .btn {
    border-color: rgba(var(--vsm-secondary-colour), 1);
    background-color: rgba(var(--vsm-secondary-colour), 1)
}

.job-search-filters .filter-clear .btn:hover {
    border-color: rgba(var(--vsm-black), 1);
    background-color: rgba(var(--vsm-black), 1)
}

.job-search-filters .xs-heading {
    margin-top: 1.25rem;
    margin-bottom: .938rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.job-search-filters .xs-heading .toggle-filters {
    border-radius: 1.875;
    border: .063rem solid rgba(var(--vsm-primary-colour), 0.1);
    padding: .313rem .625rem;
    font-size: 12px;
    font-size: .75rem;
    color: rgba(var(--vsm-primary-colour), 1);
    cursor: pointer
}

@media(min-width: 768px) {
    .job-search-filters .xs-heading .toggle-filters {
        display: none
    }
}

.job-search-filters .xs-heading .toggle-filters:hover {
    color: rgba(var(--vsm-black), 1)
}

.job-search-filters .xs-heading .toggle-filters i {
    margin-right: .625rem;
    padding-right: .625rem;
    font-size: 13px;
    font-size: .8125rem;
    border-right: .063rem solid rgba(var(--vsm-body-copy-colour), 0.1)
}

.job-search-filters .xs-heading .toggle-filters i:before {
    content: "";
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    right: 0px;
    color: rgba(var(--vsm-primary-colour), 1)
}

.job-search-filters .xs-heading .toggle-open i:before {
    content: ""
}

.job-search-filters .toggle-container {
    display: none
}

.job-search-filters .toggle-container.toggle-open {
    display: block
}

@media(min-width: 768px) {
    .job-search-filters .toggle-container {
        display: block
    }
}

.job-search-filters .label {
    font-size: 14px;
    font-size: .875rem;
    margin-bottom: .75rem
}

.job-search-filters [class*=icheck-]>input:first-child+input[type=hidden]+label::before,
.job-search-filters [class*=icheck-]>input:first-child+label::before {
    background-color: rgba(var(--vsm-primary-colour), 0.2);
    border: .063rem solid rgba(var(--vsm-primary-colour), 0.1)
}

.job-search-filters .element.submit {
    margin-top: .938rem
}

.job-search-filters .element.submit .btn {
    width: 100%
}

.range-wrap {
    position: relative;
    margin: 1.25rem 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%
}

.range {
    width: 100%
}

.js {
    --js: 1
}

[type=range] {
    width: 80%;
    grid-area: 1/1;
    height: 1em;
    cursor: pointer
}

[type=range]::-webkit-slider-runnable-track,
[type=range]::-webkit-slider-thumb,
[type=range] {
    -webkit-appearance: none
}

[type=range]::-webkit-slider-container {
    -webkit-user-modify: read-write !important;
    height: 1rem;
    border-radius: .5rem;
    background-color: rgba(var(--vsm-primary-colour), 0.3)
}

[type=range]::-webkit-slider-runnable-track {
    margin: 0rem
}

[type=range]::-moz-range-track {
    height: 1rem;
    border-radius: .5rem;
    background-color: rgba(var(--vsm-primary-colour), 0.3)
}

[type=range]::-moz-range-progress {
    border: solid 0rem rgba(0, 0, 0, 0);
    border-right-width: calc(.01*var(--val)*0rem);
    height: 1rem;
    border-radius: .5rem;
    box-shadow: inset 0 2px 2px rgba(247, 247, 247, .2);
    background: linear-gradient(90deg, rgba(var(--vsm-primary-colour), 1), rgba(var(--vsm-primary-colour), 1)) padding-box
}

[type=range]::-webkit-slider-thumb {
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: conic-gradient(rgba(var(--vsm-primary-colour), 1), rgba(var(--vsm-primary-colour), 1));
    cursor: ew-resize
}

[type=range]::-moz-range-thumb {
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: conic-gradient(rgba(var(--vsm-primary-colour), 1), rgba(var(--vsm-primary-colour), 1));
    cursor: ew-resize
}

[type=range]+output {
    display: var(--js, none);
    grid-column: calc(1 + var(--not-i));
    place-self: end;
    padding: 0 .5rem;
    width: 2.8125rem;
    height: 2.8125rem;
    border: 0.125rem solid rgba(var(--vsm-white), 1);
    display: flex;
    align-items: center;
    justify-content: center
}

.bubble {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    padding: 4px 12px;
    position: absolute;
    border-radius: 6.25rem;
    pointer-events: none
}

.filter-group {
    box-shadow: 0 0 30px 0 rgba(var(--vsm-black), 0.05);
    border: 0.0625rem solid rgba(var(--vsm-black), 0.05);
    border-radius: 0.3125rem;
    overflow: hidden;
    margin-bottom: 0.9375rem
}

.filter-group .filter-heading {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: rgba(var(--vsm-primary-colour), 1);
    font-size: 14px;
    font-size: .875rem;
    font-weight: 500;
    padding: 0.9375rem;
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem
}

.filter-group .filter-heading:after {
    content: "";
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    right: 0px;
    color: rgba(var(--vsm-primary-colour), 1)
}

.filter-group .filters {
    display: none
}

.filter-group .filters .filter {
    padding: 0 0.9375rem;
    margin-top: 0.625rem
}

.filter-group .filters .filter span.count {
    margin-left: 0.625rem;
    border-radius: 0.3125rem;
    font-size: 11px;
    font-size: .6875rem;
    font-weight: 600;
    padding: 0.1875rem 0.5rem;
    background: rgba(var(--vsm-black), 0.15);
    color: rgba(var(--vsm-black), 1)
}

.filter-group .filters .filter .element.checkbox label {
    font-size: 14px;
    font-size: .875rem;
    font-weight: 500
}

.filter-group .filters .filter .element.text input {
    border-radius: 0.3125rem
}

.filter-group .filters .filter .element.select select {
    border-radius: 0.3125rem
}

.filter-group .filters .filter .element.select .bootstrap-select .dropdown-toggle.bs-placeholder {
    border-radius: 0.3125rem
}

.filter-group .filters .filter .element.text label,
.filter-group .filters .filter .element.select label,
.filter-group .filters .filter .element.textarea label,
.filter-group .filters .filter .element.range label {
    color: rgba(var(--vsm-black), 1);
    font-weight: 600
}

.filter-group .filters .filter .element.range {
    padding-top: 0.625rem;
    border-top: 0.0625rem solid rgba(var(--vsm-black), 0.05);
    border-bottom: 0.0625rem solid rgba(var(--vsm-black), 0.05);
    margin-bottom: 1.25rem
}

.filter-group .filters .filter .element.button-icons {
    width: 100%
}

.filter-group .filters .filter .element.button-icons label {
    color: rgba(var(--vsm-black), 1);
    font-weight: 600
}

.filter-group .filters .filter .element.button-icons .field {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between
}

.filter-group .filters .filter .element.button-icons .field button {
    flex: 1 0 24%;
    width: 24%;
    max-width: 24%;
    appearance: none;
    background: rgba(var(--vsm-black), 0.15);
    color: rgba(var(--vsm-black), 1);
    border: none;
    border-radius: 0.3125rem;
    aspect-ratio: 1/1;
    padding: 0.75rem 0
}

.filter-group .filters .filter .element.button-icons .field button i {
    font-size: 20px;
    font-size: 1.25rem
}

.filter-group .filters .filter .element.button-icons .field button:hover {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1)
}

.filter-group .filters .filter .element.button-icons .field button.active {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1)
}

.filter-group.open-filters .filter-heading:after {
    content: ""
}

.filter-group.open-filters .filters {
    display: block;
    padding-bottom: 0.9375rem
}

.paging-information~.paging-information {
    border-top: .063rem solid rgba(0, 0, 0, .1);
    border-bottom: 0px solid rgba(0, 0, 0, 0)
}

.paging-information {
    padding: .938rem 0;
    border-bottom: .063rem solid rgba(0, 0, 0, .1)
}

.paging-information>.row {
    align-items: center
}

.paging-information .total-items {
    font-size: 14px;
    font-size: .875rem
}

.paging-information .pagination {
    margin: 0
}

.paging-information .page-link {
    border: 0;
    font-size: 14px;
    font-size: .875rem;
    color: rgba(var(--vsm-body-colour), 1);
    text-decoration: underline;
    background-color: rgba(0, 0, 0, 0)
}

.paging-information .page-link:hover {
    color: rgba(var(--vsm-primary-colour), 1);
    background-color: rgba(0, 0, 0, 0)
}

.paging-information .page-item.active .page-link {
    background-color: rgba(0, 0, 0, 0);
    color: rgba(var(--vsm-primary-colour), 1);
    text-decoration: none
}

.vsm-job-details .vsm-body .container>.row {
    justify-content: space-between
}

.vsm-job-details .vsm-body .container>.row>.col:nth-child(1) {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 768px) {
    .vsm-job-details .vsm-body .container>.row>.col:nth-child(1) {
        width: 66.6666666667%
    }
}

.vsm-job-details .vsm-body .container>.row>.col:nth-child(2) {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 768px) {
    .vsm-job-details .vsm-body .container>.row>.col:nth-child(2) {
        width: 25%
    }
}

.vsm-job-details .back-to-link {
    margin: 1.875rem 0;
    display: inline-block
}

.vsm-job-details .md-heading {
    margin-bottom: .5rem
}

.vsm-job-details .post-date {
    display: block;
    font-size: 13px;
    font-size: .8125rem;
    color: rgba(var(--vsm-body-copy-colour), 0.5);
    margin: 1.25rem 0
}

.vsm-job-details .job-ref {
    display: block;
    font-size: 13px;
    font-size: .8125rem;
    color: rgba(var(--vsm-body-copy-colour), 0.5);
    margin: .625rem 0 0 0
}

.vsm-job-details ul.job-data-highlights {
    margin: 0;
    padding: 0;
    display: flex
}

.vsm-job-details ul.job-data-highlights li {
    margin-bottom: .625rem;
    margin-right: .938rem;
    display: flex;
    font-size: 14px;
    font-size: .875rem
}

.vsm-job-details .consultant {
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    border: .063rem solid rgba(0, 0, 0, .1);
    padding: 1.875rem .938rem;
    position: relative
}

@media(min-width: 768px) {
    .vsm-job-details .consultant {
        flex-direction: column;
        justify-content: center;
        border: 0px;
        padding: 0
    }
}

.vsm-job-details .consultant .media {
    width: 5.5rem;
    height: 5.5rem;
    position: relative;
    border-radius: 100em;
    overflow: hidden;
    margin: 0 1.25rem 0 0
}

@media(min-width: 768px) {
    .vsm-job-details .consultant .media {
        width: 8rem;
        height: 8rem
    }
}

@media(min-width: 768px) {
    .vsm-job-details .consultant .media {
        margin: 0 auto .75rem auto
    }
}

.vsm-job-details .consultant .media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden
}

.vsm-job-details .consultant .media[data-initials]:before {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    opacity: 1;
    content: attr(data-initials);
    display: inline-block;
    font-weight: 600;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0;
    width: 5.5rem;
    height: 5.5rem;
    line-height: 5.5rem;
    text-align: center;
    font-size: 14px;
    font-size: .875rem
}

@media(min-width: 768px) {
    .vsm-job-details .consultant .media[data-initials]:before {
        width: 8rem;
        height: 8rem;
        line-height: 8rem
    }
}

.vsm-job-details .consultant .consultant-details {
    margin-bottom: .75rem;
    text-align: left
}

@media(min-width: 768px) {
    .vsm-job-details .consultant .consultant-details {
        text-align: center
    }
}

.vsm-job-details .consultant .consultant-details .name {
    display: block;
    color: rgba(var(--vsm-black), 1);
    text-decoration: none;
    font-weight: 600
}

.vsm-job-details .consultant .consultant-details .name:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-job-details .consultant .consultant-details .position {
    display: block;
    font-size: 13px;
    font-size: .8125rem
}

.vsm-job-details .consultant ul.social {
    list-style: none;
    padding: 0;
    margin: 0px 0 0 0;
    display: flex;
    justify-content: start
}

@media(min-width: 768px) {
    .vsm-job-details .consultant ul.social {
        justify-content: center
    }
}

.vsm-job-details .consultant ul.social li {
    margin: 0 1.25rem 0 0
}

@media(min-width: 768px) {
    .vsm-job-details .consultant ul.social li {
        margin: 0 .625rem
    }
}

.vsm-job-details .consultant .btn {
    margin-left: auto
}

@media(min-width: 768px) {
    .vsm-job-details .consultant .btn {
        display: none
    }
}

.vsm-job-details .shortlist-bar {
    border-top: .063rem solid rgba(0, 0, 0, .1);
    padding: .625rem 0 0 0;
    margin: .625rem 0 0 0
}

.vsm-job-details .share {
    border-top: .063rem solid rgba(0, 0, 0, .1);
    padding: .625rem 0;
    margin: .625rem 0;
    display: flex;
    justify-content: flex-end
}

.vsm-job-details .share dl {
    display: flex
}

.vsm-job-details .share dl dt {
    color: rgba(var(--vsm-primary-colour), 1);
    font-size: 14px;
    font-size: .875rem;
    font-weight: 600
}

.vsm-job-details .share dl dd {
    margin: 0 .625rem
}

.vsm-job-details .share dl dd a {
    color: rgba(var(--vsm-black), 1)
}

.vsm-job-details .share dl dd a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-job-details .share dl dd:last-child {
    margin-right: 0
}

.vsm-job-details .add-to-shortlist {
    color: rgba(var(--vsm-body-copy-colour), 1);
    font-size: 14px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none
}

.vsm-job-details .add-to-shortlist:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-job-details .add-to-shortlist i:nth-child(1) {
    position: relative;
    margin-right: .625rem
}

.vsm-job-details .add-to-shortlist i:nth-child(1):before {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-job-details .add-to-shortlist.added i:nth-child(1):before {
    content: ""
}

.vsm-job-details .view-shortlist {
    color: rgba(var(--vsm-primary-colour), 1);
    font-size: 14px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none
}

.vsm-job-details .view-shortlist:hover {
    color: rgba(var(--vsm-black), 1)
}

.vsm-job-details .view-shortlist i {
    position: relative;
    margin-left: .625rem
}

.vsm-job-details .view-shortlist i:before {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-black), 1)
}

.vsm-job-details .view-status {
    color: rgba(var(--vsm-primary-colour), 1);
    font-size: 14px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: underline
}

.vsm-job-details .view-status:hover {
    color: rgba(var(--vsm-black), 1)
}

.vsm-job-details .view-status i {
    position: relative;
    margin-left: .625rem
}

.vsm-job-details .view-status i:before {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-black), 1)
}

.vsm-job-details .notice {
    background: rgba(var(--vsm-primary-colour), 0.1);
    padding: 1.25rem 2.5rem;
    margin: 1.875rem 0
}

.vsm-job-details .notice p {
    margin-bottom: 0
}

.vsm-job-details .form-holder {
    border: .063rem solid rgba(0, 0, 0, .1);
    padding: 4.3333% 8.3333%
}

.vsm-job-details .form-holder .content {
    margin: .625rem 0;
    text-align: center
}

.vsm-media-hub .article-tags {
    line-height: 1
}

.vsm-media-hub .article-tags dt {
    display: inline-flex
}

.vsm-media-hub .article-tags dd {
    display: inline-flex;
    position: relative;
    margin-bottom: .25rem
}

.vsm-media-hub .article-tags dd:after {
    content: ","
}

.vsm-media-hub .article-tags dd a {
    text-decoration: none;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(var(--vsm-body-copy-colour), 1)
}

.vsm-media-hub .article-tags dd a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub .article-tags dd:last-child:after {
    content: "";
    display: none
}

.vsm-media-hub .back-to-link {
    margin: 1.875rem 0;
    display: inline-block
}

.vsm-media-hub .tag {
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 12px;
    font-size: .75rem
}

.vsm-media-hub .post-date {
    font-size: 12px;
    font-size: .75rem;
    font-weight: 600;
    display: inline-block;
    margin: 1.25rem 0
}

.vsm-media-hub .time-to-read {
    display: inline-block;
    font-size: 12px;
    font-size: .75rem;
    font-weight: 600;
    position: relative;
    margin: 1.25rem 0 1.25rem .625rem
}

.vsm-media-hub .time-to-read:before {
    content: "";
    font-weight: 400;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-right: .313rem
}

.vsm-media-hub .author {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap
}

@media(min-width: 768px) {
    .vsm-media-hub .author {
        flex-wrap: nowrap
    }
}

.vsm-media-hub .author .media {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    overflow: hidden;
    border-radius: 100em;
    margin-right: .625rem;
    position: relative
}

.vsm-media-hub .author .media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden
}

.vsm-media-hub .author .media[data-initials]:before {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    opacity: 1;
    content: attr(data-initials);
    display: inline-block;
    font-weight: 600;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    font-size: 14px;
    font-size: .875rem
}

.vsm-media-hub .author .media+.media {
    margin-left: -1.5rem;
    z-index: 1
}

@media(min-width: 768px) {
    .vsm-media-hub .author .media+.media {
        margin-left: -2.5rem
    }
}

.vsm-media-hub .author .author-details {
    margin: 10px 0
}

.vsm-media-hub .author .author-details .title {
    font-weight: 600;
    color: rgba(var(--vsm-black), 1);
    margin-bottom: .188rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1
}

.vsm-media-hub .author .author-details .title a {
    display: inline;
    color: inherit;
    text-decoration: none
}

.vsm-media-hub .author .author-details .title a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub .author .author-details .subtitle {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 0px;
    font-size: 14px;
    font-size: .875rem
}

.vsm-media-hub .share {
    padding: 1.25rem 0 1.25rem 0;
    display: flex;
    justify-content: flex-start
}

.vsm-media-hub .share dl {
    display: flex;
    margin-bottom: 0
}

.vsm-media-hub .share dl dt {
    color: rgba(var(--vsm-primary-colour), 1);
    font-size: 14px;
    font-size: .875rem;
    font-weight: 600
}

.vsm-media-hub .share dl dd {
    margin: 0 .625rem
}

.vsm-media-hub .share dl dd a {
    color: rgba(var(--vsm-black), 1)
}

.vsm-media-hub .share dl dd a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub .share dl dd:last-child {
    margin-right: 0
}

.vsm-media-hub .post {
    margin-bottom: 1.875rem
}

.vsm-media-hub .post .post-title {
    color: rgba(var(--vsm-black), 1);
    font-weight: 500;
    font-size: 18px;
    font-size: 1.125rem;
    text-decoration: none;
    line-height: 1.2;
    display: inline-block;
    margin-bottom: .5rem
}

.vsm-media-hub .post .post-title:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub .post .post-date {
    display: block;
    margin: 0px 0
}

.vsm-media-hub .post .media {
    width: 5.938rem;
    height: 5.938rem
}

@media(min-width: 768px) {
    .vsm-media-hub .post .media {
        width: 100%;
        height: 100%
    }
}

@media(min-width: 1024px) {
    .vsm-media-hub .post .media {
        width: 5.938rem;
        height: 5.938rem
    }
}

.vsm-media-hub .post .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-media-hub .newsletter-signup {
    margin-bottom: 1.875rem
}

.vsm-media-hub .newsletter-signup .sm-heading {
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 1.25rem;
    font-weight: 300;
    font-size: 24px;
    font-size: 1.5rem
}

.vsm-media-hub .newsletter-signup .btn:hover {
    color: rgba(var(--vsm-white), 0.7)
}

.vsm-blog-article .time-to-read:before {
    color: rgba(var(--vsm-black), 1)
}

.vsm-blog-article .share {
    border-top: .063rem solid rgba(0, 0, 0, .1);
    border-bottom: 0px solid rgba(0, 0, 0, 0)
}

.vsm-blog-article .share~.share {
    border-top: .063rem solid rgba(0, 0, 0, .1);
    border-bottom: .063rem solid rgba(0, 0, 0, .1);
    margin: 1.25rem 0
}

.vsm-blog-article .media.featured {
    margin-bottom: 1.875rem
}

.vsm-blog-article .media.featured img {
    width: 100%
}

.vsm-blog-article .related-posts {
    margin-top: 1.875rem
}

.vsm-blog-article .related-posts .related-heading {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 1.875rem
}

.vsm-blog-article .hero.bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 9.375rem 0 1.875rem 0
}

.vsm-featured-blog-article .article-tags {
    margin-top: 1.25rem;
    margin-bottom: 0
}

.vsm-featured-blog-article .time-to-read:before {
    color: rgba(var(--vsm-white), 1)
}

.vsm-featured-blog-article .share {
    margin: 0 0 1.25rem 0;
    border-top: 0px solid rgba(0, 0, 0, 0);
    border-bottom: .063rem solid rgba(0, 0, 0, .1)
}

.vsm-featured-blog-article .share~.share {
    border-top: .063rem solid rgba(0, 0, 0, .1);
    border-bottom: .063rem solid rgba(0, 0, 0, .1);
    margin: 1.25rem 0
}

.vsm-featured-blog-article .media.featured {
    margin-bottom: 1.875rem
}

.vsm-featured-blog-article .media.featured img {
    width: 100%
}

.vsm-featured-blog-article .related-posts {
    margin-top: 1.875rem
}

.vsm-featured-blog-article .related-posts .related-heading {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 1.875rem
}

.vsm-featured-blog-article .hero-bg {
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 9.375rem 0 1.875rem 0;
    position: relative;
    color: rgba(var(--vsm-white), 1)
}

.vsm-featured-blog-article .hero-bg:before {
    content: "";
    background: #fff;
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(8, 8, 8) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(8, 8, 8) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(8, 8, 8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#080808", GradientType=1);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: multiply
}

.vsm-featured-blog-article .hero-bg .container {
    position: relative;
    z-index: 1
}

.vsm-featured-blog-article .hero-bg h1,
.vsm-featured-blog-article .hero-bg h2,
.vsm-featured-blog-article .hero-bg h3,
.vsm-featured-blog-article .hero-bg h4,
.vsm-featured-blog-article .hero-bg h5,
.vsm-featured-blog-article .hero-bg h6,
.vsm-featured-blog-article .hero-bg p,
.vsm-featured-blog-article .hero-bg li,
.vsm-featured-blog-article .hero-bg i,
.vsm-featured-blog-article .hero-bg .tag,
.vsm-featured-blog-article .hero-bg .author .title,
.vsm-featured-blog-article .hero-bg .author .subtitle {
    color: rgba(var(--vsm-white), 1)
}

.vsm-video-article .time-to-read:before {
    color: rgba(var(--vsm-black), 1)
}

.vsm-video-article .share {
    margin: 0 0 1.25rem 0;
    border-top: 0px solid rgba(0, 0, 0, 0);
    border-bottom: .063rem solid rgba(0, 0, 0, .1)
}

.vsm-video-article .share~.share {
    border-top: .063rem solid rgba(0, 0, 0, .1);
    border-bottom: .063rem solid rgba(0, 0, 0, .1);
    margin: 1.25rem 0
}

.vsm-video-article .media.featured {
    margin-bottom: 1.875rem
}

.vsm-video-article .media.featured img {
    width: 100%
}

.vsm-video-article .related-posts {
    margin-top: 1.875rem
}

.vsm-video-article .related-posts .related-heading {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 1.875rem
}

.vsm-event-article .article-tags {
    margin-top: 1.25rem;
    margin-bottom: 0
}

.vsm-event-article .share {
    margin: 0 0 1.25rem 0;
    border-top: 0px solid rgba(0, 0, 0, 0);
    border-bottom: .063rem solid rgba(0, 0, 0, .1)
}

.vsm-event-article .share~.share {
    border-top: .063rem solid rgba(0, 0, 0, .1);
    border-bottom: .063rem solid rgba(0, 0, 0, .1);
    margin: 1.25rem 0
}

.vsm-event-article .media.featured {
    margin-bottom: 1.875rem
}

.vsm-event-article .media.featured img {
    width: 100%
}

.vsm-event-article .related-posts {
    margin-top: 1.875rem
}

.vsm-event-article .related-posts .related-heading {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 1.875rem
}

.vsm-event-article .hero-bg {
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1.875rem 0 1.875rem 0;
    position: relative
}

.vsm-event-article .hero-bg:before {
    content: "";
    background: #fff;
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(8, 8, 8) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(8, 8, 8) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(8, 8, 8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#080808", GradientType=1);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: multiply
}

.vsm-event-article .hero-bg .container {
    position: relative;
    z-index: 1
}

@media(min-width: 768px) {
    .vsm-event-article .hero-bg .container>.row {
        justify-content: flex-end
    }

    .vsm-event-article .hero-bg .container>.row>.col {
        flex: 0 0 auto;
        width: 50%
    }
}

.vsm-event-article .register-btn {
    margin: 3.75rem 0
}

.vsm-event-article .register-btn .btn {
    width: 100%
}

@media(min-width: 768px) {
    .vsm-event-article .register-btn {
        max-width: 70%;
        margin: 3.75rem 15%
    }

    .vsm-event-article .register-btn .btn {
        width: 100%
    }
}

.vsm-event-article .speakers-info {
    border-top: .063rem solid rgba(0, 0, 0, .1);
    border-bottom: .063rem solid rgba(0, 0, 0, .1);
    padding: 1.875rem 0 0 0;
    margin: 1.875rem 0
}

.vsm-event-article .speakers {
    display: flex;
    margin: 1.875rem 0;
    flex-wrap: wrap
}

.vsm-event-article .speakers .author {
    width: 50%;
    flex: 1 0 50%
}

.vsm-event-article .event-box {
    background: rgba(var(--vsm-white), 0.9);
    border-radius: .313rem;
    padding: 1.875rem
}

.vsm-event-article .event-box .btn {
    width: 100%
}

.vsm-event-article .event-box .event-date {
    color: rgba(var(--vsm-black), 1);
    margin-bottom: 1.25rem
}

.vsm-event-article .event-box .event-date strong {
    font-size: 64px;
    font-size: 4rem;
    line-height: 1
}

.vsm-event-article .event-box .event-date span {
    font-size: 18px;
    font-size: 1.125rem;
    display: block;
    font-weight: 600
}

.vsm-event-article .date-time-location {
    margin-top: 1.875rem;
    border-bottom: .063rem solid rgba(0, 0, 0, .1);
    padding-bottom: 1.875rem
}

.vsm-event-article .date-time-location .date-time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 1.875rem 0 0 0
}

.vsm-event-article .date-time-location .date-time .date-info {
    margin-right: 1.25rem;
    flex: 1 0 auto;
    border: .063rem solid rgba(0, 0, 0, .1);
    border-radius: .5rem;
    overflow: hidden;
    width: 100%;
    max-width: 6.875rem;
    margin-bottom: 1.875rem
}

.vsm-event-article .date-time-location .date-time .date-info span {
    display: block;
    text-align: center;
    padding: .188rem .313rem
}

.vsm-event-article .date-time-location .date-time .date-info span.day {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700
}

.vsm-event-article .date-time-location .date-time .date-info span.date {
    font-size: 48px;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    padding: .125rem .313rem
}

.vsm-event-article .date-time-location .date-time .date-info span.month-year {
    font-size: 14px;
    font-size: .875rem;
    font-weight: 700;
    padding-bottom: .625rem
}

.vsm-event-article .date-time-location .date-time .time-info {
    flex: 1 0 auto;
    margin-bottom: 1.875rem
}

.vsm-event-article .date-time-location .date-time .time-info strong {
    display: block;
    color: rgba(var(--vsm-black), 1)
}

.vsm-event-article .date-time-location .date-time .time-info span {
    display: block
}

.vsm-event-article .date-time-location .location-info {
    margin: 1.25rem 0 0 0
}

.vsm-podcast-article .article-tags {
    margin-top: 1.25rem;
    margin-bottom: 0
}

.vsm-podcast-article .time-to-read:before {
    color: rgba(var(--vsm-white), 1)
}

.vsm-podcast-article .share {
    margin: 0 0 1.25rem 0;
    border-top: 0px solid rgba(0, 0, 0, 0);
    border-bottom: .063rem solid rgba(0, 0, 0, .1)
}

.vsm-podcast-article .share~.share {
    border-top: .063rem solid rgba(0, 0, 0, .1);
    border-bottom: .063rem solid rgba(0, 0, 0, .1);
    margin: 1.25rem 0
}

.vsm-podcast-article .media.featured {
    margin-bottom: 1.875rem
}

.vsm-podcast-article .media.featured img {
    width: 100%
}

.vsm-podcast-article .related-posts {
    margin-top: 1.875rem
}

.vsm-podcast-article .related-posts .related-heading {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 1.875rem
}

.vsm-podcast-article .hero-bg {
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 9.375rem 0 1.875rem 0;
    position: relative;
    color: rgba(var(--vsm-white), 1)
}

.vsm-podcast-article .hero-bg:before {
    content: "";
    background: #fff;
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(8, 8, 8) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(8, 8, 8) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(8, 8, 8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#080808", GradientType=1);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: multiply
}

.vsm-podcast-article .hero-bg .container {
    position: relative;
    z-index: 1
}

.vsm-podcast-article .hero-bg h1,
.vsm-podcast-article .hero-bg h2,
.vsm-podcast-article .hero-bg h3,
.vsm-podcast-article .hero-bg h4,
.vsm-podcast-article .hero-bg h5,
.vsm-podcast-article .hero-bg h6,
.vsm-podcast-article .hero-bg p,
.vsm-podcast-article .hero-bg li,
.vsm-podcast-article .hero-bg i,
.vsm-podcast-article .hero-bg .tag,
.vsm-podcast-article .hero-bg .author .title,
.vsm-podcast-article .hero-bg .author .subtitle {
    color: rgba(var(--vsm-white), 1)
}

.vsm-podcast-article .hero-bg .podcast {
    margin-bottom: 1.875rem
}

.vsm-insight-article .hero-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
    position: relative
}

.vsm-insight-article .hero-bg:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(var(--vsm-black), 0.3);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0
}

.vsm-insight-article .time-to-read:before {
    color: rgba(var(--vsm-black), 1)
}

.vsm-insight-article .share {
    border-top: .063rem solid rgba(0, 0, 0, .1);
    border-bottom: .063rem solid rgba(0, 0, 0, .1)
}

.vsm-insight-article .share~.share {
    border-top: .063rem solid rgba(0, 0, 0, .1);
    border-bottom: .063rem solid rgba(0, 0, 0, .1);
    margin: 1.25rem 0
}

.vsm-insight-article .media.featured {
    margin-bottom: 1.875rem
}

.vsm-insight-article .media.featured img {
    width: 100%
}

.vsm-insight-article .related-posts {
    margin-top: 1.875rem
}

.vsm-insight-article .related-posts .related-heading {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 1.875rem
}

.vsm-insight-article .hero.bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 9.375rem 0 1.875rem 0
}

.vsm-insight-article .downloadable-content ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.vsm-insight-article .downloadable-content ul li {
    border-top: .063rem solid rgba(0, 0, 0, .1);
    padding: 1.25rem 0;
    position: relative;
    display: flex
}

.vsm-insight-article .downloadable-content ul li a {
    text-decoration: none
}

.vsm-insight-article .downloadable-content ul li a strong {
    display: block;
    color: rgba(var(--vsm-black), 1)
}

.vsm-insight-article .downloadable-content ul li a strong span {
    display: block;
    color: rgba(var(--vsm-body-copy-colour), 1);
    font-weight: 300;
    font-size: 12px;
    font-size: .75rem
}

.vsm-insight-article .downloadable-content ul li a strong .inline-link {
    display: inline-block
}

.vsm-insight-article .downloadable-content ul li:before {
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-top: .313rem;
    margin-right: 1.313rem
}

.vsm-insight-article .downloadable-content ul li.pdf-content:before {
    content: "";
    font-weight: 400
}

.vsm-insight-article .downloadable-content ul li.doc-content:before {
    content: "";
    font-weight: 400
}

.vsm-insight-article .downloadable-content ul li.img-content:before {
    content: "";
    font-weight: 400
}

.vsm-insight-article .downloadable-content ul li.video-content:before {
    content: "";
    font-weight: 400
}

.vsm-insight-article .downloadable-content ul li.audio-content:before {
    content: "";
    font-weight: 400
}

.vsm-media-hub.vsm-insight-article .hero-bg {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: rgba(var(--vsm-white), 1);
    padding: 1.875rem 0;
    margin-bottom: 0.9375rem
}

.vsm-media-hub.vsm-insight-article .hero-bg .vsm-data-capture-alt .checkbox a {
    color: rgba(var(--vsm-white), 1)
}

.vsm-media-hub.vsm-insight-article .hero-bg:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--vsm-black), 0.5)
}

.vsm-media-hub.vsm-insight-article .hero-bg .container {
    position: relative;
    z-index: 1
}

.vsm-media-hub.vsm-insight-article .hero-bg .container>.row .col {
    flex: 1 0 100%
}

@media(min-width: 1024px) {
    .vsm-media-hub.vsm-insight-article .hero-bg .container>.row .col {
        flex: 1 0 0
    }
}

.vsm-media-hub.vsm-insight-article .hero-bg .container .details .md-heading {
    font-size: 30px;
    font-size: 1.875rem
}

.vsm-media-hub.vsm-insight-article .hero-bg .container .btn {
    background-color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub.vsm-insight-article .hero-bg .container .tag {
    color: rgba(var(--vsm-white), 1)
}

.vsm-media-hub.vsm-insight-article .hero-bg .container .tag:hover {
    color: rgba(var(--vsm-white), 1)
}

.vsm-media-hub.vsm-insight-article .hero-bg .container .md-heading {
    color: rgba(var(--vsm-white), 1)
}

.vsm-media-hub.vsm-insight-article .hero-bg .container .author .author-details .title,
.vsm-media-hub.vsm-insight-article .hero-bg .container .author .author-details .subtitle {
    color: rgba(var(--vsm-white), 1)
}

.vsm-responsive-nav {
    top: 0;
    position: sticky;
    z-index: 15;
    background: #fff;
    border-top: 1px solid rgba(var(--vsm-body-copy-colour), 0.1);
    border-bottom: 1px solid rgba(var(--vsm-body-copy-colour), 0.1);
    transition: opacity 800ms ease;
    opacity: 1;
    padding: .938rem 0
}

.vsm-responsive-nav.switch-fixed {
    position: fixed;
    width: 100%
}

.vsm-responsive-nav.no-search {
    padding: .625rem 0
}

.vsm-responsive-nav .search-bar .input-group {
    padding: 1px;
    border: 1px solid rgba(0, 0, 0, .1)
}

.vsm-responsive-nav .search-bar .input-group input[type=text] {
    border: 0;
    border-radius: 0
}

.vsm-responsive-nav .search-bar .btn {
    background: #fff;
    padding: .625rem
}

.vsm-responsive-nav .search-bar .btn i {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-responsive-nav .nav-wrapper {
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center
}

.vsm-responsive-nav .displayed-nav {
    display: flex;
    padding: 0;
    list-style: none;
    margin-bottom: 0;
    width: calc(100% - 60px)
}

.vsm-responsive-nav .displayed-nav li {
    white-space: nowrap
}

.vsm-responsive-nav .displayed-nav li a.back-to-link {
    color: rgba(var(--vsm-primary-colour), 1);
    font-weight: 700
}

.vsm-responsive-nav .displayed-nav li.display {
    display: inline-flex;
    width: auto
}

.vsm-responsive-nav .displayed-nav li.hide {
    display: none;
    width: 0
}

.vsm-responsive-nav .displayed-nav li a {
    padding: .625rem .6rem;
    white-space: nowrap;
    font-size: 14px;
    font-size: .875rem;
    text-decoration: none;
    color: rgba(var(--vsm-black), 0.5);
    font-weight: 500
}

.vsm-responsive-nav .displayed-nav li a:hover {
    color: rgba(var(--vsm-black), 1)
}

.vsm-responsive-nav .displayed-nav li:first-child a {
    padding-left: 0
}

.vsm-responsive-nav .more-nav {
    display: flex;
    position: absolute;
    right: 0;
    overflow: visible;
    padding: 0;
    list-style: none;
    margin-bottom: 0
}

.vsm-responsive-nav .more-nav li {
    position: relative
}

.vsm-responsive-nav .more-nav li span {
    cursor: pointer;
    font-size: 14px;
    font-size: .875rem;
    text-decoration: none;
    color: rgba(var(--vsm-black), 0.5);
    font-weight: 500;
    display: block;
    padding: .625rem
}

.vsm-responsive-nav .more-nav li span:hover {
    color: rgba(var(--vsm-black), 1)
}

.vsm-responsive-nav .more-nav li span i {
    margin-left: .25rem;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-responsive-nav .more-nav li .submenu {
    display: none;
    position: absolute;
    right: 0;
    padding: .625rem;
    list-style: none;
    background: rgba(var(--vsm-white), 1);
    box-shadow: 0 .625rem 1.875rem 0 rgba(0, 0, 0, .05);
    border-radius: .313rem;
    border-top-right-radius: 0;
    width: 10rem;
    font-size: 14px;
    font-size: .875rem
}

.vsm-responsive-nav .more-nav li .submenu li a {
    text-decoration: none;
    color: rgba(var(--vsm-black), 0.5);
    display: block;
    font-weight: 500;
    padding: .325rem 0
}

.vsm-responsive-nav .more-nav li .submenu li a:hover {
    color: rgba(var(--vsm-black), 1)
}

.vsm-responsive-nav .more-nav:hover li span {
    background: rgba(var(--vsm-white), 1);
    box-shadow: 0 -0.625rem 1.875rem 0 rgba(0, 0, 0, .05);
    border-top-left-radius: .313rem;
    border-top-right-radius: .313rem
}

.vsm-responsive-nav .more-nav:hover li .submenu {
    display: block
}

.vsm-responsive-nav .brand .logo-1 {
    display: block
}

.vsm-responsive-nav .brand .logo-2 {
    display: none
}

@media(min-width: 1024px) {
    .vsm-responsive-nav .brand .logo-1 {
        display: none
    }

    .vsm-responsive-nav .brand .logo-2 {
        display: block
    }
}

.vsm-responsive-nav+.vsm-responsive-nav {
    border-top: 0;
    border-bottom: 0
}

.vsm-media-hub-featured-section .bg {
    background: rgba(var(--vsm-body-copy-colour), 0.05)
}

.vsm-media-hub-featured-section .vsm-header .sm-heading {
    margin: 30px 0 0 0
}

.vsm-media-hub-featured-section .vsm-body {
    padding: 0 0 30px 0
}

.vsm-media-hub-featured-section .vsm-body .xs-heading {
    margin: 30px 0
}

.vsm-media-hub-featured-section .vsm-body .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-media-hub-featured-section .vsm-body .author {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap
}

@media(min-width: 768px) {
    .vsm-media-hub-featured-section .vsm-body .author {
        flex-wrap: nowrap
    }
}

.vsm-media-hub-featured-section .vsm-body .author .media {
    width: 2.125rem;
    height: 2.125rem;
    min-width: 2.125rem;
    overflow: hidden;
    border-radius: 100em;
    margin-right: .311rem
}

.vsm-media-hub-featured-section .vsm-body .author .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-media-hub-featured-section .vsm-body .author .media+.media {
    margin-left: -0.75rem
}

@media(min-width: 768px) {
    .vsm-media-hub-featured-section .vsm-body .author .media+.media {
        margin-left: -1.25rem
    }
}

.vsm-media-hub-featured-section .vsm-body .author .author-details {
    margin: 10px 0
}

.vsm-media-hub-featured-section .vsm-body .author .author-details .title {
    font-weight: 300;
    color: rgba(var(--vsm-black), 1);
    margin-bottom: .188rem;
    font-size: 12px;
    font-size: .75rem;
    line-height: 1
}

.vsm-media-hub-featured-section .vsm-body .author .author-details .title a {
    display: inline;
    font-weight: 300;
    color: rgba(var(--vsm-black), 1);
    font-size: 12px;
    font-size: .75rem;
    line-height: 1;
    text-decoration: none
}

.vsm-media-hub-featured-section .vsm-body .author .author-details .title a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub-featured-section .vsm-body .author .author-details .subtitle {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 0px;
    font-size: 12px;
    font-size: .75rem
}

.vsm-media-hub-featured-section .vsm-body .author .author-details .post-date:before {
    content: ", "
}

.vsm-media-hub-featured-section .vsm-body .author .media[data-initials]:before {
    width: 2.125rem;
    height: 2.125rem;
    min-width: 2.125rem;
    line-height: 2.125rem;
    font-size: 12px;
    font-size: .75rem
}

.vsm-media-hub-featured-section .vsm-body .post .media {
    aspect-ratio: 16/9
}

.vsm-media-hub-featured-section .vsm-body .post .author {
    margin-top: .938rem
}

.vsm-media-hub-featured-section .vsm-body .post .author .media {
    aspect-ratio: 1/1
}

.vsm-media-hub-featured-section .vsm-body .post .post-date {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 0px;
    margin-top: .938rem;
    font-size: 12px;
    font-size: .75rem
}

.vsm-media-hub-featured-section .vsm-body .post a {
    display: flex
}

.vsm-media-hub-featured-section .vsm-body .post a.tag {
    font-weight: 600;
    color: rgba(var(--vsm-primary-colour), 1);
    margin-top: .938rem;
    font-size: 12px;
    font-size: .75rem;
    text-decoration: none;
    display: inline-block
}

.vsm-media-hub-featured-section .vsm-body .post a.post-title {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-top: .238rem;
    font-size: 18px;
    font-size: 1.125rem;
    text-decoration: none
}

.vsm-media-hub-featured-section .vsm-body .post a.post-title:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.order-md-1 .post .tag {
    margin-top: 0
}

@media(min-width: 768px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.order-md-1 .post .tag {
        margin-top: .938rem
    }
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(2) {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 576px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(2) {
        width: 100%
    }
}

@media(min-width: 768px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(2) {
        width: 25%
    }
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1) {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 576px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1) {
        width: 100%
    }
}

@media(min-width: 768px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1) {
        width: 75%
    }
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:only-child {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 576px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:only-child {
        width: 100%
    }
}

@media(min-width: 768px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:only-child {
        width: 100%
    }
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:only-child.order-md-1>.row>.col .tag {
    margin-top: .938rem
}

@media(min-width: 576px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:only-child.order-md-1>.row>.col:nth-child(1) {
        max-width: 33.333333%
    }

    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:only-child.order-md-1>.row>.col:nth-child(1) .post a.post-title {
        font-size: 16px;
        font-size: 1rem
    }

    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:only-child.order-md-1>.row>.col:nth-child(2) {
        max-width: 33.333333%
    }

    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:only-child.order-md-1>.row>.col:nth-child(3) {
        max-width: 33.333333%
    }
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:only-child.order-md-1>.row>.col .post .post-title {
    font-size: 18px;
    font-size: 1.125rem
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:only-child.order-md-2>.row>.col:nth-child(1) {
    border-left: 0px solid rgba(0, 0, 0, 0)
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1) {
    flex: 0 0 auto
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col .post-title {
    font-weight: 600;
    color: rgba(var(--vsm-black), 1)
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col .post-title:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(1) {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

@media(min-width: 576px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(1) {
        width: 100%
    }
}

@media(min-width: 768px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(1) {
        width: 58.3333333333%;
        border-left: 1px solid rgba(0, 0, 0, .1);
        border-right: 1px solid rgba(0, 0, 0, .1)
    }
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(1)>.post:nth-of-type(1) {
    flex: 0 0 auto;
    width: 100%
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(1)>.post:nth-of-type(1) .post-title {
    font-weight: 600;
    color: rgba(var(--vsm-black), 1);
    margin-bottom: .188rem;
    font-size: 30px;
    font-size: 1.875rem;
    text-decoration: none;
    line-height: 1.2
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(1)>.post:nth-of-type(1) .post-title:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(2) {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 576px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(2) {
        width: 100%
    }
}

@media(min-width: 768px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(2) {
        width: 41.6666666667%
    }
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(2)>.row>.col {
    flex: 1 0 50%;
    width: 50%
}

@media(min-width: 768px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(2)>.row>.col {
        flex: 0 0 auto;
        width: 100%
    }
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col {
    flex: 0 0 auto;
    width: 100%
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post {
    display: flex;
    flex-direction: row;
    margin-bottom: .938rem
}

.vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post .media {
    max-width: 9.375rem;
    margin-right: .938rem
}

@media(min-width: 576px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col {
        width: 33.33333%
    }

    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post {
        display: flex;
        flex-direction: column;
        margin-bottom: .938rem
    }

    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post .tag {
        margin-top: .938rem
    }

    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post .media {
        max-width: 100%;
        margin-right: 0rem
    }
}

@media(min-width: 768px) {
    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col {
        width: 100%
    }

    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post {
        display: flex;
        flex-direction: column
    }

    .vsm-media-hub-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post .media {
        max-width: 100%;
        margin-right: 0rem
    }
}

.vsm-media-hub-category-latest-carousel {
    overflow: hidden
}

.vsm-media-hub-category-latest-carousel .flex-wrapper {
    display: flex;
    flex-direction: column
}

.vsm-media-hub-category-latest-carousel .flex-wrapper .flex-item:nth-child(1) {
    order: 1
}

.vsm-media-hub-category-latest-carousel .flex-wrapper .flex-item:nth-child(2) {
    order: 2
}

.vsm-media-hub-category-latest-carousel .swiper-container {
    overflow: visible;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .2)
}

.vsm-media-hub-category-latest-carousel .swiper-pagination {
    position: relative;
    margin: 1.875rem 0 0 0;
    display: none
}

.vsm-media-hub-category-latest-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: 0 .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-media-hub-category-latest-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub-category-latest-carousel .swiper-navigation {
    position: relative;
    display: flex;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding: 1.875rem 0;
    justify-content: flex-end
}

.vsm-media-hub-category-latest-carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-media-hub-category-latest-carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-media-hub-category-latest-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-media-hub-category-latest-carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-media-hub-category-latest-carousel .swiper-button-next:after {
    content: ""
}

.vsm-media-hub-category-latest-carousel .category .sm-heading {
    margin: 0 0 2.5rem 0
}

.vsm-media-hub-category-latest-carousel .category .col {
    flex: 1 0 50%;
    width: 50%
}

.vsm-media-hub-category-latest-carousel .category .col:nth-child(1) .post-title {
    margin: .938rem 0
}

.vsm-media-hub-category-latest-carousel .category .col:nth-child(1) .post-title:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub-category-latest-carousel .category .col:nth-child(2) a {
    color: rgba(var(--vsm-primary-colour), 1);
    text-decoration: none;
    font-weight: 600
}

.vsm-media-hub-category-latest-carousel .category .col:nth-child(2) .post {
    padding: 0 0 .938rem 0;
    margin-bottom: .938rem;
    border-bottom: 1px solid rgba(0, 0, 0, .2)
}

.vsm-media-hub-category-latest-carousel .category .col:nth-child(2) .post a {
    color: rgba(var(--vsm-black), 1);
    text-decoration: none;
    font-weight: 600
}

.vsm-media-hub-category-latest-carousel .category .col:nth-child(2) .post a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub-category-latest-carousel .category .post .media {
    aspect-ratio: 16/9;
    overflow: hidden;
    display: flex
}

.vsm-media-hub-category-latest-carousel .category .post .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-media-hub-category-latest-carousel .category .post a {
    color: rgba(var(--vsm-black), 1);
    text-decoration: none;
    font-weight: 600
}

.vsm-media-hub-category-latest-carousel .category .post .post-title {
    display: block;
    font-size: 18px;
    font-size: 1.125rem
}

.vsm-media-hub-category-latest-carousel .category .post .post-date {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 0px;
    margin-top: .938rem;
    font-size: 12px;
    font-size: .75rem
}

.vsm-media-hub-extra-row .vsm-body .container>.row {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding-bottom: 2.5rem
}

.vsm-media-hub-extra-row .vsm-header {
    padding: 2.5rem 0
}

.vsm-media-hub-extra-row .col {
    flex: 1 0 50%;
    width: 50%
}

@media(min-width: 576px) {
    .vsm-media-hub-extra-row .col {
        flex: 1 0 50%;
        width: 50%
    }
}

@media(min-width: 768px) {
    .vsm-media-hub-extra-row .col {
        flex: 1 0 25%;
        width: 25%
    }
}

.vsm-media-hub-extra-row .post .media {
    aspect-ratio: 16/9
}

.vsm-media-hub-extra-row .post .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-media-hub-extra-row .post .author {
    margin-top: .938rem
}

.vsm-media-hub-extra-row .post .author .media {
    aspect-ratio: 1/1
}

.vsm-media-hub-extra-row .post .post-date {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 0px;
    margin-top: .938rem;
    font-size: 12px;
    font-size: .75rem
}

.vsm-media-hub-extra-row .post a {
    display: flex
}

.vsm-media-hub-extra-row .post a.tag {
    font-weight: 600;
    color: rgba(var(--vsm-primary-colour), 1);
    margin-top: .938rem;
    font-size: 12px;
    font-size: .75rem;
    text-decoration: none
}

.vsm-media-hub-extra-row .post a.post-title {
    font-weight: 600;
    color: rgba(var(--vsm-black), 1);
    margin-top: .238rem;
    font-size: 18px;
    font-size: 1.125rem;
    text-decoration: none
}

.vsm-media-hub-extra-row .post a.post-title:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub-more-row .vsm-body {
    padding: 0 0 2.5rem 0
}

.vsm-media-hub-more-row .vsm-body .container>.row {
    border-bottom: 1px solid rgba(0, 0, 0, .2)
}

.vsm-media-hub-more-row .vsm-header {
    padding: 2.5rem 0
}

.vsm-media-hub-more-row .col {
    flex: 1 0 100%;
    width: 100%
}

@media(min-width: 768px) {
    .vsm-media-hub-more-row .col {
        flex: 1 0 50%;
        width: 50%
    }
}

.vsm-media-hub-more-row .col:nth-child(1) .post-title {
    font-size: 30px;
    font-size: 1.875rem
}

.vsm-media-hub-more-row .col:nth-child(2) .col {
    flex: 1 0 50%;
    width: 50%
}

.vsm-media-hub-more-row .col:nth-child(2) .col .post-title {
    font-size: 18px;
    font-size: 1.125rem
}

.vsm-media-hub-more-row .post .media {
    aspect-ratio: 16/9
}

.vsm-media-hub-more-row .post .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-media-hub-more-row .post .author {
    margin-top: .938rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap
}

@media(min-width: 768px) {
    .vsm-media-hub-more-row .post .author {
        flex-wrap: nowrap
    }
}

.vsm-media-hub-more-row .post .author .media {
    width: 2.125rem;
    height: 2.125rem;
    min-width: 2.125rem;
    overflow: hidden;
    border-radius: 100em;
    margin-right: .311rem
}

.vsm-media-hub-more-row .post .author .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-media-hub-more-row .post .author .media+.media {
    margin-left: -0.75rem
}

@media(min-width: 768px) {
    .vsm-media-hub-more-row .post .author .media+.media {
        margin-left: -1.25rem
    }
}

.vsm-media-hub-more-row .post .author .author-details {
    margin: 10px 0
}

.vsm-media-hub-more-row .post .author .author-details .title {
    font-weight: 300;
    color: rgba(var(--vsm-black), 1);
    margin-bottom: .188rem;
    font-size: 12px;
    font-size: .75rem;
    line-height: 1
}

.vsm-media-hub-more-row .post .author .author-details .title a {
    display: inline;
    font-weight: 300;
    color: rgba(var(--vsm-black), 1);
    font-size: 12px;
    font-size: .75rem;
    line-height: 1;
    text-decoration: none
}

.vsm-media-hub-more-row .post .author .author-details .title a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub-more-row .post .author .author-details .subtitle {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 0px;
    font-size: 12px;
    font-size: .75rem
}

.vsm-media-hub-more-row .post .author .author-details .post-date:before {
    content: ", "
}

.vsm-media-hub-more-row .post .author .media[data-initials]:before {
    width: 2.125rem;
    height: 2.125rem;
    min-width: 2.125rem;
    line-height: 2.125rem;
    font-size: 12px;
    font-size: .75rem
}

.vsm-media-hub-more-row .post .post-date {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 0px;
    margin-top: .938rem;
    font-size: 12px;
    font-size: .75rem
}

.vsm-media-hub-more-row .post a {
    display: flex
}

.vsm-media-hub-more-row .post a.tag {
    font-weight: 600;
    color: rgba(var(--vsm-primary-colour), 1);
    margin-top: .938rem;
    font-size: 12px;
    font-size: .75rem;
    text-decoration: none;
    display: inline-block
}

.vsm-media-hub-more-row .post a.post-title {
    font-weight: 600;
    color: rgba(var(--vsm-black), 1);
    margin-top: .238rem;
    font-size: 18px;
    font-size: 1.125rem;
    text-decoration: none
}

.vsm-media-hub-more-row .post a.post-title:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub-search-results .vsm-header {
    margin: 2.5rem 0
}

.vsm-media-hub-search-results .vsm-body .container>.row>.col:nth-child(1) {
    flex: 0 0 100%;
    width: 100%
}

@media(min-width: 768px) {
    .vsm-media-hub-search-results .vsm-body .container>.row>.col:nth-child(1) {
        flex: 0 0 66.6666666667%;
        width: 66.6666666667%
    }
}

.vsm-media-hub-search-results .vsm-body .container>.row>.col:nth-child(2) {
    flex: 0 0 100%;
    width: 100%
}

@media(min-width: 768px) {
    .vsm-media-hub-search-results .vsm-body .container>.row>.col:nth-child(2) {
        flex: 0 0 25%;
        width: 25%
    }
}

.vsm-media-hub-search-results .search-results {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 0 0
}

.vsm-media-hub-search-results .search-results li {
    padding: 0 0 1.875rem 0;
    margin: 0 0 1.875rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.vsm-media-hub-search-results .search-results li:last-child {
    margin: 0 0 0rem 0
}

.vsm-media-hub-search-results .search-results li .post {
    display: flex;
    flex-direction: column
}

@media(min-width: 768px) {
    .vsm-media-hub-search-results .search-results li .post {
        flex-direction: row
    }
}

.vsm-media-hub-search-results .search-results li .post .media {
    aspect-ratio: 16/9
}

@media(min-width: 768px) {
    .vsm-media-hub-search-results .search-results li .post .media {
        max-width: 40%;
        margin-right: .938rem
    }
}

.vsm-media-hub-search-results .search-results li .post .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-media-hub-search-results .search-results li .post .author {
    margin-top: .938rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap
}

@media(min-width: 768px) {
    .vsm-media-hub-search-results .search-results li .post .author {
        flex-wrap: nowrap
    }
}

.vsm-media-hub-search-results .search-results li .post .author .media {
    width: 2.125rem;
    height: 2.125rem;
    min-width: 2.125rem;
    overflow: hidden;
    border-radius: 100em;
    margin-right: .311rem
}

.vsm-media-hub-search-results .search-results li .post .author .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-media-hub-search-results .search-results li .post .author .media+.media {
    margin-left: -0.75rem
}

@media(min-width: 768px) {
    .vsm-media-hub-search-results .search-results li .post .author .media+.media {
        margin-left: -1.25rem
    }
}

.vsm-media-hub-search-results .search-results li .post .author .author-details {
    margin: 10px 0
}

.vsm-media-hub-search-results .search-results li .post .author .author-details .title {
    font-weight: 300;
    color: rgba(var(--vsm-black), 1);
    margin-bottom: .188rem;
    font-size: 12px;
    font-size: .75rem;
    line-height: 1
}

.vsm-media-hub-search-results .search-results li .post .author .author-details .title a {
    display: inline;
    font-weight: 300;
    color: rgba(var(--vsm-black), 1);
    font-size: 12px;
    font-size: .75rem;
    line-height: 1;
    text-decoration: none
}

.vsm-media-hub-search-results .search-results li .post .author .author-details .title a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub-search-results .search-results li .post .author .author-details .subtitle {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 0px;
    font-size: 12px;
    font-size: .75rem
}

.vsm-media-hub-search-results .search-results li .post .author .author-details .post-date:before {
    content: ", "
}

.vsm-media-hub-search-results .search-results li .post .author .media[data-initials]:before {
    width: 2.125rem;
    height: 2.125rem;
    min-width: 2.125rem;
    line-height: 2.125rem;
    font-size: 12px;
    font-size: .75rem
}

.vsm-media-hub-search-results .search-results li .post .post-date {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 0px;
    margin-top: .938rem;
    font-size: 12px;
    font-size: .75rem
}

.vsm-media-hub-search-results .search-results li .post a {
    display: flex
}

.vsm-media-hub-search-results .search-results li .post a.tag {
    font-weight: 600;
    color: rgba(var(--vsm-primary-colour), 1);
    margin-top: .938rem;
    font-size: 12px;
    font-size: .75rem;
    text-decoration: none;
    display: inline-block
}

.vsm-media-hub-search-results .search-results li .post a.post-title {
    font-weight: 600;
    color: rgba(var(--vsm-black), 1);
    margin-top: .238rem;
    font-size: 18px;
    font-size: 1.125rem;
    text-decoration: none
}

.vsm-media-hub-search-results .search-results li .post a.post-title:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-media-hub-search-results .search-results li .post .post-snippet {
    display: none
}

@media(min-width: 768px) {
    .vsm-media-hub-search-results .search-results li .post .post-snippet {
        display: block
    }
}

.vsm-media-hub-search-results .side-filters dl {
    margin-top: 40px
}

.vsm-media-hub-search-results .side-filters dl dt {
    margin-bottom: .938rem;
    color: rgba(var(--vsm-black), 1)
}

.vsm-media-hub-search-results .side-filters dl dd {
    margin-bottom: .938rem
}

.vsm-media-hub-search-results .side-filters dl dd a {
    color: rgba(var(--vsm-body-copy-colour), 1);
    text-decoration: none;
    font-size: 18px;
    font-size: 1.125rem
}

.vsm-media-hub-search-results .side-filters dl dd a span {
    color: rgba(var(--vsm-primary-colour), 1);
    text-decoration: underline
}

.vsm-media-hub-search-results .paging-information {
    margin-bottom: .938rem
}

.vsm-profile-header .bg {
    background: rgba(var(--vsm-body-copy-colour), 0.05);
    padding: 2.5rem 0
}

@media(min-width: 768px) {
    .vsm-profile-header .vsm-body .container>.row>.col {
        flex: 0 0 auto;
        width: 83.3333333333%
    }
}

.vsm-profile-header .author {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    flex-direction: column
}

@media(min-width: 768px) {
    .vsm-profile-header .author {
        flex-direction: row
    }
}

.vsm-profile-header .author .media {
    width: 9.688rem;
    height: 9.688rem;
    overflow: hidden;
    border-radius: 100em
}

@media(min-width: 768px) {
    .vsm-profile-header .author .media {
        margin-right: 1.825rem
    }
}

.vsm-profile-header .author .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-profile-header .author .media[data-initials]:before {
    width: 9.6885rem;
    height: 9.688rem;
    min-width: 9.688rem;
    line-height: 9.688rem;
    font-size: 16px;
    font-size: 1rem
}

.vsm-profile-header .author .author-details {
    text-align: center
}

@media(min-width: 768px) {
    .vsm-profile-header .author .author-details {
        text-align: left
    }
}

.vsm-profile-header .author .author-details .title {
    font-weight: 600;
    margin-bottom: .188rem;
    margin-top: 1.188rem;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1;
    color: rgba(var(--vsm-black), 1)
}

@media(min-width: 768px) {
    .vsm-profile-header .author .author-details .title {
        margin-top: 0rem;
        margin-bottom: .188rem
    }
}

.vsm-profile-header .author .author-details .subtitle {
    font-weight: 400;
    margin-bottom: 1.188rem;
    font-size: 14px;
    font-size: .875rem
}

@media(min-width: 768px) {
    .vsm-profile-header .author .author-details .subtitle {
        margin-bottom: 0px
    }
}

.vsm-profile-header .author .author-details .social dt {
    display: inline-flex;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 600;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-profile-header .author .author-details .social dd {
    display: inline-flex;
    margin: 0 10px
}

.vsm-profile-header .author .author-details .social dd a {
    color: rgba(var(--vsm-black), 1)
}

.vsm-profile-header .author .author-details .social dd a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-video-carousel .vsm-header {
    margin-bottom: 1.875rem
}

.vsm-video-carousel .vsm-body {
    overflow: hidden;
    padding: 1.875rem 0
}

.vsm-video-carousel .flex-wrapper {
    display: flex;
    flex-direction: column
}

.vsm-video-carousel .flex-wrapper .flex-item:nth-child(1) {
    order: 1
}

.vsm-video-carousel .flex-wrapper .flex-item:nth-child(2) {
    order: 2
}

.vsm-video-carousel .swiper-pagination {
    position: relative;
    margin: 1.875rem 0 0 0;
    display: none
}

.vsm-video-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: 0 .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-video-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-video-carousel .swiper-navigation {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end
}

.vsm-video-carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-video-carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-video-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-video-carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-video-carousel .swiper-button-next:after {
    content: ""
}

.vsm-video-carousel .swiper-container {
    overflow: visible
}

.vsm-video-carousel .video-card a {
    display: block
}

.vsm-video-carousel .video-card a:hover .play-btn:after {
    background-color: rgba(var(--vsm-white), 0.5)
}

.vsm-video-carousel .video-card .no-media .play-btn {
    display: none
}

.vsm-video-carousel .video-card .play-btn {
    position: absolute
}

.vsm-video-carousel .video-card .play-btn:after {
    transition: 300ms background-color ease-in-out;
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-indent: 5px;
    font-size: 2.563rem;
    color: rgba(var(--vsm-primary-colour), 1);
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 100rem;
    background-color: rgba(var(--vsm-white), 0.2)
}

.vsm-video-carousel .video-card .media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.vsm-video-carousel .video-card .media:before {
    content: "";
    background: #fff;
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(8, 8, 8) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(8, 8, 8) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(8, 8, 8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#080808", GradientType=1);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: multiply
}

.vsm-video-carousel .video-card .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1.2
}

.vsm-video-carousel .video-card .content {
    text-align: left;
    position: relative;
    z-index: 1;
    position: absolute;
    bottom: 0;
    color: rgba(var(--vsm-white), 1);
    padding: 1.563rem
}

.vsm-testimonial-carousel {
    position: relative;
    overflow: hidden
}

.vsm-testimonial-carousel .vsm-header {
    margin-bottom: 1.875rem
}

.vsm-testimonial-carousel .vsm-header .col {
    flex: 0 0 auto;
    width: 83.3333333333%
}

.vsm-testimonial-carousel .swiper-container {
    overflow: visible
}

.vsm-testimonial-carousel .swiper-pagination {
    display: none;
    position: relative;
    margin: 1.875rem 0 0 0
}

.vsm-testimonial-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-testimonial-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-testimonial-carousel .swiper-navigation {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end
}

.vsm-testimonial-carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-testimonial-carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-testimonial-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-testimonial-carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-testimonial-carousel .swiper-button-next:after {
    content: ""
}

.vsm-testimonial-carousel .testimonial-data {
    margin-bottom: .938rem;
    padding: 3.75rem;
    min-height: 30rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    color: rgba(var(--vsm-white), 1)
}

.vsm-testimonial-carousel .testimonial-data h1,
.vsm-testimonial-carousel .testimonial-data h2,
.vsm-testimonial-carousel .testimonial-data h3,
.vsm-testimonial-carousel .testimonial-data h4,
.vsm-testimonial-carousel .testimonial-data h5,
.vsm-testimonial-carousel .testimonial-data h6,
.vsm-testimonial-carousel .testimonial-data p {
    color: rgba(var(--vsm-white), 1)
}

.vsm-testimonial-carousel .testimonial-data::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(var(--vsm-black), 0.3);
    mix-blend-mode: multiply;
    top: 0;
    left: 0;
    z-index: 0
}

.vsm-testimonial-carousel .testimonial-data .row {
    position: relative;
    z-index: 1
}

.vsm-testimonial-carousel .testimonial-data .col {
    flex: 0 0 auto;
    width: 83.3333333333%
}

.vsm-testimonial-carousel .author {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem
}

.vsm-testimonial-carousel .author .media {
    width: 5.938rem;
    height: 5.938rem;
    overflow: hidden;
    border-radius: 100em;
    margin-right: .625rem
}

.vsm-testimonial-carousel .author .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-testimonial-carousel .author .author-details .title {
    font-weight: 600;
    margin-bottom: .188rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1
}

.vsm-testimonial-carousel .author .author-details .subtitle {
    font-weight: 400;
    margin-bottom: 0px;
    font-size: 14px;
    font-size: .875rem
}

.vsm-card-links .vsm-header {
    margin-bottom: 1.875rem
}

.vsm-card-links .vsm-body .col {
    flex: 1 0 auto;
    width: 100%
}

@media(min-width: 768px) {
    .vsm-card-links .vsm-body .col {
        width: 33.3333%
    }
}

.vsm-card-links .vsm-body .col a.card-link {
    display: flex;
    text-decoration: none;
    box-shadow: 0 0 1.875rem rgba(0, 0, 0, .05);
    transition: 300ms all ease-in-out;
    border: 0;
    margin-bottom: 1.875rem;
    flex-direction: column;
    padding: 1.875rem;
    color: rgba(var(--vsm-body-colour), 1)
}

.vsm-card-links .vsm-body .col a.card-link:hover {
    box-shadow: 0 0 1.875rem rgba(var(--vsm-black), 0.08);
    transform: scale3d(1.1, 1.1, 1.1)
}

.vsm-card-links .vsm-body .col a.card-link .sm-heading {
    color: rgba(var(--vsm-primary-colour), 1);
    font-size: 24px;
    font-size: 1.5rem
}

.vsm-card-links .vsm-body .col a.card-link p {
    color: rgba(var(--vsm-body-colour), 1)
}

.vsm-card-links .vsm-body .col a.card-link p strong {
    color: rgba(var(--vsm-black), 1)
}

.vsm-job-search-alt .bg {
    background: rgba(var(--vsm-body-copy-colour), 0.05);
    padding: 2.5rem 0
}

.vsm-job-search-alt .vsm-header {
    margin-bottom: 1.875rem
}

.vsm-job-search-alt .filter label {
    display: none
}

.vsm-job-search-alt .col {
    width: 100%;
    flex: 1 0 auto
}

@media(min-width: 768px) {
    .vsm-job-search-alt .col {
        width: auto
    }
}

.vsm-job-search-alt .btn {
    width: 100%
}

.vsm-job-search-alt .btn i {
    margin-right: 10px
}

.vsm-job-search-alt .element.select .field {
    background-color: rgba(var(--vsm-white), 1)
}

.vsm-job-search-alt .selected-options {
    margin: .875rem 0
}

.vsm-job-search-alt .selected-options .selected-option {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    border-radius: 1.875rem;
    padding: .625rem 2.875rem .625rem .875rem;
    font-size: var(--vsm-button-text-size);
    font-weight: 600;
    display: inline-flex;
    position: relative;
    align-items: center;
    line-height: 1;
    margin-right: 5px;
    cursor: pointer
}

.vsm-job-search-alt .selected-options .selected-option:hover {
    background: rgba(var(--vsm-black), 1)
}

.vsm-job-search-alt .selected-options .selected-option:after {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    text-indent: 5px;
    font-size: var(--vsm-button-text-size);
    color: rgba(var(--vsm-white), 1);
    position: absolute;
    right: .875rem
}

.vsm-job-search-alt .selected-options .clear-all {
    text-decoration: underline;
    font-weight: 600;
    color: rgba(var(--vsm-black), 1);
    cursor: pointer
}

.vsm-job-search-alt .selected-options .clear-all:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-job-search-results-listings-alt .vsm-body>.container>.row>.col:nth-child(1) {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 768px) {
    .vsm-job-search-results-listings-alt .vsm-body>.container>.row>.col:nth-child(1) {
        width: 66.6666666667%
    }
}

.vsm-job-search-results-listings-alt .vsm-body>.container>.row>.col:nth-child(2) {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 768px) {
    .vsm-job-search-results-listings-alt .vsm-body>.container>.row>.col:nth-child(2) {
        width: 33.3333333333%
    }
}

.vsm-job-search-results-listings-alt .job-listing {
    list-style: none;
    margin: 0 0 0px 0;
    padding: 0 0 0px 0
}

.vsm-job-search-results-listings-alt .job-listing>li {
    margin: 0px 0;
    padding: .938rem 0 25px 0
}

.vsm-job-search-results-listings-alt .job-listing .job-data {
    background: rgba(var(--vsm-white), 0.05);
    box-shadow: 0 0 1.875rem rgba(0, 0, 0, .05);
    padding: 1.875rem
}

.vsm-job-search-results-listings-alt .job-listing .job-data.in-shortlist {
    background: rgba(var(--vsm-primary-colour), 0.05);
    padding: 1.875rem
}

.vsm-job-search-results-listings-alt .job-listing .job-data .add-to-shortlist {
    color: rgba(var(--vsm-body-copy-colour), 1);
    font-size: 14px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none
}

.vsm-job-search-results-listings-alt .job-listing .job-data .add-to-shortlist:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-job-search-results-listings-alt .job-listing .job-data .add-to-shortlist i {
    position: relative;
    margin-right: .625rem
}

.vsm-job-search-results-listings-alt .job-listing .job-data .add-to-shortlist i:before {
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-job-search-results-listings-alt .job-listing .job-data .add-to-shortlist.added i:before {
    content: ""
}

.vsm-job-search-results-listings-alt .job-listing .job-data .post-date {
    display: inline-block;
    font-size: 13px;
    font-size: .8125rem;
    color: rgba(var(--vsm-body-copy-colour), 0.5)
}

.vsm-job-search-results-listings-alt .job-listing .job-data .job-ref {
    display: inline-block;
    font-size: 13px;
    font-size: .8125rem;
    color: rgba(var(--vsm-body-copy-colour), 0.5)
}

.vsm-job-search-results-listings-alt .job-listing .job-data .xs-heading {
    margin: .625rem 0
}

.vsm-job-search-results-listings-alt .job-listing .job-data .xs-heading a {
    color: rgba(var(--vsm-black), 1);
    text-decoration: none
}

.vsm-job-search-results-listings-alt .job-listing .job-data .xs-heading a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-job-search-results-listings-alt .job-listing .job-data ul.job-data-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex
}

.vsm-job-search-results-listings-alt .job-listing .job-data ul.job-data-highlights li {
    margin-bottom: .625rem;
    margin-right: .938rem;
    display: flex;
    font-size: 14px;
    font-size: .875rem
}

.side-cta {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    text-align: center;
    padding: 2.188rem;
    position: sticky;
    top: 9.375rem
}

.side-cta .element.text label {
    display: none
}

.side-cta .sm-heading {
    color: rgba(var(--vsm-white), 1)
}

.vsm-default-internal-profile-hero .bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    align-items: center;
    display: flex;
    align-items: center;
    position: relative
}

.vsm-default-internal-profile-hero .bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    mix-blend-mode: multiply
}

.vsm-default-internal-profile-hero .bg .video {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 0
}

.vsm-default-internal-profile-hero .bg .video video {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    min-height: 50%;
    min-width: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-default-internal-profile-hero .bg .container {
    z-index: 1
}

@media(min-width: 1024px) {
    .vsm-default-internal-profile-hero .bg .container .col {
        max-width: 50%
    }
}

.vsm-default-internal-profile-hero .bg .container .content .xs-heading,
.vsm-default-internal-profile-hero .bg .container .content .md-heading {
    color: rgba(var(--vsm-white), 1)
}

.vsm-default-internal-profile-hero .bg .container .content .rte p,
.vsm-default-internal-profile-hero .bg .container .content .rte ul,
.vsm-default-internal-profile-hero .bg .container .content .rte li,
.vsm-default-internal-profile-hero .bg .container .content .rte dd {
    color: rgba(var(--vsm-white), 1)
}

.vsm-default-internal-profile-hero .component-wrapper {
    width: 100%;
    position: relative;
    z-index: 1
}

.vsm-default-internal-profile-hero .component-wrapper .play-btn {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    text-decoration: none;
    color: rgba(var(--vsm-white), 1)
}

.vsm-default-internal-profile-hero .component-wrapper .play-btn span {
    margin-left: 10px
}

.vsm-default-internal-profile-hero .component-wrapper .play-btn:before {
    transition: 300ms background-color ease-in-out;
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-indent: 2px;
    font-size: .6rem;
    color: rgba(var(--vsm-white), 1);
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 100rem;
    background-color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-gmap {
    overflow: hidden
}

.vsm-gmap .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0
}

.vsm-gmap .map-holder {
    width: 100%;
    height: 31.25rem
}

.vsm-gmap .map-holder .map_canvas {
    width: 100%;
    height: 100%
}

.gm-style-iw-d>div {
    padding: 0.625rem
}

.map-info {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.4;
    margin-bottom: 0
}

.menu-open {
    overflow: hidden
}

.menu-open .vsm-top {
    background: rgba(var(--vsm-white), 1);
    box-shadow: 0 0px 1.875rem 0 rgba(0, 0, 0, .05)
}

.menu-open .vsm-top .navigation .primary-nav ul li a {
    color: rgba(var(--vsm-black), 1)
}

.menu-open .vsm-top .navigation .primary-nav ul li.dropdown>a:after {
    color: rgba(var(--vsm-black), 1)
}

.menu-open .vsm-top .navigation .primary-nav ul li.meganav>a:after {
    color: rgba(var(--vsm-black), 1)
}

.menu-open .vsm-top .navigation .more-nav ul li a {
    color: rgba(var(--vsm-black), 1)
}

.menu-open .vsm-top .navigation .more-nav ul li .burger-menu span {
    background: rgba(var(--vsm-black), 1)
}

.menu-open .vsm-top .navigation .more-nav ul li .burger-menu span:before,
.menu-open .vsm-top .navigation .more-nav ul li .burger-menu span:after {
    background: rgba(var(--vsm-black), 1)
}

.slide-menu {
    position: fixed;
    width: 100%;
    max-width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    display: none;
    overflow: hidden;
    box-sizing: border-box;
    transform: translateX(100%);
    overflow-y: auto;
    z-index: 97;
    padding-top: 60px;
    background-color: rgba(var(--vsm-white), 1);
    background-position: right bottom;
    background-repeat: no-repeat;
    transition: height .12s ease-in-out
}

.bg-nav-gradient {
    width: 100%;
    background: linear-gradient(90deg, rgba(var(--vsm-primary-colour), 1) 0%, rgba(var(--vsm-primary-colour), 1) 100%)
}

.slide-menu,
.slide-menu .slide-menu__slider {
    transition: transform .3s ease-in-out;
    will-change: transform
}

.slide-menu .slide-menu__slider {
    width: 100%;
    height: 100%;
    transform: translateX(0)
}

.cta-box {
    padding: 1.875rem;
    color: rgba(var(--vsm-white), 1)
}

.cta-box .sub-title {
    display: flex;
    align-items: center;
    margin-bottom: .625rem;
    overflow: hidden
}

.cta-box .sub-title span {
    text-transform: uppercase;
    color: rgba(var(--vsm-black), 1);
    opacity: .5;
    font-size: 10px;
    font-size: .625rem;
    letter-spacing: 3px;
    margin-right: 9px;
    font-weight: 700;
    width: auto;
    flex: 0 0 auto
}

.cta-box .sub-title hr {
    margin: 0;
    border-top-color: rgba(var(--vsm-white), 1);
    opacity: .15;
    height: 0;
    width: auto;
    flex: 0 0 100%
}

.cta-box h4 {
    font-size: 24px;
    font-size: 1.5rem;
    color: rgba(var(--vsm-white), 1)
}

.cta-box p {
    margin-bottom: .938rem
}

.slide-menu ul {
    position: relative;
    width: 100%;
    margin: 0;
    padding-left: 0;
    list-style: none;
    padding: 9px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100%
}

.slide-menu ul li>a {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 0;
    text-decoration: none;
    color: rgba(var(--vsm-primary-colour), 1);
    border-bottom: 3px solid rgba(0, 0, 0, 0);
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 600
}

.slide-menu ul li>a:focus,
.slide-menu ul li>a:hover,
.slide-menu ul li>a:active {
    color: rgba(var(--vsm-primary-colour), 1) !important;
    text-decoration: none;
    width: 100%;
    border-bottom: 3px solid;
    border-bottom: linear-gradient(to right, #e4c1ff, #aaffe5);
    z-index: 1000
}

.slide-menu ul li>a i {
    font-size: 14px;
    font-size: .875rem
}

.slide-menu ul li ul {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    height: auto
}

.slide-menu ul li ul li h6 {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 21px 0 0 0;
    margin: 0;
    opacity: .3;
    line-height: 100%;
    letter-spacing: 0
}

.slide-menu ul li:last-of-type a,
.slide-menu ul li:last-of-type ul li:last-of-type a {
    border-bottom: none
}

.slide-menu ul li:last-of-type ul li a {
    border-bottom: 1px solid #d9d2d6
}

.slide-menu ul ul li:first-of-type a {
    justify-content: flex-start;
    opacity: .6
}

.slide-menu ul ul li:first-of-type a i {
    margin-right: 15px
}

.slide-menu a {
    cursor: pointer
}

#cv-dropoff .modal-content {
    border-radius: .938rem;
    background: #f3f3f7
}

#cv-dropoff .modal-header {
    border-bottom: 0;
    position: absolute;
    right: 0;
    z-index: 1
}

#cv-dropoff .modal-body {
    padding: 4rem
}

#cv-dropoff .modal-body .form-holder .col {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 768px) {
    #cv-dropoff .modal-body .form-holder .col {
        flex: 1 0 auto;
        width: auto
    }
}

#cv-dropoff .modal-body .form-holder .element.text input {
    background: #fff
}

#cv-dropoff .modal-body .form-holder .element.text input::-webkit-input-placeholder {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

#cv-dropoff .modal-body .form-holder .element.text input:-moz-placeholder {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

#cv-dropoff .modal-body .form-holder .element.text input:-ms-input-placeholder {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

#cv-dropoff .modal-body .form-holder .element.text input::placeholder {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500
}

#cv-dropoff .modal-body .form-holder .element.submit .btn {
    margin-top: 2.063rem;
    background: rgba(var(--vsm-primary-colour), 1);
    width: 100%
}

.vsm-single-central-slide {
    overflow: hidden
}

.vsm-single-central-slide .vsm-header {
    text-align: center;
    margin-bottom: 2.5rem
}

.vsm-single-central-slide .flex-wrapper {
    display: flex;
    flex-direction: column;
    position: relative
}

.vsm-single-central-slide .flex-wrapper .flex-item:nth-child(2) {
    position: absolute;
    width: 100%;
    height: 100%
}

.vsm-single-central-slide .swiper-container {
    overflow: visible
}

.vsm-single-central-slide .swiper-container .swiper-slide {
    opacity: .5
}

.vsm-single-central-slide .swiper-container .swiper-slide.swiper-slide-active {
    opacity: 1
}

.vsm-single-central-slide .swiper-container .swiper-slide .content {
    border: 1px solid rgba(0, 0, 0, .1);
    padding: .9rem 3.5rem;
    border-radius: .9rem;
    display: flex;
    min-height: 21.875rem
}

.vsm-single-central-slide .swiper-container .swiper-slide .job-data {
    text-align: center;
    display: flex;
    flex-direction: column
}

.vsm-single-central-slide .swiper-container .swiper-slide .job-data span {
    display: block
}

.vsm-single-central-slide .swiper-container .swiper-slide .job-data .xs-heading {
    font-size: 25px;
    font-size: 1.5625rem
}

.vsm-single-central-slide .swiper-container .swiper-slide .job-data .post-location {
    flex-grow: 1
}

.vsm-single-central-slide .swiper-container .swiper-slide .job-data .post-type {
    align-content: flex-end
}

.vsm-single-central-slide .swiper-container .swiper-slide .job-data .xs-heading a {
    text-decoration: none;
    display: block
}

.vsm-single-central-slide .swiper-pagination {
    display: none;
    position: relative;
    margin: 1.875rem 0 0 0
}

.vsm-single-central-slide .swiper-pagination .swiper-pagination-bullet {
    margin: .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-single-central-slide .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-single-central-slide .swiper-navigation {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    height: 100%
}

.vsm-single-central-slide .swiper-button-prev {
    left: -20%;
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative
}

.vsm-single-central-slide .swiper-button-prev:after {
    content: ""
}

.vsm-single-central-slide .swiper-button-next {
    right: -20%;
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative
}

.vsm-single-central-slide .swiper-button-next:after {
    content: ""
}

.vsm-full-width-fixed-media-bg .component-wrapper {
    height: 100vh;
    transition: all 1s;
    z-index: 1
}

.vsm-full-width-fixed-media-bg .vsm-body .row>.col {
    max-width: 50%
}

.vsm-full-width-fixed-media-bg .content {
    position: relative
}

.vsm-full-width-fixed-media-bg .content .play-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: rgba(var(--vsm-white), 1);
    width: auto;
    flex: 1 0 auto;
    margin-bottom: 15px
}

.vsm-full-width-fixed-media-bg .content .play-btn span {
    margin-left: 10px
}

.vsm-full-width-fixed-media-bg .content .play-btn:before {
    transition: 300ms background-color ease-in-out;
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-indent: 2px;
    font-size: .6rem;
    color: rgba(var(--vsm-white), 1);
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 100rem;
    background-color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-full-width-fixed-media-bg .content.align-center {
    text-align: center;
    justify-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1 0 100%;
    max-width: 100%
}

.vsm-full-width-fixed-media-bg .content.align-left {
    text-align: left;
    justify-items: start;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    flex: 1 0 100%;
    max-width: 100%
}

.vsm-full-width-fixed-media-bg .content.align-right {
    text-align: right;
    justify-items: end;
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 100%;
    flex: 1 0 100%;
    max-width: 100%
}

.vsm-full-width-fixed-media-bg .content .xs-heading,
.vsm-full-width-fixed-media-bg .content .md-heading {
    color: rgba(var(--vsm-white), 1)
}

.vsm-full-width-fixed-media-bg .content .rte p,
.vsm-full-width-fixed-media-bg .content .rte q,
.vsm-full-width-fixed-media-bg .content .rte ul,
.vsm-full-width-fixed-media-bg .content .rte li,
.vsm-full-width-fixed-media-bg .content .rte dd,
.vsm-full-width-fixed-media-bg .content blockquote p,
.vsm-full-width-fixed-media-bg .content blockquote q,
.vsm-full-width-fixed-media-bg .content blockquote ul,
.vsm-full-width-fixed-media-bg .content blockquote li,
.vsm-full-width-fixed-media-bg .content blockquote dd {
    color: rgba(var(--vsm-white), 1)
}

.vsm-full-width-fixed-media-bg .content blockquote {
    font-size: 30px;
    font-size: 1.875rem
}

.vsm-full-width-fixed-media-bg .content blockquote .author {
    margin-top: 1.125rem
}

.vsm-full-width-fixed-media-bg .content blockquote .author span {
    color: rgba(var(--vsm-white), 1);
    display: block;
    font-weight: 300;
    font-size: 16px;
    font-size: 1rem
}

.vsm-full-width-fixed-media-bg .content blockquote .author span.name {
    font-weight: 600
}

.vsm-full-width-fixed-media-bg .bg {
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    align-items: center;
    display: flex;
    align-items: center;
    position: relative;
    position: sticky;
    top: 0
}

.vsm-full-width-fixed-media-bg .bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    mix-blend-mode: multiply
}

.vsm-full-width-fixed-media-bg .bg .video {
    position: absolute;
    z-index: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh
}

.vsm-full-width-fixed-media-bg .bg .video:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    mix-blend-mode: multiply
}

.vsm-full-width-fixed-media-bg .bg .video video {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    min-height: 50%;
    min-width: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none !important
}

.vsm-full-width-fixed-media-bg .bg .video iframe {
    pointer-events: none !important;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%)
}

@media(min-aspect-ratio: 16/9) {
    .vsm-full-width-fixed-media-bg .bg .video iframe {
        height: 56.25vw
    }
}

@media(max-aspect-ratio: 16/9) {
    .vsm-full-width-fixed-media-bg .bg .video iframe {
        width: 177.78vh
    }
}

.vsm-full-width-fixed-media-bg .bg .container {
    z-index: 1
}

.vsm-full-width-fixed-media-bg.fixed-background {
    position: relative
}

.vsm-full-width-fixed-media-bg.fixed-background .bg {
    position: relative;
    display: flex;
    align-items: center;
    top: 0;
    background-attachment: fixed
}

.vsm-full-width-fixed-media-bg.fixed-background .component-wrapper {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    top: 0
}

.vsm-basic-blog-featured-section .vsm-header .sm-heading {
    margin: 30px 0 0 0
}

.vsm-basic-blog-featured-section .vsm-body {
    padding: 0 0 30px 0
}

.vsm-basic-blog-featured-section .vsm-body .xs-heading {
    margin: 30px 0
}

.vsm-basic-blog-featured-section .vsm-body .search-bar {
    width: 100%
}

.vsm-basic-blog-featured-section .vsm-body .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-basic-blog-featured-section .vsm-body .author {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap
}

@media(min-width: 768px) {
    .vsm-basic-blog-featured-section .vsm-body .author {
        flex-wrap: nowrap
    }
}

.vsm-basic-blog-featured-section .vsm-body .author .media {
    width: 2.125rem;
    height: 2.125rem;
    min-width: 2.125rem;
    overflow: hidden;
    border-radius: 100em;
    margin-right: .311rem
}

.vsm-basic-blog-featured-section .vsm-body .author .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-basic-blog-featured-section .vsm-body .author .media+.media {
    margin-left: -0.75rem
}

@media(min-width: 768px) {
    .vsm-basic-blog-featured-section .vsm-body .author .media+.media {
        margin-left: -1.25rem
    }
}

.vsm-basic-blog-featured-section .vsm-body .author .author-details {
    margin: 10px 0
}

.vsm-basic-blog-featured-section .vsm-body .author .author-details .title {
    font-weight: 300;
    color: rgba(var(--vsm-black), 1);
    margin-bottom: .188rem;
    font-size: 12px;
    font-size: .75rem;
    line-height: 1
}

.vsm-basic-blog-featured-section .vsm-body .author .author-details .title a {
    display: inline;
    font-weight: 300;
    color: rgba(var(--vsm-black), 1);
    font-size: 12px;
    font-size: .75rem;
    line-height: 1;
    text-decoration: none
}

.vsm-basic-blog-featured-section .vsm-body .author .author-details .title a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-basic-blog-featured-section .vsm-body .author .author-details .subtitle {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 0px;
    font-size: 12px;
    font-size: .75rem
}

.vsm-basic-blog-featured-section .vsm-body .author .author-details .post-date:before {
    content: ", "
}

.vsm-basic-blog-featured-section .vsm-body .author .media[data-initials]:before {
    width: 2.125rem;
    height: 2.125rem;
    min-width: 2.125rem;
    line-height: 2.125rem;
    font-size: 12px;
    font-size: .75rem
}

.vsm-basic-blog-featured-section .vsm-body .post {
    margin-bottom: 1.125rem;
    width: 100%
}

.vsm-basic-blog-featured-section .vsm-body .post .media {
    aspect-ratio: 16/9
}

.vsm-basic-blog-featured-section .vsm-body .post .author {
    margin-top: .938rem
}

.vsm-basic-blog-featured-section .vsm-body .post .author .media {
    aspect-ratio: 1/1
}

.vsm-basic-blog-featured-section .vsm-body .post .post-date {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 0px;
    margin-top: .938rem;
    font-size: 12px;
    font-size: .75rem
}

.vsm-basic-blog-featured-section .vsm-body .post a {
    display: flex
}

.vsm-basic-blog-featured-section .vsm-body .post a.tag {
    font-weight: 600;
    color: rgba(var(--vsm-primary-colour), 1);
    margin-top: .938rem;
    font-size: 12px;
    font-size: .75rem;
    text-decoration: none
}

.vsm-basic-blog-featured-section .vsm-body .post a.post-title {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-top: .238rem;
    font-size: 18px;
    font-size: 1.125rem;
    text-decoration: none
}

.vsm-basic-blog-featured-section .vsm-body .post a.post-title:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-basic-blog-featured-section .vsm-body .post a.inline-link {
    align-items: center
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(2) {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 576px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(2) {
        width: 100%
    }
}

@media(min-width: 768px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(2) {
        width: 25%
    }
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1) {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 576px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1) {
        width: 100%
    }
}

@media(min-width: 768px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1) {
        width: 75%
    }
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:only-child {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 576px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:only-child {
        width: 100%
    }
}

@media(min-width: 768px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:only-child {
        width: 100%
    }
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1) {
    flex: 0 0 auto
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col .post-title {
    font-weight: 600;
    color: rgba(var(--vsm-black), 1)
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col .post-title:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(1) {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

@media(min-width: 576px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(1) {
        width: 100%
    }
}

@media(min-width: 768px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(1) {
        width: 66.66666667%
    }
}

@media(min-width: 768px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(1).order-md-2 {
        width: 33.33333333%
    }
}

@media(min-width: 1024px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(1)>.post .post-details {
        max-width: 80%
    }
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(1)>.post .post-title {
    font-weight: 600;
    color: rgba(var(--vsm-black), 1);
    margin-bottom: .188rem;
    font-size: 30px;
    font-size: 1.875rem;
    text-decoration: none;
    line-height: 1.2
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(1)>.post .post-title:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(2) {
    flex: 0 0 auto;
    width: 100%
}

@media(min-width: 576px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(2) {
        width: 100%
    }
}

@media(min-width: 768px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(2) {
        width: 33.33333333%
    }
}

@media(min-width: 768px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(2).order-md-1 {
        width: 66.66666667%
    }
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(2)>.row>.col {
    flex: 1 0 50%;
    width: 50%
}

@media(min-width: 768px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(1)>.row>.col:nth-child(2)>.row>.col {
        flex: 0 0 auto;
        width: 100%
    }
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col {
    flex: 0 0 auto;
    width: 100%
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post {
    display: flex;
    flex-direction: row;
    margin-bottom: .938rem
}

.vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post .media {
    max-width: 9.375rem;
    margin-right: .938rem
}

@media(min-width: 576px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col {
        width: 33.33333%
    }

    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post {
        display: flex;
        flex-direction: column;
        margin-bottom: .938rem
    }

    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post .tag {
        margin-top: .938rem
    }

    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post .media {
        max-width: 100%;
        margin-right: 0rem
    }
}

@media(min-width: 768px) {
    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col {
        width: 100%
    }

    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post {
        display: flex;
        flex-direction: column
    }

    .vsm-basic-blog-featured-section .vsm-body .container>.row>.col:nth-child(2)>.row>.col .post .media {
        max-width: 100%;
        margin-right: 0rem
    }
}

.vsm-configurable-boxes .vsm-body>.container {
    max-width: 100%
}

.vsm-configurable-boxes .vsm-body .row {
    --bs-gutter-x: 0
}

.vsm-configurable-boxes .vsm-body .row .col {
    width: 100%;
    max-width: 100%;
    flex: 1 0 100%
}

@media(min-width: 768px) {
    .vsm-configurable-boxes .vsm-body .row .col {
        max-width: 33.333333%
    }
}

.vsm-configurable-boxes .vsm-body .row .col .configurable-box {
    text-decoration: none;
    position: relative;
    display: flex;
    justify-items: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    aspect-ratio: 1/1
}

.vsm-configurable-boxes .vsm-body .row .col .configurable-box .media {
    position: absolute;
    height: 100%;
    width: 100%
}

.vsm-configurable-boxes .vsm-body .row .col .configurable-box .media img {
    object-fit: cover;
    width: 100%;
    height: 100%
}

.vsm-configurable-boxes .vsm-body .row .col .configurable-box .box-details {
    padding: 1.875rem 0.9375rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center
}

.vsm-configurable-boxes .vsm-body .row .col .configurable-box .box-details .post-title {
    text-align: center
}

.vsm-basic-latest-listings .vsm-header {
    padding: 30px 0
}

.vsm-basic-latest-listings .vsm-header .sm-heading {
    margin: 0px 0 0 0
}

.vsm-basic-latest-listings .vsm-header .row {
    align-items: center
}

.vsm-basic-latest-listings .vsm-body {
    padding: 0 0 30px 0
}

.vsm-basic-latest-listings .vsm-body .xs-heading {
    margin: 30px 0
}

.vsm-basic-latest-listings .vsm-body .container>.row .col {
    width: 100%;
    max-width: 100%;
    flex: 1 0 100%
}

@media(min-width: 768px) {
    .vsm-basic-latest-listings .vsm-body .container>.row .col {
        max-width: 33.333333%
    }
}

.vsm-basic-latest-listings .vsm-body .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-basic-latest-listings .vsm-body .author {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap
}

@media(min-width: 768px) {
    .vsm-basic-latest-listings .vsm-body .author {
        flex-wrap: nowrap
    }
}

.vsm-basic-latest-listings .vsm-body .author .media {
    width: 2.125rem;
    height: 2.125rem;
    min-width: 2.125rem;
    overflow: hidden;
    border-radius: 100em;
    margin-right: .311rem
}

.vsm-basic-latest-listings .vsm-body .author .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.vsm-basic-latest-listings .vsm-body .author .media+.media {
    margin-left: -0.75rem
}

@media(min-width: 768px) {
    .vsm-basic-latest-listings .vsm-body .author .media+.media {
        margin-left: -1.25rem
    }
}

.vsm-basic-latest-listings .vsm-body .author .author-details {
    margin: 10px 0
}

.vsm-basic-latest-listings .vsm-body .author .author-details .title {
    font-weight: 300;
    color: rgba(var(--vsm-black), 1);
    margin-bottom: .188rem;
    font-size: 12px;
    font-size: .75rem;
    line-height: 1
}

.vsm-basic-latest-listings .vsm-body .author .author-details .title a {
    display: inline;
    font-weight: 300;
    color: rgba(var(--vsm-black), 1);
    font-size: 12px;
    font-size: .75rem;
    line-height: 1;
    text-decoration: none
}

.vsm-basic-latest-listings .vsm-body .author .author-details .title a:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-basic-latest-listings .vsm-body .author .author-details .subtitle {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 0px;
    font-size: 12px;
    font-size: .75rem
}

.vsm-basic-latest-listings .vsm-body .author .author-details .post-date:before {
    content: ", "
}

.vsm-basic-latest-listings .vsm-body .author .media[data-initials]:before {
    width: 2.125rem;
    height: 2.125rem;
    min-width: 2.125rem;
    line-height: 2.125rem;
    font-size: 12px;
    font-size: .75rem
}

.vsm-basic-latest-listings .vsm-body .post {
    margin-bottom: 1.125rem
}

.vsm-basic-latest-listings .vsm-body .post .media {
    aspect-ratio: 16/9
}

.vsm-basic-latest-listings .vsm-body .post .author {
    margin-top: .938rem
}

.vsm-basic-latest-listings .vsm-body .post .author .media {
    aspect-ratio: 1/1
}

.vsm-basic-latest-listings .vsm-body .post .post-date {
    font-weight: 400;
    color: rgba(var(--vsm-body-copy-colour), 1);
    margin-bottom: 0px;
    margin-top: .938rem;
    font-size: 12px;
    font-size: .75rem
}

.vsm-basic-latest-listings .vsm-body .post a {
    display: flex
}

.vsm-basic-latest-listings .vsm-body .post a.tag {
    font-weight: 600;
    color: rgba(var(--vsm-primary-colour), 1);
    margin-top: .938rem;
    font-size: 12px;
    font-size: .75rem;
    text-decoration: none
}

.vsm-basic-latest-listings .vsm-body .post a.post-title {
    font-weight: 600;
    color: rgba(var(--vsm-black), 1);
    margin-top: .238rem;
    font-size: 18px;
    font-size: 1.125rem;
    text-decoration: none
}

.vsm-basic-latest-listings .vsm-body .post a.post-title:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-basic-latest-listings .vsm-body .post a.inline-link {
    align-items: center
}

.vsm-infinite-horizonal-scroll {
    overflow: hidden
}

.vsm-infinite-horizonal-scroll.right .marquee--inner {
    display: flex;
    width: 100%;
    white-space: nowrap;
    animation: marquee2 5s linear infinite;
    flex-direction: row;
    flex: 1 0 100%
}

.vsm-infinite-horizonal-scroll .orb {
    width: 50px;
    height: 50px;
    background: #999;
    border-radius: 50px;
    display: inline-block;
    margin: 0 24.7px;
    float: left;
    transition: all .2s ease-out
}

.vsm-infinite-horizonal-scroll .orb:hover {
    transform: scale(1.2);
    opacity: .5;
    cursor: pointer
}

.vsm-infinite-horizonal-scroll .marquee {
    width: 100%;
    box-sizing: border-box;
    position: relative
}

.vsm-infinite-horizonal-scroll .marquee--inner {
    display: flex;
    width: 100%;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
    flex-direction: row;
    flex: 1 0 100%
}

.vsm-infinite-horizonal-scroll .marquee--inner>span {
    flex: 1 0 auto
}

.vsm-infinite-horizonal-scroll .marquee--inner:hover {
    animation-play-state: paused
}

.vsm-infinite-horizonal-scroll span {
    display: flex;
    justify-content: space-around;
    flex: 1 0 100%
}

@keyframes marquee {
    0% {
        transform: translate(0%, 0)
    }

    100% {
        transform: translate(-50%, 0)
    }
}

@keyframes marquee2 {
    0% {
        transform: translate(-50%, 0%)
    }

    100% {
        transform: translate(0%, 0)
    }
}

.vsm-tabbed-content.side-nav .nav li a {
    padding: 0.625rem 0.9375rem;
    border-bottom: 0.0625rem solid rgba(var(--vsm-black), 0.1);
    text-decoration: none;
    margin-right: 0rem
}

.vsm-tabbed-content.side-nav .nav li a.active {
    color: rgba(var(--vsm-accent-colour), 1);
    border-bottom: 0.0625rem solid rgba(var(--vsm-black), 0)
}

.vsm-tabbed-content.side-nav .nav li a:not(.active) {
    background: rgba(var(--vsm-black), 0.1)
}

.vsm-tabbed-content.side-nav .component-wrapper {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
    max-width: 540px
}

@media(min-width: 768px) {
    .vsm-tabbed-content.side-nav .component-wrapper {
        max-width: 720px
    }
}

@media(min-width: 992px) {
    .vsm-tabbed-content.side-nav .component-wrapper {
        max-width: 960px
    }
}

@media(min-width: 1200px) {
    .vsm-tabbed-content.side-nav .component-wrapper {
        max-width: 1140px
    }
}

@media(min-width: 1400px) {
    .vsm-tabbed-content.side-nav .component-wrapper {
        max-width: 1320px
    }
}

.vsm-tabbed-content.side-nav .vsm-body {
    display: flex
}

.vsm-tabbed-content.side-nav .vsm-body .flex-item {
    display: flex
}

.vsm-tabbed-content.side-nav .vsm-body .flex-item:nth-child(1) {
    flex: 1 0 auto;
    max-width: 33.3333%
}

.vsm-tabbed-content.side-nav .vsm-body .nav {
    flex-direction: column
}

.vsm-tabbed-content.horizontal-nav .nav li a {
    padding: 0.625rem 0.9375rem;
    border-top: 0.0625rem solid rgba(var(--vsm-black), 0.1);
    border-left: 0.0625rem solid rgba(var(--vsm-black), 0.05);
    border-right: 0.0625rem solid rgba(var(--vsm-black), 0.05);
    border-bottom: 0.0625rem solid rgba(var(--vsm-black), 0.1);
    text-decoration: none;
    margin-right: -0.0625rem
}

.vsm-tabbed-content.horizontal-nav .nav li a.active {
    color: rgba(var(--vsm-accent-colour), 1);
    border-bottom: 0.0625rem solid rgba(var(--vsm-black), 0)
}

.vsm-tabbed-content.horizontal-nav .nav li a:not(.active) {
    background: rgba(var(--vsm-black), 0.1)
}

.vsm-tabbed-content.horizontal-nav .nav li:first-child a {
    border-left: 0.0625rem solid rgba(var(--vsm-black), 0.1);
    border-top-left-radius: 0.5rem
}

.vsm-tabbed-content.horizontal-nav .nav li:last-child a {
    border-right: 0.0625rem solid rgba(var(--vsm-black), 0.1);
    border-top-right-radius: 0.5rem
}

.vsm-tabbed-content.side-nav .flex-item:first-child .row>.col:first-child {
    max-width: 100%;
    margin-bottom: 1.875rem
}

@media(min-width: 768px) {
    .vsm-tabbed-content.side-nav .flex-item:first-child .row>.col:first-child {
        max-width: 83.33333333%
    }
}

.vsm-tabbed-content.side-nav .nav li a {
    position: relative;
    display: block;
    color: rgba(var(--vsm-body-copy-colour-colour), 1);
    font-weight: 600;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0.3125rem 0
}

.vsm-tabbed-content.side-nav .nav li a:after {
    content: "";
    color: rgba(0, 0, 0, .2);
    position: absolute;
    right: 0;
    top: 0.4375rem;
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1
}

.vsm-tabbed-content.side-nav .nav li a.active {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-tabbed-content.side-nav .nav li a.active:after {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-tabbed-content.side-nav .nav li:last-child a {
    border-bottom: 0rem solid rgba(0, 0, 0, 0)
}

.vsm-double-row-content-carousel {
    position: relative;
    overflow: hidden
}

.vsm-double-row-content-carousel .flex-wrapper {
    display: flex;
    flex-direction: column
}

.vsm-double-row-content-carousel .flex-wrapper .flex-item:nth-child(1) {
    order: 1
}

.vsm-double-row-content-carousel .flex-wrapper .flex-item:nth-child(2) {
    order: 2
}

.vsm-double-row-content-carousel .vsm-header {
    margin-bottom: 1.875rem;
    text-align: center
}

.vsm-double-row-content-carousel .vsm-header .col {
    flex: 0 0 auto;
    width: 83.3333333333%
}

.vsm-double-row-content-carousel .vsm-body .media {
    display: flex;
    margin-bottom: .938rem
}

.vsm-double-row-content-carousel .swiper-pagination {
    display: none;
    position: relative;
    margin: 1.875rem 0 0 0
}

.vsm-double-row-content-carousel .swiper-pagination .swiper-pagination-bullet {
    margin: .25rem;
    width: .625rem;
    height: .625rem;
    background: rgba(var(--vsm-primary-colour), 0.5)
}

.vsm-double-row-content-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--vsm-primary-colour), 1)
}

.vsm-double-row-content-carousel .swiper-navigation {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end
}

.vsm-double-row-content-carousel .swiper-navigation div {
    margin: 0 0 0 1.875rem;
    left: 0;
    right: 0
}

.vsm-double-row-content-carousel .swiper-button-prev {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-double-row-content-carousel .swiper-button-prev:after {
    content: ""
}

.vsm-double-row-content-carousel .swiper-button-next {
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-primary-colour), 1);
    position: relative;
    top: 0
}

.vsm-double-row-content-carousel .swiper-button-next:after {
    content: ""
}

.vsm-multiple-col-cta {
    padding-bottom: 1.5625rem
}

.vsm-multiple-col-cta .swiper-navigation {
    position: absolute;
    display: flex;
    top: 50%;
    width: 100%;
    left: 0;
    justify-content: space-between
}

@media(min-width: 576px) {
    .vsm-multiple-col-cta .swiper-navigation {
        position: absolute;
        display: flex;
        top: 1.875rem;
        width: 100%;
        left: auto;
        right: 1.25rem;
        justify-content: flex-end
    }
}

.vsm-multiple-col-cta .swiper-navigation div {
    margin: 0 0.625rem;
    left: 0;
    right: 0;
    background: rgba(var(--vsm-white), 0);
    border: 0.125rem solid rgba(var(--vsm-white), 1);
    border-radius: 100em;
    width: 3.4375rem;
    height: 3.4375rem
}

.vsm-multiple-col-cta .swiper-navigation div:hover {
    background: rgba(var(--vsm-white), 0);
    opacity: 1;
    color: rgba(var(--vsm-tertiary-colour), 1)
}

.vsm-multiple-col-cta .swiper-navigation div.swiper-button-disabled {
    opacity: .1
}

.vsm-multiple-col-cta .swiper-button-prev {
    left: .938rem;
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-white), 1);
    position: relative;
    top: 0
}

.vsm-multiple-col-cta .swiper-button-prev:after {
    content: ""
}

.vsm-multiple-col-cta .swiper-button-next {
    right: .938rem;
    font-size: 30px;
    font-size: 1.875rem;
    color: rgba(var(--vsm-white), 1);
    position: relative;
    top: 0
}

.vsm-multiple-col-cta .swiper-button-next:after {
    content: ""
}

@media(min-width: 1024px) {
    .vsm-multiple-col-cta .swiper-navigation.disabled {
        display: none
    }
}

.vsm-multiple-col-cta .background {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
    position: relative
}

.vsm-multiple-col-cta .background .row {
    padding: 0;
    margin: 0
}

.vsm-multiple-col-cta .background .row .col {
    padding: 0;
    margin: 0
}

.vsm-multiple-col-cta .background::before {
    content: "";
    background: rgba(var(--vsm-secondary-colour), 0.7);
    background: linear-gradient(180deg, rgba(var(--vsm-secondary-colour), 0.7) 0%, rgba(var(--vsm-primary-colour), 0.7) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.vsm-multiple-col-cta .component-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 0rem 1.875rem
}

.vsm-multiple-col-cta .vsm-body {
    overflow: hidden;
    position: relative;
    z-index: 2
}

.vsm-multiple-col-cta .vsm-body .abs {
    position: absolute;
    top: 1.875rem;
    left: 1.875rem;
    z-index: 2
}

.vsm-multiple-col-cta .vsm-body .md-heading {
    color: rgba(var(--vsm-white), 1);
    font-size: 40px;
    font-size: 2.5rem;
    font-weight: 700
}

.vsm-multiple-col-cta .vsm-body .md-heading span {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-multiple-col-cta .vsm-body .swiper-slide {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-end
}

.vsm-multiple-col-cta .vsm-body .swiper-slide:hover::before {
    background: rgba(var(--vsm-secondary-colour), 0.9);
    background: linear-gradient(180deg, rgba(var(--vsm-secondary-colour), 0.7) 0%, rgba(var(--vsm-primary-colour), 0.9) 100%)
}

.vsm-multiple-col-cta .vsm-body .swiper-slide:hover .content .sm-heading:after {
    width: 100%
}

.vsm-multiple-col-cta .vsm-body .swiper-slide::before {
    content: "";
    display: block;
    width: 100%;
    right: 0;
    border-right: 1px solid rgba(var(--vsm-white), 0.1);
    height: 100%;
    mix-blend-mode: multiply;
    position: absolute
}

.vsm-multiple-col-cta .vsm-body .swiper-slide .content {
    padding-left: 1.875rem;
    padding-bottom: 1.875rem;
    padding-right: 1.875rem;
    z-index: 1
}

.vsm-multiple-col-cta .vsm-body .swiper-slide .content .sm-heading {
    color: rgba(var(--vsm-white), 0);
    font-size: 20px;
    font-size: 1.25rem
}

.vsm-multiple-col-cta .vsm-body .swiper-slide .content .sm-heading span {
    color: rgba(var(--vsm-tertiary-colour), 1)
}

.vsm-multiple-col-cta .vsm-body .swiper-slide .content a {
    color: rgba(var(--vsm-tertiary-colour), 1)
}

.vsm-multiple-col-cta .vsm-body .swiper-slide .content a:hover {
    color: rgba(var(--vsm-white), 1)
}

.vsm-multiple-col-cta .vsm-body .swiper-slide .content .rte {
    font-size: 18px;
    font-size: 1.125rem;
    color: rgba(var(--vsm-white), 1)
}

@media(min-width: 1024px) {
    .vsm-multiple-col-cta .vsm-body .swiper-slide .content .rte {
        opacity: 0;
        height: 0;
        visibility: hidden;
        transition: 800ms opacity ease-out
    }
}

.vsm-multiple-col-cta .vsm-body .swiper-slide .content .rte p,
.vsm-multiple-col-cta .vsm-body .swiper-slide .content .rte li,
.vsm-multiple-col-cta .vsm-body .swiper-slide .content .rte ul,
.vsm-multiple-col-cta .vsm-body .swiper-slide .content .rte dd,
.vsm-multiple-col-cta .vsm-body .swiper-slide .content .rte h3,
.vsm-multiple-col-cta .vsm-body .swiper-slide .content .rte h4,
.vsm-multiple-col-cta .vsm-body .swiper-slide .content .rte h5,
.vsm-multiple-col-cta .vsm-body .swiper-slide .content .rte h6 {
    color: inherit;
    font-size: inherit
}

.vsm-multiple-col-cta .vsm-body .swiper-slide:hover .content .rte {
    display: block;
    height: 100%;
    visibility: visible;
    opacity: .95
}

.vsm-multiple-col-cta .vsm-footer {
    margin-top: 1.875rem
}

.vsm-multi-step-form .crumb {
    border-bottom: 0.0625rem solid rgba(var(--vsm-body-copy-colour), 0.2);
    padding: 0 0 1.25rem 0
}

.vsm-multi-step-form .crumb .nav-item {
    display: none
}

.vsm-multi-step-form .crumb .nav-item a {
    padding: 0 1.25rem 0 0;
    font-size: 20px;
    font-size: 1.25rem;
    color: rgba(var(--vsm-body-copy-colour), 0.5)
}

.vsm-multi-step-form .crumb .nav-item a:hover {
    color: rgba(var(--vsm-body-copy-colour), 1)
}

.vsm-multi-step-form .crumb .nav-item.show {
    display: inline-block;
    padding: 0
}

.vsm-multi-step-form .crumb .nav-item.show a.active {
    color: rgba(var(--vsm-body-copy-colour), 1)
}

.vsm-multi-step-form .tab-content {
    padding: 1.875rem 0
}

.vsm-multi-step-form .tab-content .form-holder form .col {
    flex: 1 0 100%
}

@media(min-width: 768px) {
    .vsm-multi-step-form .tab-content .form-holder form .col {
        flex: 1 0 0
    }
}

.vsm-multi-step-form .tab-content .form-holder form .text label,
.vsm-multi-step-form .tab-content .form-holder form .textarea label,
.vsm-multi-step-form .tab-content .form-holder form .select label {
    font-weight: 600
}

.vsm-multi-step-form .tab-content .md-heading {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 0.9375rem
}

.vsm-multi-step-form .tab-content .sub-nav {
    margin-top: 2.5rem
}

.vsm-multi-step-form .tab-content .sub-nav li {
    margin-right: 0.9375rem;
    margin-bottom: 0.9375rem
}

.vsm-multi-step-form .tab-content .sub-nav .btn {
    border: 0.0625rem solid rgba(var(--vsm-body-copy-colour), 1);
    background: none;
    color: rgba(var(--vsm-quaternary-colour), 1)
}

.vsm-multi-step-form .tab-content .sub-nav .btn:hover {
    border: 0.0625rem solid rgba(var(--vsm-primary-colour), 1);
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1)
}

.vsm-multi-step-form .tab-content .inline-links {
    display: block
}

.vsm-multi-step-form .tab-content .inline-links .inline-link {
    display: inline-block;
    margin-right: 0.9375rem;
    color: rgba(var(--vsm-secondary-colour), 1)
}

.vsm-multi-step-form .tab-content .inline-links .inline-link:hover {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-multi-step-form .tab-content .inline-links .inline-link:after {
    display: none
}

.vsm-tabbed-maps.side-nav .nav li a {
    padding: 0.625rem 0.9375rem;
    border-bottom: 0.0625rem solid rgba(var(--vsm-black), 0.1);
    text-decoration: none;
    margin-right: 0rem
}

.vsm-tabbed-maps.side-nav .nav li a.active {
    color: rgba(var(--vsm-accent-colour), 1);
    border-bottom: 0.0625rem solid rgba(var(--vsm-black), 0)
}

.vsm-tabbed-maps.side-nav .nav li a:not(.active) {
    background: rgba(var(--vsm-black), 0.1)
}

.vsm-tabbed-maps.side-nav .vsm-body {
    display: flex;
    flex-wrap: wrap
}

.vsm-tabbed-maps.side-nav .vsm-body .flex-item {
    display: flex
}

.vsm-tabbed-maps.side-nav .vsm-body .flex-item:nth-child(1) {
    width: 100%
}

@media(min-width: 768px) {
    .vsm-tabbed-maps.side-nav .vsm-body .flex-item:nth-child(1) {
        flex: 1 0 auto;
        max-width: 33.3333%
    }
}

.vsm-tabbed-maps.side-nav .vsm-body .flex-item:nth-child(2) {
    width: 100%
}

@media(min-width: 768px) {
    .vsm-tabbed-maps.side-nav .vsm-body .flex-item:nth-child(2) {
        flex: 1 0 auto;
        max-width: 66.6666%
    }
}

.vsm-tabbed-maps.side-nav .vsm-body .nav {
    flex-direction: column
}

.vsm-tabbed-maps.horizontal-nav .nav li a {
    padding: 0.625rem 0.9375rem;
    border-top: 0.0625rem solid rgba(var(--vsm-black), 0.1);
    border-left: 0.0625rem solid rgba(var(--vsm-black), 0.05);
    border-right: 0.0625rem solid rgba(var(--vsm-black), 0.05);
    border-bottom: 0.0625rem solid rgba(var(--vsm-black), 0.1);
    text-decoration: none;
    margin-right: -0.0625rem
}

.vsm-tabbed-maps.horizontal-nav .nav li a.active {
    color: rgba(var(--vsm-accent-colour), 1);
    border-bottom: 0.0625rem solid rgba(var(--vsm-black), 0)
}

.vsm-tabbed-maps.horizontal-nav .nav li a:not(.active) {
    background: rgba(var(--vsm-black), 0.1)
}

.vsm-tabbed-maps.horizontal-nav .nav li:first-child a {
    border-left: 0.0625rem solid rgba(var(--vsm-black), 0.1);
    border-top-left-radius: 0.5rem
}

.vsm-tabbed-maps.horizontal-nav .nav li:last-child a {
    border-right: 0.0625rem solid rgba(var(--vsm-black), 0.1);
    border-top-right-radius: 0.5rem
}

.vsm-tabbed-maps.side-nav .flex-item:first-child .content {
    background: rgba(var(--vsm-body-copy-colour), 0.05)
}

.vsm-tabbed-maps.side-nav .flex-item:first-child .content .sm-heading {
    padding: 0.9375rem 0.625rem;
    margin-bottom: 0;
    font-size: 20px;
    font-size: 1.25rem
}

.vsm-tabbed-maps.side-nav .flex-item:first-child .content ul.nav li a {
    padding: 0.9375rem 0.625rem;
    background: rgba(var(--vsm-body-copy-colour), 0.05)
}

.vsm-tabbed-maps.side-nav .flex-item:first-child .content ul.nav li a:after {
    top: auto;
    margin-top: 0.1875rem;
    right: 0.625rem
}

.vsm-tabbed-maps.side-nav .flex-item:first-child .content ul.nav li a.active {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1)
}

.vsm-tabbed-maps.side-nav .flex-item:first-child .content ul.nav li a.active:after {
    color: rgba(var(--vsm-white), 1)
}

.vsm-tabbed-maps.side-nav .flex-item:first-child .row>.col:first-child {
    max-width: 100%;
    margin-bottom: 1.875rem
}

.vsm-tabbed-maps.side-nav .flex-item:last-child>.container>.row>.col>.content {
    background: rgba(var(--vsm-body-copy-colour), 0.05);
    padding: 1.875rem 0.9375rem
}

.vsm-tabbed-maps.side-nav .flex-item:last-child .content .sm-heading {
    margin-bottom: 0
}

.vsm-tabbed-maps.side-nav .flex-item:last-child .content .map_canvas {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
    width: 100%;
    height: 450px
}

.vsm-tabbed-maps.side-nav .flex-item:last-child .content .xs-heading {
    font-size: 16px;
    font-size: 1rem
}

.vsm-tabbed-maps.side-nav .nav li a {
    position: relative;
    display: block;
    color: rgba(var(--vsm-body-copy-colour-colour), 1);
    font-weight: 600;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0.3125rem 0
}

.vsm-tabbed-maps.side-nav .nav li a:after {
    content: "";
    color: rgba(0, 0, 0, .2);
    position: absolute;
    right: 0;
    top: 0.4375rem;
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1
}

.vsm-tabbed-maps.side-nav .nav li a.active {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-tabbed-maps.side-nav .nav li a.active:after {
    color: rgba(var(--vsm-primary-colour), 1)
}

.vsm-tabbed-maps.side-nav .nav li:last-child a {
    border-bottom: 0rem solid rgba(0, 0, 0, 0)
}

.vsm-tabbed-maps .gm-style .gm-style-iw-c {
    padding: 1.25rem !important
}

.vsm-tabbed-maps .gm-style .gm-style-iw-c button {
    top: 0 !important;
    right: 0 !important
}

.vsm-tabbed-maps .gm-style-iw.gm-style-iw-c div {
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.4
}

.vsm-content-image-70-30 {
    position: relative
}

.vsm-content-image-70-30 .md-heading {
    font-size: var(--vsm-md-heading)
}

.vsm-content-image-70-30 .rte {
    font-size: var(--vsm-text-size)
}

.vsm-content-image-70-30 .rte li,
.vsm-content-image-70-30 .rte p,
.vsm-content-image-70-30 .rte dd,
.vsm-content-image-70-30 .rte a {
    font-size: var(--vsm-text-size);
    font-size: inherit
}

.vsm-content-image-70-30 .rte.larger-text {
    font-size: var(--vsm-intro-text-size)
}

.vsm-content-image-70-30 .rte.larger-text li,
.vsm-content-image-70-30 .rte.larger-text p,
.vsm-content-image-70-30 .rte.larger-text dd,
.vsm-content-image-70-30 .rte.larger-text a {
    font-size: var(--vsm-intro-text-size);
    font-size: inherit
}

.vsm-content-image-70-30 .media {
    overflow: hidden
}

.vsm-content-image-70-30 .order-md-1 .content {
    padding-left: 0
}

@media(min-width: 768px) {
    .vsm-content-image-70-30 .order-md-1 .content {
        padding-right: 8.333%
    }
}

.vsm-content-image-70-30 .order-md-2 .content {
    padding-right: 0
}

@media(min-width: 768px) {
    .vsm-content-image-70-30 .order-md-2 .content {
        padding-left: 8.333%
    }
}

.vsm-content-image-70-30 .content {
    display: flex;
    height: 100%;
    margin-bottom: 1.875rem
}

.vsm-content-image-70-30 img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover
}

body.sign-in {
    padding-bottom: 0 !important
}

body.sign-in .container-fluid {
    max-width: 100%;
    height: 100%
}

body.sign-in .container-fluid>.row {
    height: 100%
}

body.sign-in .container-fluid>.row>.col-md-6 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    margin: 0;
    position: relative
}

body.sign-in .container-fluid>.row>.col-md-6:nth-child(1):before {
    content: "";
    background: rgba(0, 0, 0, .6);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

@media(min-width: 1024px) {
    body.sign-in .container-fluid>.row>.col-md-6:nth-child(1) {
        justify-content: flex-end
    }
}

@media(min-width: 1024px) {
    body.sign-in .container-fluid>.row>.col-md-6:nth-child(2) {
        justify-content: flex-start
    }
}

body.sign-in .container-fluid>.row>.col-md-6 .container {
    margin: 0
}

@media(min-width: 1024px) {
    body.sign-in .container-fluid>.row>.col-md-6 .container {
        max-width: 41rem;
        align-self: center
    }
}

body.sign-in .container-fluid>.row>.col-md-6 .container .client-logo {
    margin-bottom: 3.125rem
}

body.sign-in .container-fluid>.row>.col-md-6 .container .client-logo .brand {
    display: block;
    padding: 0;
    position: relative;
    z-index: 1;
    height: 3.3125rem
}

body.sign-in .container-fluid>.row>.col-md-6 .container .client-logo .brand img {
    width: auto;
    height: 100%;
    object-fit: cover
}

body.sign-in .container-fluid>.row>.col-md-6 .container .content {
    position: relative;
    z-index: 1;
    color: rgba(var(--vsm-white), 1)
}

body.sign-in .container-fluid>.row>.col-md-6 .container .content .md-heading,
body.sign-in .container-fluid>.row>.col-md-6 .container .content .xs-heading {
    color: rgba(var(--vsm-white), 1)
}

body.sign-in .container-fluid>.row>.col-md-6 .container .content .rte {
    color: rgba(var(--vsm-white), 0.8)
}

body.sign-in .container-fluid>.row>.col-md-6 .container .content .rte p,
body.sign-in .container-fluid>.row>.col-md-6 .container .content .rte li,
body.sign-in .container-fluid>.row>.col-md-6 .container .content .rte a {
    color: inherit
}

body.sign-in .container-fluid>.row>.col-md-6 .container .feature-list .feature {
    display: flex;
    border-bottom: 0.0625rem solid rgba(var(--vsm-white), 0.2);
    margin-bottom: 0.9375rem
}

body.sign-in .container-fluid>.row>.col-md-6 .container .feature-list .feature .media {
    margin-right: 0.9375rem;
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    min-height: 2.5rem;
    padding: 0.625rem;
    background: rgba(var(--vsm-primary-colour), 1);
    border-radius: 6.25rem;
    display: flex
}

body.sign-in .container-fluid>.row>.col-md-6 .container .feature-list .feature .media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

body.sign-in .container-fluid>.row>.col-md-6 .container .feature-list .feature .xs-heading {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 0.625rem
}

body.sign-in .container-fluid>.row>.col-md-6 .container .sign-in-form.card {
    background: none;
    border: none;
    box-shadow: none
}

body.sign-in .container-fluid>.row>.col-md-6 .container .sign-in-form.card .btn span {
    color: rgba(var(--vsm-body-colour), 1)
}

body.sign-in .container-fluid>.row>.col-md-6 .container .sign-in-form.card .btn:hover span {
    color: rgba(var(--vsm-white), 1)
}

body.register .bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    height: auto;
    min-height: 100%
}

body.register .bg:before {
    content: "";
    background: rgba(var(--vsm-black), 0.6);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

body.register .bg .container-fluid {
    position: relative;
    z-index: 1;
    height: auto
}

body.register .bg .links a {
    color: rgba(var(--vsm-white), 1)
}

body.sign-in .content .md-heading:after,
body.sign-in .content .xs-heading:after {
    display: none
}

body.sign-in .content .feature-list {
    margin-bottom: 1.875rem
}

.sign-in-form .element.select span {
    font-size: 13px;
    color: #5f6368;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    letter-spacing: .2px;
    line-height: 1.4;
    margin-bottom: 20px;
    display: block
}

.sign-in-form .element.select select {
    color: #212529
}

.sign-in-form select:invalid {
    color: rgba(var(--vsm-body-copy-colour), 0.7)
}

.sign-in-form .element.select .field:before {
    pointer-events: none;
    content: "";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: rgba(var(--vsm-primary-colour), 1);
    position: absolute;
    top: .938rem;
    right: .938rem
}

a.tag {
    color: rgba(var(--vsm-body-colour), 1)
}

a.post-title {
    color: rgba(var(--vsm-body-colour), 1)
}

.search-bar .element.select .bootstrap-select>.dropdown-toggle {
    background: rgba(var(--vsm-white), 1)
}

.search-bar .element.select .field:before {
    z-index: 1
}

.vsm-hero-slider .bg .container .content .rte {
    display: none
}

@media(min-width: 768px) {
    .vsm-hero-slider .bg .container .content .rte {
        display: block
    }
}

.sign-in-form .element label {
    margin-bottom: 8px
}

.sign-in-form #step2 .element.select label {
    display: block;
    font-size: 10px;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-weight: 600
}

.login-v2.container-fluid>.row {
    position: relative;
    height: 100%
}

.login-v2.container-fluid>.row .brand {
    margin: 1.25rem 0;
    max-width: 5rem;
    max-height: 5rem
}

.login-v2.container-fluid>.row .brand img {
    width: 100%;
    height: 100%
}

@media(min-width: 1024px) {
    .login-v2.container-fluid>.row .brand {
        position: absolute;
        top: 0
    }
}

.login-v2.container-fluid>.row>.col {
    flex: 1 0 100%;
    width: 100%
}

@media(min-width: 1024px) {
    .login-v2.container-fluid>.row>.col {
        min-height: 800px;
        flex: 1 0 50%;
        width: 50%;
        display: flex
    }
}

.login-v2.container-fluid>.row>.col:nth-child(1) {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative
}

@media(min-width: 768px) {
    .login-v2.container-fluid>.row>.col:nth-child(1) {
        justify-content: flex-end
    }
}

@media only screen and (min-width: 1024px)and (min-height: 768px) {
    .login-v2.container-fluid>.row>.col:nth-child(1) {
        position: fixed;
        height: 100%
    }
}

.login-v2.container-fluid>.row>.col:nth-child(1):before {
    content: "";
    background: rgba(0, 0, 0, .7);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.login-v2.container-fluid>.row>.col:nth-child(1)>.container {
    position: relative;
    z-index: 1
}

.login-v2.container-fluid>.row>.col:nth-child(1)>.container>.row:nth-child(2) {
    height: 100%
}

.login-v2.container-fluid>.row>.col:nth-child(1)>.container>.row:nth-child(2)>.col {
    align-self: flex-start
}

.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content {
    padding: 1.875rem 1.875rem 3.125rem 1.875rem;
    color: rgba(var(--vsm-white), 1)
}

@media(min-width: 1024px) {
    .login-v2.container-fluid>.row>.col:nth-child(1)>.container .content {
        padding: 9.375rem 1.875rem 5rem 1.875rem
    }
}

.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content h1,
.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content h2,
.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content h3,
.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content h4,
.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content h5,
.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content h6,
.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content p,
.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content li,
.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content dt,
.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content dd {
    color: inherit
}

.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content .feature-list {
    margin: 1.25rem 0 0 0
}

.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content .feature-list .feature {
    display: flex
}

.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content .feature-list .feature .media {
    background: rgba(var(--vsm-primary-colour), 1);
    max-width: 2.8125rem;
    height: 2.8125rem;
    border-radius: 18.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 0 20%
}

.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content .feature-list .feature .media img path,
.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content .feature-list .feature .media svg path {
    fill: rgba(var(--vsm-white), 1)
}

.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content .feature-list .feature .details {
    flex: 1 0 80%;
    padding-left: 1.25rem
}

.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content .btn {
    margin-top: 1.875rem;
    background: rgba(var(--vsm-primary-colour), 1);
    border: 0;
    width: 100%
}

@media(min-width: 768px) {
    .login-v2.container-fluid>.row>.col:nth-child(1)>.container .content .btn {
        width: auto
    }
}

.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content .btn:hover {
    background: rgba(var(--vsm-white), 1);
    color: rgba(var(--vsm-primary-colour), 1)
}

.login-v2.container-fluid>.row>.col:nth-child(1)>.container .content .btn:hover span {
    color: inherit
}

@media only screen and (min-width: 1024px)and (min-height: 768px) {
    .login-v2.container-fluid>.row>.col:nth-child(2) {
        margin-left: 50%
    }
}

@media(min-width: 1024px) {
    .login-v2.container-fluid>.row>.col:nth-child(2)>.container {
        align-self: center
    }
}

@media(min-width: 768px) {
    .login-v2.container-fluid>.row>.col:nth-child(2) {
        justify-content: flex-start
    }

    .login-v2.container-fluid>.row>.col:nth-child(2) .content {
        padding: 1.875rem 1.875rem 5rem 1.875rem
    }
}

.login-v2.container-fluid>.row>.col:nth-child(2) .element.text,
.login-v2.container-fluid>.row>.col:nth-child(2) .element.textarea {
    position: relative
}

.login-v2.container-fluid>.row>.col:nth-child(2) .element.text label,
.login-v2.container-fluid>.row>.col:nth-child(2) .element.textarea label {
    position: absolute;
    left: 0.625rem;
    top: 0.6875rem;
    text-transform: none;
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0;
    pointer-events: none;
    font-weight: 500
}

.login-v2.container-fluid>.row>.col:nth-child(2) .element.text label.sm-label,
.login-v2.container-fluid>.row>.col:nth-child(2) .element.textarea label.sm-label {
    top: 0.25rem;
    font-size: 8px;
    font-size: .5rem;
    opacity: .5
}

.login-v2.container-fluid>.row>.col:nth-child(2) .element.text:focus-within label,
.login-v2.container-fluid>.row>.col:nth-child(2) .element.textarea:focus-within label {
    top: 0.25rem;
    font-size: 8px;
    font-size: .5rem;
    opacity: .5
}

.login-v2.container-fluid>.row>.col:nth-child(2) .element.text .field,
.login-v2.container-fluid>.row>.col:nth-child(2) .element.textarea .field {
    padding-left: 0;
    padding-right: 0;
    padding: 0;
    border-radius: 0.3125rem;
    border: 0.0625rem solid rgba(0, 0, 0, .2);
    background: rgba(194, 194, 194, .1)
}

.login-v2.container-fluid>.row>.col:nth-child(2) .element.text .field input,
.login-v2.container-fluid>.row>.col:nth-child(2) .element.text .field textarea,
.login-v2.container-fluid>.row>.col:nth-child(2) .element.textarea .field input,
.login-v2.container-fluid>.row>.col:nth-child(2) .element.textarea .field textarea {
    border-radius: 0.3125rem;
    background: rgba(194, 194, 194, 0);
    border: none;
    font-size: 16px;
    font-size: 1rem
}

.login-v2.container-fluid>.row>.col:nth-child(2) .element.text .field input::placeholder,
.login-v2.container-fluid>.row>.col:nth-child(2) .element.text .field textarea::placeholder,
.login-v2.container-fluid>.row>.col:nth-child(2) .element.textarea .field input::placeholder,
.login-v2.container-fluid>.row>.col:nth-child(2) .element.textarea .field textarea::placeholder {
    display: none;
    opacity: 0;
    font-size: 16px;
    font-size: 1rem
}

.login-v2.container-fluid>.row>.col:nth-child(2) .element.file .custom-file {
    height: auto
}

.login-v2.container-fluid>.row>.col:nth-child(2) .element.file .custom-file input {
    position: relative
}

.login-v2.container-fluid>.row>.col:nth-child(2) .element.file .custom-file-input {
    height: auto;
    padding: 0.625rem 0.625rem
}

.login-v2.container-fluid>.row>.col:nth-child(2) .element.file .custom-file-label {
    font-size: 16px;
    font-size: 1rem;
    padding: 0.625rem 0.625rem;
    height: auto
}

.login-v2.container-fluid>.row>.col:nth-child(2) .element.file .custom-file-label:after {
    height: calc(100% - 6px);
    display: flex;
    align-items: center
}

.login-v2.container-fluid>.row>.col:nth-child(2) .btn {
    background: rgba(var(--vsm-primary-colour), 1);
    color: rgba(var(--vsm-white), 1);
    border: none
}

.login-v2.container-fluid>.row>.col:nth-child(2) .btn span {
    color: inherit
}

.login-v2.container-fluid>.row>.col:nth-child(2) .btn:hover {
    background: rgba(var(--vsm-black), 1);
    color: rgba(var(--vsm-white), 1)
}

.login-v2.container-fluid>.row>.col:nth-child(2) .btn:hover span {
    color: inherit
}

.login-v2.container-fluid>.row>.col:nth-child(2) .form-row .col-md-6 {
    flex: 1 0 50%;
    width: 50%
}

.login-v2.container-fluid>.row>.col>.container {
    max-width: 41rem;
    align-self: stretch
}

.login-v2.container-fluid>.row>.col>.container .card {
    background: none;
    box-shadow: none;
    border: none
}

@media(min-width: 1024px) {
    .login-v2.container-fluid>.row>.col>.container .card {
        margin: 7.5rem 0
    }
}

@media only screen and (min-width: 1024px)and (min-height: 768px) {
    .login-v2.container-fluid>.row>.col>.container .card {
        margin: 7.5rem 0
    }
}

.login-v2.container-fluid>.row>.col>.container .card .sm-text {
    text-align: center
}

.login-v2.container-fluid>.row>.col>.container .card .col-md-12 {
    flex: 1 0 0%
}

.login-v2.container-fluid>.row>.col>.container .card .col-md-12 .element.submit .btn {
    width: 100%
}

.login-v2.container-fluid>.row>.col>.container .card [class*=icheck-]>input:first-child:checked+label::after {
    border-color: rgba(var(--vsm-white), 1);
    border-width: .148rem
}

@media(min-width: 1024px) {
    .login-v2.w-30-60.container-fluid>.row>.col:nth-child(1) {
        flex: 1 0 33.3333%;
        max-width: 33.3333%
    }
}

@media(min-width: 1024px) {
    .login-v2.w-30-60.container-fluid>.row>.col:nth-child(1)>.container {
        align-self: flex-start
    }
}

@media(min-width: 1024px) {
    .login-v2.w-30-60.container-fluid>.row>.col:nth-child(2) {
        flex: 1 0 66.6666%
    }
}

@media only screen and (min-width: 1024px)and (min-width: 1024px)and (min-height: 768px) {
    .login-v2.w-30-60.container-fluid>.row>.col:nth-child(2) {
        margin-left: 33.3333%
    }
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2) {
    background: rgba(var(--vsm-black), 1)
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card {
    color: rgba(var(--vsm-white), 1)
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card h1,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card h2,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card h3,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card h4,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card h5,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card h6,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card p,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card li,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card dt,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card dd,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card label {
    color: inherit
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.text .field,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.textarea .field {
    background: rgba(var(--vsm-white), 0.1);
    border: 0.0625rem solid rgba(var(--vsm-white), 0.3);
    padding-left: 0;
    padding-right: 0;
    border-radius: 0.3125rem
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.text .field input,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.textarea .field input {
    color: rgba(var(--vsm-white), 1);
    font-size: 16px;
    font-size: 1rem
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.text .field input::placeholder,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.textarea .field input::placeholder {
    color: rgba(var(--vsm-white), 1);
    font-size: 16px;
    font-size: 1rem
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.text .field textarea,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.textarea .field textarea {
    background: rgba(var(--vsm-white), 0);
    color: rgba(var(--vsm-white), 1);
    font-size: 16px;
    font-size: 1rem
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.text .field textarea::placeholder,
.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.textarea .field textarea::placeholder {
    color: rgba(var(--vsm-white), 1);
    font-size: 16px;
    font-size: 1rem
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.file {
    color: rgba(var(--vsm-white), 1)
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.file .custom-file {
    height: auto
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.file .custom-file input {
    position: relative
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.file .custom-file-input {
    height: auto;
    padding: 0.9375rem 0.9375rem
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.file .custom-file-label {
    background: rgba(var(--vsm-white), 0.1);
    color: rgba(var(--vsm-white), 1);
    border-color: rgba(var(--vsm-white), 0.3);
    padding: 0.9375rem 0.625rem;
    font-size: 16px;
    font-size: 1rem;
    height: auto
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element.file .custom-file-label:after {
    height: calc(100% - 6px);
    display: flex;
    align-items: center
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element .helper {
    color: rgba(var(--vsm-white), 0.8)
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element .btn:hover {
    background: rgba(var(--vsm-white), 1);
    color: rgba(var(--vsm-primary-colour), 1)
}

.login-v2.dark.container-fluid>.row>.col:nth-child(2)>.container .card .element .btn:hover span {
    color: inherit
}

.hdpi.pac-logo:after {
    display: none !important
}

@media(min-width: 768px) {
    #vennture_dynamic_jobsearch {
        min-height: calc(100vh - 80px)
    }
}

.feature-insert {
    display: none
}