@font-face {
    font-family: 'Post Grotesk';
    src: url('../fonts/postgrotesk-book-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Post Grotesk';
    src: url('../fonts/postgrotesk-book-italic-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'Post Grotesk';
    src: url('../fonts/postgrotesk-bold-webfont.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Post Grotesk';
    src: url('../fonts/postgrotesk-bold-italic-webfont.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'Formula Condensed';
    src: url('../fonts/formulacondensed-bold-webfont.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Formula Condensed';
    src: url('../fonts/formulacondensed-light-webfont.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

:root {
    --red-hex-orig: #FC4A21;
    --red-hex: #E22C03;
    --light-red-hex-orig: #DB6659;
    /*--light-red-hex: #DB695C;*/
    --light-red-hex: #D9675C;
    --light-red-hex-alt: #BA4F45; /* For Stay in Touch */
    --pink-hex: #FFF4F5;
    --purple-hex-orig: #E3ABE8;
        --purple-hex: #A856AE;
        --purple-lighter-hex: #f1d5f3;
    --blue-hex-orig: #59A1D6;
    --blue-hex: #2D7BB4;
        --blue-lighter-hex: #acd0ea;
    --green-hex-orig: #73E3B2;
    --green-hex: #198657;
        --green-lighter-hex: #b9f1d8;
    --dark-green-hex-orig: #94B29E;
    --dark-green-hex: #667c6b;
        --dark-green-lighter-hex: #c9d8ce;
    --gray-hex: #767676;
    --btn-border-radius: 1.25rem;
    --btn-nav-border-radius: .75rem;

    --type-mono: 'Source Code Pro', monospace;
    --type-body: 'Post Grotesk', sans-serif;
    --type-heading: 'Formula Condensed', sans-serif;
}

body {
    color: #000;
    position: relative;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: #000 !important;
}
::-moz-placeholder { /* Firefox 19+ */
color: #000 !important;
}
:-ms-input-placeholder { /* IE 10+ */
color: #000 !important;
}
:-moz-placeholder { /* Firefox 18- */
color: #000 !important;
}

a {
    color: var(--red-hex);
}
    a:hover {
        color: var(--red-hex);
    }

a.alt {
    color: #000;
    text-decoration: underline;
}
    a.alt:hover {
        color: #000;
        text-decoration: none;
    }
    /*:target{
        display: block;
        position: relative;
        width: 100% !important;
    } */
    .anchor {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
        margin-top: -1px;

        z-index: -1;
    }
    /*
    target:not(.anchor)::before {
            content: '';
            display: block;
            height:      186px;
            margin-top: -186px;
            visibility: hidden;
            position: relative;
            z-index: -1;
        }
            @media(min-width: 992px) {
                :target:not(.anchor)::before {
                    content: '';
                    display: block;
                    height:      224px;
                    margin-top: -224px;
                }
            }
            @media(min-width: 1600px) {
                :target:not(.anchor)::before {
                    content: '';
                    display: block;
                    height:      256px;
                    margin-top: -256px;
                }
            }*/
sup a[data-toggle="modal"],
a sup {
    height: 12px;
    width: 12px;
    display: inline-block;
    background-color: var(--red-hex);
    vertical-align: text-top;
    text-indent: -9999px;
    overflow: hidden;
    margin-top: 2px;
    margin-left: 2px;
}
    @media(min-width: 1600px) {
        sup a[data-toggle="modal"] {
            height: 20px;
            width: 20px;
            margin-top: 12px;
        }
    }

blockquote {
    font-family: var(--type-heading);
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.2631;
    margin: 0 0 0 1rem;
}
    blockquote footer {
        text-transform: uppercase;
        margin-top: 2rem;
    }
    @media(min-width: 1600px) {
        blockquote {
            font-size: 3rem;
            line-height: 1.15;
        }
    }

/* CUSTOM STYLES ****************************************/

/* Text Styles */
.text-red { color: var(--red-hex) !important; }
.text-light-red { color: var(--red-hex) !important; }
.text-pink { color: var(--red-hex) !important; }
.text-purple { color: var(--purple-hex) !important; }
.text-blue { color: var(--blue-hex) !important; }
.text-green { color: var(--green-hex) !important; }
.text-dark-green { color: var(--dark-green-hex) !important; }

.lead {
    font-size: 3rem;
    line-height: 1.2083;
}

figure {
    margin-bottom: 0;
}
    figcaption {
        font-family: var(--type-mono);
        font-size: .75rem;
        color: #000;
        background-color: #fff;
        width: 100%;
        position: relative;
    }
    @media(min-width: 1600px) {
        figcaption {
            font-size: .75rem;
            font-size: 1.125rem;
            color: var(--gray-hex);
        }
    }


/* Background Styles */
.bg-red { background-color: var(--red-hex-orig) !important; }
.bg-light-red { background-color: var(--light-red-hex-orig) !important; }
    .bg-light-red-alt { background-color: var(--light-red-hex-alt) !important; }
.bg-pink { background-color: var(--pink-hex) !important; }
.bg-purple { background-color: var(--purple-hex-orig) !important; }
.bg-blue { background-color: var(--blue-hex-orig) !important; }
.bg-green { background-color: var(--green-hex-orig) !important; }
.bg-dark-green { background-color: var(--dark-green-hex-orig) !important; }

/* Background anchors */
.bg-red a:not(.btn):not(.page-link), .bg-light-red a:not(.btn):not(.page-link), .bg-pink a:not(.btn):not(.page-link), .bg-purple a:not(.btn):not(.page-link), .bg-blue a:not(.btn):not(.page-link), .bg-green a:not(.btn):not(.page-link), .bg-dark-green a:not(.btn):not(.page-link) {
    color: #000;
    text-decoration: underline;
}
    .bg-red a:not(.btn):not(.page-link):hover, .bg-light-red a:not(.btn):not(.page-link):hover, .bg-pink a:not(.btn):not(.page-link):hover, .bg-purple a:not(.btn):not(.page-link):hover, .bg-blue a:not(.btn):not(.page-link):hover, .bg-green a:not(.btn):not(.page-link):hover, .bg-dark-green a:not(.btn):not(.page-link):hover {
        text-decoration: none;
    }

img {
    max-width: 100%;
}

.bg-img {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
    figure.bg-img {
        width: 100%;
    }
        figure.bg-img  figcaption {
            position: absolute;
            bottom: 0;
        }
    .bg-img img {
        object-position: 50% 20%;
        object-fit: cover;
        min-width: 100%;
        max-width: 100%;
        min-height: auto;
    }
    .carousel-cell .flex-column.bg-img img {
        height: 440px;
    }
    .carousel-cell a {
        color: #000;
    }
    @media(min-width: 992px) {
        .bg-img img {
            /*min-height: 100%;*/
            flex-grow: 1;
        }
        .carousel-cell .flex-column.bg-img img {
            height: auto;
            flex-grow: 1;
            min-height: unset;
        }
    }

.crop-oval {
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid #000;
}
    .crop-oval:before {
        display: block;
        content: "";
        padding-top: 50%;
    }
    .crop-oval img {
        /*clip-path: ellipse(49.75% 24.75% at 50% 25%);*/
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        border: 0;
    }
    @media(min-width: 992px) {
        .crop-oval {
            width: 50%;
            margin: 0 auto;
            border: 2px solid #000;
        }
        .crop-oval img {
            /*clip-path: ellipse(25% 49.75% at 50% 50%);*/
            width: 200%;
            max-width: 200%;
            transform: translateX(-25%);
        }
        .crop-oval:before {
            display: block;
            content: "";
            padding-top: 175%;

        }
    }

.img-fluid {
    min-width: 100%;
}

/* Padding Styles */

.p-6 {
    padding:4.625rem !important
}
.pt-6, .py-6 {
    padding-top:4.625rem !important
}
.pr-6, .px-6 {
    padding-right:4.625rem !important
}
.pb-6, .py-6 {
    padding-bottom:4.625rem !important
}
.pl-6, .px-6 {
    padding-left:4.625rem !important
}
.mb-6, .my-6 {
    margin-bottom:4.625rem !important
}

@media(min-width: 992px) {
    .pt-lg-6, .py-lg-6 {
        padding-top:4.625rem !important
    }
    .pb-lg-6, .py-lg-6 {
        padding-bottom:4.625rem !important
    }
    .mb-lg-6, .my-lg-6 {
        margin-bottom:4.625rem !important
    }
}



/* Grid */

.row {
    position: relative;
}
.order-unset {
    -ms-flex-order: unset !important;
    order: unset !important;
}
    @media(min-width: 768px) {
        .order-md-unset {
            -ms-flex-order: unset !important;
            order: unset !important;
        }
    }
    @media(min-width: 992px) {
        .order-lg-unset {
            -ms-flex-order: unset !important;
            order: unset !important;
        }
    }
/* Button Styles */
.btn {
    border-radius: var(--btn-border-radius);
    font-family: var(--type-body);
    padding: .375rem 2rem;
}
    @media(min-width: 992px) {
        .btn {
            border-width: 2px;
        }
    }
    .btn.focus, .btn:focus {
        box-shadow: 0 0 0 .2rem rgba(0,0,0,.25)
    }
    .btn-red { color: #000; background-color: var(--red-hex-orig); border-color: #000; }
        .btn-red:hover { color: #000; background-color: var(--red-lighter-hex); border-color: #000; }
        .btn-red:not(:disabled):not(.disabled).active, .btn-red:not(:disabled):not(.disabled):active, .show>.btn-red.dropdown-toggle { color: #000; background-color: var(--red-lighter-hex); border-color: #000; }
    .btn-green { color: #000; background-color: var(--green-hex-orig); border-color: #000; }
        .btn-green:hover { color: #000; background-color: var(--green-lighter-hex); border-color: #000; }
        .btn-green:not(:disabled):not(.disabled).active, .btn-green:not(:disabled):not(.disabled):active, .show>.btn-green.dropdown-toggle { color: #000; background-color: var(--green-lighter-hex); border-color: #000; }
    .btn-dark-green { color: #000; background-color: var(--dark-green-hex-orig); border-color: #000; }
        .btn-dark-green:hover { color: #000; background-color: var(--dark-green-lighter-hex); border-color: #000; }
        .btn-dark-green:not(:disabled):not(.disabled).active, .btn-dark-green:not(:disabled):not(.disabled):active, .show>.btn-dark-green.dropdown-toggle { color: #000; background-color: var(--dark-green-lighter-hex); border-color: #000; }
    .btn-blue { color: #000; background-color: var(--blue-hex-orig); border-color: #000; }
        .btn-blue:hover { color: #000; background-color: var(--blue-lighter-hex); border-color: #000; }
        .btn-blue:not(:disabled):not(.disabled).active, .btn-blue:not(:disabled):not(.disabled):active, .show>.btn-blue.dropdown-toggle { color: #000; background-color: var(--blue-lighter-hex); border-color: #000; }
    .btn-purple { color: #000; background-color: var(--purple-hex-orig); border-color: #000; }
        .btn-purple:hover { color: #000; background-color: var(--purple-lighter-hex); border-color: #000; }
        .btn-purple:not(:disabled):not(.disabled).active, .btn-purple:not(:disabled):not(.disabled):active, .show>.btn-purple.dropdown-toggle { color: #000; background-color: var(--purple-lighter-hex); border-color: #000; }
    .btn-outline-white { color: #fff; border-color: #fff; background-color: transparent; }
        .btn-outline-white:hover { color: #000; background-color: #fff; border-color: #fff; }
        .btn-outline-white:not(:disabled):not(.disabled).active, .btn-outline-white:not(:disabled):not(.disabled):active, .show>.btn-outline-white.dropdown-toggle { color: #000; background-color: #fff; border-color: #fff; }
    .btn-outline-black { color: #000; border-color: #000; background-color: transparent; }
        .btn-outline-black:hover { color: #000; background-color: var(--pink-hex); border-color: #000; }
        .btn-outline-black:not(:disabled):not(.disabled).active, .btn-outline-black:not(:disabled):not(.disabled):active, .show>.btn-outline-black.dropdown-toggle { color: #000; background-color: var(--pink-hex); border-color: #000; }
    .btn-pink { color: #000; border-color: #000; background-color: transparent; }
        .btn-pink:hover { color: #000; background-color: var(--pink-hex); border-color: #000; }
        .btn-pink:not(:disabled):not(.disabled).active, .btn-pink:not(:disabled):not(.disabled):active, .show>.btn-pink.dropdown-toggle { color: #000; background-color: var(--pink-hex); border-color: #000; }
    .btn-outline-purple { color: var(--purple-hex); border-color: #000; background-color: transparent; }
        .btn-outline-purple:hover { color: #fff; background-color: var(--purple-hex); border-color: #000; }
        .btn-outline-purple:not(:disabled):not(.disabled).active, .btn-outline-purple:not(:disabled):not(.disabled):active, .show>.btn-outline-purple.dropdown-toggle { color: #fff; background-color: var(--purple-hex); border-color: #000; }
    .btn-outline-blue { color: var(--blue-hex); border-color: #000; background-color: transparent; }
        .btn-outline-blue:hover { color: #fff; background-color: var(--blue-hex); border-color: #000; }
        .btn-outline-blue:not(:disabled):not(.disabled).active, .btn-outline-blue:not(:disabled):not(.disabled):active, .show>.btn-outline-blue.dropdown-toggle { color: #fff; background-color: var(--blue-hex); border-color: #000; }
    .btn-outline-green { color: var(--green-hex); border-color: #000; background-color: transparent; }
        .btn-outline-green:hover { color: #fff; background-color: var(--green-hex); border-color: #000; }
        .btn-outline-green:not(:disabled):not(.disabled).active, .btn-outline-green:not(:disabled):not(.disabled):active, .show>.btn-outline-green.dropdown-toggle { color: #fff; background-color: var(--green-hex); border-color: #000; }
    .btn-outline-dark-green { color: var(--dark-green-hex); border-color: #000; background-color: transparent; }
        .btn-outline-dark-green:hover { color: #fff; background-color: var(--dark-green-hex); border-color: #000; }
        .btn-outline-dark-green:not(:disabled):not(.disabled).active, .btn-outline-dark-green:not(:disabled):not(.disabled):active, .show>.btn-outline-dark-green.dropdown-toggle { color: #fff; background-color: var(--dark-green-hex); border-color: #000; }

    .btn-search-mobile {
        border: none;
        border-radius: 0;
        font-family: var(--type-mono);
        padding: 1rem;
        border-bottom: 1px solid #000;
    }

.btn-lg {
    font-size: 1.125rem;
    line-height: 1.25;
    border-radius: var(--btn-border-radius);
    padding: .5rem 3.375rem;
}
    @media(min-width: 1600px) {
        .btn-lg {
            font-size: 2.25rem;
            line-height: 1.25;
            padding: .5rem 3.375rem;
        }
    }
.btn-circle {
    border-radius: 200px;
    line-height: 150px;
    height: 150px;
    width: 150px;
    padding: 0;
}

.btn-rounded {
    border-radius: 40px;
}

/*FORMS***********************************/

.form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(0,0,0,.25);
}

@media(min-width: 992px) and (max-width: 1599px) {
    #email-signup .email-signup-title {
        font-size: 5rem;
        margin-bottom: .2em!important;
    }
    #email-signup .email-signup-content {
        font-size: 2.5rem;
    }
}
@media(min-width: 1600px) {
    #email-signup .email-signup-title {
        font-size: 5rem;
        margin-bottom: .2em!important;
    }
    #email-signup .email-signup-content {
        font-size: 3rem;
    }
}

.ctct-form-embed.form_0 .ctct-form-defaults,
div.ctct-form-embed div.ctct-form-defaults {
    background-color: transparent!important;
}

.grecaptcha-badge,
.ctct-form-footer,
.ctct-gdpr-text,
div.ctct-form-embed form.ctct-form-custom .ctct-form-required:before {
    display: none!important;
}

.ctct-form-field label,
.ctct-form-errorMessage {
     text-align: center!important;
     color: var(--pink-hex)!important;
     font-family: var(--type-mono)!important;
     text-transform: uppercase!important;
     font-weight: normal!important;
}

.ctct-form-errorMessage {
    background-color: var(--pink-hex)!important;
    border-radius: var(--btn-border-radius)!important;
}

.form-control,
.ctct-form-element {
    background: var(--green-lighter-hex)!important;
    text-align: center!important;
    text-transform: uppercase!important;
    color: #000!important;
    border: 1px solid #000!important;
    font-family: var(--type-mono)!important;
}
    @media (min-width: 992px) {
        .form-control,
        .ctct-form-element
         {
            border: 2px solid #000!important;
        }
    }
    .form-control.form-control-lg,
    .ctct-form-element {
        border-radius: var(--btn-border-radius)!important;
        font-size: .875rem!important;
        padding: 1.9rem 1rem!important;
    }
    .ctct-form-element {
        padding: 1.2rem 1rem!important;
    }
.btn[type="submit"],
input[type="submit"],
.ctct-form-button {
    background: var(--pink-hex)!important;
    font-family: var(--type-body)!important;
    font-size: 1.125rem!important;
    padding: 1.2rem 1rem!important;
    border: 1px solid #000!important;
    border-radius: var(--btn-border-radius)!important;
}

.ctct-form-button {
    margin-top: 3rem!important;
}
    .ctct-form-button:focus {
        box-shadow: 0 0 0 0.2rem rgba(0,0,0,.25) !important;
    }
@media (min-width: 992px) {
    .btn[type="submit"],
    input[type="submit"],
    .ctct-form-button {
        border: 2px solid #000!important;
    }
}
@media(min-width: 1200px) {
    .form-control.form-control-lg,
    .ctct-form-element {
        border-radius: var(--btn-border-radius)!important;
        font-size: 1.125rem!important;
        padding: 1.9rem 1rem!important;
    }
    .ctct-form-element {
        padding: 1.2rem 1rem!important;
    }
    .btn[type="submit"],
    input[type="submit"],
    .ctct-form-button {
        font-size: 2.25rem!important;
        padding: .5rem 1rem!important;
    }
}

/* Remove Blue Input Outline */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

    [contenteditable="true"]:focus {
        outline: none;
    }

div.ctct-form-embed form.ctct-form-custom input.ctct-form-element:focus {
    box-shadow: 0 0 0 .2rem rgba(0,0,0,.25) !important;
    outline: none !important;
}

/* HEADER ****************************************/

header {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin-bottom: -1px;
}
@media(min-width: 992px) {
    header {
        border-top: 2px solid #000;
        border-bottom: 2px solid #000;
        margin-bottom: -2px;
    }
}

header form {
    margin-bottom: 0;
}
    header .form-control[type="search"] {
        font-family: var(--type-mono);
        font-size: .875rem;
        background: var(--pink-hex) !important;
        color: #000;
        border: 2px solid #000;
        border-right: none !important;
        border-radius: var(--btn-nav-border-radius);
        padding: .5rem 0 .5rem .5rem !important;
        height: 42px;
        text-align: left !important;
    }
    header button[type="submit"] {
        background: var(--pink-hex);
        color: #000;
        border-radius: 0 .75rem .75rem 0;
        border: 2px solid #000;
        border-left: none !important;
        overflow: hidden;
        text-indent: -999px;
        background-image: url('../img/ico-search.svg');
        background-repeat: no-repeat;
        background-position: center center;
        width: 50px;
    }
        header button[type="submit"]:hover {
            border: 2px solid #fff;
            background-color: #fff;
            filter: invert(100%) brightness(100%);
        }
        header button[type="submit"]:focus {
            box-shadow: 0 0 0 0.2rem rgba(0,0,0,.25);
        }
    @media(min-width: 1200px) {
        header .form-control[type="search"] {
            font-size: 1rem;
            padding: .77rem 0 .77rem 1.25rem !important;
            height: 56px;
        }
    }

/* NAVBAR ****************************************/

.navbar.navbar-main {
    padding: 0rem 1rem;
    font-size: 1.125rem;
    justify-content: space-between;
    min-height: 60px;
    /*border-bottom: 1px solid #000;*/
    background-color: #FFF4F5;
}
@media(min-width: 992px) {
    .navbar.navbar-main {
        padding: 1.5rem 1.5rem;
        /*border-bottom: 2px solid #000;*/
    }
}
    .navbar.navbar-main .navbar-brand {
        width: 183px;
        height: 31px;
        background: transparent url('../img/logo-fbo-horizontal.svg') no-repeat left center;
        background-size: contain;
        text-indent: -9999px;
        overflow: hidden;
    }
        @media(min-width: 992px) {
            .navbar.navbar-main .navbar-brand {
                width: 260px;
                height: 42px;
            }
        }
        @media(min-width: 1600px) {
            .navbar.navbar-main .navbar-brand {
                width: 410px;
                height: 68px;
            }
        }
    .hamburger {
        padding: 0;
        margin: 0 -1rem 0 1rem;
        width: 60px;
        height: 60px;
        background: #FFF4F5 url('../img/ico-hamburger.svg') no-repeat center center;
        opacity: 1;
        border-left: 1px solid #000;
    }
        /*.hamburger:hover {
            opacity: 1;
            filter: invert(100%) brightness(100%);
            border-left: 1px solid #fff;
        }*/
        .hamburger:focus {
            outline: 0;
            box-shadow: 0 0 0 .2rem rgba(0,0,0,.25);
            /*filter: invert(100%) brightness(100%);
            border-left: 1px solid #fff;*/
        }
    .navbar-toggler {
        padding: 0;
    }
    .ham {
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            transition: transform 400ms;
            -moz-user-select: none;
            -webkit-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        .hamRotate.active {
            transform: rotate(45deg);
        }
        .hamRotate180.active {
            transform: rotate(180deg);
        }
        .line {
            fill:none;
            transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
            stroke:#000;
            stroke-width:1;
            stroke-linecap:square;
        }
        .ham4 .top {
            stroke-dasharray: 40 121;
          }
          .ham4 .bottom {
            stroke-dasharray: 40 121;
          }
          .ham4.active .top {
            stroke-dashoffset: -68px;
          }
          .ham4.active .bottom {
            stroke-dashoffset: -68px;
          }



    .navbar.navbar-main .navbar-nav .nav-link.btn {
        font-family: var(--type-heading);
        font-weight: 700;
        font-size: 1.25rem;
        border: 2px solid #000;
        border-radius: var(--btn-nav-border-radius);
        text-transform: uppercase;
        margin-right: 1rem;
        letter-spacing: 0.1ch;
        padding: .25rem .5rem;
        white-space: nowrap;
    }
        .navbar.navbar-main .navbar-nav .nav-item:last-child .nav-link.btn {
            margin-right: 1rem;
        }

    .navbar.navbar-main .lang-switcher {
        white-space: nowrap;
        font-family: var(--type-mono);
        font-size: .875rem;
    }
        .navbar.navbar-main .lang-switcher a {
            color: #000;
            text-transform: uppercase;
        }
    .navbar.navbar-main a.search {
        color: #000;
        text-transform: uppercase;
        font-family: var(--type-mono);
        font-size: .875rem;
    }
    @media(min-width: 992px) {
        .navbar.navbar-main .lang-switcher {
            margin-right: 1rem;
        }
        .navbar.navbar-main .navbar-collapse {
            flex-basis: auto;
            flex-grow: 0;
        }
    }
    @media(min-width: 1200px) {
        .navbar.navbar-main .navbar-nav .nav-link.btn {
            font-size: 1.5rem;
            padding: .5rem 1.25rem;
            margin-right: 1.5rem;
        }
    }
    @media(min-width: 1700px) {
        .navbar.navbar-main .navbar-nav .nav-link.btn {
            font-size: 2.25rem;
            padding: .5rem 1.5rem;
            margin-right: 1.75rem;
        }
            .navbar.navbar-main .navbar-nav .nav-item:last-child .nav-link.btn {
                margin-right: 1rem;
            }
        .navbar.navbar-main .lang-switcher {
            font-size: 1rem;
        }
        .navbar.navbar-main a.search {
            font-size: 1rem;
        }
        header .form-control[type="search"] {
            height: 74px;
        }
    }

/* MODAL OVERRIDES **********************/
.modal .close {
    width: 18px;
    height: 50px;
    padding: 25px;
    background: #fff url('../img/ico-close.svg') no-repeat center center;
    opacity: 1;
    right: 0;
    margin-left: auto;
}
.modal .modal-header .close {
    border-left: 1px solid #000;
    margin: -1rem -1rem -1rem auto;
    background-color: #FFF4F5;
}
    .modal .close:not(:disabled):not(.disabled):hover {
        filter: invert(100%) brightness(100%);
        opacity: 1;
        border-left: 1px solid #fff;
    }
.modal-header {
    border-bottom: 1px solid #000;
    min-height: 50px;
    max-height: 50px;
    overflow: hidden;
    border-radius: 0;
    background-color: #FFF4F5;
}
.modal-title {
  font-family: var(--type-mono);
  font-size: .875rem;
  text-transform: uppercase;
}

/* Fullscreen MODAL *********************/

.modal .modal-dialog.modal-fullscreen {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal .modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal .modal-fullscreen .modal-body {
    overflow-y: auto;
  }

/* SLIDEOUT MODAL *************************/

.modal {

}
.modal-dialog.modal-dialog-slideout {width: 100%; max-width: 100%; font-family: var(--type-body); font-size: 1rem;}
    @media(min-width:768px) {
        .modal-dialog.modal-dialog-slideout {
         width: 66.67%;
         max-width: 1255px;
        }
    }
    @media(min-width:1400px) {
        .modal-dialog.modal-dialog-slideout {font-size: 1.5rem;}
    }
.modal-dialog-slideout {min-height: 100%; margin: 0 auto 0 0 ;background: #fff;}
.modal.fade .modal-dialog.modal-dialog-slideout {-webkit-transform: translate(-100%,0);transform: translate(-100%,0);}
.modal.fade.show .modal-dialog.modal-dialog-slideout {-webkit-transform: translate(0,0);transform: translate(0,0);flex-flow: column;}
.modal-dialog-slideout .modal-content{border: 0;}

.modal-dialog-slideout .modal-content {
    padding-top: 3rem;
    padding-right: 5rem;
}
.modal .modal-dialog.modal-dialog-slideout .close {
    margin-right: -4rem;
    margin-bottom: -66px;
}
.modal-dialog.modal-dialog-slideout .modal-title,
.modal-dialog.modal-dialog-slideout h5 {
    font-family: var(--type-heading);
    font-size: 4.1875rem;
    line-height: 1.0895;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem !important;
    letter-spacing: .1ch;
}
    @media(min-width:1400px) {
        .modal-dialog.modal-dialog-slideout .modal-title,
        .modal-dialog.modal-dialog-slideout h5 {
            font-size: 7.5rem;
            line-height: 1.2083;
            margin-bottom: 3rem !important;
        }
    }

.modal-dialog.modal-dialog-slideout .modal-slideout-tag,
.modal-dialog.modal-dialog-slideout h6 {
    font-size: .875rem;
    text-transform: uppercase;
    font-family: var(--type-mono);
    color: var(--gray-hex);
}
    .modal-dialog.modal-dialog-slideout h6 {
        margin-bottom: 1rem!important;
        margin-top: 3rem!important;
    }
.modal-dialog.modal-dialog-slideout .modal-slideout-title,
.modal-dialog.modal-dialog-slideout p strong {
    font-family: var(--type-body);
    font-weight: normal;
    font-size: 1.75rem;
}

.modal-dialog.modal-dialog-slideout img {
    margin-bottom: 1rem;
    min-width: 100%;
}

.modal-dialog.modal-dialog-slideout blockquote {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media(min-width:768px) {
    .modal-dialog-slideout .modal-content {
        padding-top: 10.75rem;
        padding-right: 6.25rem;
    }
    .modal .close {
        margin-right: -5.25rem;
    }
}
@media(min-width:768px) {
    .modal-dialog-slideout .modal-content {
        padding-top: 3rem;
    }
}

/* DEFAULT CONTENT ****************************************/

.content {
    background: #fff;
    position: relative;
    z-index: 300;
    font-size: .875rem;
    line-height: 1.2857;
    font-family: var(--type-mono);
}
    .content .lead {
        font-family: var(--type-body);
        font-size: 1.375rem;
        line-height: 1.3636;
    }
    .content .large {
        font-size: 100%;
        line-height: 1.375;
    }
    @media(min-width: 1600px) {
        .content {
            font-size: 1.125rem;
            line-height: 1.2222;
        }
        .content .lead {
            font-size: 3rem;
            line-height: 1.2083;
        }
        .content .large {
            font-size: 150%;
            line-height: 1.2083;
        }
    }
.alert.alert-top {
    background-color: var(--red-hex);
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: #fff;

    position: sticky;
    top: 0;
    left: 0;
    margin-bottom: 0;
    z-index: 0;
    font-family: var(--type-mono);
    transform: translateZ(0);
    opacity: .99;
}
    .alert.alert-top.hide {
        z-index: -1;
    }
    .alert.alert-top p a {
        color: #fff;
        text-decoration: underline;
    }
        .alert.alert-top p a:hover {
            color: #fff;
            text-decoration: none;
        }
    .alert.alert-top .row > div :last-child {
        margin-bottom: 0;
    }
    .alert.alert-top .read-more {
        display: inline-block;
        height: 10px;
        width: 20px;
        background: transparent url('../img/ico-arrow-bw-right.svg') no-repeat left top;
        text-indent: -9999px;
        overflow: hidden;
        margin-left: .75rem;
    }
        .alert.alert-top .btn {
            text-transform: uppercase;
            border-radius: 40px;
            font-size: 1.125rem;
            padding: .5rem 2.875rem;
        }


/* ARTICLE CONTENT *********************************/
.article {
    font-family: var(--type-body);
    font-size: 1.125rem;
    line-height: 1.4444;
    padding-top: 2rem;
    position: relative;
}
    .article a {
        text-decoration: underline!important;
    }
    .article blockquote {
        font-size: 1.125rem;
        line-height: 1.4444;
    }
    .article h2 {
        font-size: 4.1875rem;
        line-height: 1.1;
        font-family: var(--type-heading);
        letter-spacing: 0.05ch;
        font-weight: 700;

    -webkit-hyphens: auto;
    -moz-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
    }
    .article h3 {
        font-size: 3rem;
        line-height: 1.1;
        font-family: var(--type-heading);
        letter-spacing: 0.05ch;
        font-weight: 300;

    -webkit-hyphens: auto;
    -moz-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
    }
    .article h6 {
        font-size: .875rem;
        text-transform: uppercase;
        font-family: var(--type-mono);
        color: var(--gray-hex);
    }
    @media(min-width: 1600px) {
        .article h2 {
            font-size: 7.5rem;
        }
        .article h3 {
            font-size: 4.5rem;
        }
    }
    .article p, .article ul, .article ol {
        margin-bottom: 1.75rem;
    }
.article .first-character,
.article sub {
    float: left;
    font-size: 291.67%;
    line-height: 1;
    padding-right: 3px;
    margin-top: -15px;
}
    @media(min-width: 1600px) {
        .article {
            font-size: 3rem;
            line-height: 1.1979;
            padding-top: 4rem;
        }
        .article .first-character,
        .article sub {
            margin-top: -45px;
            margin-bottom: -18px;
            padding-right: 8px;
        }
    }
.article-tag, a.article-tag {
    border-radius: var(--btn-border-radius);
    color: #000;
    padding: .325rem 1rem;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
}
    a.article-tag:hover {
        color: #fff;
        background: #000;
        text-decoration: none;
    }

.article-info, .article-info-title {
    text-transform: uppercase;
}

.article-social {
    text-transform: uppercase;
}
    .article-social ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: inline-block;
    }
        .article-social li {
            display: inline-block;
            white-space: nowrap;
        }
            .article-social li:after {
                content: "|";
                margin: 0 5px;
                display: inline-block;
            }
                .article-social li:last-child:after {
                    display: none;
                }

.article-info a, .article-social a {
    color: #000;
    text-decoration: underline;
}
.article-info a:hover, .article-social a:hover {
    text-decoration: none;
}

a.article-collapse {
    background: #000;
    color: #fff;
    padding: .75rem 1rem;
    text-align: center;
    display: block;
}
    a.article-collapse:hover {
        background: var(--gray-hex);
        color: #000;
        text-decoration: none;
    }
a.article-collapse:after {
    content: "+";
    margin-left: 5px;
}
a.article-collapse[aria-expanded="true"]:after {
    content: "-";
}
    @media(min-width: 992px) {
        #collapseArticleInfo {
            display: block !important;
        }
    }
.sticky-sidebar {

}
    @media(min-width: 992px) {
        .sticky-sidebar {
            top: 186px;
            position: sticky;
            position: -webkit-sticky;
            z-index: 1019;
        }
    }
    @media(min-width: 992px) {
        .sticky-sidebar {
            top: 202px;
        }
    }
    @media(min-width: 1600px) {
        .sticky-sidebar {
            top: 220px;
        }
    }

/* SECTION CONTENT *********************************/

.section-heading {
    font-size: 4.1875rem;
    line-height: 1;
    font-family: var(--type-heading);
    letter-spacing: 0.05ch;
    font-weight: 700;
    text-transform: uppercase;

-webkit-hyphens: auto;
   -moz-hyphens: auto;
    -ms-hyphens: auto;
        hyphens: auto;
}
    .section-heading.light {
        font-weight: 300;
    }
.section-heading-block {
    font-size: 2.9375rem;
    line-height: 1.1;
    letter-spacing: 0.05ch;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--type-body);
    -webkit-hyphens: auto;
   -moz-hyphens: auto;
    -ms-hyphens: auto;
        hyphens: auto;
}
    .section-heading-block.alt {
        font-size: 4.1875rem;
        line-height: 1;
        font-family: var(--type-heading);
        text-transform: uppercase;
        letter-spacing: 0.05ch;
        font-weight: 700;
    }

    .section-heading-block a {
        color: #000;
    }

.section-title {
    font-size: 1.375rem;
    line-height: 1.3636;
    text-transform: uppercase;
    -webkit-hyphens: auto;
   -moz-hyphens: auto;
    -ms-hyphens: auto;
        hyphens: auto;
}
    div.section-title.alt {
        font-size: 5rem!important;
    }
.section-tag {
    font-size: .875rem;
    text-transform: uppercase;
}

.section-byline {
    font-size: .875rem;
    text-transform: uppercase;
}
/*@media(min-width: 992px) {
    .section-heading {
        font-size: 5rem;
        line-height: 1.2;
    }
    .section-heading-block {
        font-size: 6.5rem;
        line-height: 1.1;
    }
    .section-heading-block.alt {
        font-size: 5rem;
        line-height: 1.2;
    }
}*/
@media(min-width: 1600px) {
    .section-heading {
        font-size: 7.5rem;
        line-height: 1;
    }
    .section-heading-block {
        font-size: 8.9375rem;
        line-height: 1.1;
    }
    .section-heading-block.alt {
        font-size: 7.5rem;
        line-height: 1.2;
    }
    .section-title {
        font-size: 3rem;
        line-height: 1.2083;
    }
        div.section-title.alt {
            font-size: 7.5rem!important;
        }
    .section-tag {
        font-size: 1.125rem;
    }
    .section-byline {
        font-size: 1.125rem;
    }
}




/* FOOTER ****************************************/

footer.footer {
    padding: 5rem 0 0;
    background: #583b2d url('../img/footer.jpg') no-repeat center top;
    background-size: cover;
    color: #fff;
    /*z-index: 0;*/
    position: relative;

}
    footer.footer.hide {
        z-index: -1;
    }
    footer.footer a {
        color: #fff;
    }
        footer.footer a:hover {
            color: #fff;
        }
    footer.footer .lead {
        font-size: 1.125rem;
        line-height: 1.4444;
        margin-bottom: 2rem;
    }
    footer.footer ul.footer-nav {
        font-size: 1.25rem;
        line-height: 2;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    footer.footer .footer-address {
        font-size: 1.25rem;
        font-family: var(--type-heading);
        font-weight: 300;
    }
        footer.footer .footer-address a {
            text-decoration: underline;
        }
            footer.footer .footer-address a:hover {
                text-decoration: none;
            }
    footer.footer .footer-legal {
        font-size: .875rem;
        font-family: var(--type-mono);
        padding: 2rem 0 2rem;
    }
    @media(min-width: 768px) {
        footer.footer .footer-legal {
            font-size: 1.25rem;
            padding: 3rem 0 2rem;
        }
    }
    @media(min-width: 768px) {
        footer.footer {
            position: sticky;
            bottom: 0;
            left: 0;
            /*z-index: 0;*/
        }
            footer.footer .lead {
                font-size: 1.5rem;
                line-height: 1.2;
            }
            footer.footer ul.footer-nav {
                font-size: 1.5rem;
                line-height: 1.2;
            }
            footer.footer .footer-address {
                font-size: 1.5rem;
            }
            footer.footer .footer-legal {
                font-size: 1rem;
            }
    }
    @media(min-width: 1600px) {
        footer.footer {
            position: sticky;
            bottom: 0;
            left: 0;
            /*z-index: 0;*/
        }
            footer.footer .lead {
                font-size: 2rem;
                line-height: 1.2;
            }
            footer.footer ul.footer-nav {
                font-size: 2rem;
                line-height: 1.2;
            }
            footer.footer .footer-address {
                font-size: 2rem;
            }
            footer.footer .footer-legal {
                font-size: 1.75rem;
            }
    }
    /*@media(min-width: 1650px) {
        footer.footer {
            position: sticky;
            bottom: 0;
            left: 0;
            z-index: 0;
        }
            footer.footer .lead {
                font-size: 3rem;
                line-height: 1.2;
            }
            footer.footer ul.footer-nav {
                font-size: 3rem;
                line-height: 1.2;
            }
            footer.footer .footer-address {
                font-size: 3rem;
            }
            footer.footer .footer-legal {
                font-size: 2.0625rem;
            }
    }*/

/* CONTENT ANIMATIONS ****************************************/

.fadeIn * {
    opacity: 0;
    transition: opacity .75s ease-in-out .5s;
}
    .fadeIn.show * {
        opacity: 1;
    }
.border-x-animate:before {
    content: '';
    background-color: #000;
    height: 1px;
    width: 0%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: width .75s ease-in-out;
    z-index: 1;
}
    .border-x-animate.show:before {
        width: 100%;
    }
.border-x-animate-bottom:after {
    content: '';
    background-color: #000;
    height: 1px;
    width: 0%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width .75s ease-in-out;
    z-index: 1;
}
    .border-x-animate-bottom.show:after {
        width: 100%;
    }
.border-x-animate-bottom-before:before {
    content: '';
    background-color: #000;
    height: 1px;
    width: 0%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width .75s ease-in-out;
    z-index: 1;
}
    .border-x-animate-bottom-before.show:before {
        width: 100%;
    }
.border-y-animate:after {
    content: '';
    background-color: #000;
    height: 0%;
    width: 1px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    transition: height .75s ease-in-out;
    z-index: 1;
}
    .border-y-animate.show:after {
        height: 100%;
    }

.border-y-animate-left:before {
    content: '';
    background-color: #000;
    height: 0%;
    width: 1px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: height .75s ease-in-out;
    z-index: 1;
}
    .border-y-animate-left.show:before {
        height: 100%;
    }

.border-y-hide-left:before, .border-y-hide:after {
    visibility: hidden;
}
.border-x-hide:after {
    visibility: hidden;
}
@media(min-width: 768px) {
    .border-md-y-show-left:before, .border-md-y-show:after {
        visibility: visible;
    }
    .border-md-x-show:before {
        visibility: visible;
    }
    .border-md-x-hide:before {
        visibility: hidden;
    }
    .border-md-y-hide-left:before, .border-md-y-hide:after {
        visibility: hidden;
    }
}
@media(min-width: 992px) {
    .border-x-animate:before {
        height: 2px;
    }
    .border-x-animate-bottom:after {
        height: 2px;
    }
    .border-x-animate-bottom-before:before {
        height: 2px;
    }
    .border-y-animate:after {
        width: 2px;
    }
    .border-y-animate-left:before {
        width: 2px;
    }
    .border-lg-y-show-left:before, .border-lg-y-show:after {
        visibility: visible;
    }
    .border-lg-x-show:before {
        visibility: visible;
    }
    .border-lg-x-hide:before {
        visibility: hidden;
    }
    .border-lg-y-hide-left:before, .border-lg-y-hide:after {
        visibility: hidden;
    }
}

.row:not(.collection) > .border-y-animate:last-child:after {
    display: none;
}
    @media(max-width: 991px) {
        .row > .border-y-animate.border-y-animate-mobile-show:last-child:after {
            display: block;
        }
    }



@media(min-width: 992px) {
    .carousel.carousel-lg-none .carousel-cell:last-child .border-y-animate:after {
        display: none;
    }
}

#logoNav {
    opacity: 0;
    transition: opacity .75s ease-in-out;
}
    #logoNav.show {
        opacity: 1;
    }

.logo-move-up {
    overflow: hidden;
}
img#logoHome {
    transform: translateY(0) scale(1);
    transition: all .65s ease-in-out;
    transform-origin-x: left;
}
    img#logoHome.show {
        opacity: 0;
        transform: translateY(-100%) scale(.5);
    }

/*CAROUSEL***************************************/

.carousel {
    margin: 0 0 23px 0;
    position: relative;
}
    .flickity-enabled:focus{
        outline: 0;
        box-shadow: 0 0 0 .2rem rgba(0,0,0,.25);
    }
    .carousel.border-y-animate-left:before {
        left: -2px;
    }
    @media(min-width: 992px) {
        .carousel {
            margin: 0 52px;
        }
        .carousel.carousel-lg-none {
            margin: 0;
        }
    }

.carousel:after {
    content: 'flickity';
    display: none; /* hide :after */
    }





 /*FLICKITY OVERRIDES ***************************************/


.carousel .flickity-viewport {
    position: relative;
    height: auto;
    display: flex;
    background: var(--pink-hex);
  }
.carousel:not(.carousel-nav) .flickity-slider {
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}
.carousel:not(.carousel-nav) .carousel-cell {
    width: 80%;
    display: flex;
    flex-direction: column;

    background: #fff;
}
    .carousel.resized:not(.carousel-nav) .carousel-cell {
        min-height: 100%;
    }
    @media(min-width: 992px) {
        .carousel:not(.carousel-nav) .carousel-cell {
            width: 33.333333%;
        }
    }
    @media screen and ( min-width: 992px ) {
        /* disable Flickity for large devices */
        .carousel.carousel-lg-none:after {
            content: '';
        }
        .carousel.carousel-lg-none {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }
            .carousel.carousel-lg-none .carousel-cell {
                position: relative;
                -ms-flex: 0 0 33.333333%;
                flex: 0 0 33.333333%;
                max-width: 33.333333%;
            }
            .carousel.carousel-lg-none.carousel-50 .carousel-cell {
                position: relative;
                -ms-flex: 0 0 50%;
                flex: 0 0 50%;
                max-width: 50%;
            }
                .carousel.carousel-lg-none.resized .carousel-cell {
                    min-height: auto;
                }
            .carousel.carousel-lg-none .carousel-cell .flex-column {
                height: unset;
            }
    }



.carousel:not(.carousel-nav) .flickity-button {
    background-color: transparent;
    display: none;
}
.carousel:not(.carousel-nav) .flickity-button:hover {
        background-color: transparent;
    }
    @media(min-width: 992px) {
        .carousel:not(.carousel-nav) .flickity-button {
            display: block;
        }
    }

.flickity-page-dots {
    z-index: 2;
    background-color: var(--dark-green-hex);
    padding: 1rem;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
    .bg-blue .flickity-page-dots {
        background-color: var(--blue-hex);
    }
    .bg-green .flickity-page-dots {
        background-color: var(--green-hex);
    }
    .bg-purple .flickity-page-dots {
        background-color: var(--purple-hex);
    }
    .flickity-page-dots .dot {
        border: 1px solid #000;
        opacity: 1;
        background-color: transparent;
        width: 12px;
        height: 12px;
    }
        .flickity-page-dots .dot.is-selected {
            background-color: #000;
        }
    @media(min-width: 992px) {
        .flickity-page-dots {
            display: none;
        }
    }

.carousel .flickity-prev-next-button svg {
    display: none;
}
.carousel .flickity-prev-next-button.previous {
    left: -50px;
}
    .carousel .flickity-prev-next-button.previous:before {
        content: '';
        width: 33px;
        height: 17px;
        display: block;
        background-image: url(../img/ico-prev.svg);
        background-repeat: no-repeat;
        position: absolute;
        left: 6px;
        top: 5px;
    }
.carousel .flickity-prev-next-button.next {
    right: -50px;
}
    .carousel .flickity-prev-next-button.next:before {
        content: '';
        width: 33px;
        height: 17px;
        display: block;
        background-image: url(../img/ico-next.svg);
        background-repeat: no-repeat;
        position: absolute;
        left: 6px;
        top: 5px;
    }

.carousel-cell .flex-column {
    height: 100%;
    flex: 1 1 auto;
}

/*CAROUSEL NAVIGATION ************/

#navSecondary {
    border-top: 1px solid #000;
}

.carousel.carousel-nav {
    margin: 0 52px;
}
    @media(min-width: 992px) {
        .carousel.carousel-nav {
            margin: 0 1.5rem;
        }
        #navSecondary {
            border-top: 2px solid #000;
        }
    }
.carousel.carousel-nav .flickity-viewport {
    background: transparent;
    padding: 0 1.40625rem;
}

    .carousel.carousel-nav .carousel-cell {
        margin-right: .5rem;
    }
    .carousel.carousel-nav .list-group-item.btn {
        margin-right: .5rem;
        font-size: 1.125rem;
        padding: .375rem 2rem;
        white-space: nowrap;
        border-radius: var(--btn-border-radius) !important;
    }
        .carousel.carousel-nav .carousel-cell:last-child .list-group-item.btn {

        }
        @media(min-width: 992px) {
            .carousel.carousel-nav .flickity-viewport {
                padding: 0;
            }
            .carousel.carousel-nav .flickity-slider {
                position: relative;
            }
            .carousel.carousel-nav .carousel-cell {
                margin-right: 1.25rem;
            }
            .carousel.carousel-nav .list-group-item.btn {
                font-size: 1.25rem;
                padding: .375rem 3rem;
                margin-right: 1.25rem;
            }
        }
        @media(min-width: 1600px) {
            .carousel.carousel-nav .list-group-item.btn {
                margin-right: 2.8125rem;
                font-size: 1.5rem;
            }
        }
    .carousel.carousel-nav .flickity-page-dots {
        display: none;
    }
    .carousel.carousel-nav .flickity-button {
        background-color: transparent;
        border: 1px solid #000;
        width: 30px;
        height: 30px;
    }
        @media(min-width: 992px) {
            .carousel.carousel-nav .flickity-button {
                display: none;
            }
        }
    .carousel.carousel-nav .flickity-prev-next-button.previous {
        left: -35px;
    }
        .carousel.carousel-nav .flickity-prev-next-button.previous:before {
            width: 18px;
            height: 18px;
            background-position: center center;
            background-size: contain;
        }
    .carousel.carousel-nav .flickity-prev-next-button.next {
        right: -35px;
    }
        .carousel.carousel-nav .flickity-prev-next-button.next:before {
            width: 18px;
            height: 18px;
            background-position: center center;
            background-size: contain;
        }

/*MOBILE NAVIGATION **********************/



#modalMainNav .modal-body {
    padding: 0;
}

#modalMainNav form.search-mobile {
    margin-bottom: 0;
}
#modalMainNav form.search-mobile .form-control[type="search"] {
        font-family: var(--type-mono);
        font-size: 1rem;
        background: var(--light-red-hex-orig) !important;
        color: #000;
        border: 1px solid #000 !important;
        border-top: none !important;
        border-left: none !important;
        border-right: none !important;
        border-radius: 0;
        padding: 1rem 0 1rem 1rem !important;
        height: 64px;
        text-align: center !important;
        text-transform: none !important;
    }
    #modalMainNav form.search-mobile button[type="submit"] {
        background: var(--light-red-hex-orig);
        color: #000;
        border-radius: 0;
        border: 1px solid #000;
        border-top: none !important;
        border-left: none !important;
        border-right: none !important;
        overflow: hidden;
        text-indent: -999px;
        background-image: url('../img/ico-search.svg');
        background-repeat: no-repeat;
        background-position: center center;
        width: 51px;
    }
        #modalMainNav form.search-mobile button[type="submit"]:hover {
            border: 1px solid #fff;
            background-color: #fff;
            filter: invert(100%) brightness(100%);
        }

ul.navigation-mobile {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}
    ul.navigation-mobile ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: block;
    }

    ul.navigation-mobile .nav-purple {
        background-color: var(--purple-hex);
    }
    ul.navigation-mobile .nav-blue {
        background-color: var(--blue-hex);
    }
    ul.navigation-mobile .nav-green {
        background-color: var(--green-hex);
    }
    ul.navigation-mobile .nav-dark-green {
        background-color: var(--dark-green-hex);
    }

    ul.navigation-mobile > li {
        border-bottom: 1px solid #000;
    }
    ul.navigation-mobile a {
        display: block;
    }
        ul.navigation-mobile a:hover {
            text-decoration: none;
        }
    ul.navigation-mobile > li > a {
        padding: 1rem 1rem;
        line-height: 1;
        display: block;
        font-size: 2rem;
        font-family: var(--type-heading);
        font-weight: 700;
        letter-spacing: 0.133ch;
        text-transform: uppercase;
        position: relative;
        background-color: #fff;
        color: #000;
    }

        ul.navigation-mobile > li > a:after {
            content: '';
            background-image: url(../img/ico-next.svg);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: contain;
            width: 20px;
            height: 20px;
            display: inline-block;
            position: absolute;
            right: 1rem;
            margin-top: -10px;
            top: 50%;
            transition: transform .3s ease;
        }
            ul.navigation-mobile > li > a[data-toggle="collapse"][aria-expanded="true"]:after {
                transform: rotateZ(-90deg);
                transform-origin: center center;
            }
        ul.navigation-mobile .nav-purple > a[aria-expanded="false"] {
            color: var(--purple-hex);
        }
            ul.navigation-mobile .nav-purple > a[aria-expanded="true"], ul.navigation-mobile .nav-purple > a:hover {
                color: #fff;
                background-color: var(--purple-hex);
            }
        ul.navigation-mobile .nav-blue > a[aria-expanded="false"] {
            color: var(--blue-hex);
        }
            ul.navigation-mobile .nav-blue > a[aria-expanded="true"], ul.navigation-mobile .nav-blue > a:hover {
                color: #fff;
                background-color: var(--blue-hex);
            }
        ul.navigation-mobile .nav-green > a[aria-expanded="false"] {
            color: var(--green-hex);
        }
            ul.navigation-mobile .nav-green > a[aria-expanded="true"], ul.navigation-mobile .nav-green > a:hover {
                color: #fff;
                background-color: var(--green-hex);
            }
        ul.navigation-mobile .nav-dark-green > a[aria-expanded="false"] {
            color: var(--dark-green-hex);
        }
            ul.navigation-mobile .nav-dark-green > a[aria-expanded="true"], ul.navigation-mobile .nav-dark-green > a:hover {
                color: #fff;
                background-color: var(--dark-green-hex);
            }

            ul.navigation-mobile > li li {

            }
            ul.navigation-mobile > li li a {
                color: #000;
                margin: 0 1rem;
                padding: 1rem;
                font-size: .875rem;
                font-family: var(--type-mono);

                border-bottom: 1px solid #000;
            }
                ul.navigation-mobile > li li:last-child a {
                    border-bottom: none;
                    margin-bottom: 3.75rem;
                }
                ul.navigation-mobile > li li a:hover {
                    color: #fff;
                }
                ul.navigation-mobile > li li a.active {
                    color: #000;
                    background-color: #fff;
                    border-radius: 40px;
                    border-bottom-color: transparent;
                }





/* PAGINATION *****************************/

.pagination {
    margin-bottom: 0;
}
.page-link {
    color: #000;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border: none;
    padding: .25rem .5rem;
        margin: .25rem;
}
    .page-link:hover {
        color: #fff;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
    }
    .page-item.active .page-link {
        z-index: 3;
        color: #fff;
        background-color: #000;
        border-color: transparent;
        border-radius: 25px;

    }
    .page-item.disabled .page-link {
        color: #000;
        background-color: transparent;
        border-color: transparent;
        opacity: .5;
    }
    .page-link.next, .page-link.prev {
        color: #000;
        border: 1px solid #000;
        border-radius: var(--btn-border-radius) !important;
        background-color: var(--pink-hex);
        padding: .375rem 2rem;
        margin: 0;
    }
    .page-link.next:hover, .page-link.prev:hover {
        background-color: #fff;
    }
    .page-item.disabled .page-link.next, .page-item.disabled .page-link.prev {
        background-color: var(--pink-hex);
        border: 1px solid #000;
    }


/* Heading CMS Custom Select *****************************/

.formula-light {
    font-family: var(--type-heading)!important;
    font-weight: 300;
}

.formula-bold {
    font-family: var(--type-heading)!important;
    font-weight: 700;
}

.post-grotesk {
    font-family: var(--type-body)!important;
}

.heading-small {
    font-size: 1.375rem!important;
}

.heading-medium {
    font-size: 2.9375rem!important;
}

.heading-large {
    font-size: 4.1875rem!important;
}

@media(min-width: 1600px) {

    .heading-small {
        font-size: 3rem!important;
    }

    .heading-medium {
        font-size: 8.9375rem!important;
    }

    .heading-large {
        font-size: 7.5rem!important;
    }

}

/* COLLECTION **********************************/

.row.collection {
    margin-bottom: -2px;
}
.row.collection > .col-lg-4.border-y-animate:nth-child(3n+3):after {
    display: none;
}
@media(max-width: 767px) {
    .row.collection .col-lg-4.border-x-animate-bottom-before.show:last-child:before {
        display: none;
    }
}
.row.collection-pagination {

    position: relative;
    z-index: 2;
}

@media(max-width: 767px) {
    .cta-75_25 ~ .image-75_25 {
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    }
}
