@charset "UTF-8";
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
    height: 100%;
}
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
    height: 100%;
}
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
    height: 100%;
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    height: 100%;
}
.owl-carousel .owl-item .item {
    height: 100%;
}
.owl-carousel .owl-item .item .career-item {
    height: 100%;
}
.owl-carousel .owl-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel.owl-loaded {
    display: block;
}
.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}
.owl-carousel.owl-hidden {
    opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}
.owl-carousel.owl-rtl {
    direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
    z-index: 0;
}
.owl-carousel .owl-animated-out {
    z-index: 1;
}
.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
    transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}
.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*="owl-"] {
    color: #fff;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #d6d6d6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #869791;
    color: #fff;
    text-decoration: none;
}
.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}
.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

/*! minireset.css v0.0.2 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    margin: 0;
}

html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
}
*:before,
*:after {
    box-sizing: inherit;
}

img,
embed,
object,
audio,
video {
    max-width: 100%;
}

iframe {
    border: 0;
}

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

td,
th {
    padding: 0;
    text-align: left;
}

html {
    background-color: white;
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    min-width: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    text-rendering: optimizeLegibility;
    text-size-adjust: 100%;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
    display: block;
}

body,
button,
input,
select,
textarea {
    font-family: "Lato", BlinkMacSystemFont, -apple-system, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

code,
pre,
code > span,
pre > span {
    -moz-osx-font-smoothing: auto;
    -webkit-font-smoothing: auto;
    font-family: monospace;
}

body {
    color: #484848;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

a {
    color: #4372d6;
    cursor: pointer;
    text-decoration: none;
}
a strong {
    color: currentColor;
}
a:hover {
    color: #3a79ff;
}

code {
    background-color: whitesmoke;
    color: #ff3860;
    font-size: 0.875em;
    font-weight: normal;
    padding: 0.25em 0.5em 0.25em;
}

hr {
    background-color: #d6d6d6;
    border: none;
    display: block;
    height: 2px;
    margin-top: 3.75rem;
    margin-bottom: 0.75rem;
}

img {
    height: auto;
    max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    vertical-align: baseline;
}

small {
    font-size: 0.875em;
}

span {
    font-style: inherit;
    font-weight: inherit;
}

strong {
    color: #323232;
    font-weight: 700;
}

pre {
    -webkit-overflow-scrolling: touch;
    background-color: whitesmoke;
    color: #484848;
    font-size: 0.875em;
    overflow-x: auto;
    padding: 1.25rem 1.5rem;
    white-space: pre;
    word-wrap: normal;
}
pre code {
    background-color: transparent;
    color: currentColor;
    font-size: 1em;
    padding: 0;
}

table td,
table th {
    text-align: left;
    vertical-align: top;
}
table th {
    color: #323232;
}

.is-clearfix:after {
    clear: both;
    content: " ";
    display: table;
}

.is-pulled-left {
    float: left !important;
}

.is-pulled-right {
    float: right !important;
}

.is-clipped {
    overflow: hidden !important;
}

.is-overlay {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.is-size-1 {
    font-size: 3rem !important;
}

.is-size-2 {
    font-size: 2.5rem !important;
}

.is-size-3 {
    font-size: 2rem !important;
}

.is-size-4 {
    font-size: 1.5rem !important;
}

.is-size-5 {
    font-size: 1.25rem !important;
}

.is-size-6 {
    font-size: 1rem !important;
}

.is-size-7 {
    font-size: 0.75rem !important;
}

@media screen and (max-width: 768px) {
    .is-size-1-mobile {
        font-size: 3rem !important;
    }

    .is-size-2-mobile {
        font-size: 2.5rem !important;
    }

    .is-size-3-mobile {
        font-size: 2rem !important;
    }

    .is-size-4-mobile {
        font-size: 1.5rem !important;
    }

    .is-size-5-mobile {
        font-size: 1.25rem !important;
    }

    .is-size-6-mobile {
        font-size: 1rem !important;
    }

    .is-size-7-mobile {
        font-size: 0.75rem !important;
    }
}
@media screen and (min-width: 769px), print {
    .is-size-1-tablet {
        font-size: 3rem !important;
    }

    .is-size-2-tablet {
        font-size: 2.5rem !important;
    }

    .is-size-3-tablet {
        font-size: 2rem !important;
    }

    .is-size-4-tablet {
        font-size: 1.5rem !important;
    }

    .is-size-5-tablet {
        font-size: 1.25rem !important;
    }

    .is-size-6-tablet {
        font-size: 1rem !important;
    }

    .is-size-7-tablet {
        font-size: 0.75rem !important;
    }
}
@media screen and (max-width: 1023px) {
    .is-size-1-touch {
        font-size: 3rem !important;
    }

    .is-size-2-touch {
        font-size: 2.5rem !important;
    }

    .is-size-3-touch {
        font-size: 2rem !important;
    }

    .is-size-4-touch {
        font-size: 1.5rem !important;
    }

    .is-size-5-touch {
        font-size: 1.25rem !important;
    }

    .is-size-6-touch {
        font-size: 1rem !important;
    }

    .is-size-7-touch {
        font-size: 0.75rem !important;
    }
}
@media screen and (min-width: 1024px) {
    .is-size-1-desktop {
        font-size: 3rem !important;
    }

    .is-size-2-desktop {
        font-size: 2.5rem !important;
    }

    .is-size-3-desktop {
        font-size: 2rem !important;
    }

    .is-size-4-desktop {
        font-size: 1.5rem !important;
    }

    .is-size-5-desktop {
        font-size: 1.25rem !important;
    }

    .is-size-6-desktop {
        font-size: 1rem !important;
    }

    .is-size-7-desktop {
        font-size: 0.75rem !important;
    }
}
@media screen and (min-width: 1280px) {
    .is-size-1-widescreen {
        font-size: 3rem !important;
    }

    .is-size-2-widescreen {
        font-size: 2.5rem !important;
    }

    .is-size-3-widescreen {
        font-size: 2rem !important;
    }

    .is-size-4-widescreen {
        font-size: 1.5rem !important;
    }

    .is-size-5-widescreen {
        font-size: 1.25rem !important;
    }

    .is-size-6-widescreen {
        font-size: 1rem !important;
    }

    .is-size-7-widescreen {
        font-size: 0.75rem !important;
    }
}
@media screen and (min-width: 1408px) {
    .is-size-1-fullhd {
        font-size: 3rem !important;
    }

    .is-size-2-fullhd {
        font-size: 2.5rem !important;
    }

    .is-size-3-fullhd {
        font-size: 2rem !important;
    }

    .is-size-4-fullhd {
        font-size: 1.5rem !important;
    }

    .is-size-5-fullhd {
        font-size: 1.25rem !important;
    }

    .is-size-6-fullhd {
        font-size: 1rem !important;
    }

    .is-size-7-fullhd {
        font-size: 0.75rem !important;
    }
}
.has-text-centered {
    text-align: center !important;
}

@media screen and (max-width: 768px) {
    .has-text-centered-mobile {
        text-align: center !important;
    }
}
@media screen and (min-width: 769px), print {
    .has-text-centered-tablet {
        text-align: center !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .has-text-centered-tablet-only {
        text-align: center !important;
    }
}
@media screen and (max-width: 1023px) {
    .has-text-centered-touch {
        text-align: center !important;
    }
}
@media screen and (min-width: 1024px) {
    .has-text-centered-desktop {
        text-align: center !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .has-text-centered-desktop-only {
        text-align: center !important;
    }
}
@media screen and (min-width: 1280px) {
    .has-text-centered-widescreen {
        text-align: center !important;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1407px) {
    .has-text-centered-widescreen-only {
        text-align: center !important;
    }
}
@media screen and (min-width: 1408px) {
    .has-text-centered-fullhd {
        text-align: center !important;
    }
}
.has-text-justified {
    text-align: justify !important;
}

@media screen and (max-width: 768px) {
    .has-text-justified-mobile {
        text-align: justify !important;
    }
}
@media screen and (min-width: 769px), print {
    .has-text-justified-tablet {
        text-align: justify !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .has-text-justified-tablet-only {
        text-align: justify !important;
    }
}
@media screen and (max-width: 1023px) {
    .has-text-justified-touch {
        text-align: justify !important;
    }
}
@media screen and (min-width: 1024px) {
    .has-text-justified-desktop {
        text-align: justify !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .has-text-justified-desktop-only {
        text-align: justify !important;
    }
}
@media screen and (min-width: 1280px) {
    .has-text-justified-widescreen {
        text-align: justify !important;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1407px) {
    .has-text-justified-widescreen-only {
        text-align: justify !important;
    }
}
@media screen and (min-width: 1408px) {
    .has-text-justified-fullhd {
        text-align: justify !important;
    }
}
.has-text-left,
.bottom-navigation a.is-left {
    text-align: left !important;
}

@media screen and (max-width: 768px) {
    .has-text-left-mobile {
        text-align: left !important;
    }
}
@media screen and (min-width: 769px), print {
    .has-text-left-tablet {
        text-align: left !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .has-text-left-tablet-only {
        text-align: left !important;
    }
}
@media screen and (max-width: 1023px) {
    .has-text-left-touch {
        text-align: left !important;
    }
}
@media screen and (min-width: 1024px) {
    .has-text-left-desktop {
        text-align: left !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .has-text-left-desktop-only {
        text-align: left !important;
    }
}
@media screen and (min-width: 1280px) {
    .has-text-left-widescreen {
        text-align: left !important;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1407px) {
    .has-text-left-widescreen-only {
        text-align: left !important;
    }
}
@media screen and (min-width: 1408px) {
    .has-text-left-fullhd {
        text-align: left !important;
    }
}
.has-text-right,
.bottom-navigation a.is-right {
    text-align: right !important;
}

@media screen and (max-width: 768px) {
    .has-text-right-mobile {
        text-align: right !important;
    }
}
@media screen and (min-width: 769px), print {
    .has-text-right-tablet {
        text-align: right !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .has-text-right-tablet-only {
        text-align: right !important;
    }
}
@media screen and (max-width: 1023px) {
    .has-text-right-touch {
        text-align: right !important;
    }
}
@media screen and (min-width: 1024px) {
    .has-text-right-desktop {
        text-align: right !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .has-text-right-desktop-only {
        text-align: right !important;
    }
}
@media screen and (min-width: 1280px) {
    .has-text-right-widescreen {
        text-align: right !important;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1407px) {
    .has-text-right-widescreen-only {
        text-align: right !important;
    }
}
@media screen and (min-width: 1408px) {
    .has-text-right-fullhd {
        text-align: right !important;
    }
}
.is-capitalized {
    text-transform: capitalize !important;
}

.is-lowercase {
    text-transform: lowercase !important;
}

.is-uppercase {
    text-transform: uppercase !important;
}

.is-italic {
    font-style: italic !important;
}

.has-text-white {
    color: white !important;
}

a.has-text-white:hover,
a.has-text-white:focus {
    color: #e6e6e6 !important;
}

.has-text-black {
    color: #0a0a0a !important;
}

a.has-text-black:hover,
a.has-text-black:focus {
    color: black !important;
}

.has-text-light {
    color: whitesmoke !important;
}

a.has-text-light:hover,
a.has-text-light:focus {
    color: #dbdbdb !important;
}

.has-text-dark {
    color: #323232 !important;
}

a.has-text-dark:hover,
a.has-text-dark:focus {
    color: #191919 !important;
}

.has-text-primary {
    color: #0487bf !important;
}

a.has-text-primary:hover,
a.has-text-primary:focus {
    color: #03648d !important;
}

.has-text-secondary {
    color: #6b4370 !important;
}

a.has-text-secondary:hover,
a.has-text-secondary:focus {
    color: #4d3050 !important;
}

.has-text-link {
    color: #4372d6 !important;
}

a.has-text-link:hover,
a.has-text-link:focus {
    color: #2958bd !important;
}

.has-text-info {
    color: #209cee !important;
}

a.has-text-info:hover,
a.has-text-info:focus {
    color: #0f81cc !important;
}

.has-text-success {
    color: #23d160 !important;
}

a.has-text-success:hover,
a.has-text-success:focus {
    color: #1ca64c !important;
}

.has-text-warning {
    color: #ffdd57 !important;
}

a.has-text-warning:hover,
a.has-text-warning:focus {
    color: #ffd324 !important;
}

.has-text-danger {
    color: #ff3860 !important;
}

a.has-text-danger:hover,
a.has-text-danger:focus {
    color: #ff0537 !important;
}

.has-text-black-bis {
    color: #121212 !important;
}

.has-text-black-ter {
    color: #242424 !important;
}

.has-text-grey-darker {
    color: #323232 !important;
}

.has-text-grey-dark {
    color: #484848 !important;
}

.has-text-grey {
    color: #767676 !important;
}

.has-text-grey-light {
    color: #d6d6d6 !important;
}

.has-text-grey-lighter {
    color: #f0f0f0 !important;
}

.has-text-white-ter {
    color: whitesmoke !important;
}

.has-text-white-bis {
    color: #fafafa !important;
}

.has-text-white-trans {
    color: rgba(255, 255, 255, 0.7) !important;
}

.has-text-weight-light {
    font-weight: 300 !important;
}

.has-text-weight-normal {
    font-weight: 400 !important;
}

.has-text-weight-semibold {
    font-weight: 600 !important;
}

.has-text-weight-bold {
    font-weight: 700 !important;
}

.is-block {
    display: block !important;
}

@media screen and (max-width: 768px) {
    .is-block-mobile {
        display: block !important;
    }
}
@media screen and (min-width: 769px), print {
    .is-block-tablet {
        display: block !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .is-block-tablet-only {
        display: block !important;
    }
}
@media screen and (max-width: 1023px) {
    .is-block-touch {
        display: block !important;
    }
}
@media screen and (min-width: 1024px) {
    .is-block-desktop {
        display: block !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .is-block-desktop-only {
        display: block !important;
    }
}
@media screen and (min-width: 1280px) {
    .is-block-widescreen {
        display: block !important;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1407px) {
    .is-block-widescreen-only {
        display: block !important;
    }
}
@media screen and (min-width: 1408px) {
    .is-block-fullhd {
        display: block !important;
    }
}
.is-flex {
    display: flex !important;
}

@media screen and (max-width: 768px) {
    .is-flex-mobile {
        display: flex !important;
    }
}
@media screen and (min-width: 769px), print {
    .is-flex-tablet {
        display: flex !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .is-flex-tablet-only {
        display: flex !important;
    }
}
@media screen and (max-width: 1023px) {
    .is-flex-touch {
        display: flex !important;
    }
}
@media screen and (min-width: 1024px) {
    .is-flex-desktop {
        display: flex !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .is-flex-desktop-only {
        display: flex !important;
    }
}
@media screen and (min-width: 1280px) {
    .is-flex-widescreen {
        display: flex !important;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1407px) {
    .is-flex-widescreen-only {
        display: flex !important;
    }
}
@media screen and (min-width: 1408px) {
    .is-flex-fullhd {
        display: flex !important;
    }
}
.is-inline {
    display: inline !important;
}

@media screen and (max-width: 768px) {
    .is-inline-mobile {
        display: inline !important;
    }
}
@media screen and (min-width: 769px), print {
    .is-inline-tablet {
        display: inline !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .is-inline-tablet-only {
        display: inline !important;
    }
}
@media screen and (max-width: 1023px) {
    .is-inline-touch {
        display: inline !important;
    }
}
@media screen and (min-width: 1024px) {
    .is-inline-desktop {
        display: inline !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .is-inline-desktop-only {
        display: inline !important;
    }
}
@media screen and (min-width: 1280px) {
    .is-inline-widescreen {
        display: inline !important;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1407px) {
    .is-inline-widescreen-only {
        display: inline !important;
    }
}
@media screen and (min-width: 1408px) {
    .is-inline-fullhd {
        display: inline !important;
    }
}
.is-inline-block {
    display: inline-block !important;
}

@media screen and (max-width: 768px) {
    .is-inline-block-mobile {
        display: inline-block !important;
    }
}
@media screen and (min-width: 769px), print {
    .is-inline-block-tablet {
        display: inline-block !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .is-inline-block-tablet-only {
        display: inline-block !important;
    }
}
@media screen and (max-width: 1023px) {
    .is-inline-block-touch {
        display: inline-block !important;
    }
}
@media screen and (min-width: 1024px) {
    .is-inline-block-desktop {
        display: inline-block !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .is-inline-block-desktop-only {
        display: inline-block !important;
    }
}
@media screen and (min-width: 1280px) {
    .is-inline-block-widescreen {
        display: inline-block !important;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1407px) {
    .is-inline-block-widescreen-only {
        display: inline-block !important;
    }
}
@media screen and (min-width: 1408px) {
    .is-inline-block-fullhd {
        display: inline-block !important;
    }
}
.is-inline-flex {
    display: inline-flex !important;
}

@media screen and (max-width: 768px) {
    .is-inline-flex-mobile {
        display: inline-flex !important;
    }
}
@media screen and (min-width: 769px), print {
    .is-inline-flex-tablet {
        display: inline-flex !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .is-inline-flex-tablet-only {
        display: inline-flex !important;
    }
}
@media screen and (max-width: 1023px) {
    .is-inline-flex-touch {
        display: inline-flex !important;
    }
}
@media screen and (min-width: 1024px) {
    .is-inline-flex-desktop {
        display: inline-flex !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .is-inline-flex-desktop-only {
        display: inline-flex !important;
    }
}
@media screen and (min-width: 1280px) {
    .is-inline-flex-widescreen {
        display: inline-flex !important;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1407px) {
    .is-inline-flex-widescreen-only {
        display: inline-flex !important;
    }
}
@media screen and (min-width: 1408px) {
    .is-inline-flex-fullhd {
        display: inline-flex !important;
    }
}
.is-table {
    display: table !important;
}

@media screen and (max-width: 768px) {
    .is-table-mobile {
        display: table !important;
    }
}
@media screen and (min-width: 769px), print {
    .is-table-tablet {
        display: table !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .is-table-tablet-only {
        display: table !important;
    }
}
@media screen and (max-width: 1023px) {
    .is-table-touch {
        display: table !important;
    }
}
@media screen and (min-width: 1024px) {
    .is-table-desktop {
        display: table !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .is-table-desktop-only {
        display: table !important;
    }
}
@media screen and (min-width: 1280px) {
    .is-table-widescreen {
        display: table !important;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1407px) {
    .is-table-widescreen-only {
        display: table !important;
    }
}
@media screen and (min-width: 1408px) {
    .is-table-fullhd {
        display: table !important;
    }
}
.is-table-cell {
    display: table-cell !important;
}

@media screen and (max-width: 768px) {
    .is-table-cell-mobile {
        display: table-cell !important;
    }
}
@media screen and (min-width: 769px), print {
    .is-table-cell-tablet {
        display: table-cell !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .is-table-cell-tablet-only {
        display: table-cell !important;
    }
}
@media screen and (max-width: 1023px) {
    .is-table-cell-touch {
        display: table-cell !important;
    }
}
@media screen and (min-width: 1024px) {
    .is-table-cell-desktop {
        display: table-cell !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .is-table-cell-desktop-only {
        display: table-cell !important;
    }
}
@media screen and (min-width: 1280px) {
    .is-table-cell-widescreen {
        display: table-cell !important;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1407px) {
    .is-table-cell-widescreen-only {
        display: table-cell !important;
    }
}
@media screen and (min-width: 1408px) {
    .is-table-cell-fullhd {
        display: table-cell !important;
    }
}
.is-hidden {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .is-hidden-mobile {
        display: none !important;
    }
}
@media screen and (min-width: 769px), print {
    .is-hidden-tablet {
        display: none !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .is-hidden-tablet-only {
        display: none !important;
    }
}
@media screen and (max-width: 1023px) {
    .is-hidden-touch {
        display: none !important;
    }
}
@media screen and (min-width: 1024px) {
    .is-hidden-desktop {
        display: none !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .is-hidden-desktop-only {
        display: none !important;
    }
}
@media screen and (min-width: 1280px) {
    .is-hidden-widescreen {
        display: none !important;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1407px) {
    .is-hidden-widescreen-only {
        display: none !important;
    }
}
@media screen and (min-width: 1408px) {
    .is-hidden-fullhd {
        display: none !important;
    }
}
.is-invisible {
    visibility: hidden !important;
}

@media screen and (max-width: 768px) {
    .is-invisible-mobile {
        visibility: hidden !important;
    }
}
@media screen and (min-width: 769px), print {
    .is-invisible-tablet {
        visibility: hidden !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .is-invisible-tablet-only {
        visibility: hidden !important;
    }
}
@media screen and (max-width: 1023px) {
    .is-invisible-touch {
        visibility: hidden !important;
    }
}
@media screen and (min-width: 1024px) {
    .is-invisible-desktop {
        visibility: hidden !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .is-invisible-desktop-only {
        visibility: hidden !important;
    }
}
@media screen and (min-width: 1280px) {
    .is-invisible-widescreen {
        visibility: hidden !important;
    }
}
@media screen and (min-width: 1280px) and (max-width: 1407px) {
    .is-invisible-widescreen-only {
        visibility: hidden !important;
    }
}
@media screen and (min-width: 1408px) {
    .is-invisible-fullhd {
        visibility: hidden !important;
    }
}
.is-marginless {
    margin: 0 !important;
}

.is-paddingless,
.bottom-navigation {
    padding: 0 !important;
}

.is-radiusless {
    border-radius: 0 !important;
}

.is-shadowless {
    box-shadow: none !important;
}

.is-unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bp-box {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
    color: #484848;
    display: block;
    padding: 1.25rem;
}
.bp-box:not(:last-child) {
    margin-bottom: 1.5rem;
}
.bp a.bp-box:hover,
.bp a.bp-box:focus {
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #4372d6;
}
.bp a.bp-box:active {
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #4372d6;
}

.bp-button {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-sizing: content-box;
    -moz-appearance: none;
    -webkit-appearance: none;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 0px;
    box-shadow: none;
    display: inline-flex;
    font-size: 1rem;
    height: 2.25em;
    justify-content: flex-start;
    line-height: 1.5;
    padding-bottom: calc(0.375em - 1px);
    padding-left: calc(0.625em - 1px);
    padding-right: calc(0.625em - 1px);
    padding-top: calc(0.375em - 1px);
    position: relative;
    vertical-align: top;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: white;
    border-color: #f0f0f0;
    color: #323232;
    cursor: pointer;
    justify-content: center;
    padding-left: 0.75em;
    padding-right: 0.75em;
    text-align: center;
    white-space: nowrap;
}
.bp-button:focus,
.bp-button.is-focused,
.bp-button:active,
.bp-button.is-active {
    outline: none;
}
.bp-button[disabled] {
    cursor: not-allowed;
}
.bp-button strong {
    color: inherit;
}
.bp-button .icon,
.bp-button .icon.is-small,
.bp-button .icon.is-medium,
.bp-button .icon.is-large {
    height: 1.5em;
    width: 1.5em;
}
.bp-button .icon:first-child:not(:last-child) {
    margin-left: calc(-0.375em - 1px);
    margin-right: 0.1875em;
}
.bp-button .icon:last-child:not(:first-child) {
    margin-left: 0.1875em;
    margin-right: calc(-0.375em - 1px);
}
.bp-button .icon:first-child:last-child {
    margin-left: calc(-0.375em - 1px);
    margin-right: calc(-0.375em - 1px);
}
.bp-button:hover,
.bp-button.is-hovered {
    border-color: #d6d6d6;
    color: #3a79ff;
}
.bp-button:focus,
.bp-button.is-focused {
    border-color: #4372d6;
    color: #3a79ff;
}
.bp-button:focus:not(:active),
.bp-button.is-focused:not(:active) {
    box-shadow: 0 0 0 0.125em rgba(67, 114, 214, 0.25);
}
.bp-button:active,
.bp-button.is-active {
    border-color: #484848;
    color: #323232;
}
.bp-button.is-text {
    background-color: transparent;
    border-color: transparent;
    color: #484848;
    text-decoration: none;
}
.bp-button.is-text:hover,
.bp-button.is-text.is-hovered,
.bp-button.is-text:focus,
.bp-button.is-text.is-focused {
    background-color: transparent;
    color: #6b4370;
}
.bp-button.is-text:hover span,
.bp-button.is-text.is-hovered span,
.bp-button.is-text:focus span,
.bp-button.is-text.is-focused span {
    color: #6b4370;
}
.bp-button.is-text:active,
.bp-button.is-text.is-active {
    background-color: rgba(0, 0, 0, 0);
    color: #6b4370;
}
.bp-button.is-text[disabled] {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
}
.bp-button.is-white {
    background-color: white;
    border-color: transparent;
    color: #0a0a0a;
}
.bp-button.is-white:hover,
.bp-button.is-white.is-hovered {
    background-color: #f9f9f9;
    border-color: transparent;
    color: #0a0a0a;
}
.bp-button.is-white:focus,
.bp-button.is-white.is-focused {
    border-color: transparent;
    color: #0a0a0a;
}
.bp-button.is-white:focus:not(:active),
.bp-button.is-white.is-focused:not(:active) {
    box-shadow: none;
}
.bp-button.is-white:active,
.bp-button.is-white.is-active {
    background-color: #f2f2f2;
    border-color: transparent;
    color: #0a0a0a;
}
.bp-button.is-white[disabled] {
    background-color: white;
    border-color: transparent;
    box-shadow: none;
}
.bp-button.is-white.is-inverted {
    background-color: #0a0a0a;
    color: white;
}
.bp-button.is-white.is-inverted:hover {
    background-color: black;
}
.bp-button.is-white.is-inverted[disabled] {
    background-color: #0a0a0a;
    border-color: transparent;
    box-shadow: none;
    color: white;
}
.bp-button.is-white.is-loading:after {
    border-color: transparent transparent #0a0a0a #0a0a0a !important;
}
.bp-button.is-white.is-outlined {
    background-color: transparent;
    border-color: white;
    color: white;
}
.bp-button.is-white.is-outlined:hover,
.bp-button.is-white.is-outlined:focus {
    background-color: white;
    border-color: white;
    color: #0a0a0a;
}
.bp-button.is-white.is-outlined.is-loading:after {
    border-color: transparent transparent white white !important;
}
.bp-button.is-white.is-outlined[disabled] {
    background-color: transparent;
    border-color: white;
    box-shadow: none;
    color: white;
}
.bp-button.is-white.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #0a0a0a;
    color: #0a0a0a;
}
.bp-button.is-white.is-inverted.is-outlined:hover,
.bp-button.is-white.is-inverted.is-outlined:focus {
    background-color: #0a0a0a;
    color: white;
}
.bp-button.is-white.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #0a0a0a;
    box-shadow: none;
    color: #0a0a0a;
}
.bp-button.is-black {
    background-color: #0a0a0a;
    border-color: transparent;
    color: white;
}
.bp-button.is-black:hover,
.bp-button.is-black.is-hovered {
    background-color: #040404;
    border-color: transparent;
    color: white;
}
.bp-button.is-black:focus,
.bp-button.is-black.is-focused {
    border-color: transparent;
    color: white;
}
.bp-button.is-black:focus:not(:active),
.bp-button.is-black.is-focused:not(:active) {
    box-shadow: none;
}
.bp-button.is-black:active,
.bp-button.is-black.is-active {
    background-color: black;
    border-color: transparent;
    color: white;
}
.bp-button.is-black[disabled] {
    background-color: #0a0a0a;
    border-color: transparent;
    box-shadow: none;
}
.bp-button.is-black.is-inverted {
    background-color: white;
    color: #0a0a0a;
}
.bp-button.is-black.is-inverted:hover {
    background-color: #f2f2f2;
}
.bp-button.is-black.is-inverted[disabled] {
    background-color: white;
    border-color: transparent;
    box-shadow: none;
    color: #0a0a0a;
}
.bp-button.is-black.is-loading:after {
    border-color: transparent transparent white white !important;
}
.bp-button.is-black.is-outlined {
    background-color: transparent;
    border-color: #0a0a0a;
    color: #0a0a0a;
}
.bp-button.is-black.is-outlined:hover,
.bp-button.is-black.is-outlined:focus {
    background-color: #0a0a0a;
    border-color: #0a0a0a;
    color: white;
}
.bp-button.is-black.is-outlined.is-loading:after {
    border-color: transparent transparent #0a0a0a #0a0a0a !important;
}
.bp-button.is-black.is-outlined[disabled] {
    background-color: transparent;
    border-color: #0a0a0a;
    box-shadow: none;
    color: #0a0a0a;
}
.bp-button.is-black.is-inverted.is-outlined {
    background-color: transparent;
    border-color: white;
    color: white;
}
.bp-button.is-black.is-inverted.is-outlined:hover,
.bp-button.is-black.is-inverted.is-outlined:focus {
    background-color: white;
    color: #0a0a0a;
}
.bp-button.is-black.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: white;
    box-shadow: none;
    color: white;
}
.bp-button.is-light {
    background-color: whitesmoke;
    border-color: transparent;
    color: #323232;
}
.bp-button.is-light:hover,
.bp-button.is-light.is-hovered {
    background-color: #eeeeee;
    border-color: transparent;
    color: #323232;
}
.bp-button.is-light:focus,
.bp-button.is-light.is-focused {
    border-color: transparent;
    color: #323232;
}
.bp-button.is-light:focus:not(:active),
.bp-button.is-light.is-focused:not(:active) {
    box-shadow: none;
}
.bp-button.is-light:active,
.bp-button.is-light.is-active {
    background-color: #e8e8e8;
    border-color: transparent;
    color: #323232;
}
.bp-button.is-light[disabled] {
    background-color: whitesmoke;
    border-color: transparent;
    box-shadow: none;
}
.bp-button.is-light.is-inverted {
    background-color: #323232;
    color: whitesmoke;
}
.bp-button.is-light.is-inverted:hover {
    background-color: #252525;
}
.bp-button.is-light.is-inverted[disabled] {
    background-color: #323232;
    border-color: transparent;
    box-shadow: none;
    color: whitesmoke;
}
.bp-button.is-light.is-loading:after {
    border-color: transparent transparent #323232 #323232 !important;
}
.bp-button.is-light.is-outlined {
    background-color: transparent;
    border-color: whitesmoke;
    color: whitesmoke;
}
.bp-button.is-light.is-outlined:hover,
.bp-button.is-light.is-outlined:focus {
    background-color: whitesmoke;
    border-color: whitesmoke;
    color: #323232;
}
.bp-button.is-light.is-outlined.is-loading:after {
    border-color: transparent transparent whitesmoke whitesmoke !important;
}
.bp-button.is-light.is-outlined[disabled] {
    background-color: transparent;
    border-color: whitesmoke;
    box-shadow: none;
    color: whitesmoke;
}
.bp-button.is-light.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #323232;
    color: #323232;
}
.bp-button.is-light.is-inverted.is-outlined:hover,
.bp-button.is-light.is-inverted.is-outlined:focus {
    background-color: #323232;
    color: whitesmoke;
}
.bp-button.is-light.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #323232;
    box-shadow: none;
    color: #323232;
}
.bp-button.is-dark {
    background-color: #323232;
    border-color: transparent;
    color: whitesmoke;
}
.bp-button.is-dark:hover,
.bp-button.is-dark.is-hovered {
    background-color: #2c2c2c;
    border-color: transparent;
    color: whitesmoke;
}
.bp-button.is-dark:focus,
.bp-button.is-dark.is-focused {
    border-color: transparent;
    color: whitesmoke;
}
.bp-button.is-dark:focus:not(:active),
.bp-button.is-dark.is-focused:not(:active) {
    box-shadow: none;
}
.bp-button.is-dark:active,
.bp-button.is-dark.is-active {
    background-color: #252525;
    border-color: transparent;
    color: whitesmoke;
}
.bp-button.is-dark[disabled] {
    background-color: #323232;
    border-color: transparent;
    box-shadow: none;
}
.bp-button.is-dark.is-inverted {
    background-color: whitesmoke;
    color: #323232;
}
.bp-button.is-dark.is-inverted:hover {
    background-color: #e8e8e8;
}
.bp-button.is-dark.is-inverted[disabled] {
    background-color: whitesmoke;
    border-color: transparent;
    box-shadow: none;
    color: #323232;
}
.bp-button.is-dark.is-loading:after {
    border-color: transparent transparent whitesmoke whitesmoke !important;
}
.bp-button.is-dark.is-outlined {
    background-color: transparent;
    border-color: #323232;
    color: #323232;
}
.bp-button.is-dark.is-outlined:hover,
.bp-button.is-dark.is-outlined:focus {
    background-color: #323232;
    border-color: #323232;
    color: whitesmoke;
}
.bp-button.is-dark.is-outlined.is-loading:after {
    border-color: transparent transparent #323232 #323232 !important;
}
.bp-button.is-dark.is-outlined[disabled] {
    background-color: transparent;
    border-color: #323232;
    box-shadow: none;
    color: #323232;
}
.bp-button.is-dark.is-inverted.is-outlined {
    background-color: transparent;
    border-color: whitesmoke;
    color: whitesmoke;
}
.bp-button.is-dark.is-inverted.is-outlined:hover,
.bp-button.is-dark.is-inverted.is-outlined:focus {
    background-color: whitesmoke;
    color: #323232;
}
.bp-button.is-dark.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: whitesmoke;
    box-shadow: none;
    color: whitesmoke;
}
.bp-button.is-primary {
    background-color: #0487bf;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-primary:hover,
.bp-button.is-primary.is-hovered {
    background-color: #047eb3;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-primary:focus,
.bp-button.is-primary.is-focused {
    border-color: transparent;
    color: #fff;
}
.bp-button.is-primary:focus:not(:active),
.bp-button.is-primary.is-focused:not(:active) {
    box-shadow: none;
}
.bp-button.is-primary:active,
.bp-button.is-primary.is-active {
    background-color: #0375a6;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-primary[disabled] {
    background-color: #0487bf;
    border-color: transparent;
    box-shadow: none;
}
.bp-button.is-primary.is-inverted {
    background-color: #fff;
    color: #0487bf;
}
.bp-button.is-primary.is-inverted:hover {
    background-color: #f2f2f2;
}
.bp-button.is-primary.is-inverted[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #0487bf;
}
.bp-button.is-primary.is-loading:after {
    border-color: transparent transparent #fff #fff !important;
}
.bp-button.is-primary.is-outlined {
    background-color: transparent;
    border-color: #0487bf;
    color: #0487bf;
}
.bp-button.is-primary.is-outlined:hover,
.bp-button.is-primary.is-outlined:focus {
    background-color: #0487bf;
    border-color: #0487bf;
    color: #fff;
}
.bp-button.is-primary.is-outlined.is-loading:after {
    border-color: transparent transparent #0487bf #0487bf !important;
}
.bp-button.is-primary.is-outlined[disabled] {
    background-color: transparent;
    border-color: #0487bf;
    box-shadow: none;
    color: #0487bf;
}
.bp-button.is-primary.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.bp-button.is-primary.is-inverted.is-outlined:hover,
.bp-button.is-primary.is-inverted.is-outlined:focus {
    background-color: #fff;
    color: #0487bf;
}
.bp-button.is-primary.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff;
}
.bp-button.is-secondary {
    background-color: #6b4370;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-secondary:hover,
.bp-button.is-secondary.is-hovered {
    background-color: #633e68;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-secondary:focus,
.bp-button.is-secondary.is-focused {
    border-color: transparent;
    color: #fff;
}
.bp-button.is-secondary:focus:not(:active),
.bp-button.is-secondary.is-focused:not(:active) {
    box-shadow: none;
}
.bp-button.is-secondary:active,
.bp-button.is-secondary.is-active {
    background-color: #5c3960;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-secondary[disabled] {
    background-color: #6b4370;
    border-color: transparent;
    box-shadow: none;
}
.bp-button.is-secondary.is-inverted {
    background-color: #fff;
    color: #6b4370;
}
.bp-button.is-secondary.is-inverted:hover {
    background-color: #f2f2f2;
}
.bp-button.is-secondary.is-inverted[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #6b4370;
}
.bp-button.is-secondary.is-loading:after {
    border-color: transparent transparent #fff #fff !important;
}
.bp-button.is-secondary.is-outlined {
    background-color: transparent;
    border-color: #6b4370;
    color: #6b4370;
}
.bp-button.is-secondary.is-outlined:hover,
.bp-button.is-secondary.is-outlined:focus {
    background-color: #6b4370;
    border-color: #6b4370;
    color: #fff;
}
.bp-button.is-secondary.is-outlined.is-loading:after {
    border-color: transparent transparent #6b4370 #6b4370 !important;
}
.bp-button.is-secondary.is-outlined[disabled] {
    background-color: transparent;
    border-color: #6b4370;
    box-shadow: none;
    color: #6b4370;
}
.bp-button.is-secondary.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.bp-button.is-secondary.is-inverted.is-outlined:hover,
.bp-button.is-secondary.is-inverted.is-outlined:focus {
    background-color: #fff;
    color: #6b4370;
}
.bp-button.is-secondary.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff;
}
.bp-button.is-link {
    background-color: #4372d6;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-link:hover,
.bp-button.is-link.is-hovered {
    background-color: #396ad4;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-link:focus,
.bp-button.is-link.is-focused {
    border-color: transparent;
    color: #fff;
}
.bp-button.is-link:focus:not(:active),
.bp-button.is-link.is-focused:not(:active) {
    box-shadow: none;
}
.bp-button.is-link:active,
.bp-button.is-link.is-active {
    background-color: #2e62d1;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-link[disabled] {
    background-color: #4372d6;
    border-color: transparent;
    box-shadow: none;
}
.bp-button.is-link.is-inverted {
    background-color: #fff;
    color: #4372d6;
}
.bp-button.is-link.is-inverted:hover {
    background-color: #f2f2f2;
}
.bp-button.is-link.is-inverted[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #4372d6;
}
.bp-button.is-link.is-loading:after {
    border-color: transparent transparent #fff #fff !important;
}
.bp-button.is-link.is-outlined {
    background-color: transparent;
    border-color: #4372d6;
    color: #4372d6;
}
.bp-button.is-link.is-outlined:hover,
.bp-button.is-link.is-outlined:focus {
    background-color: #4372d6;
    border-color: #4372d6;
    color: #fff;
}
.bp-button.is-link.is-outlined.is-loading:after {
    border-color: transparent transparent #4372d6 #4372d6 !important;
}
.bp-button.is-link.is-outlined[disabled] {
    background-color: transparent;
    border-color: #4372d6;
    box-shadow: none;
    color: #4372d6;
}
.bp-button.is-link.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.bp-button.is-link.is-inverted.is-outlined:hover,
.bp-button.is-link.is-inverted.is-outlined:focus {
    background-color: #fff;
    color: #4372d6;
}
.bp-button.is-link.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff;
}
.bp-button.is-info {
    background-color: #209cee;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-info:hover,
.bp-button.is-info.is-hovered {
    background-color: #1496ed;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-info:focus,
.bp-button.is-info.is-focused {
    border-color: transparent;
    color: #fff;
}
.bp-button.is-info:focus:not(:active),
.bp-button.is-info.is-focused:not(:active) {
    box-shadow: none;
}
.bp-button.is-info:active,
.bp-button.is-info.is-active {
    background-color: #118fe4;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-info[disabled] {
    background-color: #209cee;
    border-color: transparent;
    box-shadow: none;
}
.bp-button.is-info.is-inverted {
    background-color: #fff;
    color: #209cee;
}
.bp-button.is-info.is-inverted:hover {
    background-color: #f2f2f2;
}
.bp-button.is-info.is-inverted[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #209cee;
}
.bp-button.is-info.is-loading:after {
    border-color: transparent transparent #fff #fff !important;
}
.bp-button.is-info.is-outlined {
    background-color: transparent;
    border-color: #209cee;
    color: #209cee;
}
.bp-button.is-info.is-outlined:hover,
.bp-button.is-info.is-outlined:focus {
    background-color: #209cee;
    border-color: #209cee;
    color: #fff;
}
.bp-button.is-info.is-outlined.is-loading:after {
    border-color: transparent transparent #209cee #209cee !important;
}
.bp-button.is-info.is-outlined[disabled] {
    background-color: transparent;
    border-color: #209cee;
    box-shadow: none;
    color: #209cee;
}
.bp-button.is-info.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.bp-button.is-info.is-inverted.is-outlined:hover,
.bp-button.is-info.is-inverted.is-outlined:focus {
    background-color: #fff;
    color: #209cee;
}
.bp-button.is-info.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff;
}
.bp-button.is-success {
    background-color: #23d160;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-success:hover,
.bp-button.is-success.is-hovered {
    background-color: #22c65b;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-success:focus,
.bp-button.is-success.is-focused {
    border-color: transparent;
    color: #fff;
}
.bp-button.is-success:focus:not(:active),
.bp-button.is-success.is-focused:not(:active) {
    box-shadow: none;
}
.bp-button.is-success:active,
.bp-button.is-success.is-active {
    background-color: #20bc56;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-success[disabled] {
    background-color: #23d160;
    border-color: transparent;
    box-shadow: none;
}
.bp-button.is-success.is-inverted {
    background-color: #fff;
    color: #23d160;
}
.bp-button.is-success.is-inverted:hover {
    background-color: #f2f2f2;
}
.bp-button.is-success.is-inverted[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #23d160;
}
.bp-button.is-success.is-loading:after {
    border-color: transparent transparent #fff #fff !important;
}
.bp-button.is-success.is-outlined {
    background-color: transparent;
    border-color: #23d160;
    color: #23d160;
}
.bp-button.is-success.is-outlined:hover,
.bp-button.is-success.is-outlined:focus {
    background-color: #23d160;
    border-color: #23d160;
    color: #fff;
}
.bp-button.is-success.is-outlined.is-loading:after {
    border-color: transparent transparent #23d160 #23d160 !important;
}
.bp-button.is-success.is-outlined[disabled] {
    background-color: transparent;
    border-color: #23d160;
    box-shadow: none;
    color: #23d160;
}
.bp-button.is-success.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.bp-button.is-success.is-inverted.is-outlined:hover,
.bp-button.is-success.is-inverted.is-outlined:focus {
    background-color: #fff;
    color: #23d160;
}
.bp-button.is-success.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff;
}
.bp-button.is-warning {
    background-color: #ffdd57;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}
.bp-button.is-warning:hover,
.bp-button.is-warning.is-hovered {
    background-color: #ffdb4a;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}
.bp-button.is-warning:focus,
.bp-button.is-warning.is-focused {
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}
.bp-button.is-warning:focus:not(:active),
.bp-button.is-warning.is-focused:not(:active) {
    box-shadow: none;
}
.bp-button.is-warning:active,
.bp-button.is-warning.is-active {
    background-color: #ffd83d;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}
.bp-button.is-warning[disabled] {
    background-color: #ffdd57;
    border-color: transparent;
    box-shadow: none;
}
.bp-button.is-warning.is-inverted {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffdd57;
}
.bp-button.is-warning.is-inverted:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
.bp-button.is-warning.is-inverted[disabled] {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: transparent;
    box-shadow: none;
    color: #ffdd57;
}
.bp-button.is-warning.is-loading:after {
    border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important;
}
.bp-button.is-warning.is-outlined {
    background-color: transparent;
    border-color: #ffdd57;
    color: #ffdd57;
}
.bp-button.is-warning.is-outlined:hover,
.bp-button.is-warning.is-outlined:focus {
    background-color: #ffdd57;
    border-color: #ffdd57;
    color: rgba(0, 0, 0, 0.7);
}
.bp-button.is-warning.is-outlined.is-loading:after {
    border-color: transparent transparent #ffdd57 #ffdd57 !important;
}
.bp-button.is-warning.is-outlined[disabled] {
    background-color: transparent;
    border-color: #ffdd57;
    box-shadow: none;
    color: #ffdd57;
}
.bp-button.is-warning.is-inverted.is-outlined {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.7);
    color: rgba(0, 0, 0, 0.7);
}
.bp-button.is-warning.is-inverted.is-outlined:hover,
.bp-button.is-warning.is-inverted.is-outlined:focus {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffdd57;
}
.bp-button.is-warning.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.7);
    box-shadow: none;
    color: rgba(0, 0, 0, 0.7);
}
.bp-button.is-danger {
    background-color: #ff3860;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-danger:hover,
.bp-button.is-danger.is-hovered {
    background-color: #ff2b56;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-danger:focus,
.bp-button.is-danger.is-focused {
    border-color: transparent;
    color: #fff;
}
.bp-button.is-danger:focus:not(:active),
.bp-button.is-danger.is-focused:not(:active) {
    box-shadow: none;
}
.bp-button.is-danger:active,
.bp-button.is-danger.is-active {
    background-color: #ff1f4b;
    border-color: transparent;
    color: #fff;
}
.bp-button.is-danger[disabled] {
    background-color: #ff3860;
    border-color: transparent;
    box-shadow: none;
}
.bp-button.is-danger.is-inverted {
    background-color: #fff;
    color: #ff3860;
}
.bp-button.is-danger.is-inverted:hover {
    background-color: #f2f2f2;
}
.bp-button.is-danger.is-inverted[disabled] {
    background-color: #fff;
    border-color: transparent;
    box-shadow: none;
    color: #ff3860;
}
.bp-button.is-danger.is-loading:after {
    border-color: transparent transparent #fff #fff !important;
}
.bp-button.is-danger.is-outlined {
    background-color: transparent;
    border-color: #ff3860;
    color: #ff3860;
}
.bp-button.is-danger.is-outlined:hover,
.bp-button.is-danger.is-outlined:focus {
    background-color: #ff3860;
    border-color: #ff3860;
    color: #fff;
}
.bp-button.is-danger.is-outlined.is-loading:after {
    border-color: transparent transparent #ff3860 #ff3860 !important;
}
.bp-button.is-danger.is-outlined[disabled] {
    background-color: transparent;
    border-color: #ff3860;
    box-shadow: none;
    color: #ff3860;
}
.bp-button.is-danger.is-inverted.is-outlined {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.bp-button.is-danger.is-inverted.is-outlined:hover,
.bp-button.is-danger.is-inverted.is-outlined:focus {
    background-color: #fff;
    color: #ff3860;
}
.bp-button.is-danger.is-inverted.is-outlined[disabled] {
    background-color: transparent;
    border-color: #fff;
    box-shadow: none;
    color: #fff;
}
.bp-button.is-small {
    border-radius: 2px;
    font-size: 0.75rem;
}
.bp-button.is-medium {
    font-size: 1.25rem;
}
.bp-button.is-large {
    font-size: 1.5rem;
}
.bp-button[disabled] {
    background-color: white;
    border-color: #f0f0f0;
    box-shadow: none;
    opacity: 0.5;
}
.bp-button.is-fullwidth {
    display: flex;
    width: 100%;
}
.bp-button.is-loading {
    color: transparent !important;
    pointer-events: none;
}
.bp-button.is-loading:after {
    animation: spinAround 500ms infinite linear;
    border: 2px solid #6b4370;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 1em;
    position: relative;
    width: 1em;
    position: absolute;
    left: calc(50% - (1em / 2));
    top: calc(50% - (1em / 2));
    position: absolute !important;
}
.bp-button.is-static {
    background-color: whitesmoke;
    border-color: #f0f0f0;
    color: #767676;
    box-shadow: none;
    pointer-events: none;
}
.bp-button.is-rounded {
    border-radius: 290486px;
    padding-left: 1em;
    padding-right: 1em;
}

.bp-buttons {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.bp-buttons .bp-button {
    margin-bottom: 0.5rem;
}
.bp-buttons .bp-button:not(:last-child) {
    margin-right: 0.5rem;
}
.bp-buttons:last-child {
    margin-bottom: -0.5rem;
}
.bp-buttons:not(:last-child) {
    margin-bottom: 1rem;
}
.bp-buttons.has-addons .bp-button:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.bp-buttons.has-addons .bp-button:not(:last-child) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    margin-right: -1px;
}
.bp-buttons.has-addons .bp-button:last-child {
    margin-right: 0;
}
.bp-buttons.has-addons .bp-button:hover,
.bp-buttons.has-addons .bp-button.is-hovered {
    z-index: 2;
}
.bp-buttons.has-addons .bp-button:focus,
.bp-buttons.has-addons .bp-button.is-focused,
.bp-buttons.has-addons .bp-button:active,
.bp-buttons.has-addons .bp-button.is-active,
.bp-buttons.has-addons .bp-button.is-selected {
    z-index: 3;
}
.bp-buttons.has-addons .bp-button:focus:hover,
.bp-buttons.has-addons .bp-button.is-focused:hover,
.bp-buttons.has-addons .bp-button:active:hover,
.bp-buttons.has-addons .bp-button.is-active:hover,
.bp-buttons.has-addons .bp-button.is-selected:hover {
    z-index: 4;
}
.bp-buttons.is-centered {
    justify-content: center;
}
.bp-buttons.is-right {
    justify-content: flex-end;
}

.media-category-button {
    text-decoration: none !important;
    color: #323232;
    margin-right: 2.5rem;
    letter-spacing: 0.5px;
    line-height: 34px;
}
.media-category-button:hover,
.media-category-button.selected {
    color: #6b4370;
    border-bottom: 2px solid #6b4370;
}

.bp-sec-button {
    display: block;
    text-transform: uppercase;
    color: #6b4370;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 1.5px;
}
.bp-sec-button.is-small {
    font-size: 0.875rem;
}
.bp-sec-button.is-large {
    font-size: 1.2rem;
}
.bp-sec-button.is-active {
    text-decoration: underline;
}
.bp-sec-button span {
    margin-right: 0.8rem;
    border-bottom: 2px solid #6b4370;
}
.bp-sec-button:hover span {
    border-color: #4d3050;
}
.bp-sec-button i {
    font-size: 1rem;
}
.bp-sec-button.is-white {
    color: white;
}
.bp-sec-button.is-white span {
    border-color: white;
}
.bp-sec-button.is-white:hover {
    color: #e6e6e6;
}
.bp-sec-button.is-white:hover span {
    border-color: #e6e6e6;
}
.bp-sec-button.is-black {
    color: #0a0a0a;
}
.bp-sec-button.is-black span {
    border-color: #0a0a0a;
}
.bp-sec-button.is-black:hover {
    color: black;
}
.bp-sec-button.is-black:hover span {
    border-color: black;
}
.bp-sec-button.is-light {
    color: whitesmoke;
}
.bp-sec-button.is-light span {
    border-color: whitesmoke;
}
.bp-sec-button.is-light:hover {
    color: #dbdbdb;
}
.bp-sec-button.is-light:hover span {
    border-color: #dbdbdb;
}
.bp-sec-button.is-dark {
    color: #323232;
}
.bp-sec-button.is-dark span {
    border-color: #323232;
}
.bp-sec-button.is-dark:hover {
    color: #191919;
}
.bp-sec-button.is-dark:hover span {
    border-color: #191919;
}
.bp-sec-button.is-primary {
    color: #0487bf;
}
.bp-sec-button.is-primary span {
    border-color: #0487bf;
}
.bp-sec-button.is-primary:hover {
    color: #03648d;
}
.bp-sec-button.is-primary:hover span {
    border-color: #03648d;
}
.bp-sec-button.is-secondary {
    color: #6b4370;
}
.bp-sec-button.is-secondary span {
    border-color: #6b4370;
}
.bp-sec-button.is-secondary:hover {
    color: #4d3050;
}
.bp-sec-button.is-secondary:hover span {
    border-color: #4d3050;
}
.bp-sec-button.is-link {
    color: #4372d6;
}
.bp-sec-button.is-link span {
    border-color: #4372d6;
}
.bp-sec-button.is-link:hover {
    color: #2958bd;
}
.bp-sec-button.is-link:hover span {
    border-color: #2958bd;
}
.bp-sec-button.is-info {
    color: #209cee;
}
.bp-sec-button.is-info span {
    border-color: #209cee;
}
.bp-sec-button.is-info:hover {
    color: #0f81cc;
}
.bp-sec-button.is-info:hover span {
    border-color: #0f81cc;
}
.bp-sec-button.is-success {
    color: #23d160;
}
.bp-sec-button.is-success span {
    border-color: #23d160;
}
.bp-sec-button.is-success:hover {
    color: #1ca64c;
}
.bp-sec-button.is-success:hover span {
    border-color: #1ca64c;
}
.bp-sec-button.is-warning {
    color: #ffdd57;
}
.bp-sec-button.is-warning span {
    border-color: #ffdd57;
}
.bp-sec-button.is-warning:hover {
    color: #ffd324;
}
.bp-sec-button.is-warning:hover span {
    border-color: #ffd324;
}
.bp-sec-button.is-danger {
    color: #ff3860;
}
.bp-sec-button.is-danger span {
    border-color: #ff3860;
}
.bp-sec-button.is-danger:hover {
    color: #ff0537;
}
.bp-sec-button.is-danger:hover span {
    border-color: #ff0537;
}
.bp-sec-button .sgds-icon {
    text-decoration: none;
}

.bp-container {
    margin: 0 auto;
    position: relative;
}
.bp-container.is-full {
    margin: 0;
}
@media screen and (min-width: 1024px) {
    .bp-container {
        max-width: 960px;
        width: 960px;
    }
    .bp-container.is-fluid {
        margin-left: 32px;
        margin-right: 32px;
        max-width: none;
        width: auto;
    }
}
@media screen and (max-width: 1279px) {
    .bp-container.is-widescreen {
        max-width: 1216px;
        width: auto;
    }
}
@media screen and (max-width: 1407px) {
    .bp-container.is-fullhd {
        max-width: 1344px;
        width: auto;
    }
}
@media screen and (min-width: 1280px) {
    .bp-container {
        max-width: 1216px;
        width: 1216px;
    }
}
@media screen and (min-width: 1408px) {
    .bp-container {
        max-width: 1280px;
        width: 1280px;
    }
}

.content:not(:last-child) {
    margin-bottom: 1.5rem;
}
.content li + li {
    margin-top: 0.25em;
}
.content a {
    color: #4372d6;
    text-decoration: underline;
    margin-bottom: 2rem;
}
.content a:hover {
    color: #3a79ff;
}
.content p,
.content li,
.content center {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 2.2rem;
}
.content p:last-child {
    margin-bottom: 0rem;
}
.content p:not(:last-child),
.content dl:not(:last-child),
.content ol:not(:last-child),
.content ul:not(:last-child),
.content blockquote:not(:last-child),
.content pre:not(:last-child),
.content table:not(:last-child) {
    margin-bottom: 1em;
}
.content code {
    color: #767676;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5 {
    color: #6b4370;
    margin-top: 3.75rem;
    margin-bottom: 0.75rem;
}
.content h6 {
    margin-top: 3.75rem;
    margin-bottom: 0.75rem;
}
.content strong {
    color: #484848;
}
.content h1:first-child,
.content h2:first-child,
.content h3:first-child,
.content h4:first-child,
.content h5:first-child,
.content p:first-child {
    margin-top: 0rem;
}
.content blockquote {
    background-color: white;
    border-left: 2px solid #6b4370;
    padding: 0 0 0 2rem;
}
.content blockquote > p {
    color: #6b4370;
    font-size: 1.5rem;
    line-height: 3rem;
    margin-bottom: 0rem;
}
.content blockquote > ul {
    padding-top: 0rem;
    color: #6b4370;
}
.content ol {
    list-style: decimal outside;
    font-size: 1.2rem;
    margin-left: 1.25rem;
    margin-top: 1em;
    line-height: 2.2rem;
}
.content ul {
    list-style: disc outside;
    margin-left: 2rem;
    margin-top: 0.5rem;
}
.content ul ul {
    list-style-type: circle;
    margin-top: 0.5em;
}
.content ul ul ul {
    list-style-type: square;
}
.content ol > li,
.content ul > li {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.content ul > li:last-child {
    margin-bottom: 2rem;
}
.content li > ul {
    margin-top: 2rem;
}
.content dd {
    margin-left: 2em;
}
.content img {
    display: block;
    margin: auto;
    width: 100%;
}
.content figure {
    margin-left: 2em;
    margin-right: 2em;
    text-align: center;
}
.content figure:not(:first-child) {
    margin-top: 2em;
}
.content figure:not(:last-child) {
    margin-bottom: 2em;
}
.content figure img {
    display: block;
    margin: auto;
    width: 100%;
}
.content figure figcaption {
    font-style: italic;
}
.content pre {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    padding: 1.25em 1.5em;
    white-space: pre;
    word-wrap: normal;
}
.content sup,
.content sub {
    font-size: 75%;
}
.content table {
    width: 100%;
}
.content table td,
.content table th {
    border: 1px solid #d6d6d6;
    border-width: 0 0 1px;
    padding: 0.5em 0.75em;
    vertical-align: top;
}
.content table th {
    color: #323232;
    text-align: left;
}
.content table thead td,
.content table thead th {
    border-width: 0 0 2px;
    color: #323232;
}
.content table tfoot td,
.content table tfoot th {
    border-width: 2px 0 0;
    color: #323232;
}
.content table tbody tr:last-child td,
.content table tbody tr:last-child th {
    border-bottom-width: 0;
}
.content.is-small {
    font-size: 0.75rem;
}
.content.is-medium {
    font-size: 1.25rem;
}
.content.is-large {
    font-size: 1.5rem;
}
.content .person-info p {
    line-height: 1.5rem;
}
.content .person-info small {
    line-height: 1.7rem;
}
.content .person-info a {
    line-height: 2.3rem;
}

.input,
.textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 0px;
    box-shadow: none;
    display: inline-flex;
    font-size: 1rem;
    height: 2.25em;
    justify-content: flex-start;
    line-height: 1.5;
    padding-bottom: calc(0.375em - 1px);
    padding-left: calc(0.625em - 1px);
    padding-right: calc(0.625em - 1px);
    padding-top: calc(0.375em - 1px);
    position: relative;
    vertical-align: top;
    background-color: white;
    border-color: transparent;
    color: #323232;
    box-shadow: none;
    max-width: 100%;
    width: 100%;
}
.input:focus,
.input.is-focused,
.input:active,
.input.is-active,
.textarea:focus,
.textarea.is-focused,
.textarea:active,
.textarea.is-active {
    outline: none;
}
.input[disabled],
.textarea[disabled] {
    cursor: not-allowed;
}
.input::-moz-placeholder,
.textarea::-moz-placeholder {
    color: rgba(50, 50, 50, 0.3);
}
.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
    color: rgba(50, 50, 50, 0.3);
}
.input:-moz-placeholder,
.textarea:-moz-placeholder {
    color: rgba(50, 50, 50, 0.3);
}
.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
    color: rgba(50, 50, 50, 0.3);
}
.input:hover,
.input.is-hovered,
.textarea:hover,
.textarea.is-hovered {
    border-color: transparent;
}
.input:focus,
.input.is-focused,
.input:active,
.input.is-active,
.textarea:focus,
.textarea.is-focused,
.textarea:active,
.textarea.is-active {
    border-color: transparent;
    box-shadow: none transparent;
}
.input[disabled],
.textarea[disabled] {
    background-color: whitesmoke;
    border-color: whitesmoke;
    box-shadow: none;
    color: #767676;
}
.input[disabled]::-moz-placeholder,
.textarea[disabled]::-moz-placeholder {
    color: rgba(118, 118, 118, 0.3);
}
.input[disabled]::-webkit-input-placeholder,
.textarea[disabled]::-webkit-input-placeholder {
    color: rgba(118, 118, 118, 0.3);
}
.input[disabled]:-moz-placeholder,
.textarea[disabled]:-moz-placeholder {
    color: rgba(118, 118, 118, 0.3);
}
.input[disabled]:-ms-input-placeholder,
.textarea[disabled]:-ms-input-placeholder {
    color: rgba(118, 118, 118, 0.3);
}
.input[readonly],
.textarea[readonly] {
    box-shadow: none;
}
.input.is-white,
.textarea.is-white {
    border-color: white;
}
.input.is-white:focus,
.input.is-white.is-focused,
.input.is-white:active,
.input.is-white.is-active,
.textarea.is-white:focus,
.textarea.is-white.is-focused,
.textarea.is-white:active,
.textarea.is-white.is-active {
    box-shadow: none;
}
.input.is-black,
.textarea.is-black {
    border-color: #0a0a0a;
}
.input.is-black:focus,
.input.is-black.is-focused,
.input.is-black:active,
.input.is-black.is-active,
.textarea.is-black:focus,
.textarea.is-black.is-focused,
.textarea.is-black:active,
.textarea.is-black.is-active {
    box-shadow: none;
}
.input.is-light,
.textarea.is-light {
    border-color: whitesmoke;
}
.input.is-light:focus,
.input.is-light.is-focused,
.input.is-light:active,
.input.is-light.is-active,
.textarea.is-light:focus,
.textarea.is-light.is-focused,
.textarea.is-light:active,
.textarea.is-light.is-active {
    box-shadow: none;
}
.input.is-dark,
.textarea.is-dark {
    border-color: #323232;
}
.input.is-dark:focus,
.input.is-dark.is-focused,
.input.is-dark:active,
.input.is-dark.is-active,
.textarea.is-dark:focus,
.textarea.is-dark.is-focused,
.textarea.is-dark:active,
.textarea.is-dark.is-active {
    box-shadow: none;
}
.input.is-primary,
.textarea.is-primary {
    border-color: #0487bf;
}
.input.is-primary:focus,
.input.is-primary.is-focused,
.input.is-primary:active,
.input.is-primary.is-active,
.textarea.is-primary:focus,
.textarea.is-primary.is-focused,
.textarea.is-primary:active,
.textarea.is-primary.is-active {
    box-shadow: none;
}
.input.is-secondary,
.textarea.is-secondary {
    border-color: #6b4370;
}
.input.is-secondary:focus,
.input.is-secondary.is-focused,
.input.is-secondary:active,
.input.is-secondary.is-active,
.textarea.is-secondary:focus,
.textarea.is-secondary.is-focused,
.textarea.is-secondary:active,
.textarea.is-secondary.is-active {
    box-shadow: none;
}
.input.is-link,
.textarea.is-link {
    border-color: #4372d6;
}
.input.is-link:focus,
.input.is-link.is-focused,
.input.is-link:active,
.input.is-link.is-active,
.textarea.is-link:focus,
.textarea.is-link.is-focused,
.textarea.is-link:active,
.textarea.is-link.is-active {
    box-shadow: none;
}
.input.is-info,
.textarea.is-info {
    border-color: #209cee;
}
.input.is-info:focus,
.input.is-info.is-focused,
.input.is-info:active,
.input.is-info.is-active,
.textarea.is-info:focus,
.textarea.is-info.is-focused,
.textarea.is-info:active,
.textarea.is-info.is-active {
    box-shadow: none;
}
.input.is-success,
.textarea.is-success {
    border-color: #23d160;
}
.input.is-success:focus,
.input.is-success.is-focused,
.input.is-success:active,
.input.is-success.is-active,
.textarea.is-success:focus,
.textarea.is-success.is-focused,
.textarea.is-success:active,
.textarea.is-success.is-active {
    box-shadow: none;
}
.input.is-warning,
.textarea.is-warning {
    border-color: #ffdd57;
}
.input.is-warning:focus,
.input.is-warning.is-focused,
.input.is-warning:active,
.input.is-warning.is-active,
.textarea.is-warning:focus,
.textarea.is-warning.is-focused,
.textarea.is-warning:active,
.textarea.is-warning.is-active {
    box-shadow: none;
}
.input.is-danger,
.textarea.is-danger {
    border-color: #ff3860;
}
.input.is-danger:focus,
.input.is-danger.is-focused,
.input.is-danger:active,
.input.is-danger.is-active,
.textarea.is-danger:focus,
.textarea.is-danger.is-focused,
.textarea.is-danger:active,
.textarea.is-danger.is-active {
    box-shadow: none;
}
.input.is-small,
.textarea.is-small {
    border-radius: 2px;
    font-size: 0.75rem;
}
.input.is-medium,
.textarea.is-medium {
    font-size: 1.25rem;
}
.input.is-large,
.textarea.is-large {
    font-size: 1.5rem;
}
.input.is-fullwidth,
.textarea.is-fullwidth {
    display: block;
    width: 100%;
}
.input.is-inline,
.textarea.is-inline {
    display: inline;
    width: auto;
}

.input.is-rounded {
    border-radius: 290486px;
    padding-left: 1em;
    padding-right: 1em;
}
.input.is-static {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}

.textarea {
    display: block;
    max-width: 100%;
    min-width: 100%;
    padding: 0.625em;
    resize: vertical;
}
.textarea:not([rows]) {
    max-height: 600px;
    min-height: 120px;
}
.textarea[rows] {
    height: unset;
}
.textarea.has-fixed-size {
    resize: none;
}

.checkbox,
.radio {
    cursor: pointer;
    display: inline-block;
    line-height: 1.25;
    position: relative;
}
.checkbox input,
.radio input {
    cursor: pointer;
}
.checkbox:hover,
.radio:hover {
    color: #323232;
}
.checkbox[disabled],
.radio[disabled] {
    color: #767676;
    cursor: not-allowed;
}

.radio + .radio {
    margin-left: 0.5em;
}

.select {
    display: inline-block;
    max-width: 100%;
    position: relative;
    vertical-align: top;
}
.select:not(.is-multiple) {
    height: 2.25em;
}
.select:not(.is-multiple)::after {
    border: 1px solid #4372d6;
    border-right: 0;
    border-top: 0;
    content: " ";
    display: block;
    height: 0.5em;
    pointer-events: none;
    position: absolute;
    transform: rotate(-45deg);
    transform-origin: center;
    width: 0.5em;
    margin-top: -0.375em;
    right: 1.125em;
    top: 50%;
    z-index: 4;
}
.select.is-rounded select {
    border-radius: 290486px;
    padding-left: 1em;
}
.select select {
    -moz-appearance: none;
    -webkit-appearance: none;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 0px;
    box-shadow: none;
    display: inline-flex;
    font-size: 1rem;
    height: 2.25em;
    justify-content: flex-start;
    line-height: 1.5;
    padding-bottom: calc(0.375em - 1px);
    padding-left: calc(0.625em - 1px);
    padding-right: calc(0.625em - 1px);
    padding-top: calc(0.375em - 1px);
    position: relative;
    vertical-align: top;
    background-color: white;
    border-color: transparent;
    color: #323232;
    cursor: pointer;
    display: block;
    font-size: 1em;
    max-width: 100%;
    outline: none;
}
.select select:focus,
.select select.is-focused,
.select select:active,
.select select.is-active {
    outline: none;
}
.select select[disabled] {
    cursor: not-allowed;
}
.select select::-moz-placeholder {
    color: rgba(50, 50, 50, 0.3);
}
.select select::-webkit-input-placeholder {
    color: rgba(50, 50, 50, 0.3);
}
.select select:-moz-placeholder {
    color: rgba(50, 50, 50, 0.3);
}
.select select:-ms-input-placeholder {
    color: rgba(50, 50, 50, 0.3);
}
.select select:hover,
.select select.is-hovered {
    border-color: transparent;
}
.select select:focus,
.select select.is-focused,
.select select:active,
.select select.is-active {
    border-color: transparent;
    box-shadow: none transparent;
}
.select select[disabled] {
    background-color: whitesmoke;
    border-color: whitesmoke;
    box-shadow: none;
    color: #767676;
}
.select select[disabled]::-moz-placeholder {
    color: rgba(118, 118, 118, 0.3);
}
.select select[disabled]::-webkit-input-placeholder {
    color: rgba(118, 118, 118, 0.3);
}
.select select[disabled]:-moz-placeholder {
    color: rgba(118, 118, 118, 0.3);
}
.select select[disabled]:-ms-input-placeholder {
    color: rgba(118, 118, 118, 0.3);
}
.select select::-ms-expand {
    display: none;
}
.select select[disabled]:hover {
    border-color: whitesmoke;
}
.select select:not([multiple]) {
    padding-right: 2.5em;
}
.select select[multiple] {
    height: unset;
    padding: 0;
}
.select select[multiple] option {
    padding: 0.5em 1em;
}
.select:hover::after {
    border-color: #323232;
}
.select.is-white select {
    border-color: white;
}
.select.is-white select:focus,
.select.is-white select.is-focused,
.select.is-white select:active,
.select.is-white select.is-active {
    box-shadow: none rgba(255, 255, 255, 0.25);
}
.select.is-black select {
    border-color: #0a0a0a;
}
.select.is-black select:focus,
.select.is-black select.is-focused,
.select.is-black select:active,
.select.is-black select.is-active {
    box-shadow: none rgba(10, 10, 10, 0.25);
}
.select.is-light select {
    border-color: whitesmoke;
}
.select.is-light select:focus,
.select.is-light select.is-focused,
.select.is-light select:active,
.select.is-light select.is-active {
    box-shadow: none rgba(245, 245, 245, 0.25);
}
.select.is-dark select {
    border-color: #323232;
}
.select.is-dark select:focus,
.select.is-dark select.is-focused,
.select.is-dark select:active,
.select.is-dark select.is-active {
    box-shadow: none rgba(50, 50, 50, 0.25);
}
.select.is-primary select {
    border-color: #0487bf;
}
.select.is-primary select:focus,
.select.is-primary select.is-focused,
.select.is-primary select:active,
.select.is-primary select.is-active {
    box-shadow: none rgba(4, 135, 191, 0.25);
}
.select.is-secondary select {
    border-color: #6b4370;
}
.select.is-secondary select:focus,
.select.is-secondary select.is-focused,
.select.is-secondary select:active,
.select.is-secondary select.is-active {
    box-shadow: none rgba(107, 67, 112, 0.25);
}
.select.is-link select {
    border-color: #4372d6;
}
.select.is-link select:focus,
.select.is-link select.is-focused,
.select.is-link select:active,
.select.is-link select.is-active {
    box-shadow: none rgba(67, 114, 214, 0.25);
}
.select.is-info select {
    border-color: #209cee;
}
.select.is-info select:focus,
.select.is-info select.is-focused,
.select.is-info select:active,
.select.is-info select.is-active {
    box-shadow: none rgba(32, 156, 238, 0.25);
}
.select.is-success select {
    border-color: #23d160;
}
.select.is-success select:focus,
.select.is-success select.is-focused,
.select.is-success select:active,
.select.is-success select.is-active {
    box-shadow: none rgba(35, 209, 96, 0.25);
}
.select.is-warning select {
    border-color: #ffdd57;
}
.select.is-warning select:focus,
.select.is-warning select.is-focused,
.select.is-warning select:active,
.select.is-warning select.is-active {
    box-shadow: none rgba(255, 221, 87, 0.25);
}
.select.is-danger select {
    border-color: #ff3860;
}
.select.is-danger select:focus,
.select.is-danger select.is-focused,
.select.is-danger select:active,
.select.is-danger select.is-active {
    box-shadow: none rgba(255, 56, 96, 0.25);
}
.select.is-small {
    border-radius: 2px;
    font-size: 0.75rem;
}
.select.is-medium {
    font-size: 1.25rem;
}
.select.is-large {
    font-size: 1.5rem;
}
.select.is-disabled::after {
    border-color: #767676;
}
.select.is-fullwidth {
    width: 100%;
}
.select.is-fullwidth select {
    width: 100%;
}
.select.is-loading::after {
    animation: spinAround 500ms infinite linear;
    border: 2px solid #6b4370;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 1em;
    position: relative;
    width: 1em;
    margin-top: 0;
    position: absolute;
    right: 0.625em;
    top: 0.625em;
    transform: none;
}
.select.is-loading.is-small:after {
    font-size: 0.75rem;
}
.select.is-loading.is-medium:after {
    font-size: 1.25rem;
}
.select.is-loading.is-large:after {
    font-size: 1.5rem;
}

.file {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: stretch;
    display: flex;
    justify-content: flex-start;
    position: relative;
}
.file.is-white .file-cta {
    background-color: white;
    border-color: transparent;
    color: #0a0a0a;
}
.file.is-white:hover .file-cta,
.file.is-white.is-hovered .file-cta {
    background-color: #f9f9f9;
    border-color: transparent;
    color: #0a0a0a;
}
.file.is-white:focus .file-cta,
.file.is-white.is-focused .file-cta {
    border-color: transparent;
    box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
    color: #0a0a0a;
}
.file.is-white:active .file-cta,
.file.is-white.is-active .file-cta {
    background-color: #f2f2f2;
    border-color: transparent;
    color: #0a0a0a;
}
.file.is-black .file-cta {
    background-color: #0a0a0a;
    border-color: transparent;
    color: white;
}
.file.is-black:hover .file-cta,
.file.is-black.is-hovered .file-cta {
    background-color: #040404;
    border-color: transparent;
    color: white;
}
.file.is-black:focus .file-cta,
.file.is-black.is-focused .file-cta {
    border-color: transparent;
    box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
    color: white;
}
.file.is-black:active .file-cta,
.file.is-black.is-active .file-cta {
    background-color: black;
    border-color: transparent;
    color: white;
}
.file.is-light .file-cta {
    background-color: whitesmoke;
    border-color: transparent;
    color: #323232;
}
.file.is-light:hover .file-cta,
.file.is-light.is-hovered .file-cta {
    background-color: #eeeeee;
    border-color: transparent;
    color: #323232;
}
.file.is-light:focus .file-cta,
.file.is-light.is-focused .file-cta {
    border-color: transparent;
    box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
    color: #323232;
}
.file.is-light:active .file-cta,
.file.is-light.is-active .file-cta {
    background-color: #e8e8e8;
    border-color: transparent;
    color: #323232;
}
.file.is-dark .file-cta {
    background-color: #323232;
    border-color: transparent;
    color: whitesmoke;
}
.file.is-dark:hover .file-cta,
.file.is-dark.is-hovered .file-cta {
    background-color: #2c2c2c;
    border-color: transparent;
    color: whitesmoke;
}
.file.is-dark:focus .file-cta,
.file.is-dark.is-focused .file-cta {
    border-color: transparent;
    box-shadow: 0 0 0.5em rgba(50, 50, 50, 0.25);
    color: whitesmoke;
}
.file.is-dark:active .file-cta,
.file.is-dark.is-active .file-cta {
    background-color: #252525;
    border-color: transparent;
    color: whitesmoke;
}
.file.is-primary .file-cta {
    background-color: #0487bf;
    border-color: transparent;
    color: #fff;
}
.file.is-primary:hover .file-cta,
.file.is-primary.is-hovered .file-cta {
    background-color: #047eb3;
    border-color: transparent;
    color: #fff;
}
.file.is-primary:focus .file-cta,
.file.is-primary.is-focused .file-cta {
    border-color: transparent;
    box-shadow: 0 0 0.5em rgba(4, 135, 191, 0.25);
    color: #fff;
}
.file.is-primary:active .file-cta,
.file.is-primary.is-active .file-cta {
    background-color: #0375a6;
    border-color: transparent;
    color: #fff;
}
.file.is-secondary .file-cta {
    background-color: #6b4370;
    border-color: transparent;
    color: #fff;
}
.file.is-secondary:hover .file-cta,
.file.is-secondary.is-hovered .file-cta {
    background-color: #633e68;
    border-color: transparent;
    color: #fff;
}
.file.is-secondary:focus .file-cta,
.file.is-secondary.is-focused .file-cta {
    border-color: transparent;
    box-shadow: 0 0 0.5em rgba(107, 67, 112, 0.25);
    color: #fff;
}
.file.is-secondary:active .file-cta,
.file.is-secondary.is-active .file-cta {
    background-color: #5c3960;
    border-color: transparent;
    color: #fff;
}
.file.is-link .file-cta {
    background-color: #4372d6;
    border-color: transparent;
    color: #fff;
}
.file.is-link:hover .file-cta,
.file.is-link.is-hovered .file-cta {
    background-color: #396ad4;
    border-color: transparent;
    color: #fff;
}
.file.is-link:focus .file-cta,
.file.is-link.is-focused .file-cta {
    border-color: transparent;
    box-shadow: 0 0 0.5em rgba(67, 114, 214, 0.25);
    color: #fff;
}
.file.is-link:active .file-cta,
.file.is-link.is-active .file-cta {
    background-color: #2e62d1;
    border-color: transparent;
    color: #fff;
}
.file.is-info .file-cta {
    background-color: #209cee;
    border-color: transparent;
    color: #fff;
}
.file.is-info:hover .file-cta,
.file.is-info.is-hovered .file-cta {
    background-color: #1496ed;
    border-color: transparent;
    color: #fff;
}
.file.is-info:focus .file-cta,
.file.is-info.is-focused .file-cta {
    border-color: transparent;
    box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25);
    color: #fff;
}
.file.is-info:active .file-cta,
.file.is-info.is-active .file-cta {
    background-color: #118fe4;
    border-color: transparent;
    color: #fff;
}
.file.is-success .file-cta {
    background-color: #23d160;
    border-color: transparent;
    color: #fff;
}
.file.is-success:hover .file-cta,
.file.is-success.is-hovered .file-cta {
    background-color: #22c65b;
    border-color: transparent;
    color: #fff;
}
.file.is-success:focus .file-cta,
.file.is-success.is-focused .file-cta {
    border-color: transparent;
    box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.25);
    color: #fff;
}
.file.is-success:active .file-cta,
.file.is-success.is-active .file-cta {
    background-color: #20bc56;
    border-color: transparent;
    color: #fff;
}
.file.is-warning .file-cta {
    background-color: #ffdd57;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}
.file.is-warning:hover .file-cta,
.file.is-warning.is-hovered .file-cta {
    background-color: #ffdb4a;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}
.file.is-warning:focus .file-cta,
.file.is-warning.is-focused .file-cta {
    border-color: transparent;
    box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
    color: rgba(0, 0, 0, 0.7);
}
.file.is-warning:active .file-cta,
.file.is-warning.is-active .file-cta {
    background-color: #ffd83d;
    border-color: transparent;
    color: rgba(0, 0, 0, 0.7);
}
.file.is-danger .file-cta {
    background-color: #ff3860;
    border-color: transparent;
    color: #fff;
}
.file.is-danger:hover .file-cta,
.file.is-danger.is-hovered .file-cta {
    background-color: #ff2b56;
    border-color: transparent;
    color: #fff;
}
.file.is-danger:focus .file-cta,
.file.is-danger.is-focused .file-cta {
    border-color: transparent;
    box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.25);
    color: #fff;
}
.file.is-danger:active .file-cta,
.file.is-danger.is-active .file-cta {
    background-color: #ff1f4b;
    border-color: transparent;
    color: #fff;
}
.file.is-small {
    font-size: 0.75rem;
}
.file.is-medium {
    font-size: 1.25rem;
}
.file.is-medium .file-icon .fa {
    font-size: 21px;
}
.file.is-large {
    font-size: 1.5rem;
}
.file.is-large .file-icon .fa {
    font-size: 28px;
}
.file.has-name .file-cta {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.file.has-name .file-name {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.file.has-name.is-empty .file-cta {
    border-radius: 0px;
}
.file.has-name.is-empty .file-name {
    display: none;
}
.file.is-boxed .file-label {
    flex-direction: column;
}
.file.is-boxed .file-cta {
    flex-direction: column;
    height: auto;
    padding: 1em 3em;
}
.file.is-boxed .file-name {
    border-width: 0 1px 1px;
}
.file.is-boxed .file-icon {
    height: 1.5em;
    width: 1.5em;
}
.file.is-boxed .file-icon .fa {
    font-size: 21px;
}
.file.is-boxed.is-small .file-icon .fa {
    font-size: 14px;
}
.file.is-boxed.is-medium .file-icon .fa {
    font-size: 28px;
}
.file.is-boxed.is-large .file-icon .fa {
    font-size: 35px;
}
.file.is-boxed.has-name .file-cta {
    border-radius: 0px 0px 0 0;
}
.file.is-boxed.has-name .file-name {
    border-radius: 0 0 0px 0px;
    border-width: 0 1px 1px;
}
.file.is-centered {
    justify-content: center;
}
.file.is-fullwidth .file-label {
    width: 100%;
}
.file.is-fullwidth .file-name {
    flex-grow: 1;
    max-width: none;
}
.file.is-right {
    justify-content: flex-end;
}
.file.is-right .file-cta {
    border-radius: 0 0px 0px 0;
}
.file.is-right .file-name {
    border-radius: 0px 0 0 0px;
    border-width: 1px 0 1px 1px;
    order: -1;
}

.file-label {
    align-items: stretch;
    display: flex;
    cursor: pointer;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
}
.file-label:hover .file-cta {
    background-color: #eeeeee;
    color: #323232;
}
.file-label:hover .file-name {
    border-color: #633e68;
}
.file-label:active .file-cta {
    background-color: #e8e8e8;
    color: #323232;
}
.file-label:active .file-name {
    border-color: #5c3960;
}

.file-input {
    height: 0.01em;
    left: 0;
    outline: none;
    position: absolute;
    top: 0;
    width: 0.01em;
}

.file-cta,
.file-name {
    -moz-appearance: none;
    -webkit-appearance: none;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 0px;
    box-shadow: none;
    display: inline-flex;
    font-size: 1rem;
    height: 2.25em;
    justify-content: flex-start;
    line-height: 1.5;
    padding-bottom: calc(0.375em - 1px);
    padding-left: calc(0.625em - 1px);
    padding-right: calc(0.625em - 1px);
    padding-top: calc(0.375em - 1px);
    position: relative;
    vertical-align: top;
    border-color: #6b4370;
    border-radius: 0px;
    font-size: 1em;
    padding-left: 1em;
    padding-right: 1em;
    white-space: nowrap;
}
.file-cta:focus,
.file-cta.is-focused,
.file-cta:active,
.file-cta.is-active,
.file-name:focus,
.file-name.is-focused,
.file-name:active,
.file-name.is-active {
    outline: none;
}
.file-cta[disabled],
.file-name[disabled] {
    cursor: not-allowed;
}

.file-cta {
    background-color: whitesmoke;
    color: #484848;
}

.file-name {
    border-color: #6b4370;
    border-style: solid;
    border-width: 1px 1px 1px 0;
    display: block;
    max-width: 16em;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
}

.file-icon {
    align-items: center;
    display: flex;
    height: 1em;
    justify-content: center;
    margin-right: 0.5em;
    width: 1em;
}
.file-icon .fa {
    font-size: 14px;
}

.label {
    color: #323232;
    display: block;
    font-size: 1rem;
    font-weight: 700;
}
.label:not(:last-child) {
    margin-bottom: 0.5em;
}
.label.is-small {
    font-size: 0.75rem;
}
.label.is-medium {
    font-size: 1.25rem;
}
.label.is-large {
    font-size: 1.5rem;
}

.help {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}
.help.is-white {
    color: white;
}
.help.is-black {
    color: #0a0a0a;
}
.help.is-light {
    color: whitesmoke;
}
.help.is-dark {
    color: #323232;
}
.help.is-primary {
    color: #0487bf;
}
.help.is-secondary {
    color: #6b4370;
}
.help.is-link {
    color: #4372d6;
}
.help.is-info {
    color: #209cee;
}
.help.is-success {
    color: #23d160;
}
.help.is-warning {
    color: #ffdd57;
}
.help.is-danger {
    color: #ff3860;
}

.field:not(:last-child) {
    margin-bottom: 0.75rem;
}
.field.has-addons {
    display: flex;
    justify-content: flex-start;
}
.field.has-addons .control:not(:last-child) {
    margin-right: -1px;
}
.field.has-addons .control:not(:first-child):not(:last-child) .bp-button,
.field.has-addons .control:not(:first-child):not(:last-child) .input,
.field.has-addons .control:not(:first-child):not(:last-child) .select select {
    border-radius: 0;
}
.field.has-addons .control:first-child .bp-button,
.field.has-addons .control:first-child .input,
.field.has-addons .control:first-child .select select {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.field.has-addons .control:last-child .bp-button,
.field.has-addons .control:last-child .input,
.field.has-addons .control:last-child .select select {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.field.has-addons .control .bp-button:hover,
.field.has-addons .control .bp-button.is-hovered,
.field.has-addons .control .input:hover,
.field.has-addons .control .input.is-hovered,
.field.has-addons .control .select select:hover,
.field.has-addons .control .select select.is-hovered {
    z-index: 2;
}
.field.has-addons .control .bp-button:focus,
.field.has-addons .control .bp-button.is-focused,
.field.has-addons .control .bp-button:active,
.field.has-addons .control .bp-button.is-active,
.field.has-addons .control .input:focus,
.field.has-addons .control .input.is-focused,
.field.has-addons .control .input:active,
.field.has-addons .control .input.is-active,
.field.has-addons .control .select select:focus,
.field.has-addons .control .select select.is-focused,
.field.has-addons .control .select select:active,
.field.has-addons .control .select select.is-active {
    z-index: 3;
}
.field.has-addons .control .bp-button:focus:hover,
.field.has-addons .control .bp-button.is-focused:hover,
.field.has-addons .control .bp-button:active:hover,
.field.has-addons .control .bp-button.is-active:hover,
.field.has-addons .control .input:focus:hover,
.field.has-addons .control .input.is-focused:hover,
.field.has-addons .control .input:active:hover,
.field.has-addons .control .input.is-active:hover,
.field.has-addons .control .select select:focus:hover,
.field.has-addons .control .select select.is-focused:hover,
.field.has-addons .control .select select:active:hover,
.field.has-addons .control .select select.is-active:hover {
    z-index: 4;
}
.field.has-addons .control.is-expanded {
    flex-grow: 1;
}
.field.has-addons.has-addons-centered {
    justify-content: center;
}
.field.has-addons.has-addons-right {
    justify-content: flex-end;
}
.field.has-addons.has-addons-fullwidth .control {
    flex-grow: 1;
    flex-shrink: 0;
}
.field.is-grouped {
    display: flex;
    justify-content: flex-start;
}
.field.is-grouped > .control {
    flex-shrink: 0;
}
.field.is-grouped > .control:not(:last-child) {
    margin-bottom: 0;
    margin-right: 0.75rem;
}
.field.is-grouped > .control.is-expanded {
    flex-grow: 1;
    flex-shrink: 1;
}
.field.is-grouped.is-grouped-centered {
    justify-content: center;
}
.field.is-grouped.is-grouped-right {
    justify-content: flex-end;
}
.field.is-grouped.is-grouped-multiline {
    flex-wrap: wrap;
}
.field.is-grouped.is-grouped-multiline > .control:last-child,
.field.is-grouped.is-grouped-multiline > .control:not(:last-child) {
    margin-bottom: 0.75rem;
}
.field.is-grouped.is-grouped-multiline:last-child {
    margin-bottom: -0.75rem;
}
.field.is-grouped.is-grouped-multiline:not(:last-child) {
    margin-bottom: 0;
}
@media screen and (min-width: 769px), print {
    .field.is-horizontal {
        display: flex;
    }
}

.field-label .label {
    font-size: inherit;
}
@media screen and (max-width: 768px) {
    .field-label {
        margin-bottom: 0.5rem;
    }
}
@media screen and (min-width: 769px), print {
    .field-label {
        flex-basis: 0;
        flex-grow: 1;
        flex-shrink: 0;
        margin-right: 1.5rem;
        text-align: right;
    }
    .field-label.is-small {
        font-size: 0.75rem;
        padding-top: 0.375em;
    }
    .field-label.is-normal {
        padding-top: 0.375em;
    }
    .field-label.is-medium {
        font-size: 1.25rem;
        padding-top: 0.375em;
    }
    .field-label.is-large {
        font-size: 1.5rem;
        padding-top: 0.375em;
    }
}

.field-body .field .field {
    margin-bottom: 0;
}
@media screen and (min-width: 769px), print {
    .field-body {
        display: flex;
        flex-basis: 0;
        flex-grow: 5;
        flex-shrink: 1;
    }
    .field-body .field {
        margin-bottom: 0;
    }
    .field-body > .field {
        flex-shrink: 1;
    }
    .field-body > .field:not(.is-narrow) {
        flex-grow: 1;
    }
    .field-body > .field:not(:last-child) {
        margin-right: 0.75rem;
    }
}

.control {
    font-size: 1rem;
    position: relative;
    text-align: left;
}
.control.has-icon .sgds-icon {
    color: #f0f0f0;
    height: 2.25em;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 2.25em;
    z-index: 4;
}
.control.has-icon .input:focus + .sgds-icon {
    color: #767676;
}
.control.has-icon .input.is-small + .sgds-icon {
    font-size: 0.75rem;
}
.control.has-icon .input.is-medium + .sgds-icon {
    font-size: 1.25rem;
}
.control.has-icon .input.is-large + .sgds-icon {
    font-size: 1.5rem;
}
.control.has-icon:not(.has-icon-right) .sgds-icon {
    left: 0;
}
.control.has-icon:not(.has-icon-right) .input {
    padding-left: 2.25em;
}
.control.has-icon.has-icon-right .sgds-icon {
    right: 0;
}
.control.has-icon.has-icon-right .input {
    padding-right: 2.25em;
}
.control.has-icons-left .input:focus ~ .icon,
.control.has-icons-left .select:focus ~ .icon,
.control.has-icons-right .input:focus ~ .icon,
.control.has-icons-right .select:focus ~ .icon {
    color: #767676;
}
.control.has-icons-left .input.is-small ~ .icon,
.control.has-icons-left .select.is-small ~ .icon,
.control.has-icons-right .input.is-small ~ .icon,
.control.has-icons-right .select.is-small ~ .icon {
    font-size: 0.75rem;
}
.control.has-icons-left .input.is-medium ~ .icon,
.control.has-icons-left .select.is-medium ~ .icon,
.control.has-icons-right .input.is-medium ~ .icon,
.control.has-icons-right .select.is-medium ~ .icon {
    font-size: 1.25rem;
}
.control.has-icons-left .input.is-large ~ .icon,
.control.has-icons-left .select.is-large ~ .icon,
.control.has-icons-right .input.is-large ~ .icon,
.control.has-icons-right .select.is-large ~ .icon {
    font-size: 1.5rem;
}
.control.has-icons-left .sgds-icon,
.control.has-icons-right .sgds-icon {
    color: #f0f0f0;
    height: 2.25em;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 2.25em;
    z-index: 4;
}
.control.has-icons-left .input,
.control.has-icons-left .select select {
    padding-left: 2.25em;
}
.control.has-icons-left .sgds-icon.is-left {
    left: 0;
}
.control.has-icons-right .input,
.control.has-icons-right .select select {
    padding-right: 2.25em;
}
.control.has-icons-right .sgds-icon.is-right {
    right: 0;
}
.control.is-loading::after {
    animation: spinAround 500ms infinite linear;
    border: 2px solid #6b4370;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 1em;
    position: relative;
    width: 1em;
    position: absolute !important;
    right: 0.625em;
    top: 0.625em;
    z-index: 4;
}
.control.is-loading.is-small:after {
    font-size: 0.75rem;
}
.control.is-loading.is-medium:after {
    font-size: 1.25rem;
}
.control.is-loading.is-large:after {
    font-size: 1.5rem;
}

.icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
}
.icon.is-small {
    height: 1rem;
    width: 1rem;
}
.icon.is-medium {
    height: 2rem;
    width: 2rem;
}
.icon.is-large {
    height: 3rem;
    width: 3rem;
}

.bp-image {
    display: block;
    position: relative;
}
.bp-image img {
    display: block;
    height: auto;
    width: 100%;
}
.bp-image img.is-rounded {
    border-radius: 290486px;
}
.bp-image.is-square img,
.bp-image.is-1by1 img,
.bp-image.is-4by3 img,
.bp-image.is-3by2 img,
.bp-image.is-16by9 img,
.bp-image.is-2by1 img {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.bp-image.is-square,
.bp-image.is-1by1 {
    padding-top: 100%;
}
.bp-image.is-4by3 {
    padding-top: 75%;
}
.bp-image.is-3by2 {
    padding-top: 66.6666%;
}
.bp-image.is-16by9 {
    padding-top: 56.25%;
}
.bp-image.is-2by1 {
    padding-top: 50%;
}
.bp-image.is-16x16 {
    height: 16px;
    width: 16px;
}
.bp-image.is-24x24 {
    height: 24px;
    width: 24px;
}
.bp-image.is-32x32 {
    height: 32px;
    width: 32px;
}
.bp-image.is-48x48 {
    height: 48px;
    width: 48px;
}
.bp-image.is-64x64 {
    height: 64px;
    width: 64px;
}
.bp-image.is-96x96 {
    height: 96px;
    width: 96px;
}
.bp-image.is-128x128 {
    height: 128px;
    width: 128px;
}
.bp-image-milestone {
    height: auto;
    width: 15rem !important;
    border: solid 1px #d6d6d6;
    border-bottom: solid 4px #6b4370;
    justify-content: center;
    display: flex !important;
    flex-direction: row;
}
.bp-image-milestone img {
    flex: 1 !important;
    height: 100% !important;
}

.bp-notification {
    background-color: whitesmoke;
    border-radius: 0;
    padding: 0.9375rem;
    position: absolute;
    width: 100%;
    z-index: 2;
}
.bp-notification:not(:last-child) {
    margin-bottom: 1.5rem;
}
.bp-notification a:not(.button) {
    color: currentColor;
    text-decoration: underline;
}
.bp-notification strong {
    color: currentColor;
}
.bp-notification code,
.bp-notification pre {
    background: white;
}
.bp-notification pre code {
    background: transparent;
}
.bp-notification > .delete {
    position: absolute;
    right: 0.5rem;
    top: 1rem;
    font-size: 1.5rem;
    background-color: transparent;
    color: white;
    border: 0;
}
.bp-notification .title,
.bp-notification .subtitle,
.bp-notification .content {
    color: currentColor;
}
.bp-notification.is-white {
    background-color: white;
    color: #0a0a0a;
}
.bp-notification.is-black {
    background-color: #0a0a0a;
    color: white;
}
.bp-notification.is-light {
    background-color: whitesmoke;
    color: #323232;
}
.bp-notification.is-dark {
    background-color: #323232;
    color: whitesmoke;
}
.bp-notification.is-primary {
    background-color: #0487bf;
    color: #fff;
}
.bp-notification.is-secondary {
    background-color: #6b4370;
    color: #fff;
}
.bp-notification.is-link {
    background-color: #4372d6;
    color: #fff;
}
.bp-notification.is-info {
    background-color: #209cee;
    color: #fff;
}
.bp-notification.is-success {
    background-color: #23d160;
    color: #fff;
}
.bp-notification.is-warning {
    background-color: #ffdd57;
    color: rgba(0, 0, 0, 0.7);
}
.bp-notification.is-danger {
    background-color: #ff3860;
    color: #fff;
}
.bp-notification-flex.field {
    justify-content: space-between;
    align-items: center;
}

table.table-v {
    width: 100%;
    margin-bottom: 1.5rem;
}
table.table-v td,
table.table-v th {
    border: 1px solid #f0f0f0;
    border-width: 0 0 1px;
    padding: 0.5em 0.75em;
    vertical-align: top;
}
table.table-v th {
    color: #323232;
    text-align: left;
}
table.table-v thead td,
table.table-v thead th {
    border-width: 0 0 2px;
    color: #323232;
}
table.table-v tfoot td,
table.table-v tfoot th {
    border-width: 2px 0 0;
    color: #323232;
}
table.table-v tbody td {
    font-size: 1.25rem;
    padding: 1.5625rem;
    padding-bottom: 2rem;
}
table.table-v tbody td:first-child {
    width: 20%;
    background-color: #f0f4f6;
    border-bottom-color: white;
    font-weight: 600;
}
table.table-v tbody tr:last-child td,
table.table-v tbody tr:last-child th {
    border-bottom: solid 1px #f0f0f0;
}
table.table-v tbody tr:first-child td,
table.table-v tbody tr:first-child th {
    border-top: solid 1px #f0f0f0;
}

table.table-h {
    width: 100%;
    margin-bottom: 1.5rem;
}
table.table-h td,
table.table-h th {
    border: 1px solid #f0f0f0;
    border-width: 0 0 1px;
    padding: 0.5em 0.75em;
    vertical-align: top;
}
table.table-h th {
    color: #323232;
    background-color: white;
    text-align: left;
    font-weight: 600;
    font-size: 1.25rem;
}
table.table-h thead td,
table.table-h thead th {
    border-width: 0 0 2px;
    color: #323232;
}
table.table-h tfoot td,
table.table-h tfoot th {
    border-width: 2px 0 0;
    color: #323232;
}
table.table-h tbody td {
    font-size: 1.25rem;
}
table.table-h tbody tr:nth-of-type(odd) {
    background-color: #f0f4f6;
}
table.table-h tbody tr:last-child td,
table.table-h tbody tr:last-child th {
    border-bottom-width: 0;
    border-bottom: solid 4px #f0f0f0;
}

.title,
.subtitle {
    word-break: break-word;
}
.title:not(:last-child),
.subtitle:not(:last-child) {
    margin-bottom: 1.5rem;
}
.title em,
.title span,
.subtitle em,
.subtitle span {
    font-weight: inherit;
}
.title sub,
.subtitle sub {
    font-size: 0.75em;
}
.title sup,
.subtitle sup {
    font-size: 0.75em;
}
.title .tag,
.subtitle .tag {
    vertical-align: middle;
}

.title {
    color: #323232;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.125;
}
.title strong {
    color: inherit;
    font-weight: inherit;
}
.title + .highlight {
    margin-top: -0.75rem;
}
.title:not(.is-spaced) + .subtitle {
    margin-top: -1.5rem;
}
.title.is-1 {
    font-size: 3rem;
}
.title.is-2 {
    font-size: 2.5rem;
}
.title.is-3 {
    font-size: 2rem;
}
.title.is-4 {
    font-size: 1.5rem;
}
.title.is-5 {
    font-size: 1.25rem;
}
.title.is-6 {
    font-size: 1rem;
}
.title.is-7 {
    font-size: 0.75rem;
}

.subtitle {
    color: #484848;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.25;
}
.subtitle strong {
    color: #323232;
    font-weight: 600;
}
.subtitle:not(.is-spaced) + .title {
    margin-top: -1.5rem;
}
.subtitle.is-1 {
    font-size: 3rem;
}
.subtitle.is-2 {
    font-size: 2.5rem;
}
.subtitle.is-3 {
    font-size: 2rem;
}
.subtitle.is-4 {
    font-size: 1.5rem;
}
.subtitle.is-5 {
    font-size: 1.25rem;
}
.subtitle.is-6 {
    font-size: 1rem;
}
.subtitle.is-7 {
    font-size: 0.75rem;
}

.bottom-navigation {
    height: 95px;
}
@media screen and (max-width: 768px) {
    .bottom-navigation {
        height: 64px;
    }
}
.bottom-navigation a {
    color: white;
    background-color: #6b4370;
    display: block;
    width: 50%;
    padding: 1rem 5rem;
}
.bottom-navigation a.is-full {
    width: 100%;
}
.bottom-navigation a.is-half {
    width: 50%;
}
.bottom-navigation a.is-left {
    float: left;
}
.bottom-navigation a.is-right {
    float: right;
}
@media screen and (max-width: 1023px) {
    .bottom-navigation a {
        padding-left: 1.5em;
        padding-right: 1.5rem;
    }
}
.bottom-navigation a:hover {
    background-color: #4d3050;
}
.bottom-navigation p:first-child {
    font-size: 1rem !important;
}

.bp-section.is-small.bp-section-pagetitle {
    padding: 1.5rem;
    padding-bottom: 2.25rem;
    background-color: #0487bf;
}

.bp-youtube {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}
.bp-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

a[target="_blank"]:after {
    display: inline-block;
    font-family: "sgds-icons";
    content: "";
    padding-left: 0.25rem;
    font-weight: 400;
}
a[target="_blank"].bp-sec-button:after {
    content: "";
}
a[target="_blank"].is-highlight:after {
    content: "";
    display: none;
}
a[target="_blank"].is-highlight p.key-highlight-title:after {
    display: inline-block;
    font-family: "sgds-icons";
    content: "";
    padding-left: 0.25rem;
    font-weight: 400;
}
a[target="_blank"].social-link:after {
    content: "";
    display: none;
}
a[target="_blank"].is-download-button,
a[target="_blank"].is-media-card {
    margin-left: 0;
}
a[target="_blank"].is-download-button:after,
a[target="_blank"].is-media-card:after {
    content: "";
}

a[href$=".pdf"] {
    position: relative;
    margin-left: 2.25rem;
}
a[href$=".pdf"]:before {
    vertical-align: middle;
    color: #767676;
    font-size: 1.75rem;
    font-family: "sgds-icons";
    content: "";
    position: absolute;
    left: -2rem;
    height: 100%;
    align-items: center;
    justify-content: center;
}
a[href$=".pdf"]:before:hover {
    text-decoration: none;
}
a[href$=".pdf"].is-download-button,
a[href$=".pdf"].is-media-card {
    margin-left: 0;
}
a[href$=".pdf"].is-download-button:before,
a[href$=".pdf"].is-media-card:before {
    content: "";
}

a[href$=".pdf"][target="_blank"]:after {
    content: "";
    display: none;
}

.bp-masthead a:after {
    content: "";
}

.navbar-item:not(.sub-link) a[target="_blank"]:after {
    color: #767676;
    padding-left: 0.375rem;
}

#footer-remove-link a[target="_blank"]:after {
    content: "";
    display: none;
}

.bp-breadcrumb {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: stretch;
    display: flex;
    font-size: 0.9375rem;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 0.625rem;
}
.bp-breadcrumb:not(:last-child) {
    margin-bottom: 1.5rem;
}
.bp-breadcrumb a {
    align-items: center;
    color: white;
    display: flex;
    justify-content: center;
    padding: 0.5em 0.75em;
}
.bp-breadcrumb a:hover {
    color: #d6d6d6;
}
.is-inverted .bp-breadcrumb a:hover {
    color: #484848;
}
.is-inverted .bp-breadcrumb a {
    color: #767676;
}
.bp-breadcrumb li {
    align-items: center;
    display: flex;
}
.bp-breadcrumb li:first-child a {
    padding-left: 0;
}
.bp-breadcrumb li.is-active a {
    color: #323232;
    cursor: default;
    pointer-events: none;
}
.bp-breadcrumb li + li::before {
    font-size: 0.9375rem;
    color: white;
    content: "/";
}
.is-inverted .bp-breadcrumb li + li::before {
    color: #767676;
}
.bp-breadcrumb ul,
.bp-breadcrumb ol {
    align-items: center;
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: flex-start;
}
.bp-breadcrumb .icon:first-child {
    margin-right: 0.5em;
}
.bp-breadcrumb .icon:last-child {
    margin-left: 0.5em;
}
.bp-breadcrumb.is-centered ol,
.bp-breadcrumb.is-centered ul {
    justify-content: center;
}
.bp-breadcrumb.is-right ol,
.bp-breadcrumb.is-right ul {
    justify-content: flex-end;
}
.bp-breadcrumb.is-small {
    font-size: 0.75rem;
}
.bp-breadcrumb.is-medium {
    font-size: 1.25rem;
}
.bp-breadcrumb.is-large {
    font-size: 1.5rem;
}
.bp-breadcrumb.has-arrow-separator {
    font-size: 0.9375rem;
}
.bp-breadcrumb.has-arrow-separator li + li::before {
    content: "→";
}
.bp-breadcrumb.has-bullet-separator {
    font-size: 0.9375rem;
}
.bp-breadcrumb.has-bullet-separator li + li::before {
    content: "•";
}
.bp-breadcrumb.has-dot-separator {
    font-size: 0.9375rem;
}
.bp-breadcrumb.has-dot-separator li + li::before {
    content: "·";
}
.bp-breadcrumb.has-succeeds-separator {
    font-size: 0.9375rem;
}
.bp-breadcrumb.has-succeeds-separator li + li::before {
    content: "≻";
}

.bp-card {
    background-color: white;
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
    color: #484848;
    max-width: 100%;
    position: relative;
}
.bp-card-header {
    align-items: stretch;
    box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1);
    display: flex;
}
.bp-card-header-title {
    align-items: center;
    color: #323232;
    display: flex;
    flex-grow: 1;
    font-weight: 700;
    padding: 0.75rem;
}
.bp-card-header-title.is-centered {
    justify-content: center;
}
.bp-card-header-icon {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 0.75rem;
}
.bp-card-image {
    display: block;
    position: relative;
}
.bp-card-content {
    padding: 1.5rem;
}
.bp-card-footer {
    border-top: 1px solid #6b4370;
    align-items: stretch;
    display: flex;
}
.bp-card-footer-item {
    align-items: center;
    display: flex;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: center;
    padding: 0.75rem;
}
.bp-card-footer-item:not(:last-child) {
    border-right: 1px solid #6b4370;
}
.bp-card .media:not(:last-child) {
    margin-bottom: 0.75rem;
}

.bp-dropdown {
    display: block;
    position: relative;
    vertical-align: top;
}
.bp-dropdown.is-active .bp-dropdown-menu,
.bp-dropdown.is-hoverable:hover .bp-dropdown-menu {
    display: block;
}
.bp-dropdown.is-right .bp-dropdown-menu {
    left: auto;
    right: 0;
}
.bp-dropdown.is-up .bp-dropdown-menu {
    bottom: 100%;
    padding-bottom: 0px;
    padding-top: unset;
    top: auto;
}
.bp-dropdown .second-level-nav-div-mobile {
    padding-left: 1rem !important;
    display: block;
    visibility: visible;
}
.bp-dropdown-menu {
    display: none;
    left: 0;
    min-width: 12rem;
    padding-top: 0px;
    position: absolute;
    width: 100%;
    top: 100%;
    z-index: 20;
}
.bp-dropdown-content {
    background-color: white;
    border-radius: 0px;
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
    padding-bottom: 1rem;
    padding-top: 1rem;
}
.bp-dropdown-item {
    color: #484848;
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0.75rem 1.5rem;
    position: relative;
}
.bp-dropdown-button {
    padding: 2.25rem 1.5rem;
    box-sizing: border-box;
    justify-content: space-between;
    border: 0;
    border-bottom: solid 1px #d6d6d6;
}
.bp a.bp-dropdown-item {
    padding-right: 3rem;
    white-space: nowrap;
}
.bp a.bp-dropdown-item:hover {
    background-color: whitesmoke;
    color: #0a0a0a;
}
.bp a.bp-dropdown-item.is-active {
    background-color: #4372d6;
    color: #fff;
}
.bp-dropdown-divider {
    background-color: #6b4370;
    border: none;
    display: block;
    height: 1px;
    margin: 0.5rem 0;
}
.bp-dropdown-trigger {
    width: 100%;
}

.filter-selector-div {
    border: 1px solid #d6d6d6;
}

.sgds-selector {
    font-family: Lato;
    font-size: 18px;
    border: none;
    background-color: transparent;
    padding: 0.625rem 0.75rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    line-height: 28px;
}

.bp-overflow-buttons {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0.75rem;
    margin-right: -1rem;
}
@media screen and (max-width: 1023px) {
    .bp-overflow-buttons {
        overflow-x: auto;
        overflow-y: visible;
        margin-right: 0.75rem;
    }
}
.bp-overflow-buttons .bp-buttons {
    flex-wrap: wrap;
    white-space: nowrap;
    overflow-y: visible;
    height: 100%;
}
@media screen and (max-width: 1023px) {
    .bp-overflow-buttons .bp-buttons {
        flex-wrap: nowrap;
    }
}
.bp-overflow-buttons .bp-buttons .bp-sec-button {
    display: inline-block;
}

#filter-arrow {
    position: relative;
    float: right;
    height: 0px;
    width: 0px;
    right: 34px;
    top: 12px;
    pointer-events: none;
}

.float-buttons {
    cursor: pointer;
    text-align: right;
}
.float-buttons .actionbar__inner a,
.float-buttons .actionbar__inner a:hover {
    text-decoration: none;
}
.float-buttons a[target="_blank"]:after {
    content: none;
}
.float-buttons button.bp-button,
.float-buttons button.bp-button:hover,
.float-buttons button.bp-button:focus,
.float-buttons button.bp-button:active,
.float-buttons button.bp-button:visited {
    border-color: transparent;
    box-shadow: none;
    padding-right: 0;
}

.media {
    align-items: flex-start;
    display: flex;
    text-align: left;
}
.media .content:not(:last-child) {
    margin-bottom: 0.75rem;
}
.media .media {
    border-top: 1px solid rgba(107, 67, 112, 0.5);
    display: flex;
    padding-top: 0.75rem;
}
.media .media .content:not(:last-child),
.media .media .control:not(:last-child) {
    margin-bottom: 0.5rem;
}
.media .media .media {
    padding-top: 0.5rem;
}
.media .media .media + .media {
    margin-top: 0.5rem;
}
.media + .media {
    border-top: 1px solid rgba(107, 67, 112, 0.5);
    margin-top: 1rem;
    padding-top: 1rem;
}
.media.is-large + .media {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.media-left,
.media-right {
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
}

.media-left {
    margin-right: 1rem;
}

.media-right {
    margin-left: 1rem;
}

.media-content {
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    overflow: auto;
    text-align: left;
}

.bp-menu {
    font-size: 1rem;
}
.bp-menu.is-small {
    font-size: 0.75rem;
}
.bp-menu.is-medium {
    font-size: 1.25rem;
}
.bp-menu.is-large {
    font-size: 1.5rem;
}
.bp-menu-list {
    line-height: 1.25;
}
.has-side-nav {
    box-sizing: unset;
}
.bp-menu-list a {
    font-size: 1.0625rem;
    color: #323232;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #767676;
}
.bp-menu-list a:hover {
    color: #6b4370;
    border-bottom: 1px solid #6b4370;
}
.bp-menu-list a.is-active {
    color: #6b4370;
    font-weight: 600;
    border-color: #6b4370;
    border-bottom: 2px solid #6b4370;
}
.bp-menu-list a.second-level-nav-header i.sgds-icon {
    line-height: 1.25;
}
.bp-menu-list a.second-level-nav-header,
.bp-menu-list a.second-level-nav-header.is-active,
.bp-menu-list a.second-level-nav-header:hover,
.bp-menu-list a.second-level-nav-header.is-active:hover {
    border-bottom: 1px solid white !important;
}
.bp-menu-list li ul {
    border-left: 1px dotted #6b4370;
    margin: 0.75em;
    padding-left: 0.75em;
}
.bp-menu-list li.second-level-nav-header.is-active + div.second-level-nav-div {
    display: block;
    visibility: visible;
}
.bp-menu-list li.second-level-nav-header.is-active + div.second-level-nav-div.is-hidden {
    visibility: hidden;
}
.bp-menu-list li.second-level-nav-header:active + div.second-level-nav-div,
.bp-menu-list li.second-level-nav-header:hover + div.second-level-nav-div {
    display: block;
    visibility: visible;
}
.bp-menu-list li.second-level-nav-header:active + div.second-level-nav-div.is-hidden,
.bp-menu-list li.second-level-nav-header:hover + div.second-level-nav-div.is-hidden {
    visibility: hidden;
}
.bp-menu-list li a.second-level-nav-item:hover,
.bp-menu-list li a.second-level-nav-item.is-active,
.bp-menu-list li a.second-level-nav-item.is-active:hover {
    border-top: 1px solid white;
    border-bottom: 1px solid white !important;
}
.bp-menu-list li a.second-level-nav-item {
    border-top: 1px solid white !important;
    border-bottom: 1px solid white;
    padding-left: 1.5rem;
}
.bp-menu-list li:not(:first-child) a {
    border-top: 1px solid #767676;
}
.bp-menu-label {
    color: #767676;
    font-size: 0.75em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.bp-menu-label:not(:first-child) {
    margin-top: 1em;
}
.bp-menu-label:not(:last-child) {
    margin-bottom: 1em;
}

.bp-modal {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    align-items: center;
    display: none;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    z-index: 40;
}
.bp-modal.is-active {
    display: flex;
}
.bp-modal-background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(10, 10, 10, 0.86);
}
.bp-modal-content,
.bp-modal-card {
    margin: 0 20px;
    max-height: calc(100vh - 160px);
    overflow: auto;
    position: relative;
    width: 100%;
}
@media screen and (min-width: 769px), print {
    .bp-modal-content,
    .bp-modal-card {
        margin: 0 auto;
        max-height: calc(100vh - 40px);
        width: 640px;
    }
}
.bp-modal-close {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: rgba(10, 10, 10, 0.2);
    border: none;
    border-radius: 290486px;
    cursor: pointer;
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 0;
    height: 20px;
    max-height: 20px;
    max-width: 20px;
    min-height: 20px;
    min-width: 20px;
    outline: none;
    position: relative;
    vertical-align: top;
    width: 20px;
    background: none;
    height: 40px;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 40px;
}
.bp-modal-close:before,
.bp-modal-close:after {
    background-color: white;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center;
}
.bp-modal-close:before {
    height: 2px;
    width: 50%;
}
.bp-modal-close:after {
    height: 50%;
    width: 2px;
}
.bp-modal-close:hover,
.bp-modal-close:focus {
    background-color: rgba(10, 10, 10, 0.3);
}
.bp-modal-close:active {
    background-color: rgba(10, 10, 10, 0.4);
}
.bp-modal-close.is-small {
    height: 16px;
    max-height: 16px;
    max-width: 16px;
    min-height: 16px;
    min-width: 16px;
    width: 16px;
}
.bp-modal-close.is-medium {
    height: 24px;
    max-height: 24px;
    max-width: 24px;
    min-height: 24px;
    min-width: 24px;
    width: 24px;
}
.bp-modal-close.is-large {
    height: 32px;
    max-height: 32px;
    max-width: 32px;
    min-height: 32px;
    min-width: 32px;
    width: 32px;
}
.bp-modal-card {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 40px);
    overflow: hidden;
}
.bp-modal-card-head,
.bp-modal-card-foot {
    align-items: center;
    background-color: whitesmoke;
    display: flex;
    flex-shrink: 0;
    justify-content: flex-start;
    padding: 20px;
    position: relative;
}
.bp-modal-card-head {
    border-bottom: 1px solid #6b4370;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.bp-modal-card-title {
    color: #323232;
    flex-grow: 1;
    flex-shrink: 0;
    font-size: 1.5rem;
    line-height: 1;
}
.bp-modal-card-foot {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top: 1px solid #6b4370;
}
.bp-modal-card-foot .button:not(:last-child) {
    margin-right: 10px;
}
.bp-modal-card-body {
    -webkit-overflow-scrolling: touch;
    background-color: white;
    flex-grow: 1;
    flex-shrink: 1;
    overflow: auto;
    padding: 20px;
}

.navbar {
    background-color: white;
    min-height: 6.25rem;
    position: relative;
}
.navbar.is-white {
    background-color: white;
    color: #0a0a0a;
}
.navbar.is-white .navbar-brand > .navbar-item,
.navbar.is-white .navbar-brand .navbar-link {
    color: #0a0a0a;
}
.navbar.is-white .navbar-brand > a.navbar-item:hover,
.navbar.is-white .navbar-brand > a.navbar-item.is-active,
.navbar.is-white .navbar-brand .navbar-link:hover,
.navbar.is-white .navbar-brand .navbar-link.is-active {
    background-color: #f2f2f2;
    color: #0a0a0a;
}
.navbar.is-white .navbar-brand .navbar-link::after {
    border-color: #0a0a0a;
}
@media screen and (min-width: 1280px) {
    .navbar.is-white .navbar-start > .navbar-item,
    .navbar.is-white .navbar-start .navbar-link,
    .navbar.is-white .navbar-end > .navbar-item,
    .navbar.is-white .navbar-end .navbar-link {
        color: #0a0a0a;
    }
    .navbar.is-white .navbar-start > a.navbar-item:hover,
    .navbar.is-white .navbar-start > a.navbar-item.is-active,
    .navbar.is-white .navbar-start .navbar-link:hover,
    .navbar.is-white .navbar-start .navbar-link.is-active,
    .navbar.is-white .navbar-end > a.navbar-item:hover,
    .navbar.is-white .navbar-end > a.navbar-item.is-active,
    .navbar.is-white .navbar-end .navbar-link:hover,
    .navbar.is-white .navbar-end .navbar-link.is-active {
        background-color: #f2f2f2;
        color: #0a0a0a;
    }
    .navbar.is-white .navbar-start .navbar-link::after,
    .navbar.is-white .navbar-end .navbar-link::after {
        border-color: #0a0a0a;
    }
    .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,
    .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #f2f2f2;
        color: #0a0a0a;
    }
    .navbar.is-white .navbar-dropdown a.navbar-item.is-active {
        background-color: white;
        color: #0a0a0a;
    }
}
.navbar.is-black {
    background-color: #0a0a0a;
    color: white;
}
.navbar.is-black .navbar-brand > .navbar-item,
.navbar.is-black .navbar-brand .navbar-link {
    color: white;
}
.navbar.is-black .navbar-brand > a.navbar-item:hover,
.navbar.is-black .navbar-brand > a.navbar-item.is-active,
.navbar.is-black .navbar-brand .navbar-link:hover,
.navbar.is-black .navbar-brand .navbar-link.is-active {
    background-color: black;
    color: white;
}
.navbar.is-black .navbar-brand .navbar-link::after {
    border-color: white;
}
@media screen and (min-width: 1280px) {
    .navbar.is-black .navbar-start > .navbar-item,
    .navbar.is-black .navbar-start .navbar-link,
    .navbar.is-black .navbar-end > .navbar-item,
    .navbar.is-black .navbar-end .navbar-link {
        color: white;
    }
    .navbar.is-black .navbar-start > a.navbar-item:hover,
    .navbar.is-black .navbar-start > a.navbar-item.is-active,
    .navbar.is-black .navbar-start .navbar-link:hover,
    .navbar.is-black .navbar-start .navbar-link.is-active,
    .navbar.is-black .navbar-end > a.navbar-item:hover,
    .navbar.is-black .navbar-end > a.navbar-item.is-active,
    .navbar.is-black .navbar-end .navbar-link:hover,
    .navbar.is-black .navbar-end .navbar-link.is-active {
        background-color: black;
        color: white;
    }
    .navbar.is-black .navbar-start .navbar-link::after,
    .navbar.is-black .navbar-end .navbar-link::after {
        border-color: white;
    }
    .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,
    .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: black;
        color: white;
    }
    .navbar.is-black .navbar-dropdown a.navbar-item.is-active {
        background-color: #0a0a0a;
        color: white;
    }
}
.navbar.is-light {
    background-color: whitesmoke;
    color: #323232;
}
.navbar.is-light .navbar-brand > .navbar-item,
.navbar.is-light .navbar-brand .navbar-link {
    color: #323232;
}
.navbar.is-light .navbar-brand > a.navbar-item:hover,
.navbar.is-light .navbar-brand > a.navbar-item.is-active,
.navbar.is-light .navbar-brand .navbar-link:hover,
.navbar.is-light .navbar-brand .navbar-link.is-active {
    background-color: #e8e8e8;
    color: #323232;
}
.navbar.is-light .navbar-brand .navbar-link::after {
    border-color: #323232;
}
@media screen and (min-width: 1280px) {
    .navbar.is-light .navbar-start > .navbar-item,
    .navbar.is-light .navbar-start .navbar-link,
    .navbar.is-light .navbar-end > .navbar-item,
    .navbar.is-light .navbar-end .navbar-link {
        color: #323232;
    }
    .navbar.is-light .navbar-start > a.navbar-item:hover,
    .navbar.is-light .navbar-start > a.navbar-item.is-active,
    .navbar.is-light .navbar-start .navbar-link:hover,
    .navbar.is-light .navbar-start .navbar-link.is-active,
    .navbar.is-light .navbar-end > a.navbar-item:hover,
    .navbar.is-light .navbar-end > a.navbar-item.is-active,
    .navbar.is-light .navbar-end .navbar-link:hover,
    .navbar.is-light .navbar-end .navbar-link.is-active {
        background-color: #e8e8e8;
        color: #323232;
    }
    .navbar.is-light .navbar-start .navbar-link::after,
    .navbar.is-light .navbar-end .navbar-link::after {
        border-color: #323232;
    }
    .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,
    .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #e8e8e8;
        color: #323232;
    }
    .navbar.is-light .navbar-dropdown a.navbar-item.is-active {
        background-color: whitesmoke;
        color: #323232;
    }
}
.navbar.is-dark {
    background-color: #323232;
    color: whitesmoke;
}
.navbar.is-dark .navbar-brand > .navbar-item,
.navbar.is-dark .navbar-brand .navbar-link {
    color: whitesmoke;
}
.navbar.is-dark .navbar-brand > a.navbar-item:hover,
.navbar.is-dark .navbar-brand > a.navbar-item.is-active,
.navbar.is-dark .navbar-brand .navbar-link:hover,
.navbar.is-dark .navbar-brand .navbar-link.is-active {
    background-color: #252525;
    color: whitesmoke;
}
.navbar.is-dark .navbar-brand .navbar-link::after {
    border-color: whitesmoke;
}
@media screen and (min-width: 1280px) {
    .navbar.is-dark .navbar-start > .navbar-item,
    .navbar.is-dark .navbar-start .navbar-link,
    .navbar.is-dark .navbar-end > .navbar-item,
    .navbar.is-dark .navbar-end .navbar-link {
        color: whitesmoke;
    }
    .navbar.is-dark .navbar-start > a.navbar-item:hover,
    .navbar.is-dark .navbar-start > a.navbar-item.is-active,
    .navbar.is-dark .navbar-start .navbar-link:hover,
    .navbar.is-dark .navbar-start .navbar-link.is-active,
    .navbar.is-dark .navbar-end > a.navbar-item:hover,
    .navbar.is-dark .navbar-end > a.navbar-item.is-active,
    .navbar.is-dark .navbar-end .navbar-link:hover,
    .navbar.is-dark .navbar-end .navbar-link.is-active {
        background-color: #252525;
        color: whitesmoke;
    }
    .navbar.is-dark .navbar-start .navbar-link::after,
    .navbar.is-dark .navbar-end .navbar-link::after {
        border-color: whitesmoke;
    }
    .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,
    .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #252525;
        color: whitesmoke;
    }
    .navbar.is-dark .navbar-dropdown a.navbar-item.is-active {
        background-color: #323232;
        color: whitesmoke;
    }
}
.navbar.is-primary {
    background-color: #0487bf;
    color: #fff;
}
.navbar.is-primary .navbar-brand > .navbar-item,
.navbar.is-primary .navbar-brand .navbar-link {
    color: #fff;
}
.navbar.is-primary .navbar-brand > a.navbar-item:hover,
.navbar.is-primary .navbar-brand > a.navbar-item.is-active,
.navbar.is-primary .navbar-brand .navbar-link:hover,
.navbar.is-primary .navbar-brand .navbar-link.is-active {
    background-color: #0375a6;
    color: #fff;
}
.navbar.is-primary .navbar-brand .navbar-link::after {
    border-color: #fff;
}
@media screen and (min-width: 1280px) {
    .navbar.is-primary .navbar-start > .navbar-item,
    .navbar.is-primary .navbar-start .navbar-link,
    .navbar.is-primary .navbar-end > .navbar-item,
    .navbar.is-primary .navbar-end .navbar-link {
        color: #fff;
    }
    .navbar.is-primary .navbar-start > a.navbar-item:hover,
    .navbar.is-primary .navbar-start > a.navbar-item.is-active,
    .navbar.is-primary .navbar-start .navbar-link:hover,
    .navbar.is-primary .navbar-start .navbar-link.is-active,
    .navbar.is-primary .navbar-end > a.navbar-item:hover,
    .navbar.is-primary .navbar-end > a.navbar-item.is-active,
    .navbar.is-primary .navbar-end .navbar-link:hover,
    .navbar.is-primary .navbar-end .navbar-link.is-active {
        background-color: #0375a6;
        color: #fff;
    }
    .navbar.is-primary .navbar-start .navbar-link::after,
    .navbar.is-primary .navbar-end .navbar-link::after {
        border-color: #fff;
    }
    .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,
    .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #0375a6;
        color: #fff;
    }
    .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
        background-color: #0487bf;
        color: #fff;
    }
}
.navbar.is-secondary {
    background-color: #6b4370;
    color: #fff;
}
.navbar.is-secondary .navbar-brand > .navbar-item,
.navbar.is-secondary .navbar-brand .navbar-link {
    color: #fff;
}
.navbar.is-secondary .navbar-brand > a.navbar-item:hover,
.navbar.is-secondary .navbar-brand > a.navbar-item.is-active,
.navbar.is-secondary .navbar-brand .navbar-link:hover,
.navbar.is-secondary .navbar-brand .navbar-link.is-active {
    background-color: #5c3960;
    color: #fff;
}
.navbar.is-secondary .navbar-brand .navbar-link::after {
    border-color: #fff;
}
@media screen and (min-width: 1280px) {
    .navbar.is-secondary .navbar-start > .navbar-item,
    .navbar.is-secondary .navbar-start .navbar-link,
    .navbar.is-secondary .navbar-end > .navbar-item,
    .navbar.is-secondary .navbar-end .navbar-link {
        color: #fff;
    }
    .navbar.is-secondary .navbar-start > a.navbar-item:hover,
    .navbar.is-secondary .navbar-start > a.navbar-item.is-active,
    .navbar.is-secondary .navbar-start .navbar-link:hover,
    .navbar.is-secondary .navbar-start .navbar-link.is-active,
    .navbar.is-secondary .navbar-end > a.navbar-item:hover,
    .navbar.is-secondary .navbar-end > a.navbar-item.is-active,
    .navbar.is-secondary .navbar-end .navbar-link:hover,
    .navbar.is-secondary .navbar-end .navbar-link.is-active {
        background-color: #5c3960;
        color: #fff;
    }
    .navbar.is-secondary .navbar-start .navbar-link::after,
    .navbar.is-secondary .navbar-end .navbar-link::after {
        border-color: #fff;
    }
    .navbar.is-secondary .navbar-item.has-dropdown:hover .navbar-link,
    .navbar.is-secondary .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #5c3960;
        color: #fff;
    }
    .navbar.is-secondary .navbar-dropdown a.navbar-item.is-active {
        background-color: #6b4370;
        color: #fff;
    }
}
.navbar.is-link {
    background-color: #4372d6;
    color: #fff;
}
.navbar.is-link .navbar-brand > .navbar-item,
.navbar.is-link .navbar-brand .navbar-link {
    color: #fff;
}
.navbar.is-link .navbar-brand > a.navbar-item:hover,
.navbar.is-link .navbar-brand > a.navbar-item.is-active,
.navbar.is-link .navbar-brand .navbar-link:hover,
.navbar.is-link .navbar-brand .navbar-link.is-active {
    background-color: #2e62d1;
    color: #fff;
}
.navbar.is-link .navbar-brand .navbar-link::after {
    border-color: #fff;
}
@media screen and (min-width: 1280px) {
    .navbar.is-link .navbar-start > .navbar-item,
    .navbar.is-link .navbar-start .navbar-link,
    .navbar.is-link .navbar-end > .navbar-item,
    .navbar.is-link .navbar-end .navbar-link {
        color: #fff;
    }
    .navbar.is-link .navbar-start > a.navbar-item:hover,
    .navbar.is-link .navbar-start > a.navbar-item.is-active,
    .navbar.is-link .navbar-start .navbar-link:hover,
    .navbar.is-link .navbar-start .navbar-link.is-active,
    .navbar.is-link .navbar-end > a.navbar-item:hover,
    .navbar.is-link .navbar-end > a.navbar-item.is-active,
    .navbar.is-link .navbar-end .navbar-link:hover,
    .navbar.is-link .navbar-end .navbar-link.is-active {
        background-color: #2e62d1;
        color: #fff;
    }
    .navbar.is-link .navbar-start .navbar-link::after,
    .navbar.is-link .navbar-end .navbar-link::after {
        border-color: #fff;
    }
    .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,
    .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #2e62d1;
        color: #fff;
    }
    .navbar.is-link .navbar-dropdown a.navbar-item.is-active {
        background-color: #4372d6;
        color: #fff;
    }
}
.navbar.is-info {
    background-color: #209cee;
    color: #fff;
}
.navbar.is-info .navbar-brand > .navbar-item,
.navbar.is-info .navbar-brand .navbar-link {
    color: #fff;
}
.navbar.is-info .navbar-brand > a.navbar-item:hover,
.navbar.is-info .navbar-brand > a.navbar-item.is-active,
.navbar.is-info .navbar-brand .navbar-link:hover,
.navbar.is-info .navbar-brand .navbar-link.is-active {
    background-color: #118fe4;
    color: #fff;
}
.navbar.is-info .navbar-brand .navbar-link::after {
    border-color: #fff;
}
@media screen and (min-width: 1280px) {
    .navbar.is-info .navbar-start > .navbar-item,
    .navbar.is-info .navbar-start .navbar-link,
    .navbar.is-info .navbar-end > .navbar-item,
    .navbar.is-info .navbar-end .navbar-link {
        color: #fff;
    }
    .navbar.is-info .navbar-start > a.navbar-item:hover,
    .navbar.is-info .navbar-start > a.navbar-item.is-active,
    .navbar.is-info .navbar-start .navbar-link:hover,
    .navbar.is-info .navbar-start .navbar-link.is-active,
    .navbar.is-info .navbar-end > a.navbar-item:hover,
    .navbar.is-info .navbar-end > a.navbar-item.is-active,
    .navbar.is-info .navbar-end .navbar-link:hover,
    .navbar.is-info .navbar-end .navbar-link.is-active {
        background-color: #118fe4;
        color: #fff;
    }
    .navbar.is-info .navbar-start .navbar-link::after,
    .navbar.is-info .navbar-end .navbar-link::after {
        border-color: #fff;
    }
    .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,
    .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #118fe4;
        color: #fff;
    }
    .navbar.is-info .navbar-dropdown a.navbar-item.is-active {
        background-color: #209cee;
        color: #fff;
    }
}
.navbar.is-success {
    background-color: #23d160;
    color: #fff;
}
.navbar.is-success .navbar-brand > .navbar-item,
.navbar.is-success .navbar-brand .navbar-link {
    color: #fff;
}
.navbar.is-success .navbar-brand > a.navbar-item:hover,
.navbar.is-success .navbar-brand > a.navbar-item.is-active,
.navbar.is-success .navbar-brand .navbar-link:hover,
.navbar.is-success .navbar-brand .navbar-link.is-active {
    background-color: #20bc56;
    color: #fff;
}
.navbar.is-success .navbar-brand .navbar-link::after {
    border-color: #fff;
}
@media screen and (min-width: 1280px) {
    .navbar.is-success .navbar-start > .navbar-item,
    .navbar.is-success .navbar-start .navbar-link,
    .navbar.is-success .navbar-end > .navbar-item,
    .navbar.is-success .navbar-end .navbar-link {
        color: #fff;
    }
    .navbar.is-success .navbar-start > a.navbar-item:hover,
    .navbar.is-success .navbar-start > a.navbar-item.is-active,
    .navbar.is-success .navbar-start .navbar-link:hover,
    .navbar.is-success .navbar-start .navbar-link.is-active,
    .navbar.is-success .navbar-end > a.navbar-item:hover,
    .navbar.is-success .navbar-end > a.navbar-item.is-active,
    .navbar.is-success .navbar-end .navbar-link:hover,
    .navbar.is-success .navbar-end .navbar-link.is-active {
        background-color: #20bc56;
        color: #fff;
    }
    .navbar.is-success .navbar-start .navbar-link::after,
    .navbar.is-success .navbar-end .navbar-link::after {
        border-color: #fff;
    }
    .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,
    .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #20bc56;
        color: #fff;
    }
    .navbar.is-success .navbar-dropdown a.navbar-item.is-active {
        background-color: #23d160;
        color: #fff;
    }
}
.navbar.is-warning {
    background-color: #ffdd57;
    color: rgba(0, 0, 0, 0.7);
}
.navbar.is-warning .navbar-brand > .navbar-item,
.navbar.is-warning .navbar-brand .navbar-link {
    color: rgba(0, 0, 0, 0.7);
}
.navbar.is-warning .navbar-brand > a.navbar-item:hover,
.navbar.is-warning .navbar-brand > a.navbar-item.is-active,
.navbar.is-warning .navbar-brand .navbar-link:hover,
.navbar.is-warning .navbar-brand .navbar-link.is-active {
    background-color: #ffd83d;
    color: rgba(0, 0, 0, 0.7);
}
.navbar.is-warning .navbar-brand .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 1280px) {
    .navbar.is-warning .navbar-start > .navbar-item,
    .navbar.is-warning .navbar-start .navbar-link,
    .navbar.is-warning .navbar-end > .navbar-item,
    .navbar.is-warning .navbar-end .navbar-link {
        color: rgba(0, 0, 0, 0.7);
    }
    .navbar.is-warning .navbar-start > a.navbar-item:hover,
    .navbar.is-warning .navbar-start > a.navbar-item.is-active,
    .navbar.is-warning .navbar-start .navbar-link:hover,
    .navbar.is-warning .navbar-start .navbar-link.is-active,
    .navbar.is-warning .navbar-end > a.navbar-item:hover,
    .navbar.is-warning .navbar-end > a.navbar-item.is-active,
    .navbar.is-warning .navbar-end .navbar-link:hover,
    .navbar.is-warning .navbar-end .navbar-link.is-active {
        background-color: #ffd83d;
        color: rgba(0, 0, 0, 0.7);
    }
    .navbar.is-warning .navbar-start .navbar-link::after,
    .navbar.is-warning .navbar-end .navbar-link::after {
        border-color: rgba(0, 0, 0, 0.7);
    }
    .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,
    .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #ffd83d;
        color: rgba(0, 0, 0, 0.7);
    }
    .navbar.is-warning .navbar-dropdown a.navbar-item.is-active {
        background-color: #ffdd57;
        color: rgba(0, 0, 0, 0.7);
    }
}
.navbar.is-danger {
    background-color: #ff3860;
    color: #fff;
}
.navbar.is-danger .navbar-brand > .navbar-item,
.navbar.is-danger .navbar-brand .navbar-link {
    color: #fff;
}
.navbar.is-danger .navbar-brand > a.navbar-item:hover,
.navbar.is-danger .navbar-brand > a.navbar-item.is-active,
.navbar.is-danger .navbar-brand .navbar-link:hover,
.navbar.is-danger .navbar-brand .navbar-link.is-active {
    background-color: #ff1f4b;
    color: #fff;
}
.navbar.is-danger .navbar-brand .navbar-link::after {
    border-color: #fff;
}
@media screen and (min-width: 1280px) {
    .navbar.is-danger .navbar-start > .navbar-item,
    .navbar.is-danger .navbar-start .navbar-link,
    .navbar.is-danger .navbar-end > .navbar-item,
    .navbar.is-danger .navbar-end .navbar-link {
        color: #fff;
    }
    .navbar.is-danger .navbar-start > a.navbar-item:hover,
    .navbar.is-danger .navbar-start > a.navbar-item.is-active,
    .navbar.is-danger .navbar-start .navbar-link:hover,
    .navbar.is-danger .navbar-start .navbar-link.is-active,
    .navbar.is-danger .navbar-end > a.navbar-item:hover,
    .navbar.is-danger .navbar-end > a.navbar-item.is-active,
    .navbar.is-danger .navbar-end .navbar-link:hover,
    .navbar.is-danger .navbar-end .navbar-link.is-active {
        background-color: #ff1f4b;
        color: #fff;
    }
    .navbar.is-danger .navbar-start .navbar-link::after,
    .navbar.is-danger .navbar-end .navbar-link::after {
        border-color: #fff;
    }
    .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,
    .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: #ff1f4b;
        color: #fff;
    }
    .navbar.is-danger .navbar-dropdown a.navbar-item.is-active {
        background-color: #ff3860;
        color: #fff;
    }
}
.navbar > .bp-container {
    align-items: stretch;
    display: flex;
    min-height: 6.25rem;
    width: 100%;
}
.navbar.has-shadow {
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1);
}
.navbar.is-fixed-bottom,
.navbar.is-fixed-top {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
}
.navbar.is-fixed-bottom {
    bottom: 0;
}
.navbar.is-fixed-bottom.has-shadow {
    box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
}
.navbar.is-fixed-top {
    top: 0;
}

html.has-navbar-fixed-top {
    padding-top: 6.25rem;
}

html.has-navbar-fixed-bottom {
    padding-bottom: 6.25rem;
}

.navbar-brand,
.navbar-tabs {
    align-items: stretch;
    display: flex;
    flex-shrink: 0;
    min-height: 6.25rem;
}

.navbar-tabs {
    -webkit-overflow-scrolling: touch;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
}

.navbar-burger {
    cursor: pointer;
    display: block;
    height: 6.25rem;
    position: relative;
    width: 6.25rem;
    margin-left: auto;
}
.navbar-burger span {
    background-color: currentColor;
    display: block;
    height: 1px;
    left: calc(50% - 8px);
    position: absolute;
    transform-origin: center;
    transition-duration: 86ms;
    transition-property: background-color, opacity, transform;
    transition-timing-function: ease-out;
    width: 16px;
}
.navbar-burger span:nth-child(1) {
    top: calc(50% - 6px);
}
.navbar-burger span:nth-child(2) {
    top: calc(50% - 1px);
}
.navbar-burger span:nth-child(3) {
    top: calc(50% + 4px);
}
.navbar-burger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.navbar-burger.is-active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}
.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
}
.navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.navbar-menu {
    display: none;
}

.navbar-item,
.navbar-link {
    color: #484848;
    display: block;
    line-height: 1.5;
    padding: 0;
    position: relative;
}

a.navbar-item:hover,
a.navbar-item.is-active,
a.navbar-link:hover,
a.navbar-link.is-active {
    background-color: white;
    color: #6b4370;
}

.navbar-item {
    flex-grow: 0;
    flex-shrink: 0;
}
.navbar-item img {
    max-height: 1.75rem;
}
.navbar-item.has-dropdown {
    padding: 0;
}
.navbar-item.is-expanded {
    flex-grow: 1;
    flex-shrink: 1;
}
.navbar-item.is-tab {
    border-bottom: 1px solid transparent;
    min-height: 6.25rem;
    padding-bottom: calc(0.5rem - 1px);
}
.navbar-item.is-tab:hover {
    background-color: transparent;
    border-bottom-color: #6b4370;
}
.navbar-item.is-tab.is-active {
    background-color: transparent;
    border-bottom-color: #6b4370;
    border-bottom-style: solid;
    border-bottom-width: 3px;
    color: #6b4370;
    padding-bottom: calc(0.5rem - 3px);
}

.navbar-content {
    flex-grow: 1;
    flex-shrink: 1;
}

.navbar-link {
    padding-right: 2.5em;
}

.navbar-dropdown {
    font-size: 0.875rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}
.navbar-dropdown .navbar-item {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.navbar-divider {
    background-color: #6b4370;
    border: none;
    display: none;
    height: 1px;
    margin: 0.5rem 0;
}

@media screen and (max-width: 1023px) {
    .navbar > .bp-container {
        display: block;
    }

    .navbar-brand .navbar-item,
    .navbar-tabs .navbar-item {
        align-items: center;
        display: flex;
    }

    .navbar-menu {
        background-color: white;
        box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
        padding: 0;
    }
    .navbar-menu.is-active {
        display: block;
    }

    .navbar.is-fixed-bottom-touch,
    .navbar.is-fixed-top-touch {
        left: 0;
        position: fixed;
        right: 0;
        z-index: 30;
    }
    .navbar.is-fixed-bottom-touch {
        bottom: 0;
    }
    .navbar.is-fixed-bottom-touch.has-shadow {
        box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
    }
    .navbar.is-fixed-top-touch {
        top: 0;
    }
    .navbar.is-fixed-top .navbar-menu,
    .navbar.is-fixed-top-touch .navbar-menu {
        -webkit-overflow-scrolling: touch;
        max-height: calc(100vh - 6.25rem);
        overflow: auto;
    }

    html.has-navbar-fixed-top-touch {
        padding-top: 6.25rem;
    }

    html.has-navbar-fixed-bottom-touch {
        padding-bottom: 6.25rem;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .navbar > .bp-container {
        display: block;
    }

    .navbar-brand .navbar-item,
    .navbar-tabs .navbar-item {
        align-items: center;
        display: flex;
    }

    .navbar-menu {
        background-color: white;
        box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
        padding: 0;
    }
    .navbar-menu.is-active {
        display: block;
    }

    .navbar > .bp-container .navbar-brand,
    .bp-container > .navbar .navbar-brand {
        margin-left: -1rem;
        margin-right: -1rem;
    }
    .navbar > .bp-container .navbar-menu,
    .bp-container > .navbar .navbar-menu {
        margin-right: -1rem;
    }

    .navbar.is-fixed-bottom-touch,
    .navbar.is-fixed-top-touch {
        left: 0;
        position: fixed;
        right: 0;
        z-index: 30;
    }
    .navbar.is-fixed-bottom-touch {
        bottom: 0;
    }
    .navbar.is-fixed-bottom-touch.has-shadow {
        box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
    }
    .navbar.is-fixed-top-touch {
        top: 0;
    }
    .navbar.is-fixed-top .navbar-menu,
    .navbar.is-fixed-top-touch .navbar-menu {
        -webkit-overflow-scrolling: touch;
        max-height: calc(100vh - 6.25rem);
        overflow: auto;
    }

    html.has-navbar-fixed-top-touch {
        padding-top: 6.25rem;
    }

    html.has-navbar-fixed-bottom-touch {
        padding-bottom: 6.25rem;
    }
}
@media screen and (min-width: 1280px) {
    .navbar,
    .navbar-menu,
    .navbar-start,
    .navbar-end {
        align-items: stretch;
        display: flex;
    }

    .navbar {
        min-height: 6.25rem;
    }
    .navbar.is-transparent a.navbar-item:hover,
    .navbar.is-transparent a.navbar-item.is-active,
    .navbar.is-transparent a.navbar-link:hover,
    .navbar.is-transparent a.navbar-link.is-active {
        background-color: transparent !important;
    }
    .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,
    .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link {
        background-color: transparent !important;
    }
    .navbar.is-transparent .navbar-dropdown a.navbar-item:hover {
        background-color: whitesmoke;
        color: #0a0a0a;
    }
    .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active {
        background-color: whitesmoke;
        color: #6b4370;
    }

    .navbar-burger {
        display: none;
    }

    .navbar-item,
    .navbar-link {
        align-items: center;
        display: flex;
    }

    .navbar-item.has-dropdown {
        align-items: stretch;
    }
    .navbar-item.has-dropdown-up .navbar-link::after {
        transform: rotate(135deg) translate(0.25em, -0.25em);
    }
    .navbar-item.has-dropdown-up .navbar-dropdown {
        border-bottom: 1px solid #6b4370;
        border-radius: 5px 5px 0 0;
        border-top: none;
        bottom: 100%;
        box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1);
        top: auto;
    }
    .navbar-item.is-active .navbar-dropdown,
    .navbar-item.is-hoverable:hover .navbar-dropdown {
        display: block;
    }
    .navbar-item.is-active .navbar-dropdown.is-boxed,
    .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .navbar-link::after {
        border: 1px solid #4372d6;
        border-right: 0;
        border-top: 0;
        content: " ";
        display: block;
        height: 0.5em;
        pointer-events: none;
        position: absolute;
        transform: rotate(-45deg);
        transform-origin: center;
        width: 0.5em;
        margin-top: -0.375em;
        right: 1.125em;
        top: 50%;
    }

    .navbar-menu {
        flex-grow: 1;
        flex-shrink: 0;
    }

    .navbar-start {
        justify-content: flex-start;
        margin-right: auto;
    }

    .navbar-end {
        justify-content: flex-end;
        margin-left: auto;
    }

    .navbar-dropdown {
        background-color: white;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        border-top: 1px solid #6b4370;
        box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
        display: none;
        font-size: 0.875rem;
        left: 0;
        min-width: 100%;
        position: absolute;
        top: 100%;
        z-index: 20;
    }
    .navbar-dropdown .navbar-item {
        padding: 0.375rem 1rem;
        white-space: nowrap;
    }
    .navbar-dropdown a.navbar-item {
        padding-right: 3rem;
    }
    .navbar-dropdown a.navbar-item:hover {
        background-color: whitesmoke;
        color: #0a0a0a;
    }
    .navbar-dropdown a.navbar-item.is-active {
        background-color: whitesmoke;
        color: #6b4370;
    }
    .navbar-dropdown.is-boxed {
        border-radius: 5px;
        border-top: none;
        box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
        display: block;
        opacity: 0;
        pointer-events: none;
        top: calc(100% + (-4px));
        transform: translateY(-5px);
        transition-duration: 86ms;
        transition-property: opacity, transform;
    }
    .navbar-dropdown.is-right {
        left: auto;
        right: 0;
    }

    .navbar-divider {
        display: block;
    }

    .navbar > .bp-container .navbar-brand,
    .bp-container > .navbar .navbar-brand {
        margin-left: -1rem;
    }
    .navbar > .bp-container .navbar-menu,
    .bp-container > .navbar .navbar-menu {
        margin-right: -1rem;
    }

    .navbar.is-fixed-bottom-desktop,
    .navbar.is-fixed-top-desktop {
        left: 0;
        position: fixed;
        right: 0;
        z-index: 30;
    }
    .navbar.is-fixed-bottom-desktop {
        bottom: 0;
    }
    .navbar.is-fixed-bottom-desktop.has-shadow {
        box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
    }
    .navbar.is-fixed-top-desktop {
        top: 0;
    }

    html.has-navbar-fixed-top-desktop {
        padding-top: 6.25rem;
    }

    html.has-navbar-fixed-bottom-desktop {
        padding-bottom: 6.25rem;
    }

    a.navbar-item.is-active,
    a.navbar-link.is-active {
        color: #0a0a0a;
    }
    a.navbar-item.is-active:not(:hover),
    a.navbar-link.is-active:not(:hover) {
        background-color: transparent;
    }

    .navbar-item.has-dropdown:hover .navbar-link,
    .navbar-item.has-dropdown.is-active .navbar-link {
        background-color: white;
    }
}
.bp-tabs {
    -webkit-overflow-scrolling: touch;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: stretch;
    display: flex;
    font-size: 1rem;
    justify-content: space-between;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
}
.bp-tabs:not(:last-child) {
    margin-bottom: 1.5rem;
}
.bp-tabs a {
    align-items: center;
    border-bottom-color: #6b4370;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    color: #484848;
    display: flex;
    justify-content: center;
    margin-bottom: -1px;
    padding: 0.5em 1em;
    vertical-align: top;
}
.bp-tabs a:hover {
    border-bottom-color: #323232;
    color: #323232;
}
.bp-tabs li {
    display: block;
}
.bp-tabs li.is-active a {
    border-bottom-color: #4372d6;
    color: #4372d6;
}
.bp-tabs ul {
    align-items: center;
    border-bottom-color: #6b4370;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: flex-start;
}
.bp-tabs ul.is-left {
    padding-right: 0.75em;
}
.bp-tabs ul.is-center {
    flex: none;
    justify-content: center;
    padding-left: 0.75em;
    padding-right: 0.75em;
}
.bp-tabs ul.is-right {
    justify-content: flex-end;
    padding-left: 0.75em;
}
.bp-tabs .icon:first-child {
    margin-right: 0.5em;
}
.bp-tabs .icon:last-child {
    margin-left: 0.5em;
}
.bp-tabs.is-centered ul {
    justify-content: center;
}
.bp-tabs.is-right ul {
    justify-content: flex-end;
}
.bp-tabs.is-boxed a {
    border: 1px solid transparent;
    border-radius: 0px 0px 0 0;
}
.bp-tabs.is-boxed a:hover {
    background-color: whitesmoke;
    border-bottom-color: #6b4370;
}
.bp-tabs.is-boxed li.is-active a {
    background-color: white;
    border-color: #6b4370;
    border-bottom-color: transparent !important;
}
.bp-tabs.is-fullwidth li {
    flex-grow: 1;
    flex-shrink: 0;
}
.bp-tabs.is-toggle a {
    border-color: #6b4370;
    border-style: solid;
    border-width: 1px;
    margin-bottom: 0;
    position: relative;
}
.bp-tabs.is-toggle a:hover {
    background-color: whitesmoke;
    border-color: #6b4370;
    z-index: 2;
}
.bp-tabs.is-toggle li + li {
    margin-left: -1px;
}
.bp-tabs.is-toggle li:first-child a {
    border-radius: 0px 0 0 0px;
}
.bp-tabs.is-toggle li:last-child a {
    border-radius: 0 0px 0px 0;
}
.bp-tabs.is-toggle li.is-active a {
    background-color: #4372d6;
    border-color: #4372d6;
    color: #fff;
    z-index: 1;
}
.bp-tabs.is-toggle ul {
    border-bottom: none;
}
.bp-tabs.is-toggle.is-toggle-rounded li:first-child a {
    border-bottom-left-radius: 290486px;
    border-top-left-radius: 290486px;
    padding-left: 1.25em;
}
.bp-tabs.is-toggle.is-toggle-rounded li:last-child a {
    border-bottom-right-radius: 290486px;
    border-top-right-radius: 290486px;
    padding-right: 1.25em;
}
.bp-tabs.is-small {
    font-size: 0.75rem;
}
.bp-tabs.is-medium {
    font-size: 1.25rem;
}
.bp-tabs.is-large {
    font-size: 1.5rem;
}

.media-card-plain {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 336px;
}
.media-card-plain small {
    display: block;
}
.media-card-plain .description {
    display: flex;
    justify-content: space-between;
}

.person-info-card p {
    line-height: 1.25rem;
}
.person-info-card img {
    height: auto;
    width: 150px;
    border: solid 1px #f0f4f6;
}
.person-info-card .image-col {
    width: 150px;
    padding: 0;
}
.content .person-info-card small {
    line-height: 0.25rem;
}

#senior-leadership,
#organisational-structure {
    display: none;
}

.project-card {
    position: relative;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1.5rem 2rem;
    margin-top: -7.5rem;
    background-color: white;
    height: 10rem;
    color: #767676;
    transition: margin-top 0.75s, height 0.75s;
}
.project-card h5 {
    color: #0a0a0a;
}

.project-image {
    object-fit: cover;
    height: 230px;
    width: 100%;
}

.col {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0.75rem;
}
.col.has-carousel {
    min-width: 0;
}
.row.is-mobile > .col.is-narrow {
    flex: none;
}
.row.is-mobile > .col.is-full {
    flex: none;
    width: 100%;
}
.row.is-mobile > .col.is-three-quarters {
    flex: none;
    width: 75%;
}
.row.is-mobile > .col.is-two-thirds {
    flex: none;
    width: 66.6666%;
}
.row.is-mobile > .col.is-half {
    flex: none;
    width: 50%;
}
.row.is-mobile > .col.is-one-third {
    flex: none;
    width: 33.3333%;
}
.row.is-mobile > .col.is-one-quarter {
    flex: none;
    width: 25%;
}
.row.is-mobile > .col.is-one-fifth {
    flex: none;
    width: 20%;
}
.row.is-mobile > .col.is-two-fifths {
    flex: none;
    width: 40%;
}
.row.is-mobile > .col.is-three-fifths {
    flex: none;
    width: 60%;
}
.row.is-mobile > .col.is-four-fifths {
    flex: none;
    width: 80%;
}
.row.is-mobile > .col.is-offset-three-quarters {
    margin-left: 75%;
}
.row.is-mobile > .col.is-offset-two-thirds {
    margin-left: 66.6666%;
}
.row.is-mobile > .col.is-offset-half {
    margin-left: 50%;
}
.row.is-mobile > .col.is-offset-one-third {
    margin-left: 33.3333%;
}
.row.is-mobile > .col.is-offset-one-quarter {
    margin-left: 25%;
}
.row.is-mobile > .col.is-offset-one-fifth {
    margin-left: 20%;
}
.row.is-mobile > .col.is-offset-two-fifths {
    margin-left: 40%;
}
.row.is-mobile > .col.is-offset-three-fifths {
    margin-left: 60%;
}
.row.is-mobile > .col.is-offset-four-fifths {
    margin-left: 80%;
}
.row.is-mobile > .col.is-1 {
    flex: none;
    width: 8.3333333333%;
}
.row.is-mobile > .col.is-offset-1 {
    margin-left: 8.3333333333%;
}
.row.is-mobile > .col.is-2 {
    flex: none;
    width: 16.6666666667%;
}
.row.is-mobile > .col.is-offset-2 {
    margin-left: 16.6666666667%;
}
.row.is-mobile > .col.is-3 {
    flex: none;
    width: 25%;
}
.row.is-mobile > .col.is-offset-3 {
    margin-left: 25%;
}
.row.is-mobile > .col.is-4 {
    flex: none;
    width: 33.3333333333%;
}
.row.is-mobile > .col.is-offset-4 {
    margin-left: 33.3333333333%;
}
.row.is-mobile > .col.is-5 {
    flex: none;
    width: 41.6666666667%;
}
.row.is-mobile > .col.is-offset-5 {
    margin-left: 41.6666666667%;
}
.row.is-mobile > .col.is-6 {
    flex: none;
    width: 50%;
}
.row.is-mobile > .col.is-offset-6 {
    margin-left: 50%;
}
.row.is-mobile > .col.is-7 {
    flex: none;
    width: 58.3333333333%;
}
.row.is-mobile > .col.is-offset-7 {
    margin-left: 58.3333333333%;
}
.row.is-mobile > .col.is-8 {
    flex: none;
    width: 66.6666666667%;
}
.row.is-mobile > .col.is-offset-8 {
    margin-left: 66.6666666667%;
}
.row.is-mobile > .col.is-9 {
    flex: none;
    width: 75%;
}
.row.is-mobile > .col.is-offset-9 {
    margin-left: 75%;
}
.row.is-mobile > .col.is-10 {
    flex: none;
    width: 83.3333333333%;
}
.row.is-mobile > .col.is-offset-10 {
    margin-left: 83.3333333333%;
}
.row.is-mobile > .col.is-11 {
    flex: none;
    width: 91.6666666667%;
}
.row.is-mobile > .col.is-offset-11 {
    margin-left: 91.6666666667%;
}
.row.is-mobile > .col.is-12 {
    flex: none;
    width: 100%;
}
.row.is-mobile > .col.is-offset-12 {
    margin-left: 100%;
}
@media screen and (max-width: 768px) {
    .col.is-narrow-mobile {
        flex: none;
    }
    .col.is-full-mobile {
        flex: none;
        width: 100%;
    }
    .col.is-three-quarters-mobile {
        flex: none;
        width: 75%;
    }
    .col.is-two-thirds-mobile {
        flex: none;
        width: 66.6666%;
    }
    .col.is-half-mobile {
        flex: none;
        width: 50%;
    }
    .col.is-one-third-mobile {
        flex: none;
        width: 33.3333%;
    }
    .col.is-one-quarter-mobile {
        flex: none;
        width: 25%;
    }
    .col.is-one-fifth-mobile {
        flex: none;
        width: 20%;
    }
    .col.is-two-fifths-mobile {
        flex: none;
        width: 40%;
    }
    .col.is-three-fifths-mobile {
        flex: none;
        width: 60%;
    }
    .col.is-four-fifths-mobile {
        flex: none;
        width: 80%;
    }
    .col.is-offset-three-quarters-mobile {
        margin-left: 75%;
    }
    .col.is-offset-two-thirds-mobile {
        margin-left: 66.6666%;
    }
    .col.is-offset-half-mobile {
        margin-left: 50%;
    }
    .col.is-offset-one-third-mobile {
        margin-left: 33.3333%;
    }
    .col.is-offset-one-quarter-mobile {
        margin-left: 25%;
    }
    .col.is-offset-one-fifth-mobile {
        margin-left: 20%;
    }
    .col.is-offset-two-fifths-mobile {
        margin-left: 40%;
    }
    .col.is-offset-three-fifths-mobile {
        margin-left: 60%;
    }
    .col.is-offset-four-fifths-mobile {
        margin-left: 80%;
    }
    .col.is-1-mobile {
        flex: none;
        width: 8.3333333333%;
    }
    .col.is-offset-1-mobile {
        margin-left: 8.3333333333%;
    }
    .col.is-2-mobile {
        flex: none;
        width: 16.6666666667%;
    }
    .col.is-offset-2-mobile {
        margin-left: 16.6666666667%;
    }
    .col.is-3-mobile {
        flex: none;
        width: 25%;
    }
    .col.is-offset-3-mobile {
        margin-left: 25%;
    }
    .col.is-4-mobile {
        flex: none;
        width: 33.3333333333%;
    }
    .col.is-offset-4-mobile {
        margin-left: 33.3333333333%;
    }
    .col.is-5-mobile {
        flex: none;
        width: 41.6666666667%;
    }
    .col.is-offset-5-mobile {
        margin-left: 41.6666666667%;
    }
    .col.is-6-mobile {
        flex: none;
        width: 50%;
    }
    .col.is-offset-6-mobile {
        margin-left: 50%;
    }
    .col.is-7-mobile {
        flex: none;
        width: 58.3333333333%;
    }
    .col.is-offset-7-mobile {
        margin-left: 58.3333333333%;
    }
    .col.is-8-mobile {
        flex: none;
        width: 66.6666666667%;
    }
    .col.is-offset-8-mobile {
        margin-left: 66.6666666667%;
    }
    .col.is-9-mobile {
        flex: none;
        width: 75%;
    }
    .col.is-offset-9-mobile {
        margin-left: 75%;
    }
    .col.is-10-mobile {
        flex: none;
        width: 83.3333333333%;
    }
    .col.is-offset-10-mobile {
        margin-left: 83.3333333333%;
    }
    .col.is-11-mobile {
        flex: none;
        width: 91.6666666667%;
    }
    .col.is-offset-11-mobile {
        margin-left: 91.6666666667%;
    }
    .col.is-12-mobile {
        flex: none;
        width: 100%;
    }
    .col.is-offset-12-mobile {
        margin-left: 100%;
    }
}
@media screen and (min-width: 769px), print {
    .col.is-narrow,
    .col.is-narrow-tablet {
        flex: none;
    }
    .col.is-full,
    .col.is-full-tablet {
        flex: none;
        width: 100%;
    }
    .col.is-three-quarters,
    .col.is-three-quarters-tablet {
        flex: none;
        width: 75%;
    }
    .col.is-two-thirds,
    .col.is-two-thirds-tablet {
        flex: none;
        width: 66.6666%;
    }
    .col.is-half,
    .col.is-half-tablet {
        flex: none;
        width: 50%;
    }
    .col.is-one-third,
    .col.is-one-third-tablet {
        flex: none;
        width: 33.3333%;
    }
    .col.is-one-quarter,
    .col.is-one-quarter-tablet {
        flex: none;
        width: 25%;
    }
    .col.is-one-fifth,
    .col.is-one-fifth-tablet {
        flex: none;
        width: 20%;
    }
    .col.is-two-fifths,
    .col.is-two-fifths-tablet {
        flex: none;
        width: 40%;
    }
    .col.is-three-fifths,
    .col.is-three-fifths-tablet {
        flex: none;
        width: 60%;
    }
    .col.is-four-fifths,
    .col.is-four-fifths-tablet {
        flex: none;
        width: 80%;
    }
    .col.is-offset-three-quarters,
    .col.is-offset-three-quarters-tablet {
        margin-left: 75%;
    }
    .col.is-offset-two-thirds,
    .col.is-offset-two-thirds-tablet {
        margin-left: 66.6666%;
    }
    .col.is-offset-half,
    .col.is-offset-half-tablet {
        margin-left: 50%;
    }
    .col.is-offset-one-third,
    .col.is-offset-one-third-tablet {
        margin-left: 33.3333%;
    }
    .col.is-offset-one-quarter,
    .col.is-offset-one-quarter-tablet {
        margin-left: 25%;
    }
    .col.is-offset-one-fifth,
    .col.is-offset-one-fifth-tablet {
        margin-left: 20%;
    }
    .col.is-offset-two-fifths,
    .col.is-offset-two-fifths-tablet {
        margin-left: 40%;
    }
    .col.is-offset-three-fifths,
    .col.is-offset-three-fifths-tablet {
        margin-left: 60%;
    }
    .col.is-offset-four-fifths,
    .col.is-offset-four-fifths-tablet {
        margin-left: 80%;
    }
    .col.is-1,
    .col.is-1-tablet {
        flex: none;
        width: 8.3333333333%;
    }
    .col.is-offset-1,
    .col.is-offset-1-tablet {
        margin-left: 8.3333333333%;
    }
    .col.is-2,
    .col.is-2-tablet {
        flex: none;
        width: 16.6666666667%;
    }
    .col.is-offset-2,
    .col.is-offset-2-tablet {
        margin-left: 16.6666666667%;
    }
    .col.is-3,
    .col.is-3-tablet {
        flex: none;
        width: 25%;
    }
    .col.is-offset-3,
    .col.is-offset-3-tablet {
        margin-left: 25%;
    }
    .col.is-4,
    .col.is-4-tablet {
        flex: none;
        width: 33.3333333333%;
    }
    .col.is-offset-4,
    .col.is-offset-4-tablet {
        margin-left: 33.3333333333%;
    }
    .col.is-5,
    .col.is-5-tablet {
        flex: none;
        width: 41.6666666667%;
    }
    .col.is-offset-5,
    .col.is-offset-5-tablet {
        margin-left: 41.6666666667%;
    }
    .col.is-6,
    .col.is-6-tablet {
        flex: none;
        width: 50%;
    }
    .col.is-offset-6,
    .col.is-offset-6-tablet {
        margin-left: 50%;
    }
    .col.is-7,
    .col.is-7-tablet {
        flex: none;
        width: 58.3333333333%;
    }
    .col.is-offset-7,
    .col.is-offset-7-tablet {
        margin-left: 58.3333333333%;
    }
    .col.is-8,
    .col.is-8-tablet {
        flex: none;
        width: 66.6666666667%;
    }
    .col.is-offset-8,
    .col.is-offset-8-tablet {
        margin-left: 66.6666666667%;
    }
    .col.is-9,
    .col.is-9-tablet {
        flex: none;
        width: 75%;
    }
    .col.is-offset-9,
    .col.is-offset-9-tablet {
        margin-left: 75%;
    }
    .col.is-10,
    .col.is-10-tablet {
        flex: none;
        width: 83.3333333333%;
    }
    .col.is-offset-10,
    .col.is-offset-10-tablet {
        margin-left: 83.3333333333%;
    }
    .col.is-11,
    .col.is-11-tablet {
        flex: none;
        width: 91.6666666667%;
    }
    .col.is-offset-11,
    .col.is-offset-11-tablet {
        margin-left: 91.6666666667%;
    }
    .col.is-12,
    .col.is-12-tablet {
        flex: none;
        width: 100%;
    }
    .col.is-offset-12,
    .col.is-offset-12-tablet {
        margin-left: 100%;
    }
}
@media screen and (max-width: 1023px) {
    .col.is-narrow-touch {
        flex: none;
    }
    .col.is-full-touch {
        flex: none;
        width: 100%;
    }
    .col.is-three-quarters-touch {
        flex: none;
        width: 75%;
    }
    .col.is-two-thirds-touch {
        flex: none;
        width: 66.6666%;
    }
    .col.is-half-touch {
        flex: none;
        width: 50%;
    }
    .col.is-one-third-touch {
        flex: none;
        width: 33.3333%;
    }
    .col.is-one-quarter-touch {
        flex: none;
        width: 25%;
    }
    .col.is-one-fifth-touch {
        flex: none;
        width: 20%;
    }
    .col.is-two-fifths-touch {
        flex: none;
        width: 40%;
    }
    .col.is-three-fifths-touch {
        flex: none;
        width: 60%;
    }
    .col.is-four-fifths-touch {
        flex: none;
        width: 80%;
    }
    .col.is-offset-three-quarters-touch {
        margin-left: 75%;
    }
    .col.is-offset-two-thirds-touch {
        margin-left: 66.6666%;
    }
    .col.is-offset-half-touch {
        margin-left: 50%;
    }
    .col.is-offset-one-third-touch {
        margin-left: 33.3333%;
    }
    .col.is-offset-one-quarter-touch {
        margin-left: 25%;
    }
    .col.is-offset-one-fifth-touch {
        margin-left: 20%;
    }
    .col.is-offset-two-fifths-touch {
        margin-left: 40%;
    }
    .col.is-offset-three-fifths-touch {
        margin-left: 60%;
    }
    .col.is-offset-four-fifths-touch {
        margin-left: 80%;
    }
    .col.is-1-touch {
        flex: none;
        width: 8.3333333333%;
    }
    .col.is-offset-1-touch {
        margin-left: 8.3333333333%;
    }
    .col.is-2-touch {
        flex: none;
        width: 16.6666666667%;
    }
    .col.is-offset-2-touch {
        margin-left: 16.6666666667%;
    }
    .col.is-3-touch {
        flex: none;
        width: 25%;
    }
    .col.is-offset-3-touch {
        margin-left: 25%;
    }
    .col.is-4-touch {
        flex: none;
        width: 33.3333333333%;
    }
    .col.is-offset-4-touch {
        margin-left: 33.3333333333%;
    }
    .col.is-5-touch {
        flex: none;
        width: 41.6666666667%;
    }
    .col.is-offset-5-touch {
        margin-left: 41.6666666667%;
    }
    .col.is-6-touch {
        flex: none;
        width: 50%;
    }
    .col.is-offset-6-touch {
        margin-left: 50%;
    }
    .col.is-7-touch {
        flex: none;
        width: 58.3333333333%;
    }
    .col.is-offset-7-touch {
        margin-left: 58.3333333333%;
    }
    .col.is-8-touch {
        flex: none;
        width: 66.6666666667%;
    }
    .col.is-offset-8-touch {
        margin-left: 66.6666666667%;
    }
    .col.is-9-touch {
        flex: none;
        width: 75%;
    }
    .col.is-offset-9-touch {
        margin-left: 75%;
    }
    .col.is-10-touch {
        flex: none;
        width: 83.3333333333%;
    }
    .col.is-offset-10-touch {
        margin-left: 83.3333333333%;
    }
    .col.is-11-touch {
        flex: none;
        width: 91.6666666667%;
    }
    .col.is-offset-11-touch {
        margin-left: 91.6666666667%;
    }
    .col.is-12-touch {
        flex: none;
        width: 100%;
    }
    .col.is-offset-12-touch {
        margin-left: 100%;
    }
}
@media screen and (min-width: 1024px) {
    .col.is-narrow-desktop {
        flex: none;
    }
    .col.is-full-desktop {
        flex: none;
        width: 100%;
    }
    .col.is-three-quarters-desktop {
        flex: none;
        width: 75%;
    }
    .col.is-two-thirds-desktop {
        flex: none;
        width: 66.6666%;
    }
    .col.is-half-desktop {
        flex: none;
        width: 50%;
    }
    .col.is-one-third-desktop {
        flex: none;
        width: 33.3333%;
    }
    .col.is-one-quarter-desktop {
        flex: none;
        width: 25%;
    }
    .col.is-one-fifth-desktop {
        flex: none;
        width: 20%;
    }
    .col.is-two-fifths-desktop {
        flex: none;
        width: 40%;
    }
    .col.is-three-fifths-desktop {
        flex: none;
        width: 60%;
    }
    .col.is-four-fifths-desktop {
        flex: none;
        width: 80%;
    }
    .col.is-offset-three-quarters-desktop {
        margin-left: 75%;
    }
    .col.is-offset-two-thirds-desktop {
        margin-left: 66.6666%;
    }
    .col.is-offset-half-desktop {
        margin-left: 50%;
    }
    .col.is-offset-one-third-desktop {
        margin-left: 33.3333%;
    }
    .col.is-offset-one-quarter-desktop {
        margin-left: 25%;
    }
    .col.is-offset-one-fifth-desktop {
        margin-left: 20%;
    }
    .col.is-offset-two-fifths-desktop {
        margin-left: 40%;
    }
    .col.is-offset-three-fifths-desktop {
        margin-left: 60%;
    }
    .col.is-offset-four-fifths-desktop {
        margin-left: 80%;
    }
    .col.is-1-desktop {
        flex: none;
        width: 8.3333333333%;
    }
    .col.is-offset-1-desktop {
        margin-left: 8.3333333333%;
    }
    .col.is-2-desktop {
        flex: none;
        width: 16.6666666667%;
    }
    .col.is-offset-2-desktop {
        margin-left: 16.6666666667%;
    }
    .col.is-3-desktop {
        flex: none;
        width: 25%;
    }
    .col.is-offset-3-desktop {
        margin-left: 25%;
    }
    .col.is-4-desktop {
        flex: none;
        width: 33.3333333333%;
    }
    .col.is-offset-4-desktop {
        margin-left: 33.3333333333%;
    }
    .col.is-5-desktop {
        flex: none;
        width: 41.6666666667%;
    }
    .col.is-offset-5-desktop {
        margin-left: 41.6666666667%;
    }
    .col.is-6-desktop {
        flex: none;
        width: 50%;
    }
    .col.is-offset-6-desktop {
        margin-left: 50%;
    }
    .col.is-7-desktop {
        flex: none;
        width: 58.3333333333%;
    }
    .col.is-offset-7-desktop {
        margin-left: 58.3333333333%;
    }
    .col.is-8-desktop {
        flex: none;
        width: 66.6666666667%;
    }
    .col.is-offset-8-desktop {
        margin-left: 66.6666666667%;
    }
    .col.is-9-desktop {
        flex: none;
        width: 75%;
    }
    .col.is-offset-9-desktop {
        margin-left: 75%;
    }
    .col.is-10-desktop {
        flex: none;
        width: 83.3333333333%;
    }
    .col.is-offset-10-desktop {
        margin-left: 83.3333333333%;
    }
    .col.is-11-desktop {
        flex: none;
        width: 91.6666666667%;
    }
    .col.is-offset-11-desktop {
        margin-left: 91.6666666667%;
    }
    .col.is-12-desktop {
        flex: none;
        width: 100%;
    }
    .col.is-offset-12-desktop {
        margin-left: 100%;
    }
}
@media screen and (min-width: 1280px) {
    .col.is-narrow-widescreen {
        flex: none;
    }
    .col.is-full-widescreen {
        flex: none;
        width: 100%;
    }
    .col.is-three-quarters-widescreen {
        flex: none;
        width: 75%;
    }
    .col.is-two-thirds-widescreen {
        flex: none;
        width: 66.6666%;
    }
    .col.is-half-widescreen {
        flex: none;
        width: 50%;
    }
    .col.is-one-third-widescreen {
        flex: none;
        width: 33.3333%;
    }
    .col.is-one-quarter-widescreen {
        flex: none;
        width: 25%;
    }
    .col.is-one-fifth-widescreen {
        flex: none;
        width: 20%;
    }
    .col.is-two-fifths-widescreen {
        flex: none;
        width: 40%;
    }
    .col.is-three-fifths-widescreen {
        flex: none;
        width: 60%;
    }
    .col.is-four-fifths-widescreen {
        flex: none;
        width: 80%;
    }
    .col.is-offset-three-quarters-widescreen {
        margin-left: 75%;
    }
    .col.is-offset-two-thirds-widescreen {
        margin-left: 66.6666%;
    }
    .col.is-offset-half-widescreen {
        margin-left: 50%;
    }
    .col.is-offset-one-third-widescreen {
        margin-left: 33.3333%;
    }
    .col.is-offset-one-quarter-widescreen {
        margin-left: 25%;
    }
    .col.is-offset-one-fifth-widescreen {
        margin-left: 20%;
    }
    .col.is-offset-two-fifths-widescreen {
        margin-left: 40%;
    }
    .col.is-offset-three-fifths-widescreen {
        margin-left: 60%;
    }
    .col.is-offset-four-fifths-widescreen {
        margin-left: 80%;
    }
    .col.is-1-widescreen {
        flex: none;
        width: 8.3333333333%;
    }
    .col.is-offset-1-widescreen {
        margin-left: 8.3333333333%;
    }
    .col.is-2-widescreen {
        flex: none;
        width: 16.6666666667%;
    }
    .col.is-offset-2-widescreen {
        margin-left: 16.6666666667%;
    }
    .col.is-3-widescreen {
        flex: none;
        width: 25%;
    }
    .col.is-offset-3-widescreen {
        margin-left: 25%;
    }
    .col.is-4-widescreen {
        flex: none;
        width: 33.3333333333%;
    }
    .col.is-offset-4-widescreen {
        margin-left: 33.3333333333%;
    }
    .col.is-5-widescreen {
        flex: none;
        width: 41.6666666667%;
    }
    .col.is-offset-5-widescreen {
        margin-left: 41.6666666667%;
    }
    .col.is-6-widescreen {
        flex: none;
        width: 50%;
    }
    .col.is-offset-6-widescreen {
        margin-left: 50%;
    }
    .col.is-7-widescreen {
        flex: none;
        width: 58.3333333333%;
    }
    .col.is-offset-7-widescreen {
        margin-left: 58.3333333333%;
    }
    .col.is-8-widescreen {
        flex: none;
        width: 66.6666666667%;
    }
    .col.is-offset-8-widescreen {
        margin-left: 66.6666666667%;
    }
    .col.is-9-widescreen {
        flex: none;
        width: 75%;
    }
    .col.is-offset-9-widescreen {
        margin-left: 75%;
    }
    .col.is-10-widescreen {
        flex: none;
        width: 83.3333333333%;
    }
    .col.is-offset-10-widescreen {
        margin-left: 83.3333333333%;
    }
    .col.is-11-widescreen {
        flex: none;
        width: 91.6666666667%;
    }
    .col.is-offset-11-widescreen {
        margin-left: 91.6666666667%;
    }
    .col.is-12-widescreen {
        flex: none;
        width: 100%;
    }
    .col.is-offset-12-widescreen {
        margin-left: 100%;
    }
}
@media screen and (min-width: 1408px) {
    .col.is-narrow-fullhd {
        flex: none;
    }
    .col.is-full-fullhd {
        flex: none;
        width: 100%;
    }
    .col.is-three-quarters-fullhd {
        flex: none;
        width: 75%;
    }
    .col.is-two-thirds-fullhd {
        flex: none;
        width: 66.6666%;
    }
    .col.is-half-fullhd {
        flex: none;
        width: 50%;
    }
    .col.is-one-third-fullhd {
        flex: none;
        width: 33.3333%;
    }
    .col.is-one-quarter-fullhd {
        flex: none;
        width: 25%;
    }
    .col.is-one-fifth-fullhd {
        flex: none;
        width: 20%;
    }
    .col.is-two-fifths-fullhd {
        flex: none;
        width: 40%;
    }
    .col.is-three-fifths-fullhd {
        flex: none;
        width: 60%;
    }
    .col.is-four-fifths-fullhd {
        flex: none;
        width: 80%;
    }
    .col.is-offset-three-quarters-fullhd {
        margin-left: 75%;
    }
    .col.is-offset-two-thirds-fullhd {
        margin-left: 66.6666%;
    }
    .col.is-offset-half-fullhd {
        margin-left: 50%;
    }
    .col.is-offset-one-third-fullhd {
        margin-left: 33.3333%;
    }
    .col.is-offset-one-quarter-fullhd {
        margin-left: 25%;
    }
    .col.is-offset-one-fifth-fullhd {
        margin-left: 20%;
    }
    .col.is-offset-two-fifths-fullhd {
        margin-left: 40%;
    }
    .col.is-offset-three-fifths-fullhd {
        margin-left: 60%;
    }
    .col.is-offset-four-fifths-fullhd {
        margin-left: 80%;
    }
    .col.is-1-fullhd {
        flex: none;
        width: 8.3333333333%;
    }
    .col.is-offset-1-fullhd {
        margin-left: 8.3333333333%;
    }
    .col.is-2-fullhd {
        flex: none;
        width: 16.6666666667%;
    }
    .col.is-offset-2-fullhd {
        margin-left: 16.6666666667%;
    }
    .col.is-3-fullhd {
        flex: none;
        width: 25%;
    }
    .col.is-offset-3-fullhd {
        margin-left: 25%;
    }
    .col.is-4-fullhd {
        flex: none;
        width: 33.3333333333%;
    }
    .col.is-offset-4-fullhd {
        margin-left: 33.3333333333%;
    }
    .col.is-5-fullhd {
        flex: none;
        width: 41.6666666667%;
    }
    .col.is-offset-5-fullhd {
        margin-left: 41.6666666667%;
    }
    .col.is-6-fullhd {
        flex: none;
        width: 50%;
    }
    .col.is-offset-6-fullhd {
        margin-left: 50%;
    }
    .col.is-7-fullhd {
        flex: none;
        width: 58.3333333333%;
    }
    .col.is-offset-7-fullhd {
        margin-left: 58.3333333333%;
    }
    .col.is-8-fullhd {
        flex: none;
        width: 66.6666666667%;
    }
    .col.is-offset-8-fullhd {
        margin-left: 66.6666666667%;
    }
    .col.is-9-fullhd {
        flex: none;
        width: 75%;
    }
    .col.is-offset-9-fullhd {
        margin-left: 75%;
    }
    .col.is-10-fullhd {
        flex: none;
        width: 83.3333333333%;
    }
    .col.is-offset-10-fullhd {
        margin-left: 83.3333333333%;
    }
    .col.is-11-fullhd {
        flex: none;
        width: 91.6666666667%;
    }
    .col.is-offset-11-fullhd {
        margin-left: 91.6666666667%;
    }
    .col.is-12-fullhd {
        flex: none;
        width: 100%;
    }
    .col.is-offset-12-fullhd {
        margin-left: 100%;
    }
}

.row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    margin-top: -0.75rem;
}
.row:last-child {
    margin-bottom: -0.75rem;
}
.row:not(:last-child) {
    margin-bottom: calc(1.5rem - 0.75rem);
}
.row.is-centered {
    justify-content: center;
}
.row.is-gapless {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}
.row.is-gapless > .col {
    margin: 0;
    padding: 0 !important;
}
.row.is-gapless:not(:last-child) {
    margin-bottom: 1.5rem;
}
.row.is-gapless:last-child {
    margin-bottom: 0;
}
.row.is-mobile {
    display: flex;
}
.row.is-multiline {
    flex-wrap: wrap;
}
.row.is-vcentered {
    align-items: center;
}
@media screen and (min-width: 769px), print {
    .row:not(.is-desktop) {
        display: flex;
    }
}
@media screen and (min-width: 1024px) {
    .row.is-desktop {
        display: flex;
    }
}

.row.is-variable {
    --columnGap: 0.75rem;
    margin-left: calc(-1 * var(--columnGap));
    margin-right: calc(-1 * var(--columnGap));
}
.row.is-variable .col {
    padding-left: var(--columnGap);
    padding-right: var(--columnGap);
}
.row.is-variable.is-0 {
    --columnGap: 0rem;
}
.row.is-variable.is-1 {
    --columnGap: 0.25rem;
}
.row.is-variable.is-2 {
    --columnGap: 0.5rem;
}
.row.is-variable.is-3 {
    --columnGap: 0.75rem;
}
.row.is-variable.is-4 {
    --columnGap: 1rem;
}
.row.is-variable.is-5 {
    --columnGap: 1.25rem;
}
.row.is-variable.is-6 {
    --columnGap: 1.5rem;
}
.row.is-variable.is-7 {
    --columnGap: 1.75rem;
}
.row.is-variable.is-8 {
    --columnGap: 2rem;
}

.bp-tile {
    align-items: stretch;
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    min-height: min-content;
}
.bp-tile.is-ancestor {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    margin-top: -0.75rem;
}
.bp-tile.is-ancestor:last-child {
    margin-bottom: -0.75rem;
}
.bp-tile.is-ancestor:not(:last-child) {
    margin-bottom: 0.75rem;
}
.bp-tile.is-child {
    margin: 0 !important;
}
.bp-tile.is-parent {
    padding: 0.75rem;
}
.bp-tile.is-vertical {
    flex-direction: column;
}
.bp-tile.is-vertical > .bp-tile.is-child:not(:last-child) {
    margin-bottom: 1.5rem !important;
}
@media screen and (min-width: 769px), print {
    .bp-tile:not(.is-child) {
        display: flex;
    }
    .bp-tile.is-1 {
        flex: none;
        width: 8.3333333333%;
    }
    .bp-tile.is-2 {
        flex: none;
        width: 16.6666666667%;
    }
    .bp-tile.is-3 {
        flex: none;
        width: 25%;
    }
    .bp-tile.is-4 {
        flex: none;
        width: 33.3333333333%;
    }
    .bp-tile.is-5 {
        flex: none;
        width: 41.6666666667%;
    }
    .bp-tile.is-6 {
        flex: none;
        width: 50%;
    }
    .bp-tile.is-7 {
        flex: none;
        width: 58.3333333333%;
    }
    .bp-tile.is-8 {
        flex: none;
        width: 66.6666666667%;
    }
    .bp-tile.is-9 {
        flex: none;
        width: 75%;
    }
    .bp-tile.is-10 {
        flex: none;
        width: 83.3333333333%;
    }
    .bp-tile.is-11 {
        flex: none;
        width: 91.6666666667%;
    }
    .bp-tile.is-12 {
        flex: none;
        width: 100%;
    }
}

.bp-hero {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bp-hero .navbar {
    background: none;
}
.bp-hero .tabs ul {
    border-bottom: none;
}
.bp-hero.is-white {
    background-color: white;
    color: #0a0a0a;
}
.bp-hero.is-white a:not(.button):not(.dropdown-item):not(.tag),
.bp-hero.is-white strong {
    color: inherit;
}
.bp-hero.is-white .title {
    color: #0a0a0a;
}
.bp-hero.is-white .subtitle {
    color: rgba(10, 10, 10, 0.9);
}
.bp-hero.is-white .subtitle a:not(.button),
.bp-hero.is-white .subtitle strong {
    color: #0a0a0a;
}
@media screen and (max-width: 1023px) {
    .bp-hero.is-white .navbar-menu {
        background-color: white;
    }
}
.bp-hero.is-white .navbar-item,
.bp-hero.is-white .navbar-link {
    color: rgba(10, 10, 10, 0.7);
}
.bp-hero.is-white a.navbar-item:hover,
.bp-hero.is-white a.navbar-item.is-active,
.bp-hero.is-white .navbar-link:hover,
.bp-hero.is-white .navbar-link.is-active {
    background-color: #f2f2f2;
    color: #0a0a0a;
}
.bp-hero.is-white .tabs a {
    color: #0a0a0a;
    opacity: 0.9;
}
.bp-hero.is-white .tabs a:hover {
    opacity: 1;
}
.bp-hero.is-white .tabs li.is-active a {
    opacity: 1;
}
.bp-hero.is-white .tabs.is-boxed a,
.bp-hero.is-white .tabs.is-toggle a {
    color: #0a0a0a;
}
.bp-hero.is-white .tabs.is-boxed a:hover,
.bp-hero.is-white .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.1);
}
.bp-hero.is-white .tabs.is-boxed li.is-active a,
.bp-hero.is-white .tabs.is-boxed li.is-active a:hover,
.bp-hero.is-white .tabs.is-toggle li.is-active a,
.bp-hero.is-white .tabs.is-toggle li.is-active a:hover {
    background-color: #0a0a0a;
    border-color: #0a0a0a;
    color: white;
}
.bp-hero.is-white.is-bold {
    background-image: linear-gradient(141deg, #e8e3e4 0%, white 71%, white 100%);
}
@media screen and (max-width: 768px) {
    .bp-hero.is-white.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #e8e3e4 0%, white 71%, white 100%);
    }
}
.bp-hero.is-black {
    background-color: #0a0a0a;
    color: white;
}
.bp-hero.is-black a:not(.button):not(.dropdown-item):not(.tag),
.bp-hero.is-black strong {
    color: inherit;
}
.bp-hero.is-black .title {
    color: white;
}
.bp-hero.is-black .subtitle {
    color: rgba(255, 255, 255, 0.9);
}
.bp-hero.is-black .subtitle a:not(.button),
.bp-hero.is-black .subtitle strong {
    color: white;
}
@media screen and (max-width: 1023px) {
    .bp-hero.is-black .navbar-menu {
        background-color: #0a0a0a;
    }
}
.bp-hero.is-black .navbar-item,
.bp-hero.is-black .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}
.bp-hero.is-black a.navbar-item:hover,
.bp-hero.is-black a.navbar-item.is-active,
.bp-hero.is-black .navbar-link:hover,
.bp-hero.is-black .navbar-link.is-active {
    background-color: black;
    color: white;
}
.bp-hero.is-black .tabs a {
    color: white;
    opacity: 0.9;
}
.bp-hero.is-black .tabs a:hover {
    opacity: 1;
}
.bp-hero.is-black .tabs li.is-active a {
    opacity: 1;
}
.bp-hero.is-black .tabs.is-boxed a,
.bp-hero.is-black .tabs.is-toggle a {
    color: white;
}
.bp-hero.is-black .tabs.is-boxed a:hover,
.bp-hero.is-black .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.1);
}
.bp-hero.is-black .tabs.is-boxed li.is-active a,
.bp-hero.is-black .tabs.is-boxed li.is-active a:hover,
.bp-hero.is-black .tabs.is-toggle li.is-active a,
.bp-hero.is-black .tabs.is-toggle li.is-active a:hover {
    background-color: white;
    border-color: white;
    color: #0a0a0a;
}
.bp-hero.is-black.is-bold {
    background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
}
@media screen and (max-width: 768px) {
    .bp-hero.is-black.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
    }
}
.bp-hero.is-light {
    background-color: whitesmoke;
    color: #323232;
}
.bp-hero.is-light a:not(.button):not(.dropdown-item):not(.tag),
.bp-hero.is-light strong {
    color: inherit;
}
.bp-hero.is-light .title {
    color: #323232;
}
.bp-hero.is-light .subtitle {
    color: rgba(50, 50, 50, 0.9);
}
.bp-hero.is-light .subtitle a:not(.button),
.bp-hero.is-light .subtitle strong {
    color: #323232;
}
@media screen and (max-width: 1023px) {
    .bp-hero.is-light .navbar-menu {
        background-color: whitesmoke;
    }
}
.bp-hero.is-light .navbar-item,
.bp-hero.is-light .navbar-link {
    color: rgba(50, 50, 50, 0.7);
}
.bp-hero.is-light a.navbar-item:hover,
.bp-hero.is-light a.navbar-item.is-active,
.bp-hero.is-light .navbar-link:hover,
.bp-hero.is-light .navbar-link.is-active {
    background-color: #e8e8e8;
    color: #323232;
}
.bp-hero.is-light .tabs a {
    color: #323232;
    opacity: 0.9;
}
.bp-hero.is-light .tabs a:hover {
    opacity: 1;
}
.bp-hero.is-light .tabs li.is-active a {
    opacity: 1;
}
.bp-hero.is-light .tabs.is-boxed a,
.bp-hero.is-light .tabs.is-toggle a {
    color: #323232;
}
.bp-hero.is-light .tabs.is-boxed a:hover,
.bp-hero.is-light .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.1);
}
.bp-hero.is-light .tabs.is-boxed li.is-active a,
.bp-hero.is-light .tabs.is-boxed li.is-active a:hover,
.bp-hero.is-light .tabs.is-toggle li.is-active a,
.bp-hero.is-light .tabs.is-toggle li.is-active a:hover {
    background-color: #323232;
    border-color: #323232;
    color: whitesmoke;
}
.bp-hero.is-light.is-bold {
    background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
}
@media screen and (max-width: 768px) {
    .bp-hero.is-light.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
    }
}
.bp-hero.is-dark {
    background-color: #323232;
    color: whitesmoke;
}
.bp-hero.is-dark a:not(.button):not(.dropdown-item):not(.tag),
.bp-hero.is-dark strong {
    color: inherit;
}
.bp-hero.is-dark .title {
    color: whitesmoke;
}
.bp-hero.is-dark .subtitle {
    color: rgba(245, 245, 245, 0.9);
}
.bp-hero.is-dark .subtitle a:not(.button),
.bp-hero.is-dark .subtitle strong {
    color: whitesmoke;
}
@media screen and (max-width: 1023px) {
    .bp-hero.is-dark .navbar-menu {
        background-color: #323232;
    }
}
.bp-hero.is-dark .navbar-item,
.bp-hero.is-dark .navbar-link {
    color: rgba(245, 245, 245, 0.7);
}
.bp-hero.is-dark a.navbar-item:hover,
.bp-hero.is-dark a.navbar-item.is-active,
.bp-hero.is-dark .navbar-link:hover,
.bp-hero.is-dark .navbar-link.is-active {
    background-color: #252525;
    color: whitesmoke;
}
.bp-hero.is-dark .tabs a {
    color: whitesmoke;
    opacity: 0.9;
}
.bp-hero.is-dark .tabs a:hover {
    opacity: 1;
}
.bp-hero.is-dark .tabs li.is-active a {
    opacity: 1;
}
.bp-hero.is-dark .tabs.is-boxed a,
.bp-hero.is-dark .tabs.is-toggle a {
    color: whitesmoke;
}
.bp-hero.is-dark .tabs.is-boxed a:hover,
.bp-hero.is-dark .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.1);
}
.bp-hero.is-dark .tabs.is-boxed li.is-active a,
.bp-hero.is-dark .tabs.is-boxed li.is-active a:hover,
.bp-hero.is-dark .tabs.is-toggle li.is-active a,
.bp-hero.is-dark .tabs.is-toggle li.is-active a:hover {
    background-color: whitesmoke;
    border-color: whitesmoke;
    color: #323232;
}
.bp-hero.is-dark.is-bold {
    background-image: linear-gradient(141deg, #1b1617 0%, #323232 71%, #423d3c 100%);
}
@media screen and (max-width: 768px) {
    .bp-hero.is-dark.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #1b1617 0%, #323232 71%, #423d3c 100%);
    }
}
.bp-hero.is-primary {
    background-color: #0487bf;
    color: #fff;
}
.bp-hero.is-primary a:not(.button):not(.dropdown-item):not(.tag),
.bp-hero.is-primary strong {
    color: inherit;
}
.bp-hero.is-primary .title {
    color: #fff;
}
.bp-hero.is-primary .subtitle {
    color: rgba(255, 255, 255, 0.9);
}
.bp-hero.is-primary .subtitle a:not(.button),
.bp-hero.is-primary .subtitle strong {
    color: #fff;
}
@media screen and (max-width: 1023px) {
    .bp-hero.is-primary .navbar-menu {
        background-color: #0487bf;
    }
}
.bp-hero.is-primary .navbar-item,
.bp-hero.is-primary .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}
.bp-hero.is-primary a.navbar-item:hover,
.bp-hero.is-primary a.navbar-item.is-active,
.bp-hero.is-primary .navbar-link:hover,
.bp-hero.is-primary .navbar-link.is-active {
    background-color: #0375a6;
    color: #fff;
}
.bp-hero.is-primary .tabs a {
    color: #fff;
    opacity: 0.9;
}
.bp-hero.is-primary .tabs a:hover {
    opacity: 1;
}
.bp-hero.is-primary .tabs li.is-active a {
    opacity: 1;
}
.bp-hero.is-primary .tabs.is-boxed a,
.bp-hero.is-primary .tabs.is-toggle a {
    color: #fff;
}
.bp-hero.is-primary .tabs.is-boxed a:hover,
.bp-hero.is-primary .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.1);
}
.bp-hero.is-primary .tabs.is-boxed li.is-active a,
.bp-hero.is-primary .tabs.is-boxed li.is-active a:hover,
.bp-hero.is-primary .tabs.is-toggle li.is-active a,
.bp-hero.is-primary .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #0487bf;
}
.bp-hero.is-primary.is-bold {
    background-image: linear-gradient(141deg, #007d90 0%, #0487bf 71%, #0076dd 100%);
}
@media screen and (max-width: 768px) {
    .bp-hero.is-primary.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #007d90 0%, #0487bf 71%, #0076dd 100%);
    }
}
.bp-hero.is-secondary {
    background-color: #6b4370;
    color: #fff;
}
.bp-hero.is-secondary a:not(.button):not(.dropdown-item):not(.tag),
.bp-hero.is-secondary strong {
    color: inherit;
}
.bp-hero.is-secondary .title {
    color: #fff;
}
.bp-hero.is-secondary .subtitle {
    color: rgba(255, 255, 255, 0.9);
}
.bp-hero.is-secondary .subtitle a:not(.button),
.bp-hero.is-secondary .subtitle strong {
    color: #fff;
}
@media screen and (max-width: 1023px) {
    .bp-hero.is-secondary .navbar-menu {
        background-color: #6b4370;
    }
}
.bp-hero.is-secondary .navbar-item,
.bp-hero.is-secondary .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}
.bp-hero.is-secondary a.navbar-item:hover,
.bp-hero.is-secondary a.navbar-item.is-active,
.bp-hero.is-secondary .navbar-link:hover,
.bp-hero.is-secondary .navbar-link.is-active {
    background-color: #5c3960;
    color: #fff;
}
.bp-hero.is-secondary .tabs a {
    color: #fff;
    opacity: 0.9;
}
.bp-hero.is-secondary .tabs a:hover {
    opacity: 1;
}
.bp-hero.is-secondary .tabs li.is-active a {
    opacity: 1;
}
.bp-hero.is-secondary .tabs.is-boxed a,
.bp-hero.is-secondary .tabs.is-toggle a {
    color: #fff;
}
.bp-hero.is-secondary .tabs.is-boxed a:hover,
.bp-hero.is-secondary .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.1);
}
.bp-hero.is-secondary .tabs.is-boxed li.is-active a,
.bp-hero.is-secondary .tabs.is-boxed li.is-active a:hover,
.bp-hero.is-secondary .tabs.is-toggle li.is-active a,
.bp-hero.is-secondary .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #6b4370;
}
.bp-hero.is-secondary.is-bold {
    background-image: linear-gradient(141deg, #4a2a56 0%, #6b4370 71%, #854782 100%);
}
@media screen and (max-width: 768px) {
    .bp-hero.is-secondary.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #4a2a56 0%, #6b4370 71%, #854782 100%);
    }
}
.bp-hero.is-link {
    background-color: #4372d6;
    color: #fff;
}
.bp-hero.is-link a:not(.button):not(.dropdown-item):not(.tag),
.bp-hero.is-link strong {
    color: inherit;
}
.bp-hero.is-link .title {
    color: #fff;
}
.bp-hero.is-link .subtitle {
    color: rgba(255, 255, 255, 0.9);
}
.bp-hero.is-link .subtitle a:not(.button),
.bp-hero.is-link .subtitle strong {
    color: #fff;
}
@media screen and (max-width: 1023px) {
    .bp-hero.is-link .navbar-menu {
        background-color: #4372d6;
    }
}
.bp-hero.is-link .navbar-item,
.bp-hero.is-link .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}
.bp-hero.is-link a.navbar-item:hover,
.bp-hero.is-link a.navbar-item.is-active,
.bp-hero.is-link .navbar-link:hover,
.bp-hero.is-link .navbar-link.is-active {
    background-color: #2e62d1;
    color: #fff;
}
.bp-hero.is-link .tabs a {
    color: #fff;
    opacity: 0.9;
}
.bp-hero.is-link .tabs a:hover {
    opacity: 1;
}
.bp-hero.is-link .tabs li.is-active a {
    opacity: 1;
}
.bp-hero.is-link .tabs.is-boxed a,
.bp-hero.is-link .tabs.is-toggle a {
    color: #fff;
}
.bp-hero.is-link .tabs.is-boxed a:hover,
.bp-hero.is-link .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.1);
}
.bp-hero.is-link .tabs.is-boxed li.is-active a,
.bp-hero.is-link .tabs.is-boxed li.is-active a:hover,
.bp-hero.is-link .tabs.is-toggle li.is-active a,
.bp-hero.is-link .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #4372d6;
}
.bp-hero.is-link.is-bold {
    background-image: linear-gradient(141deg, #1e71c8 0%, #4372d6 71%, #5368e0 100%);
}
@media screen and (max-width: 768px) {
    .bp-hero.is-link.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #1e71c8 0%, #4372d6 71%, #5368e0 100%);
    }
}
.bp-hero.is-info {
    background-color: #209cee;
    color: #fff;
}
.bp-hero.is-info a:not(.button):not(.dropdown-item):not(.tag),
.bp-hero.is-info strong {
    color: inherit;
}
.bp-hero.is-info .title {
    color: #fff;
}
.bp-hero.is-info .subtitle {
    color: rgba(255, 255, 255, 0.9);
}
.bp-hero.is-info .subtitle a:not(.button),
.bp-hero.is-info .subtitle strong {
    color: #fff;
}
@media screen and (max-width: 1023px) {
    .bp-hero.is-info .navbar-menu {
        background-color: #209cee;
    }
}
.bp-hero.is-info .navbar-item,
.bp-hero.is-info .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}
.bp-hero.is-info a.navbar-item:hover,
.bp-hero.is-info a.navbar-item.is-active,
.bp-hero.is-info .navbar-link:hover,
.bp-hero.is-info .navbar-link.is-active {
    background-color: #118fe4;
    color: #fff;
}
.bp-hero.is-info .tabs a {
    color: #fff;
    opacity: 0.9;
}
.bp-hero.is-info .tabs a:hover {
    opacity: 1;
}
.bp-hero.is-info .tabs li.is-active a {
    opacity: 1;
}
.bp-hero.is-info .tabs.is-boxed a,
.bp-hero.is-info .tabs.is-toggle a {
    color: #fff;
}
.bp-hero.is-info .tabs.is-boxed a:hover,
.bp-hero.is-info .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.1);
}
.bp-hero.is-info .tabs.is-boxed li.is-active a,
.bp-hero.is-info .tabs.is-boxed li.is-active a:hover,
.bp-hero.is-info .tabs.is-toggle li.is-active a,
.bp-hero.is-info .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #209cee;
}
.bp-hero.is-info.is-bold {
    background-image: linear-gradient(141deg, #04a6d7 0%, #209cee 71%, #3287f5 100%);
}
@media screen and (max-width: 768px) {
    .bp-hero.is-info.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #04a6d7 0%, #209cee 71%, #3287f5 100%);
    }
}
.bp-hero.is-success {
    background-color: #23d160;
    color: #fff;
}
.bp-hero.is-success a:not(.button):not(.dropdown-item):not(.tag),
.bp-hero.is-success strong {
    color: inherit;
}
.bp-hero.is-success .title {
    color: #fff;
}
.bp-hero.is-success .subtitle {
    color: rgba(255, 255, 255, 0.9);
}
.bp-hero.is-success .subtitle a:not(.button),
.bp-hero.is-success .subtitle strong {
    color: #fff;
}
@media screen and (max-width: 1023px) {
    .bp-hero.is-success .navbar-menu {
        background-color: #23d160;
    }
}
.bp-hero.is-success .navbar-item,
.bp-hero.is-success .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}
.bp-hero.is-success a.navbar-item:hover,
.bp-hero.is-success a.navbar-item.is-active,
.bp-hero.is-success .navbar-link:hover,
.bp-hero.is-success .navbar-link.is-active {
    background-color: #20bc56;
    color: #fff;
}
.bp-hero.is-success .tabs a {
    color: #fff;
    opacity: 0.9;
}
.bp-hero.is-success .tabs a:hover {
    opacity: 1;
}
.bp-hero.is-success .tabs li.is-active a {
    opacity: 1;
}
.bp-hero.is-success .tabs.is-boxed a,
.bp-hero.is-success .tabs.is-toggle a {
    color: #fff;
}
.bp-hero.is-success .tabs.is-boxed a:hover,
.bp-hero.is-success .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.1);
}
.bp-hero.is-success .tabs.is-boxed li.is-active a,
.bp-hero.is-success .tabs.is-boxed li.is-active a:hover,
.bp-hero.is-success .tabs.is-toggle li.is-active a,
.bp-hero.is-success .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #23d160;
}
.bp-hero.is-success.is-bold {
    background-image: linear-gradient(141deg, #12af2f 0%, #23d160 71%, #2ce28a 100%);
}
@media screen and (max-width: 768px) {
    .bp-hero.is-success.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #12af2f 0%, #23d160 71%, #2ce28a 100%);
    }
}
.bp-hero.is-warning {
    background-color: #ffdd57;
    color: rgba(0, 0, 0, 0.7);
}
.bp-hero.is-warning a:not(.button):not(.dropdown-item):not(.tag),
.bp-hero.is-warning strong {
    color: inherit;
}
.bp-hero.is-warning .title {
    color: rgba(0, 0, 0, 0.7);
}
.bp-hero.is-warning .subtitle {
    color: rgba(0, 0, 0, 0.9);
}
.bp-hero.is-warning .subtitle a:not(.button),
.bp-hero.is-warning .subtitle strong {
    color: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 1023px) {
    .bp-hero.is-warning .navbar-menu {
        background-color: #ffdd57;
    }
}
.bp-hero.is-warning .navbar-item,
.bp-hero.is-warning .navbar-link {
    color: rgba(0, 0, 0, 0.7);
}
.bp-hero.is-warning a.navbar-item:hover,
.bp-hero.is-warning a.navbar-item.is-active,
.bp-hero.is-warning .navbar-link:hover,
.bp-hero.is-warning .navbar-link.is-active {
    background-color: #ffd83d;
    color: rgba(0, 0, 0, 0.7);
}
.bp-hero.is-warning .tabs a {
    color: rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}
.bp-hero.is-warning .tabs a:hover {
    opacity: 1;
}
.bp-hero.is-warning .tabs li.is-active a {
    opacity: 1;
}
.bp-hero.is-warning .tabs.is-boxed a,
.bp-hero.is-warning .tabs.is-toggle a {
    color: rgba(0, 0, 0, 0.7);
}
.bp-hero.is-warning .tabs.is-boxed a:hover,
.bp-hero.is-warning .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.1);
}
.bp-hero.is-warning .tabs.is-boxed li.is-active a,
.bp-hero.is-warning .tabs.is-boxed li.is-active a:hover,
.bp-hero.is-warning .tabs.is-toggle li.is-active a,
.bp-hero.is-warning .tabs.is-toggle li.is-active a:hover {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 0, 0, 0.7);
    color: #ffdd57;
}
.bp-hero.is-warning.is-bold {
    background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
}
@media screen and (max-width: 768px) {
    .bp-hero.is-warning.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
    }
}
.bp-hero.is-danger {
    background-color: #ff3860;
    color: #fff;
}
.bp-hero.is-danger a:not(.button):not(.dropdown-item):not(.tag),
.bp-hero.is-danger strong {
    color: inherit;
}
.bp-hero.is-danger .title {
    color: #fff;
}
.bp-hero.is-danger .subtitle {
    color: rgba(255, 255, 255, 0.9);
}
.bp-hero.is-danger .subtitle a:not(.button),
.bp-hero.is-danger .subtitle strong {
    color: #fff;
}
@media screen and (max-width: 1023px) {
    .bp-hero.is-danger .navbar-menu {
        background-color: #ff3860;
    }
}
.bp-hero.is-danger .navbar-item,
.bp-hero.is-danger .navbar-link {
    color: rgba(255, 255, 255, 0.7);
}
.bp-hero.is-danger a.navbar-item:hover,
.bp-hero.is-danger a.navbar-item.is-active,
.bp-hero.is-danger .navbar-link:hover,
.bp-hero.is-danger .navbar-link.is-active {
    background-color: #ff1f4b;
    color: #fff;
}
.bp-hero.is-danger .tabs a {
    color: #fff;
    opacity: 0.9;
}
.bp-hero.is-danger .tabs a:hover {
    opacity: 1;
}
.bp-hero.is-danger .tabs li.is-active a {
    opacity: 1;
}
.bp-hero.is-danger .tabs.is-boxed a,
.bp-hero.is-danger .tabs.is-toggle a {
    color: #fff;
}
.bp-hero.is-danger .tabs.is-boxed a:hover,
.bp-hero.is-danger .tabs.is-toggle a:hover {
    background-color: rgba(10, 10, 10, 0.1);
}
.bp-hero.is-danger .tabs.is-boxed li.is-active a,
.bp-hero.is-danger .tabs.is-boxed li.is-active a:hover,
.bp-hero.is-danger .tabs.is-toggle li.is-active a,
.bp-hero.is-danger .tabs.is-toggle li.is-active a:hover {
    background-color: #fff;
    border-color: #fff;
    color: #ff3860;
}
.bp-hero.is-danger.is-bold {
    background-image: linear-gradient(141deg, #ff0561 0%, #ff3860 71%, #ff5257 100%);
}
@media screen and (max-width: 768px) {
    .bp-hero.is-danger.is-bold .navbar-menu {
        background-image: linear-gradient(141deg, #ff0561 0%, #ff3860 71%, #ff5257 100%);
    }
}
.bp-hero.is-small .bp-hero-body {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}
@media screen and (min-width: 769px), print {
    .bp-hero.is-medium .bp-hero-body {
        padding-bottom: 9rem;
        padding-top: 9rem;
    }
}
@media screen and (min-width: 769px), print {
    .bp-hero.is-large .bp-hero-body {
        padding-bottom: 18rem;
        padding-top: 18rem;
    }
}
.bp-hero.is-halfheight .bp-hero-body,
.bp-hero.is-fullheight .bp-hero-body {
    align-items: center;
    display: flex;
}
.bp-hero.is-halfheight .bp-hero-body > .container,
.bp-hero.is-fullheight .bp-hero-body > .container {
    flex-grow: 1;
    flex-shrink: 1;
}
.bp-hero.is-halfheight {
    min-height: 50vh;
}
.bp-hero.is-fullheight {
    min-height: 100vh;
}
.bp-hero-video {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
}
.bp-hero-video video {
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}
.bp-hero-video.is-transparent {
    opacity: 0.3;
}
@media screen and (max-width: 768px) {
    .bp-hero-video {
        display: none;
    }
}
.bp-hero-buttons {
    margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
    .bp-hero-buttons .button {
        display: flex;
    }
    .bp-hero-buttons .button:not(:last-child) {
        margin-bottom: 0.75rem;
    }
}
@media screen and (min-width: 769px), print {
    .bp-hero-buttons {
        display: flex;
        justify-content: center;
    }
    .bp-hero-buttons .button:not(:last-child) {
        margin-right: 1.5rem;
    }
}
.bp-hero-head,
.bp-hero-foot {
    flex-grow: 0;
    flex-shrink: 0;
}
.bp-hero-body {
    background: rgba(0, 0, 0, 0.25);
    flex-grow: 1;
    flex-shrink: 0;
    padding: 3rem 1.5rem;
}
@media screen and (min-width: 1024px) {
    .bp-hero-body .row {
        height: 391px;
        min-height: 360px;
    }
}

.bp-section {
    padding: 3rem 1.5rem;
}
@media screen and (min-width: 1024px) {
    .bp-section.is-small {
        padding: 1.5rem 1.5rem;
    }
    .bp-section.is-medium {
        padding: 9rem 1.5rem;
    }
    .bp-section.is-large {
        padding: 18rem 1.5rem;
    }
    .bp-section.is-full {
        padding: 0;
    }
}

.highlight {
    background: #f5f5f5;
    padding: 1rem;
}

.highlight pre {
    max-height: 300px;
}

.highlight .c {
    color: #999988;
    font-style: italic;
}

/* Comment */
.highlight .err {
    color: #a61717;
    background-color: #e3d2d2;
}

/* Error */
.highlight .k {
    font-weight: bold;
}

/* Keyword */
.highlight .o {
    font-weight: bold;
}

/* Operator */
.highlight .cm {
    color: #999988;
    font-style: italic;
}

/* Comment.Multiline */
.highlight .cp {
    color: #999999;
    font-weight: bold;
}

/* Comment.Preproc */
.highlight .c1 {
    color: #999988;
    font-style: italic;
}

/* Comment.Single */
.highlight .cs {
    color: #999999;
    font-weight: bold;
    font-style: italic;
}

/* Comment.Special */
.highlight .gd {
    color: #000000;
    background-color: #ffdddd;
}

/* Generic.Deleted */
.highlight .gd .x {
    color: #000000;
    background-color: #ffaaaa;
}

/* Generic.Deleted.Specific */
.highlight .ge {
    font-style: italic;
}

/* Generic.Emph */
.highlight .gr {
    color: #aa0000;
}

/* Generic.Error */
.highlight .gh {
    color: #999999;
}

/* Generic.Heading */
.highlight .gi {
    color: #000000;
    background-color: #ddffdd;
}

/* Generic.Inserted */
.highlight .gi .x {
    color: #000000;
    background-color: #aaffaa;
}

/* Generic.Inserted.Specific */
.highlight .go {
    color: #888888;
}

/* Generic.Output */
.highlight .gp {
    color: #555555;
}

/* Generic.Prompt */
.highlight .gs {
    font-weight: bold;
}

/* Generic.Strong */
.highlight .gu {
    color: #aaaaaa;
}

/* Generic.Subheading */
.highlight .gt {
    color: #aa0000;
}

/* Generic.Traceback */
.highlight .kc {
    font-weight: bold;
}

/* Keyword.Constant */
.highlight .kd {
    font-weight: bold;
}

/* Keyword.Declaration */
.highlight .kp {
    font-weight: bold;
}

/* Keyword.Pseudo */
.highlight .kr {
    font-weight: bold;
}

/* Keyword.Reserved */
.highlight .kt {
    color: #445588;
    font-weight: bold;
}

/* Keyword.Type */
.highlight .m {
    color: #009999;
}

/* Literal.Number */
.highlight .s {
    color: #d14;
}

/* Literal.String */
.highlight .na {
    color: #008080;
}

/* Name.Attribute */
.highlight .nb {
    color: #0086b3;
}

/* Name.Builtin */
.highlight .nc {
    color: #445588;
    font-weight: bold;
}

/* Name.Class */
.highlight .no {
    color: #008080;
}

/* Name.Constant */
.highlight .ni {
    color: #800080;
}

/* Name.Entity */
.highlight .ne {
    color: #990000;
    font-weight: bold;
}

/* Name.Exception */
.highlight .nf {
    color: #990000;
    font-weight: bold;
}

/* Name.Function */
.highlight .nn {
    color: #555555;
}

/* Name.Namespace */
.highlight .nt {
    color: #000080;
}

/* Name.Tag */
.highlight .nv {
    color: #008080;
}

/* Name.Variable */
.highlight .ow {
    font-weight: bold;
}

/* Operator.Word */
.highlight .w {
    color: #bbbbbb;
}

/* Text.Whitespace */
.highlight .mf {
    color: #009999;
}

/* Literal.Number.Float */
.highlight .mh {
    color: #009999;
}

/* Literal.Number.Hex */
.highlight .mi {
    color: #009999;
}

/* Literal.Number.Integer */
.highlight .mo {
    color: #009999;
}

/* Literal.Number.Oct */
.highlight .sb {
    color: #d14;
}

/* Literal.String.Backtick */
.highlight .sc {
    color: #d14;
}

/* Literal.String.Char */
.highlight .sd {
    color: #d14;
}

/* Literal.String.Doc */
.highlight .s2 {
    color: #d14;
}

/* Literal.String.Double */
.highlight .se {
    color: #d14;
}

/* Literal.String.Escape */
.highlight .sh {
    color: #d14;
}

/* Literal.String.Heredoc */
.highlight .si {
    color: #d14;
}

/* Literal.String.Interpol */
.highlight .sx {
    color: #d14;
}

/* Literal.String.Other */
.highlight .sr {
    color: #009926;
}

/* Literal.String.Regex */
.highlight .s1 {
    color: #d14;
}

/* Literal.String.Single */
.highlight .ss {
    color: #990073;
}

/* Literal.String.Symbol */
.highlight .bp {
    color: #999999;
}

/* Name.Builtin.Pseudo */
.highlight .vc {
    color: #008080;
}

/* Name.Variable.Class */
.highlight .vg {
    color: #008080;
}

/* Name.Variable.Global */
.highlight .vi {
    color: #008080;
}

/* Name.Variable.Instance */
.highlight .il {
    color: #009999;
}

/* Literal.Number.Integer.Long */
* {
    font-family: "Lato", sans-serif;
}

@font-face {
    font-family: "sgds-icons";
    src: url("./fonts/sgds-icons.eot?#iefix") format("embedded-opentype"), url("./fonts/sgds-icons.ttf?742wbr") format("truetype"), url("./fonts/sgds-icons.woff?742wbr") format("woff"),
        url("./fonts/sgds-icons.svg?742wbr#sgds-icons") format("svg");
    font-weight: normal;
    font-style: normal;
}
.sgds-icon {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "sgds-icons" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sgds-icon-add-image:before {
    content: "";
}

.sgds-icon-attachment:before {
    content: "";
}

.sgds-icon-cloud:before {
    content: "";
}

.sgds-icon-contact:before {
    content: "";
}

.sgds-icon-create-folder:before {
    content: "";
}

.sgds-icon-delay:before {
    content: "";
}

.sgds-icon-file-copy:before {
    content: "";
}

.sgds-icon-file-pdf:before {
    content: "";
}

.sgds-icon-folder:before {
    content: "";
}

.sgds-icon-telephone:before {
    content: "";
}

.sgds-icon-add-photo:before {
    content: "";
}

.sgds-icon-browser:before {
    content: "";
}

.sgds-icon-calculator:before {
    content: "";
}

.sgds-icon-camera:before {
    content: "";
}

.sgds-icon-clock:before {
    content: "";
}

.sgds-icon-cloud-download:before {
    content: "";
}

.sgds-icon-cloud-success:before {
    content: "";
}

.sgds-icon-cloud-upload:before {
    content: "";
}

.sgds-icon-database:before {
    content: "";
}

.sgds-icon-download:before {
    content: "";
}

.sgds-icon-file-add:before {
    content: "";
}

.sgds-icon-file-alt:before {
    content: "";
}

.sgds-icon-file:before {
    content: "";
}

.sgds-icon-hdd:before {
    content: "";
}

.sgds-icon-image:before {
    content: "";
}

.sgds-icon-link:before {
    content: "";
}

.sgds-icon-lock:before {
    content: "";
}

.sgds-icon-mail:before {
    content: "";
}

.sgds-icon-print:before {
    content: "";
}

.sgds-icon-radar:before {
    content: "";
}

.sgds-icon-save:before {
    content: "";
}

.sgds-icon-share:before {
    content: "";
}

.sgds-icon-unlock:before {
    content: "";
}

.sgds-icon-upload:before {
    content: "";
}

.sgds-icon-volume-mute:before {
    content: "";
}

.sgds-icon-volume:before {
    content: "";
}

.sgds-icon-docker:before {
    content: "";
}

.sgds-icon-facebook-alt:before {
    content: "";
}

.sgds-icon-facebook:before {
    content: "";
}

.sgds-icon-google:before {
    content: "";
}

.sgds-icon-instagram:before {
    content: "";
}

.sgds-icon-linkedin-alt:before {
    content: "";
}

.sgds-icon-linkedin:before {
    content: "";
}

.sgds-icon-person-add:before {
    content: "";
}

.sgds-icon-person-cancel:before {
    content: "";
}

.sgds-icon-person-remove:before {
    content: "";
}

.sgds-icon-person:before {
    content: "";
}

.sgds-icon-rss:before {
    content: "";
}

.sgds-icon-thumbs-down:before {
    content: "";
}

.sgds-icon-thumbs-up:before {
    content: "";
}

.sgds-icon-twitter:before {
    content: "";
}

.sgds-icon-youtube:before {
    content: "";
}

.sgds-icon-add-place:before {
    content: "";
}

.sgds-icon-boat:before {
    content: "";
}

.sgds-icon-bus:before {
    content: "";
}

.sgds-icon-car:before {
    content: "";
}

.sgds-icon-layers:before {
    content: "";
}

.sgds-icon-map:before {
    content: "";
}

.sgds-icon-my-location:before {
    content: "";
}

.sgds-icon-place:before {
    content: "";
}

.sgds-icon-taxi:before {
    content: "";
}

.sgds-icon-traffic:before {
    content: "";
}

.sgds-icon-train:before {
    content: "";
}

.sgds-icon-arrow-down:before {
    content: "";
}

.sgds-icon-arrow-left:before {
    content: "";
}

.sgds-icon-arrow-right:before {
    content: "";
}

.sgds-icon-arrow-top-left:before {
    content: "";
}

.sgds-icon-arrow-top-right:before {
    content: "";
}

.sgds-icon-arrow-up:before {
    content: "";
}

.sgds-icon-check:before {
    content: "";
}

.sgds-icon-chevron-down:before {
    content: "";
}

.sgds-icon-chevron-left:before {
    content: "";
}

.sgds-icon-chevron-right:before {
    content: "";
}

.sgds-icon-chevron-up:before {
    content: "";
}

.sgds-icon-cog:before {
    content: "";
}

.sgds-icon-cross:before {
    content: "";
}

.sgds-icon-ellipsis:before {
    content: "";
}

.sgds-icon-home:before {
    content: "";
}

.sgds-icon-menu:before {
    content: "";
}

.sgds-icon-minus:before {
    content: "";
}

.sgds-icon-notification:before {
    content: "";
}

.sgds-icon-plus:before {
    content: "";
}

.sgds-icon-sg-crest:before {
    content: "";
    color: #db0000;
}

.sgds-icon-text-center:before {
    content: "";
}

.sgds-icon-text-justify:before {
    content: "";
}

.sgds-icon-text-left:before {
    content: "";
}

.sgds-icon-text-right:before {
    content: "";
}

.sgds-icon-add-comment:before {
    content: "";
}

.sgds-icon-ban:before {
    content: "";
}

.sgds-icon-bookmark:before {
    content: "";
}

.sgds-icon-calendar:before {
    content: "";
}

.sgds-icon-chat:before {
    content: "";
}

.sgds-icon-circle-info:before {
    content: "";
}

.sgds-icon-circle-minus:before {
    content: "";
}

.sgds-icon-circle-plus:before {
    content: "";
}

.sgds-icon-circle-question:before {
    content: "";
}

.sgds-icon-circle-warning:before {
    content: "";
}

.sgds-icon-compress-alt:before {
    content: "";
}

.sgds-icon-compress:before {
    content: "";
}

.sgds-icon-edit:before {
    content: "";
}

.sgds-icon-expand-alt:before {
    content: "";
}

.sgds-icon-expand:before {
    content: "";
}

.sgds-icon-external:before {
    content: "";
}

.sgds-icon-feedback:before {
    content: "";
}

.sgds-icon-filter:before {
    content: "";
}

.sgds-icon-info:before {
    content: "";
}

.sgds-icon-list:before {
    content: "";
}

.sgds-icon-pin:before {
    content: "";
}

.sgds-icon-question:before {
    content: "";
}

.sgds-icon-refresh:before {
    content: "";
}

.sgds-icon-rsvp-no:before {
    content: "";
}

.sgds-icon-rsvp-yes:before {
    content: "";
}

.sgds-icon-search:before {
    content: "";
}

.sgds-icon-slider-horizontal:before {
    content: "";
}

.sgds-icon-slider-vertical:before {
    content: "";
}

.sgds-icon-star:before {
    content: "";
}

.sgds-icon-sync:before {
    content: "";
}

.sgds-icon-toggle-minus:before {
    content: "";
}

.sgds-icon-toggle-off:before {
    content: "";
}

.sgds-icon-toggle-on:before {
    content: "";
}

.sgds-icon-toggle-plus:before {
    content: "";
}

.sgds-icon-triangle-warning:before {
    content: "";
}

.sgds-icon-warning:before {
    content: "";
}

.sgds-icon-zoom-in:before {
    content: "";
}

.sgds-icon-zoom-out:before {
    content: "";
}

html.has-navbar-fixed-top-widescreen {
    padding-top: 128px !important;
}
@media screen and (max-width: 1023px) {
    html.has-navbar-fixed-top-widescreen {
        padding-top: 0 !important;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    html.has-navbar-fixed-top-widescreen {
        padding-top: 0 !important;
    }
}

.masthead-container {
    background-color: white;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 900;
    transition: top 0.5s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.masthead-container.is-opened {
    height: auto;
}
.masthead-container.is-opened .navbar {
    border-bottom: 1px solid #f0f0f0;
}
@media screen and (max-width: 1023px) {
    .masthead-container .navbar-menu {
        box-shadow: none;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .masthead-container .navbar-menu {
        box-shadow: none;
    }
}
@media screen and (max-width: 1023px) {
    .masthead-container {
        position: relative;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .masthead-container {
        position: relative;
    }
}

.navbar-dropdown {
    border-radius: 0;
    box-shadow: 2px 4px 16px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1023px) {
    .navbar-dropdown {
        box-shadow: none;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .navbar-dropdown {
        box-shadow: none;
    }
}

.navbar {
    padding: 0 1rem;
    border-bottom: 0;
}
@media screen and (max-width: 1023px) {
    .navbar {
        padding: 0;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .navbar {
        padding: 0;
    }
}
.navbar-start {
    margin: 0 auto;
}
@media screen and (max-width: 1023px) {
    .navbar-start {
        margin: 0 auto 1rem;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .navbar-start {
        margin: 0 auto 1rem;
    }
}
@media screen and (max-width: 1023px) {
    .navbar-start .navbar-item + .navbar-item {
        margin-top: 1.2rem;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .navbar-start .navbar-item + .navbar-item {
        margin-top: 1.2rem;
    }
}
@media screen and (max-width: 1023px) {
    .navbar-start .navbar-item a.active {
        border-bottom: 2px solid #6b4370;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .navbar-start .navbar-item a.active {
        border-bottom: 2px solid #6b4370;
    }
}
.navbar-start .navbar-item + .has-dropdown {
    margin: 0 0.75rem;
}
.navbar .navbar-link {
    padding-right: 35px;
}
.navbar .navbar-link::after {
    border: 1px solid #484848;
    border-right: 0;
    border-top: 0;
    content: " ";
    display: block;
    height: 0.5em;
    pointer-events: none;
    position: absolute;
    transform: rotate(-45deg);
    transform-origin: center;
    width: 0.5em;
    margin-top: -0.375em;
    right: 1.125em;
    top: 50%;
}
.navbar .navbar-link:hover:after {
    border: 1px solid #6b4370;
    border-right: 0;
    border-top: 0;
    content: " ";
    display: block;
    height: 0.5em;
    pointer-events: none;
    position: absolute;
    transform: rotate(-45deg);
    transform-origin: center;
    width: 0.5em;
    margin-top: -0.375em;
    right: 1.125em;
    top: 50%;
}
.navbar .navbar-item {
    font-size: 15px !important;
    font-weight: 600;
    padding: 0;
}
.navbar .navbar-item .sub-link {
    font-size: 18px !important;
    letter-spacing: 0;
    margin: 15px;
    margin-left: 30px;
    font-weight: normal;
}
.navbar .navbar-item .sub-link:first-child {
    margin-top: 20px;
}
.navbar .navbar-item .sub-link:last-child {
    margin-bottom: 20px;
}
.navbar .navbar-item .sub-link.is-active {
    color: #6b4370;
}
.navbar .navbar-item a {
    color: #0a0a0a;
}
.navbar .navbar-item span {
    color: #0a0a0a;
}
.navbar .navbar-item .selector {
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 5px;
    left: 0;
}
.navbar .navbar-item .selector.active {
    background-color: #6b4370;
}
.navbar .navbar-item img {
    max-height: none;
}
@media screen and (min-width: 1280px) {
    .navbar .navbar-item.active {
        border-bottom: 1px solid #0487bf;
    }
}
.navbar .navbar-item.is-search-bar {
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    margin: 0;
    padding: 0.5rem 1.5rem;
}
.navbar .navbar-item:hover a {
    color: #6b4370;
}
.navbar .navbar-item:hover a.sub-link {
    color: #484848;
}
@media screen and (min-width: 1280px) {
    .navbar .navbar-item:hover .selector {
        background-color: #6b4370;
    }
}

.navbar {
    padding: 0 1rem;
    border-bottom: 1px solid #f0f0f0;
}
.navbar-start {
    margin: 0 1rem;
}
@media screen and (max-width: 1023px) {
    .navbar-start {
        margin: 0 auto 1rem;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .navbar-start {
        margin: 0 auto 1rem;
    }
}
@media screen and (max-width: 1023px) {
    .navbar-start .navbar-item + .navbar-item {
        margin-top: 1.2rem;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .navbar-start .navbar-item + .navbar-item {
        margin-top: 1.2rem;
    }
}
@media screen and (max-width: 1023px) {
    .navbar-start .navbar-item a.active {
        border-bottom: 2px solid #0487bf;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .navbar-start .navbar-item a.active {
        border-bottom: 2px solid #0487bf;
    }
}
.navbar-item {
    font-size: 1rem;
    font-weight: bold;
    margin: 0 0.75rem;
    padding: 0;
}
.navbar-item a {
    color: #484848;
}
.navbar-item .selector {
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 5px;
}
.navbar-item .selector.active {
    background-color: #0487bf;
}
.navbar-item img {
    max-height: none;
}
@media screen and (min-width: 1280px) {
    .navbar-item.active {
        border-bottom: 1px solid #0487bf;
    }
}
.navbar-item.is-search-bar {
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    margin: 0;
    padding: 0.5rem 1.5rem;
}
@media screen and (max-width: 1023px) {
    .navbar {
        padding: 0;
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .navbar {
        padding: 0;
    }
}

.navbar-item.is-mega {
    position: static;
}
.navbar-item.is-mega .navbar-item {
    padding-left: 0;
}
@media screen and (max-width: 768px) {
    .navbar-item.is-mega .navbar-item {
        margin-top: 0.5rem;
    }
}
.navbar-item.is-mega .is-mega-menu-title {
    margin-bottom: 0;
    padding: 0.375rem 1.5rem;
    color: #6b4370;
}

.display {
    font-family: "Lato", sans-serif;
    font-size: 5.25rem;
    letter-spacing: -1.5px;
    line-height: 5.25rem;
    word-wrap: normal;
}
@media screen and (max-width: 1023px) {
    .display {
        font-size: 4rem;
    }
}
@media screen and (max-width: 768px) {
    .display {
        font-size: 3.5rem;
    }
}

p,
li,
center {
    font-family: "Lato", sans-serif;
    font-size: 1.25rem;
    line-height: 2rem;
}

small {
    font-family: "Lato", sans-serif;
    font-size: 0.9375rem;
    letter-spacing: 0.2px;
}

b,
strong {
    font-family: inherit;
    font-weight: 600;
}

h1,
h1 center {
    font-family: "Lato", sans-serif;
    font-size: 3.375rem;
    line-height: 3.75rem;
    letter-spacing: -1.5px;
    word-wrap: normal;
}
@media screen and (max-width: 1023px) {
    h1,
    h1 center {
        font-size: 3rem;
    }
}
@media screen and (max-width: 768px) {
    h1,
    h1 center {
        font-size: 2.75rem;
    }
}

h2,
h2 center {
    font-family: "Lato", sans-serif;
    font-size: 2.75rem;
    line-height: 3.75rem;
}
@media screen and (max-width: 1023px) {
    h2,
    h2 center {
        font-size: 2rem;
    }
}

h3,
h3 center {
    font-family: "Lato", sans-serif;
    font-size: 2rem;
    line-height: 2.8125rem;
}
@media screen and (max-width: 1023px) {
    h3,
    h3 center {
        font-size: 1.75rem;
    }
}

h4,
h4 center {
    font-family: "Lato", sans-serif;
    font-size: 1.625rem;
    line-height: 1.875rem;
}
@media screen and (max-width: 1023px) {
    h4,
    h4 center {
        font-size: 1.5rem;
    }
}

h5,
h5 center {
    font-family: "Lato", sans-serif;
    font-size: 1.375rem;
    line-height: 1.875rem;
}
@media screen and (max-width: 1023px) {
    h5,
    h5 center {
        font-size: 1.375rem;
    }
}

h6,
h6 center {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
}
@media screen and (max-width: 1023px) {
    h6,
    h6 center {
        font-size: 1rem;
    }
}

.tab-content {
    margin-top: -25px;
    border: 1px solid #dbdbdb;
    background-color: white;
}

.bp-masthead {
    padding: 0 0 0 0;
    background-color: #f0f0f0;
    color: #484848;
}
.bp-masthead a {
    display: table;
    min-height: 1.75rem;
    color: #484848;
    font-size: 12px;
}
.bp-masthead a:hover {
    color: black;
}
@media screen and (max-width: 1023px) {
    .bp-masthead a {
        margin: 4px auto;
        text-align: left;
        padding: 0 2rem;
    }
}
.bp-masthead .is-text {
    display: table-cell;
    vertical-align: middle;
    padding-left: 0.25rem;
}
.bp-masthead .sgds-icon-sg-crest {
    display: table-cell;
    vertical-align: middle;
}
.bp-masthead .row.is-multiline.is-vcentered {
    margin-right: 0;
}

.bp-agencyhead {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.bp-agencyhead img {
    width: 240px;
    height: auto;
}

.bp-footer {
    padding: 2rem;
    background-color: #323232;
}
.bp-footer .title {
    color: white;
}
.bp-footer .divider {
    border-top: 1px solid #484848;
}
.bp-footer .row {
    justify-content: flex-start;
}
.bp-footer a {
    color: #b7b7b7;
    font-size: 17px;
    padding-right: 12px;
    line-height: 20px !important;
}
.bp-footer a:hover {
    color: white;
}
.bp-footer a:last-child {
    padding-right: 0px;
}
.bp-footer p {
    color: #b7b7b7;
    line-height: 25px !important;
}
.bp-footer p + p {
    margin-top: 15px;
}
.bp-footer ul li {
    display: inline-block;
}
@media screen and (max-width: 768px) {
    .bp-footer ul li {
        display: block;
    }
}
.bp-footer ul li.icons {
    margin-right: 10px;
}
.bp-footer ul li a {
    color: #b7b7b7;
}
.bp-footer ul li a:hover {
    color: white;
}
.bp-footer ul li + li:not(.icons) {
    margin-left: 15px;
}
@media screen and (max-width: 768px) {
    .bp-footer ul li + li:not(.icons) {
        margin-left: 0;
        margin-top: 15px;
    }
}
.bp-footer.bp-footer-links li + li {
    margin-left: 10px;
}
.bp-footer .is-right-desktop-only {
    text-align: right;
    padding-top: 4px;
}
@media screen and (max-width: 769px) {
    .bp-footer .is-right-desktop-only {
        text-align: left;
    }
}

.bp-footer.top-section {
    padding-bottom: 16px;
}

.bp-footer.bottom-section {
    padding-bottom: 24px;
}
.bp-footer.bottom-section a,
.bp-footer.bottom-section p {
    font-size: 16px !important;
}

.last-updated {
    margin-top: 0px !important;
}

.social-link {
    padding-right: 2rem;
}

#social-link-desktop {
    display: flex;
    justify-content: flex-end;
}

#social-link-tablet {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    padding-right: 48px;
    align-items: flex-end;
}

.bg-light {
    background-color: #f0f0f0;
}
.bg-white {
    background-color: white;
}
.bg-newssection {
    background-color: #f0f4f6;
}
.bg-prev-next {
    background-color: #6b4370;
}
.bg-table-grey {
    background-color: #f0f4f6;
}

.search-content {
    line-height: 1.5em;
}
.search-content a {
    text-decoration: underline;
}
.search-content .permalink {
    color: #767676;
}
.search-content p:last-child {
    margin-bottom: 0.8rem;
}
.search-content .search-summary {
    display: flex;
    justify-content: space-between;
}
.search-content .search-summary #search-page-indicator {
    display: none;
}

.bp-section.bp-section-pagetitle.search-section {
    padding-top: 60px;
    padding-bottom: 60px;
}
.bp-section.bp-section-pagetitle.search-section nav.bp-breadcrumb {
    margin-bottom: -5px;
}
.bp-section.bp-section-pagetitle.search-section #search-title {
    padding-top: 6px;
    padding-bottom: 6px;
}
.bp-section.bp-section-pagetitle.search-section #search-container {
    padding-top: 24px;
    padding-bottom: 24px;
}

.search-bar.sgds-icon.sgds-icon-search {
    top: 15px;
    left: 15px;
    display: block;
    visibility: initial;
    color: #767676;
}
.is-hidden-desktop .search-bar.sgds-icon.sgds-icon-search {
    top: 10px;
    left: 5px;
}

.bp-button.search-button {
    padding: 7px 24px !important;
    font-size: 15px !important;
    letter-spacing: 0.8px;
    font-weight: 600;
    height: 2.4rem;
}

.horizontal-scroll {
    overflow: auto;
}

.pagination {
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
}
.pagination span {
    width: 3rem;
    line-height: 3rem;
    border: 1px solid #d6d6d6;
    display: inline-block;
    margin: 0 0.25rem;
    color: #484848;
    font-size: 17px;
}
.pagination span:hover {
    background-color: inherit;
    border: 1px solid #6b4370;
    color: #6b4370;
}
.pagination span.selected-page:hover {
    background-color: #6b4370;
    color: white;
    border: 1px solid #6b4370;
}
.pagination span.sgds-icon-disabled:hover {
    background-color: white;
    color: #d6d6d6;
    border: 1px solid #d6d6d6;
}
.pagination span.sgds-icon {
    padding: 0 3rem 0 2rem;
    margin: 0 0.75rem;
}
.pagination .selected-page {
    background-color: #6b4370;
    color: white;
    border: 1px solid #6b4370;
}
.pagination .sgds-icon-disabled {
    color: #d6d6d6;
}
.pagination.search {
    display: none;
    justify-content: center;
}
.pagination.search .sgds-icon-disabled {
    pointer-events: none;
}
.pagination.search #paginator-pages span {
    cursor: pointer;
}

#key-highlights {
    background-color: #0487bf;
    color: white;
}
#key-highlights .col {
    transition: all 0.5s;
    border-left: 1px solid #03648d;
}
.key-highlights-text {
    display: block;
    padding: 1.2rem 2rem !important;
}
@media screen and (max-width: 768px) {
    #key-highlights .col {
        border-left: 0;
        border-top: 1px solid #03648d;
    }
}
#key-highlights .col:hover {
    color: #e6e6e6;
    background-color: #03648d;
}
#key-highlights .col p {
    font-size: 16px !important;
    line-height: 22px !important;
}
#key-highlights .col p:nth-child(1) {
    margin-bottom: 5px;
}
#key-highlights .col:first-child {
    border-left: 0;
}
#key-highlights .key-highlight-title {
    letter-spacing: 0.2px !important;
}

.eyebrow {
    font-size: 16px !important;
    letter-spacing: 1.5px;
    font-weight: 400;
    line-height: 22px;
}

.career-container .career-carousel .profile-content {
    position: absolute;
    width: 70%;
    right: 0;
    bottom: 0;
    background-color: #f5a623;
    padding: 1rem;
    color: white;
}
.career-container .bg-gradient {
    background: #b41e8e;
    background: -moz-linear-gradient(45deg, #b41e8e 0%, #5c3f9e 50%, #0061af 100%);
    background: -webkit-linear-gradient(45deg, #b41e8e 0%, #5c3f9e 50%, #0061af 100%);
    background: linear-gradient(45deg, #b41e8e 0%, #5c3f9e 50%, #0061af 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b41e8e', endColorstr='#0061af',GradientType=1 );
}
@media screen and (max-width: 768px) {
    .career-container .career-item {
        padding: 3rem 2rem !important;
    }
}

.programme-container .offset-top {
    margin-right: 0;
    margin-top: -104px;
}
@media screen and (max-width: 1023px) {
    .programme-container .offset-top {
        margin-top: -37px;
    }
}
@media screen and (max-width: 1023px) {
    .programme-container .row.offset-margin {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 1023px) {
    .programme-container .item {
        padding-bottom: 2rem !important;
    }
}

.owl-dot.active span {
    background: white !important;
}
.owl-dot span {
    background: rgba(255, 255, 255, 0.3) !important;
}

.carousel-nav-container {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 100;
}
.carousel-nav-container .carousel-nav {
    width: 68px;
    text-align: center;
    float: left;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 1.5rem;
}
.carousel-nav-container .carousel-nav:hover {
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
}
.carousel-nav-container .carousel-nav.right {
    margin-left: -1px;
}
.carousel-nav-container.programme-nav {
    margin-left: -23px;
    position: relative;
    left: 0;
    top: 0;
}

.owl-dots {
    position: absolute;
    width: 100%;
    bottom: 10px;
}
.news-carousel .owl-dots {
    position: relative;
    bottom: 0;
}

.col {
    word-wrap: break-word;
}

.bp-accordion-header {
    background-color: #f0f4f6;
    border-top: 1px solid white;
    vertical-align: middle;
}
.bp-accordion-header:hover {
    background-color: #d0dde3;
}

.bp-accordion-button {
    margin-top: 3px;
    color: #767676;
}
.bp-accordion-button.sgds-icon-minus {
    color: #767676;
}

.bp-accordion-body {
    display: none;
}

.content a {
    line-height: 1.25;
    color: #4372d6;
    margin-bottom: 2rem;
}
.content a:hover {
    color: #3a79ff;
    text-decoration: underline;
}

* {
    font-family: "Lato", sans-serif;
}

.is-vh-10 {
    height: 10vh;
}

.is-vh-20 {
    height: 20vh;
}

.is-vh-30 {
    height: 30vh;
}

.is-vh-40 {
    height: 40vh;
}

.is-vh-50 {
    height: 50vh;
}

.is-vh-60 {
    height: 60vh;
}

.is-vh-70 {
    height: 70vh;
}

.is-vh-80 {
    height: 80vh;
}

.is-vh-90 {
    height: 90vh;
}

.is-vh-100 {
    height: 100vh;
}

.no-margin {
    margin: 0 !important;
}

.margin {
    margin: 1rem !important;
}
.margin--xs {
    margin: 0.25rem !important;
}
.margin--sm {
    margin: 0.5rem !important;
}
.margin--lg {
    margin: 2rem !important;
}
.margin--xl {
    margin: 4rem !important;
}
.margin--none {
    margin: 0 !important;
}
.margin--top {
    margin-top: 1rem !important;
}
.margin--top--xs {
    margin-top: 0.25rem !important;
}
.margin--top--sm {
    margin-top: 0.5rem !important;
}
.margin--top--lg {
    margin-top: 2rem !important;
}
.margin--top--xl {
    margin-top: 4rem !important;
}
.margin--top--none {
    margin-top: 0 !important;
}
.margin--right {
    margin-right: 1rem !important;
}
.margin--right--xs {
    margin-right: 0.25rem !important;
}
.margin--right--sm {
    margin-right: 0.5rem !important;
}
.margin--right--lg {
    margin-right: 2rem !important;
}
.margin--right--xl {
    margin-right: 4rem !important;
}
.margin--right--none {
    margin-right: 0 !important;
}
.margin--bottom {
    margin-bottom: 1rem !important;
}
.margin--bottom--xs {
    margin-bottom: 0.25rem !important;
}
.margin--bottom--sm {
    margin-bottom: 0.5rem !important;
}
.margin--bottom--lg {
    margin-bottom: 2rem !important;
}
.margin--bottom--xl {
    margin-bottom: 4rem !important;
}
.margin--bottom--none {
    margin-bottom: 0 !important;
}
.margin--left {
    margin-left: 1rem !important;
}
.margin--left--xs {
    margin-left: 0.25rem !important;
}
.margin--left--sm {
    margin-left: 0.5rem !important;
}
.margin--left--lg {
    margin-left: 2rem !important;
}
.margin--left--xl {
    margin-left: 4rem !important;
}
.margin--left--none {
    margin-left: 0 !important;
}

.padding {
    padding: 1rem !important;
}
.padding--xs {
    padding: 0.25rem !important;
}
.padding--sm {
    padding: 0.5rem !important;
}
.padding--lg {
    padding: 2rem !important;
}
.padding--xl {
    padding: 4rem !important;
}
.padding--none {
    padding: 0 !important;
}
.padding--top {
    padding-top: 1rem !important;
}
.padding--top--xs {
    padding-top: 0.25rem !important;
}
.padding--top--sm {
    padding-top: 0.5rem !important;
}
.padding--top--lg {
    padding-top: 2rem !important;
}
.padding--top--xl {
    padding-top: 4rem !important;
}
.padding--top--none {
    padding-top: 0 !important;
}
.padding--right {
    padding-right: 1rem !important;
}
.padding--right--xs {
    padding-right: 0.25rem !important;
}
.padding--right--sm {
    padding-right: 0.5rem !important;
}
.padding--right--lg {
    padding-right: 2rem !important;
}
.padding--right--xl {
    padding-right: 4rem !important;
}
.padding--right--none {
    padding-right: 0 !important;
}
.padding--bottom {
    padding-bottom: 1rem !important;
}
.padding--bottom--xs {
    padding-bottom: 0.25rem !important;
}
.padding--bottom--sm {
    padding-bottom: 0.5rem !important;
}
.padding--bottom--lg {
    padding-bottom: 2rem !important;
}
.padding--bottom--xl {
    padding-bottom: 4rem !important;
}
.padding--bottom--none {
    padding-bottom: 0 !important;
}
.padding--left {
    padding-left: 1rem !important;
}
.padding--left--xs {
    padding-left: 0.25rem !important;
}
.padding--left--sm {
    padding-left: 0.5rem !important;
}
.padding--left--lg {
    padding-left: 2rem !important;
}
.padding--left--xl {
    padding-left: 4rem !important;
}
.padding--left--none {
    padding-left: 0 !important;
}

.hide {
    display: none;
    visibility: hidden;
}

.show {
    display: block;
    visibility: visible;
}

.is-position-relative {
    position: relative;
}

.is-offset-sideNav {
    position: fixed;
    width: 22%;
    top: 40px;
}
.touch .is-offset-sideNav {
    position: relative !important;
    width: 100%;
}

#loading-spinner {
    text-align: center;
}

.lds-default {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-default div {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #323232;
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
    animation-delay: 0s;
    top: 29px;
    left: 53px;
}
.lds-default div:nth-child(2) {
    animation-delay: -0.1s;
    top: 18px;
    left: 50px;
}
.lds-default div:nth-child(3) {
    animation-delay: -0.2s;
    top: 9px;
    left: 41px;
}
.lds-default div:nth-child(4) {
    animation-delay: -0.3s;
    top: 6px;
    left: 29px;
}
.lds-default div:nth-child(5) {
    animation-delay: -0.4s;
    top: 9px;
    left: 18px;
}
.lds-default div:nth-child(6) {
    animation-delay: -0.5s;
    top: 18px;
    left: 9px;
}
.lds-default div:nth-child(7) {
    animation-delay: -0.6s;
    top: 29px;
    left: 6px;
}
.lds-default div:nth-child(8) {
    animation-delay: -0.7s;
    top: 41px;
    left: 9px;
}
.lds-default div:nth-child(9) {
    animation-delay: -0.8s;
    top: 50px;
    left: 18px;
}
.lds-default div:nth-child(10) {
    animation-delay: -0.9s;
    top: 53px;
    left: 29px;
}
.lds-default div:nth-child(11) {
    animation-delay: -1s;
    top: 50px;
    left: 41px;
}
.lds-default div:nth-child(12) {
    animation-delay: -1.1s;
    top: 41px;
    left: 50px;
}

@keyframes lds-default {
    0%,
    20%,
    80%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

/*# sourceMappingURL=blueprint.css.map */
