html {
    box-sizing: border-box;
    font-size: 10px;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

a {
    color: #051219;
}

a:hover,
a:focus {
    color: #64c4a8;
}

body {    
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.4;
    background-color: #fff;
}

hr {
    height: 0;
    border-color: #051219;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

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

b,
strong {
    font-weight: 700;
}

small {
    font-size: 80%;
}

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

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

button,
select {
    text-transform: none;
}

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

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

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

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    padding: 0;
}

progress {
    vertical-align: baseline;
}

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

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

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

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

summary {
    display: list-item;
}

blockquote,
ul,
ol {
    margin: 0;
}

ul,
ol {
    padding: 0;
}

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

[class^="icon-"], [class*=" icon-"] {
    display: inline-block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    fill: currentColor;
    stroke: currentColor;
}

.u_bg-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.u_text-center {
    text-align: center;
}

.u_text-hide {
    font: 0/1 a;
    text-shadow: none;
    color: transparent !important;
}

.u_btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: transparent;
}

    .u_btn-icon:hover, .u_btn-icon:focus {
        outline: 0;
    }

.u_padding-top-none {
    padding-top: 0 !important;
}

.u_padding-bottom-none {
    padding-bottom: 0 !important;
}

.u_align-right {
    text-align: right;
}

.u_justify-start {
    justify-content: flex-start;
}

.u_justify-end {
    justify-content: flex-end;
}

.u_justify-center {
    justify-content: center;
}

.u_justify-between {
    justify-content: space-between;
}

@media (max-width: 1200px) {
    .u_hide-mobile {
        display: none;
    }
}

.u_image-cover, .flockler__item img, .three-column .image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    background-position: center center;
}

.u_text-lighter {
    color: #333333;
}

.u_text-light {
    color: #6E6E6F;
}

.u_button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: all .3s ease;
    background-color: rgba(0, 0, 0, 0);
}

.u_text-muted {
    color: #8D8D93;
}

.u_text-primary {
    color: #00E6A1;
}

.no-wrap {
    white-space: nowrap;
}

.bg-video {
    transition: none !important;
    -o-object-fit: cover;
    object-fit: cover;
}

.image-scale-on-load {
    transform: scale(1.2, 1.2);
    -webkit-animation: imageScale 1.4s cubic-bezier(0.5, 0, 0, 1) forwards;
    animation: imageScale 1.4s cubic-bezier(0.5, 0, 0, 1) forwards;
}

.u_bottom-auto {
    bottom: auto;
}

@-webkit-keyframes showHero {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes showHero {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeUp {
    0% {
        transform: translateY(32px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        transform: translateY(32px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes fadeUpSmall {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUpSmall {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes showFaqContent {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes showFaqContent {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes hideFaqContent {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes hideFaqContent {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes imageScale {
    0% {
        transform: scale(1.2, 1.2);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes imageScale {
    0% {
        transform: scale(1.2, 1.2);
    }

    100% {
        transform: scale(1, 1);
    }
}

@-webkit-keyframes swipeGesture {
    0% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(-16px, 0);
    }

    66% {
        transform: translate(16px, 0);
    }
}

@keyframes swipeGesture {
    0% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(-16px, 0);
    }

    66% {
        transform: translate(16px, 0);
    }
}

body {
    color: #051503;
    background-color: #fff;
}

.will-reveal {
    visibility: hidden;
}

.image-reveal-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 8px;
    padding-left: 8px;
}

@media (min-width: 576px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 460px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1620px;
    }
}

.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 8px;
    padding-left: 8px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -8px;
    margin-left: -8px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

    .no-gutters > .col,
    .no-gutters > [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-xsm-1, .col-xsm-2, .col-xsm-3, .col-xsm-4, .col-xsm-5, .col-xsm-6, .col-xsm-7, .col-xsm-8, .col-xsm-9, .col-xsm-10, .col-xsm-11, .col-xsm-12, .col-xsm,
.col-xsm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl,
.col-xxl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 8px;
    padding-left: 8px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    order: -1;
}

.order-last {
    order: 13;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}

.order-11 {
    order: 11;
}

.order-12 {
    order: 12;
}

.offset-1 {
    margin-left: 8.33333%;
}

.offset-2 {
    margin-left: 16.66667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333%;
}

.offset-5 {
    margin-left: 41.66667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333%;
}

.offset-8 {
    margin-left: 66.66667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333%;
}

.offset-11 {
    margin-left: 91.66667%;
}

@media (min-width: 460px) {
    .col-xsm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xsm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xsm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xsm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xsm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xsm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xsm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xsm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xsm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xsm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xsm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xsm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xsm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xsm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xsm-first {
        order: -1;
    }

    .order-xsm-last {
        order: 13;
    }

    .order-xsm-0 {
        order: 0;
    }

    .order-xsm-1 {
        order: 1;
    }

    .order-xsm-2 {
        order: 2;
    }

    .order-xsm-3 {
        order: 3;
    }

    .order-xsm-4 {
        order: 4;
    }

    .order-xsm-5 {
        order: 5;
    }

    .order-xsm-6 {
        order: 6;
    }

    .order-xsm-7 {
        order: 7;
    }

    .order-xsm-8 {
        order: 8;
    }

    .order-xsm-9 {
        order: 9;
    }

    .order-xsm-10 {
        order: 10;
    }

    .order-xsm-11 {
        order: 11;
    }

    .order-xsm-12 {
        order: 12;
    }

    .offset-xsm-0 {
        margin-left: 0;
    }

    .offset-xsm-1 {
        margin-left: 8.33333%;
    }

    .offset-xsm-2 {
        margin-left: 16.66667%;
    }

    .offset-xsm-3 {
        margin-left: 25%;
    }

    .offset-xsm-4 {
        margin-left: 33.33333%;
    }

    .offset-xsm-5 {
        margin-left: 41.66667%;
    }

    .offset-xsm-6 {
        margin-left: 50%;
    }

    .offset-xsm-7 {
        margin-left: 58.33333%;
    }

    .offset-xsm-8 {
        margin-left: 66.66667%;
    }

    .offset-xsm-9 {
        margin-left: 75%;
    }

    .offset-xsm-10 {
        margin-left: 83.33333%;
    }

    .offset-xsm-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        order: -1;
    }

    .order-sm-last {
        order: 13;
    }

    .order-sm-0 {
        order: 0;
    }

    .order-sm-1 {
        order: 1;
    }

    .order-sm-2 {
        order: 2;
    }

    .order-sm-3 {
        order: 3;
    }

    .order-sm-4 {
        order: 4;
    }

    .order-sm-5 {
        order: 5;
    }

    .order-sm-6 {
        order: 6;
    }

    .order-sm-7 {
        order: 7;
    }

    .order-sm-8 {
        order: 8;
    }

    .order-sm-9 {
        order: 9;
    }

    .order-sm-10 {
        order: 10;
    }

    .order-sm-11 {
        order: 11;
    }

    .order-sm-12 {
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .offset-sm-2 {
        margin-left: 16.66667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333%;
    }

    .offset-sm-5 {
        margin-left: 41.66667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333%;
    }

    .offset-sm-8 {
        margin-left: 66.66667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333%;
    }

    .offset-sm-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        order: -1;
    }

    .order-md-last {
        order: 13;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-3 {
        order: 3;
    }

    .order-md-4 {
        order: 4;
    }

    .order-md-5 {
        order: 5;
    }

    .order-md-6 {
        order: 6;
    }

    .order-md-7 {
        order: 7;
    }

    .order-md-8 {
        order: 8;
    }

    .order-md-9 {
        order: 9;
    }

    .order-md-10 {
        order: 10;
    }

    .order-md-11 {
        order: 11;
    }

    .order-md-12 {
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333%;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333%;
    }

    .offset-md-5 {
        margin-left: 41.66667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333%;
    }

    .offset-md-8 {
        margin-left: 66.66667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333%;
    }

    .offset-md-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        order: -1;
    }

    .order-lg-last {
        order: 13;
    }

    .order-lg-0 {
        order: 0;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .order-lg-4 {
        order: 4;
    }

    .order-lg-5 {
        order: 5;
    }

    .order-lg-6 {
        order: 6;
    }

    .order-lg-7 {
        order: 7;
    }

    .order-lg-8 {
        order: 8;
    }

    .order-lg-9 {
        order: 9;
    }

    .order-lg-10 {
        order: 10;
    }

    .order-lg-11 {
        order: 11;
    }

    .order-lg-12 {
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-first {
        order: -1;
    }

    .order-xl-last {
        order: 13;
    }

    .order-xl-0 {
        order: 0;
    }

    .order-xl-1 {
        order: 1;
    }

    .order-xl-2 {
        order: 2;
    }

    .order-xl-3 {
        order: 3;
    }

    .order-xl-4 {
        order: 4;
    }

    .order-xl-5 {
        order: 5;
    }

    .order-xl-6 {
        order: 6;
    }

    .order-xl-7 {
        order: 7;
    }

    .order-xl-8 {
        order: 8;
    }

    .order-xl-9 {
        order: 9;
    }

    .order-xl-10 {
        order: 10;
    }

    .order-xl-11 {
        order: 11;
    }

    .order-xl-12 {
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333%;
    }

    .offset-xl-2 {
        margin-left: 16.66667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333%;
    }

    .offset-xl-5 {
        margin-left: 41.66667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333%;
    }

    .offset-xl-8 {
        margin-left: 66.66667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333%;
    }

    .offset-xl-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1440px) {
    .col-xxl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xxl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xxl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xxl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xxl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xxl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xxl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xxl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xxl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xxl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xxl-first {
        order: -1;
    }

    .order-xxl-last {
        order: 13;
    }

    .order-xxl-0 {
        order: 0;
    }

    .order-xxl-1 {
        order: 1;
    }

    .order-xxl-2 {
        order: 2;
    }

    .order-xxl-3 {
        order: 3;
    }

    .order-xxl-4 {
        order: 4;
    }

    .order-xxl-5 {
        order: 5;
    }

    .order-xxl-6 {
        order: 6;
    }

    .order-xxl-7 {
        order: 7;
    }

    .order-xxl-8 {
        order: 8;
    }

    .order-xxl-9 {
        order: 9;
    }

    .order-xxl-10 {
        order: 10;
    }

    .order-xxl-11 {
        order: 11;
    }

    .order-xxl-12 {
        order: 12;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }

    .offset-xxl-1 {
        margin-left: 8.33333%;
    }

    .offset-xxl-2 {
        margin-left: 16.66667%;
    }

    .offset-xxl-3 {
        margin-left: 25%;
    }

    .offset-xxl-4 {
        margin-left: 33.33333%;
    }

    .offset-xxl-5 {
        margin-left: 41.66667%;
    }

    .offset-xxl-6 {
        margin-left: 50%;
    }

    .offset-xxl-7 {
        margin-left: 58.33333%;
    }

    .offset-xxl-8 {
        margin-left: 66.66667%;
    }

    .offset-xxl-9 {
        margin-left: 75%;
    }

    .offset-xxl-10 {
        margin-left: 83.33333%;
    }

    .offset-xxl-11 {
        margin-left: 91.66667%;
    }
}

@media print {
    *,
    *::before,
    *::after {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    a:not(.btn) {
        text-decoration: underline;
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    @page {
        size: a3;
    }

    body {
        min-width: 992px !important;
    }

    .container {
        min-width: 992px !important;
    }

    .navbar {
        display: none;
    }

    .badge {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

        .table td,
        .table th {
            background-color: #fff !important;
        }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}

@font-face {
    font-family: 'swiper-icons';
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
    font-weight: 400;
    font-style: normal;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

    .swiper-container-autoheight .swiper-wrapper {
        align-items: flex-start;
        transition-property: transform, height;
    }

/* 3D Effects */
.swiper-container-3d {
    perspective: 1200px;
}

    .swiper-container-3d .swiper-wrapper,
    .swiper-container-3d .swiper-slide,
    .swiper-container-3d .swiper-slide-shadow-left,
    .swiper-container-3d .swiper-slide-shadow-right,
    .swiper-container-3d .swiper-slide-shadow-top,
    .swiper-container-3d .swiper-slide-shadow-bottom,
    .swiper-container-3d .swiper-cube-shadow {
        transform-style: preserve-3d;
    }

    .swiper-container-3d .swiper-slide-shadow-left,
    .swiper-container-3d .swiper-slide-shadow-right,
    .swiper-container-3d .swiper-slide-shadow-top,
    .swiper-container-3d .swiper-slide-shadow-bottom {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10;
    }

    .swiper-container-3d .swiper-slide-shadow-left {
        background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

    .swiper-container-3d .swiper-slide-shadow-right {
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

    .swiper-container-3d .swiper-slide-shadow-top {
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

    .swiper-container-3d .swiper-slide-shadow-bottom {
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}

    .swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
        display: none;
    }

    .swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: start start;
    }

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}

.swiper-button-prev,
.swiper-button-next {
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00E6A1;
}

    .swiper-button-prev.swiper-button-disabled,
    .swiper-button-next.swiper-button-disabled {
        opacity: 0;
        visibility: hidden;
        cursor: auto;
        pointer-events: none;
    }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
    transform: rotate(180deg);
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .swiper-pagination.swiper-pagination-hidden {
        opacity: 0;
    }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transform: scale(0.33);
        position: relative;
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
        transform: scale(1);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
        transform: scale(1);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
        transform: scale(0.66);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
        transform: scale(0.33);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
        transform: scale(0.66);
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
        transform: scale(0.33);
    }

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #00E6A1;
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}

    .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 6px 0;
        display: block;
    }

    .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
    }

        .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
            display: inline-block;
            transition: 200ms transform, 200ms top;
        }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

    .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transition: 200ms transform, 200ms left;
    }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: #00E6A1;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: scale(0);
        transform-origin: left top;
    }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

    .swiper-container-vertical > .swiper-pagination-progressbar,
    .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
        width: 4px;
        height: 100%;
        left: 0;
        top: 0;
    }

.swiper-pagination-lock {
    display: none;
}

/* Scrollbar */
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .swiper-zoom-container > img,
    .swiper-zoom-container > svg,
    .swiper-zoom-container > canvas {
        max-width: 100%;
        max-height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }

.swiper-slide-zoomed {
    cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid #00E6A1;
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg);
    }
}

/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

    .swiper-container-fade .swiper-slide .swiper-slide {
        pointer-events: none;
    }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

    .swiper-container-cube .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
        visibility: hidden;
        transform-origin: 0 0;
        width: 100%;
        height: 100%;
    }

        .swiper-container-cube .swiper-slide .swiper-slide {
            pointer-events: none;
        }

    .swiper-container-cube.swiper-container-rtl .swiper-slide {
        transform-origin: 100% 0;
    }

    .swiper-container-cube .swiper-slide-active,
    .swiper-container-cube .swiper-slide-active .swiper-slide-active {
        pointer-events: auto;
    }

    .swiper-container-cube .swiper-slide-active,
    .swiper-container-cube .swiper-slide-next,
    .swiper-container-cube .swiper-slide-prev,
    .swiper-container-cube .swiper-slide-next + .swiper-slide {
        pointer-events: auto;
        visibility: visible;
    }

    .swiper-container-cube .swiper-slide-shadow-top,
    .swiper-container-cube .swiper-slide-shadow-bottom,
    .swiper-container-cube .swiper-slide-shadow-left,
    .swiper-container-cube .swiper-slide-shadow-right {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .swiper-container-cube .swiper-cube-shadow {
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.6;
        -webkit-filter: blur(50px);
        filter: blur(50px);
        z-index: 0;
    }

.swiper-container-flip {
    overflow: visible;
}

    .swiper-container-flip .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
    }

        .swiper-container-flip .swiper-slide .swiper-slide {
            pointer-events: none;
        }

    .swiper-container-flip .swiper-slide-active,
    .swiper-container-flip .swiper-slide-active .swiper-slide-active {
        pointer-events: auto;
    }

    .swiper-container-flip .swiper-slide-shadow-top,
    .swiper-container-flip .swiper-slide-shadow-bottom,
    .swiper-container-flip .swiper-slide-shadow-left,
    .swiper-container-flip .swiper-slide-shadow-right {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

.swiper-button-prev {
    color: #02484D;
}

.swiper-button:hover {
    color: #000000;
}

    .swiper-button:hover .arrow--inline path {
        stroke-width: 2;
    }

.swiper-slide {
    box-sizing: border-box;
}

.swiper-pagination-bullet {
    flex-shrink: 0;
}

body,
html {
    position: relative;
    height: 100%;
    min-height: 100%;
}

body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    body.menu-is-open {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

.l_content-container {
    background-color: #FBFBFB;
}

.main {
    position: relative;
    z-index: 10;
    flex: 1;
    background-color: #fff;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
}

.container {
    padding-left: 0;
    padding-right: 0;
}

.u_row-center {
    justify-content: center;
}

.u_row-start {
    justify-content: flex-start;
}

.u_row-end {
    justify-content: flex-end;
}

.l_content-container {
    z-index: 1;
    flex: 1;
    position: relative;
    z-index: 1;
}

.l_content-spacer {
    pointer-events: none;
}

.navigation ul {
    list-style-type: none;
}

@media all and (-ms-high-contrast: none) {
    *::-ms-backdrop,
    .l_content-container,
    .template__content,
    .l_sidebar-content {
        flex: auto !important;
    }
}

.ie11 body {
    display: block;
}

.l_left-light-bg {
    min-height: 600px;
    position: relative;
    background-color: #FBFBFB;
    padding-bottom: 10rem;
    padding-top: 3rem;
}

@media (min-width: 768px) {
    .l_left-light-bg {
        padding-top: 9rem;
    }
}

@media (min-width: 992px) {
    .l_left-light-bg {
        padding-top: 10rem;
    }
}

.l_left-light-bg:before {
    content: '';
    display: block;
    background-color: #FBFBFB;
    position: absolute;
    top: 0;
    left: -50vw;
    height: 100%;
    width: 50vw;
}

.l_left-light-bg:after {
    content: '';
    display: block;
    background-color: #FBFBFB;
    position: absolute;
    top: 0;
    right: -50vw;
    height: 100%;
    width: 50vw;
}

@media (min-width: 768px) {
    .l_left-light-bg:after {
        display: none;
    }
}

.l_left-light-bg .pattern .fill {
    fill: #D9DADB;
}

@media (min-width: 768px) {
    .template--left-light {
        padding-bottom: 12rem;
    }
}

.l_handicap-row .l_right-col {
    display: flex;
    align-items: center;
}

    .l_handicap-row .l_right-col .stat {
        padding-left: 3.2rem;
        padding-right: 3.2rem;
    }

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h3, .h1, .h3 {
    font-family: Butler;
    font-style: normal;
}

h2, h4, h5, h6, .h2, .h4, .h5, .h6 {
    font-family: acumin-pro, sans-serif;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5 {
    font-weight: 500;    
}

.h1 strong,
.h2 strong,
.h3 strong,
.h4 strong,
.h5 strong {
    font-weight: 600;
}

.h1 {
    font-size: 2.8rem;
    line-height: 1.254545454545455;
    letter-spacing: 0.01em;
}

@media (min-width: 375px) {
    .h1 {
        font-size: 28px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .h1 {
        font-size: calc(28px + 14 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .h1 {
        font-size: 42px;
    }
}

@media (min-width: 820px) {
    .h1 {
        font-size: 42px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .h1 {
        font-size: calc(42px + 13 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .h1 {
        font-size: 55px;
    }
}

.h2 {
    font-size: 2.4rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

@media (min-width: 375px) {
    .h2 {
        font-size: 24px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .h2 {
        font-size: calc(24px + 6 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .h2 {
        font-size: 30px;
    }
}

@media (min-width: 820px) {
    .h2 {
        font-size: 30px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .h2 {
        font-size: calc(30px + 10 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .h2 {
        font-size: 40px;
    }
}

.h3 {
    font-size: 2.2rem;
    line-height: 1.3125;
    letter-spacing: 0.01em;
}

@media (min-width: 375px) {
    .h3 {
        font-size: 22px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .h3 {
        font-size: calc(22px + 6 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .h3 {
        font-size: 28px;
    }
}

@media (min-width: 820px) {
    .h3 {
        font-size: 28px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .h3 {
        font-size: calc(28px + 4 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .h3 {
        font-size: 32px;
    }
}

.h4 {
    font-size: 2rem;
    line-height: 1.4;
}

@media (min-width: 375px) {
    .h4 {
        font-size: 20px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .h4 {
        font-size: calc(20px + 6 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .h4 {
        font-size: 26px;
    }
}

@media (min-width: 820px) {
    .h4 {
        font-size: 26px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .h4 {
        font-size: calc(26px + 4 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .h4 {
        font-size: 30px;
    }
}

.h5 {
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .h5 {
        font-size: 18px;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .h5 {
        font-size: calc(18px + 4 * ((100vw - 768px) / 52));
    }
}

@media screen and (min-width: 768px) and (min-width: 820px) {
    .h5 {
        font-size: 22px;
    }
}

.h6 {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    font-weight: 400;
    text-transform: uppercase;
}

    .h6 strong {
        font-weight: 500;
    }

p,
.p {
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 1.2;
}

    p strong,
    .p strong {
        font-weight: 500;
    }

    p.small,
    .p.small {
        font-size: 1.5rem;
        line-height: 1.6;
    }

blockquote,
.lead {
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    font-weight: 300;
    font-style: normal;
    line-height: 1.5;
    margin-bottom: 1.6rem;
}

@media (min-width: 768px) {
    blockquote,
    .lead {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) {
    blockquote,
    .lead {
        font-size: 16px;
    }
}

@media screen and (min-width: 992px) and (min-width: 980px) {
    blockquote,
    .lead {
        font-size: calc(16px + 2 * ((100vw - 980px) / 420));
    }
}

@media screen and (min-width: 992px) and (min-width: 1400px) {
    blockquote,
    .lead {
        font-size: 18px;
    }
}

blockquote {
    padding-left: 2.4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-left: 2px solid #00E6A1;
}

    blockquote p {
        margin-bottom: 0;
        font-size: inherit;
    }

.detail {
    font-weight: 300;
    font-size: 2rem;
    line-height: 1.5;
}

.detail-medium {
    font-weight: 300;
    font-size: 1.8rem;
    line-height: 1.5;
}

    .detail-medium strong {
        font-weight: 400;
    }

.detail-small {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.detail-minor {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5 {
    font-weight: 300;
}

    .rte h1 strong,
    .rte h2 strong,
    .rte h3 strong,
    .rte h4 strong,
    .rte h5 strong {
        font-weight: 400;
    }

.rte h1 {
    font-size: 2.8rem;
    line-height: 1.254545454545455;
    letter-spacing: 0.01em;
}

@media (min-width: 375px) {
    .rte h1 {
        font-size: 28px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .rte h1 {
        font-size: calc(28px + 14 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .rte h1 {
        font-size: 42px;
    }
}

@media (min-width: 820px) {
    .rte h1 {
        font-size: 42px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .rte h1 {
        font-size: calc(42px + 13 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .rte h1 {
        font-size: 55px;
    }
}

.rte h2 {
    font-size: 2.4rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

@media (min-width: 375px) {
    .rte h2 {
        font-size: 24px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .rte h2 {
        font-size: calc(24px + 6 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .rte h2 {
        font-size: 30px;
    }
}

@media (min-width: 820px) {
    .rte h2 {
        font-size: 30px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .rte h2 {
        font-size: calc(30px + 10 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .rte h2 {
        font-size: 40px;
    }
}

.rte h3 {
    font-size: 2.2rem;
    line-height: 1.3125;
    letter-spacing: 0.01em;
}

@media (min-width: 375px) {
    .rte h3 {
        font-size: 22px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .rte h3 {
        font-size: calc(22px + 6 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .rte h3 {
        font-size: 28px;
    }
}

@media (min-width: 820px) {
    .rte h3 {
        font-size: 28px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .rte h3 {
        font-size: calc(28px + 4 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .rte h3 {
        font-size: 32px;
    }
}

.rte h4 {
    font-size: 2rem;
    line-height: 1.4;
}

@media (min-width: 375px) {
    .rte h4 {
        font-size: 20px;
    }
}

@media screen and (min-width: 375px) and (min-width: 375px) {
    .rte h4 {
        font-size: calc(20px + 6 * ((100vw - 375px) / 445));
    }
}

@media screen and (min-width: 375px) and (min-width: 820px) {
    .rte h4 {
        font-size: 26px;
    }
}

@media (min-width: 820px) {
    .rte h4 {
        font-size: 26px;
    }
}

@media screen and (min-width: 820px) and (min-width: 820px) {
    .rte h4 {
        font-size: calc(26px + 4 * ((100vw - 820px) / 580));
    }
}

@media screen and (min-width: 820px) and (min-width: 1400px) {
    .rte h4 {
        font-size: 30px;
    }
}

.rte h5 {
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .rte h5 {
        font-size: 18px;
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .rte h5 {
        font-size: calc(18px + 4 * ((100vw - 768px) / 52));
    }
}

@media screen and (min-width: 768px) and (min-width: 820px) {
    .rte h5 {
        font-size: 22px;
    }
}

.rte h6 {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    font-weight: 400;
    text-transform: uppercase;
}

    .rte h6 strong {
        font-weight: 500;
    }

.rte ul,
.rte ol {
    margin-bottom: 2.4rem;
}

@media (min-width: 768px) {
    .rte ul,
    .rte ol {
        margin-bottom: 3rem;
    }

        .rte ul:last-child,
        .rte ol:last-child {
            margin-bottom: 0;
        }
}

.rte ul li,
.rte ol li {
    line-height: 1.5;
    font-size: 1.4rem;
    margin-bottom: .9rem;
}

    .rte ul li:last-child,
    .rte ol li:last-child {
        margin-bottom: 0;
    }

.rte a:not(.button) {
    border-bottom: 1px solid currentColor;
    color: currentColor;
    text-decoration: none;
}

.contact-text {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.5;
    color: #6E6E6F;
}

    .contact-text strong {
        font-weight: 500;
    }

    .contact-text a {
        color: #02484D;
        text-decoration: underline;
        transition: color .35s ease;
    }

        .contact-text a:hover, .contact-text a:focus {
            color: #00E6A1;
        }

.generic-table {
    width: 100%;
    border-collapse: collapse;
}

    .generic-table th {
        text-align: left;
        font-size: 1.4rem;
        font-weight: 400;
    }

    .generic-table td {
        border-bottom: 1px solid #D9DADB;
    }

    .generic-table th,
    .generic-table td {
        padding: 1.6rem 1.2rem;
    }

@media (max-width: 1199.98px) {
    .generic-table th:first-child,
    .generic-table td:first-child {
        padding-left: 0;
    }

    .generic-table th:last-child,
    .generic-table td:last-child {
        padding-right: 0;
    }
}

.button {
    font-size: 1.4rem;
    line-height: 1.3;
    display: inline-flex;
    align-items: center;
    height: 6rem;
    outline: 0;
    border: 0;
    background-color: transparent;
    text-decoration: none;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button--primary {
    border: 1px solid #00E6A1;
    color: #02484D;
    padding: 1.5rem 1.7rem 1.5rem 2rem;
    position: relative;
}

    .button--primary .button__icon {
        margin-left: 4.6rem;
        position: relative;
        z-index: 1;
        transition: transform 0.3s cubic-bezier(0.75, 0, 0.25, 1);
    }

    .button--primary .button__text {
        position: relative;
        z-index: 1;
    }

    .button--primary:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background-color: #00E6A1;
        transition: width 0.3s cubic-bezier(0.75, 0, 0.25, 1);
    }

    .button--primary:hover, .button--primary:focus, .button--primary--active {
        color: #051219 !important;
    }

        .button--primary:hover:before, .button--primary:focus:before, .button--primary--active:before {
            width: 100%;
        }

        .button--primary:hover .button__icon, .button--primary:focus .button__icon {
            transform: translateX(3px);
        }

.button--text-arrow {
    padding-left: 0;
    color: #00E6A1;
}

    .button--text-arrow .button__text {
        padding-right: 2rem;
    }

    .button--text-arrow:hover .button__text, .button--text-arrow:focus .button__text {
        font-weight: 500;
    }

    .button--text-arrow:hover .arrow--inline path, .button--text-arrow:focus .arrow--inline path {
        stroke-width: 2;
    }

.arrow--inline path {
    transition: stroke-width .2s ease;
    stroke: currentColor;
}

.button--cta {
    position: absolute;
    bottom: -6rem;
    right: -6rem;
    height: 6rem;
    padding: 0;
    color: #051219;
    background-color: transparent;
    transition: all 0.3s ease;
}

    .button--cta:hover .button__text, .button--cta:focus .button__text {
        background-color: #72E7C9;
    }

    .button--cta:hover .arrow--inline path, .button--cta:focus .arrow--inline path {
        stroke-width: 2;
    }

    .button--cta .button__text {
        position: relative;
        z-index: 1;
        padding: 1.5rem 2rem;
        cursor: pointer;
        height: 6rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #00E6A1;
        opacity: 1;
        transition: width .75s ease, background .35s ease;
        width: 60px;
        will-change: width;
    }

        .button--cta .button__text span {
            opacity: 0;
            transition: opacity .8s ease;
            white-space: nowrap;
        }

    .button--cta.is-animating .button__text {
        right: 0;
        opacity: 1;
        width: 180px;
    }

        .button--cta.is-animating .button__text span {
            opacity: 1;
        }

.button--cta-icon {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 6rem;
    height: 6rem;
    color: #051219;
    background-color: #FFFFFF;
    opacity: 0;
    transition: opacity 1s ease, top .6s ease;
    will-change: opacity;
}

.is-animating .button--cta-icon {
    top: -6rem;
    opacity: 1;
}

.button--cta-icon .button__icon {
    color: #051219 !important;
}

.button--secondary {
    position: relative;
    color: #02484D;
    padding: 0;
}

    .button--secondary:hover:before, .button--secondary:focus:before {
        width: 100%;
    }

    .button--secondary:hover .button__text, .button--secondary:focus .button__text {
        color: #051219;
    }

    .button--secondary:hover .button__icon svg, .button--secondary:focus .button__icon svg {
        transform: translateX(3px);
    }

    .button--secondary .button__icon {
        position: relative;
        display: flex;
        width: 6rem;
        height: 6rem;
        align-items: center;
        justify-content: center;
        color: #0B2228;
        z-index: 1;
    }

        .button--secondary .button__icon svg {
            transition: transform 0.3s cubic-bezier(0.75, 0, 0.25, 1);
        }

    .button--secondary .button__text {
        position: relative;
        z-index: 1;
        padding-left: 2rem;
        padding-right: 2.8rem;
        transition: all 0.3s ease;
    }

    .button--secondary:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 6rem;
        height: 100%;
        background-color: #00E6A1;
        transition: width 0.3s cubic-bezier(0.75, 0, 0.25, 1);
    }

.button--secondary-left:before {
    left: 0;
}

.button--text {
    padding-left: 0;
    padding-right: 0;
    color: #02484D;
}

    .button--text:hover, .button--text:focus {
        color: #00E6A1;
    }

        .button--text:hover .button__text:before, .button--text:focus .button__text:before {
            width: 100%;
        }

    .button--text .button__text {
        position: relative;
    }

        .button--text .button__text:before {
            content: '';
            display: block;
            position: absolute;
            bottom: 0;
            height: 1px;
            left: 0;
            width: 0;
            z-index: 0;
            background-color: #00E6A1;
            transition: all 0.3s cubic-bezier(0.75, 0, 0.25, 1);
        }

.select--custom {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid transparent;
    padding: 1.1rem 2.4rem 1.1rem 0;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L5.64645 5.64645C5.84171 5.84171 6.15829 5.84171 6.35355 5.64645L11 1' stroke='%238D8D93' stroke-linecap='round'/%3e%3c/svg%3e");
    background-position: right 11px center;
    line-height: 1.25;
    font-size: 1.4rem;
    transition: all 0.35s ease;
    background-color: transparent;
    cursor: pointer;
    box-shadow: inset 0 -1px 0 0 #EAEBEB;
}

@media (min-width: 768px) {
    .select--custom {
        font-size: 1.6rem;
    }
}

.select--custom:focus {
    border-bottom: 1px solid transparent !important;
    box-shadow: inset 0 -1px 0 0 #EAEBEB !important;
    outline: 0;
}

.filter .select--custom {
    box-shadow: inset 0 -1px 0 0 #EAEBEB;
}

.select--custom::-ms-expand {
    display: none;
}

.select--light {
    background-color: #FBFBFB;
}

.checkbox-container,
.radio-container {
    position: relative;
    display: block;
    min-height: 2rem;
}

    .checkbox-container + .checkbox-container,
    .checkbox-container + .radio-container,
    .radio-container + .checkbox-container,
    .radio-container + .radio-container {
        margin-top: 1rem;
    }

.checkbox--custom,
.radio--custom {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 2rem;
    height: 2rem;
    opacity: 0;
}

    .checkbox--custom ~ .form-field__error,
    .radio--custom ~ .form-field__error {
        padding-left: 3.8rem;
    }

    .checkbox--custom ~ .label,
    .radio--custom ~ .label {
        position: relative;
        margin-bottom: 0;
        vertical-align: top;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        cursor: pointer;
        display: block;
        padding-left: 3.8rem;
        padding-top: .1rem;
    }

@media (max-width: 767.98px) {
    .checkbox--custom ~ .label,
    .radio--custom ~ .label {
        font-size: 1.4rem;
    }
}

.checkbox--custom ~ .label:before,
.radio--custom ~ .label:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 2rem;
    height: 2rem;
    pointer-events: none;
    content: "";
    border: solid 1px #8D8D93;
}

.checkbox--custom ~ .label:after,
.radio--custom ~ .label:after {
    position: absolute;
    display: block;
    content: "";
    background: no-repeat;
    background-position: center center;
}

.checkbox--custom.is-error ~ .label:before,
.radio--custom.is-error ~ .label:before {
    border-color: #FE4F47;
}

.checkbox--custom ~ .label:after {
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
}

.checkbox--custom:checked ~ .label:before {
    color: #fff;
    border-color: #00E6A1 !important;
    background-color: #00E6A1;
}

.checkbox--custom:checked ~ .label:after {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7 12.947L8.8375 15.6379C8.97892 15.8558 9.21368 15.9899 9.46778 15.9977C9.72187 16.0055 9.96397 15.8862 10.1178 15.6773L16 7.99805' stroke='%23051219' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}

.radio--custom ~ .label:before {
    border-radius: 50%;
}

.radio--custom ~ .label:after {
    top: 7px;
    left: 7px;
    width: 6px;
    height: 6px;
    background-color: transparent;
    border-radius: 50%;
}

.radio--custom:checked ~ .label:before {
    color: #fff;
    border-color: #00E6A1;
    background-color: #00E6A1;
}

.radio--custom:checked ~ .label:after {
    background-color: #FFFFFF;
}

.label {
    max-width: 444px;
}

    .label .small {
        display: block;
        font-weight: 300;
        margin-top: 1rem;
        line-height: 1.5;
    }

        .label .small strong {
            font-weight: 500;
        }

.input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    width: 100%;
    font-size: 1.6rem;
    outline: 0;
    transition: all 0.35s ease;
    border-bottom: 1px solid transparent;
    padding-left: 8px;
    box-shadow: inset 0 -1px 0 0 #EAEBEB;
}

    .input:focus {
        border-bottom: 1px solid #00E6A1 !important;
        box-shadow: inset 0 -1px 0 0 #00E6A1 !important;
    }

textarea.input {
    height: 150px;
    resize: none;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.form__group {
    margin-bottom: 2.4rem;
}

    .form__group img {
        flex-shrink: 0;
        margin-bottom: 2.2rem;
    }

    .form__group .radio-container + .radio-container {
        margin-top: 4rem;
    }

.form__label {
    display: block;
    color: #02484D;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form__title {
    margin-bottom: 4.8rem;
    font-size: 2.6rem;
}

.form--light ::-webkit-input-placeholder {
    color: rgba(7, 4, 4, 0.5);
    font-size: 1.4rem;
    font-weight: 300;
}

.form--light ::-moz-placeholder {
    color: rgba(7, 4, 4, 0.5);
    font-size: 1.4rem;
    font-weight: 300;
}

.form--light :-ms-input-placeholder {
    color: rgba(7, 4, 4, 0.5);
    font-size: 1.4rem;
    font-weight: 300;
}

.form--light :-moz-placeholder {
    color: rgba(7, 4, 4, 0.5);
    font-size: 1.4rem;
    font-weight: 300;
}

.form--dark .form__label {
    color: #00E6A1;
}

.form--dark .input,
.form--dark .select--custom {
    color: #FFFFFF;
    box-shadow: inset 0 -1px 0 0 rgba(243, 244, 245, 0.5);
}

.form--dark select.select--custom:focus {
    box-shadow: inset 0 -1px 0 0 rgba(243, 244, 245, 0.5) !important;
}

.form--dark select.select--custom.is-error {
    border-bottom: 1px solid #FE4F47;
}

.form__group--field {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}

    .form__group--field input,
    .form__group--field textarea,
    .form__group--field select {
        order: 2;
    }

    .form__group--field .form-field__error {
        order: 3;
    }

.form__group .is-error {
    border-bottom: 1px solid #FE4F47;
    box-shadow: inset 0 -1px 0 0 #FE4F47;
}

    .form__group .is-error ~ .form-field__error {
        display: block;
    }

.form-field__error {
    display: none;
    padding-top: .4rem;
    color: #FE4F47;
    font-size: 1.2rem;
}

.contact-form {
    padding-top: 2.4rem;
}

@media (min-width: 768px) {
    .contact-form {
        padding-top: 0;
    }
}

@media (min-width: 1200px) {
    .contact-form {
        padding-top: 4rem;
    }
}

.l_row-contact-form .l_col {
    padding-left: .8rem;
    padding-right: .8rem;
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 6.4rem;
}

@media (min-width: 992px) {
    .l_row-contact-form .l_col {
        flex: 0 0 44.3666%;
        max-width: 44.3666%;
    }
}

.l_row {
    display: flex;
    margin-left: -.8rem;
    margin-right: -.8rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.button .button__loader-text,
.button .button__loader {
    display: none;
}

.button.is-loading {
    pointer-events: none;
}

    .button.is-loading .button__text,
    .button.is-loading .button__icon {
        display: none;
    }

    .button.is-loading .button__loader-text,
    .button.is-loading .button__loader {
        display: block;
    }

    .button.is-loading:before {
        background-image: none;
    }

.button--secondary .button__loader-text {
    padding-right: 2.8rem;
    padding-left: 2rem;
}

.button--secondary .button__loader {
    margin-right: 19px;
    color: #02484D;
}

.button--secondary.is-loading:focus:before {
    width: 6rem;
}

@-webkit-keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.button__loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    margin-left: 27px;
    position: relative;
}

    .button__loader:before {
        content: '';
        box-sizing: border-box;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 16px;
        margin-top: -8px;
        margin-left: -8px;
        border-radius: 50%;
        border: 1px solid transparent;
        border-top-color: currentColor;
        border-right-color: currentColor;
        border-bottom-color: currentColor;
        -webkit-animation: spinner .8s linear infinite;
        animation: spinner .8s linear infinite;
    }

.text-loader {
    position: relative;
}

    .text-loader .text-loader__loader-text,
    .text-loader .text-loader__loader {
        display: none;
    }

.text-loader__loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    margin-left: 27px;
    position: relative;
    vertical-align: middle;
}

    .text-loader__loader:before {
        content: '';
        box-sizing: border-box;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 16px;
        margin-top: -8px;
        margin-left: -8px;
        border-radius: 50%;
        border: 1px solid transparent;
        border-top-color: currentColor;
        border-right-color: currentColor;
        border-bottom-color: currentColor;
        -webkit-animation: spinner .8s linear infinite;
        animation: spinner .8s linear infinite;
    }

.text-loader.is-loading .text-loader__text {
    display: none;
}

.text-loader.is-loading .text-loader__loader-text,
.text-loader.is-loading .text-loader__loader {
    display: inline-block;
}

/*.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 15;
    height: 70px;
    transition: background .2s ease;
}

@media (min-width: 768px) {
    .site-header {
        height: 80px;
    }
}

@media (min-width: 992px) {
    .site-header {
        height: 90px;
    }
}

.site-header.has-bg,
.search-is-open .site-header,
.dropdown-is-open .site-header,
.menu-is-open .site-header,
.nav-is-solid .site-header {
    background-color: #f5f5f5;
    box-shadow: 0 3px 25px 0 rgba(47, 56, 68, 0.22);*/
    /*
        background-color: #303434;
        transition: background .25s ease-out;
    */
/*}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
}

@media (min-width: 768px) {
    .site-header__inner {
        height: 80px;
    }
}

@media (min-width: 992px) {
    .site-header__inner {
        height: 90px;
    }
}

.site-header__inner:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: background .2s ease;
}*/

/*.dropdown-is-open .site-header__inner:after {
    background-color: #02484D;
    transition: background .25s ease-out;
}

.l-site-header__left {
    position: relative;
    z-index: 999;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    height: 100%;
    max-width: 18%;
}

.l-site-header__center {
    position: relative;
    z-index: 999;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 100%;
    max-width: 64%;
}    

.l-site-header__right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    z-index: 999;
    flex: 1;
    height: 100%;
    max-width: 18%;
}

.site-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 84px;
    height: 22px;
    margin-right: 4.2rem;
}

@media (min-width: 768px) {
    .site-header__logo {
        width: 161px;
        height: 40px;
        margin-right: 2rem;
    }
}

.site-header__logo svg {
    margin-top: 6px;
}

.site-header__navigation {
    position: relative;
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

    .site-header__navigation .navigation {
        display: flex;
        align-items: center;
        list-style-type: none;
    }

    .site-header__navigation .navigation__link {
        font-size: 1.5rem;
        font-weight: 400;
        padding-left: 2.4rem;
        color: white;
        white-space: nowrap;
        text-decoration: none;
    }

@media (min-width: 768px) {
    .site-header__navigation .navigation__link {
        padding-left: 0;
    }
}

.site-header__navigation .navigation__li {
    height: 100%;
}

.navigation__link__text {
    position: relative;
    display: block;
    padding-left: 1rem;
    padding-right: 1rem;
}

    .navigation__link__text span {
        position: relative;
    }

.navigation__link--dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all .35s ease;
    height: 100%;
    text-decoration: none;
    color: white;
}

@media (min-width: 768px) {
    .site-header__navigation .navigation__link--dropdown {
        padding-right: 3.5rem;
    }
}

.navigation__link--dropdown:hover, .navigation__link--dropdown:focus {
    color: #00E6A1;
}

.navigation__link--dropdown:hover, .navigation__link--dropdown:focus {
    color: #00E6A1;
}

    .navigation__link--dropdown:hover .dropdown-icon, .navigation__link--dropdown:focus .dropdown-icon {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11 1L6.625 5.72078C6.27976 6.09307 5.72024 6.09307 5.375 5.72078L1 1' stroke='%2300E6A1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
    }

.navigation__link--dropdown .dropdown-icon {
    position: absolute;
    top: 50%;
    right: 2.4rem;
    display: block;
    width: 12px;
    height: 7px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11 1L6.625 5.72078C6.27976 6.09307 5.72024 6.09307 5.375 5.72078L1 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.navigation__link--dropdown:before {
    content: '';
    display: block;
    position: absolute;
    bottom: -12px;
    left: 50%;
    margin-left: -6px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    pointer-events: none;
}

.navigation__link--dropdown:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.is-active .navigation__link--dropdown {
    color: #00E6A1;
}

    .is-active .navigation__link--dropdown:before {
        border-top: 6px solid #00E6A1;
    }

    .is-active .navigation__link--dropdown:after {
        background-color: #00E6A1;
    }

    .is-active .navigation__link--dropdown .dropdown-icon {
        margin-top: -2px;
        transform: rotate(-180deg);
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11 1L6.625 5.72078C6.27976 6.09307 5.72024 6.09307 5.375 5.72078L1 1' stroke='%2300E6A1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
    }

.site-header__actions {
    display: flex;*/
    /*border-left: 1px solid #bfc8c9;    */
    /*height: 100%;
}

@media (max-width: 767px) {
    .menu-is-open .site-header__actions {
        display: none;
    }
}

.site-header__action {
    font-size: 1.5rem;
    font-weight: 400;
    transition: all .35s ease;
    display: inline-flex;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1.8rem;
    height: 6rem;
    color: white;
    text-decoration: none;
}

    .site-header__action:hover, .site-header__action:focus {
        color: #00E6A1;
    }

@media (max-width: 640px) {
    .site-header__action {
        font-size: 1.3rem;
    }
}*/

/*@media (max-width: 760px) {
    .site-header__action:first-child {
        display: none;
    }

    .site-header__action .action__icon {
        display: none;
    }
}*/

.site-header__action .action__icon {
    margin-left: 1.2rem;
    color: #00E6A1;
}

    .site-header__action .action__icon svg {
        width: 3.2rem;
        height: 3.2rem;
    }

.site-header__action.action--primary {
    padding-left: 3rem;
    padding-right: 2.2rem;
    margin-left: .4rem;
    background-color: #0F2A31;
}

@media (max-width: 640px) {
    .site-header__action.action--primary {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }
}

.site-header__action.action--primary:hover {
    background-color: #0d242b;
}

.site-header__action.action--primary .action__icon {
    margin-left: 2.6rem;
}

.site-header__navigation {
    display: none;
}

@media (min-width: 1260px) {
    .site-header__navigation {
        display: flex;
    }
}

.l-burger {
    width: 5rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .l-burger {
        width: 6.4rem;
    }
}

@media (min-width: 1260px) {
    .l-burger {
        width: 0;
        overflow: hidden;
    }
}

.mobile-menu-button {
    position: relative;
    background-color: transparent;
    border: 0;
    outline: 0;
    color: #FFFFFF;
    width: 4.4rem;
    height: 4.4rem;
}

.burger-state {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.burger-state--open {
    display: none;
}

.menu-is-open .burger-state--open {
    display: flex;
}

.menu-is-open .burger-state--closed {
    display: none;
}

.menu__navigation__content {
    padding-bottom: 12rem;
    height: calc(100% - 80px);
    overflow: auto;
}

.navigation__search {
    transition: all .35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 100%;
    border: 0;
    outline: 0;
    color: white;
    background-color: transparent;
    cursor: pointer;
}

    .navigation__search:hover, .navigation__search:focus {
        color: #00E6A1;
    }

.site-header__search-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 32px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 4px;
    background-color: transparent;
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease;
}

.search-is-open .site-header__search-container {
    opacity: 1;
    pointer-events: auto;
    background-color: #02090D;
    transition: all .25s ease-out;
}

.site-header__search-input {
    display: block;
    width: calc(100% - 6rem);
    padding-top: .8rem;
    padding-bottom: .8rem;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid grey;
    outline: 0;
    color: white;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.35s ease;
}

    .site-header__search-input:hover, .site-header__search-input:focus {
        border-bottom: 1px solid #00E6A1;
    }

.site-header__search-close {
    width: 4.4rem;
    height: 4.4rem;
    color: #8D8D93;
    background-color: rgba(0, 0, 0, 0);
}

    .site-header__search-close:hover {
        color: #FFFFFF;
    }

.site-header__dropdown-menu {
    position: absolute;
    top: 100%;
    overflow: hidden;
    left: 0;
    right: 0;
    min-height: 315px;
    padding-top: 4.8rem;
    padding-bottom: 4rem;
    padding-left: 242px;
    color: #FFFFFF;
    background-color: #02090D;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 2;
}

.dropdown-is-open .site-header__dropdown-menu {
    transition: opacity .25s ease-out;
    opacity: 1;
    pointer-events: auto;
}

.dropdown-menu__list {
    list-style-type: none;
    padding-right: 1.4rem;
}

    .dropdown-menu__list .navigation__link {
        font-weight: 300;
        font-size: 1.6rem;
        line-height: 1.6875;
        transition: all .35s ease;
        display: block;
        padding-top: .7rem;
        padding-bottom: .7rem;
        color: #FFFFFF;
        font-size: 1.4rem;
        text-decoration: none;
        line-height: 1.2;
    }

        .dropdown-menu__list .navigation__link:hover, .dropdown-menu__list .navigation__link:focus {
            color: #00E6A1;
        }

.dropdown-menu__title {
    font-weight: 300;
    margin-bottom: 1.3rem;
}

.dropdown-menu__section {
    display: flex;
    align-items: flex-start;
    width: 100%;
    display: none;
}

    .dropdown-menu__section.is-active {
        display: flex;
    }

.dropdown-menu__group {
    flex: 0 0 230px;
    max-width: 230px;
}

.dropdown-menu__overlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(5, 18, 25, 0);
    z-index: 0;
    top: 60px;
    pointer-events: none;
    transition: background .2s ease;
}

@media (min-width: 768px) {
    .dropdown-menu__overlay {
        top: 80px;
    }
}

@media (min-width: 992px) {
    .dropdown-menu__overlay {
        top: 90px;
    }
}

.dropdown-is-open .dropdown-menu__overlay {
    background-color: rgba(5, 18, 25, 0.5);
    transition: background .25s ease-out;
    pointer-events: auto;
}

.menu__pattern {
    position: absolute;
    pointer-events: none;
}

    .menu__pattern .fill {
        fill: #02484D;
    }

.menu__pattern--1 {
    right: 12.5%;
    bottom: 152px;
}

.menu__pattern--2 {
    right: 27.5%;
    bottom: -42px;
}

.site-header__menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: calc(100vh - 60px);
    overflow: auto;
    background-color: #040D12;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

@media (min-width: 768px) {
    .site-header__menu {
        top: 80px;
        height: calc(100vh - 80px);
    }
}

@media (min-width: 992px) {
    .site-header__menu {
        top: 90px;
        height: calc(100vh - 90px);
    }
}

.site-header__menu .navigation__actions .navigation__link {
    display: block;
}

@media (min-width: 768px) {
    .site-header__menu .navigation__actions {
        display: none;
    }
}

.menu-is-open .site-header__menu {
    transition: opacity .25s ease-out;
    opacity: 1;
    pointer-events: auto;
}

.site-header__menu .container {
    overflow: hidden;
}

.site-header__menu .navigation__link {
    font-size: 2rem;
    text-decoration: none;
    color: white;
}

.site-header__menu .dropdown-menu__group .navigation__link {
    font-size: 1.4rem;
}

.site-header__menu .navigation__link .navigation__link__text {
    padding-left: 0;
}

.site-header__menu .menu-dropdown__section {
    display: none;
}

.site-header__menu .menu-dropdown__section-inner {
    display: flex;
    flex-wrap: wrap;
}

.site-header__menu .dropdown-menu__title {
    color: #FFFFFF;
}

@media (max-width: 639px) {
    .site-header__menu .dropdown-menu__title {
        display: none;
    }
}

.site-header__menu .dropdown-menu__group {
    flex: 0 0 100%;
    max-width: 100%;
}

    .site-header__menu .dropdown-menu__group:first-child {
        padding-top: 1.6rem;
    }

    .site-header__menu .dropdown-menu__group:last-child {
        padding-bottom: 2.8rem;
    }

@media (min-width: 640px) {
    .site-header__menu .dropdown-menu__group {
        padding-top: 3.2rem;
        padding-bottom: 2.8rem;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

        .site-header__menu .dropdown-menu__group:first-child {
            padding-top: 3.2rem;
        }

        .site-header__menu .dropdown-menu__group:last-child {
            padding-bottom: 2.8rem;
        }
}

.menu__navigation .navigation__li {
    overflow: hidden;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

    .menu__navigation .navigation__li .navigation__link__text span {
        display: block;
        padding-bottom: 8px;
        border-bottom: 2px solid transparent;
    }

    .menu__navigation .navigation__li .dropdown-icon {
        top: 10px;
        transform: none;
    }

    .menu__navigation .navigation__li.is-active .navigation__link--dropdown:before {
        display: none;
    }

@media (min-width: 576px) {
    .menu__navigation .navigation__li.is-active .navigation__link--dropdown:after {
        display: none;
    }
}

@media (max-width: 575px) {
    .menu__navigation .navigation__li.is-active .navigation__link--dropdown:after {
        right: -560px;
    }
}

@media (min-width: 576px) {
    .menu__navigation .navigation__li.is-active .navigation__link__text span {
        border-bottom: 2px solid #00E6A1;
    }
}

.menu__navigation .navigation__li.is-active .dropdown-icon {
    transform: rotate(-180deg);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11 1L6.625 5.72078C6.27976 6.09307 5.72024 6.09307 5.375 5.72078L1 1' stroke='%2300E6A1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}

.menu__search-container {
    position: relative;
    padding-top: 3.2rem;
    padding-bottom: 3.8rem;
}

.menu__search-input {
    display: block;
    width: calc(100% - 6rem);
    padding-top: .8rem;
    padding-bottom: .8rem;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid grey;
    outline: 0;
    color: white;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.35s ease;
    width: 100%;
    padding-right: 6rem;
}

    .menu__search-input:hover, .menu__search-input:focus {
        border-bottom: 1px solid #00E6A1;
    }

.menu__search-button {
    position: absolute;
    bottom: 4.6rem;
    right: 0;
    color: white;
}

.menu-is-open {
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
}

.back-to-top {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0A161D;
    width: 105px;
    display: flex;
    align-items: flex-end;
}

@media (min-width: 768px) {
    .back-to-top {
        bottom: 0;
    }
}

.back-to-top__button {
    transform: rotate(270deg);
    transform-origin: 0 0;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    flex: 0 0 5rem;
    padding: 0;
    background-color: transparent;
    outline: 0;
    border: 0;
    color: #00E6A1;
    position: absolute;
    left: 50%;
    margin-left: -29px;
    top: 2.5rem;
    cursor: pointer;
}

    .back-to-top__button:hover .button__icon, .back-to-top__button:focus .button__icon {
        background-color: #11333c;
    }

    .back-to-top__button:hover .arrow--inline path, .back-to-top__button:focus .arrow--inline path {
        stroke-width: 2;
    }

@media (min-width: 768px) {
    .back-to-top__button {
        top: auto;
        bottom: 3rem;
        width: 22rem;
        flex: 0 0 22rem;
        height: 6rem;
    }
}

.back-to-top__button .button__text {
    order: 2;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    padding-left: 3.2rem;
    display: none;
}

@media (min-width: 768px) {
    .back-to-top__button .button__text {
        display: block;
    }
}

.back-to-top__button .button__icon {
    width: 5rem;
    height: 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0B2228;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .back-to-top__button .button__icon {
        width: 6rem;
        height: 6rem;
    }
}

.back-to-top__pattern {
    position: absolute;
    top: 3rem;
    left: 50%;
    margin-left: -9px;
    display: none;
}

@media (min-width: 768px) {
    .back-to-top__pattern {
        display: block;
    }
}

.back-to-top__pattern + .back-to-top__pattern {
    top: auto;
    bottom: 3rem;
}

.back-to-top__pattern .fill {
    fill: #02484D;
}

body:after {
    content: '';
    position: fixed;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #02090D;
    z-index: 999;
    pointer-events: none;
    transition: opacity .5s ease, background .5s ease;
}

.scroll-to-top-init:after {
    opacity: 1;
}

.video-modal {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
}

    .video-modal .container {
        position: relative;
        z-index: 2;
    }

    .video-modal .container,
    .video-modal .row {
        height: 100%;
    }

    .video-modal .row {
        align-items: center;
    }

.video-modal__inner {
    position: relative;
    z-index: 1;
}

.video-modal__overlay {
    display: none;
    pointer-events: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(5, 18, 25, 0.9);
    z-index: 100;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .video-modal__overlay.no-bg {
        background-color: rgba(0, 0, 0, 0);
    }

.video-modal-is-active .video-modal__overlay {
    display: block;
}

.video-modal-is-active {
    position: fixed;
    width: 100%;
    height: 100%;
}

    .video-modal-is-active .video-modal {
        display: block;
    }

.video-modal__close {
    position: absolute;
    color: white;
    z-index: 2;
    top: -5.6rem;
    right: -26px;
}

    .video-modal__close.small-screens {
        display: none;
    }

    .video-modal__close.large-screens {
        top: 2rem;
        right: 2rem;
    }

@media (min-width: 1440px) {
    .video-modal__close.large-screens {
        top: 3.2rem;
        right: 3.2rem;
    }
}

.video-modal__close-container {
    position: relative;
    max-width: 135vh;
    margin: 0 auto;
}

.video-modal__video {
    border: 0;
    background-color: #000000;
}

.video-modal__video-container {
    position: relative;
    width: 100%;
    max-width: 136vh;
    margin: 0 auto;
    overflow: hidden;
}

    .video-modal__video-container:before {
        display: block;
        padding-bottom: 56%;
        content: '';
    }

    .video-modal__video-container .embed-responsive {
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        left: -1px;
        right: -1px;
        top: -1px;
        bottom: -1px;
    }

.pagination {
    width: 100%;
    max-width: 1083px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: .6rem;
    padding-bottom: 13.4rem;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 300;
}

@media (min-width: 768px) {
    .pagination {
        padding-top: 2.6rem;
        padding-bottom: 7.8rem;
    }
}

@media (min-width: 992px) {
    .pagination {
        padding-top: 5.6rem;
        padding-bottom: 12rem;
    }
}

@media (min-width: 1200px) {
    .pagination {
        padding-bottom: 15rem;
    }
}

.button--pagination {
    color: #02484D;
    font-size: 1.4rem;
}

    .button--pagination:hover, .button--pagination:focus {
        color: #000000;
        font-weight: 500;
    }

        .button--pagination:hover .arrow--inline path, .button--pagination:focus .arrow--inline path {
            stroke-width: 2;
        }

    .button--pagination .button__text {
        padding-left: 2.2rem;
        padding-right: 2.2rem;
    }

@media (max-width: 560px) {
    .button--pagination .button__text {
        display: none;
    }
}

.button--pagination:first-child .button__icon {
    transform: rotate(-180deg);
}

.pagination__text {
    display: block;
    padding-left: 3rem;
    padding-right: 3rem;
    white-space: nowrap;
}

.template__banner-inner .breadcrumbs {
    position: absolute;
    top: -62px;
    left: 8px;
    display: none;
}

@media (min-width: 1200px) {
    .template__banner-inner .breadcrumbs {
        display: block;
    }
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb:nth-child(2) {
    color: #00E6A1;
}

    .breadcrumb:nth-child(2):before {
        position: relative;
        top: 2px;
        left: -2px;
        content: ' /';
        font-size: 1.8rem;
    }

.breadcrumb:nth-child(3) {
    color: #72E7C9;
    position: relative;
    display: inline-block;
    padding-left: 44px;
}

    .breadcrumb:nth-child(3):before {
        position: relative;
        top: 2px;
        left: -2px;
        content: '';
        display: inline-block;
        width: 30px;
        height: 1px;
        background-color: currentColor;
        position: absolute;
        top: 50%;
        margin-top: -1px;
        left: 5px;
    }

.breadcrumb__text {
    position: relative;
}

    .breadcrumb__text:before {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        height: 1px;
        left: 0;
        width: 0;
        z-index: 0;
        background-color: currentColor;
        transition: all 0.3s cubic-bezier(0.75, 0, 0.25, 1);
    }

.breadcrumb a:hover .breadcrumb__text:before, .breadcrumb a:focus .breadcrumb__text:before {
    width: 100%;
}

.block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .block-header {
        padding-bottom: 3vw;
    }
}

@media (min-width: 1440px) {
    .block-header {
        padding-bottom: 4.5rem;
    }
}

.block-header.block-header--swiper .block-header__cta {
    padding-left: 6.2rem;
}

@media (max-width: 640px) {
    .block-header.block-header--swiper .block-header__cta {
        padding-left: .5rem;
    }
}

@media (max-width: 640px) {
    .block-header .swiper-button {
        display: none;
    }
}

.block-header .button--text {
    white-space: nowrap;
}

.block-header__title {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-right: .8rem;
}

.block-header__title-icon {
    display: block;
    margin-right: 1.8rem;
}

    .block-header__title-icon svg {
        width: 40px;
        height: 40px;
        display: block;
    }

.l-block-header__right {
    display: flex;
    align-items: center;
}

.tiles__carousel .swiper-slide,
.events__carousel .swiper-slide,
.videos__carousel .swiper-slide,
.partners__carousel .swiper-slide {
    transition: transform .6s ease;
    will-change: transform;
}

.button--play {
    border: 0;
    outline: 0;
    background-color: transparent;
    position: absolute;
    width: 4rem;
    height: 4rem;
    background-color: rgba(2, 72, 77, 0.7);
    top: 50%;
    left: 50%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    padding: 0;
    cursor: pointer;
    z-index: 1;
}

@media (min-width: 768px) {
    .button--play {
        width: 6rem;
        height: 6rem;
    }
}

.button--play:hover, .button--play:focus {
    background-color: #00E6A1;
}

.button--play:before {
    content: '';
    display: block;
    border-left: 7px solid #FFFFFF;
    border-right: 7px solid transparent;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: 4px;
    transition: border .35s ease;
}

@media (min-width: 768px) {
    .button--play:before {
        margin-left: 6px;
        border-left: 10px solid #FFFFFF;
        border-right: 10px solid transparent;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
    }
}

@supports ((-webkit-backdrop-filter: blur()) or (backdrop-filter: blur())) {
    .button--play {
        background-color: rgba(255, 255, 255, 0.4);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

.embed-responsive {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background-color: #FBFBFB;
}

    .embed-responsive iframe {
        width: 100%;
        height: 100%;
    }

.flockler {
    overflow: hidden;
}

    .flockler .l_ {
        display: flex;
        width: 100%;
    }

    .flockler .l_flockler--1-2 {
        flex: 0 0 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }

@media (min-width: 992px) {
    .flockler .l_flockler--1-2 {
        flex: 0 0 60%;
        max-width: 60%;
        flex-wrap: wrap;
    }
}

.flockler .l_flockler--1 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .flockler .l_flockler--1 {
        display: block;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.flockler .l_flockler--2 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .flockler .l_flockler--2 {
        flex: 0 0 66.666666%;
        max-width: 66.666666%;
    }
}

.flockler .l_flockler--2 .flockler__overlay {
    padding-top: 3.2rem;
    padding-left: 3.2rem;
    padding-right: 3.2rem;
}

    .flockler .l_flockler--2 .flockler__overlay p {
        font-size: 1.6rem;
    }

.flockler .l_flockler--3 {
    flex: 0 0 100%;
    max-width: 100%;
    overflow: hidden;
}

@media (min-width: 992px) {
    .flockler .l_flockler--3 {
        flex: 0 0 40%;
        max-width: 40%;
        flex-wrap: wrap;
    }
}

.flockler .l_flockler--3 .flockler__item {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (min-width: 768px) {
    .flockler .l_flockler--3 .flockler__item {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 992px) {
    .flockler .l_flockler--3 .flockler__item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .flockler-container {
        display: flex;
    }
}

.flockler__item {
    position: relative;
    width: 100%;
    display: block;
    transform: translateZ(0);
    overflow: hidden;
}

    .flockler__item:before {
        display: block;
        padding-bottom: 100%;
        content: '';
    }

body:not(.mobile) .flockler__item:hover .flockler__overlay, body:not(.mobile) .flockler__item:focus .flockler__overlay {
    opacity: 1;
}

.flockler__hashtag {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    padding: 3.2rem;
}

.flockler__hashtag-text {
    font-size: 2.4rem;
    font-weight: 300;
}

.flockler__icon {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    color: #FFFFFF;
}

    .flockler__icon svg {
        width: 2rem;
        height: 2rem;
    }

.flockler__overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 2.2rem;
    opacity: 0;
    background-color: #02484D;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: opacity .5s ease;
}

    .flockler__overlay p {
        font-size: 1.1rem;
        color: #FFFFFF;
    }

@supports (-ms-ime-align: auto) {
    .flockler__overlay {
        background-image: none !important;
        background-blend-mode: none;
        background-color: rgba(2, 72, 77, 0.85);
    }
}

@supports (-ms-ime-align: auto) and (-webkit-text-stroke: initial) {
    .flockler__overlay {
        background-image: none !important;
        background-blend-mode: none;
        background-color: rgba(2, 72, 77, 0.85);
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .flockler__overlay {
        background-image: none !important;
        background-blend-mode: none;
        background-color: rgba(2, 72, 77, 0.85);
    }
}

.flockler__overlay-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.flockler__overlay__text {
    max-height: calc(100% - 6rem);
    overflow: hidden;
}

.flockler__overlay__footer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 1;
}

    .flockler__overlay__footer .button__icon {
        color: #00E6A1 !important;
    }

.quick-links {
    overflow: hidden;
    color: white;
    padding-bottom: 0;
}

    .quick-links + .image-video {
        padding-top: 0;
    }

    .quick-links:first-child {
        padding-top: 0;
    }

.quick-links-container {
    padding-top: 15rem;
    padding-bottom: 4.4rem;
    background-color: #02090D;
}

@media (min-width: 768px) {
    .quick-links-container {
        padding-top: 26rem;
        padding-bottom: 6.6rem;
    }
}

@media (min-width: 992px) {
    .quick-links-container {
        padding-top: 28rem;
        padding-bottom: 9.4rem;
    }
}

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

@media (min-width: 768px) {
    .quick-links__header {
        flex-wrap: nowrap;
    }
}

.quick-links__image {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .quick-links__image {
        padding-bottom: 0;
        order: 2;
        flex: 0 0 30%;
        max-width: 30%;
    }
}

@media (min-width: 992px) {
    .quick-links__image {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.quick-links__image img {
    max-width: 130px;
}

@media (min-width: 768px) {
    .quick-links__image img {
        max-width: 100%;
    }
}

.quick-links__title {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .quick-links__title {
        flex: 0 0 70%;
        max-width: 70%;
    }
}

@media (min-width: 992px) {
    .quick-links__title {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.quick-links__title strong {
    font-weight: 400;
}

.quick-links__links {
    display: flex;
    flex-wrap: wrap;
    padding-top: 3.2rem;
    margin-left: -8px;
    margin-right: -8px;
}

@media (min-width: 992px) {
    .quick-links__links {
        margin-left: -17px;
        margin-right: -17px;
    }
}

.quick-link-container {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: .8rem;
    padding-bottom: .8rem;
}

@media (min-width: 992px) {
    .quick-link-container {
        padding-left: 17px;
        padding-right: 17px;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.quick-link {
    width: 100%;
    border: 1px solid #02484D;
    color: #00E6A1;
}

    .quick-link .button__icon {
        display: none;
        margin-left: .6rem;
    }

@media (min-width: 576px) {
    .quick-link .button__icon {
        display: block;
    }
}

.quick-link .button__text {
    flex: 1;
}

.three-column-container {
    display: flex;
    justify-content: center;
    margin-left: calc((16px / 2) * -1);
    margin-right: calc((16px / 2) * -1);
    flex-wrap: wrap;
}

@media (min-width: 1200px) {
    .three-column-container {
        height: 430px;
    }
}

.three-column__item {
    position: relative;
    padding-left: 8px;
    padding-right: 8px;
}

@media (min-width: 1200px) {
    .three-column__item {
        height: 100%;
    }
}

.three-column__item + .three-column__item {
    padding-top: 2.8rem;
}

@media (min-width: 768px) {
    .three-column__item + .three-column__item {
        padding-top: 5.8rem;
    }
}

@media (min-width: 1200px) {
    .three-column__item + .three-column__item {
        padding-top: 0;
    }
}

.three-column {
    overflow: hidden;
}

    .three-column .text {
        flex: 0 0 83.33333333333333%;
        max-width: 83.33333333333333%;
    }

@media (min-width: 1200px) {
    .three-column .text {
        flex: 0 0 41.66666666666667%;
        max-width: 41.66666666666667%;
    }
}

.three-column .text__inner {
    padding-top: 6.8rem;
}

@media (min-width: 1200px) {
    .three-column .text__inner {
        padding-top: 8.8rem;
    }
}

.three-column .text__inner .text__inner-text {
    max-width: 350px;
}

@media (min-width: 1200px) {
    .three-column .text__inner .text__inner-text {
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {
    .three-column .text__inner {
        position: relative;
        margin: 0 auto;
        height: 100%;
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

.three-column .text__subtitle {
    text-transform: uppercase;
    color: #8D8D93;
    margin-bottom: 2.5rem;
}

.three-column .text .pattern {
    position: absolute;
    top: 22px;
    right: -42px;
}

@media (min-width: 1200px) {
    .three-column .text .pattern {
        top: -44px;
    }
}

.three-column .text .fill {
    fill: #D9DADB;
}

.three-column .text .button-container {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    padding-top: 2.4rem;
}

@media (min-width: 576px) {
    .three-column .text .button-container {
        padding-top: 0;
    }
}

@media (min-width: 1200px) {
    .three-column .text .button-container {
        position: absolute;
        bottom: 0;
        right: 5rem;
    }
}

@media (min-width: 1200px) {
    .three-column .image {
        height: 100%;
    }
}

.three-column .image--v1 {
    flex: 0 0 83.33333333333333%;
    max-width: 83.3333333333333%;
}

@media (min-width: 768px) {
    .three-column .image--v1 {
        flex: 0 0 91.66666666666667%;
        max-width: 91.66666666666667%;
        margin-left: -8.333333333333333%;
    }
}

.three-column .image--v1 .image__inner {
    height: 376px;
}

@media (min-width: 768px) {
    .three-column .image--v1 .image__inner {
        height: 430px;
    }
}

@media (min-width: 1200px) {
    .three-column .image--v1 .image__inner {
        height: 100%;
    }
}

.three-column .image--v1 .image__inner .fill {
    fill: #FFFFFF;
}

@media (min-width: 1200px) {
    .three-column .image--v1 {
        margin-left: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.three-column .image--v1 .pattern {
    position: absolute;
    right: -50px;
    bottom: 50px;
    opacity: .75;
    z-index: 2;
    width: 115px;
    height: 115px;
}

@media (min-width: 768px) {
    .three-column .image--v1 .pattern {
        bottom: 95px;
    }
}

@media (min-width: 1200px) {
    .three-column .image--v1 .pattern {
        bottom: 50px;
    }
}

.three-column .image--v2 {
    flex: 0 0 83.33333333333333%;
    max-width: 83.3333333333333%;
}

@media (min-width: 1200px) {
    .three-column .image--v2 {
        flex: 0 0 33.33333333333333%;
        max-width: 33.33333333333333%;
    }
}

.three-column .image--v2 .image__inner {
    height: 365px;
}

@media (min-width: 768px) {
    .three-column .image--v2 .image__inner {
        height: 396px;
    }
}

@media (min-width: 1200px) {
    .three-column .image--v2 .image__inner {
        height: 100%;
    }
}

.three-column .image__inner {
    position: relative;
}

@media (min-width: 1200px) {
    .three-column .image__inner {
        height: 100%;
    }
}

.image-video {
    overflow: hidden;
}

.image-video__media {
    max-height: 650px;
    position: relative;
    width: 100%;
}

    .image-video__media:before {
        display: block;
        padding-bottom: 55.7%;
        content: '';
    }

    .image-video__media .pattern-container {
        width: calc((100% + 16px) / 12);
        position: absolute;
        right: 0;
        bottom: 0;
        display: none;
        align-items: center;
        justify-content: center;
    }

@media (min-width: 768px) {
    .image-video__media .pattern-container {
        display: flex;
        height: 90px;
    }
}

@media (min-width: 992px) {
    .image-video__media .pattern-container {
        height: 140px;
    }
}

.image-video__media .pattern-container .fill {
    fill: #FFFFFF;
}

.image-video__media.is-video:after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

.image-video__text-container {
    position: relative;
    padding-top: 4.4rem;
    padding-bottom: 4.4rem;
    min-height: 140px;
}

@media (min-width: 768px) {
    .image-video__text-container {
        padding-top: 5.6rem;
        padding-bottom: 5.6rem;
        margin-top: -90px;
    }
}

@media (min-width: 992px) {
    .image-video__text-container {
        padding-top: 8rem;
        padding-bottom: 8rem;
        margin-top: -140px;
    }
}

.image-video__text-container:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #FBFBFB;
}

@media (min-width: 768px) {
    .image-video__text-container:before {
        right: calc((100% + 16px) / 12);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.hero {
    position: relative;
    height: 75vh;
    /*  height: calc(var(--vh, 1vh) * 100);
*/ min-height: 480px;
    overflow: hidden;
}

    .hero:first-child .slide-inner .scrim-nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
        background: linear-gradient(180deg, rgba(2, 9, 13, 0.75) 0%, rgba(2, 9, 13, 0) 100%);
        z-index: 1;
        height: 25%;
        pointer-events: none;
    }

    .hero .swiper-navigation {
        position: absolute;
        bottom: 50px;
        left: 0;
        z-index: 10;
    }

    .hero .swiper-container-vertical > .swiper-pagination-bullets {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.theme-dark .hero:first-child .slide-inner .scrim-dark {
    content: '';
    display: block;
    position: absolute;
    left: -2px;
    z-index: 1;
    bottom: 0;
    right: -2px;
    height: 360px;
    width: calc(100% + 4px);
    background: linear-gradient(0deg, #02090d 0%, rgba(2, 9, 13, 0) 100%);
}

.hero .swiper-slide {
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
}

    .hero .swiper-slide .container,
    .hero .swiper-slide .row {
        height: 100%;
    }

    .hero .swiper-slide .row {
        align-items: center;
    }

.hero .slide-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    will-change: transform;
    overflow: hidden;
}

    .hero .slide-inner:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        height: 100%;
        width: 100%;
        background: radial-gradient(circle at center left, #02090d 0%, rgba(2, 16, 13, 0) 65%);
        z-index: 5;
        opacity: 1;
    }

.hero .hero__content {
    opacity: 0;
    transition: opacity .25s linear 0s, transform .5s ease .5s;
    max-width: 600px;
    transform: translateY(12px);
}

.hero .slide-inner__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.hero .u_image-cover, .hero .flockler__item img, .flockler__item .hero img, .hero .three-column .image img, .three-column .image .hero img,
.hero .scrim-nav,
.hero .scrim-dark {
    transition: transform .6s ease;
    transform: scale(1.08, 1.08);
}

.hero .swiper-slide-active .u_image-cover, .hero .swiper-slide-active .flockler__item img, .flockler__item .hero .swiper-slide-active img, .hero .swiper-slide-active .three-column .image img, .three-column .image .hero .swiper-slide-active img,
.hero .swiper-slide-active .scrim-nav,
.hero .swiper-slide-active .scrim-dark {
    transform: scale(1, 1);
}

.hero .swiper-slide-active .hero__content {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease .3s, transform .65s ease .2s;
}

.hero .hero__content {
    position: relative;
    z-index: 10;
}

.hero .hero__carousel {
    height: calc(100% + 2px);
}

.hero .swiper-pagination {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hero .swiper-pagination-bullet {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.75);
    opacity: 1;
}

@media (min-width: 768px) {
    .hero .swiper-pagination-bullet {
        width: 4px;
        height: 4px;
    }
}

.hero .swiper-pagination-bullet:focus {
    outline: 0 !important;
}

.hero .swiper-pagination-bullets {
    right: 75px;
    text-align: left;
    bottom: 110px;
    padding-left: 8.33333%;
}

@media (min-width: 768px) {
    .hero .swiper-pagination-bullets {
        bottom: 130px;
    }
}

.hero .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 18px;
}

@media (min-width: 1025px) {
    .hero .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 35px 0;
    }
}

.hero .swiper-pagination-bullet-active {
    background: #00E6A1;
}

    .hero .swiper-pagination-bullet-active .path.circle {
        opacity: 1;
        -webkit-animation: dash 1s ease-in-out;
        animation: dash 1s ease-in-out;
    }

.hero .swiper-pagination-bullet {
    position: relative;
}

.hero .pagination-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.hero svg:not(.icon-arrow) {
    width: 24px;
    height: 24px;
    display: block;
}

@media (min-width: 768px) {
    .hero svg:not(.icon-arrow) {
        width: 34px;
        height: 34px;
    }
}

.hero .path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

    .hero .path.circle {
        opacity: 0;
    }

.hero .button--primary {
    margin-top: 1rem;
    border: 1px solid rgba(0, 230, 161, 0.8);
    color: #00E6A1;
}

@media (min-width: 1200px) and (min-height: 720px) {
    .hero .button--primary {
        margin-top: 5rem;
    }
}

@media (min-width: 768px) {
    .hero__content__header {
        position: relative;
    }
}

@media (min-width: 992px) {
    .hero__content__header {
        position: static;
    }
}

.hero__logo {
    width: 89px;
    margin: 0;
}

@media (min-width: 768px) {
    .hero__logo {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: -32%;
    }
}

@media (min-width: 992px) {
    .hero__logo {
        width: 178px;
        right: calc((28% + 178px) * -1);
    }
}

@media (min-width: 1200px) {
    .hero__logo {
        right: calc((56% + 178px) * -1);
    }
}

.hero__logo + .h1 {
    margin-top: 3.2rem;
}

@media (min-width: 768px) {
    .hero__logo + .h1 {
        margin-top: 0;
    }
}

.hero__logo--sm {
    margin-bottom: 3.2rem;
}

@media (min-width: 768px) {
    .hero__logo--sm {
        display: none;
    }
}

.hero__logo--lg {
    display: none;
    right: 8.33333%;
}

@media (min-width: 768px) {
    .hero__logo--lg {
        display: block;
    }
}

@media (min-width: 1025px) {
    .hero__logo--lg {
        right: 155px;
    }
}

.hero + .two-column {
    padding-top: 0;
    margin-top: -25px;
}

.hero__show-scroll {
    position: absolute;
    bottom: 80px;
    left: 7.85%;
    width: 46px;
    height: 46px;
    display: none;
    pointer-events: none;
    z-index: 2;
}

@media (min-height: 800px) {
    .hero__show-scroll {
        bottom: 20%;
        left: calc(100vw - 117px);
    }
}

@media (min-width: 1640px) {
    .hero__show-scroll {
        left: calc(100vw - 125px);
    }
}

.hero__show-scroll img {
    width: 100%;
    height: 100%;
}

@media (min-width: 1200px) and (min-height: 720px) {
    .hero:first-child .hero__show-scroll {
        display: block;
    }
}

.bg-video-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

    .bg-video-container .bg-video {
        width: 100%;
        height: 100%;
    }

.image-text + .image-text {
    padding-top: 0;
}

.image-text {
    overflow: hidden;
}

    .image-text .text__title,
    .image-text .text__text {
        max-width: 350px;
    }

    .image-text .text__icon {
        color: #00E6A1;
        padding-bottom: 2rem;
    }

        .image-text .text__icon svg {
            width: 3.2rem;
            height: 3.2rem;
        }

@media (min-width: 768px) {
    .image-text .text__icon svg {
        width: 5rem;
        height: 5rem;
    }
}

.image-text .text__footer {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-top: 2.2rem;
}

@media (min-width: 992px) {
    .image-text .text__footer {
        position: absolute;
        left: 0;
        bottom: 5rem;
        padding-top: 0;
    }
}

.image-text .text-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.image-text .text {
    width: 100%;
}

.image-text .image {
    position: relative;
    height: 100%;
    position: relative;
    width: 100%;
}

    .image-text .image:before {
        display: block;
        padding-bottom: 74.68%;
        content: '';
    }

.image-text .image__text-container {
    transform: rotate(90deg);
    width: 300px;
    transform-origin: top left;
}

.image-text .image__text {
    position: absolute;
    top: 60px;
    right: 20px;
    z-index: 1;
    width: 18px;
    text-transform: uppercase;
    color: white;
    display: none;
}

@media (min-width: 768px) {
    .image-text .image__text {
        display: block;
    }
}

.image-text .image__container {
    height: 100%;
}

@media (min-width: 768px) {
    .image-text .image__container {
        padding-top: 6rem;
    }
}

@media (min-width: 992px) {
    .image-text .image__container {
        padding-top: 0;
    }
}

.image-text .image__pattern {
    pointer-events: none;
    position: absolute;
    top: -4rem;
    left: -1.5rem;
}

    .image-text .image__pattern .fill {
        fill: #00E6A1;
    }

@media (max-width: 767.98px) {
    .image-text .image__pattern .pattern {
        width: 8rem;
        height: 8rem;
    }
}

@media (min-width: 768px) {
    .image-text:not(.is-swap) .image__pattern {
        top: -6rem;
        left: 27.75%;
    }
}

@media (min-width: 992px) {
    .image-text:not(.is-swap) .image__pattern {
        top: 50%;
        left: -6rem;
        margin-top: -10px;
    }
}

.image-text:not(.is-swap) .text-container {
    justify-content: flex-start;
    padding-top: 4rem;
    padding-bottom: 5rem;
}

@media (min-width: 992px) {
    .image-text:not(.is-swap) .text-container {
        padding-top: 9rem;
        padding-bottom: 14.6rem;
    }
}

.image-text:not(.is-swap) .text__footer {
    bottom: 5rem;
}

@media (min-width: 992px) {
    .image-text.is-swap .col--text {
        order: 2;
    }
}

.image-text.is-swap .image__pattern {
    top: auto;
    bottom: 6.8rem;
    left: -4rem;
    margin: 0;
}

@media (min-width: 768px) {
    .image-text.is-swap .image__pattern {
        left: -6rem;
    }
}

.image-text.is-swap .image__container {
    margin-top: 4rem;
}

@media (min-width: 992px) {
    .image-text.is-swap .image__container {
        margin-top: 0;
    }
}

.image-text.is-swap .image {
    position: relative;
    width: 100%;
}

    .image-text.is-swap .image:before {
        display: block;
        padding-bottom: 87.645%;
        content: '';
    }

.image-text.is-swap .col--image {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
}

@media (min-width: 768px) {
    .image-text.is-swap .col--image {
        flex: 0 0 75%;
        max-width: 75%;
    }
}

@media (min-width: 992px) {
    .image-text.is-swap .col--image {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.image-text.is-swap .text-container {
    justify-content: center;
}

@media (min-width: 992px) {
    .image-text.is-swap .text-container {
        padding-top: 9rem;
        padding-bottom: 14.6rem;
    }
}

@media (min-width: 768px) {
    .image-text.is-swap .image__text {
        color: #8D8D93;
        top: 0;
        right: -5.6rem;
    }
}

@media (min-width: 992px) {
    .image-text.is-swap .image__text {
        top: 0;
        left: -2.2rem;
        right: auto;
    }
}

.two-column {
    color: #051219;
    overflow: hidden;
}

    .two-column.is-swap .col-12:first-child {
        order: 2;
    }

    .two-column .container {
        max-width: 100%;
    }

    .two-column .row {
        margin-left: 0;
        margin-right: 0;
    }

    .two-column .col-12 {
        padding-left: 0;
        padding-right: 0;
    }

    .two-column .card {
        flex: 1;
        display: flex;
        height: 100%;
    }

    .two-column .card__title {
        position: relative;
        z-index: 1;
    }

    .two-column .card__icon {
        color: #02484D;
        padding-bottom: 3rem;
        position: relative;
        z-index: 1;
    }

        .two-column .card__icon svg {
            width: 2.4rem;
            height: 2.4rem;
        }

@media (min-width: 576px) {
    .two-column .card__icon svg {
        width: 3.2rem;
        height: 3.2rem;
    }
}

@media (min-width: 768px) {
    .two-column .card__icon svg {
        width: 5rem;
        height: 5rem;
    }
}

.two-column .card__card {
    position: relative;
    display: flex;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 32px;
}

@media (min-width: 768px) {
    .two-column .card__card {
        padding-left: 8.5%;
        padding-right: 17.15%;
    }
}

@media (min-width: 992px) {
    .two-column .card__card {
        padding-left: 17.15%;
        padding-right: 17.15%;
    }
}

.two-column .card__image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
}

.two-column .card__content {
    padding: 4rem 3.2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    flex: 1;
    background-color: white;
    width: 100%;
    max-width: 640px;
}

@media (min-width: 768px) {
    .two-column .card__content {
        min-width: 368px;
        padding: 6rem;
    }
}

.two-column .card__title {
    padding-top: 4rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .two-column .card__title {
        padding-top: 6rem;
        margin-bottom: 3rem;
    }
}

.two-column .card__footer {
    position: relative;
    z-index: 1;
    padding-top: 1.4rem;
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.two-column .card__height {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .two-column .card__height {
        position: relative;
        width: 100%;
        min-height: 450px;
    }

        .two-column .card__height:before {
            display: block;
            padding-bottom: 56%;
            content: '';
        }
}

.two-column .card--v1 .card__pattern {
    position: absolute;
    top: 6rem;
    right: -6rem;
    pointer-events: none;
    display: none;
    z-index: 1;
}

@media (min-width: 768px) {
    .two-column .card--v1 .card__pattern {
        display: block;
    }
}

.two-column .card--v1 .card__pattern .fill {
    fill: #00E6A1;
}

.two-column .card--v2 .card__pattern {
    position: absolute;
    top: 4rem;
    left: 3.2rem;
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 768px) {
    .two-column .card--v2 .card__pattern {
        top: 6rem;
        left: 6rem;
    }
}

.two-column .card--v2 .card__pattern .fill {
    fill: #00E6A1;
}

.two-column .card--v2 .card__content {
    overflow: hidden;
}

@media (max-width: 640px) {
    .two-column .card--v2 .card__card {
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .two-column .card--v2 .card__card {
        padding-right: 0;
    }
}

.two-column .card--v2 .button:before {
    background-color: #02484D;
}

.two-column .card--v2 .button .button__icon {
    color: white;
}

.two-column .card--v2 .button:hover .button__text, .two-column .card--v2 .button:focus .button__text {
    color: white !important;
}

.two-column .card--v2 .card__footer {
    justify-content: flex-end;
}

@media (min-width: 992px) {
    .two-column .card--v2 .card__content {
        max-width: none;
    }
}

.two-column .card--v2 .card__image {
    display: none;
}

.two-column .card--v1 .card__pattern path {
    opacity: 0;
}

.two-column .card--v1 .card__pattern.is-animating path {
    -webkit-animation: fadeIn .2s ease forwards;
    animation: fadeIn .2s ease forwards;
}

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(1n) {
        -webkit-animation-delay: 0.035s !important;
        animation-delay: 0.035s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(2n) {
        -webkit-animation-delay: 0.07s !important;
        animation-delay: 0.07s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(3n) {
        -webkit-animation-delay: 0.105s !important;
        animation-delay: 0.105s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(4n) {
        -webkit-animation-delay: 0.14s !important;
        animation-delay: 0.14s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(5n) {
        -webkit-animation-delay: 0.175s !important;
        animation-delay: 0.175s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(6n) {
        -webkit-animation-delay: 0.21s !important;
        animation-delay: 0.21s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(7n) {
        -webkit-animation-delay: 0.245s !important;
        animation-delay: 0.245s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(8n) {
        -webkit-animation-delay: 0.28s !important;
        animation-delay: 0.28s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(9n) {
        -webkit-animation-delay: 0.315s !important;
        animation-delay: 0.315s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(10n) {
        -webkit-animation-delay: 0.35s !important;
        animation-delay: 0.35s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(11n) {
        -webkit-animation-delay: 0.385s !important;
        animation-delay: 0.385s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(12n) {
        -webkit-animation-delay: 0.42s !important;
        animation-delay: 0.42s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(13n) {
        -webkit-animation-delay: 0.455s !important;
        animation-delay: 0.455s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(14n) {
        -webkit-animation-delay: 0.49s !important;
        animation-delay: 0.49s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(15n) {
        -webkit-animation-delay: 0.525s !important;
        animation-delay: 0.525s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(16n) {
        -webkit-animation-delay: 0.56s !important;
        animation-delay: 0.56s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(17n) {
        -webkit-animation-delay: 0.595s !important;
        animation-delay: 0.595s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(18n) {
        -webkit-animation-delay: 0.63s !important;
        animation-delay: 0.63s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(19n) {
        -webkit-animation-delay: 0.665s !important;
        animation-delay: 0.665s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(20n) {
        -webkit-animation-delay: 0.7s !important;
        animation-delay: 0.7s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(21n) {
        -webkit-animation-delay: 0.735s !important;
        animation-delay: 0.735s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(22n) {
        -webkit-animation-delay: 0.77s !important;
        animation-delay: 0.77s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(23n) {
        -webkit-animation-delay: 0.805s !important;
        animation-delay: 0.805s !important;
    }

    .two-column .card--v1 .card__pattern.is-animating path:nth-child(24n) {
        -webkit-animation-delay: 0.84s !important;
        animation-delay: 0.84s !important;
    }

.card.c-theme-default .card__content {
    background-color: white;
}

.card.c-theme-default .button__text {
    color: #02484D;
}

.card.c-theme-dark {
    color: white;
}

    .card.c-theme-dark .card__content {
        background-color: #0B2228;
    }

    .card.c-theme-dark .card__icon {
        color: #00E6A1;
    }

    .card.c-theme-dark .button--primary {
        border: 1px solid #02484D;
        color: #00E6A1;
    }

    .card.c-theme-dark .button--secondary:before {
        background-color: #00E6A1;
    }

    .card.c-theme-dark .button--secondary .button__icon {
        color: #051219;
    }

    .card.c-theme-dark .button--secondary .button__text {
        color: white;
    }

    .card.c-theme-dark .button--secondary:hover .button__text, .card.c-theme-dark .button--secondary:focus .button__text {
        color: #051219 !important;
    }

.card.c-theme-teal {
    color: white;
}

    .card.c-theme-teal .card__content {
        background-color: #02484D;
    }

    .card.c-theme-teal .button--primary {
        color: white;
    }

    .card.c-theme-teal .card__icon {
        color: #00E6A1;
    }

    .card.c-theme-teal.card--v2 .button:before {
        background-color: #00E6A1;
    }

    .card.c-theme-teal.card--v2 .button .button__icon {
        color: #051219;
    }

    .card.c-theme-teal.card--v2 .button .button__text {
        color: white;
    }

    .card.c-theme-teal.card--v2 .button:hover .button__text, .card.c-theme-teal.card--v2 .button:focus .button__text {
        color: #051219 !important;
    }

.card.c-theme-photo {
    color: white;
}

    .card.c-theme-photo .card__content {
        background-color: transparent;
    }

    .card.c-theme-photo .button {
        background-color: white;
    }

    .card.c-theme-photo .button--primary {
        color: white;
        background-color: transparent;
        border: 1px solid white;
    }

        .card.c-theme-photo .button--primary:before {
            background-color: white;
        }

    .card.c-theme-photo .card__pattern .fill {
        fill: white;
    }

    .card.c-theme-photo .card__icon {
        color: white;
    }

    .card.c-theme-photo .card__image {
        display: block;
    }

        .card.c-theme-photo .card__image:before {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background: linear-gradient(180deg, #02090d 0%, rgba(2, 9, 13, 0) 100%);
            opacity: .75;
            z-index: 1;
        }

    .card.c-theme-photo.card--v1 .card__image:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: radial-gradient(circle at center left, #02090d 0%, rgba(2, 16, 13, 0) 65%);
        opacity: .5;
        z-index: 1;
    }

.tiles-block {
    overflow: hidden;
}

.tiles__carousel {
    overflow: visible;
}

    .tiles__carousel .swiper-slide {
        width: 100%;
        max-width: 312px;
    }

@media (min-width: 576px) {
    .tiles__carousel .swiper-slide {
        width: 312px;
    }
}

@media (min-width: 992px) {
    .tiles__carousel .swiper-slide {
        width: 330px;
    }
}

.tiles__carousel .swiper-slide:nth-child(1n) .tile {
    -webkit-animation-delay: 0.1s !important;
    animation-delay: 0.1s !important;
}

.tiles__carousel .swiper-slide:nth-child(2n) .tile {
    -webkit-animation-delay: 0.2s !important;
    animation-delay: 0.2s !important;
}

.tiles__carousel .swiper-slide:nth-child(3n) .tile {
    -webkit-animation-delay: 0.3s !important;
    animation-delay: 0.3s !important;
}

.tiles__carousel .swiper-slide:nth-child(4n) .tile {
    -webkit-animation-delay: 0.4s !important;
    animation-delay: 0.4s !important;
}

.tiles__carousel .swiper-slide:nth-child(5n) .tile {
    -webkit-animation-delay: 0.5s !important;
    animation-delay: 0.5s !important;
}

.tiles__carousel .swiper-slide:nth-child(6n) .tile {
    -webkit-animation-delay: 0.6s !important;
    animation-delay: 0.6s !important;
}

.tiles__carousel .swiper-slide:nth-child(7n) .tile {
    -webkit-animation-delay: 0.7s !important;
    animation-delay: 0.7s !important;
}

.tiles__carousel .swiper-slide:nth-child(8n) .tile {
    -webkit-animation-delay: 0.8s !important;
    animation-delay: 0.8s !important;
}

.tiles__carousel .swiper-slide:nth-child(9n) .tile {
    -webkit-animation-delay: 0.9s !important;
    animation-delay: 0.9s !important;
}

.tiles__carousel .swiper-slide:nth-child(10n) .tile {
    -webkit-animation-delay: 1s !important;
    animation-delay: 1s !important;
}

.tiles__carousel .swiper-slide:nth-child(11n) .tile {
    -webkit-animation-delay: 1.1s !important;
    animation-delay: 1.1s !important;
}

.tiles__carousel .swiper-slide:nth-child(12n) .tile {
    -webkit-animation-delay: 1.2s !important;
    animation-delay: 1.2s !important;
}

.tiles__carousel .tile {
    opacity: 0;
    transform: translateY(16px);
}

.tiles__carousel.is-animating .tile {
    -webkit-animation: fadeUpSmall 0.6s ease forwards;
    animation: fadeUpSmall 0.6s ease forwards;
}

.carousel__pagination {
    padding-top: 12px;
    display: flex;
    align-items: center;
    width: 100%;
}

    .carousel__pagination .swiper-pagination-progressbar {
        position: static;
        flex: 1;
        height: 1px;
        background: #D9DADB;
    }

        .carousel__pagination .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
            background: #02484D;
        }

    .carousel__pagination .carousel__count {
        display: block;
        font-size: 1.1rem;
    }

    .carousel__pagination .carousel__count--current {
        padding-right: 1.6rem;
        color: #02484D;
    }

    .carousel__pagination .carousel__count--total {
        padding-left: 1.7rem;
        color: #8D8D93;
    }

.tiles-block .swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
}

    .tiles-block .swiper-slide .tile {
        height: 100%;
    }

@media (min-width: 1220px) {
    .tiles-count--3 .carousel__pagination,
    .tiles-count--3 .swiper-navigation {
        display: none;
    }
}

.partners {
    overflow: hidden;
}

.partners__carousel {
    position: relative;
}

    .partners__carousel .swiper-slide {
        z-index: 0;
        position: relative;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
    }

        .partners__carousel .swiper-slide:hover {
            opacity: .7;
        }

@media (max-width: 1100px) {
    .partners__carousel {
        overflow: visible;
    }
}

.partners__carousel img {
    display: block;
}

.partners__carousel .image-wrap {
    display: block;
    opacity: 0;
    transform: translateY(16px);
}

.partners__carousel.is-animating .image-wrap {
    -webkit-animation: fadeUpSmall 0.6s ease forwards;
    animation: fadeUpSmall 0.6s ease forwards;
}

.videos {
    overflow: hidden;
}

.videos__carousel {
    overflow: visible;
}

    .videos__carousel .swiper-slide {
        width: 309px;
    }

@media (min-width: 768px) {
    .videos__carousel .swiper-slide {
        width: 442px;
    }
}

@media (min-width: 992px) {
    .videos__carousel .swiper-slide {
        width: 469px;
    }
}

.videos__carousel .swiper-slide:nth-child(1n) .tile {
    -webkit-animation-delay: 0.1s !important;
    animation-delay: 0.1s !important;
}

.videos__carousel .swiper-slide:nth-child(2n) .tile {
    -webkit-animation-delay: 0.2s !important;
    animation-delay: 0.2s !important;
}

.videos__carousel .swiper-slide:nth-child(3n) .tile {
    -webkit-animation-delay: 0.3s !important;
    animation-delay: 0.3s !important;
}

.videos__carousel .swiper-slide:nth-child(4n) .tile {
    -webkit-animation-delay: 0.4s !important;
    animation-delay: 0.4s !important;
}

.videos__carousel .swiper-slide:nth-child(5n) .tile {
    -webkit-animation-delay: 0.5s !important;
    animation-delay: 0.5s !important;
}

.videos__carousel .swiper-slide:nth-child(6n) .tile {
    -webkit-animation-delay: 0.6s !important;
    animation-delay: 0.6s !important;
}

.videos__carousel .swiper-slide:nth-child(7n) .tile {
    -webkit-animation-delay: 0.7s !important;
    animation-delay: 0.7s !important;
}

.videos__carousel .swiper-slide:nth-child(8n) .tile {
    -webkit-animation-delay: 0.8s !important;
    animation-delay: 0.8s !important;
}

.videos__carousel .swiper-slide:nth-child(9n) .tile {
    -webkit-animation-delay: 0.9s !important;
    animation-delay: 0.9s !important;
}

.videos__carousel .swiper-slide:nth-child(10n) .tile {
    -webkit-animation-delay: 1s !important;
    animation-delay: 1s !important;
}

.videos__carousel .swiper-slide:nth-child(11n) .tile {
    -webkit-animation-delay: 1.1s !important;
    animation-delay: 1.1s !important;
}

.videos__carousel .swiper-slide:nth-child(12n) .tile {
    -webkit-animation-delay: 1.2s !important;
    animation-delay: 1.2s !important;
}

.videos__carousel .tile {
    opacity: 0;
    transform: translateY(16px);
}

.videos__carousel.is-animating .tile {
    -webkit-animation: fadeUpSmall 0.6s ease forwards;
    animation: fadeUpSmall 0.6s ease forwards;
}

.tile.tile--video {
    display: flex;
    color: white;
}

    .tile.tile--video .tile__image {
        position: relative;
        width: 100%;
    }

        .tile.tile--video .tile__image:before {
            display: block;
            padding-bottom: 67.167%;
            content: '';
        }

    .tile.tile--video .tile__body {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 2.4rem 2.4rem 2.2rem 2.4rem;
        background-color: transparent;
    }

@media (min-width: 768px) {
    .tile.tile--video .tile__body {
        padding: 3.2rem 3.2rem 2.8rem 3.2rem;
    }
}

.tile.tile--video .tile__body:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(2, 9, 13, 0.75) 0%, rgba(2, 9, 13, 0) 100%);
}

.tile.tile--video .tile__title {
    position: relative;
    margin-bottom: .6rem;
    font-size: 1.6rem;
}

@media (min-width: 768px) {
    .tile.tile--video .tile__title {
        font-size: 2.2rem;
    }
}

.tile.tile--video .tile__text {
    position: relative;
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .tile.tile--video .tile__text {
        font-size: 1.6rem;
    }
}

.tile.tile--video .tile__pattern {
    position: absolute;
    top: 3.2rem;
    left: 3.2rem;
}

.faqs {
    overflow: hidden;
}

.faqs__header {
    padding-bottom: 4rem;
}

.faqs__subtitle {
    display: block;
    color: #00E6A1;
    margin-bottom: 1.2rem;
}

.faqs__title {
    margin-bottom: 0;
}

.faq__item {
    border-bottom: 1px solid rgba(195, 200, 201, 0.5);
}

    .faq__item:last-child {
        border-bottom: 0;
    }

.faq {
    margin-left: -2rem;
    margin-right: -2rem;
}

.faq__title {
    position: relative;
    min-height: 8.4rem;
    margin-bottom: 0;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    padding-right: 6rem;
    padding-left: 2rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .faq__title:after {
        content: '';
        display: inline-block;
        width: 1px;
        height: 100%;
        min-height: 6rem;
        vertical-align: middle;
    }

@media (min-width: 768px) {
    .faq__title:after {
        min-height: 6.8rem;
    }
}

@media (min-width: 768px) {
    .faq__title {
        min-height: 9.2rem;
    }
}

.faq__title-text {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 8px);
    margin-bottom: 1px;
}

.faq__indicator {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 1.8rem;
    margin-top: -8px;
}

@media (min-width: 768px) {
    .faq__indicator {
        width: 26px;
        height: 26px;
        margin-top: -13px;
    }
}

.faq__indicator:before, .faq__indicator:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    background-color: #051219;
}

.faq__indicator:before {
    transition: background .35s ease;
}

.is-active .faq__indicator:before {
    background-color: #00E6A1 !important;
}

.faq__indicator:after {
    transform: rotate(90deg);
    transition: all .35s ease;
}

.is-active .faq__indicator:after {
    transform: rotate(0deg);
    background-color: #00E6A1 !important;
}

.faq__content {
    display: none;
}

.faq__content-inner {
    padding-left: 2rem;
    padding-bottom: 2.4rem;
    padding-right: 2rem;
    opacity: 0;
    -webkit-animation: hideFaqContent linear .35s;
    animation: hideFaqContent linear .35s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media (min-width: 768px) {
    .faq__content-inner {
        max-width: 75%;
        padding-top: .7rem;
    }
}

.is-active .faq__content-inner {
    -webkit-animation: showFaqContent linear .5s;
    animation: showFaqContent linear .5s;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media all and (-ms-high-contrast: none) {
    *::-ms-backdrop,
    .faq__content-inner {
        animation: none !important;
        opacity: 1 !important;
    }

    *::-ms-backdrop,
    .is-active .faq__content-inner {
        animation: none !important;
        opacity: 1 !important;
    }
}

.cta {
    overflow: hidden;
}

    .cta .pattern {
        position: relative;
        top: -39px;
        z-index: 2;
        display: none;
    }

@media (min-width: 992px) {
    .cta .pattern {
        display: block;
    }
}

.cta .pattern .fill {
    fill: #02484D;
}

.cta__title {
    margin-bottom: 0;
}

.cta__inner {
    position: relative;
    min-height: 450px;
}

@media (min-width: 768px) {
    .cta__inner {
        min-height: 700px;
    }
}

@media (min-width: 992px) {
    .cta__inner {
        min-height: 640px;
    }
}

.cta__content__text {
    display: inline-block;
    max-width: calc(100% - 8px);
    vertical-align: bottom;
}

    .cta__content__text a {
        color: #00E6A1;
        text-decoration: none;
    }

.cta__content-container {
    position: relative;
    color: #FFFFFF;
    background-color: #0E1C23;
}

    .cta__content-container:after {
        content: '';
        display: inline-block;
        width: 1px;
    }

.cta__content {
    max-width: calc(100% - 6rem);
}

@media (min-width: 576px) {
    .cta__content {
        max-width: none;
    }
}

@media (min-width: 576px) {
    .cta--default .cta__content__col {
        padding-left: 1.4rem;
    }
}

.cta--default .cta__content-container {
    padding: 3.4rem;
}

    .cta--default .cta__content-container:after {
        min-height: 178px;
        vertical-align: bottom;
    }

@media (min-width: 768px) {
    .cta--default .cta__content-container:after {
        min-height: 207px;
    }
}

@media (min-width: 992px) {
    .cta--default .cta__content-container:after {
        min-height: 184px;
    }
}

@media (min-width: 768px) {
    .cta--default .cta__content-container {
        padding: 6.4rem;
    }
}

@media (min-width: 992px) {
    .cta--default .cta__content-container {
        padding: 7.4rem;
    }
}

.rte-block {
    overflow: hidden;
}

.rte__content {
    padding-top: 5.6rem;
}

@media (min-width: 768px) {
    .rte__content {
        padding-top: 2.2rem;
        padding-bottom: 4rem;
    }
}

@media (min-width: 1200px) {
    .rte__content {
        padding-bottom: 0;
    }
}

.rte__content h1, .rte__content h2, .rte__content h3, .rte__content h4, .rte__content h5, .rte__content h6, .rte__content span, .rte__content blockquote,
.rte__content ul,
.rte__content li,
.rte__content p {
    max-width: 594px;
}

    .rte__content h1:last-child, .rte__content h2:last-child, .rte__content h3:last-child, .rte__content h4:last-child, .rte__content h5:last-child, .rte__content h6:last-child, .rte__content span:last-child, .rte__content blockquote:last-child,
    .rte__content ul:last-child,
    .rte__content li:last-child,
    .rte__content p:last-child {
        margin-bottom: 0;
    }

.rte {
    position: relative;
}

    .rte .h3,
    .rte h3 {
        margin-bottom: 2rem;
    }

    .rte .h4,
    .rte h4 {
        margin-bottom: 2rem;
    }

    .rte ul,
    .rte ol {
        padding-left: 1.6rem;
    }

    .rte a {
        transition: color .35s ease;
    }

        .rte a:hover, .rte a:focus {
            color: #00E6A1;
        }

    .rte p {
        color: #6E6E6F;
    }

    .rte blockquote p {
        color: #051219;
    }

    .rte h6 {
        color: #8D8D93;
    }

.rte__pattern {
    position: absolute;
    pointer-events: none;
    display: none;
}

@media (min-width: 992px) {
    .rte__pattern {
        display: block;
    }
}

.rte__pattern--1 {
    top: -60px;
}

@media (min-width: 768px) {
    .rte__pattern--1 {
        right: 8.333333%;
    }
}

@media (min-width: 1200px) {
    .rte__pattern--1 {
        right: 26%;
    }
}

.rte__pattern--2 {
    bottom: -56px;
}

@media (min-width: 768px) {
    .rte__pattern--2 {
        left: 50%;
    }
}

@media (min-width: 1200px) {
    .rte__pattern--2 {
        left: auto;
        right: 10.33333%;
    }
}

.rte__cta {
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .rte__cta {
        margin-top: 5rem;
    }
}

.clubs {
    overflow: hidden;
}

@media (min-width: 992px) {
    .club-container {
        display: flex;
        margin-left: -0.8rem;
        margin-right: -0.8rem;
    }
}

@media (min-width: 1440px) {
    .club-container {
        margin-left: -1.9rem;
        margin-right: -1.9rem;
    }
}

.club {
    padding-bottom: 4rem;
}

    .club:last-child {
        padding-bottom: 0;
    }

@media (min-width: 992px) {
    .club {
        padding-bottom: 0;
        display: flex;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        width: 100%;
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
}

@media (min-width: 1440px) {
    .club {
        padding-left: 1.9rem;
        padding-right: 1.9rem;
    }
}

.club .button__icon {
    color: #FFFFFF;
    background-color: #02484D;
}

.club .button:hover .button__text, .club .button:focus .button__text {
    color: white;
}

.club .button:before {
    background-color: #02484D;
}

.club:nth-child(even) {
    color: #D9DADB;
}

    .club:nth-child(even) .club__inner {
        background-color: #0A161D;
    }

    .club:nth-child(even) .club__subtitle {
        color: #00E6A1;
    }

    .club:nth-child(even) .club__title {
        color: white;
    }

    .club:nth-child(even) .button {
        color: white;
    }

        .club:nth-child(even) .button:hover .button__text, .club:nth-child(even) .button:focus .button__text {
            color: #051219;
        }

        .club:nth-child(even) .button:before {
            background-color: #00E6A1;
        }

    .club:nth-child(even) .button__icon {
        color: #0B2228;
        background-color: #00E6A1;
    }

    .club:nth-child(even) .club__lead {
        color: inherit;
    }

        .club:nth-child(even) .club__lead + p {
            color: inherit;
        }

    .club:nth-child(even) .club__body-text {
        color: #00E6A1;
    }

.theme-dark .club:nth-child(odd) {
    color: #D9DADB;
}

    .theme-dark .club:nth-child(odd) .club__inner {
        background-color: #0A161D;
    }

    .theme-dark .club:nth-child(odd) .club__subtitle {
        color: #00E6A1;
    }

    .theme-dark .club:nth-child(odd) .club__title {
        color: white;
    }

    .theme-dark .club:nth-child(odd) .button {
        color: white;
    }

        .theme-dark .club:nth-child(odd) .button:hover .button__text, .theme-dark .club:nth-child(odd) .button:focus .button__text {
            color: #051219;
        }

        .theme-dark .club:nth-child(odd) .button:before {
            background-color: #00E6A1;
        }

    .theme-dark .club:nth-child(odd) .button__icon {
        color: #0B2228;
        background-color: #00E6A1;
    }

    .theme-dark .club:nth-child(odd) .club__lead {
        color: inherit;
    }

        .theme-dark .club:nth-child(odd) .club__lead + p {
            color: inherit;
        }

    .theme-dark .club:nth-child(odd) .club__body-text {
        color: #00E6A1;
    }

.theme-dark .club:nth-child(even) {
    color: #8D8D93;
}

    .theme-dark .club:nth-child(even) .club__inner {
        background-color: #FFFFFF;
    }

    .theme-dark .club:nth-child(even) .club__body-text,
    .theme-dark .club:nth-child(even) .club__subtitle {
        color: #02484D;
    }

    .theme-dark .club:nth-child(even) .club__title {
        color: #051219;
    }

    .theme-dark .club:nth-child(even) .club__list {
        color: #051219;
    }

    .theme-dark .club:nth-child(even) .button {
        color: #02484D;
    }

        .theme-dark .club:nth-child(even) .button:hover .button__text, .theme-dark .club:nth-child(even) .button:focus .button__text {
            color: #FFFFFF;
        }

        .theme-dark .club:nth-child(even) .button:before {
            background-color: #02484D;
        }

    .theme-dark .club:nth-child(even) .button__icon {
        color: #FFFFFF;
        background-color: #02484D;
    }

.club__inner {
    box-shadow: 3.34px 3.34px 16.72px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background-color: #FBFBFB;
    padding: 6rem 3.2rem;
}

.club__header {
    padding-bottom: 2.8rem;
}

@media (min-width: 992px) {
    .club__header {
        min-height: 182px;
    }
}

.club__title {
    margin-bottom: 1rem;
}

.club__body {
    width: 100%;
}

.club__body-inner {
    max-width: 280px;
    margin: 0 auto;
}

.club__subtitle {
    display: block;
    color: #02484D;
    padding-bottom: 1.6rem;
}

.club__lead {
    color: #8D8D93;
    margin-bottom: .3rem;
}

    .club__lead + p {
        color: #8D8D93;
    }

.club__footer {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex: 1;
    min-height: 90px;
    width: 100%;
}

.club__list {
    list-style-type: none;
    padding: 0;
}

    .club__list li {
        position: relative;
        padding-left: 2.8rem;
        padding-top: .6rem;
        padding-bottom: .6rem;
        font-size: 1.4rem;
        line-height: 1.5;
        font-weight: 300;
    }

    .club__list svg {
        width: 2.4rem;
        height: 2.4rem;
        position: absolute;
        left: 0;
        top: .4rem;
        fill: #00E6A1;
    }

.club__body-text {
    padding-left: 2.8rem;
    margin-top: 3rem;
    color: #02484D;
}

.gallery {
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

@media (min-width: 768px) {
    .row--gallery {
        justify-content: center;
    }
}

.gallery__carousel {
    overflow: visible !important;
}

@media (max-width: 767.98px) {
    .gallery__carousel {
        padding-top: 4rem;
    }
}

.gallery__carousel .swiper-slide-size {
    position: relative;
    width: 100%;
}

    .gallery__carousel .swiper-slide-size:before {
        display: block;
        padding-bottom: 57%;
        content: '';
    }

.gallery__carousel .carousel__pagination {
    padding-top: 2rem;
    padding-left: 9.25%;
}

@media (min-width: 768px) {
    .gallery__carousel .carousel__pagination {
        padding-top: 2.5rem;
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .gallery__carousel .carousel__pagination {
        padding-top: 3.2rem;
    }
}

@media (max-width: 767.98px) {
    .gallery__carousel .swiper-navigation {
        position: absolute;
        width: 146px;
        top: 0;
        right: -29px;
    }
}

.gallery__carousel .swiper-button {
    position: absolute;
    top: 50%;
    margin-top: -5.2rem;
}

@media (max-width: 767.98px) {
    .gallery__carousel .swiper-button {
        top: 0;
        margin-top: -2rem;
    }
}

@media (max-width: 767.98px) {
    .gallery__carousel .swiper-button-prev {
        top: 0;
    }
}

@media (min-width: 768px) {
    .gallery__carousel .swiper-button-prev {
        left: -6.4rem;
    }
}

@media (min-width: 992px) {
    .gallery__carousel .swiper-button-prev {
        left: -10rem;
    }
}

@media (min-width: 768px) {
    .gallery__carousel .swiper-button-next {
        right: -6.4rem;
    }
}

@media (min-width: 992px) {
    .gallery__carousel .swiper-button-next {
        right: -10rem;
    }
}

.gallery__carousel .swiper-slide:nth-child(1n) .swiper-slide-size {
    -webkit-animation-delay: 0.1s !important;
    animation-delay: 0.1s !important;
}

.gallery__carousel .swiper-slide:nth-child(2n) .swiper-slide-size {
    -webkit-animation-delay: 0.2s !important;
    animation-delay: 0.2s !important;
}

.gallery__carousel .swiper-slide:nth-child(3n) .swiper-slide-size {
    -webkit-animation-delay: 0.3s !important;
    animation-delay: 0.3s !important;
}

.gallery__carousel .swiper-slide:nth-child(4n) .swiper-slide-size {
    -webkit-animation-delay: 0.4s !important;
    animation-delay: 0.4s !important;
}

.gallery__carousel .swiper-slide:nth-child(5n) .swiper-slide-size {
    -webkit-animation-delay: 0.5s !important;
    animation-delay: 0.5s !important;
}

.gallery__carousel .swiper-slide:nth-child(6n) .swiper-slide-size {
    -webkit-animation-delay: 0.6s !important;
    animation-delay: 0.6s !important;
}

.gallery__carousel .swiper-slide:nth-child(7n) .swiper-slide-size {
    -webkit-animation-delay: 0.7s !important;
    animation-delay: 0.7s !important;
}

.gallery__carousel .swiper-slide:nth-child(8n) .swiper-slide-size {
    -webkit-animation-delay: 0.8s !important;
    animation-delay: 0.8s !important;
}

.gallery__carousel .swiper-slide:nth-child(9n) .swiper-slide-size {
    -webkit-animation-delay: 0.9s !important;
    animation-delay: 0.9s !important;
}

.gallery__carousel .swiper-slide:nth-child(10n) .swiper-slide-size {
    -webkit-animation-delay: 1s !important;
    animation-delay: 1s !important;
}

.gallery__carousel .swiper-slide:nth-child(11n) .swiper-slide-size {
    -webkit-animation-delay: 1.1s !important;
    animation-delay: 1.1s !important;
}

.gallery__carousel .swiper-slide:nth-child(12n) .swiper-slide-size {
    -webkit-animation-delay: 1.2s !important;
    animation-delay: 1.2s !important;
}

.gallery__carousel .swiper-slide-size {
    opacity: 0;
    transform: translateY(16px);
}

.gallery__carousel.is-animating .swiper-slide-size {
    -webkit-animation: fadeUpSmall 0.6s ease forwards;
    animation: fadeUpSmall 0.6s ease forwards;
}

.tiles__pattern {
    pointer-events: none;
    display: none;
    position: absolute;
}

@media (min-width: 768px) {
    .tiles__pattern {
        display: block;
    }
}

.tiles__pattern--1 {
    right: 6%;
    top: 2.4rem;
}

.tiles__pattern--2 {
    right: -8%;
    top: -9.6rem;
}

.tiles__pattern--3 {
    left: 8rem;
    top: -5.2rem;
}

@media (min-width: 992px) {
    .tiles__pattern--3 {
        top: 34rem;
        left: auto;
        right: -4rem;
    }
}

.tiles {
    overflow: hidden;
}

    .tiles .container {
        position: relative;
    }

.tiles__wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    margin-left: -8px;
    margin-right: -8px;
    padding-left: .8rem;
    padding-right: .8rem;
}

@media (min-width: 768px) {
    .tiles__wrapper {
        padding-top: 9rem;
    }
}

@media (min-width: 992px) {
    .tiles__wrapper {
        margin-left: -14px;
        margin-right: -14px;
        padding-left: .8rem;
        padding-right: .8rem;
        padding-top: 9.6rem;
    }
}

.tile-container {
    position: relative;
    z-index: 1;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: .8rem;
    padding-right: .8rem;
}

@media (min-width: 768px) {
    .tile-container {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .tile-container {
        padding-left: 1.4rem;
        padding-right: 1.4rem;
    }
}

@media (min-width: 768px) {
    .tile-container:first-child {
        top: -9rem;
    }
}

@media (min-width: 992px) {
    .tile-container:first-child {
        top: -9.6rem;
    }
}

.col--tiles-container {
    max-width: 732px;
}

.tile {
    box-shadow: 3.34px 3.34px 16.72px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    margin-bottom: 1.6rem;
    flex-direction: column;
    color: #02484D;
    text-decoration: none;
    background-color: #FFFFFF;
}

@media (min-width: 992px) {
    .tile {
        margin-bottom: 3rem;
    }
}

.tile .button {
    color: #02484D;
}

.tile .tile__footer {
    display: flex;
    align-items: flex-end;
    margin-top: auto;
}

.tile img {
    transition: transform 0.35s cubic-bezier(0.75, 0, 0.25, 1);
}

.tile__body {
    background-color: white;
}

.tile__footer {
    background-color: white;
}

.tile:not(.no-hover):hover img, .tile:not(.no-hover):active img {
    transform: scale(1.08, 1.08);
}

.tile:not(.no-hover):hover .button__text, .tile:not(.no-hover):active .button__text {
    font-weight: 500;
}

.tile:not(.no-hover):hover .arrow--inline path, .tile:not(.no-hover):active .arrow--inline path {
    stroke-width: 2;
}

.tiles__cta {
    padding-top: 5.6rem;
    padding-bottom: 9.6rem;
}

@media (max-width: 767.98px) {
    .tiles__cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 2rem;
    }
}

@media (max-width: 767.98px) and (min-width: 768px) {
    .tiles__cta {
        padding-bottom: 3vw;
    }
}

@media (max-width: 767.98px) and (min-width: 1440px) {
    .tiles__cta {
        padding-bottom: 4.5rem;
    }
}

@media (max-width: 767.98px) {
    .tiles__cta .title {
        margin-bottom: 0;
    }

    .tiles__cta .button {
        padding: 1.5rem 0;
        border: 0 !important;
        color: #00E6A1;
        background-color: 0;
    }

        .tiles__cta .button:before,
        .tiles__cta .button .button__icon {
            display: none;
        }

        .tiles__cta .button:hover, .tiles__cta .button:focus {
            color: #00E6A1 !important;
        }

            .tiles__cta .button:hover .button__text:before, .tiles__cta .button:focus .button__text:before {
                width: 100%;
            }

        .tiles__cta .button .button__text {
            position: relative;
        }

            .tiles__cta .button .button__text:before {
                content: '';
                display: block;
                position: absolute;
                bottom: 0;
                height: 1px;
                left: 0;
                width: 0;
                z-index: 0;
                background-color: #00E6A1;
                transition: all 0.3s cubic-bezier(0.75, 0, 0.25, 1);
            }
}

@media (min-width: 992px) {
    .tiles__cta {
        padding-top: 30.5rem;
    }
}

.tile__image {
    position: relative;
    overflow: hidden;
}

.tile__image-container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tile__title {
    font-weight: 400;
}

.tile__date {
    color: #02484D;
    display: block;
    margin-bottom: .9rem;
}

.tile__text {
    margin-bottom: 0;
}

.tile--v1:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 3rem;
    width: 1px;
    background-color: #D9DADB;
    z-index: 1;
    pointer-events: none;
}

.tile--v1 .fill {
    fill: white !important;
}

.tile--v1 .tile__image {
    height: 310px;
}

    .tile--v1 .tile__image .pattern {
        position: absolute;
        bottom: 0;
        right: 0;
    }

.tile--v1 .tile__body {
    padding: 3rem 5rem 1.9rem 3.6rem;
}

.tile--v1 .tile__footer {
    padding: 0 3.6rem 2rem 3.6rem;
}

.tile--v1 .tile__title {
    margin-bottom: .3rem;
    color: #051219;
}

.tile--v1 .tile__text {
    color: #051219;
}

.tile--v2:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 3rem;
    width: 1px;
    background-color: #F3F4F5;
    z-index: 1;
    pointer-events: none;
}

.tile--v2:after {
    content: '';
    display: block;
    width: 3rem;
    height: 3rem;
    background-color: #00E6A1;
    position: absolute;
    bottom: 0;
    right: 0;
}

.tile--v2 .tile__image {
    height: 245px;
}

    .tile--v2 .tile__image .tile__image-container {
        left: 3rem;
    }

.tile--v2 .tile__body {
    padding: 3rem 5rem 1.9rem 3rem;
}

.tile--v2 .tile__footer {
    padding: .8rem 3rem 2.6rem 3rem;
}

.tile--v2 .tile__title {
    margin-bottom: 1.5rem;
    color: #051219;
}

.tile--v2 .tile__text {
    color: #6E6E6F;
}

.cta--venue .container {
    padding-top: 162px;
}

@media (min-width: 768px) {
    .cta--venue .container {
        padding-top: 248px;
    }
}

@media (min-width: 992px) {
    .cta--venue .container {
        padding-top: 125px;
    }
}

.cta--venue .cta__inner {
    min-height: 588px;
}

@media (min-width: 768px) {
    .cta--venue .cta__inner {
        min-height: 715px;
    }
}

@media (min-width: 992px) {
    .cta--venue .cta__inner {
        min-height: 624px;
    }
}

.cta--venue .u_image-cover, .cta--venue .flockler__item img, .flockler__item .cta--venue img, .cta--venue .three-column .image img, .three-column .image .cta--venue img {
    top: 162px;
    height: calc(100% - 162px);
}

@media (min-width: 768px) {
    .cta--venue .u_image-cover, .cta--venue .flockler__item img, .flockler__item .cta--venue img, .cta--venue .three-column .image img, .three-column .image .cta--venue img {
        top: 190px;
        height: calc(100% - 190px);
    }
}

@media (min-width: 992px) {
    .cta--venue .u_image-cover, .cta--venue .flockler__item img, .flockler__item .cta--venue img, .cta--venue .three-column .image img, .three-column .image .cta--venue img {
        top: 125px;
        height: calc(100% - 125px);
    }
}

@media (min-width: 1200px) {
    .cta--venue .u_image-cover, .cta--venue .flockler__item img, .flockler__item .cta--venue img, .cta--venue .three-column .image img, .three-column .image .cta--venue img {
        width: 91.6%;
    }
}

@media (min-width: 1632px) {
    .cta--venue .u_image-cover, .cta--venue .flockler__item img, .flockler__item .cta--venue img, .cta--venue .three-column .image img, .three-column .image .cta--venue img {
        width: calc(((100% - 1620px) / 2) + (1620px) - 136px);
    }
}

.cta--venue .cta__content__text {
    vertical-align: top;
}

.cta--venue .cta__content-container {
    top: -162px;
    max-width: 460px;
    padding: 4rem 3.4rem;
}

    .cta--venue .cta__content-container:after {
        min-height: 229px;
        vertical-align: top;
    }

@media (min-width: 768px) {
    .cta--venue .cta__content-container:after {
        min-height: 230px;
    }
}

@media (min-width: 992px) {
    .cta--venue .cta__content-container:after {
        min-height: 286px;
    }
}

@media (min-width: 768px) {
    .cta--venue .cta__content-container {
        top: -248px;
        padding: 6rem;
    }
}

@media (min-width: 992px) {
    .cta--venue .cta__content-container {
        top: -125px;
        padding: 6.2rem;
    }
}

@media (min-width: 768px) {
    .cta--venue .cta__content__col {
        padding-right: 5.5%;
    }
}

@media (min-width: 992px) {
    .cta--venue .cta__content__col {
        padding-right: 4.8%;
    }
}

.cta--venue .cta--venue__subtitle {
    display: block;
    padding-bottom: 5px;
    color: #8D8D93;
}

.events {
    overflow: hidden;
    position: relative;
}

    .events:before {
        content: '';
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 320px;
        background-color: #FBFBFB;
    }

    .events.is-no-results .events__carousel {
        display: none;
    }

    .events.is-no-results .events__no-results {
        display: block;
    }

.events__map-container {
    overflow: visible;
    height: 234px;
}

@media (min-width: 768px) {
    .events__map-container {
        height: 478px;
    }
}

.events__map {
    height: 400px;
    background-color: #D9DADB;
}

@media (min-width: 768px) {
    .events__map {
        height: 600px;
    }
}

.events__carousel {
    overflow: visible;
}

    .events__carousel .swiper-slide {
        width: auto;
    }

    .events__carousel .tile {
        box-sizing: border-box;
        width: 310px;
    }

@media (min-width: 768px) {
    .events__carousel .tile {
        width: 348px;
    }
}

.events__carousel .swiper-slide {
    height: auto;
}

.events__carousel .carousel__pagination {
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .events__carousel .carousel__pagination {
        padding-top: 2.5rem;
    }
}

.events__carousel .swiper-slide:nth-child(1n) .tile {
    -webkit-animation-delay: 0.1s !important;
    animation-delay: 0.1s !important;
}

.events__carousel .swiper-slide:nth-child(2n) .tile {
    -webkit-animation-delay: 0.2s !important;
    animation-delay: 0.2s !important;
}

.events__carousel .swiper-slide:nth-child(3n) .tile {
    -webkit-animation-delay: 0.3s !important;
    animation-delay: 0.3s !important;
}

.events__carousel .swiper-slide:nth-child(4n) .tile {
    -webkit-animation-delay: 0.4s !important;
    animation-delay: 0.4s !important;
}

.events__carousel .swiper-slide:nth-child(5n) .tile {
    -webkit-animation-delay: 0.5s !important;
    animation-delay: 0.5s !important;
}

.events__carousel .swiper-slide:nth-child(6n) .tile {
    -webkit-animation-delay: 0.6s !important;
    animation-delay: 0.6s !important;
}

.events__carousel .swiper-slide:nth-child(7n) .tile {
    -webkit-animation-delay: 0.7s !important;
    animation-delay: 0.7s !important;
}

.events__carousel .swiper-slide:nth-child(8n) .tile {
    -webkit-animation-delay: 0.8s !important;
    animation-delay: 0.8s !important;
}

.events__carousel .swiper-slide:nth-child(9n) .tile {
    -webkit-animation-delay: 0.9s !important;
    animation-delay: 0.9s !important;
}

.events__carousel .swiper-slide:nth-child(10n) .tile {
    -webkit-animation-delay: 1s !important;
    animation-delay: 1s !important;
}

.events__carousel .swiper-slide:nth-child(11n) .tile {
    -webkit-animation-delay: 1.1s !important;
    animation-delay: 1.1s !important;
}

.events__carousel .swiper-slide:nth-child(12n) .tile {
    -webkit-animation-delay: 1.2s !important;
    animation-delay: 1.2s !important;
}

.events__carousel .tile {
    opacity: 0;
    transform: translateY(16px);
}

.events__carousel.is-animating .tile {
    -webkit-animation: fadeUpSmall 0.6s ease forwards;
    animation: fadeUpSmall 0.6s ease forwards;
}

.tile--event {
    padding: 2.4rem;
    padding-right: 2.2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 0;
    background-color: #FFFFFF;
}

    .tile--event .tile__header {
        display: flex;
        align-items: flex-start;
    }

    .tile--event .tile__image {
        flex-shrink: 0;
        width: 81px;
        height: 100px;
    }

    .tile--event .tile__header-text {
        padding-top: 1.7rem;
        padding-left: 2.2rem;
        color: #051219;
    }

    .tile--event .tile__title,
    .tile--event .tile__subtitle {
        margin-bottom: 0;
    }

    .tile--event .tile__title {
        line-height: 1.2;
        margin-bottom: .5rem;
    }

    .tile--event .tile__date {
        color: #8D8D93;
        margin-bottom: .6rem;
    }

    .tile--event .tile__body {
        padding-top: 2.6rem;
        padding-bottom: 1rem;
        color: #6E6E6F;
    }

    .tile--event:before {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        display: block;
        content: '';
        display: block;
        height: 2px;
        background-color: transparent;
        transition: background .3s ease;
    }

    .tile--event.is-active:before {
        background-color: #00E6A1;
    }

.events__header {
    padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .events__header {
        display: flex;
        align-items: flex-end;
        padding-bottom: 6rem;
    }
}

.events__header .events__header-text {
    padding-right: 8rem;
}

.events__header .events__title {
    padding-bottom: 2.6rem;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .events__header .events__title {
        padding-bottom: .5rem;
    }
}

.events__header .events__subtitle {
    margin-bottom: 0;
    color: #8D8D93;
    margin-bottom: 1.1rem;
}

.events__header .events__filter {
    flex: 1;
}

@media (min-width: 768px) {
    .events__header .events__filter {
        max-width: 350px;
    }
}

.events__header .events__filter ::-webkit-input-placeholder {
    color: #FFFFFF;
}

.events__header .events__filter ::-moz-placeholder {
    color: #FFFFFF;
}

.events__header .events__filter :-ms-input-placeholder {
    color: #FFFFFF;
}

.events__header .select--custom {
    background-color: #FBFBFB;
}

.events__carousel .swiper-button {
    width: 6rem;
    height: 6rem;
}

.events__carousel .swiper-button-next {
    color: #051219 !important;
    background-color: #00E6A1;
}

    .events__carousel .swiper-button-next:hover, .events__carousel .swiper-button-next:focus {
        color: #051219 !important;
        background-color: #01ffb3;
    }

.events__carousel .swiper-button-prev {
    color: #FFFFFF !important;
    background-color: #02484D;
}

    .events__carousel .swiper-button-prev:hover, .events__carousel .swiper-button-prev:focus {
        color: #FFFFFF !important;
        background-color: #035f66;
    }

.events__carousel .carousel__controls {
    display: flex;
    justify-content: space-between;
    position: relative;
}

@media (min-width: 768px) {
    .events__carousel .carousel__controls {
        width: 90%;
        max-width: calc(100% - 128px);
    }
}

@media (min-width: 1200px) {
    .events__carousel .carousel__controls {
        width: 100%;
        max-width: none;
    }
}

.events__carousel .carousel__controls .swiper-navigation {
    display: flex;
    justify-content: space-between;
    width: 128px;
    flex: 0 0 128px;
    max-width: 128px;
    position: absolute;
    right: -170px;
    top: -21px;
}

@media (max-width: 767.98px) {
    .events__carousel .carousel__controls .swiper-navigation {
        display: none;
    }
}

.events__no-results {
    padding-top: 20rem;
    pointer-events: none;
    display: none;
}

@media (min-width: 768px) {
    .events__no-results {
        padding-top: 17rem;
    }
}

@media (min-width: 1200px) {
    .events__no-results {
        padding-top: 18rem;
    }
}

.banner {
    overflow: hidden;
}

.banner__content {
    position: relative;
    background-color: #D9DADB;
    width: 300px;
    height: 250px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .banner__content {
        width: 728px;
        height: 90px;
    }
}

.banner__content-container {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #F3F4F5;
}

@media (min-width: 768px) {
    .banner__content-container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.template__banner {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 315px;
    padding-bottom: 9.6rem;
    color: #FFFFFF;
    background-color: #0A161D;
}

@media (min-width: 768px) {
    .template__banner {
        height: 400px;
        padding-bottom: 10rem;
    }
}

@media (min-width: 992px) {
    .template__banner {
        height: 470px;
        padding-bottom: 12.4rem;
    }

        .template__banner.course-detail__banner {
            height: 430px;
            padding-bottom: 80px;
        }
}

@media (max-width: 767.98px) {
    .template__banner.template__banner--no-filter-tabs {
        height: 270px;
        padding-bottom: 4.4rem;
    }
}

.template__banner .h1 {
    margin-bottom: 0;
}

.template__banner__pattern {
    display: none;
    margin-right: 6.8rem;
}

@media (min-width: 992px) {
    .template__banner__pattern {
        display: block;
    }
}

.template__banner__pattern .fill {
    fill: #00E6A1;
}

.template__banner__title {
    position: relative;
    align-items: baseline;
}

@media (min-width: 576px) {
    .template__banner__title {
        display: flex;
        flex: 1;
    }
}

.template__banner__title.has-icon {
    position: relative;
}

@media (min-width: 768px) {
    .template__banner__title.has-icon {
        padding-left: 7.4rem;
    }
}

@media (min-width: 1200px) {
    .template__banner__title.has-icon {
        padding-left: 8.4rem;
    }
}

.banner__title-icon {
    display: block;
    transform: translateY(10px);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

    .banner__title-icon svg {
        display: none;
    }

@media (min-width: 768px) {
    .banner__title-icon svg {
        display: block;
        width: 6rem;
        height: 6rem;
    }
}

.template__banner-inner {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    z-index: 1;
}

    .template__banner-inner .md-only {
        display: none;
    }

@media (min-width: 576px) {
    .template__banner-inner .md-only {
        display: block;
    }
}

.template__banner__cta--mobile {
    margin-bottom: -2rem;
}

@media (min-width: 576px) {
    .template__banner__cta--mobile {
        display: none;
    }
}

.template__banner__image:after {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(5, 18, 25, 0) 0%, #051219 100%);
    opacity: .75;
}

@media (min-width: 768px) {
    .template__banner__image:after {
        content: '';
    }
}

.template__banner__image .image__scrim-1,
.template__banner__image .image__scrim-2 {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: none;
}

.template__banner__image .image__scrim-1 {
    left: 0;
    right: 50%;
    background: radial-gradient(circle at center left, #051219 0%, rgba(5, 18, 25, 0) 10%);
    opacity: .8;
}

@media (min-width: 992px) {
    .template__banner__image .image__scrim-1 {
        display: block;
    }
}

.template__banner__image .image__scrim-2 {
    left: 50%;
    right: 0;
    background: radial-gradient(circle at center right, #051219 0%, rgba(5, 18, 25, 0) 10%);
    opacity: .9;
}

@media (min-width: 768px) {
    .template__banner__image .image__scrim-2 {
        display: block;
    }
}

.is-register .template__banner__image .image__scrim-2 {
    display: block;
    left: 0;
}

@media (min-width: 768px) {
    .is-register .template__banner__image .image__scrim-2 {
        left: 50%;
    }
}

.template__banner.show-scrim:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(2, 9, 13, 0) 0%, #02090d 100%);
    z-index: 0;
}

.template__filter {
    overflow: hidden;
    margin-top: -43px;
}

@media (min-width: 1200px) {
    .template__filter {
        margin-top: -53px;
    }
}

.template__filter .filter {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 86px;
    background-color: #F3F4F5;
    margin-right: -1.6rem;
    position: relative;
    margin-left: -2rem;
}

@media (min-width: 1200px) {
    .template__filter .filter {
        height: 106px;
    }
}

.template__filter .filter:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    width: 50vw;
    background-color: #F3F4F5;
    height: 100%;
}

.template__filter .filter:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 50vw;
    background-color: #F3F4F5;
    height: 100%;
}

@media (min-width: 1440px) {
    .template__filter .filter:after {
        display: none;
    }
}

.template__filter .filter__item {
    flex: 0 0 283px;
    max-width: 283px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.template__filter .select--custom {
    background-color: #F3F4F5;
}

.template__filter .filter__item--wide {
    flex: 0 0 350px;
    max-width: 350px;
}

.button--filter {
    white-space: nowrap;
}

    .button--filter .button__icon {
        position: relative;
        padding-right: 1rem;
        width: 3.4rem;
        height: 2.4rem;
    }

        .button--filter .button__icon .filter-state {
            position: absolute;
            top: 0;
            left: 0;
        }

        .button--filter .button__icon .filter-state-open {
            opacity: 0;
        }

.is-active .button--filter .button__icon .filter-state-open {
    opacity: 1;
}

.is-active .button--filter .button__icon .filter-state-closed {
    opacity: 0;
}

.filter.is-active {
    background-color: #ECEDEF;
}

    .filter.is-active:before, .filter.is-active:after {
        background-color: #ECEDEF;
    }

.template__filter {
    background-color: #F3F4F5;
}

@media (min-width: 1440px) {
    .template__filter {
        background-color: transparent;
    }
}

@media (min-width: 768px) {
    .filter-content-mobile.filter--2-items {
        display: flex !important;
    }
}

@media (max-width: 767.98px) {
    .filter-content-mobile.filter--2-items {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
        background-color: #F3F4F5 !important;
        height: auto;
        display: none;
    }

        .filter-content-mobile.filter--2-items:before, .filter-content-mobile.filter--2-items:after {
            background-color: #F3F4F5 !important;
        }

        .filter-content-mobile.filter--2-items .select--custom {
            background-color: #F3F4F5;
        }

        .filter-content-mobile.filter--2-items .filter__item {
            flex: 0 0 100%;
            max-width: 100%;
        }

            .filter-content-mobile.filter--2-items .filter__item + .filter__item {
                padding-top: 2rem;
            }
}

@media (min-width: 992px) {
    .filter-content-mobile.filter--3-items {
        display: flex !important;
    }
}

@media (max-width: 991.98px) {
    .filter-content-mobile.filter--3-items {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
        background-color: #F3F4F5 !important;
        height: auto;
        display: none;
    }

        .filter-content-mobile.filter--3-items:before, .filter-content-mobile.filter--3-items:after {
            background-color: #F3F4F5 !important;
        }

        .filter-content-mobile.filter--3-items .select--custom {
            background-color: #F3F4F5;
        }

        .filter-content-mobile.filter--3-items .filter__item {
            flex: 0 0 100%;
            max-width: 100%;
        }

            .filter-content-mobile.filter--3-items .filter__item + .filter__item {
                padding-top: 2rem;
            }
}

@media (min-width: 1440px) {
    .filter-content-mobile.filter--4-items {
        display: flex !important;
    }
}

@media (max-width: 1439.98px) {
    .filter-content-mobile.filter--4-items {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
        background-color: #F3F4F5 !important;
        height: auto;
        display: none;
    }

        .filter-content-mobile.filter--4-items:before, .filter-content-mobile.filter--4-items:after {
            background-color: #F3F4F5 !important;
        }

        .filter-content-mobile.filter--4-items .select--custom {
            background-color: #F3F4F5;
        }

        .filter-content-mobile.filter--4-items .filter__item {
            flex: 0 0 100%;
            max-width: 100%;
        }

            .filter-content-mobile.filter--4-items .filter__item + .filter__item {
                padding-top: 2rem;
            }
}

@media (min-width: 1200px) {
    .filter-content-mobile.filter--sidebar-items {
        display: block !important;
    }

        .filter-content-mobile.filter--sidebar-items .filter__item + .filter__item {
            padding-top: 2rem;
        }
}

@media (max-width: 1199.98px) {
    .filter-content-mobile.filter--sidebar-items {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
        background-color: #F3F4F5 !important;
        height: auto;
        display: none;
    }

        .filter-content-mobile.filter--sidebar-items:before, .filter-content-mobile.filter--sidebar-items:after {
            background-color: #F3F4F5 !important;
        }

        .filter-content-mobile.filter--sidebar-items .select--custom {
            background-color: #F3F4F5;
        }

        .filter-content-mobile.filter--sidebar-items .filter__item {
            flex: 0 0 100%;
            max-width: 100%;
        }

            .filter-content-mobile.filter--sidebar-items .filter__item + .filter__item {
                padding-top: 2rem;
            }
}

.filter-trigger {
    justify-content: space-between !important;
}

    .filter-trigger .button {
        flex-grow: 1;
    }

        .filter-trigger .button .button__text {
            font-weight: 500;
            color: #051219;
        }

    .filter-trigger .icon-close {
        width: 2rem;
        height: 2rem;
        margin-left: 2px;
    }

@media (min-width: 768px) {
    .filter-trigger.filter--2-items {
        display: none;
    }
}

@media (min-width: 992px) {
    .filter-trigger.filter--3-items {
        display: none;
    }
}

@media (min-width: 1440px) {
    .filter-trigger.filter--4-items {
        display: none;
    }
}

@media (min-width: 1200px) {
    .filter-trigger.filter--sidebar-items {
        display: none !important;
    }
}

.template__tabs {
    margin-top: -53px;
}

    .template__tabs .tabs {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 106px;
        background-color: #F3F4F5;
        /*margin-right: -1.6rem;*/
    }

        .template__tabs .tabs:before {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            right: 100%;
            width: 50vw;
            background-color: #F3F4F5;
            height: 100%;
        }

        .template__tabs .tabs:after {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: 100%;
            width: 50vw;
            background-color: #F3F4F5;
            height: 100%;
        }

@media (min-width: 992px) {
    .template__tabs .tabs:after {
        display: none;
    }
}

.template__tabs .tab {
    background-color: transparent;
    border: 0;
    padding-left: 0;
    padding-right: 0;
    margin-right: 7vw;
    font-size: 1.8rem;
    font-weight: 300;
    color: #051219;
    opacity: .5;
    cursor: pointer;
    transition: opacity .3s ease;
}

@media (min-width: 1260px) {
    .template__tabs .tab {
        margin-right: 52px;
    }
}

.template__tabs .tab:last-child {
    margin-right: 0;
}

.template__tabs .tab.is-active {
    opacity: 1;
    font-weight: 400;
}

.template__tabs .tab:hover, .template__tabs .tab:focus {
    opacity: 1;
}

.template__tabs a.nav-link {
    color: #051219;
    transition: opacity .3s ease;
    font-size: 1.4rem;
}

@media (min-width: 768px) {
    .template__tabs a.nav-link {
        font-size: 1.7rem;
    }
}

.tabs--news .tab {
    display: none;
}

.tabs--news .filter__item {
    width: 100%;
}

@media (min-width: 768px) {
    .tabs--news .filter__item {
        flex: 0 0 243px;
        max-width: 0 0 243px;
    }
}

.tabs--news .filter__item .select--custom {
    background-color: #F3F4F5;
}

@media (min-width: 1260px) {
    .tabs--news .tab {
        display: block;
    }

    .tabs--news .filter__item {
        display: none;
    }
}

.tile-grid {
    display: flex;
    max-width: 1089px;
    flex-wrap: wrap;
    margin-left: -.8rem;
    margin-right: -.8rem;
    justify-content: center;
}

@media (min-width: 1088px) {
    .tile-grid {
        margin-left: -1.6rem;
        margin-right: -1.6rem;
        justify-content: flex-start;
    }
}

.tile-grid__item {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: .8rem;
    padding-right: .8rem;
    padding-bottom: 3.2rem;
}

@media (min-width: 720px) {
    .tile-grid__item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1088px) {
    .tile-grid__item {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.tile-grid__item .tile {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    max-width: 380px;
    margin: 0 auto;
}

.tournament-detail__banner {
    background-color: #0A161D;
    color: #FFFFFF;
    padding-top: 168px;
}

@media (min-width: 768px) {
    .tournament-detail__banner {
        padding-top: 200px;
    }
}

@media (min-width: 1200px) {
    .tournament-detail__banner {
        padding-top: 280px;
    }
}

.tournament-detail__banner .h1 {
    margin-bottom: 0;
}

.tournament-detail__banner .pattern {
    display: none;
}

@media (min-width: 768px) {
    .tournament-detail__banner .pattern {
        display: block;
    }
}

.tournament-detail__banner .template__banner__image {
    display: flex;
    align-items: flex-end;
    position: relative;
    height: 250px;
    width: 100%;
    padding-bottom: 3rem;
    margin-top: -70px;
}

@media (min-width: 576px) {
    .tournament-detail__banner .template__banner__image {
        margin-top: -50px;
    }
}

@media (min-width: 768px) {
    .tournament-detail__banner .template__banner__image {
        height: 400px;
        padding-bottom: 4.4rem;
        margin-top: -50px;
    }
}

@media (min-width: 992px) {
    .tournament-detail__banner .template__banner__image {
        padding-bottom: 9.6rem;
        height: 460px;
        margin-top: -50px;
    }
}

.tournament-detail__banner .template__banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
}

.tournament-detail__banner .template__banner__show-scroll {
    width: 4.6rem;
    height: 4.6rem;
}

    .tournament-detail__banner .template__banner__show-scroll img {
        display: none;
    }

@media (min-width: 992px) {
    .tournament-detail__banner .template__banner__show-scroll img {
        display: block;
    }
}

.l_template__banner-top {
    position: relative;
    display: flex;
    padding-bottom: 10rem;
    z-index: 2;
}

.leaders-list {
    position: relative;
    width: 212px;
    display: none;
}

@media (min-width: 768px) {
    .leaders-list {
        display: block;
    }
}

.leader {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: .4rem;
    padding-bottom: .4rem;
    font-size: 1.8rem;
}

.leader__position {
    display: block;
    width: 24px;
    font-weight: 300;
}

.leader__score {
    color: #00E6A1;
}

.leaders__list__in-progress {
    display: block;
    padding-bottom: 1rem;
    color: #00E6A1;
}

.template__banner__cta {
    position: relative;
    bottom: -1rem;
}

.template--media-and-events {
    padding-bottom: 0 !important;
}

    .template--media-and-events .tiles-block + .tiles-block {
        padding-top: 0;
    }

    .template--media-and-events .block-header {
        max-width: 1055px;
    }

@media (min-width: 768px) {
    .template--media-and-events .swiper-wrapper {
        width: auto !important;
        max-width: 1089px;
        margin-left: -.8rem;
        margin-right: -.8rem;
    }
}

@media (min-width: 768px) and (min-width: 1088px) {
    .template--media-and-events .swiper-wrapper {
        margin-left: -1.6rem;
        margin-right: -1.6rem;
    }
}

@media (min-width: 768px) {
    .template--media-and-events .swiper-slide {
        transform: none !important;
        flex: 0 0 50%;
        max-width: 50%;
        margin-right: 0 !important;
        padding-left: .8rem;
        padding-right: .8rem;
    }
}

@media (min-width: 768px) and (min-width: 1088px) {
    .template--media-and-events .swiper-slide {
        max-width: 363px;
        flex: 0 0 33.333333%;
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }
}

@media (min-width: 768px) {
    .template--media-and-events .swiper-navigation,
    .template--media-and-events .carousel__pagination {
        display: none;
    }
}

@media (min-width: 768px) {
    .template--media-and-events .tiles__carousel .swiper-wrapper {
        translate: none !important;
        flex-wrap: wrap;
    }
}

.related-articles .block-header {
    max-width: 1055px;
}

@media (min-width: 1088px) {
    .related-articles .swiper-wrapper {
        width: auto !important;
        max-width: 1089px;
        margin-left: -1.6rem;
        margin-right: -1.6rem;
    }

    .related-articles .swiper-slide {
        transform: none !important;
        margin-right: 0 !important;
        max-width: 363px;
        flex: 0 0 33.333333%;
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }

    .related-articles .swiper-navigation,
    .related-articles .carousel__pagination {
        display: none;
    }
}

@media (min-width: 1088px) {
    .related-articles .tiles__carousel .swiper-wrapper {
        translate: none !important;
        flex-wrap: wrap;
    }
}

.template__banner--news {
    overflow: hidden;
    padding-top: 16.5rem;
    padding-bottom: 22rem;
    height: auto;
}

    .template__banner--news:after {
        display: none;
    }

@media (min-width: 768px) {
    .template__banner--news {
        padding-top: 23.4rem;
        padding-bottom: 23.6rem;
    }
}

@media (min-width: 992px) {
    .template__banner--news {
        padding-top: 26rem;
        padding-bottom: 34rem;
    }
}

.template__banner--news .template__banner-inner {
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
}

.template__banner--news .h6 {
    color: #8D8D93;
}

.news-banner__title-container {
    max-width: 508px;
}

.news-banner__title {
    margin-bottom: 3.8rem;
}

.news-banner__text-container {
    max-width: 380px;
}

.news__media {
    position: relative;
    height: 245px;
    margin-top: -190px;
    max-width: calc(100% - 8.33333%);
}

@media (min-width: 768px) {
    .news__media {
        height: 360px;
        margin-top: -200px;
    }
}

@media (min-width: 992px) {
    .news__media {
        height: 500px;
        margin-top: -250px;
    }
}

@media (min-width: 1640px) {
    .news__media {
        max-width: calc(((100% - 1620px) / 2) + 1484px);
    }
}

.news__media .pattern {
    position: absolute;
    right: 12.5%;
    top: -12px;
    z-index: 1;
    display: none;
}

@media (min-width: 768px) {
    .news__media .pattern {
        display: block;
    }
}

.news__media:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 10px;
    width: 43.5%;
    background-color: #00E6A1;
}

@media (max-width: 991.98px) {
    .template-event .rte__pattern--1 {
        display: none;
    }
}

@media (min-width: 1200px) {
    .template-event .rte__pattern--1 {
        top: 37px;
        right: 20%;
    }
}

.template__banner--event {
    height: auto;
    padding-bottom: 18rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .template__banner--event {
        padding-bottom: 25rem;
        margin-bottom: 18.5rem;
    }
}

@media (min-width: 1200px) {
    .template__banner--event {
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

.template__banner--event:after {
    display: none;
}

.template__banner--event .template__banner__cta {
    bottom: auto;
}

@media (max-width: 767.98px) {
    .template__banner--event .template__banner__cta {
        padding-top: 4.5rem;
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: flex-end;
    }
}

.template__banner--event .pattern {
    position: absolute;
    right: 10.5vw;
    bottom: -87px;
    z-index: 1;
}

.template__banner--event .template__banner-inner {
    position: relative;
    align-items: normal;
}

.template__banner--event h6 {
    color: #00E6A1;
}

.template__banner--event .banner__text {
    padding-top: 13rem;
}

@media (min-width: 768px) {
    .template__banner--event .banner__text {
        padding-top: 23rem;
    }
}

@media (min-width: 1200px) {
    .template__banner--event .banner__text {
        padding-top: 33.8rem;
        min-height: 67.6rem;
    }
}

.template__banner--event .banner__text .banner__text__title {
    max-width: 485px;
}

.template__banner--event .banner__text__info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

@media (max-width: 767.98px) {
    .template__banner--event .banner__text__info {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .template__banner--event .banner__text__info {
        padding-top: 5rem;
    }
}

@media (min-width: 1200px) {
    .template__banner--event .banner__text__info {
        padding-top: 1.4rem;
        padding-right: 3.2rem;
        padding-bottom: 4rem;
    }
}

@media (min-width: 1440px) {
    .template__banner--event .banner__text__info {
        padding-right: 4.4rem;
    }
}

.template__banner--event .banner__text__info .info__item {
    display: block;
    padding-top: .2rem;
}

    .template__banner--event .banner__text__info .info__item + .info__item {
        margin-top: 1rem;
    }

@media (min-width: 1200px) {
    .template__banner--event .banner__text__info .info__item + .info__item {
        margin-top: 1.6rem;
    }
}

.template__banner--event .banner__text__info .info__item strong {
    font-weight: 500;
}

.col--media {
    display: flex;
}

.event__media {
    position: absolute;
    right: 8px;
    bottom: -26.4rem;
    height: 245px;
    width: calc(100% - 16px);
}

@media (min-width: 768px) {
    .event__media {
        bottom: -47.8rem;
        height: 400px;
    }
}

@media (min-width: 1200px) {
    .event__media {
        height: 700px;
        bottom: -175px;
    }
}

@media (min-width: 768px) {
    .event__media:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 10px;
        background-color: #00E6A1;
    }
}

@media (min-width: 1200px) {
    .event__media:after {
        height: 70%;
    }
}

@media (max-width: 767.98px) {
    .course-detail__banner {
        height: auto !important;
        padding-top: 15rem;
    }
}

@media (max-width: 360px) {
    .course-detail__banner {
        padding-bottom: 3.2rem;
    }
}

@media (max-width: 767.98px) {
    .course-detail__banner .template__banner-inner {
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .course-detail__banner .template__banner__cta {
        display: flex;
    }
}

@media (max-width: 360px) {
    .course-detail__banner .template__banner__cta {
        display: block;
        padding-top: 1rem;
    }
}

@media (min-width: 768px) {
    .course-detail__banner .template__banner__cta {
        position: absolute;
        right: 0;
        bottom: -2.2rem;
    }
}

.course-detail__banner .template__banner__cta .button {
    width: 195px;
    justify-content: space-between;
}

@media (max-width: 360px) {
    .course-detail__banner .template__banner__cta .button {
        height: 4rem;
    }
}

@media (max-width: 767.98px) {
    .course-detail__banner .template__banner__cta .button {
        width: auto;
    }

        .course-detail__banner .template__banner__cta .button:before {
            display: none;
        }

        .course-detail__banner .template__banner__cta .button .button__text {
            padding-left: 0;
            color: #00E6A1;
            padding-right: .8rem;
        }

        .course-detail__banner .template__banner__cta .button .button__icon {
            color: #00E6A1;
        }
}

.course-detail__banner .template__banner__cta div + div {
    padding-top: 2rem;
}

@media (max-width: 767.98px) {
    .course-detail__banner .template__banner__cta div + div {
        padding-top: 0;
        padding-left: 1.2rem;
    }
}

@media (max-width: 360px) {
    .course-detail__banner .template__banner__cta div + div {
        padding-left: 0;
    }
}

.course-detail__banner .template__banner__cta div + div .button:hover .button__text, .course-detail__banner .template__banner__cta div + div .button:focus .button__text {
    color: #FFFFFF;
}

.course-detail__banner .template__banner__cta div + div .button:before {
    background-color: #02484D;
}

.course-detail__banner .template__banner__cta div + div .button__icon {
    color: #FFFFFF;
}

.course-detail__banner .template__banner__title {
    flex: 0 0 100%;
    max-width: 0 0 100%;
}

@media (min-width: 768px) {
    .course-detail__banner .template__banner__title {
        padding-right: 20rem;
    }
}

.course-detail__info {
    padding-top: 3.7rem;
}

@media (min-width: 768px) {
    .course-detail__info {
        padding-top: 5.8rem;
    }
}

@media (min-width: 1200px) {
    .course-detail__info {
        padding-top: 9.6rem;
    }
}

.course-detail__info .info__item {
    padding-bottom: .8rem;
}

@media (min-width: 768px) {
    .course-detail__info .info__item {
        padding-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .course-detail__info .info__item p + p {
        margin-top: -6px;
    }
}

.course-detail__info .detail {
    margin-bottom: 1.2rem;
    font-weight: 400;
}

@media (min-width: 1200px) {
    .l_contact-detail {
        display: flex;
        margin-left: -.8rem;
        margin-right: -.8rem;
    }

        .l_contact-detail .l_col {
            flex: 0 0 50%;
            max-width: 50%;
            padding-left: .8rem;
            padding-right: .8rem;
        }
}

.course-detail-map {
    padding-top: 3.2rem;
}

@media (min-width: 768px) {
    .course-detail-map {
        padding-top: 6rem;
    }
}

@media (min-width: 1200px) {
    .course-detail-map {
        padding-top: 10rem;
    }
}

@media (min-width: 1200px) {
    .course-detail-map {
        padding-bottom: 5rem;
    }
}

.course-detail-map__map {
    height: 20rem;
}

@media (min-width: 768px) {
    .course-detail-map__map {
        height: 350px;
    }
}

@media (min-width: 1200px) {
    .course-detail-map__map {
        height: 460px;
    }
}

.members-block {
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

    .members-block:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .members-block:before {
        background: linear-gradient(0deg, rgba(2, 9, 13, 0) 0%, #02090d 100%);
        opacity: .75;
    }

.members-container {
    padding-top: 3.8rem;
    padding-bottom: 5rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .members-container {
        padding-top: 7rem;
        padding-bottom: 7.6rem;
    }
}

@media (min-width: 992px) {
    .members-container {
        padding-top: 9.6rem;
        padding-bottom: 13rem;
    }
}

.members-container.members-search {
    height: 100%;
    background-color: #0B2228;
}

@media (max-width: 767.98px) {
    .members-container.members-search {
        padding-bottom: 8rem;
    }
}

.members-container.members-search ::-webkit-input-placeholder {
    color: rgba(251, 251, 251, 0.5);
    font-weight: 300;
}

.members-container.members-search ::-moz-placeholder {
    color: rgba(251, 251, 251, 0.5);
    font-weight: 300;
}

.members-container.members-search :-ms-input-placeholder {
    color: rgba(251, 251, 251, 0.5);
    font-weight: 300;
}

.members-container.members-search :-moz-placeholder {
    color: rgba(251, 251, 251, 0.5);
    font-weight: 300;
}

.members-container.members-search:before, .members-container.members-search:after {
    content: '';
    display: block;
    background-color: #0B2228;
    position: absolute;
    top: 0;
    bottom: 0;
}

@media (min-width: 992px) {
    .members-container.members-search:before, .members-container.members-search:after {
        display: none;
    }
}

.members-container.members-search:before {
    left: -50vw;
    width: 50vw;
}

.members-container.members-search:after {
    right: -50vw;
    width: 50vw;
}

@media (min-width: 992px) {
    .members-container.members-search .members-container__inner {
        margin: 0 auto;
    }
}

.members-container.members-search .button {
    border: 1px solid #02484D;
    color: #00E6A1;
    margin-top: 1.4rem;
}

.members-container.members-search .select--custom {
    background-color: #0B2228;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(217, 218, 219, 0.5);
}

.members-container.members-search .input {
    color: #FFFFFF;
    border-bottom: 1px solid rgba(217, 218, 219, 0.5);
}

.members-container__inner {
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (min-width: 576px) {
    .members-container__inner {
        width: 348px;
    }
}

@media (min-width: 992px) {
    .members-container__inner {
        max-width: 84%;
    }
}

.member__item {
    display: flex;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    justify-content: space-between;
}

    .member__item span:last-child {
        width: 48px;
    }

    .member__item + .member__item {
        border-top: 1px solid rgba(255, 255, 255, 0.25);
    }

.members-container__image {
    position: absolute;
    left: calc((8.333333% + 16px) * -1);
    right: calc((8.333333% + 16px) * -1);
    bottom: 0;
    top: 0;
}

    .members-container__image:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .members-container__image:before {
        background: linear-gradient(0deg, rgba(2, 9, 13, 0) 0%, #02090d 100%);
        opacity: .75;
    }

@media (min-width: 992px) {
    .members-container__image {
        display: none;
    }
}

.members-container__image img {
    -o-object-position: top left;
    object-position: top left;
}

@media (min-width: 768px) {
    .members-container__image img {
        -o-object-position: center center;
        object-position: center center;
    }
}

.course-stats .table + .table {
    padding-top: 3rem;
}

@media (min-width: 768px) {
    .course-stats .table + .table {
        padding-top: 4rem;
    }
}

.course-stats .table:last-child {
    padding-bottom: 3.8rem;
}

.l_course-stats-filter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 4.8rem;
}

    .l_course-stats-filter .select {
        width: 250px;
    }

    .l_course-stats-filter .l_col:first-child {
        flex: 0 0 100%;
        max-width: 100%;
    }

@media (min-width: 1200px) {
    .l_course-stats-filter .l_col:first-child {
        flex: 0 0 250px;
        max-width: 250px;
    }
}

.l_course-stats-filter .l_col:last-child {
    padding-top: 4rem;
}

@media (min-width: 576px) {
    .l_course-stats-filter .l_col:last-child {
        display: flex;
    }
}

@media (min-width: 1200px) {
    .l_course-stats-filter .l_col:last-child {
        padding-top: 0;
        padding-left: 6rem;
    }
}

@media (min-width: 576px) {
    .l_course-stats-filter .checkbox-container,
    .l_course-stats-filter .radio-container {
        margin-right: 3.2rem;
        margin-top: 0 !important;
    }

        .l_course-stats-filter .checkbox-container:last-child,
        .l_course-stats-filter .radio-container:last-child {
            margin-right: 0;
        }
}

@media (max-width: 767.98px) {
    .l_row-stats {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

        .l_row-stats .table-text, .l_row-stats .generic-table td, .generic-table .l_row-stats td {
            font-size: 1.2rem;
        }
}

.l_row-stats .l_flex {
    align-items: baseline;
}

@media (min-width: 768px) {
    .l_row-stats .sm-only {
        display: none;
    }
}

.l_row-stats .md-only {
    display: none;
}

@media (min-width: 768px) {
    .l_row-stats .md-only {
        display: inline;
    }
}

.l_row-stats:first-child {
    background-color: #F2F2F3;
}

.l_row-stats .l_col-left {
    flex: 0 0 22%;
    max-width: 22%;
    padding-left: .4rem;
}

@media (min-width: 768px) {
    .l_row-stats .l_col-left {
        flex: 0 0 19%;
        max-width: 19%;
        padding-left: 1.2rem;
    }
}

.l_row-stats .l_col-middle {
    flex: 0 0 78%;
    max-width: 78%;
}

@media (min-width: 768px) {
    .l_row-stats .l_col-middle {
        flex: 0 0 54%;
        max-width: 54%;
    }
}

.l_row-stats .l_col-middle > div {
    flex: 0 0 11.11111111111111%;
    max-width: 11.11111111111111%;
    text-align: center;
}

.l_row-stats .l_col-right {
    padding-right: .4rem;
    flex-grow: 1;
    text-align: right;
}

@media (max-width: 767.98px) {
    .l_row-stats .l_col-right {
        display: none;
    }
}

@media (min-width: 768px) {
    .l_row-stats .l_col-right {
        padding-right: 1.2rem;
    }
}

.course-detail__hero {
    overflow: hidden;
    position: relative;
}

    .course-detail__hero:before {
        content: '';
        display: block;
        width: 100%;
        height: 50px;
        background-color: #02090D;
        position: absolute;
        left: 0;
    }

@media (min-width: 768px) {
    .course-detail__hero:before {
        height: 225px;
    }
}

@media (min-width: 992px) {
    .course-detail__hero:before {
        height: 210px;
    }
}

.course-detail__hero .hero {
    min-height: 0;
    height: 192px;
}

@media (min-width: 1638px) {
    .course-detail__hero .hero {
        margin-left: calc((100vw - 1636px) / 2 * -1);
    }
}

@media (min-width: 576px) {
    .course-detail__hero .hero {
        height: 240px;
    }
}

@media (min-width: 768px) {
    .course-detail__hero .hero {
        height: 360px;
    }
}

@media (min-width: 992px) {
    /*.course-detail__hero .hero {
        height: 460px; } */

}

@media (min-width: 992px) and (min-width: 1025px) {
    .course-detail__hero .hero {
        margin-right: -50px;
    }
}

@media (min-width: 1025px) {
    .course-detail__hero .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 20px 0;
    }
}

.course-detail__hero .hero .swiper-pagination-bullets {
    bottom: 34px;
}

@media (min-width: 768px) {
    .course-detail__hero .hero .swiper-pagination {
        padding-left: 0;
    }

    .course-detail__hero .hero .swiper-pagination-bullets {
        bottom: 50px;
        text-align: center;
    }
}

@media (min-width: 1638px) {
    .mac .course-detail__hero .hero {
        margin-left: calc((((100vw - 1636px) / 2) + 10px) * -1);
    }
}

.row-container {
    width: 83%;
    margin: 0 auto;
    max-width: 1348px;
}

.table__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #D9DADB;
    padding-top: .9rem;
    padding-bottom: .9rem;
}

    .table__row:before {
        content: '';
        display: block;
        height: 41px;
        width: 1px;
        margin-left: -1px;
    }

.stats__title {
    color: #02484D;
}

.stat {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 70px;
    display: none;
    text-align: center;
}

@media (min-width: 992px) {
    .stat {
        min-width: 78px;
    }
}

.stat--sm {
    display: flex;
}

@media (min-width: 768px) {
    .stat--md {
        display: flex;
    }
}

.stat .table-text, .stat .generic-table td, .generic-table .stat td {
    margin-bottom: .6rem;
    font-size: 1.4rem;
}

@media (min-width: 1200px) {
    .stat .table-text, .stat .generic-table td, .generic-table .stat td {
        font-size: 1.5rem;
    }
}

.table-block {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
}

@media (min-width: 768px) {
    .table-block {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media (min-width: 1200px) {
    .table-block {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.table-block:last-child {
    padding-bottom: 10rem;
}

@media (min-width: 1200px) {
    .table-block:last-child {
        padding-bottom: 12rem;
    }
}

.table__header {
    padding-top: 2.2rem;
}

.table-text, .generic-table td {
    color: #000000;
    font-size: 1.4rem;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .table-text, .generic-table td {
        font-size: 1.6rem;
        line-height: 1.25;
        line-height: 1.4;
    }
}

.table-text.is-up, .generic-table td.is-up {
    color: #FE4F47;
}

.table-text.is-down, .generic-table td.is-down {
    color: #00C087;
}

.table-text-small {
    color: #8D8D93;
    font-size: 1.2rem;
    letter-spacing: 0.01em;
}

.under-par {
    color: #D00000 !important;
}

@media (max-width: 1199.98px) {
    .table-text--name {
        font-size: 1.4rem;
    }
}

.table .banner {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

@media (min-width: 768px) {
    .table .banner {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
}

.table__header {
    display: flex;
    align-items: center;
    letter-spacing: 0.01em;
    color: #8D8D93;
    font-size: 1.4rem;
    padding-bottom: 1rem;
}

    .table__header .md-only {
        display: none !important;
    }

@media (min-width: 768px) {
    .table__header .md-only {
        display: block !important;
    }
}

.table__header .lg-only {
    display: none;
}

@media (min-width: 992px) {
    .table__header .lg-only {
        display: inline;
    }
}

.button--sort {
    color: #8D8D93;
    padding: 0;
    border: 0;
    outline: 0;
    background-color: transparent;
    text-align: left;
    padding-left: 0;
    padding-right: 1.3rem;
    white-space: nowrap;
    cursor: pointer;
    background-position: right 4px top 7px;
    background-repeat: no-repeat;
    transition: color .3s ease;
    font-size: 1.4rem;
}

    .button--sort.is-active {
        color: #051219;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='6' height='4' viewBox='0 0 6 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L2.64645 2.64645C2.84171 2.84171 3.15829 2.84171 3.35355 2.64645L5 1' stroke='%23051219' stroke-linecap='round'/%3e%3c/svg%3e ");
        text-decoration: underline;
    }

        .button--sort.is-active.is-reverse-order {
            background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAECAYAAACtBE5DAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABSSURBVHgBNYvBCcAwDAMtg6FPfwqFfjpCVsmkGSErdIn++0/rFJXEYIFOksi4xbeDP71SzPf0KmoA1XxNZCAUjdJCsxEgSu9P/oPGyn2dc03/AcwUE5I0mHCoAAAAAElFTkSuQmCC");
        }

    .button--sort:hover, .button--sort:focus {
        color: #000000;
    }

.table__row .pga,
.table__row .country {
    flex-shrink: 0;
}

    .table__row .pga img,
    .table__row .country img {
        display: block;
        width: 2.4rem;
        height: 2.4rem;
    }

.ps__position {
    display: block;
    width: 4.6rem;
}

.ps__year {
    color: #02484D;
    display: block;
    width: 6.2rem;
}

._l-flex,
.l_flex {
    display: flex;
    align-items: center;
    flex: 1;
}

@media (min-width: 992px) {
    .player-stats-container {
        display: flex;
        align-items: flex-start;
        margin-left: -1.6rem;
        margin-right: -1.6rem;
    }
}

@media (min-width: 1200px) {
    .player-stats-container {
        margin-left: -3.2rem;
        margin-right: -3.2rem;
    }
}

@media (min-width: 1440px) {
    .player-stats-container {
        margin-left: -4rem;
        margin-right: -4rem;
    }
}

.player-stats__group {
    padding-bottom: 4rem;
}

    .player-stats__group:last-child {
        padding-bottom: 0;
    }

@media (min-width: 992px) {
    .player-stats__group {
        padding-bottom: 0;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }
}

@media (min-width: 1200px) {
    .player-stats__group {
        padding-left: 3.2rem;
        padding-right: 3.2rem;
    }
}

@media (min-width: 1440px) {
    .player-stats__group {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (max-width: 991.98px) {
    .template--player-stats .table__row {
        display: none;
    }

        .template--player-stats .table__row:nth-child(2), .template--player-stats .table__row:nth-child(3), .template--player-stats .table__row:nth-child(4), .template--player-stats .table__row:nth-child(5), .template--player-stats .table__row:nth-child(6) {
            display: flex;
        }
}

.group__load-more {
    padding-top: 2rem;
}

@media (min-width: 992px) {
    .group__load-more {
        display: none;
    }
}

.group__load-more .button {
    width: 100%;
    justify-content: center;
}

.table--player-entries ._l-left-col {
    display: flex;
    align-items: center;
    flex: 1;
}

.table--player-entries ._l-right-col {
    display: flex;
    align-items: center;
}

.table--player-entries .stat {
    min-width: 110px;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

@media (max-width: 991.98px) {
    .table--player-entries .stat:last-child {
        padding-right: .8rem;
        min-width: 10rem;
    }
}

@media (max-width: 767.98px) {
    .table--player-entries .stat {
        padding-right: 0;
        min-width: 0;
    }
}

.table--player-entries .data-status {
    width: 24px;
    text-align: center;
}

    .table--player-entries .data-status svg {
        color: #00E6A1;
    }

@media (min-width: 768px) {
    .table--player-entries .data-status {
        display: none;
    }
}

.table--player-entries .country {
    padding-right: .8rem;
    padding-left: .8rem;
}

@media (min-width: 768px) {
    .table--player-entries .country {
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .table--player-entries .country {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

.table--player-entries .pga {
    padding-left: .8rem;
    padding-right: .8rem;
    display: none;
}

@media (min-width: 576px) {
    .table--player-entries .pga {
        display: block;
    }
}

@media (min-width: 992px) {
    .table--player-entries .pga {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

.table--player-entries .table-text, .table--player-entries .generic-table td, .generic-table .table--player-entries td {
    padding-left: .8rem;
    padding-right: .8rem;
}

@media (min-width: 992px) {
    .table--player-entries .table-text, .table--player-entries .generic-table td, .generic-table .table--player-entries td {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

.table--tee-times .table__row {
    align-items: flex-start;
}

@media (max-width: 767.98px) {
    .table--tee-times .table__row {
        padding-bottom: 2.2rem;
        padding-top: 2.2rem;
        width: calc(100vh - 100px);
    }
}

@media (min-width: 768px) {
    .table--tee-times .table__row {
        align-items: center;
    }
}

.table--tee-times .table-text--em {
    color: #188DE2;
}

._l-tee-times-row ._l-left-col {
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    ._l-tee-times-row ._l-left-col ._l-data-time,
    ._l-tee-times-row ._l-left-col ._l-data-field,
    ._l-tee-times-row ._l-left-col ._l-data-tee {
        padding-left: 1rem;
    }
}

._l-tee-times-row ._l-left-col ._l-data-time {
    width: 70px;
}

@media (min-width: 992px) {
    ._l-tee-times-row ._l-left-col ._l-data-time {
        width: 90px;
    }
}

._l-tee-times-row ._l-left-col ._l-data-tee {
    display: block;
    width: 70px;
}

@media (min-width: 992px) {
    ._l-tee-times-row ._l-left-col ._l-data-tee {
        width: 80px;
    }
}

._l-tee-times-row ._l-left-col ._l-data-field {
    width: 90px;
    /*display: none !important;*/
}

@media (min-width: 992px) {
    ._l-tee-times-row ._l-left-col ._l-data-field {
        display: block !important;
    }
}

._l-tee-times-row ._l-right-col {
    display: flex;
    width: 75%;
    flex: 0 0 75%;
    max-width: 75%;
    flex-wrap: wrap;
    align-items: center;
}

@media (min-width: 768px) {
    ._l-tee-times-row ._l-right-col {
        flex-wrap: nowrap;
    }
}

._l-tee-times-row ._l-right-col span {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: .4rem;
}

@media (min-width: 768px) {
    ._l-tee-times-row ._l-right-col span {
        margin-bottom: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.table--leaderboard .table__row {
    cursor: pointer;
}

    .table--leaderboard .table__row:after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        display: block;
        background-color: transparent;
        position: absolute;
        bottom: -1px;
        left: 0;
        transition: background .3s ease;
    }

    .table--leaderboard .table__row:hover, .table--leaderboard .table__row:focus {
        background-color: #F3F4F5;
    }

        .table--leaderboard .table__row:hover:after, .table--leaderboard .table__row:focus:after {
            background-color: #D9DADB !important;
        }

.table--leaderboard ._l-left-col {
    display: flex;
    align-items: center;
    flex: 1;
}

.table--leaderboard ._l-right-col {
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .table--leaderboard .stat {
        min-width: 0;
        width: 4rem;
        padding-right: 0;
        min-width: 0;
    }
}

@media (min-width: 992px) {
    .table--leaderboard .stat {
        min-width: 5.6rem;
        padding-left: .8rem;
        padding-right: .8rem;
    }
}

@media (min-width: 1200px) {
    .table--leaderboard .stat {
        min-width: 6.4rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

.table--leaderboard .stat .table-text, .table--leaderboard .stat .generic-table td, .generic-table .table--leaderboard .stat td {
    font-weight: 500;
}

.table--leaderboard .country {
    padding-right: .8rem;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .table--leaderboard .country {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

@media (max-width: 480px) {
    .table--leaderboard .country {
        display: none;
    }
}

.table--leaderboard .pga {
    padding-left: .8rem;
    padding-right: .8rem;
}

@media (min-width: 992px) {
    .table--leaderboard .pga {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

@media (max-width: 580px) {
    .table--leaderboard .pga {
        display: none;
    }
}

.table--leaderboard .table-text, .table--leaderboard .generic-table td, .generic-table .table--leaderboard td {
    padding-left: .8rem;
    padding-right: .8rem;
}

.table--leaderboard .table-text--position {
    width: 32px;
}

@media (min-width: 1200px) {
    .table--leaderboard .table-text--position {
        width: 48px;
    }
}

@media (min-width: 992px) {
    .table--leaderboard .table-text, .table--leaderboard .generic-table td, .generic-table .table--leaderboard td {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

.table__row-content {
    display: none;
}

@media (min-width: 768px) {
    .table__row-content.content-is-active {
        border-bottom: 1px solid #8D8D93;
    }
}

.table__row-content__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 992px) {
    .table__row-content__inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.row-content__body {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 2rem;
}

.row-content__col {
    width: 40px;
    flex: 0 0 40px;
    max-width: 40px;
}

@media (min-width: 992px) {
    .row-content__col {
        width: 55px;
        flex: 0 0 55px;
        max-width: 55px;
    }
}

.row-content__col--left {
    border-right: 2px solid #D9DADB;
}

@media (min-width: 992px) {
    .row-content__col--left {
        border-right: 1px solid #D9DADB;
    }
}

.row-content__col--left .score {
    justify-content: flex-start;
}

.row-content__col--left .is-total {
    font-weight: 400;
}

.row-content__col--right {
    background-color: #F5F5F6;
    border-left: 2px solid #D9DADB;
    text-align: center;
}

@media (min-width: 992px) {
    .row-content__col--right {
        border-left: 1px solid #D9DADB;
    }
}

.row-content__col--right .score {
    color: #051219;
}

@media (max-width: 767.98px) {
    .row-content__col--right .score {
        width: 3.6rem;
        height: 3.6rem;
    }
}

.row-content__col--right .score-container {
    width: 100%;
}

@media (max-width: 991.98px) {
    .row-content__col--right .score-container:first-child .score {
        text-transform: uppercase;
        font-weight: 500;
        color: #8D8D93;
    }
}

@media (max-width: 767.98px) {
    .row-content__col--right .score-container {
        width: 3.8rem;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .row-content__col--right .sm-only {
        display: none;
    }
}

.row-content__col--right .lg-only {
    display: none;
}

@media (min-width: 992px) {
    .row-content__col--right .lg-only {
        display: block;
    }
}

.row-content__col--right.is-in {
    display: none;
}

@media (min-width: 768px) {
    .row-content__col--right.is-in {
        display: none;
    }
}

@media (min-width: 768px) {
    .row-content__col--right.is-out {
        display: none;
    }
}

.score-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.score-container {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1200px) {
    .score-container {
        width: 48px;
        height: 48px;
    }
}

@media (min-width: 1440px) {
    .score-container {
        width: 52px;
        height: 52px;
    }
}

/*@media (max-width: 767.98px) {
  .score-container--out-in,
  .score-container--in,
  .score-container--out,
  .row-content__col--right.is-in,
  .row-content__col--right.is-out {
    display: none; 

  } }*/

/*@media (min-width: 768px) {
  .row-content__col--right.is-in,
  .row-content__col--right.is-out {
    display: none !important; } }*/

.data-holes-is-out .score-container--out {
    display: flex;
}

.data-holes-is-out .row-content__col--right.is-out {
    display: block;
}

.data-holes-is-in .score-container--in {
    display: flex;
}

.data-holes-is-in .row-content__col--right.is-in {
    display: block;
}

.row-content__scroll {
    position: relative;
    width: calc(100% - (40px * 2));
    flex: 0 0 calc(100% - (40px * 2));
    max-width: calc(100% - (40px * 2));
    overflow: auto;
}

@media (min-width: 768px) {
    .row-content__scroll {
        width: calc(100% - (40px * 2));
        flex: 0 0 calc(100% - (40px * 2));
        max-width: calc(100% - (40px * 2));
    }
}

@media (min-width: 992px) {
    .row-content__scroll {
        width: calc(100% - (55px * 2));
        flex: 0 0 calc(100% - (55px * 2));
        max-width: calc(100% - (55px * 2));
    }
}

.row-content__scroll .score {
    position: relative;
}

.show-leaderboard-mobile-swipe .row-content__scroll .score:before {
    content: '';
    display: block;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    pointer-events: none;
}

@media (min-width: 639px) and (max-width: 767px) {
    .show-leaderboard-mobile-swipe .row-content__scroll .score:before {
        display: none;
    }
}

@media (min-width: 1328px) {
    .show-leaderboard-mobile-swipe .row-content__scroll .score:before {
        display: none;
    }
}

.remove-swipe .row-content__scroll .score:before {
    opacity: 0;
    visibility: hidden;
    transition: all .5s linear 2s;
}

.row-content__scroll.hide-mobile-gesture .score:before {
    display: none !important;
}

.row-content__scroll__mobile-swipe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 639px) and (max-width: 767px) {
    .row-content__scroll__mobile-swipe {
        display: none;
    }
}

@media (min-width: 1328px) {
    .row-content__scroll__mobile-swipe {
        display: none;
    }
}

.hide-mobile-gesture .row-content__scroll__mobile-swipe {
    display: none !important;
}

.show-leaderboard-mobile-swipe .row-content__scroll__mobile-swipe {
    opacity: 1;
    visibility: visible;
}

.show-leaderboard-mobile-swipe.remove-swipe .row-content__scroll__mobile-swipe {
    opacity: 0;
    visibility: hidden;
    transition: all .5s linear 2s;
}

.mobile-swipe__icon {
    -webkit-animation: swipeGesture 1s linear infinite;
    animation: swipeGesture 1s linear infinite;
}

    .mobile-swipe__icon svg {
        width: 4rem;
        height: 4rem;
    }

.row-content__header {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
}
/* @media (max-width: 767.98px) {
    .row-content__header {
      order: 2;
      padding-top: 0;
      padding-bottom: 3.2rem; } 

  }*/

.score {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    font-weight: 500;
    font-size: 1.4rem;
}

    .score.is-eagle {
        border: 1px solid #00964e;
        background-color: #49D190;
        font-weight: 400;
    }

        .score.is-eagle:after {
            background: none;
            border: 1px solid #00964e;
            content: "";
            display: block;
            position: absolute;
            top: 3px;
            left: 3px;
            right: 2px;
            bottom: 2px;
            pointer-events: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
        }

.key__icon.score.is-eagle > span {
    width: 2rem;
    height: 2rem;
    border: 1px solid #00964e;
    border-radius: 50%;
    line-height: 16px;
}

.key__icon.score.is-eagle:after {
    border: none;
}

.score.is-birdie {
    border: 1px solid #840600;
    background-color: #FE4F47;
    font-weight: 400;
}

.score.is-na {
    color: #fff;
    border: 1px solid #003d69;
    background-color: #051219;
    font-weight: 400;
    border-radius: 0;
}

    .score.is-na:after {
        background: none;
        border: 1px solid #FFF;
        content: "";
        display: block;
        position: absolute;
        top: 2px;
        left: 2px;
        right: 2px;
        bottom: 2px;
        pointer-events: none;
    }

.score.is-par {
    color: #051219;
    /*border: 1px solid #8D8D93;*/
    background-color: rgba(0, 0, 0, 0);
    font-weight: 400;
}

.score.is-bogey {
    border: 1px solid #003d69;
    background-color: #188DE2;
    font-weight: 400;
    border-radius: 0;
}

.score.is-bogey2 {
    border: 1px solid #003d69;
    background-color: #051219;
    font-weight: 400;
    border-radius: 0;
}

    .score.is-bogey2:after {
        background: none;
        border: 1px solid #FFF;
        content: "";
        display: block;
        position: absolute;
        top: 2px;
        left: 2px;
        right: 2px;
        bottom: 2px;
        pointer-events: none;
    }

.key__icon.score.is-bogey2 > span {
    width: 2rem;
    height: 2rem;
    border: 1px solid #FFF;
    line-height: 16px;
}

.key__icon.score.is-bogey2:after {
    border: none;
}

.score.is-total {
    color: #051219;
}

.score--text {
    color: #8D8D93;
    font-size: 1.2rem;
    font-weight: 400;
}

.score-container--out-in .score--text {
    color: #051219;
}

.score-row--footer .score--text {
    color: #051219;
}

.row-content__key {
    display: flex;
}

@media (max-width: 767.98px) {
    .row-content__key {
        flex-wrap: wrap;
    }
}

.key {
    display: flex;
    align-items: center;
    padding-right: 2.6rem;
    flex-shrink: 0;
    padding-top: .6rem;
    padding-bottom: .6rem;
}

.key__icon {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.3rem;
    letter-spacing: 0.01em;
    font-weight: 300;
}

    .key__icon span {
        width: 100%;
        text-align: center;
        padding-top: 1px;
        line-height: 1;
    }

.key__text {
    font-size: 1.2rem;
    letter-spacing: 0.01em;
    padding-left: 1rem;
}

.hole-tabs {
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding-left: 40px;
}

@media (min-width: 768px) {
    .hole-tabs {
        display: none;
    }
}

.hole-tab {
    color: #051219;
    margin-left: .6rem;
    margin-right: .6rem;
    border: 0;
    padding: .4rem .6rem;
    border-bottom: 2px solid transparent;
    background-color: transparent;
    font-size: 1.4rem;
    outline: 0;
    cursor: pointer;
}

    .hole-tab.is-active {
        pointer-events: none;
        font-weight: 500;
        border-bottom: 2px solid currentColor;
    }

@media (max-width: 767.98px) {
    .row-content__col,
    .row-content__scroll {
        border-bottom: 1px solid #D9DADB;
    }
}

.table__row-content__close {
    position: absolute;
    right: -12px;
    top: 0;
    color: #02484D;
}

@media (min-width: 992px) {
    .table__row-content__close {
        right: 0;
    }
}

._l-tournament-row {
    display: flex;
}

    ._l-tournament-row ._l-data-date {
        flex: 0 0 100px;
        max-width: 100px;
    }

@media (min-width: 1200px) {
    ._l-tournament-row ._l-data-date {
        flex: 0 0 150px;
        max-width: 150px;
        padding-left: 1.2rem;
    }
}

._l-tournament-row ._l-tournament-club-wrap {
    flex: 0 0 calc((100% - 100px) * 63 / 100);
    width: calc((100% - 100px) * 63 / 100);
    max-width: calc((100% - 100px) * 63 / 100);
}

@media (min-width: 768px) {
    ._l-tournament-row ._l-tournament-club-wrap {
        display: flex;
        align-items: flex-start;
    }
}

@media (min-width: 1200px) {
    ._l-tournament-row ._l-tournament-club-wrap {
        flex: 0 0 calc((100% - 150px) * 63 / 100);
        width: calc((100% - 150px) * 63 / 100);
        max-width: calc((100% - 150px) * 63 / 100);
    }

        ._l-tournament-row ._l-tournament-club-wrap.narrow {
            flex: 0 0 calc((100% - 150px) * 70 / 100);
            width: calc((100% - 150px) * 70 / 100);
            max-width: calc((100% - 150px) * 70 / 100);
        }
}

._l-tournament-row ._l-tournament-club-wrap .data-tournament {
    padding-left: .5rem;
    padding-right: 2rem;
}

@media (min-width: 768px) {
    ._l-tournament-row ._l-tournament-club-wrap .data-tournament {
        flex: 0 0 56%;
        max-width: 56%;
    }
}

._l-tournament-row ._l-tournament-club-wrap .data-club {
    padding-left: .5rem;
    padding-right: 2rem;
}

@media (min-width: 768px) {
    ._l-tournament-row ._l-tournament-club-wrap .data-club {
        padding-left: 0;
        flex: 0 0 44%;
        max-width: 44%;
        padding-right: 4rem;
    }
}

._l-tournament-row ._l-data-holes {
    position: relative;
    flex: 0 0 calc((100% - 100px) * 12 / 100);
    width: calc((100% - 100px) * 12 / 100);
    max-width: calc((100% - 100px) * 12 / 100);
    text-align: right;
}

@media (min-width: 768px) {
    ._l-tournament-row ._l-data-holes {
        text-align: left;
    }
}

@media (min-width: 1200px) {
    ._l-tournament-row ._l-data-holes {
        flex: 0 0 calc((100% - 150px) * 9 / 100);
        width: calc((100% - 150px) * 9 / 100);
        max-width: calc((100% - 150px) * 9 / 100);
    }

        ._l-tournament-row ._l-data-holes.wider {
            flex: 0 0 calc((100% - 150px) * 15 / 100);
            width: calc((100% - 150px) * 15 / 100);
            max-width: calc((100% - 150px) * 15 / 100);
        }
}

.table__row--tournaments {
    cursor: pointer;
    align-items: flex-start;
    transition: background .3s ease;
    padding-top: 1.8rem;
    padding-bottom: 2.2rem;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

    .table__row--tournaments:after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        display: block;
        background-color: transparent;
        position: absolute;
        bottom: -1px;
        left: 0;
        transition: background .3s ease;
    }

    .table__row--tournaments:hover, .table__row--tournaments:focus {
        background-color: #F3F4F5;
    }

        .table__row--tournaments:hover:after, .table__row--tournaments:focus:after {
            background-color: #D9DADB !important;
        }

@media (min-width: 768px) {
    .table__row--tournaments {
        flex-wrap: nowrap;
        padding-top: 1.8rem;
        padding-bottom: 1.8rem;
    }
}

@media (min-width: 992px) {
    .table__row--tournaments {
        padding-top: 3.1rem;
        padding-bottom: 2.9rem;
    }
}

.table__row--tournaments:before {
    display: none;
}

.table__row--tournaments.in-progress:after {
    background-color: #00E6A1 !important;
}

@media (min-width: 768px) {
    .table__row--tournaments.in-progress:after {
        height: 3px;
    }
}

.table__row--tournaments.can-register:after {
    background-color: #FE4F47 !important;
}

@media (min-width: 768px) {
    .table__row--tournaments.can-register:after {
        height: 3px;
    }
}

@media (max-width: 991.98px) {
    .table__row--tournaments .table-text, .table__row--tournaments .generic-table td, .generic-table .table__row--tournaments td {
        font-size: 1.4rem;
    }
}

.table__row--tournaments .data-date {
    opacity: .65;
}

    .table__row--tournaments .data-date .table-text, .table__row--tournaments .data-date .generic-table td, .generic-table .table__row--tournaments .data-date td {
        color: #051219;
    }

.table__row--tournaments .data-holes .table-text, .table__row--tournaments .data-holes .generic-table td, .generic-table .table__row--tournaments .data-holes td {
}

@media (min-width: 768px) {
    .table__row--tournaments .data-holes .table-text, .table__row--tournaments .data-holes .generic-table td, .generic-table .table__row--tournaments .data-holes td {
        display: inline;
    }
}

.tournament-state {
    display: flex;
    align-items: center;
    height: 2.4rem;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    color: #8D8D93;
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 1px;
}

@media (max-width: 767.98px) {
    .tournament-state {
        position: absolute;
        left: 0;
        bottom: 0;
    }

        .tournament-state.hide-sm {
            display: none;
        }
}

@media (min-width: 768px) {
    .tournament-state {
        flex: 0 0 calc((100% - 100px) * 25 / 100);
        width: calc((100% - 100px) * 25 / 100);
        max-width: calc((100% - 100px) * 25 / 100);
        justify-content: flex-end;
    }

        .tournament-state.hide-sm {
            flex: 0 0 calc((100% - 150px) * 10 / 100);
            width: calc((100% - 150px) * 10 / 100);
            max-width: calc((100% - 150px) * 10 / 100);
            margin-right: 6px;
        }
}

@media (min-width: 1200px) {
    .tournament-state {
        flex: 0 0 calc((100% - 150px) * 28 / 100);
        width: calc((100% - 150px) * 28 / 100);
        max-width: calc((100% - 150px) * 28 / 100);
    }

        .tournament-state.hide-sm {
            flex: 0 0 calc((100% - 150px) * 15 / 100);
            width: calc((100% - 150px) * 15 / 100);
            max-width: calc((100% - 150px) * 15 / 100);
        }
}

.can-register .tournament-state {
    color: #FE4F47;
}

.in-progress .tournament-state {
    color: #00C489;
}

@media (min-width: 1440px) {
    .tournament-state .tournament-state__text span {
        display: inline;
    }
}

.tournament-state__icon {
    margin-left: 3.2rem;
    display: none;
}

@media (min-width: 1200px) {
    .tournament-state__icon {
        display: block;
    }
}

@media (min-width: 768px) {
    .tournament-gender__icon {
        position: absolute;
        left: -34px;
        top: -2px;
    }

        .tournament-gender__icon.align {
            left: 0;
            position: relative;
        }
}

@media (min-width: 992px) {
    .tournament-gender__icon {
        top: -2px;
    }
}

.tournament-gender__icon.is-female {
    color: #FF527B;
}

.tournament-gender__icon.is-male {
    color: #7BCDE8;
}

.table__header._l-tournament-row {
    display: none;
}

@media (min-width: 992px) {
    .table__header._l-tournament-row {
        display: flex;
    }
}

@media (max-width: 767.98px) {
    .l_oom-row.table__header {
        display: none;
    }
}

.l_oom-row .l_left-col {
    display: flex;
    align-items: center;
    flex: 1;
}

@media (min-width: 992px) {
    .l_oom-row .l_left-col {
        padding-left: 1rem;
    }
}

.l_oom-row .l_right-col {
    display: flex;
    align-items: center;
}

    .l_oom-row .l_right-col > div {
        text-align: center;
    }

        .l_oom-row .l_right-col > div .table-text, .l_oom-row .l_right-col > div .generic-table td, .generic-table .l_oom-row .l_right-col > div td {
            padding-right: 1.3rem;
        }

.l_oom-row .l_data-last {
    width: 40px;
    display: none;
}

@media (min-width: 576px) {
    .l_oom-row .l_data-last {
        display: block;
    }
}

@media (min-width: 768px) {
    .l_oom-row .l_data-last {
        width: 50px;
    }
}

.l_oom-row .l_data-change {
    width: 30px;
}

@media (min-width: 768px) {
    .l_oom-row .l_data-change {
        width: 40px;
    }
}

@media (min-width: 992px) {
    .l_oom-row .l_data-change {
        width: 52px;
    }
}

.l_oom-row .l_data-this {
    width: 38px;
}

@media (min-width: 768px) {
    .l_oom-row .l_data-this {
        width: 50px;
    }
}

.l_oom-row .data-country,
.l_oom-row .data-pga {
    padding-left: .8rem;
    padding-right: .8rem;
}

@media (min-width: 1200px) {
    .l_oom-row .data-country,
    .l_oom-row .data-pga {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

.l_oom-row .l_data-name {
    padding-left: .8rem;
    padding-right: .8rem;
}

@media (min-width: 1200px) {
    .l_oom-row .l_data-name {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

.l_oom-row .data-pga {
    display: none;
}

@media (min-width: 576px) {
    .l_oom-row .data-pga {
        display: block;
    }
}

.l_oom-row .l_data-av-course,
.l_oom-row .l_data-av-par {
    display: none;
}

@media (min-width: 992px) {
    .l_oom-row .l_data-av-course,
    .l_oom-row .l_data-av-par {
        display: block;
    }
}

.l_oom-row .l_data-no-ev {
    width: 80px;
    display: none;
}

@media (min-width: 768px) {
    .l_oom-row .l_data-no-ev {
        display: block;
    }
}

@media (min-width: 1200px) {
    .l_oom-row .l_data-no-ev {
        width: 120px;
    }
}

.l_oom-row .l_data-av-points {
    width: 80px;
    display: none;
}

@media (min-width: 768px) {
    .l_oom-row .l_data-av-points {
        display: block;
    }
}

@media (min-width: 1200px) {
    .l_oom-row .l_data-av-points {
        width: 100px;
    }
}

.l_oom-row .l_data-av-course {
    width: 150px;
}

@media (min-width: 1200px) {
    .l_oom-row .l_data-av-course {
        width: 160px;
    }
}

.l_oom-row .l_data-av-par {
    width: 70px;
}

@media (min-width: 1200px) {
    .l_oom-row .l_data-av-par {
        width: 80px;
    }
}

.table-text.has-indicator, .generic-table td.has-indicator {
    padding-right: 1.3rem;
    position: relative;
}

    .table-text.has-indicator:before, .generic-table td.has-indicator:before {
        content: '';
        display: block;
        width: 6px;
        height: 4px;
        position: absolute;
        right: 4px;
        top: 8px;
    }

    .table-text.has-indicator.is-down, .generic-table td.has-indicator.is-down {
        color: #FE4F47;
    }

        .table-text.has-indicator.is-down:before, .generic-table td.has-indicator.is-down:before {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='6' height='4' viewBox='0 0 6 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L2.64645 2.64645C2.84171 2.84171 3.15829 2.84171 3.35355 2.64645L5 1' stroke='%23FE4F47' stroke-linecap='round'/%3e%3c/svg%3e");
        }

    .table-text.has-indicator.is-up, .generic-table td.has-indicator.is-up {
        color: #00C087;
    }

        .table-text.has-indicator.is-up:before, .generic-table td.has-indicator.is-up:before {
            transform: rotate(180deg);
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='6' height='4' viewBox='0 0 6 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L2.64645 2.64645C2.84171 2.84171 3.15829 2.84171 3.35355 2.64645L5 1' stroke='%2300C087' stroke-linecap='round'/%3e%3c/svg%3e");
        }

@media (max-width: 580px) {
    .l_OOM-breakdown-row.table__row {
        padding-top: 1.6rem;
        padding-bottom: 1.6rem;
    }

    .l_OOM-breakdown-row .l_flex {
        align-items: flex-start;
    }
}

.l_OOM-breakdown-row .data-date {
    opacity: .6;
}

@media (min-width: 768px) {
    .l_OOM-breakdown-row .sm-only {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .l_OOM-breakdown-row .l_data-position {
        width: 40px !important;
    }
}

@media (min-width: 768px) {
    .l_OOM-breakdown-row .l_data-position .sm-only {
        display: none;
    }
}

@media (min-width: 992px) {
    .l_OOM-breakdown-row .l_left-col {
        padding-left: 1.2rem;
    }
}

.l_OOM-breakdown-row .l_left-col .l_data-date {
    width: 90px;
}

@media (min-width: 768px) {
    .l_OOM-breakdown-row .l_left-col .l_data-date {
        width: 104px;
    }
}

@media (min-width: 992px) {
    .l_OOM-breakdown-row .l_left-col .l_data-date {
        width: 114px;
    }
}

@media (min-width: 1200px) {
    .l_OOM-breakdown-row .l_left-col .l_data-date {
        width: 140px;
    }
}

.l_OOM-breakdown-row .l_left-col .l_data-tournament {
    padding-right: 2rem;
}

@media (min-width: 992px) {
    .l_OOM-breakdown-row .l_left-col .l_data-tournament {
        padding-right: 3.2rem;
    }
}

@media (min-width: 1200px) {
    .l_OOM-breakdown-row .l_left-col .l_data-tournament {
        width: 60%;
    }
}

.l_OOM-breakdown-row .l_left-col .l_data-club {
    padding-right: 2.4rem;
    display: none;
}

@media (min-width: 1200px) {
    .l_OOM-breakdown-row .l_left-col .l_data-club {
        display: block;
    }
}

.l_OOM-breakdown-row .l_right-col {
    display: flex;
}

    .l_OOM-breakdown-row .l_right-col div {
        width: 72px;
        text-align: center;
    }

@media (min-width: 992px) {
    .l_OOM-breakdown-row .l_right-col div {
        width: 92px;
    }
}

.l_OOM-breakdown-row .l_right-col .l_data-rating-diff {
    width: 150px;
}

.l_OOM-breakdown-row .l_right-col .l_data-par-dif,
.l_OOM-breakdown-row .l_right-col .l_data-points {
    width: 60px;
    padding-left: 1rem;
}

@media (min-width: 992px) {
    .l_OOM-breakdown-row .l_right-col .l_data-par-dif,
    .l_OOM-breakdown-row .l_right-col .l_data-points {
        padding-left: 0;
        width: 78px;
    }
}

.l_OOM-breakdown-row .l_right-col .l_data-rounds,
.l_OOM-breakdown-row .l_right-col .l_data-score {
    display: none;
}

@media (min-width: 768px) {
    .l_OOM-breakdown-row .l_right-col .l_data-rounds,
    .l_OOM-breakdown-row .l_right-col .l_data-score {
        display: block;
    }
}

.l_OOM-breakdown-row .l_right-col .l_data-par-dif,
.l_OOM-breakdown-row .l_right-col .l_data-rating-diff {
    display: none;
}

@media (min-width: 1340px) {
    .l_OOM-breakdown-row .l_right-col .l_data-par-dif,
    .l_OOM-breakdown-row .l_right-col .l_data-rating-diff {
        display: block;
    }
}

.l_OOM-breakdown-row.table__row .l_right-col div {
    padding-right: 1.3rem;
}

@media (min-width: 992px) {
    .resources__posts .pagination {
        margin-left: -4%;
    }
}

.resources__banner {
    padding-top: 23.3rem;
    padding-bottom: 16rem;
}

.resources__posts__pattern {
    padding-bottom: 78px;
    display: none;
}

@media (min-width: 1200px) {
    .resources__posts__pattern {
        display: block;
        height: 40rem;
    }
}

.resources__posts__pattern .pattern {
    position: absolute;
    top: 29rem;
    right: 33.3333%;
}

.posts {
    display: flex;
    flex-wrap: wrap;
    margin-left: -.8rem;
    margin-right: -.8rem;
    padding-top: 3.2rem;
}

.post-container {
    padding-left: .8rem;
    padding-right: .8rem;
}

@media (min-width: 768px) {
    .post-container {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .post-container {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.post {
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    width: 242px;
    padding-bottom: 4rem;
    margin-bottom: 3.2rem;
}

    .post:hover .button__text, .post:focus .button__text {
        font-weight: 500;
    }

    .post:hover .arrow--inline path, .post:focus .arrow--inline path {
        stroke-width: 2;
    }

    .post .post__icon {
        padding-bottom: 1.6rem;
        color: #00E6A1;
    }

.post__text {
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.5;
    opacity: .8;
}

.post .button {
    color: #72E7C9;
}

.resources__featured__pattern {
    position: absolute;
}

    .resources__featured__pattern.pattern--01 {
        top: 12.8rem;
        right: 33.3333%;
        top: 17rem;
    }

    .resources__featured__pattern.pattern--02 {
        top: 50rem;
        left: 7rem;
    }

    .resources__featured__pattern.pattern--03 {
        top: 69.6rem;
        right: -5rem;
    }

.resources__featured__tiles {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 6.4rem;
}

@media (min-width: 768px) {
    .resources__featured__tiles {
        padding-bottom: 14.5rem;
    }
}

@media (min-width: 1200px) {
    .resources__featured__tiles {
        padding-bottom: 20rem;
    }
}

.resource-container {
    flex: 0 0 100%;
    max-width: 100%;
}

    .resource-container .tile__image-container:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: linear-gradient(0deg, rgba(5, 18, 25, 0) 0%, #051219 100%);
    }

.resource-container--01 .tile__image-container {
    display: none;
}

.resource-container--01 .tile,
.resource-container--06 .tile {
    background-color: #0B2228;
}

.resource-container--01 .button:before,
.resource-container--06 .button:before {
    background-color: #02484D;
}

.resource-container--01 .button__icon,
.resource-container--06 .button__icon {
    color: #FFFFFF;
}

.resource-container--02 .tile__image-container {
    display: none;
}

.resource-container--02 .tile {
    color: #051219;
    background-color: #00E6A1;
}

.resource-container--02 .button:before {
    background-color: #FFFFFF;
}

.resource-container--02 .button__icon {
    color: #000000;
}

.resource-container--02 .tile--resource:hover {
    color: inherit;
}

.resource-container--04 .tile__image-container {
    display: none;
}

.resource-container--04 .tile {
    background-color: #02484D;
}

.resource-container--04 .button:before {
    background-color: #0B2228;
}

.resource-container--04 .button__icon {
    color: #FFFFFF;
}

.resource-container--05 .tile__image-container,
.resource-container--03 .tile__image-container {
    display: none;
}

.resource-container--05 .tile,
.resource-container--03 .tile {
    color: #051219;
    background-color: #FFFFFF;
}

.resource-container--05 .button:before,
.resource-container--03 .button:before {
    background-color: #00E6A1;
}

.resource-container--05 .button__icon,
.resource-container--03 .button__icon {
    color: #000000;
}

@media (min-width: 768px) {
    .resource-container {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .resource-container {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.tile--resource {
    color: #FFFFFF;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    min-height: 410px;
}

    .tile--resource:before {
        display: block;
        padding-bottom: 86%;
        content: '';
    }

@media (min-width: 576px) {
    .tile--resource {
        position: relative;
        width: 100%;
    }

        .tile--resource:before {
            display: block;
            padding-bottom: 80%;
            content: '';
        }
}

@media (min-width: 768px) {
    .tile--resource {
        position: relative;
        width: 100%;
    }

        .tile--resource:before {
            display: block;
            padding-bottom: 110%;
            content: '';
        }
}

.tile--resource .tile__footer,
.tile--resource .tile__body {
    position: absolute;
    background-color: transparent;
    z-index: 1;
}

.tile--resource .tile__body {
    padding: 4rem;
    width: 306px;
    top: 0;
    left: 0;
}

.tile--resource .tile__text {
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.5;
    opacity: .8;
}

.tile--resource .tile__footer {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 3.2rem;
}

body:not(.mobile) .tile--resource:hover .icon-arrow {
    transform: translateX(3px);
}

.resources__banner--detail {
    padding-top: 16rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .resources__banner--detail {
        padding-bottom: 3.5rem;
        padding-top: 23.3rem;
    }
}

@media (min-width: 992px) {
    .resources__banner--detail {
        padding-bottom: 10.2rem;
    }
}

.resources__banner--detail .row {
    align-items: flex-end;
}

.resources__banner--detail .h1 {
    margin-bottom: 0;
    padding-right: 1.2rem;
}

@media (max-width: 767.98px) {
    .resources__banner--detail .h6 {
        display: none;
    }
}

.resources__banner--detail .banner__cta {
    display: flex;
    justify-content: flex-end;
    padding-top: 4rem;
}

@media (min-width: 992px) {
    .resources__banner--detail .banner__cta {
        padding-top: 0;
    }
}

.template__cta {
    padding-top: 9rem;
    padding-bottom: 5rem;
}

    .template__cta .button--secondary {
        margin-left: -2rem;
    }

@media (max-width: 767.98px) {
    .resource-detail__strip {
        display: none;
    }
}

.strip__bg {
    background-color: #00E6A1;
    height: .5rem;
}

@media (min-width: 992px) {
    .strip__bg {
        height: 1rem;
    }
}

.u_no-padding-top {
    padding-top: 0 !important;
}

.u_no-padding-bottom {
    padding-bottom: 0 !important;
}

.search-results-banner {
    padding-top: 12.8rem;
}

@media (min-width: 768px) {
    .search-results-banner {
        padding-top: 18rem;
    }
}

@media (min-width: 992px) {
    .search-results-banner {
        padding-top: 20rem;
    }
}

.search-results {
    padding-top: 2.4rem;
}

@media (min-width: 768px) {
    .search-results {
        padding-top: 4.4rem;
    }
}

@media (min-width: 992px) {
    .search-results {
        padding-top: 8.4rem;
    }
}

.search-result {
    display: flex;
    align-items: flex-start;
    color: #FFFFFF;
    text-decoration: none;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #02484D;
}

@media (min-width: 992px) {
    .search-result {
        padding-bottom: 4rem;
        margin-bottom: 4rem;
    }
}

.search-result__body {
    padding-top: 2rem;
    max-width: 37.5rem;
}

    .search-result__body p {
        font-size: 1.4rem;
    }

.search-result__image {
    position: relative;
    width: 100%;
    display: none;
    margin-right: 6rem;
}

    .search-result__image:before {
        display: block;
        padding-bottom: 76.76%;
        content: '';
    }

@media (min-width: 768px) {
    .search-result__image {
        display: block;
        width: 195px;
    }
}

@media (min-width: 992px) {
    .search-result__image {
        width: 228px;
    }
}

.search-result__title {
    margin-bottom: .4rem;
}

.contact-tiles {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-left: -.8rem;
    margin-right: -.8rem;
}

    .contact-tiles .tile-container {
        top: 0;
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: .8rem;
        padding-right: .8rem;
        padding-bottom: 1.6rem;
    }

@media (min-width: 992px) {
    .contact-tiles .tile-container {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1440px) {
    .contact-tiles .tile-container {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.contact-tiles .contact-tiles__pattern {
    position: absolute;
}

@media (max-width: 991.98px) {
    .contact-tiles .contact-tiles__pattern {
        display: none;
    }
}

.contact-tiles .contact-tiles__pattern--01 {
    top: 95px;
    right: -34px;
}

.contact-tiles .contact-tiles__pattern--02 {
    right: 42%;
    bottom: 155px;
}

.contact-tiles .contact-tiles__pattern--03 {
    bottom: -12px;
    left: 238px;
}

address {
    font-style: normal;
    font-size: 1.4rem;
    font-weight: 300;
}

.contact-form__club {
    display: none;
}

.form__group--contact {
    padding-top: .8rem;
}

.form__contact-item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 1rem;
    flex-wrap: wrap;
}

    .form__contact-item .form__label {
        padding-right: 2rem;
        margin-bottom: 0;
    }

@media (min-width: 576px) {
    .form__contact-item .form__label {
        margin-bottom: 1em;
    }
}

.form__contact-item p {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .form__contact-item p {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.form__contact-item .contact-text {
    color: #000000;
}

.tile--contact {
    position: relative;
    padding: 3.8rem 6.8rem 2.8rem 4rem;
    margin-bottom: 0;
    color: #000000;
    height: 100%;
    width: 100%;
}

    .tile--contact:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 3rem;
        height: 100%;
        width: 1px;
        background-color: #F3F4F5;
    }

    .tile--contact .tile__title {
        margin-bottom: .8rem;
    }

    .tile--contact .tile__body {
        padding-top: 4rem;
        flex-grow: 1;
    }

        .tile--contact .tile__body:after {
            content: '';
            height: 100%;
            min-height: 100px;
            display: inline-block;
            vertical-align: bottom;
        }

        .tile--contact .tile__body .contact-text {
            display: inline-block;
            vertical-align: bottom;
            max-width: calc(100% - 6px);
        }

@media (min-width: 768px) {
    .l_content-10 {
        padding-right: 10.125%;
    }
}

.contact__section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.contact__template {
    position: relative;
}

.contact__banner {
    padding-bottom: 6.8rem;
    padding-top: 21rem;
}

@media (min-width: 768px) {
    .contact__banner {
        padding-top: 22rem;
        padding-bottom: 6.4rem;
    }
}

@media (min-width: 1200px) {
    .contact__banner {
        padding-top: 23.3rem;
        padding-bottom: 9rem;
    }
}

@media (max-width: 767.98px) {
    .contact__banner .h6 {
        display: none;
    }
}

.contact-template__bg {
    position: absolute;
    height: 560px;
    top: 0;
    left: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .contact-template__bg {
        height: 590px;
    }
}

@media (min-width: 1200px) {
    .contact-template__bg {
        height: 800px;
    }
}

.contact-template__bg img {
    -o-object-position: top center;
    object-position: top center;
}

.contact-template__bg:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #02090D 0%, rgba(2, 19, 13, 0) 100%);
}

.contact__details__info {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: calc(8.33333% + 8px);
    padding-right: calc(8.33333% + 8px);
}

@media (min-width: 768px) {
    .contact__details__info {
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .contact__details__info {
        padding-left: 0;
    }
}

.contact__details {
    overflow: hidden;
    margin-left: calc((8.33333% + 16px) * -1);
    margin-right: calc((8.33333% + 16px) * -1);
}

@media (min-width: 768px) {
    .contact__details {
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    .contact__details {
        margin-left: 0;
    }
}

.contact__details .row {
    align-items: center;
}

.contact__details address {
    padding-bottom: 2.8rem;
}

.contact__details .image {
    padding-top: 11rem;
    position: relative;
    margin-right: -8.333333%;
    z-index: 10;
}

@media (max-width: 767.98px) {
    .contact__details .image {
        padding-top: 5.2rem;
    }
}

@media (min-width: 768px) {
    .contact__details .image {
        right: -1px;
    }
}

@media (min-width: 992px) {
    .contact__details .image {
        padding-top: 0;
    }
}

.contact__details .image-reveal-container {
    position: relative;
    height: 280px;
}

@media (min-width: 768px) {
    .contact__details .image-reveal-container {
        height: 525px;
    }
}

@media (min-width: 992px) {
    .contact__details .image-reveal-container {
        height: 532px;
    }
}

.contact__details .image__pattern {
    position: absolute;
    top: 50px;
    left: 196px;
}

@media (max-width: 767.98px) {
    .contact__details .image__pattern {
        left: -20px;
        top: 12px;
    }

        .contact__details .image__pattern .pattern {
            width: 80px;
            height: 80px;
        }
}

@media (min-width: 992px) {
    .contact__details .image__pattern {
        top: auto;
        left: -60px;
        bottom: 174px;
    }
}

.contact__details .image__pattern .fill {
    fill: #00E6A1;
}

@media (min-width: 576px) {
    .break-sm {
        display: none;
    }
}

.profile-tiles {
    padding-bottom: 10.6rem;
}

@media (min-width: 768px) {
    .profile-tiles {
        padding-bottom: 5rem;
    }
}

@media (min-width: 992px) {
    .profile-tiles {
        padding-bottom: 12rem;
    }
}

.profile-tiles-contanier {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.profile-tile-holder {
    padding-left: 1rem;
    padding-right: 1rem;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .profile-tile-holder {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .profile-tile-holder {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 1200px) {
    .profile-tile-holder {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.tile--profile {
    position: relative;
    position: relative;
    width: 100%;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

    .tile--profile:before {
        display: block;
        padding-bottom: 135%;
        content: '';
    }

    .tile--profile:after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: rgba(2, 72, 77, 0);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 2;
        mix-blend-mode: multiply;
        transition: background .3s ease;
    }

    .tile--profile:hover:after {
        background-color: #02484d;
    }

    .tile--profile:hover .tile__hover {
        opacity: 1;
        transition: opacity .75s ease;
    }

    .tile--profile .tile__image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .tile--profile .tile__pattern {
        position: absolute;
        top: 3rem;
        left: 3rem;
        z-index: 1;
    }

        .tile--profile .tile__pattern .fill {
            fill: currentColor;
        }

    .tile--profile .tile__content {
        position: absolute;
        top: 0;
        background: linear-gradient(0deg, #051219 0%, rgba(5, 18, 25, 0) 59%);
        bottom: 0;
        left: 0;
        right: 0;
        padding: 3rem;
        display: flex;
        align-items: flex-end;
    }

        .tile--profile .tile__content .tile__title {
            margin-bottom: .8rem;
        }

        .tile--profile .tile__content:before {
            content: '';
            display: block;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: -50px;
        }

    .tile--profile .tile__hover {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        opacity: 0;
        transition: opacity .25s ease;
        z-index: 5;
        font-weight: 300;
    }

        .tile--profile .tile__hover .arrow--inline {
            color: #00E6A1;
            margin-top: 2rem;
        }

            .tile--profile .tile__hover .arrow--inline path {
                stroke-width: 2;
            }

@media (min-width: 1200px) {
    .l_sidebar-content {
        display: flex;
        flex: 1;
    }

        .l_sidebar-content .l_sidebar {
            flex: 0 0 30%;
            max-width: 470px;
        }
}

.l_sidebar-content .template__content {
    flex: 1;
}

.l_sidebar {
    margin-top: 0;
}

    .l_sidebar .help-text {
        padding-right: 16px;
    }

@media (min-width: 1200px) {
    .l_sidebar .container {
        height: 100%;
    }

    .l_sidebar .row {
        display: block;
        margin-left: 0;
        margin-right: 0;
        height: 100%;
    }

    .l_sidebar .col-10 {
        padding-left: 0;
        padding-right: 0;
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
        height: 100%;
    }

    .l_sidebar .filter {
        height: auto;
        margin-left: 0;
        height: 100%;
        margin-right: 0;
        display: block;
        padding-top: 8rem;
    }

    .l_sidebar .filter-content-mobile {
        min-height: 100%;
    }

    .l_sidebar .filter__item {
        margin: 0 auto;
    }
}

.find-course__results {
    min-height: 800px;
    padding-top: 4rem;
}

@media (min-width: 768px) {
    .find-course__results {
        padding-top: 5.8rem;
    }
}

@media (min-width: 992px) {
    .find-course__results {
        padding-top: 9rem;
    }
}

@media (min-width: 992px) {
    .course-tiles {
        padding-top: 3.2rem;
    }
}

.tile--course {
    padding: 3.2rem 3.2rem 3.2rem 3.2rem;
    display: flex;
    margin-bottom: 1.6rem;
}

@media (max-width: 767.98px) {
    .tile--course br {
        display: none;
    }
}

@media (min-width: 768px) {
    .tile--course {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding: 4rem 0 4rem 4.4rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    .tile--course {
        margin-bottom: 1.2rem;
    }
}

.tile--course .tile__title {
    color: #051219;
}

.tile--course .tile__text {
    color: #6E6E6F;
    font-size: 1.4rem;
}

.tile--course .tile__footer {
    margin-top: 0;
    display: flex;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .tile--course .tile__footer {
        padding-top: 2rem;
    }

        .tile--course .tile__footer .button {
            height: 4rem;
            padding-left: .8rem;
            padding-right: .8rem;
        }

            .tile--course .tile__footer .button:before {
                display: none;
            }

        .tile--course .tile__footer .button__text {
            padding: 0;
        }

        .tile--course .tile__footer .button__icon {
            display: none;
        }
}

@media (min-width: 768px) {
    .tile--course .tile__footer {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .tile--course .tile__footer {
        flex-direction: row;
    }
}

.tile--course .tile__footer div:first-child {
    border-right: 1px solid #D9DADB;
    padding-right: 3rem;
}

@media (min-width: 768px) {
    .tile--course .tile__footer div:first-child {
        border-right: 0;
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .tile--course .tile__footer div:first-child {
        border-right: 1px solid #D9DADB;
        padding-right: 4rem;
    }
}

@media (max-width: 767.98px) {
    .tile--course .tile__footer div:last-child {
        padding-left: 2.4rem;
    }
}

@media (min-width: 768px) {
    .tile--course .tile__footer div {
        padding-top: .5rem;
        padding-bottom: .5rem;
    }
}

@media (min-width: 992px) {
    .tile--course .tile__footer div {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.tile--course .tile__footer .bat:before {
    background-color: transparent;
}

@media (min-width: 768px) {
    .tile--course .tile__footer .bat--smlg {
        display: none;
    }
}

@media (min-width: 992px) {
    .tile--course .tile__footer .bat--smlg {
        display: inline-flex;
    }
}

.tile--course .tile__footer .bat--md {
    display: none;
}

@media (min-width: 768px) {
    .tile--course .tile__footer .bat--md {
        display: inline-flex;
    }
}

@media (min-width: 992px) {
    .tile--course .tile__footer .bat--md {
        display: none;
    }
}

.tile--course .tile__footer .bat--md:before {
    background-color: #F3F4F5;
}

.help-text {
    color: #8D8D93;
    font-size: 1.4rem;
    font-weight: 400;
}

.course__search {
    flex: 1;
    padding-left: 12.5%;
    position: relative;
}

    .course__search ::-webkit-input-placeholder {
        color: #FFFFFF;
        font-weight: 300;
    }

    .course__search ::-moz-placeholder {
        color: #FFFFFF;
        font-weight: 300;
    }

    .course__search :-ms-input-placeholder {
        color: #FFFFFF;
        font-weight: 300;
    }

    .course__search :-moz-placeholder {
        color: #FFFFFF;
        font-weight: 300;
    }

.course__search__input {
    background-color: transparent;
    border: 0;
    outline: 0;
    border-bottom: 1px solid rgba(217, 218, 219, 0.5);
    width: 100%;
    max-width: 615px;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    padding-left: 3.2rem;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.35s ease;
}

@media (min-width: 768px) {
    .course__search__input {
        padding-left: 4rem;
    }
}

@media (min-width: 992px) {
    .course__search__input {
        padding-left: 5.6rem;
    }
}

.course__search__input:hover, .course__search__input:focus {
    border-bottom: 1px solid #00E6A1;
}

.course__search-container {
    position: relative;
}

.filter-accordion__content {
    display: none;
}

.filter-accordion__content-inner {
    padding-top: 2.2rem;
    padding-bottom: 2rem;
}

.course__search__icon {
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1.2rem;
    pointer-events: none;
}

@media (min-width: 992px) {
    .course__search__icon {
        left: .6rem;
    }
}

.apply-filter-container .button {
    width: 100%;
    justify-content: center;
}

@media (min-width: 1200px) {
    .apply-filter-container {
        display: none;
    }
}

.filter-accordion__title {
    position: relative;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    margin-bottom: 0;
    border-bottom: 1px solid #E6E7E8;
    cursor: pointer;
}

.filter-accordion__title-text {
    font-size: 1.6rem;
    font-weight: 400;
}

.filter-accordion__indicator {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 10px;
    height: 10px;
    top: 50%;
    right: 1.2rem;
    margin-top: -5px;
}

@media (min-width: 768px) {
    .filter-accordion__indicator {
        width: 10px;
        height: 10px;
        margin-top: -5px;
    }
}

.filter-accordion__indicator:before, .filter-accordion__indicator:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    background-color: #8D8D93;
    opacity: .65;
}

.filter-accordion__indicator:before {
    transition: background .35s ease;
}

.filter-accordion__indicator:after {
    transform: rotate(90deg);
    transition: all .35s ease;
}

.is-active .filter-accordion__indicator:after {
    transform: rotate(0deg);
}

.help-text--lg {
    display: none;
    margin-bottom: .5rem;
}

@media (min-width: 992px) {
    .help-text--lg {
        display: block;
    }
}

.find-a-course__banner {
    height: 300px;
    padding-bottom: 3.8rem;
}

@media (min-width: 768px) {
    .find-a-course__banner {
        height: 358px;
        padding-bottom: 5rem;
    }
}

.find-a-course__banner:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #051219 0%, rgba(5, 18, 25, 0) 100%);
    z-index: 1;
    opacity: .75;
}

@media (max-width: 767.98px) {
    .find-a-course__banner .template__banner-inner {
        flex-wrap: wrap;
    }

        .find-a-course__banner .template__banner-inner .course__search {
            padding-top: .8rem;
            padding-left: 0;
            flex: 0 0 100%;
            max-width: 100%;
        }
}

.template__content {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.nav-is-solid .template__content {
    padding-top: 60px;
}

@media (min-width: 768px) {
    .nav-is-solid .template__content {
        padding-top: 80px;
    }
}

@media (min-width: 992px) {
    .nav-is-solid .template__content {
        padding-top: 90px;
    }
}

.template__tiles {
    padding-top: 5.6rem;
}

@media (min-width: 768px) {
    .template__tiles {
        padding-top: 8rem;
    }
}

@media (min-width: 992px) {
    .template__tiles {
        padding-top: 9rem;
    }
}

.related-articles {
    position: relative;
    overflow: hidden;
}

    .related-articles .block-pattern {
        position: absolute;
        top: 240px;
        right: 9vw;
        display: none;
    }

@media (min-width: 1200px) {
    .related-articles .block-pattern {
        display: block;
    }
}

@media (min-width: 1440px) {
    .related-articles .block-pattern {
        right: calc((100% - 1620px) / 2 + 260px);
    }
}

.rte__image {
    position: relative;
    margin-top: 6rem;
    margin-bottom: 6rem;
}

    .rte__image:last-child {
        margin-bottom: 0;
    }

@media (min-width: 768px) {
    .rte__image {
        margin-top: 8rem;
        margin-bottom: 8rem;
    }
}

@media (min-width: 992px) {
    .rte__image {
        padding-right: 10.25%;
        margin-top: 10rem;
        margin-bottom: 10rem;
    }
}

@media (min-width: 1200px) {
    .rte__image {
        padding-right: 20.25%;
    }
}

.rte__image:first-child {
    margin-top: 0;
}

.rte__image .image-reveal-container {
    position: relative;
    max-width: 1076px;
}

.rte__image .rte__image__pattern {
    position: absolute;
    bottom: 90px;
    left: -60px;
}

@media (max-width: 991.98px) {
    .rte__image .rte__image__pattern {
        bottom: 70px;
        left: -35px;
    }

        .rte__image .rte__image__pattern .pattern {
            width: 7rem;
            height: 7rem;
        }
}

@media (max-width: 991.98px) and (max-width: 640px) {
    .rte__image .rte__image__pattern {
        display: none;
    }
}

.rte__image .rte__image__pattern .fill {
    fill: #00E6A1;
}

.tee-times__special-info {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    padding-left: 12.75vw;
    display: none;
}

@media (min-width: 576px) {
    .tee-times__special-info {
        display: block;
    }
}

@media (min-width: 992px) {
    .tee-times__special-info {
        padding-left: 0;
        display: block;
        position: absolute;
        bottom: -30px;
        left: 0;
    }
}

.player-entries__special-info {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    padding-left: 12.75vw;
    display: none;
}

@media (min-width: 768px) {
    .player-entries__special-info {
        padding-left: 0;
        display: block;
        position: absolute;
        bottom: -30px;
        left: 0;
        white-space: nowrap;
    }
}

@media (min-width: 992px) {
    .player-entries__special-info {
        bottom: -30px;
    }
}

@media (max-width: 767.98px) {
    .OOM-breakdown__banner {
        height: auto !important;
        padding-top: 15.8rem;
        padding-bottom: 6rem !important;
    }
}

@media (min-width: 768px) {
    .OOM-breakdown__banner {
        height: 505px;
        padding-bottom: 6.4rem;
    }
}

@media (min-width: 992px) {
    .OOM-breakdown__banner {
        padding-bottom: 9.2rem;
        height: 470px;
    }
}

.OOM-breakdown__banner .template__banner-inner {
    flex-wrap: wrap;
}

.OOM-breakdown__banner .template__banner__cta {
    padding-top: 2.2rem;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .OOM-breakdown__banner .template__banner__cta {
        padding-top: 3.2rem;
    }
}

.OOM-breakdown__banner .template__banner__cta .button {
    width: 186px;
    justify-content: space-between;
}

@media (max-width: 767.98px) {
    .OOM-breakdown__banner .template__banner__cta .button {
        height: 4rem;
    }

        .OOM-breakdown__banner .template__banner__cta .button .button__text {
            padding-left: 0;
            padding-right: 0;
            color: #00E6A1;
        }

        .OOM-breakdown__banner .template__banner__cta .button .button__icon {
            color: #00E6A1;
        }

        .OOM-breakdown__banner .template__banner__cta .button:before {
            display: none;
        }
}

@media (max-width: 767.98px) {
    .OOM-breakdown__banner .template__banner__cta div + div .button .button__text,
    .OOM-breakdown__banner .template__banner__cta div + div .button .button__icon {
        color: #72E7C9;
    }
}

@media (min-width: 768px) {
    .OOM-breakdown__banner .template__banner__cta {
        display: flex;
        justify-content: flex-end;
    }

        .OOM-breakdown__banner .template__banner__cta .button {
            width: 235px;
        }

        .OOM-breakdown__banner .template__banner__cta div + div {
            padding-left: 1.6rem;
        }

            .OOM-breakdown__banner .template__banner__cta div + div .button:hover .button__text, .OOM-breakdown__banner .template__banner__cta div + div .button:focus .button__text {
                color: #FFFFFF;
            }

            .OOM-breakdown__banner .template__banner__cta div + div .button:before {
                background-color: #02484D;
            }

            .OOM-breakdown__banner .template__banner__cta div + div .button__icon {
                color: #FFFFFF;
            }
}

@media (min-width: 992px) {
    .OOM-breakdown__banner .template__banner__cta {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
    }

        .OOM-breakdown__banner .template__banner__cta div + div {
            padding-top: 2rem;
            padding-left: 0;
        }
}

.OOM-breakdown__banner .template__banner__title {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .OOM-breakdown__banner .template__banner__title {
        padding-right: 20rem;
    }
}

.template-error .h1 {
    margin-bottom: 2.2rem;
}

.template-error .button {
    margin-top: 3rem;
}

.theme-dark {
    background-color: #02090D;
}

    .theme-dark .theme-area {
        color: #FFFFFF;
    }

        .theme-dark .theme-area .button--primary {
            border: 1px solid #02484D;
            color: #00E6A1;
        }

        .theme-dark .theme-area .button--secondary {
            color: #FFFFFF;
        }

        .theme-dark .theme-area.rte p {
            color: white;
        }

        .theme-dark .theme-area .checkbox--custom ~ .label:before,
        .theme-dark .theme-area .radio--custom ~ .label:before {
            border: solid 1px #00E6A1;
        }

        .theme-dark .theme-area .select--custom {
            background-color: #02090D;
            color: #FFFFFF;
            border-bottom: 1px solid rgba(141, 141, 141, 0.5);
        }

        .theme-dark .theme-area .generic-table {
            color: white;
        }

            .theme-dark .theme-area .generic-table td {
                border-bottom: 1px solid #02484D;
                color: white;
            }

@media (max-width: 767.98px) {
    .theme-dark .theme-area.table--leaderboard .row-content__col, .theme-dark .theme-area.table--leaderboard .row-content__scroll {
        border-bottom: 1px solid #02484D;
    }
}

.theme-dark .theme-area.table--leaderboard .show-leaderboard-mobile-swipe .row-content__scroll .score:before {
    background-color: rgba(2, 9, 13, 0.8);
}

.theme-dark .theme-area.table--leaderboard .hole-tab {
    color: white;
}

.theme-dark .theme-area.table--leaderboard .table-text, .theme-dark .theme-area.table--leaderboard .generic-table td, .generic-table .theme-dark .theme-area.table--leaderboard td,
.theme-dark .theme-area.table--leaderboard .table-text-small {
    color: white;
}

.theme-dark .theme-area.table--leaderboard .score {
    color: white;
}

.theme-dark .theme-area.table--leaderboard .table__row {
    border-bottom: 1px solid #02484D;
}

    .theme-dark .theme-area.table--leaderboard .table__row:hover, .theme-dark .theme-area.table--leaderboard .table__row:focus {
        background-color: #0A161D;
    }

        .theme-dark .theme-area.table--leaderboard .table__row:hover:after, .theme-dark .theme-area.table--leaderboard .table__row:focus:after {
            background-color: #02484D !important;
        }

.theme-dark .theme-area.table--leaderboard .table__row-content__close {
    color: #00E6A1;
}

.theme-dark .theme-area.table--leaderboard .row-content__col--left {
    border-right: 1px solid #02484D;
}

    .theme-dark .theme-area.table--leaderboard .row-content__col--left .score {
        color: white !important;
    }

.theme-dark .theme-area.table--leaderboard .row-content__col--right {
    border-left: 1px solid #02484D;
    background-color: rgba(2, 72, 77, 0.25);
}

    .theme-dark .theme-area.table--leaderboard .row-content__col--right .score {
        color: white !important;
    }

.theme-dark .theme-area.table--leaderboard .score.is-par {
    border: 1px solid #02484D;
    color: #FFFFFF;
}

.theme-dark .theme-area.table--leaderboard .score.is-bogey2 {
    background-color: #02484D;
    border: 1px solid #02484D;
}

.theme-dark .main,
.theme-dark .l_content-container {
    background-color: #02090D;
}

.theme-dark .u_text-lighter,
.theme-dark .u_text-light {
    color: white;
}

.theme-dark .image-video__text-container:before {
    background-color: #02090D;
}

.theme-dark .cta-block__content-container {
    background-color: #02090D;
}

.theme-dark .faq__indicator:before, .theme-dark .faq__indicator:after {
    background-color: white;
}

.theme-dark .banner__content-container {
    background-color: #0A161D;
}

.theme-dark .three-column .fill {
    fill: #02484D !important;
}

.theme-dark .button--text {
    color: #00E6A1;
}

.theme-dark .swiper-button-next:hover, .theme-dark .swiper-button-next:focus {
    color: #00E6A1;
}

.theme-dark .swiper-button-prev {
    color: #007A83;
}

    .theme-dark .swiper-button-prev:hover, .theme-dark .swiper-button-prev:focus {
        color: #007A83;
    }

.theme-dark .carousel__pagination .swiper-pagination-progressbar {
    background-color: rgba(255, 255, 255, 0.25);
}

    .theme-dark .carousel__pagination .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: #00E6A1;
    }

.theme-dark .carousel__pagination .carousel__count--current {
    color: #00E6A1;
}

.theme-dark .carousel__pagination .carousel__count--total {
    color: #FFFFFF;
}

.theme-dark .pagination {
    color: rgba(255, 255, 255, 0.9);
}

.theme-dark .button--pagination {
    color: #00E6A1;
}

.patterns {
    overflow: hidden;
}

.fill {
    fill: #D9DADB;
}

.theme-dark .fill {
    fill: #02484D;
}

.theme-2 .pattern-themeable .fill {
    fill: #FF527B !important;
}

.theme-2 .text__icon {
    color: #FF527B;
}

.theme-2 .button__icon {
    color: #FFFFFF;
}

.theme-2 .button--secondary:hover .button__text, .theme-2 .button--secondary:focus .button__text {
    color: #FFFFFF;
}

.theme-2 .button--secondary:before {
    background-color: #FF527B;
}

.theme-2 .flockler__hashtag {
    background-color: #FF527B;
    color: white;
}

.theme-2 .button--cta .button__text {
    background-color: #FF527B;
    color: #FFFFFF;
}

.theme-2 .button--cta:hover .button__text, .theme-2 .button--cta:focus .button__text {
    background-color: #ff6c8e;
}

.theme-2 .cta__content__text a {
    color: #FF527B;
}

.theme-2.template__banner--event .h6 {
    color: #FF527B;
}

.theme-2 .event__media:after {
    background-color: #FF527B;
}

.theme-3 .pattern-themeable .fill {
    fill: #FE4F47 !important;
}

.theme-3 .text__icon {
    color: #FE4F47;
}

.theme-3 .button__icon {
    color: #FFFFFF;
}

.theme-3 .button--secondary:hover .button__text, .theme-3 .button--secondary:focus .button__text {
    color: #FFFFFF;
}

.theme-3 .button--secondary:before {
    background-color: #FE4F47;
}

.theme-3 .flockler__hashtag {
    background-color: #FE4F47;
    color: white;
}

.theme-3 .button--cta .button__text {
    background-color: #FE4F47;
    color: #FFFFFF;
}

.theme-3 .button--cta:hover .button__text, .theme-3 .button--cta:focus .button__text {
    background-color: #fe6760;
}

.theme-3 .cta__content__text a {
    color: #FE4F47;
}

.theme-3.template__banner--event .h6 {
    color: #FE4F47;
}

.theme-3 .event__media:after {
    background-color: #FE4F47;
}

.col-item {
    padding: 8px;
    color: black;
    background-color: rgba(255, 0, 0, 0.08);
    text-align: center;
    margin-bottom: 24px;
}

.visual-grid {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    display: none;
    pointer-events: none;
}

    .visual-grid .col-item,
    .visual-grid .row,
    .visual-grid .container {
        height: 100%;
    }

body:before {
    content: "";
    position: fixed;
    background-color: rgba(234, 18, 113, 0.4);
    left: auto;
    right: 0;
    top: 60px;
    z-index: 999;
    width: 100%;
    height: 195px;
    display: none;
    pointer-events: none;
}

.demo-page-list {
    padding-bottom: 6rem;
    list-style-type: none;
}

    .demo-page-list li {
        margin-bottom: 1rem;
    }

    .demo-page-list .primary-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #00E6A1;
        text-decoration: none;
        padding-top: .4rem;
        padding-bottom: .4rem;
        padding: 1.6rem 1.8rem 1.6rem 2.4rem;
        border: 1px solid #0B2228;
        display: flex;
        height: 64px;
    }

.demo .button--cta {
    position: relative;
    top: 0;
    left: 0;
}

.demo__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

    .demo__actions .action {
        position: relative;
        width: 4.4rem;
        height: 100%;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
    }

        .demo__actions .action:last-child {
            width: 5.8rem;
            justify-content: flex-end;
        }

            .demo__actions .action:last-child:before {
                content: '';
                display: block;
                position: absolute;
                top: -1.7rem;
                bottom: -1.7rem;
                left: 10px;
                width: 1px;
                background-color: #0B2228;
            }

.style-lg-icons svg {
    width: 6rem;
    height: 6rem;
}

.style-container {
    padding-top: 6rem;
    padding-bottom: 6rem;
}



/***************# additional styles by dotgolf *******************/
.green-1 {
    color: #0B2228;
}

.green-2 {
    color: #02484D;
}

.green-3 {
    color: #00E6A1;
}

.green-4 {
    color: #72E7C9;
}

.orange-1 {
    color: #d2691e;
}

.red {
    color: #FE4F47;
}

a.green-2:hover {
    color: #00E6A1;
}

.after-hero-block {
    margin-top: -25px;
    padding-top: 0;
}

table, .table,
.table-text, .generic-table td {
    font-size: 15px;
}

button.button--pagination:disabled {
    color: #ccc;
}

button.button--pagination:hover:disabled {
    color: #ccc;
    font-weight: 400;
}

input[type=checkbox], input[type=radio] {
    margin-right: 8px;
}

.card {
    border: 0;
    flex-direction: inherit;
    border-radius: 0;
    background-color: inherit;
}

.form-inline label,
.form-group label,
.section-filters [class^="col-"] > label {
    font-family: azo-sans-web, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 31px;
    /* or 258% */
    align-items: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #02484D;
    margin-top: 20px;
}

.form-group input[type=text],
.form-group input[type=number],
.form-group input[type=password],
.form-group input[type=email],
.input-group .form-control {
    height: 60px;
    border-bottom: 1px solid #D9DADB;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background-color: transparent;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}

    .form-group input[type=text].form-control-sm,
    .form-group input[type=number].form-control-sm,
    .form-group input[type=password].form-control-sm,
    .form-group select.form-control-sm,
    .input-group .form-control {
        height: inherit;
        font-size: 14px;
        color: #051219;
        font-weight: 400;
    }

    .form-group input[type=text].required,
    .form-group input[type=number].required,
    .form-group input[type=password].required,
    .form-group input[type=email].required {
        border-bottom: 3px solid #FE4F47;
    }

.form-check.required input[type=text] {
    border-bottom: 1px solid #D9DADB;
}

    .form-check.required input[type=text].has-error {
        border-bottom: 1px solid #FE4F47 !important;
        box-shadow: inset 0 -1px 0 0 #fe4f47 !important;
    }

.form-group select.form-control-sm {
    line-height: 24px;
    height: 30px;
}

select.form-control {
    height: 60px;
    border-bottom: 1px solid #D9DADB;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background-color: initial;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}

.btn-primary {
    background: #00E6A1;
    border: none;
    border-radius: 0;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    /* identical to box height */
    text-align: center;
    letter-spacing: 0.01em;
    /* Primary/Black */
    color: #051219;
    padding: 20px;
}

    .btn-primary:hover {
        color: #051219;
        background-color: #72E7C9;
        border: 0;
    }

    .btn-primary.focus, .btn-primary:focus {
        color: #051219;
        background-color: #72E7C9;
        border: 0;
        box-shadow: 0 0 0 0.2rem rgb(82, 204, 172);
    }

    .btn-primary:not(:disabled):not(.disabled).active,
    .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        color: #051219;
        background-color: #72E7C9;
        border: 0;
        box-shadow: 0 0 0 0.2rem rgb(82, 204, 172);
    }

        .btn-primary:not(:disabled):not(.disabled).active:focus,
        .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgb(82, 204, 172);
        }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #051219;
        background-color: #72E7C9;
    }

.alert {
    border-radius: 0;
    padding: 14px;
}

.btn-primary.danger {
    background: #FE4F47;
    color: #FFF;
}


.btn-more-filters {
    font-size: 13px;
    border: 1px solid #00E6A1;
    box-sizing: border-box;
    padding: 15px 20px;
}

a:hover {
    text-decoration: none;
}

.custom-dropdown {
    background: #FFF;
    box-sizing: border-box;
    max-height: 260px;
    overflow-y: auto;
    position: absolute;
    z-index: 100;
    width: calc(100% - 16px);
    font-size: 14px;
    margin-left: 0;
}

    .custom-dropdown.club-hierarchies {
        margin-left: 33px;
        width: calc(100% - 46px);
    }

    .custom-dropdown.custom-dropdown-member {
        border: 1px solid #ccc;
        margin-top: 62px;
        margin-left: 8px;
    }

.my-header-wrapper .custom-dropdown {
    margin-top: 33px;
    margin-left: 130px;
    border: 1px solid #ccc;
}

.custom-dropdown .custom-dropdown-item {
    padding: 5px 15px;
}

    .custom-dropdown .custom-dropdown-item:hover {
        background-color: #72E7C9;
    }

    .custom-dropdown .custom-dropdown-item label {
        margin-bottom: 0;
    }

.custom-dropdown .clickable:hover {
    cursor: pointer;
}

.dropdown-membersearch {
    background: #f4f4f4;
    border: 1px solid #E0E3E4;
    box-sizing: border-box;
    min-width: 520px;
    max-height: 300px;
    overflow-y: auto;
    position: absolute;
    z-index: 100;
    font-size: 14px;
    padding: 20px;
    right: 7px;
    margin-top: 80px;
}

    .dropdown-membersearch .membersearch-item {
        border-bottom: 1px solid #e2e2e2;
        padding: 10px 0;
    }

        .dropdown-membersearch .membersearch-item:last-child {
            border-bottom: 0;
        }

    .dropdown-membersearch .btn-friend-request {
        padding: 8px 20px;
    }

    .dropdown-membersearch label {
        text-align: left;
        display: block;
    }

.form-group-member svg {
    fill: #666f77;
}

.dropdown-messages {
    background: #FFF;
    border: 1px solid #E0E3E4;
    box-shadow: 0px 0px 8px 3px #eaeaea;
    box-sizing: border-box;
    min-width: 600px;
    max-height: 400px;
    overflow-y: auto;
    position: absolute;
    z-index: 100;
    font-size: 14px;
    padding: 20px;
    right: 2px;
    margin-top: 10px;
}

    .dropdown-messages .scoreComments-item {
        border-bottom: 1px solid #e2e2e2;
        padding: 10px 0;
    }

        .dropdown-messages .scoreComments-item:last-child {
            border-bottom: 0;
        }

    .dropdown-messages .btn-friend-request {
        padding: 8px;
        border: none;
        border-radius: 0;
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 18px;
        /* identical to box height */
        text-align: center;
        letter-spacing: 0.01em;
    }


.scorecard-minimum {
    display: none;
}

.table--leaderboard .table-text.col-link {
    min-width: 40px;
    max-width: 40px;
}

@media (max-width: 768px) {
    .dropdown-messages {
        width: calc(100% - 70px);
        min-width: calc(100% - 70px);
    }

    .dropdown-membersearch {
        right: 0;
        left: 0;
        margin-top: 68px;
    }

    .my-header .custom-dropdown {
        width: calc(100% - 16px) !important;
    }

    .custom-dropdown.mobile-view {
        border: 1px solid #ddd;
        width: calc(100% - 35px) !important;
        margin-top: 65px;
    }

    .notifications.mobile-membersearch {
        max-height: 413px;
        height: 100vh;
    }

    /*.score {
        width: 20px;
        height: 20px;
    }

    .score-container {
        width: 30px;
        height: 30px;
    }*/

    .scorecard-full, .score-legend {
        display: none !important;
    }

    .table, .table, .table-text, .generic-table td {
        font-size: 14px;
    }

    .col-played {
        width: 100px !important;
    }

    .scorecard-minimum {
        display: block;
    }

        .scorecard-minimum table {
            font-size: 14px;
            text-align: center;
        }

            .scorecard-minimum table tr.bg-grey {
                background-color: #c7c7c7;
            }

            .scorecard-minimum table tr.bg-light-grey {
                background-color: #f3f3f3;
            }

            .scorecard-minimum table td {
                vertical-align: middle;
                /*padding: 5px 3px 5px 2px;*/
                padding: 6px 2px;
            }

                .scorecard-minimum table td span.is-eagle {
                    background-color: #49D190;
                    color: #333;
                    border: 2px solid #00964e;
                    border-radius: 50%;
                    width: 22px;
                    height: 22px;
                    display: inline-grid;
                    line-height: 18px;
                    text-align: center;
                }

                .scorecard-minimum table td span.is-birdie {
                    background-color: #FE4F47;
                    color: #fff;
                    border: 1px solid #840600;
                    border-radius: 50%;
                    width: 22px;
                    height: 22px;
                    display: inline-grid;
                    line-height: 21px;
                    text-align: center;
                }

                .scorecard-minimum table td span.is-par {
                    background-color: #fff;
                    width: 22px;
                    height: 22px;
                    text-align: center;
                }

                    .scorecard-minimum table td span.is-par.bordered {
                        border: 1px solid #e8e8e8;
                        display: inline-grid;
                        line-height: 21px;
                    }

                .scorecard-minimum table td span.is-bogey {
                    background-color: #188DE2;
                    color: #fff;
                    border: 1px solid #003d69;
                    width: 22px;
                    height: 22px;
                    display: inline-grid;
                    line-height: 21px;
                    text-align: center;
                }

                .scorecard-minimum table td span.is-bogey2,
                .scorecard-minimum table td span.is-na {
                    background-color: #051219;
                    color: #fff;
                    border: 2px solid #777;
                    width: 22px;
                    height: 22px;
                    display: inline-grid;
                    line-height: 18px;
                    text-align: center;
                }
}

@media (max-width: 620px) {
    .dropdown-messages {
        width: 100%;
        min-width: 100%;
    }

    .dropdown-membersearch {
        width: auto;
        min-width: calc(100% - 60px);
        zoom: 90%;
        margin-top: 82px;
        max-height: 398px;
    }

    .friend-request-count {
        display: none;
    }

    .col-friends-filter {
        margin-left: 50px;
    }
}

.admin-view {
    font-size: 12px;
    padding: 20px 0 40px;
}

    .admin-view .bg-light {
        background-color: #FFF !important;
    }

    .admin-view .form-control, .admin-view .form-group label, .admin-view .btn {
        font-size: 12px;
    }

    .admin-view .btn {
        line-height: 1;
        padding: 8px 16px;
    }

    .admin-view .btn-sm {
        font-size: 12px;
        padding: 5px 20px;
    }

    .admin-view .badge {
        font-size: 9px;
    }

    .admin-view .btn-success {
        color: #fff;
    }

        .admin-view .btn-success:hover {
            color: #fff;
        }

    .admin-view label {
        font-weight: 500;
    }

    .admin-view .custom-dropdown {
        background: #FFFFFF;
        border: 1px solid #E0E3E4;
        box-sizing: border-box;
        border-radius: 4px;
        box-shadow: 0px 0px 8px 3px #eaeaea;
        min-width: 220px;
        max-height: 260px;
        overflow-y: auto;
        position: absolute;
        z-index: 100;
        width: calc(100% - 16px);
        margin-top: -1px;
    }

    .admin-view .clickable:hover {
        cursor: pointer;
        background-color: #e6e6e6;
    }

    .admin-view .white {
        color: #FFF;
    }

    .admin-view .card {
        border: 1px solid #E2E2E2;
    }

.golfnz-login {
    padding-top: 60px;
    padding-bottom: 120px;

    /*width: 500px;
    height: 600px;

    margin: auto;
    border: 1px solid #333;
    background-color: #ffffdd;
    cursor: pointer;
    padding: 60px;
    position: relative;
    z-index: 10001;*/

}

    .golfnz-login label {
        margin-right: 4px;
    }

    .golfnz-login .alert-primary {
        margin-bottom: 60px;
    }

    .golfnz-login .alert-warning {
        margin-bottom: 60px;
    }

    .golfnz-login h2 {
        text-align: center;
        margin-bottom: 12px;
        line-height: 30px;
    }

    .golfnz-login .subtitle {
        margin-bottom: 40px;
        text-align: center;
    }

    .golfnz-login .form-group.password input {
        margin-bottom: 12px;
    }

    .golfnz-login .form-group a {
        font-size: 12px;
        line-height: 24px;
        /* identical to box height, or 200% */
        /* Digital/Orange */
        color: #02484D;
        text-decoration: underline;
    }

    .golfnz-login .remember-me {
        margin-bottom: 50px;
    }

    .golfnz-login .form-check-input {
        font-size: 12px;
        line-height: 24px;
        color: #02484D;
    }

    .golfnz-login input[type=checkbox] {
        margin-right: 4px;
        vertical-align: middle;
        margin-top: -3px;
    }

    .golfnz-login .login-footer {
        margin-top: 24px;
    }

    .golfnz-login .btn-submit {
        margin-top: 40px;
    }

    .golfnz-login .table td,
    .golfnz-login .table th {
        border-top: 0;
    }

.forgot-password-message input {
    margin-top: 20px;
    margin-bottom: 20px;
}

.td-icon-container {
    vertical-align: top;
}

.tooltip.show {
    opacity: 1;
}

.tooltip-inner {
    max-width: 320px;
    font-size: 14px;
    background-color: #0b2228;
    border-radius: 4px;
    padding: 15px;
}

.bs-tooltip-top .arrow::before {
    border-top-color: #00313F;
}

.zpasswordreset-container {
    margin-top: 60px;
    margin-bottom: 100px;
}

    .zpasswordreset-container input[type=checkbox] {
        margin-top: 5px;
    }

    .zpasswordreset-container .form-check-label {
        margin-left: 5px;
    }

    .zpasswordreset-container .instructions {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .zpasswordreset-container .login-footer {
        margin-top: 24px;
    }

    .zpasswordreset-container .alert-danger {
        margin-top: 24px;
    }

/********* DASHBOARD ************/
.dashboard-overview {
    height: 330px;
    padding-bottom: 80px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background-color: #0A161D;
    /*    padding-left: 40px;
    padding-right: 40px;*/
}

@media (max-width: 768px) {
    .dashboard-overview {
        height: 240px;
        padding-bottom: 53px;
        padding-left: 20px;
    }
}

.dashboard-overview .my-header .form-group label,
.dashboard-overview .my-header .form-group input[type=text] {
    color: #FFFFFF;
}

.dashboard-overview .my-name {
    color: #FFFFFF;
    font-size: 32px;
    line-height: 1.4em;
    letter-spacing: 0.01em;
    font-weight: 300;
    margin-right: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.dashboard-overview .friends-name {
    margin-top: 0;
    margin-bottom: 5px;
}

.nav.tab-menu a.nav-link {
    font-style: normal;
    font-weight: 300;
    font-size: 26px;
    line-height: 32px;
    color: #fff;
    padding: .5rem .1rem;
}

.nav.tab-menu.small a.nav-link {
    font-size: 18px;
    padding: .5rem .5rem .1rem .5rem;
}

.green-dark .nav.tab-menu a.nav-link {
    color: #FFFFFF;
}

.nav.tab-menu .navlink-container {
    margin: 0 10px 0 0 !important;
}

.nav.tab-menu a.nav-link.active {
    color: #00E6A1;
    border-bottom: 2px solid #00E6A1;
}

.green-dark .nav.tab-menu a.nav-link.active {
    color: #54D3B7;
}

.my-vital-stats {
    /*margin-top: -100px;*/
    padding: 30px;
    width: 380px;
    background: #FFFFFF;
    border-radius: 0;
    position: relative;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
    /*margin-right: 40px;*/
}

    .my-vital-stats h4 {
        color: #02484D;
        font-size: 24px;
    }

    .my-vital-stats .handicap-index {
        font-weight: normal;
        font-size: 60px;
        line-height: 42px;
        padding-top: 40px;
        padding-bottom: 10px;
        border-bottom: 1px solid #BFC4C8;
    }

    .my-vital-stats .low-handicap-index {
        padding-top: 10px;
        font-size: 16px;
    }

    .my-vital-stats .small-text {
        font-size: 14px;
        color: #03131B;
        margin-top: 26px;
        margin-bottom: 16px;
    }

    .my-vital-stats .topcornerimage {
        display: none;
    }

    .my-vital-stats .tile {
        color: #FFFFFF;
        background: #0B2228;
        border-radius: 2px;
        padding: 11px 15px;
        width: 99px;
        height: 70px;
    }

        .my-vital-stats .tile:first-child, .my-vital-stats .tile:nth-child(2) {
            margin-right: 11px;
        }

        .my-vital-stats .tile .stat-caption {
            font-size: 12px;
            margin-top: 4px;
        }

    .my-vital-stats .last-updated {
        margin-top: 0;
        margin-bottom: 14px;
    }

    .my-vital-stats .score-entered-asterisk {
        font-family: sans-serif;
    }

    .my-vital-stats .score-entered-today {
        display: flex;
        margin-top: 14px;
    }

        .my-vital-stats .score-entered-today .score-entered-asterisk {
            font-size: 55px;
            margin-right: 9px;
            margin-bottom: -25px;
            margin-top: -4px;
        }

@media (max-width: 480px) {
    .my-vital-stats {
        margin: 0;
    }
}

/* make my perf mobile friendly */
@media (min-width: 480px) {
    .my-vital-stats {
        /*margin: 20px;*/
        float: none !important;
        width: calc(100% - 40px);
    }

        .my-vital-stats .small-text {
            float: none;
        }

    .tiles {
        float: none;
    }

    .my-chart {
        margin-left: 20px;
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        flex: 0 0 100%;
    }

    .table-text--name {
        font-size: 14px;
    }

    .table--leaderboard .table-text, .table--leaderboard .generic-table td, .generic-table .table--leaderboard td {
        max-width: 165px;
        min-width: 100px;
        width: 100%;
    }

    .myscores-row .row-content__col--right .score-container {
        width: 100% !important;
    }
}

@media (min-width: 1200px) {
    .my-vital-stats {
        /*margin-top: -100px;*/
        float: right !important;
        width: 380px;
    }

        .my-vital-stats .handicap-index {
            padding-top: 40px;
            border-bottom: 1px solid #BFC4C8;
        }

        .my-vital-stats .small-text {
            float: none;
            margin-top: 26px;
        }

    .tiles {
        float: none;
        margin-top: 0;
    }

    .my-chart {
        margin-right: 20px;
        margin-left: 20px;
        width: 100%;
        max-width: 90.66667%;
        flex: 0 0 90.66667%;
    }

    .my-scores {
        margin: 80px auto 100px !important;
        max-width: 1620px;
    }

    .table-text--name {
        font-size: 15px;
    }
}
/* /make my perf mobile friendly */

/* Chart JS */
.my-performance {
    margin-top: 40px;
    /*padding-left: 40px;*/
}

    .my-performance h4 {
        margin-bottom: 30px;
        font-size: 18px;
    }

.legend-wrapper .legend {
    margin-right: 22px;
}

.legend-wrapper .shape {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin-right: 8px;
}

.legend-handicap .shape {
    background-color: #006E69;
    border: 1.5px solid #54D3B7;
}

.legend-counter .shape {
    background-color: #E7B241;
    border: 1.25px solid #FBE39A;
}

.legend-noncounter .shape {
    background-color: #E63D38;
    border: 1.25px solid #F7BAAA;
}

.legend-history .shape {
    background-color: #1856DD;
    border: 1.25px solid #71A3F4;
}

.my-performance .filter-label {
    margin-right: 10px;
}

.badge-pill {
    font-weight: normal;
    padding: 4px 8px;
    margin-right: 10px;
    cursor: pointer;
}

.badge-primary {
    background-color: #8D8D93;
    color: #FFFFFF;
}

    .badge-primary.active {
        background-color: #000000;
        color: #E3FBF1;
    }

/* GTC My Scores */

/* My Scores */
.my-scores h4 {
    font-size: 18px;
}

.my-scores-count {
    margin-bottom: 30px;
    font-size: 0.8em;
}

.table--leaderboard {
    /*box-shadow: 0px 3px 8px rgba(0,0,0,0.3);*/
    overflow-y: hidden;
    overflow-x: auto;
}

    .table--leaderboard .row-container {
        max-width: 100%;
        width: 100%;
    }

    .table--leaderboard .table__header--leaderboard {
        display: flex;
        align-items: center;
        letter-spacing: 0.01em;
        color: #02484D;
        font-size: 1.4rem;
        padding-bottom: 1.6rem;
        padding-top: 1.6rem;
        background-color: #f5f5f5;
        /*border-bottom: 1px solid #02484D;*/
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        opacity: 1 !important;
        visibility: visible !important;
        transition: none !important;
        transform: none !important;
    }

        .table--leaderboard .table__header--leaderboard .table-text {
            color: #8D8D93;
            letter-spacing: 0.01em;
            line-height: 1.5;
            font-size: 13px;
            /*font-weight: 300;*/
        }

    .table--leaderboard .table__row {
        cursor: pointer;
    }

        .table--leaderboard .table__row:after {
            content: '';
            display: block;
            width: 100%;
            height: 2px;
            display: block;
            background-color: transparent;
            position: absolute;
            bottom: -1px;
            left: 0;
            transition: background .3s ease;
        }

    .table--leaderboard ._l-left-col {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .table--leaderboard ._l-right-col {
        display: flex;
        align-items: center;
    }

@media (max-width: 991.98px) {
    .table--leaderboard .stat {
        min-width: 0;
        width: 4rem;
        padding-right: 0;
        min-width: 0;
    }

    .table--leaderboard .table__header--leaderboard {
        display: inline-flex;
    }
}

@media (min-width: 992px) {
    .table--leaderboard .stat {
        min-width: 5.6rem;
        padding-left: .8rem;
        padding-right: .8rem;
    }
}

@media (min-width: 1200px) {
    .table--leaderboard .stat {
        min-width: 6.4rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

@media (min-width: 1620px) {
    .table--leaderboard {
        overflow-x: hidden;
    }
}

.table--leaderboard .stat .table-text, .table--leaderboard .stat .generic-table td, .generic-table .table--leaderboard .stat td {
    font-weight: 500;
}

.table--leaderboard .country {
    padding-right: .8rem;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .table--leaderboard .country {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

@media (max-width: 480px) {
    .table--leaderboard .country {
        display: none;
    }
}

.table--leaderboard .pga {
    padding-left: .8rem;
    padding-right: .8rem;
}

@media (min-width: 992px) {
    .table--leaderboard .pga {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

@media (max-width: 580px) {
    .table--leaderboard .pga {
        display: none;
    }
}

.table--leaderboard .table-text, .table--leaderboard .generic-table td, .generic-table .table--leaderboard td {
    padding-left: .8rem;
    padding-right: .8rem;
}

.table--leaderboard .table-text--position {
    width: 32px;
}

@media (min-width: 1200px) {
    .table--leaderboard .table-text--position {
        width: 48px;
    }
}

@media (min-width: 992px) {
    .table--leaderboard .table-text, .table--leaderboard .generic-table td, .generic-table .table--leaderboard td {
        /*padding-left: 1.2rem;
        padding-right: 1.2rem;
        padding-left: 2rem; GTC
        padding-right: 2rem;*/
        max-width: 165px; /*calc((100% - 150px) * 12/ 100);*/
        min-width: 100px;
        width: 100%;
    }
}

.table__row-content {
    display: none;
}

@media (min-width: 768px) {
    .table__row-content.content-is-active {
        border-bottom: 1px solid #8D8D93;
        /*border-top: 1px solid #2A9896;*/
    }
}

.table__row-content__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 992px) {
    .table__row-content__inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.row-content__body {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 2rem;
}

.row-content__col {
    width: 40px;
    flex: 0 0 40px;
    max-width: 40px;
}

@media (min-width: 992px) {
    .row-content__col {
        width: 55px;
        flex: 0 0 55px;
        max-width: 55px;
    }
}

.row-content__col--left {
    border-right: 2px solid #BFC4C8;
}

@media (min-width: 992px) {
    .row-content__col--left {
        border-right: 1px solid #BFC4C8;
    }
}

.row-content__col--left .score {
    justify-content: flex-start;
}

.row-content__col--left .is-total {
    font-weight: 400;
}

.row-content__col--right {
    background-color: #F5F5F6;
    border-left: 2px solid #BFC4C8;
    text-align: center;
}

@media (min-width: 992px) {
    .row-content__col--right {
        border-left: 1px solid #D9DADB;
    }
}

.row-content__col--right .score {
    color: #051219;
}

@media (max-width: 767.98px) {
    .row-content__col--right .score {
        width: 2.5rem; /*GTC 3.6rem*/
        height: 2.5rem; /*GTC 3.6rem*/
    }
}

.row-content__col--right .score-container {
    width: 100%;
}

@media (max-width: 991.98px) {
    .row-content__col--right .score-container:first-child .score {
        text-transform: uppercase;
        font-weight: 500;
        color: #384B55;
    }
}

@media (max-width: 767.98px) {
    .row-content__col--right .score-container {
        width: 2.5rem; /*GTC 3.8rem*/
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .row-content__col--right .sm-only {
        display: none;
    }
}

.row-content__col--right .lg-only {
    display: none;
}

@media (min-width: 992px) {
    .row-content__col--right .lg-only {
        display: block;
    }
}

.row-content__col--right.is-in {
    display: none;
}

@media (min-width: 768px) {
    .row-content__col--right.is-in {
        display: none;
    }
}

@media (min-width: 768px) {
    .row-content__col--right.is-out {
        display: none;
    }
}

.score-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.score-container {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*@media (max-width: 767.98px) {
    .score-container--out-in,
    .score-container--in,
    .score-container--out,
    .row-content__col--right.is-in,
    .row-content__col--right.is-out {
        display: none;
    }
}

@media (min-width: 768px) {
    .row-content__col--right.is-in,
    .row-content__col--right.is-out {
        display: none !important;
    }
}*/

.data-holes-is-out .score-container--out {
    display: flex;
}

.data-holes-is-out .row-content__col--right.is-out {
    display: block;
}

.data-holes-is-in .score-container--in {
    display: flex;
}

.data-holes-is-in .row-content__col--right.is-in {
    display: block;
}

.row-content__scroll {
    position: relative;
    width: calc(100% - (40px * 2));
    flex: 0 0 calc(100% - (40px * 2));
    max-width: calc(100% - (40px * 2));
    overflow: auto;
}

@media (min-width: 768px) {
    .row-content__scroll {
        width: calc(100% - (40px * 2));
        flex: 0 0 calc(100% - (40px * 2));
        max-width: calc(100% - (40px * 2));
    }
}

@media (min-width: 992px) {
    .row-content__scroll {
        width: calc(100% - (80px * 2));
        flex: 0 0 calc(100% - (80px * 2));
        max-width: calc(100% - (80px * 2));
    }
}

.row-content__scroll .score {
    position: relative;
}

.show-leaderboard-mobile-swipe .row-content__scroll .score:before {
    content: '';
    display: block;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    pointer-events: none;
}

@media (min-width: 639px) and (max-width: 767px) {
    .show-leaderboard-mobile-swipe .row-content__scroll .score:before {
        display: none;
    }
}

@media (min-width: 1328px) {
    .show-leaderboard-mobile-swipe .row-content__scroll .score:before {
        display: none;
    }
}

.remove-swipe .row-content__scroll .score:before {
    opacity: 0;
    visibility: hidden;
    transition: all .5s linear 2s;
}

.row-content__scroll.hide-mobile-gesture .score:before {
    display: none !important;
}

.row-content__scroll__mobile-swipe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 639px) and (max-width: 767px) {
    .row-content__scroll__mobile-swipe {
        display: none;
    }
}

@media (min-width: 1328px) {
    .row-content__scroll__mobile-swipe {
        display: none;
    }
}

.hide-mobile-gesture .row-content__scroll__mobile-swipe {
    display: none !important;
}

.show-leaderboard-mobile-swipe .row-content__scroll__mobile-swipe {
    opacity: 1;
    visibility: visible;
}

.show-leaderboard-mobile-swipe.remove-swipe .row-content__scroll__mobile-swipe {
    opacity: 0;
    visibility: hidden;
    transition: all .5s linear 2s;
}

.mobile-swipe__icon {
    -webkit-animation: swipeGesture 1s linear infinite;
    animation: swipeGesture 1s linear infinite;
}

    .mobile-swipe__icon svg {
        width: 4rem;
        height: 4rem;
    }

.row-content__header {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
}

/*@media (max-width: 767.98px) {
    .row-content__header {
        order: 2;
        padding-top: 0;
        padding-bottom: 3.2rem;
    }
}*/

.score.is-total {
    text-align: center;
}

.score--text {
    color: #000000;
    font-size: 13px; /*GTC 1.2rem*/
    font-weight: 400;
}

.score-container--out-in .score--text {
    color: #051219;
}

.score-row--footer .score--text {
    color: #051219;
}

.row-content__key {
    display: flex;
}

@media (max-width: 767.98px) {
    .row-content__key {
        flex-wrap: wrap;
    }
}

.hole-tabs {
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding-left: 40px;
}

@media (min-width: 768px) {
    .hole-tabs {
        display: none;
    }
}

.hole-tab {
    color: #051219;
    margin-left: .6rem;
    margin-right: .6rem;
    border: 0;
    padding: .4rem .6rem;
    border-bottom: 2px solid transparent;
    background-color: transparent;
    font-size: 1rem; /*GTC 1.4rem*/
    outline: 0;
    cursor: pointer;
}

    .hole-tab.is-active {
        pointer-events: none;
        font-weight: 500;
        border-bottom: 2px solid currentColor;
    }

@media (max-width: 767.98px) {
    .row-content__col,
    .row-content__scroll {
        border-bottom: 1px solid #D9DADB;
    }
}

.table__row-content__close {
    position: absolute;
    right: -12px;
    top: 0;
    color: #02484D;
}

@media (min-width: 992px) {
    .table__row-content__close {
        right: 0;
    }
}

/* My Scores - END */
@media (min-width: 768px) {
    /*.my-scores {
        margin-left: 8.33%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .my-scores .clearfix {
        margin-left: 8.33%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }*/
    /*.my-vital-stats {
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
        float: none !important;
    }*/
}

@media (min-width: 992px) {

    /*.my-vital-stats {
        margin-top: -200px;
        float: right !important;
    }*/

    /*.my-scores {
        margin-left: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .my-scores .clearfix {
        margin-left: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }*/
}


.my-scores {
    margin-top: 80px !important;
    margin-bottom: 100px;
}

    .my-scores .subtitle {
        font-weight: 500;
        line-height: 24px;
        color: #2EB5B2;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .my-scores .myscores-row:nth-child(even) {
        /*background-color: #DFF2F2;*/
    }

    .my-scores .myscores-row .will-reveal {
        visibility: visible !important;
        opacity: 1 !important;
    }

.pagination-sm .page-link {
    color: #000;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F5FB 100%);
    font-size: 14px;
}

    .pagination-sm .page-link .fal {
        font-size: 10px;
    }

.my-scores-help {
    font-size: 18px;
    color: #03131B;
}

    .my-scores-help::before {
        font-size: 18px;
        content: "\f059";
        font-family: 'Font Awesome 5 Pro';
        margin-right: 5px;
    }

    .my-scores-help:hover {
        text-decoration: none;
    }


.table__header .col-rating, .table__header .col-slope, .table__header .col-gross, .table__header .col-pcc, .table__header .col-hd, .table__header .col-whs, .table__header .col-coursehcap {
    font-weight: normal;
}


.col-rating, .col-slope, .col-gross, .col-pcc, .col-hd, .col-whs, .col-coursehcap {
    font-weight: 800;
}

.counter-score {
    color: #00E6A1;
}

.col-gross .counter-score {
    font-size: 12px;
}

.my-friends, .my-scores {
    margin-top: 60px !important;
    margin-bottom: 100px;
}

.page-myoverview .my-friends,
.page-myoverview .my-scores,
.page-myoverview .my-competitions {
    border: 1px solid #ececec;
    padding: 10px 40px 40px;
    background-color: #ffffff;
    box-shadow: 0px 1px 8px rgba(0,0,0,0.1);
}

.my-friends h4 {
    margin-bottom: 30px;
    font-size: 18px;
}

.my-friends .pagination {
    max-width: 100%;
}

.my-friends table th {
    color: #8D8D93;
    letter-spacing: 0.01em;
    line-height: 1.5;
    font-size: 13px;
    border-top: 0;
    border-bottom: 0;
    font-weight: 300;
    min-width: 135px;
    background-color: #f5f5f5;
    padding-bottom: 1.6rem;
    padding-top: 1.6rem;
}

.my-competitions table th {
    background-color: #fff;
    padding-bottom: 1.6rem;
    padding-top: 1.6rem;
}

.my-friends table > tbody > tr:first-child > td {
    border-top: 0;
}

.my-friends table td {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 24px;
}

.my-competitions {
    margin-top: 60px !important;
    margin-bottom: 100px;
}

    .my-competitions h4 {
        margin-bottom: 30px;
        font-size: 18px;
    }

    .my-competitions .pagination {
        max-width: 100%;
    }

    .my-competitions table th {
        color: #8D8D93;
        letter-spacing: 0.01em;
        line-height: 1.5;
        font-size: 13px;
        border-top: 0;
        border-bottom: 0;
        font-weight: 300;
    }

    .my-competitions table > tbody > tr:first-child > td {
        border-top: 0;
    }

    .my-competitions table td {
        padding-top: 15px;
        padding-bottom: 15px;
        line-height: 24px;
    }

/* GTC My Scores */
/********* /DASHBOARD ************/
@media (min-width: 460px) {
    .admin-view .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.my-scores .pagination {
    max-width: 100%;
}

@media (min-width: 992px) {
    .my-scores .pagination {
        padding-top: 10px;
    }
}

.form-editmemberdetails.card, .form-editmemberdetails-photo.card {
    flex-direction: column;
}

.form-editmemberdetails .card-header,
.form-editmemberdetails-photo .card-header {
    background-color: transparent;
}

.form-editmemberdetails-photo .card-header {
    margin-bottom: 30px;
    margin-top: 20px;
}

.form-editmemberdetails-photo {
    margin-bottom: 20px;
}

span.form-control {
    height: 60px;
    border-bottom: 1px solid #D9DADB;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background-color: transparent;
    font-weight: 300;
    font-size: 16px;
    line-height: 60px;
}

.table--leaderboard .table__row:hover:after, .table--leaderboard .table__row:focus:after {
    background-color: transparent !important;
}

#chartjs-tooltip {
    z-index: 1;
}

    #chartjs-tooltip table tbody {
        font-family: azo-sans-web, sans-serif !important;
        background-color: #02484D;
    }

.dropdown-toggle.user::after {
    display: none;
}

.user .site-header__action.action--primary {
    padding-left: 2.2rem;
}

.user .action__icon {
    margin-left: 0 !important;
    margin-right: 11px;
}

.member-profile {
    margin-right: 8px;
}

.my-photo-container {
    width: 35px;
    height: 35px;
    margin-right: 8px;
}

    .my-photo-container img {
        width: 100%;
        height: 100%;
        flex: 1 1 100%;
        display: flex;
        border-radius: 50%;
    }

.dropdown-menu.user {
    background-color: #0F2A31;
    margin-left: 4px;
    margin-right: 0;
    border-radius: 0;
    width: 220px;
    border: 0;
    margin-top: 0;
    position: fixed !important;
    left: calc(100% - 222px) !important;
    top: 75px !important;
    transform: unset !important;
}

@media (max-width: 760px) {
    .dropdown-menu.user {
        display: none;
    }

    .my-friends, .my-scores {
        margin-top: 0px !important;
    }
}

.user .dropdown-item {
    display: block;
    width: 100%;
    padding: 8px 20px;
    clear: both;
    font-weight: 400;
    font-size: 13px;
    color: #FFF;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

    .user .dropdown-item:hover {
        color: #00E6A1;
    }

.input-group-preappend .dot {
    height: 24px;
    width: 24px;
    background-color: #02484D;
    color: #FFF;
    border-radius: 50%;
    display: inline-block;
    line-height: 22px;
    font-size: 10px;
    padding-top: 1px;
    margin-right: 10px;
}


.container-find-a-course .col-level-1 {
    background-color: #F3F4F5;
    padding-top: 10px;
    margin-top: -90px;
}

.container-find-a-course .col-level-2 {
    background-color: #F3F4F5;
    margin-top: -15px;
}

.container-find-a-course .col-level-3 {
    background-color: #F3F4F5;
    padding-top: 20px;
    padding-bottom: 40px;
    margin-top: -15px;
}

.find-a-course {
    height: 400px;
}

.filter-button {
    margin-top: 20px;
    margin-left: 20px;
}

.clubs-list {
    max-height: 620px;
    overflow-y: auto;
    padding-right: 20px;
}

    .clubs-list.no-paging {
        max-height: 722px;
    }

@media (max-width: 992px) {
    .find-a-course {
        height: 250px;
        padding-left: 23px;
    }

    .filter-button {
        margin-top: 20px;
        margin-left: 0;
    }

    .container-find-a-course {
        margin-top: -80px;
    }

        .container-find-a-course .col-level-1 {
            margin-top: 0;
        }

    .col-md-0.col-level-3 {
        display: none;
    }

    .clubs-list {
        max-height: 100% !important;
        overflow-y: auto;
        padding-right: 0;
        margin-top: 20px;
    }
}

.breadcrumb {
    display: initial;
    flex-wrap: initial;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    border-radius: 0;
}

.table-text.dot {
    height: 24px;
    width: 24px;
    background-color: #02484D;
    color: #FFF;
    border-radius: 50%;
    display: inline-block !important;
    line-height: 24px;
    font-size: 14px;
    text-align: center;
}

.w-10 {
    width: 10%;
}

.w-30 {
    width: 30%;
}

table.more-info {
    margin: 0;
}

    table.more-info td {
        padding: 4px;
    }

.l_content-container {
    margin-bottom: -1px;
}

.gm-style .gm-style-iw-t::after {
    left: 90px;
    top: -40px;
    transform: translate(-50%,-50%) rotate(-137deg);
}

.gm-style-iw {
    width: 180px;
}

.mapmarker-info-facilityname {
    margin-bottom: 6px;
    font-weight: 800;
    font-size: 14px;
}

.friend-request-count {
    position: absolute;
    background-color: #eeeeee;
    color: #000;
    font-size: 9px;
    padding: 3px 5px;
    right: 0;
    margin-top: -42px;
    border-radius: 3px;
    margin-right: 13px;
}

.friend-request {
    height: 30px;
    width: 30px;
    background-color: #FE4F47;
    color: #FFF;
    border-radius: 50%;
    line-height: 28px;
    font-size: 10px;
    text-align: center;
    display: inline-block;
}

.btn-warning-shadow {
    box-shadow: 0px 2px 4px rgb(199, 176, 109);
    border: 1px solid #caa127;
}

select.select-sm {
    height: 40px;
}

.btn-friends-messages {
    border: none;
    border-radius: 0;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.01em;
    padding: 18px;
    margin-top: 14px;
}

    .btn-friends-messages:hover {
        color: #00E6A1;
    }

.club-facilitytypes {
    padding: 60px 0 100px;
    margin-left: 20%;
}

    .club-facilitytypes .row-1 {
        margin-bottom: 35px;
    }

    .club-facilitytypes .facility-type {
        padding: 10px 11px 16px 24px;
        min-width: 167px;
        box-shadow: 0px 1px 3px #BFC4C8;
        border-radius: 2px;
        margin-right: 32px;
    }

    .club-facilitytypes .section-name {
        font-size: 30px;
        font-weight: 300;
        margin-bottom: 40px;
    }

    .club-facilitytypes .facility-type .facility-type-icon {
        font-size: 30px;
        color: #00e6a1;
        height: 43px;
    }

    .club-facilitytypes .facility-type.not-available .facility-type-icon {
        color: #9AA1A4;
    }

    .club-facilitytypes .facility-type .rounded-circle {
        background-color: #00e6a1;
        width: 26px;
        height: 26px;
        text-align: center;
    }

        .club-facilitytypes .facility-type .rounded-circle .fal {
            font-size: 14px;
            color: #E3FBF1;
        }

    .club-facilitytypes .facility-type.not-available .rounded-circle {
        background-color: #9AA1A4;
    }

        .club-facilitytypes .facility-type.not-available .rounded-circle .fal {
            color: #F7F7F7;
        }

    .club-facilitytypes .facility-type-count {
        color: #2AA897;
        font-weight: 500;
        font-size: 34px;
        height: 43px;
    }

        .club-facilitytypes .facility-type-count.not-available {
            color: #9AA1A4;
        }

    .club-facilitytypes .facility-type .facility-type-name {
        font-size: 18px;
        line-height: 22px;
        color: #00313F;
        margin-top: 12px;
        margin-right: 20px;
    }

    .club-facilitytypes .facility-type.not-available .facility-type-name {
        color: #687479;
    }

    .club-facilitytypes .amenities-description {
        color: #03131B;
        padding-top: 60px;
        font-weight: 300;
    }

@media (max-width: 768px) {
    .club-facilitytypes {
        margin-left: 8.33%;
    }
}

.menu-desc {
    font-size: 12.5px;
    padding-top: 6px;
    color: #a2a2a2;
    line-height: 1.5;
    padding-right: 10px;
}

/**** SCORE COMMENTS ****/
.score-comments {
    font-size: 15px;
    margin-bottom: 50px;
}

    .score-comments input, .score-comments button {
        font-size: 15px;
    }

    .score-comments input {
        padding: 22px 10px;
    }

    .score-comments .mt-3 {
        margin-top: 20px !important;
    }

    .score-comments .mb-3 {
        margin-bottom: 20px !important;
    }

    .score-comments .friend-comment {
        padding: 18px;
        background-color: #ececec;
        border-radius: 20px;
    }

    .score-comments .my-photo-container {
        width: 45px;
        height: 45px;
        margin-right: 0;
    }

        .score-comments .my-photo-container svg {
            width: 100%;
            height: 100%;
            flex: 1 1 100%;
            display: flex;
            border-radius: 50%;
            background-color: #ececec;
            padding: 8px;
            color: #0F2A31;
        }

@media (max-width: 575px) {
    .score-comments .my-photo-container {
        float: left !important;
        margin-bottom: 10px;
    }
}

.block-header__title a {
    color: #051219;
}

.content-spacer {
    padding: 45px;
    background-color: #000;
}

.card__content h1 {
    margin-bottom: 3rem;
    font-weight: 300;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.3125;
    letter-spacing: 0.01em;
}

.content-block:last-child {
    padding-bottom: 64px !important;
}

@media (min-width: 768px) {
    .content-block:last-child {
        padding-top: 64px !important;
    }
}

.image-reveal-container .image-content {
    color: #333;
    z-index: 1000;
    position: relative;
    padding: 9% 60px;
    max-width: 450px;
    height: 100%;
    background-color: rgba(255,255,255,0.85);
    margin-left: 60px;
}

.image-reveal-container .image-url {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 50px;
    margin-right: 60px;
}

.tile .detail-minor {
    line-height: 1.6875;
}

.tile .detail-small {
    line-height: 1.6875;
}

a.tile--profile:hover {
    color: #fff;
}

.tile--profile .tile__image {
    background-color: #000;
}

/* Gallery mobile styles*/

@media (max-width: 991.98px) {
    .gallery__carousel .image-reveal-container .image-content p {
        font-size: 1.4rem;
    }
}

@media (max-width: 575.98px) {
    .gallery__carousel .image-reveal-container .image-content {
        padding: 24px 24px 24px 24px;
        margin-left: 20px;
    }

        .gallery__carousel .image-reveal-container .image-content h2 {
            font-size: 1.4rem;
        }

        .gallery__carousel .image-reveal-container .image-content p {
            font-size: 1.15rem;
        }

        .gallery__carousel .image-reveal-container .image-content .button.button--secondary {
            height: 3rem;
        }

    .gallery__carousel .image-reveal-container .image-url {
        margin-right: unset;
        right: 15px;
        margin-bottom: 20px;
    }
}

/* High Performance Detail */

.hp-detail-hero-container {
    background-color: #051219;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: top;
    padding-top: 80px;
    margin-bottom: 160px;
}

.high-performance-pro .container, .high-performance-amateur .container {
    max-width: 1300px;
}

.hp-detail-hero {
    padding-top: 102px;
}

    .hp-detail-hero h2 {
        font-style: normal;
        font-weight: 300;
        font-size: 34px;
        line-height: 1.5;
        color: #fff;
    }

    .hp-detail-hero h5 {
        font-style: normal;
        font-weight: normal;
        font-size: 22px;
        line-height: 1.5;
        color: #8D8D93;
        font-weight: 300;
        margin-bottom: 20px;
    }

        .hp-detail-hero h5 span {
            font-style: normal;
            font-weight: 300;
        }

.hp-detail-hero-left {
    margin-bottom: -84px;
}

    .hp-detail-hero-left svg {
        background: linear-gradient(360deg, rgba(3, 19, 27, 0.45) 0%, rgba(3, 19, 27, 0) 44.36%), radial-gradient(100% 100% at 100% 100%, rgba(3, 19, 27, 0.44) 0%, rgba(3, 19, 27, 0) 100%);
        border-radius: 4px;
    }

.hp-detail-hero-right {
    /*display: flex;
    align-items: flex-end;*/
    /*bottom: 70px;*/
    padding-left: 70px;
    margin-top: 20px;
}

    .hp-detail-hero-right .btn-secondary {
        display: inline-block;
        background: #00E6A1;
        border: none;
        border-radius: 0;
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
        letter-spacing: 0.01em;
        color: #051219;
        padding: 20px;
        margin-top: 20px;
    }

    .hp-detail-hero-right .my-vital-stats {
        margin-top: 24px;
        float: none !important;
        margin-left: 0;
    }

    .hp-detail-hero-right h4 {
        font-size: 22px;
        line-height: 1.4em;
    }

.high-performance-pro .pro-html {
    margin-top: 50px;
    color: #fff;
    font-style: normal;
    font-size: 18px;
    line-height: 1.5;
    max-width: 606px;
    text-align: left !important;
    padding-left: 2.4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-left: 2px solid #00E6A1;
    font-weight: 300;
}

.hp-detail-hero .btn-primary {
    margin-top: 20px;
}

.hp-detail-hero .back-link-container {
    margin-bottom: 25px;
}

    .hp-detail-hero .back-link-container a {
        color: #00E6A1;
    }

.mt-9r {
    margin-top: 9rem;
}

.high-performance-amateur h4 {
    font-weight: 300;
}

.high-performance-amateur .my-vital-stats .handicap-index {
    padding-top: 25px;
    padding-bottom: 35px;
}

.high-performance-amateur .my-vital-stats .last-updated {
    margin-top: 10px;
    font-size: 1.6rem;
    line-height: 1.6875;
    color: #6E6E6F;
}

/********* Accordion *************/
.accordion {
    margin-bottom: 160px;
}

    .accordion .card {
        flex-direction: column;
    }

    .accordion .subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
        font-weight: 400;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .accordion .title-area {
        margin-bottom: 20px;
    }

        .accordion .title-area a {
            font-size: 18px;
            font-weight: normal;
            color: #02484D;
            margin-bottom: 30px;
        }

            .accordion .title-area a:after {
                content: "\f107";
                font-family: 'Font Awesome 5 Pro';
                float: right;
                margin-left: 8px;
            }

    .accordion h2 {
        font-size: 22px;
        line-height: 27px;
        margin-bottom: 10px;
        font-weight: 300;
    }

    .accordion .card-block {
        padding: 20px 30px 20px 40px;
        font-weight: 300;
        font-size: 1.6rem;
        line-height: 1.6875;
        color: #6E6E6F;
        margin-bottom: 20px;
    }

    .accordion .card-header {
        background-color: transparent;
        border-top: 1px solid #9AA1A4;
        border-bottom: none;
        padding: 24px;
    }

    .accordion .card:nth-child(2) .card-header {
        border-top: none !important;
    }

    .accordion .card-header a {
        color: #384B55;
        font-size: 22px;
        line-height: 1.5;
        /* padding: 8px 0; */
        font-weight: 900;
    }

        .accordion .card-header a:hover {
            text-decoration: none;
        }

        /*.accordion .card-header a:after {
        content: "\f067";
        font-family: 'Font Awesome 5 Pro';
        color: #384B55;
        float: right;
    }*/

        .accordion .card-header a:before {
            content: "\f068";
            font-family: 'Font Awesome 5 Pro';
            float: right;
        }

        .accordion .card-header a.d-block:before {
            color: #00E6A1;
        }

        .accordion .card-header a.d-block.collapsed:before {
            color: #051219;
            font-size: 28px;
            font-weight: 100;
        }

        .accordion .card-header a.collapsed:before {
            content: "\f067";
            font-family: 'Font Awesome 5 Pro';
            color: #384B55;
            float: right;
            margin-left: 16px;
            margin-bottom: 1px;
        }

/*.back-to-top {
    text-align: right;*/
/* margin: 30px 0;*/
/*}

    .back-to-top a {
        font-size: 18px;
        line-height: 22px;
        color: #00313F;
        margin-right: 12px;
    }

    .back-to-top:after {
        content: "\f062";
        font-family: 'Font Awesome 5 Pro';
        font-size: 18px;
    }*/

.admin-view {
    border-top: 90px solid #000;
}

    .admin-view .card {
        flex-direction: column;
    }

    .admin-view .mt-5r {
        margin-top: 30px;
    }

    .admin-view .alert-dismissible .close {
        margin-top: 7px;
        margin-right: 3px;
    }

    .admin-view .alert {
        margin-bottom: 40px;
    }

.resources__banner h6 {
    margin-bottom: 27px;
}

/* flockler */
.flockler-posts:not(.flockler-grid-items) a.flockler-btn-load-more {
    background: #00E6A1;
    border: none;
    border-radius: 0;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #051219;
    padding: 20px;
    margin-top: 40px;
}


    .flockler-posts:not(.flockler-grid-items) a.flockler-btn-load-more:hover {
        color: #051219;
        background-color: #72E7C9;
        border: 0;
    }

.flockler-wall-item__content {
    border: 0;
}

/* /flockler */

.tile--resource:hover {
    color: #FFFFFF;
}

.tile--resource.featured--02:hover,
.resource-container--05 .tile--resource:hover,
.resource-container--03 .tile--resource:hover {
    color: #051219;
}

a.post:hover {
    color: #FFFFFF;
}




/* Signup */


.step {
    text-transform: uppercase;
    color: #676767;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 25px;
}

    .step.active {
        color: #006E69;
        font-weight: bold;
    }

        .step.active:after {
            content: "\f061";
            font-family: 'Font Awesome 5 Pro';
            float: right;
        }

    .step.done:before {
        content: "\f00c";
        font-family: 'Font Awesome 5 Pro';
        float: left;
        padding-right: 5px;
    }

.golfnz-login .alert {
    margin-bottom: 60px;
}

    .golfnz-login .alert .table {
        margin-bottom: 0;
    }

.golfnz-login .form-check {
    padding-left: 0;
}

    .golfnz-login .form-check .form-check-input {
        position: relative;
        margin-top: -2px;
        margin-left: 8px;
        margin-right: 8px;
    }

    .golfnz-login .form-check label {
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        align-items: center;
        color: #02484D;
    }

.golfnz-signup .form-group input[type=text],
.golfnz-signup .form-group input[type=number],
.golfnz-signup .form-group input[type=password],
.golfnz-signup .form-group input[type=email] {
    height: auto;
    border-bottom: 1px solid transparent;
}

.golfnz-signup .form-group input.is-error {
    border-bottom: 1px solid #FE4F47;
    box-shadow: inset 0 -1px 0 0 #FE4F47;
}

.golfnz-signup .show {
    display: block;
}

/* /Signup */


input.readonly {
    background-color: #efefef !important;
}


.table-leaderboard-fix {
}

@media (min-width: 1200px) {
    .table-leaderboard-fix .table-text--position {
        max-width: unset;
        min-width: unset;
        width: 48px;
    }
}

@media (min-width: 480px) {
    .table-leaderboard-fix .table-text,
    .table-leaderboard-fix .generic-table td,
    .generic-table .table-leaderboard-fix td {
        max-width: unset;
        min-width: unset;
        width: unset;
    }
}

.table-leaderboard-fix .table__row .pga img,
.table-leaderboard-fix .table__row .country img {
    width: unset;
    height: unset;
    margin: 0 auto;
}

.table-leaderboard-fix .table__row .arrow img {
    width: unset;
    height: unset;
    display: inline-block;
}

.table-leaderboard-fix .pga,
.table-leaderboard-fix .country,
.table-leaderboard-fix .arrow {
    width: 33px;
    padding: 0;
    text-align: center;
}

.table-leaderboard-fix .arrow {
    width: 90px;
}

.entry-name img {
    display: inline;
}

.entrant-info {
    padding-left: .8rem;
    padding-right: .8rem;
}

.table-leaderboard-fix a.round_link {
    color: #000;
}

/*.table-leaderboard-fix .table__row {
    cursor: default;
}*/

@media (min-width: 992px) {
    .table-leaderboard-fix .table-text, .table-leaderboard-fix .generic-table td, .generic-table .table-leaderboard-fix td {
        max-width: unset;
        min-width: unset;
        width: unset;
    }

    .table-leaderboard-fix .table-text--position {
        width: 40px;
    }
}

.table-leaderboard-fix .score-container {
    /*border-bottom: 1px solid #efefef;*/
    height: 70px;
}

.score.null {
    color: #051219;
    font-weight: 400;
}

.register-link a {
    color: #fff;
}

    .register-link a:hover,
    .register-link a:focus {
        color: #051219;
    }


.registration-wrapper {
    padding: 80px 0 100px;
}


    .registration-wrapper h1 {
        margin-bottom: 12px;
        line-height: 30px;
        font-weight: 500;
    }

    .registration-wrapper h5 {
        margin-bottom: 20px;
        margin-top: 20px;
        font-size: 1.6rem;
        font-weight: 400;
    }

    .registration-wrapper .step1-error-message,
    .registration-wrapper #step1-error-message {
        margin-top: 20px;
    }


    .registration-wrapper .form-horizontal,
    .registration-wrapper .form-reg {
        width: 100%;
    }

    .registration-wrapper .form-group,
    .registration-wrapper .step2-header {
        padding-left: 0;
    }

    .registration-wrapper .form-step1 .col-sm-4, .registration-wrapper .step2 .form-reg {
        margin-left: 8.33333%;
    }

    .registration-wrapper .form-member-login .btn-primary {
        margin-top: 30px;
    }

    .registration-wrapper .input-bank {
        display: flex;
    }

    .registration-wrapper hr {
        display: none;
    }

    .registration-wrapper .text-danger {
        font-size: 12px;
        font-weight: 400;
        margin-lefT: 10px;
    }

    .registration-wrapper .textarea.form-control {
        font-size: 16px;
    }


.registrationcheckout-wrapper .bs-callout-danger {
    padding: 20px;
    margin: 60px 0 20px;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
    border-left-color: #d9534f;
}

.registrationcheckout-wrapper .payment-provider {
    text-align: center;
    display: inline-block;
    margin: 60px 0 10px;
}

.registrationcheckout-wrapper {
    margin-bottom: 80px;
}

.registrationcheckout-wrapper .creditcardaccepted img {
    text-align: center;
    display: initial;
}

.registrationcheckout-wrapper .creditcardaccepted h5 {
    margin-top: 20px;
    font-weight: 400;
    font-size: 14px;
}

.registrationcheckout-wrapper .addevent-wrapper {
    margin-left: 8.33333%;
    margin-bottom: 30px;
}

.registrationcheckout-wrapper .col-md-10.col-md-offset-1 {
    margin-left: 8.33333%;
}

.registrationcheckout-wrapper select.form-control {
    height: 40px;
}

.registrationcheckout-wrapper .btn-addevent {
    height: 40px;
    font-size: 14px;
    background-color: #00E6A1;
    margin-left: 5px;
}

.registrationcheckout-wrapper .processing-icon img {
    font-size: 14px;
}

.registrationcheckout-wrapper .processing-icon img,
.registration-wrapper .loadingcomputerno img {
    display: initial;
}

.registration-wrapper .loadingcomputerno {
    margin-top: 10px;
}

.registrationcheckout-wrapper .cartitems-wrapper .btn {
    background-color: #00E6A1;
}

.registration-options-form select.form-control {
    height: 40px;
}

.registration-options-form .required .form-control {
    border: solid 1px red;
}

.registration-options-form textarea {
    font-size: 16px;
}


.form-group.required .control-label:after {
    font-size: 16px;
    font-weight: 800;
}

.registrationconfirmation-wrapper .fail-wrapper,
.registrationconfirmation-wrapper .success-wrapper {
    margin-left: 8.33%;
    margin-right: 8.33%;
}

    .registrationconfirmation-wrapper .fail-wrapper .alert,
    .registrationconfirmation-wrapper .success-wrapper .alert {
        padding: 40px;
    }

    .registrationconfirmation-wrapper .fail-wrapper .alert-emphasise {
        padding: 10px 0 20px;
    }

    .registrationconfirmation-wrapper .fail-wrapper .btn-payagain {
        background-color: #dc3545;
        border-color: #dc3545;
        border: none;
        border-radius: 0;
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
        letter-spacing: 0.01em;
        color: #fff;
        padding: 20px;
    }

    .registrationconfirmation-wrapper .success-wrapper .btn-default {
        /*background: #00E6A1;
        border: none;
        border-radius: 0;
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
        letter-spacing: 0.01em;
        color: #051219;
        padding: 20px;*/
        display: none;
    }

.form-reg .txtNotes {
    font-size: 14px;
}

.table--player-entries .stat.stat-country {
    width: 280px;
}

.notification-count {
    position: relative;
    background-color: #FE4F47;
    color: #FFF;
    font-size: 10px;
    padding: 3px 5px;
    margin-top: -40px;
    border-radius: 3px;
    margin-right: -6px;
    font-weight: 900;
    display: inline-block;
    float: right;
}

.notifications {
    background: #FFF;
    border: 1px solid #E0E3E4;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
    box-sizing: border-box;
    max-width: 320px;
    max-height: 400px;
    overflow-y: auto;
    position: absolute;
    z-index: 100;
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 10px;
    color: #051219;
    line-height: 1.5;
}

.notification-arrow {
    content: "\A";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 14px solid white;
    position: absolute;
    margin-left: 15px;
    margin-top: 0px;
    z-index: 1000;
}

.notifications .notification {
    padding: 12px 8px;
    border-bottom: 1px solid #efefef;
}

    .notifications .notification:last-child {
        border-bottom: 0;
    }


.no-email-on-record-info {
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #efefef;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
}

.hero__content__header h1 {
    font-size: 55px;
    font-weight: 100;
}

.form-validation-text {
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}

.min-w-280 {
    min-width: 280px;
}

.club-facilitytypes .facility-type {
    margin-bottom: 30px;
    width: 180px;
}

    .club-facilitytypes .facility-type .facility-type-name {
        line-height: 26px;
    }


.icons a {
    padding: 4px;
}

    .icons a.selected {
        color: #051219;
        border: 1px solid #02484D;
        border-radius: 5px;
    }

.content-block.post-detail:last-child {
    padding-top: 0 !important;
}

.admin-view .form-control.btn {
    line-height: 20px;
}

.resources__featured__tiles {
    padding-bottom: 0;
}

.post-tag {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.birthday-picker select {
    width: 33.33333% !important;
    float: left;
}

.gender-radio {
    border-bottom: none !important;
}

.rmembersignupv2-container .subtitle-container {
    font-family: azo-sans-web, sans-serif !important;
    font-weight: 400;
    margin-bottom: 0;
}

.rmembersignupv2-container .btn-success {
    background-color: #00E6A1 !important;
    color: #051219 !important;
    border: 0 !important;
    font-size: 16px;
    height: 6rem;
}


.rmembersignupv2 .button-container {
    margin: 20px 0 60px;
}

.rmembersignupv2 .panel-heading,
.rmembersignupconfirmationv2 .panel-heading {
    font-size: 18px !important;
    background-color: #dcf7ef;
    padding: 10px;
}

.rmembersignupv2 .checkbox.has-error label,
.rmembersignupv2 .has-error .control-label {
    color: #FE4F47;
}


.rmembersignupv2 .has-error .form-control {
    border-bottom: 1px solid #FE4F47 !important;
    box-shadow: inset 0 -1px 0 0 #FE4F47 !important;
}

.rmembersignupv2 .alert {
    margin: 20px 0;
}

    .rmembersignupv2 .alert ul,
    .rmembersignupconfirmationv2 .alert ul {
        padding-left: 20px;
    }

.rmembersignupv2 fieldset {
    padding-top: 0;
    padding-bottom: 0;
}

.rmembersignupv2 .div-voucher,
.rmembersignupconfirmationv2 .div-voucher {
    width: 100%;
    margin-bottom: 15px;
}

.rmembersignupv2 .btn-apply-voucher,
.rmembersignupconfirmationv2 .btn-apply-voucher {
    font-size: 14px;
}

.rmembersignupv2 .gender-radio {
    margin-top: 15px;
}

    .rmembersignupv2 .gender-radio .radio-inline {
        margin-right: 15px;
    }

    .rmembersignupv2 .gender-radio input[type=radio] {
        margin-top: -4px;
        vertical-align: middle;
    }

.rmembersignupv2 .terms-and-conditions label {
    margin-top: 0;
}

.rmembersignupv2 .form-group-payment-summary {
    margin-bottom: 80px;
}

.rmembersignupconfirmationv2 h3 {
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 26px !important;
}

.rmembersignupconfirmationv2 .btn-pay {
    margin: 20px 0;
}

.rmembersignupv2 .table-payment-summary,
.rmembersignupconfirmationv2 .table-payment-summary {
    margin-top: 40px;
}


/* MY ACCOUNT */
.myaccount-details-info-main h2 {
    font-weight: 300;
    font-size: 26px;
    padding: 15px 0 5px;
}

.table-outstanding-invoices > thead > tr > th {
    border-top: 0;
}

.myaccount-value {
    padding: 8px 0;
}

.bg-info {
    background-color: #d9edf7 !important;
}

.text-warning {
    color: #8a6d3b !important;
}

.bg-warning {
    background-color: #fcf8e3 !important;
}

.icon-creditcard {
    width: auto;
    height: auto;
    display: revert;
}

.myaccount-section h3 {
    font-weight: 300;
    font-size: 20px;
    padding: 15px 0;
}

.bs-callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}

.bs-callout-warning {
    border-left-color: #f0ad4e;
}

.billingcard-membership {
    display: flex;
    line-height: 28px;
}

.rmyaccount-container .btn {
    font-size: 14px;
}

.rmyaccount-container .control-label {
    margin-bottom: 10px;
}

.rmyaccount-container .btn-default {
    background-color: #eee;
    border: 1px solid #ddd;
}

.rmyaccount-container .btn-success {
    background-color: #28a745;
}

    .rmyaccount-container .btn-success label {
        margin-bottom: 0;
    }

.rmyaccount-container .btn-warning {
    color: #fff;
}

.myaccountpay-wrapper table {
    width: calc(100% - 60px);
}

.rmyaccount-container .panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

.rmyaccount-container .panel-default > .panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.rmyaccount-container .panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.rmyaccount-container .imgpaymentmethod {
    margin-top: 10px;
}

.rmyaccount-container table {
    margin-bottom: 0;
}

.myaccountpaymentconfirmation-wrapper .btn {
    margin-top: 16px;
    font-size: 14px;
}

.rmyaccount-container .footer-message {
    margin-bottom: 100px;
}

.table > tbody > tr.warning > td, .table > tbody > tr.warning > th,
.table > tbody > tr > td.warning, .table > tbody > tr > th.warning,
.table > tfoot > tr.warning > td, .table > tfoot > tr.warning > th,
.table > tfoot > tr > td.warning, .table > tfoot > tr > th.warning,
.table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > thead > tr > td.warning, .table > thead > tr > th.warning {
    background-color: #fcf8e3;
}

.table--leaderboard.stats-chat .stat {
    min-width: 220px;
}

.table--leaderboard.stats-chat .table__row {
    cursor: default;
}

    .table--leaderboard.stats-chat .table__row:hover, .table--leaderboard.stats-chat .table__row:focus {
        background-color: inherit;
    }

.my-vital-stats-ad {
    background-color: transparent;
    box-shadow: none;
    margin-top: 20px;
}

@media (max-width: 991.98px) {
    .div-mtp9 .stat {
        width: 80px;
    }
}


.embed-container {
    --video--width: 640;
    --video--height: 360;
    position: relative;
    padding-bottom: calc(var(--video--height) / var(--video--width) * 100%);
    overflow: hidden;
    max-width: 100%;
    background: black;
}

    .embed-container iframe, .embed-container object, .embed-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* scrim */
.hero .slide-inner:before {
    background: radial-gradient(circle at center left, rgba(0, 0, 0, .25) 0%, rgba(2, 16, 13, 0) 65%);
}

.bg-video-scrim {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(2, 9, 13, 0.75) 0%, rgba(2, 9, 13, 0) 100%);
    z-index: 1;
    height: 400px;
    pointer-events: none;
}


/********* CASUAL GOLF ***********/
.cg-registration {
    background-color: #F37021 !important;
}

    .cg-registration .content .title {
        font-family: azo-sans-web, sans-serif !important;
        color: #fff !important;
        font-weight: 300 !important;
    }

/********* /CASUAL GOLF ***********/


.subscription-block h2 {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.table-scroll-y {
    overflow-y: auto;
}

.select-custom {
    width: 200px;
}

.topup-amount {
    width: 100px;
    float: left;
    height: 32px;
    margin-right: 8px;
    font-size: 15px;
}

.competition-result {
    max-width: 1620px;
    margin: 0 auto;
    padding-top: 40px;
}

    .competition-result #ucCompetitionResultsViewResults,
    .competition-result .section-view,
    .competition-result .hr {
        width: 83%;
        margin: 0 auto;
        max-width: 1348px;
    }

    .competition-result .section-view,
    .competition-result .hr {
        display: none;
    }

    .competition-result .h3 {
        margin-bottom: 40px;
    }

    .competition-result .form-group {
        margin-right: 40px;
    }

    .competition-result .form-control {
        height: 44px;
        padding: 0px 15px 0 5px;
        min-width: 225px;
    }

    .competition-result .form-group label {
        margin: 15px 15px 15px 0;
    }

    .competition-result #results_table {
        margin-top: 80px;
    }

    .competition-result .table th {
        border-top: 0;
        color: #8D8D93;
        font-size: 1.4rem;
        font-weight: 400;
        padding: 20px;
    }

    .competition-result .table td {
        padding: 20px;
    }

    .competition-result .score {
        color: #051219;
        border-radius: unset;
        font-size: inherit;
        display: block;
        width: auto;
        height: auto;
    }

.results_table .score-revert {
    display: revert;
}

.competition-result input[type=checkbox] {
    width: 20px;
    height: 20px;
    padding: 0;
    min-width: 20px;
}


#MainContent_TimeslotsTable td.xbooked {
    background-image: none;
    background-color: #cacaca !important;
}

#MainContent_TimeslotsTable td.searchslots_friend {
    background-image: none;
    background-color: #e0eeff !important;
}

.booking-payment {
    margin-top: 70px !important;
}

#MainContent_TimeslotsTable td {
    min-width: 120px;
    max-width: 140px;
    vertical-align: middle;
}

    #MainContent_TimeslotsTable td:nth-child(1) {
        min-width: 60px;
    }

    #MainContent_TimeslotsTable td:nth-child(2) {
        min-width: 40px;
    }

.module-booking-system .table .available {
    background: #fff;
}

.accordion .card-block {
    width: 75%;
}

.l_row-contact-form .custom-dropdown {
    margin-top: 60px;
    border: 1px solid #eee;
}

/***** HERO - Mobile view *****/
@media (max-width: 420px) {
    .u_image-cover {
        /*height: auto;*/
    }

    .hero__content__header h1 {
        font-size: 26px;
        line-height: 1.4;
        font-weight: 200;
    }

    .hero .button.button--primary {
        /* padding: 10px;
        height: auto;*/
        /*display: none;*/
    }

    .hero .hero__content {
        margin-top: 30px;
    }

    .hero .swiper-slide {
        height: auto;
        max-height: 300px;
    }

    .hero .hero__carousel {
        max-height: 300px;
    }

    .hero {
        height: 100vh;
        max-height: 300px;
        min-height: 300px;
    }

    .theme-dark .hero:first-child .slide-inner .scrim-dark {
        background: none;
    }

    .hero .slide-inner:before {
        background: none;
    }

    .page-home .hero .swiper-slide,
    .hero.hero--tall .swiper-slide {
        max-height: 520px;
    }

    .page-home .hero .hero__carousel,
    .hero.hero--tall .hero__carousel {
        max-height: 520px;
    }

    .page-home .hero,
    .hero.hero--tall {
        max-height: 520px;
        min-height: 520px;
    }


    .table-block:last-child {
        padding: 0;
    }

    .course-stats {
        margin-top: 80px;
    }

    .page-myoverview .my-friends, .page-myoverview .my-scores, .page-myoverview .my-competitions {
        padding: 15px 15px 40px;
        width: calc(100% + 1px);
    }

    .table--leaderboard .table__header--leaderboard {
        display: inline-block;
    }

    .row-requests {
        margin-bottom: 0 !important;
    }

    .btn-friends-messages {
        padding-right: 0;
        margin-top: -105px;
    }

    .dropdown-messages {
        margin-top: -30px;
    }
}

.mobile-only {
    display: none;
}

.result-table-container {
    overflow-y: auto;
}

.my-friends, .dashboard-overview {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 760px) {

    .accordion .card-block {
        width: 90%;
    }

    .tile--resource .tile__body {
        width: 400px;
    }

    .my-scores, .my-competitions, .my-performance,
    .mtp9, .tabs-myheader {
        padding-left: 15px;
        padding-right: 15px;
    }

        .tabs-myheader .tabs {
            margin-right: 0;
        }

    .table--leaderboard {
        overflow-y: hidden;
        overflow-x: scroll;
    }

    .div-mtp9 {
        overflow-y: hidden;
        overflow-x: hidden;
    }

    .table--leaderboard .table-text {
        width: 125px;
    }

    .custom-table-leaderboard .table-text {
        width: 32px;
    }

    .custom-table-leaderboard .row-container {
        display: inline-block !important;
        max-width: unset !important;
        width: auto !important;
    }

    .custom-table-leaderboard .entry-name {
        width: 160px;
    }

    .my-vital-stats {
        width: 100%;
        /*box-shadow: none;*/
    }

    .mobile-only {
        display: block;
    }

    .tabs-myheader .dot {
        height: 30px;
        width: 30px;
        background-color: #02484d;
        color: #FFF;
        border-radius: 50%;
        line-height: 28px;
        font-size: 10px;
        text-align: center;
        display: inline-block;
    }

    .tabs-myheader .fa, .tabs-myheader .fas {
        font-size: 14px;
        color: #fff;
        vertical-align: middle;
        margin-top: -10px;
        margin-left: -4px;
    }

    .notification-count {
        position: absolute;
        background-color: #FE4F47;
        color: #FFF;
        font-size: 10px;
        padding: 3px 5px;
        margin-top: -12px;
        border-radius: 3px;
        margin-left: -12px;
        font-weight: 900;
        display: inline-block;
        float: right;
    }

    .notifications.mobile-membersearch {
        max-height: 420px;
        height: 100vh;
    }

    .notifications {
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 300px;
    }

    .tabs-myheader .filter__item {
        width: calc(100% - 115px);
    }

        .tabs-myheader .filter__item .select--custom {
            background-color: #ffffff;
            padding: 0 10px;
            border-radius: 3px;
            height: 50px;
        }

    .template__tabs.tabs-myheader .tabs {
        height: 75px;
    }

    .notifications {
        margin-top: 13px;
    }

    .notification-arrow {
        margin-left: 6px;
        margin-top: 2px;
    }

    .navigation__link__text svg {
        margin-top: -6px;
    }

    .mobile-user {
        margin-top: 15px;
        margin-bottom: 15px;
        padding: 15px;
        text-align: center;
        background-color: #444;
        border-radius: 3px;
    }

        .mobile-user h6 {
            margin-bottom: 0;
            margin-top: 2px;
        }

        .mobile-user svg {
            height: 18px;
            width: 18px;
            margin-top: -2px;
        }

    .competition-result .form-control {
        width: 310px;
    }

    .scores-table-legend {
        margin-top: 24px;
    }

    .friend-comment, .input-user-comment {
        max-width: 360px;
    }

    .table-mybookings th:first-child {
        min-width: 180px;
    }

    .col-course {
        width: 140px !important;
    }

    .tournament-state {
        bottom: 9px;
    }

    .table__row--tournaments {
        padding-bottom: 42px;
    }

    ._l-tournament-row ._l-data-holes {
        width: 40px;
        flex: auto;
        max-width: 50px;
    }

    .table-leaderboard-fix .row-content__col--right .score-container {
        width: auto;
    }

    .table-leaderboard-fix .row-content__scroll {
        overflow: hidden;
    }

    .bg-video-scrim {
        background: linear-gradient(180deg, rgba(2, 9, 13, 0.5) 0%, rgba(2, 9, 13, 0) 20%);
    }
}

@media (max-width: 992px) {
    .table--leaderboard .myscores-row {
        display: inline-block !important;
        max-width: unset !important;
        width: auto !important;
    }
}

.module-booking-system .is-error {
    border-bottom: 1px solid #FE4F47 !important;
}

.competition-result .table--leaderboard .row-content__header .score {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    height: 26px;
    width: 26px;
    font-size: 1.3rem;
}

.competition-result .table--leaderboard .score {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    font-weight: 500;
    font-size: 1.4rem;
}

    .competition-result .table--leaderboard .score--text,
    .competition-result .table--leaderboard .score.is-par,
    .competition-result .table--leaderboard .score.is-total {
        color: #000000;
        font-size: 13px;
        font-weight: 400;
    }

    .competition-result .table--leaderboard .score.is-total {
        font-weight: 500;
    }

    .competition-result .table--leaderboard .score.is-bogey2 {
        border-radius: 0;
    }

.competition-result .table--leaderboard,
.competition-result .row-content__scroll {
    overflow: hidden;
}

.my-competitions .btn-sm.btn-primary,
.my-scores .btn-sm.btn-primary,
.my-friends .btn-sm.btn-primary {
    padding: 12px;
}

.bolder {
    font-weight: 500;
}

.table--tee-times {
    overflow-y: hidden;
    overflow-x: auto;
}

.table--tee-times-header {
    border-bottom: 0;
    background-color: #fff;
}

    .table--tee-times-header .table-text {
        color: #8D8D93;
        letter-spacing: 0.01em;
        line-height: 1.5;
        font-size: 13px;
        font-weight: 300;
    }

.theme-dark .message-no-result {
    color: #7b7b7b;
}

.checkbox label, .radio label {
    cursor: pointer;
}

.rte, .rte span, .rte p {
    font-family: azo-sans-web, sans-serif !important;
}

    .rte, .rte p {
        font-weight: 300;
        font-size: 1.6rem;
        line-height: 1.6875;
    }

.legend-text {
    font-size: 14px;
}

.dialog-window-title-bar .button {
    padding-right: 7px;
}

div.dialog-window-title-bar {
    border-radius: 0 !important;
}

div.dialog-window-content {
    border-radius: 0 !important;
}

div.dialog-window .dialog-window-title {
    padding-top: 12px;
    padding-bottom: 12px;
}

#wl-from-time, #wl-to-time, #wl-holes {
    width: 60px !important;
}

#waitlistDialog {
    font-size: 14px !important;
}

    #waitlistDialog img {
        display: inline;
        margin-left: 5px;
    }

#btnSaveWaitlist {
    background-color: #00E6A1;
    border: 1px solid #498e79;
    padding: 2px 9px;
}

.input-group-member input {
    font-size: 14px;
}

#searchMemberName:focus {
    box-shadow: none;
}

.billingcard-tournament img {
    display: inline-block;
}

.no-border {
    border: 0 !important;
    padding-right: 0 !important;
}

.club-dot {
    padding-left: 0px !important;
}

.template__content .dropdown-item {
    font-size: 16px;
    padding: 8px 20px 8px 10px;
}

.template__content .dropdown-menu.show {
    margin-top: 12px;
}


@media (max-width: 992px) {
    .news-sorting {
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    .news-sorting {
        margin-top: 60px;
    }
}

.border-top-green {
    border-top: 2px solid #00E6A1 !important;
}

.template-error .hero {
    height: calc(var(--vh, 1vh) * 100);
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .my-vital-stats .handicap-index {
        font-size: 4vw;
    }
}

/* iGolf */
.ig-hero {
    background-color: #0f0f0f;
    height: 331px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ig-hero-title {
    color: #ffffff;
    font-size: 65px;
    font-family: muli, sans-serif;
    font-weight: 900;
    line-height: 50px;
}

.ig-hero-subtitle {
    color: #e30137;
    font-size: 22px;
    font-family: muli, sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}

.ig-hero-image-sm {
    background-color: #000000;
    height: 150px;
}

    .ig-hero-image-sm img {
        display: initial;
    }

.back-to-eg {
    font-family: muli, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #202020;
    vertical-align: top;
    line-height: 68px;
    text-transform: uppercase;
}

.eg-igolf .primary-menu {
    padding-left: 206px;
}

/***************# /additional styles by dotgolf *******************/

/**/
.module-button-cta-nzg {
    cursor: pointer;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 23px 4px 10px;
    text-decoration: none;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: solid #cccccc 1px;
    /*background: url(/images/ui/cta-small-black-arrow.png) no-repeat right center #d63a3a;*/
    background: url(/images/ui/cta-small-black-arrow.png) no-repeat right center #02484D;
    display: inline-block; /* IE is so silly */
    text-transform: uppercase;
}

    .module-button-cta-nzg:hover {
        cursor: pointer;
        color: #FFF;
        background: url(/images/ui/cta-small-white-arrow.png) no-repeat right center #02484D;
        text-transform: uppercase;
    }

.module-button-cta-red {
    cursor: pointer;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 23px 4px 10px;
    text-decoration: none;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: solid #cccccc 1px;
    background: url(/images/ui/cta-small-black-arrow.png) no-repeat right center #d63a3a;
    display: inline-block; /* IE is so silly */
    text-transform: uppercase;
}

    .module-button-cta-red:hover {
        cursor: pointer;
        color: #FFF;
        background: url(/images/ui/cta-small-white-arrow.png) no-repeat right center #d63a3a;
        text-transform: uppercase;
    }

.angry-error {
    color: red;
    font-weight: bold;
}

.card-type-drop {
    margin-top: 5px;
    margin-bottom: 25px;
    border: solid 1px #02484D;
    border-radius: 15px;
    clear: left;
    display: block;
    width: auto;
    min-width: 250px;
    max-width: 375px;
    height: 50px;
    background-color: white;
}

div.card-type-drop img {
    float: left;
    padding-left: 10px;
    padding-top: 7px;
}

div.card-type-drop span {
    margin-left: 10px;
    margin-top: 10px;
    font-weight: bold;
    display: inline-block;
}

.the-open-responsive-container {
    position: relative;
    overflow: hidden;
}

.the-open-iframe-responsive {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

#centerFullWidthPanel .uControlDivider {
    display: block !important;
    position: relative;
    text-align: center;
    z-index: 999;
}

.uControlDivider::before {
    content: ' ';
    position: absolute;
    z-index: 0;
    height: 1px;
    width: 100%;
    border-bottom: 1px dashed rgba(128,128, 128, 0.5);
    left: 0;
    top: 50%;
}

.uControlDivider .badge {
    color: #333;
    background-color: #ccc;
    font-weight: 100;
    z-index: 1;
    position: relative;
    padding: 7px;
}

.uControlDivider .uAddControlBtn,
.uControlDivider .uEditControlBtn {
    margin-left: 5px;
    z-index: 1;
    position: relative;
}

.uControlDivider .uAddControlBtn {
    position: absolute;
    top: -30px;
    left: calc(50% - 68px);
    font-size: 75%;
}

.cta--venue .cta--venue__item {
    margin-bottom: 3rem;
}

    .cta--venue .cta--venue__item:last-child {
        margin-bottom: 0;
    }

.navigation__cta {
    position: relative;
    height: 200px;
    width: 320px;
    margin-top: 16px;
    display: block;
}

@media screen and (min-width: 768px) {
    .navigation__cta {
        margin-top: 0;
    }
}

.navigation__cta--footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    padding-left: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .navigation__cta--footer > span:first-child {
        color: #fff;
    }

.text-secondary {
    font-family: acumin-pro, sans-serif;
    color: #051219 !important;
}

/* start: photo author credit */
.photo-image-wrapper {
    position: relative;
}

.photo-credit-wrapper {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: linear-gradient( to left, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 100%);
    padding: 5px 20px 5px 20px;
}

.photo-credit-label,
.photo-credit-text {
    padding-top: 10px;
    font-size: 11px;
    font-style: italic;
    font-family: acumin-pro, sans-serif;
}

.photo-credit-label {
    color: #fff;
    font-weight: lighter;
}

    .photo-credit-label:before {
        content: 'Photo by ';
        color: #fff;
        font-weight: lighter !important;
    }

.photo-credit-text {
    color: #fff !important;
    font-weight: bold;
    text-decoration: none !important;
    z-index: 1;
}

    .photo-credit-text:hover {
        color: #fff !important;
        text-decoration: underline !important;
    }



    .photo-credit-text:active {
        color: #fff !important;
        text-decoration: none !important;
    }
/* end: photo author credit */

.no-header-footer header,
.no-header-footer footer {
    display: none;
}