/* =============================================================================================
	BASE STYLES AND LAYOUT
============================================================================================= */


/* ------------------------------------------------------------------------ CSS Variables */

:root {
    --yellow: #FCC81B;
    --yellow-dark: #F1B901;
    --grey-dark: #666666;
    --grey-medium: #BBBBBB;
    --grey: #444444;
    --grey-light: #EEEEEE;
    --black-medium: #222;
    --black: #111111;
    --white: #fff;
    --orange: #EE4418;
}
.anchor { display: block; height: 150px; margin-top: -150px; visibility: hidden;}
/* ------------------------------------------------------------------------ Page Styles & Resets */

html {
    position: relative; /*for sticky footer*/
    min-height: 100%;
}

body {
    font: normal 100%/1.6 'Rubik', Arial, Helvetica, sans-serif;
    color: var(--black-medium);
    background-color: var(--black-white);
}

.preload * { /* Transitions fire only after page load http://css-tricks.com/transitions-only-after-page-load/ */
    -webkit-transition: none !important;
    transition: none !important;
}

@media (min-width: 992px) {

    /*offset sticky footer*/
    .body--sticky-footer {
        padding-bottom: 188px; /*This will change depending on the height of the footer*/
    }

    /*if the header is fixed, add this class to the body*/
    .body--fixed-header {
        padding-top: 74px; /*This will change depending on the height of the header*/
    }
}


/* ------------------------------------------------------------------------ Keyboard Accessibility */

.skip-link {
    position: absolute;
    left: -10000px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background-color: #666;
    color: #fff;
    font-size: 0.875rem;
    text-decoration: none;
    z-index: 1100;
    padding: 0.5rem 0.625rem;
}

    .skip-link:focus, .skip-link.sr-only-focusable:active, .skip-link.sr-only-focusable:focus {
        position: absolute;
        outline: none;
        left: 0;
        outline: none;
        width: auto;
        height: auto;
    }

    .skip-link:hover {
        color: #fff;
        background-color: #777;
    }

a:focus, .carousel-control-next:focus, .carousel-control-prev:focus, .btn:focus, .carousel__link:focus .carousel__btn, .form-control-file:focus {
    outline: solid thin rgba(0, 0, 0, 0.5);
    box-shadow: none;
}

.sidenav__header-link:focus, .card__header-link:focus {
    outline: solid thin rgba(255, 255, 255, 0.5);
}

a:hover, a:active {
    outline: none !important;
}

.yellow, .intro-text--white a.yellow {
    color: var(--yellow);
}
/*...not with mouse (kinda) */


/* ------------------------------------------------------------------------ Headers */

h1, h2, h3,
.h1, .h2, .h3 {
    font-weight: 700;
    line-height: 1.4;
}

h1, .h1 {
    font-size: 2.25rem;
    text-transform: uppercase;
    color: var(--yellow);
    line-height: 1;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    margin: 0 auto;
}
.h1--sm {
    font-size: 2.375rem;
    padding-bottom:2rem;
}
.jumbotron--inside h1 {
    color:var(--white);
}

h2, .h2 {
    font-size: 1.625rem;
    text-transform: uppercase;
}

.h2--lower {
    text-transform: none;
    color: var(--grey-light);
    font-weight: 500;
}

.h2--large_top, .h2--medium_top {
    font-weight: 400;
    display: block;
    letter-spacing: 0;
    font-size: 26px;
    margin-bottom: 0;
    color: var(--yellow);
}
.h2--medium_top {
    margin-bottom:0rem;
}
    .h2--large_bottom, .h2--medium_bottom {
        font-size: 26px;
        display: block;
        text-transform: capitalize;
        font-weight: 400;
        color: var(--grey-medium);
        letter-spacing:0;
    }
.h2--lg {
    font-size: 2.250rem;
    letter-spacing: -1px;
    line-height: 1em;
    text-transform: uppercase;
    margin-bottom: 0;
}

h3, .h3 {
    font-size: 1.375rem;
    text-transform: uppercase;
}
.h2--md {
    font-size: 2.25rem;
    letter-spacing: -2px;
    line-height: 2rem;
    margin-bottom: 2rem;
}
.h2--sm {
    color: var(--yellow);
}

.h2--yellow {
    color: var(--yellow);
    text-transform: unset;
    font-size: 2.25rem;
    margin-bottom: 0;
}
.h2--yellowlarge {
    color: var(--yellow);
    text-transform: unset;
    font-size:3.0rem;
    margin-bottom: 0;
}
.icon-number {
    font-size: 2.25rem;
    background: var(--yellow);
    color: var(--white);
    border-radius: 100%;
    padding: 0.5rem 1.3rem;
    bottom: 0.5rem;
    position: relative;
}
  .h2--medium--inside {
        letter-spacing: 0;
    line-height: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    }
@media (min-width: 480px) {
    .h2--large_top {
        font-size: 26px;
    }

    h3, .h3 {
        font-size: 1.625rem;
    }
}

@media (min-width: 576px) {
    h1, .h1 {
        font-size: 2.5rem;
        letter-spacing: 0;
    }
}

@media (min-width: 768px) {
    h1, .h1 {
        font-size: 4.5rem;
        letter-spacing:-2px;
    }

    h2, .h2 {
        font-size: 1.625rem;
        text-transform: uppercase;
        letter-spacing: 0;
    }
    .h2--md {
        font-size: 3.75rem;
        letter-spacing: -2px;
        line-height: 2.5rem;
        margin-bottom: 2rem;
    }

    .h2--lg {
        font-size: 3.75rem;
        letter-spacing: -1px;
        line-height: 0.8em;
    }
    .h2--large_top, .h2--large_bottom {
        font-size: 26px;
        margin-bottom: 0;
    }
      .h2--medium--inside {
         letter-spacing: 0;
         line-height: 2rem;
        margin-bottom: 1rem;
    }

}

@media (min-width: 992px) {
    .h1--sm {
        font-size: 3rem;
    }
    h2, .h2 {
        font-size: 2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    h1, .h1 {
        font-size: 6.75rem;
        letter-spacing: -2px;
    }

    .h2--lg {
        font-size: 5.25rem;
        letter-spacing: -1px;
        line-height: 0.6em;
    }

    .h2--large_top, .h2--large_bottom {
        font-size: 32px;
    }
  
    .h2--yellow {
        font-size: 3.0rem;
        margin-bottom: 0;
    }

}

@media (min-width: 1200px) {
     .h1--sm {
        font-size: 5rem;
    }
    h2, .h2 {
        font-size: 2em;
    }

    h3, .h3 {
        font-size: 2.000rem;
        text-transform: uppercase;
    }

    .h2--md {
        font-size: 3.75rem;
        line-height: 3rem;
        margin-bottom: 3rem;
    }
      .h2--medium--inside {
            letter-spacing: 0;
            line-height: 2rem;
             margin-bottom: 1.5rem;
    }
 
}

@media (min-width: 1440px) {
    h1, .h1 {
        font-size: 7.5rem;
        letter-spacing: -2px;
    }

    h2, .h2 {
        font-size: 3rem;
    }

    .h2--large_top, .h2--large_bottom {
        font-size: 36px;
    }
    .h2--large_bottom {
        margin-top: 0.5rem;
    }
    .h2--yellow, .h2--yellowlarge {
        font-size: 3.75rem;
    }

    .h2--lg {
        font-size: 6.75rem;
        letter-spacing: -1px;
        line-height: 0.6em;
    }

    h3 {
        font-size: 2.75rem;
        text-transform: uppercase;
        letter-spacing: -1px
    }
    .h2--medium_top, .h2--medium_bottom {
        font-size: 32px;
    }
    .h2--md {
        font-size: 5.25rem;
        letter-spacing: -1px;
        line-height: 4rem;
        margin-bottom: 3rem;
    }
      .h2--medium--inside {
        letter-spacing: 0;
        line-height: 2.5rem;
        margin-bottom: 2rem;
    }

}

@media (min-width: 1680px) {
    .h2--large_bottom{
        font-size: 42px;
    }
        h1, .h1 {
        font-size: 9.75rem;
        letter-spacing: -2px;
    }

    .jumbotron--inside h1 {
        font-size: 7.5rem;
    }

    h2, .h2 {
        font-size: 3.75rem;
    }
    .h2--yellow, .h2--yellowlarge {
        font-size: 5.25rem;

    }
    .h2--large_top {
        font-size: 48px;
    }
    .h2--medium_top, .h2--medium_bottom {
        font-size: 36px;
        margin-bottom: 0;
    }
    .h2--lg {
        font-size: 9.75rem;
        letter-spacing: -1px;
        line-height: 6rem;
    }
    .h2--md {
        font-size: 6.750rem;
        letter-spacing: -1px;
        line-height: 4rem;
        margin-bottom: 3rem;
    }
    .h2--medium--inside {
        letter-spacing: 0;
        line-height: 3rem;
        margin-bottom: 2rem;
    }
    h3 {
        font-size: 3.25rem;
        letter-spacing: -1px
    }
    .h2--sm, .h2--md--black {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
  }

/* ------------------------------------------------------------------------ Lists */

ul, .list {
    list-style: none;
    list-style-position: outside;
    padding-left: 0;
}

    ul li, .list__item {
        padding: 0 0 1.25rem 1rem;
        background: url(../../images/arrow-right-gray.svg) no-repeat left 0.625rem;
        background-size: 0.625rem 0.625rem;
    }
    ul[style="list-style-type: circle;"],ul[style="list-style-type: disc;"], ul[style="list-style-type: square;"] li {
            padding-left: 1.2rem;
    }

    ul[style="list-style-type: circle;"] li,   ul[style="list-style-type: disc;"] li,   ul[style="list-style-type: square;"] li {
        background:none;
            padding: 0 0 1.25rem 0;
    }

    ul ul, .list__sub-list {
        margin-top: 0.25rem;
    }
    ul ul li {
      padding: 0 0 0.5rem 1rem;  
    }


    ul ol {
        padding-left: 1.375rem;
        margin-top: 0.25rem;
    }

        ul ol li {
            background-image: none;
            padding-left: 0;
        }

ol {
    padding-left: 1rem;
}

    ol li {
        padding-bottom: 0.25rem;
    }

    ol ol {
        padding-left: 2.25rem;
        margin-top: 0.25rem;
    }

    ol ul {
        margin-top: 0.25rem;
    }

li:last-child {
    padding-bottom: 0;
}


/* ------------------------------------------------------------------------ Other Base Text Styles */
    p {
    font-size: 1.00em;
}

.color-inherit {
    color: inherit;
}

.text-muted {
    color: #888 !important;
}

.intro-text, .card__title {
    font-size: 1.25rem;
}

.note {
    font-size: .875rem;
}

sup, sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

.intro-text, .jumbotron__caption--blue p.callout__heading__lg, .card__title, .h2--sm--black {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.no-wrap {
    white-space: nowrap;
}
 
 
.h2--sm--black {
letter-spacing:0;
}
.callout__heading__lg {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.25rem;
}

    @media (min-width: 768px) {
        .intro-text--large {
            font-size: 1.5rem;
            margin-top: 1rem;
        }
    }

    @media (min-width: 992px) {
        .aside {
            padding-left: 1rem
        }

        .intro-text--large {
            font-size: 1.5rem;
        }

        .main--full-width {
            width: 100%;
            padding-left: 0;
        }

        main p,
        main li,
        label,
        table {
            font-size: 1rem;
        }
    }

    @media (min-width: 1440px) {
        .intro-text, .jumbotron__caption--blue p.callout__heading__lg, .card__title, .callout__heading__lg, .h2--sm--black {
            font-size: 1.375rem;
            margin-bottom: 3rem;
        }

        label, main li {
            font-size: 1.125rem;
        }

        .intro-text--large {
            font-size: 1.875rem;
        }

        main p, table {
            font-size: 1.125rem;
            margin-bottom: 2rem;
        }
    }

@media (min-width: 1680px) {

    .intro-text, .card__title, .callout__heading__lg, .h2--sm--black {
        font-size: 1.625rem;

    }

        .intro-text--small {
            font-size: 1.5rem;
        }

        .intro-text--large {
            font-size: 2.25rem;
        }

        main p, main li, label, table {
            font-size: 1.25rem;
        }
    }
    /* ------------------------------------------------------------------------ Links */
    a {
        color: var(--yellow-dark);
        transition: all 0.25s;
    }

        a:hover {
            text-decoration: underline;
            color: var(--yellow-dark);
        }

    main a {
        word-wrap: break-word;
    }

    a img {
        border: none;
        -webkit-backface-visibility: hidden;
        -webkit-transform: translateZ(0) scale(1.0, 1.0);
        transition: opacity 0.25s;
    }

        a img:hover {
            opacity: .9;
        }

    .btn {
        padding: .5rem 2rem;
        border-radius: 0;
        text-transform: uppercase;
        cursor: pointer;
    }

    .btn-group-lg > .btn, .btn-lg {
        font-size: 1.125rem;
    }

    .btn-primary {
        background-color: #666;
        border-color: #666;
    }

        .btn-primary:hover,
        .btn-primary:active,
        .btn-primary:not([disabled]):not(.disabled).active, .btn-primary:not([disabled]):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
            background-color: #777;
            border-color: #777;
            box-shadow: none;
        }

    .btn--rounded {
        border-radius: 100rem;
    }

    .btn--outline {
        background-color: transparent;
        border: 2px solid #666;
    }

        .btn--outline:hover,
        .btn--outline:active,
        .btn--outline:not([disabled]):not(.disabled).active, .btn--outline:not([disabled]):not(.disabled):active, .show > .btn--outline.dropdown-toggle {
            background-color: transparent;
            border-color: #777;
            box-shadow: none;
        }

   
.btn--white {
    background: var(--white);
    border-radius: 38px;
    color: var(--yellow);
    font-weight: 500;
    font-size: 1rem;
    padding: .7rem 1rem .5rem;
}

        .btn--white:hover {
            color: var(--white);
            background: var(--yellow);
        }

    .btn--yellow {
        background: var(--yellow);
        border-radius: 38px;
        color: var(--white);
        font-weight: 500;
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }
     .btn--orange {
             background:#ff3400;
             border-radius: 38px;
        color: var(--white);
        font-weight: 500;
        font-size: 1rem;
        padding: 0.75rem 2rem;
     }
 
   .btn--orange:hover{
            color:#ff3400;
            background: var(--white);
            border: 1px solid #ff3400;
                      animation:unset;
        }
        .btn--yellow:not([disabled]):hover {
            color: var(--yellow);
            background: var(--white);
            border: 1px solid var(--yellow);
        }
        .btn--yellow:disabled:hover {
            background: var(--yellow);
            color: var(--white);
            cursor: not-allowed;
            opacity: .35;
        }
        .btn--sm {
            font-size: 1rem !important;
        }

    @media (min-width: 1200px) {
        .to__top {
            bottom: 3rem;
            right: 3rem;
        }
    }

    @media (min-width: 1440px) {
        .btn--orange {
            font-size: 1.25rem;
            padding: 0.8rem 2.8rem;
        }

        .btn--white, .btn--yellow {
            font-size: 1.25rem;
            padding: 0.8rem 1.5rem;
        }
    }

    @media (min-width: 1680px) {
        .btn--white, .btn--yellow {
            font-size: 1.5rem;
            padding: 1rem 2rem;
        }

        .btn--orange {
            font-size: 1.5rem;
            padding: 1rem 5.5rem;
        }
    }

    .to__top {
        position: fixed;
        bottom: 2rem;
        opacity: 0;
        right: 1rem;
        text-align: center;
        width: 2.25rem;
        height: 2.25rem;
        cursor: pointer;
        border-radius: 100%;
        font-size: 20px;
        background-image: url(../../images/icon-top.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 10;
        visibility: hidden;
        transition: transform .25s ease-in-out, opacity .25s ease-in-out, visibility .25s;
    }
   
        .to__top.show {
            opacity: 1;
            visibility: visible;
        }

        .to__top:hover {
            transform: translateY(-8px);
        }



    /* ------------------------------------------------------------------------ Images */
img {
    max-width: 100%;
    height: auto !important;
    /*width: 100%;*/
}

    .img--float-left, .img--float-right {
        margin: .5rem 0 1rem 0;
    }

    @media (max-width:991px) {
        .logo__img--second {
            max-width: 16rem;
            margin-bottom: 2rem;
        }
    }

    @media (min-width: 576px) {
        .img--float-left {
            float: left;
            margin: .5rem 1.5rem .375rem 0;
            max-width: 50%;
        }

        .img--float-right {
            float: right;
            margin: .5rem 0 .375rem 1.5rem;
            max-width: 50%;
        }
    }

    @media (min-width: 768px) {
        .img--float-left,
        .img--float-right {
            max-width: 100%;
        }
    }


    /* ------------------------------------------------------------------------ SVG's */

    svg {
        width: 1rem;
        height: 1rem;
    }


    /* ------------------------------------------------------------------------ Horizontal Rules */

    hr, .hr {
        margin: 1.5rem auto;
    }

    @media (min-width: 768px) {

        hr, .hr {
            margin: 2rem auto;
        }
    }



    /* =============================================================================================
	HEADER
============================================================================================= */
    .print-header {
        display: none;
    }

    .logo {
        flex: 1;
        display: block;
    }

    .logo__img {
        max-width: 4.8rem;
        width: 100%;
    }

    .header {
        border-bottom: 1px solid #ddd;
    }

    .header--fixed-top {
        transition: background-color .5s;
        padding: 0.5em 0;
    }

    .logo__white {
        display: none;
    }

    .header__content {
        margin-top: 0.75rem;
    }

    @media (min-width: 768px) {
        .logo__error-page {
            margin: 1.5rem auto 2.5rem auto;
            float: none;
        }
    }

     .header--fixed-top {
            top: 0;
            right: 0;
            left: 0;
            z-index: 1040;
            padding: 0.5rem 0;
            min-height: 10px;
        }
        .header--dark-transparent-lg.header--scroll {
          width: 100%;
            background-color:#ffffffe8;
               border-bottom: 1px solid #cccc;
             position: fixed;
        }
     
        .header--scroll img {display:none;}
       /*  .header--scroll .navbar-toggler-icon {
             filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(354deg) brightness(111%) contrast(101%);
                top: -13px;
                position: relative;
         }*/
    @media (min-width: 992px) {
          .header--fixed-top {
              position:fixed;
          }
        .logo__img {
            max-width: rem
        }
        header .logo__dark, .header--scroll .logo__white {
            display: none;
        }
        .header--scroll .logo__dark, .logo__white {
            display: block;
        }
        .header--scroll .logo__img {
            max-width: 7rem;
        }

        .header__content {
            margin-top: 0;
            margin-left: 1.5em;
        }

       
        .header--dark {
            border-bottom: none;
            background-color: #222;
        }

        .header--dark-transparent-lg {
            background-color: transparent;
        }

            .header--dark-transparent-lg.header--scroll {
                background-color: var(--white);
                -webkit-box-shadow: 0px 8px 14px -9px rgba(0,0,0,0.75);
                -moz-box-shadow: 0px 8px 14px -9px rgba(0,0,0,0.75);
                box-shadow: 0px 8px 14px -9px rgba(0,0,0,0.75);
                padding: 1rem 0;
                height:auto;
            }
    }

    @media (min-width: 1200px) {
        .header__content {
            margin-left: 2em;
        }
         .logo__img {
            max-width: 11.875rem
        }
    }

    /* ------------------------------------------------------------------------ TopLinks */

    .top-links {
        padding-bottom: 0.5rem;
    }

    .top-links__link {
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 400;
        padding: 0 0.5rem;
        color: #444;
    }

        .top-links__link:hover {
            text-decoration: underline;
            color: #777;
        }

    @media (min-width: 768px) {

        .top-links__link {
            font-size: 0.9375rem;
        }
    }

    @media (min-width: 992px) {

        .top-links {
            padding: 0;
        }

        .top-links__link:last-child {
            padding-right: 0;
        }
    }


    /* ------------------------------------------------------------------------ Seach Area */

    .search-form__input {
        border-radius: 0;
        border-right: 0;
    }

    .search-form__btn {
        position: relative;
        width: 3rem;
        padding: .5rem .75rem;
        border-radius: 0;
    }

        .search-form__btn:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            background: url(../../images/search-icon.svg) no-repeat center;
            background-size: 1.25rem auto;
            width: 100%;
            height: 100%;
        }


    /* ------------------------------------------------------------------------ Navbar Nav */
    .navbar-nav .nav-link {
        border-bottom: 1px solid var(--grey-light);
        color: var(--black-medium);
        padding: .625rem 0;
        font-size: 1rem;
        font-weight: 500;
    }

    .navbar-nav li:nth-last-child(2) .nav-link {
        color: var(--yellow);
        text-transform: uppercase;
        font-weight: 600;
    }

    .dropdown-menu {
        border: 0;
        padding-left: 1rem;
    }

    .navbar-nav.sm-collapsible .sub-arrow {
        border: 0;
    }

    .dropdown-item {
        color: var(--black-medium);
        padding: .625rem 0;
        font-size: 1rem;
    }

    .navbar-nav .nav-item, .dropdown-menu li {
        background-image: none;
        padding: 0;
    }

    .dropdown-item.active, .dropdown-item:active, .dropdown-item:hover,
    header .navbar-nav .nav-item.active .nav-link, header .navbar-nav .nav-item.active:hover .nav-link, header .navbar-nav .nav-link:hover {
        color: var(--yellow);
        text-decoration: none;
        background-color: transparent;
    }

    @media (min-width: 992px) {
        .navbar-nav {
            align-items: center!important;
        }
        .navbar-nav .nav-link {
            border-bottom: 1px solid #ddd;
            color: var(--white);
            padding: .625rem 0;
            font-weight: 400;
        }

        .header--dark-transparent-lg.header--scroll .navbar-nav .nav-link {
            color: var(--black-medium);
        }

        .navbar-nav .nav-item:nth-last-child(2) .nav-link {
            text-transform: uppercase;
            font-weight: bold;
            color: var(--yellow);
        }
        .navbar-nav li:last-child .nav-link ,  .navbar-nav li:last-child:hover .nav-link {
                color: transparent !important;
                background: url(/media/gi2lruef/logo-reverse.png);
                background-repeat: no-repeat;
                background-size: 100%;
                background-position: top center;
                height: 3rem;
                width: 5rem;
        }
        .header--dark-transparent-lg.header--scroll  .navbar-nav li:last-child .nav-link {
                background: url(/images/logo-cobt.png);
                background-repeat: no-repeat;
                background-size: 100%;
                background-position: top center;
                height: 3rem;
                width: 5rem;
        }
        header .navbar-nav .nav-item.active .nav-link,
        header .navbar-nav .nav-item.active:hover .nav-link, header .navbar-nav .nav-link:hover {
            color: var(--yellow);
        }

        .header--dark-transparent-lg.header--scroll .navbar-nav .nav-item:last-child .nav-link, .header--dark-transparent-lg.header--scroll .navbar-nav .nav-item.active .nav-link,
        .header--dark-transparent-lg.header--scroll .navbar-nav .nav-item.active:hover .nav-link, .header--dark-transparent-lg.header--scroll .navbar-nav .nav-link:hover {
            color: var(--yellow);
        }

        .navbar-nav .dropdown-menu {
            border: 0;
            padding-top: 0;
            background-color: #eee;
            border-radius: 0;
            margin: 0;
            padding: 0;
        }

            .navbar-nav .dropdown-menu li.active > .dropdown-item {
                color: #666;
                font-weight: 700;
            }

        .navbar-nav .dropdown-item {
            border-bottom: 1px solid #fff;
            padding: .625rem 1.5rem;
        }

        .navbar-nav li:last-child > .dropdown-item {
            border-bottom: none;
        }

        .navbar-nav li {
            padding: 0;
            background-image: none;
        }

        .navbar-nav .dropdown-item:hover, .navbar-nav .dropdown-item:active,
        .dropdown-item.active, .dropdown-item:active, .dropdown-item:hover {
            background-color: var(--yellow);
            color: var(--black-medium);
           /* background-image: url("../../images/more-arrow.svg");
            background-repeat: no-repeat;
            background-position: center right 5px;
            background-size: 8px 12px;*/
        }

        .navbar-nav .dropdown-item:focus {
            background-color: #eee;
        }

        .navbar-nav .dropdown-menu .dropdown-menu {
            background-color: #ddd;
        }

        .navbar-nav.sm-collapsible .dropdown-menu .dropdown-menu {
            margin: 0;
        }

        .navbar-nav .dropdown-item .dropdown-item {
            background-color: inherit;
        }

        .navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
            display: none;
            border: 0;
        }

        .navbar-nav.sm-collapsible .sub-arrow {
            border: none;
            width: 2rem;
            margin-right: 0;
        }

        .navbar-nav:not(.sm-collapsible) .dropdown-item .sub-arrow, .navbar-nav:not(.sm-collapsible):not([data-sm-skip]) .dropdown-menu .dropdown-toggle::after {
            border: none;
            width: .625rem;
            height: .625rem;
            background-image: url(../../images/arrow-right-gray.svg);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: .625rem .625rem;
        }

        .dropdown-toggle::after {
            display: none
        }

        .navbar-nav .nav-link {
            border-bottom: 0;
        }

        .navbar {
            margin-top: 0;
        }

        .navbar-nav .nav-item.active .nav-link {
            position: relative;
        }

        .navbar-nav .nav-item:last-child .nav-link {
            margin-right: 0;
        }

        .navbar-nav .dropdown-menu {
            padding: 0;
            min-width: 15rem !important;
        }
          .navbar-expand-lg .navbar-nav .nav-link {
            padding-right: .35rem;
            padding-left: .35rem;
        }
    }

    @media (min-width: 1200px) {
        .navbar-nav li:last-child .nav-link, .navbar-nav li:last-child:hover .nav-link {
               height: 5rem;
                width: 9rem;
        }
        .header--dark-transparent-lg.header--scroll  .navbar-nav li:last-child .nav-link {
                height: 3rem;
                width: 6rem;
        }
        .navbar-expand-lg .navbar-nav .nav-link {
             padding-right: .5rem;
            padding-left: .5rem;
        }
        .navbar-nav .nav-link {
            padding: .5rem 0 !important;
            margin-right: 1rem;
            font-size: 1rem;
            border-bottom: 0;
        }
    }


    @media (min-width: 1440px) {
        .navbar-nav .nav-link {
            padding: .5rem 0 !important;
            margin-right: 1.5rem;
            font-size: 1.125em;
            border-bottom: 0;
        }
    }

    @media (min-width: 1680px) {
        .navbar-nav .nav-link {
            padding: .5rem 0 !important;
            margin-right: 1.5rem;
            font-size: 1.375em;
            border-bottom: 0;
        }
    }

    /* ------------------------------------------------------------------------ Navbar Toggler */
    .navbar-toggler {
        padding: 0 0 0 1rem;
        border: none;
        cursor: pointer;
    }

    .navbar-toggler-icon {
        background-image: url(../../images/menu-icon.svg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url(../../images/menu-icon-open.svg);
    }

    @media (min-width: 992px) {

        .navbar-toggler {
            display: none;
        }
    }

    .navbar-toggler--dark .navbar-toggler-icon {
        background-image: url(../../images/menu-icon-reverse.svg);
    }

    .navbar-toggler--dark[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url(../../images/menu-icon-open-reverse.svg);
    }


    /* =============================================================================================
	MAIN CONTENT AREA
============================================================================================= */
    .mt-5, .my-5 {
        margin-top: 2rem !important;
    }

    .mb-5, .my-5 {
        margin-bottom: 2rem !important;
    }

    .pt-5, .py-5 {
        padding-top: 2rem !important;
    }

    .pb-5, .py-5 {
        padding-bottom: 2rem !important;
    }
    @media (min-width: 768px) {
        .mt-md-0, .my-md-0 {
            margin-top: 0!important;
        }
    }
     @media (min-width: 992px) {
         
         .mb-lg-0, .my-lg-0 {
            margin-bottom: 0 !important;
        }
        .mt-lg-0, .my-lg-0 {
    margin-top: 0!important;
}
     }

    @media (min-width: 1440px) {
        .container {
            max-width: 1360px;
        }
     
        .mb-5, .my-5 {
            margin-bottom: 3rem !important;
        }
       .mb-lg-0, .my-lg-0 {
                 margin-bottom: 0 !important;
            }

        .mt-5, .my-5 {
            margin-top: 3rem !important;
        }

        .pt-5, .py-5 {
            padding-top: 3rem !important;
        }

        .pb-5, .py-5 {
            padding-bottom: 3rem !important;
        }
    }

    @media (min-width: 1680px) {
        .container {
            max-width: 1640px;
        }

        .mt-5, .my-5 {
            margin-top: 5rem !important;
        }

        .mb-5, .my-5 {
            margin-bottom: 5rem !important;
        }
        
        .mb-lg-0, .my-lg-0 {
            margin-bottom: 0 !important;
        }

        .pt-5, .py-5 {
            padding-top: 5rem !important;
        }

        .pb-5, .py-5 {
            padding-bottom: 5rem !important;
        }
    }




    /* ------------------------------------------------------------------------ Sidenav */

    .sidenav {
        background-color: #eee;
    }

        .sidenav.sticky-top {
            top: 102px; /*This will change depending on the height of the header*/
        }

    .sidenav__header {
        padding: .75rem 1.25rem;
        background-color: #222;
    }

    .sidenav__header-link {
        color: #fff;
        display: block;
        transition: all 0.25s;
    }

        .sidenav__header-link:hover {
            color: #777;
            text-decoration: none;
        }

    .sidenav__list {
        list-style: none;
    }

    .sidenav__item {
        line-height: 1.4;
        padding: 0;
        border-top: 1px solid #fff;
        background-image: none;
    }

        .sidenav__item.active > .sidenav__link {
            color: #666;
            font-weight: 700;
        }

    .sidenav__link {
        display: block;
        font-size: 1rem;
        padding: .75rem 1.5rem;
        color: #444;
        font-weight: 400;
    }

        .sidenav__link:hover {
            background-color: rgba(0,0,0,.1);
            color: #444;
            text-decoration: none;
        }

    .sidenav__sub-list {
        background-color: #ddd;
        margin: 0;
    }

        .sidenav__sub-list .sidenav__item {
            background: url(../../images/arrow-right-gray.svg) no-repeat 2rem 1.125rem;
            background-size: 0.625rem 0.625rem;
        }

        .sidenav__sub-list .sidenav__link {
            padding-left: 3rem;
        }


    @media (max-width: 992px) {

        .sidenav.sticky-top {
            position: static; /*disable on smaller screens*/
        }
    }


    /* ------------------------------------------------------------------------ Sections */
    .section {
        padding: 4rem 0;
        position: relative;
    }

    .section--grey {
        background-color: var(--grey);
    }

    .section--darkgrey {
        background-color: var(--black-medium);
    }
    
    .section--lightgrey {
        background-color: var(--grey-light);
    }
    
    .section--medgrey {
        background: var(--grey-medium);
    }
    
    .section--angle:after {
        content: "";
        background-repeat: no-repeat;
        background-size: 1920px;
        background-position: right bottom;
        display: block;
        position: absolute;
        width: 100%;
        height: 4.375rem;
        margin-top: 0;
        z-index: 1;
        bottom:-4.3rem;
    }
    
    .section--hammer + .section:before {
        content: "";
        background: url(../../images/section-angle-ffffff-top.svg);
        background-repeat: no-repeat;
        background-size: 1920px;
        background-position: right bottom;
        display: block;
        position: absolute;
        width: 100%;
        height: 4.375rem;
        margin-top: 0;
        z-index: 1;
        top:-4.3rem;
    }
    
    .section--angle--darkgrey:after {
        background-image: url(../../images/section-angle-222222.svg);
        background-position: left top;
    }
    
    .section--angle--white:after {
        background-image: url(../../images/section-angle-ffffff.svg);
        background-position: right top;
    }
    
    .section--angle--lightgrey:after {
        background-image: url(../../images/section-angle-eeeeee.svg);
         background-position: left bottom;
    }
     
        
    .section--angle + .section {
        padding-top: 5rem;
    }
    
    main section:last-child {
        padding-bottom: 5rem;
    }
    
    .section--hammer {
        position: relative;
        overflow: visible;
        padding-bottom: 5rem;
    }
    


    @media (min-width: 768px) {
        
        .section--angle + .section {
            padding-top: 5.75rem;
        }
        
        .section--hammer, main section:last-child {
            padding-bottom: 5.75rem;
        }
        
    }

    @media (min-width: 992px) {
        .section--hammer:before {
            display:none;
            content: "";
            position: absolute;
            bottom: 0;
            top:-80px;
            height: 127%;
            width: 100%;
            background-repeat: no-repeat;
            /*background-position: top center;
            background-image: url(../../images/stats-hammer.png);*/
            background-image: url(../../images/logo.png);
            background-position: center;
           /* background-size: 215px;*/
           background-size:80px;
        }
        
        .section--angle + .section {
            padding-top: 6.25rem;
        }
        
        .section--hammer,  main section:last-child {
            padding-bottom: 6.25rem;
        }
        
        .divider-line--grey {
            box-shadow: -18px 0px 0px -10px var(--grey-dark);
            padding-left: 2.5rem;
        }
        
    }


    @media (min-width: 1200px) {
        .section--angle + .section {
            padding-top: 7rem;
        }
        
        .section--hammer, main section:last-child {
            padding-bottom: 7rem;
        }
        
        .section--hammer:before {
            height: 130%;
            background-size: 100px;
        }

    }

    @media (min-width: 1440px) {
        .section {
            padding: 5rem 0;
        }
        
        .section--angle + .section {
            padding-top: 8.375rem;
        }
        
        main section:last-child {
            padding-bottom: 8.375rem;
        }
        
        .section--hammer {
            padding-bottom: 7rem;
        }
        
        .section--hammer:before {
           /* background-size: 230px;*/
           background-size: 100px;
            height: 127%;
        }
        
    }

    @media (min-width: 1680px) {

        .section {
            padding: 8.5rem 0;
        }
        
        
        .section--angle + .section {
            padding-top: 12.375rem;
        }
        
        main section:last-child {
            padding-bottom: 12.375rem;
        }
        
        .section--hammer {
            padding-bottom: 10rem;
        }
        
        .section--community, .section--navigation {
            padding-bottom: 8.375rem;
        }
        
        
        .section--hammer:before {
           /* background-size: 315px; */
            background-size: 140px; 
        }
        
    }
    
    @media (min-width: 1920px) {
        .section--angle:after,
        .section--hammer + .section:before {
            background-size: 102%;
        }
    }
@media (min-width: 575px) and (max-width: 1200px) {
.section--medgrey iframe {
        width: 100% !important;
    }
}
@media (max-width: 768px) {
   .section--medgrey iframe {
            max-height: 500px !important;
    }
    .section--community {
        text-align: center;
    }

    .section--community .col-lg-5 {
        margin-bottom: 2rem;
    }
  
    .sm__block {
            max-width: unset !important;
    }
 
}
@media (max-width: 575px) {
   .sm__block.sm__facebook {
            max-width: 300px !important;
    }
    .sm__block .callout__icon {
    height: 2.5rem;
        margin-left: 0 !important;
}
.section--medgrey .col-11 {
        max-width: 330px;
}
}
.section--medgrey iframe {
        max-width: 500px;
}
/* ------------------------------------------------------------------------ Jumbotron/banner */
.scroll-down {
    width: 244px;
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -50px);
    text-transform: uppercase;
    font-size: 1.375rem;
    padding: 0.25rem 2rem 0.5rem;
    top: -16px;
    border-radius: 0;
    text-align:center;
}
.scroll-down--inside {
        bottom: -50px;
        top:unset;
}
.scroll-down img {
    width: 0.75rem;
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    position: relative;
    top: 0;
    transition: top ease 0.5s;
    display:block;
    margin:0 auto;
}
.scroll-down:hover {
      text-decoration:none;
      color: var(--white);
    background: var(--yellow);
    border: 0;
}

.scroll-down span {
      display:block;
    position:relative;
}
  @media (max-width: 992px) {
    .scroll-down {
        width: 180px;
        font-size: 1rem;
        padding: 0.15rem 2rem 0.15rem;
        top: 1px;
        border-radius: 0;
    }
    .scroll-down--inside {
            top: unset;
    }
 }
.top__content {
    text-align: center;
    text-transform: uppercase;
}

    .jumbotron {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding: 0;
        margin-bottom: 0;
        min-height: 15rem;
        background-color: #ddd;
        position:relative;
    }

        .jumbotron .container {
            height: auto;
        }

    .jumbotron--home {
        min-height: 22.5rem;
    }
       
    .jumbotron--home .container {
            z-index: 5;
            /*position: absolute;
            left: 50%;
            -webkit-transform: translateX( -50%);
            -moz-transform: translateX( -50%);
            -ms-transform: translateX( -50%);
            transform: translateX( -50%);
            height: auto;*/
        }

    .header-video__media {
        display: none;
    }

    .header-video iframe, .header-video video {
        display: none;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .header-video {
        overflow: hidden;
        background: url(/media/zlvkbgjb/jumbotron-home.jpg) no-repeat top center;
        background-size: cover;
        position: relative;
    }

        .header-video:after {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 30%, rgba(0, 0, 0, 0.5) 70%);
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            content: "";
        }

        .header-video iframe, .header-video video {
            display: none;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
        }

    .jumbotron--inside {
        min-height: 15rem;
    }
    .swiper-container {
        height: 15rem;
    }
    .jumbotron--video {
       min-height: 0;
        background: var(--black-medium); 
    }
    .jumbotron--home .jumbotron__caption {
        /*height: 100%;*/
        color: var(--white);
        padding: 0.5rem 0 0 0;
        margin: 0 auto;
        position: relative;
        text-align: center;
    }

    .jumbotron--inside .jumbotron__caption {
        height: 100%;
        color: var(--white);
        padding: 2rem;
        margin: 0 auto;
        position: relative;
    }


    .top__content {
        font-size: 1em;
        flex: 0 0 7rem;
    }

    .jumbotron--inside.jumbotron .container {
        padding-top: 0;
        padding-bottom: 6rem;
    }
 .jumbotron--home .btn--white:last-child {
            margin-left:0;
        }
    @media (min-width: 576px) {
        .jumbotron--home {
            min-height: 26rem;
        }

        .jumbotron--inside.jumbotron .container {
            padding-top: 0;
            padding-bottom: 8.5rem;
        }

        .jumbotron--inside {
            min-height: 23rem;
        }
        .swiper-container {
        height: 23rem;
    }

        .top__content {
            font-size: 1.25em;
        }
    }

    @media (min-width: 992px) {
        .jumbotron--home .btn--white:last-child {
            margin-left: 4rem;
        }
        .header-video iframe, .header-video video {
            display: block;
            width: 100%;
        }

        .header-video__media {
            width: 100%;
            height: auto;
            margin-bottom: 0;
        }

        .jumbotron--home {
            min-height: 34rem;

        }

        .top__content {
            font-size: 1.5em;
        }

        .jumbotron .container {
            padding-top: 2rem;
        }

        .jumbotron--inside {
            min-height: 30rem;
        }
        .swiper-container {
        height: 30rem;
    }

    
            .jumbotron--video {
                min-height: 6rem;
        }
    }
    
    @media (min-width: 1200px) {
    .jumbotron--video {
       min-height: 11rem;
    }
}
    @media (min-width: 1440px) {
       .jumbotron--video {
            min-height: 13rem;
        }
        .jumbotron--home {
            min-height: 42rem;
                  height: 100vh;
        }

        .jumbotron--inside {
            min-height: 36rem;
        }
        .swiper-container {
        height: 36rem;
    }

        

        .top__content {
            font-size: 1.75rem;
        }
    }

    @media (min-width: 1680px) {
        .jumbotron .container {
            padding-top: 0;
        }

        .jumbotron--home {
            min-height: 55rem;
        }

        .top__content {
            font-size: 2.25rem;
        }

        .jumbotron--inside {
            min-height: 42rem;
        }
.swiper-container {
        height: 42rem;
    }
       
    }
/*    
.swiper-button-prev {
    background-image: url("/images/swiper-prev.svg");
}
.swiper-button-next {
    background-image: url("/images/swiper-next.svg");
}
*/
/* ------------------------------------------------------------------------ Callouts */
.callout-image {
    margin-top: -2%;
}
.callout-image--question {
    margin-top: -1%;
}
.callout-image, .callout-image--question {
        transition: all .4s ease-in-out;
        position: relative;
        background-repeat: no-repeat;
        background-size: cover;
        width: 2.5rem;
        height: 2.3rem;
}
.callout {
        display: block;
        font-weight: 400;
        position: relative;
        color: inherit;
}
.callout__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    background: var(--yellow);
    margin: 0;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.25s;
    display: block;
}

 .callout__icon--lg {
    width: 6.5rem;
    height: 6.5rem;
    }
.callout-icon .callout__heading {
    width: 15rem;
}
.callout--apply .callout__heading {
    width: 100%;
    padding-left: 1rem;
}
.callout--apply__link, .callout--return {
    color: var(--yellow);
    font-weight: 500;
    font-size: 1.25rem;
    text-transform: uppercase;
    transition: all 0.25s;
}
    .callout--apply__link:hover, .callout--return:hover {
        text-decoration: none;
        transform: translateX(.5rem);
        margin-left: .5em;
    }
.callout--apply__link {
    background-image: url(../../images/more-arrow.svg);
    background-size: 1.5rem;
    background-repeat: no-repeat;
    width: 1.5rem;
    height: 1.5rem;
    bottom: 1.4em;
    background-position: right;
    padding-right: 2.5rem;
}
.callout--return {
    background-image: url(../../images/back-arrow.svg);
    background-size: 1.5rem;
    background-repeat: no-repeat;
   /* width: 1.5rem;
    height: 1.5rem;*/
    bottom:unset ;
    padding-left: 2.5rem;
}
.blockquote .callout--apply__link::after {
    margin-top: 1.2rem;
    margin-left: 1rem;
    bottom: unset;
    left: unset;
}
.callout--publications .callout__image {
    margin: 0 auto 1rem auto;
    transition: all 0.25s;
    display: block;
    width: auto;
       min-height: 387px;
    max-height: 494px;
    object-fit: cover;
}
.callout--publications {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--black-medium);
    font-size: 1.25rem;
        margin: 0 auto;
}
a.callout--publications:hover {
    text-decoration: none;
    color: var(--yellow-dark);
}
/*.callout-group--home .callout-icon {
        flex: 0 0 50%;
    max-width: none;
}*/
.callout-group--home .callout-icon .callout__heading {
        width: 12rem;
}
@media (max-width: 990px) {
.callout-group--home.row {
     margin-right: 0;
    margin-left: 0;
}
}
@media (min-width: 425px) {
    .callout-group--home .callout-icon .callout__heading {
        width: 18rem;
    }
}
.iframe-desktop {display:none;}
.iframe-mobile {display:block;margin: 0 auto;}
@media (min-width: 575px) {
    .callout-group--home .callout-icon .callout__heading {
        width: 25rem;
    }
    .iframe-desktop {display:block;    margin: 0 auto;}
    .iframe-mobile {display:none;}
}
@media (min-width: 768px) { 
    .callout__icon--lg {
        width: 10rem;
        height: 10rem;
    }  
    .callout-group--home .callout-icon .callout__heading {
            width: 15rem;
        }
}
@media (min-width: 992px) {
    .callout-image {
        width: 3.3rem;
        height: 3rem;
        margin-top: -2%;
    }

        .callout-icon .callout__heading {
            width: 13rem;
        }

       .callout--apply .callout__heading {
            width: 13rem;
            margin-left: 1rem;
        }
         .callout-icon .callout__heading  {
            width: 10rem;
        }
        .callout__icon--lg {
    width: 15rem;
    height: 15rem;
    }
     .callout-group--home .callout-icon .callout__heading {
            width: 14rem;
        }
}

    @media (min-width: 1200px) {
        .callout-icon .callout__heading {
            width: 12rem;
        }

        .callout--apply .callout__heading {
            width: 18rem;
        }
       

        .callout--apply__link {
            font-size: 1.25rem;
        }
         .callout__icon--lg {
        width: 20rem;
        height: 20rem;
        }
         .callout-group--home .callout-icon .callout__heading {
            width: 18rem;
        }
    }

    @media (min-width: 1440px) {
        .callout-group--home .callout-icon .callout__heading {
            width: 22rem;
        }
          .callout-icon .callout__heading {
            width: 15rem;
        }

        .callout-image {
            width: 4.1rem;
            height: 3.8rem;
            margin-top: -2%;
        }
        .callout__icon--lg {
        width: 25rem;
        height: 25rem;
        }

        .callout--apply .callout__heading {
            width: 22rem;
        }
    }

    @media (min-width: 1680px) {
        .callout-group--home .callout-icon .callout__heading {
            width:28rem;
        }

        .callout--apply .callout__heading {
            width: 26rem;
        }

        .callout-image--question {
            width: 4.75rem;
            height: 4.5rem;
        }


        .callout-image {
            width: 5.8rem;
            height: 5.3rem;
            margin-top: -3%;
        }
    }
    /* ------------------------------------------------------------------------ Cards */
.card-columns .card {
    margin-bottom: 2rem;
}
    .card, .card-header:first-child {
        border-radius: 0;
    }
.card--centers {
    margin-bottom:1rem;
}

.card:hover {
    text-decoration: none;
}

    .card-header {
        background-color: #222;
        border-bottom: 0;
        color: #fff;
        font-weight: 700;
    }

    .card__header-link {
        color: #fff;
        display: block;
        transition: all 0.25s;
    }

        .card__header-link:hover {
            color: #777;
            text-decoration: none;
        }

    .card__header-no-link {
        transition: all 0.25s;
    }

    .card:hover .card__header-no-link {
        color: #777;
    }

    .card-text {
        font-size: 1rem;
        font-weight: 400;
        color: #444;
    }

    .card__date, .card:hover .card__date {
        color: #888;
    }

    .card-text small {
        font-size: 90%;
    }
@media (min-width: 576px) {
    .card-columns {
        column-gap: 2rem;
    }
}
.card-group--partners .col-lg {
      flex-grow: 0;  
}
    /* ------------------------------------------------------------------------ Card People, Signature & Affiliates */
    .card {
        border: 0;
    }
    .card--signature {
        border: 0;
    }
    .card--affiliates {
            text-align: center;
            padding: 1rem;
            width: 15rem;
            margin: 0 auto;
    }
     @media (min-width: 992px) {
        .card--affiliates {
                width: 10rem;
        }
    }
    @media (min-width: 1200px) {
        .card--affiliates {
                width: 12rem;
        }
    }
     @media (min-width: 1440px) {
        .card--affiliates {
                width: 15rem;
                padding: 2rem;
        }
    }
     @media (min-width: 1680px) {
        .card--affiliates {
                width: 18rem;
        }
    }
    .card--affiliates .card__img {
        border: 1px solid #eee;
    }
    .card--trades {
        padding: 0 3rem;
    }

    .card--centers .card__img {
        padding-bottom: 65%;
    }

    .card--trades .card__img {
        height: 0;
        padding-bottom: 60%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        height: 0;
    }

    .card__img {
        height: 0;
        padding-bottom: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        height: 0;
        padding-bottom: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .card--team .card__img {
        border: 4px solid var(--grey-medium);
        border-radius: 100%;
        width: 12rem;
        height: 12rem;
        padding-bottom: 0;
        background-size: cover !important;
        margin-bottom: 2rem !important;
    }
            .card-cochairs .card__img {
                width: 10rem;
                height: 10rem;
            }
    .card--signature .card__img {
        width: 6rem;
        height: 6rem;
        border: 4px solid var(--grey-medium);
        border-radius: 100%;
        /*width: 100%;
    height: auto;
    padding-bottom: 6rem;*/
        padding-bottom: 0;
        background-size: cover !important;
    }

    .card__title {
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 0;
        color: var(--black-medium);
    }

        .card--staff {
            flex: 0 0 100%;
            text-align: center;
            margin-bottom: 1rem;
        }

    .card--staff {
                    text-align: center;
    }

     @media (min-width: 576px) {
         .card--affiliates .card__img {
            border: 0;
        }
          .card--staff {
            flex: 0 0 50%;
            text-align: center;
            margin-bottom: 1rem;
        }
     }
       @media (min-width: 768px) {
         .card--affiliates .card__img {
            padding-bottom: 90%;
        }
     
     }
    
    @media (min-width: 992px) {
            .card-cochairs .card__img {
        width: 45%;
        padding-bottom: 45%;
        height: 0;
    }
        .card-cochairs .card__img {
        width: 85%;
        padding-bottom: 85%;
            
        }
          .card--team {
            margin: 0 auto;
            flex: 0 0 100%;
            max-width: 240px;
            padding-bottom: 2rem;
        }
        .card--team.card-testimonial .card__img,  .card--team.card-cochairs  .card__img {
                margin-bottom: 0 !important;
        }
        /*.callout-group--home .callout-icon {
            flex: 0 0 25%;
            max-width: none;
        }
        .callout-group--home .callout-icon:nth-child(9) {
                margin-left: 25%;
            }
        */
        .card--team {
            flex: 0 0 22%;
            max-width: none;
        }

        .card-testimonial {
                 flex: unset;
                    margin: unset;
                    padding-bottom: 0;
        }

  
   
     }

      @media (min-width: 1200px) {
           .card--staff {
            flex: 0 0 25%;
           }
            .card--staff:nth-child(8) {
                margin-left: 25%;
                margin-right: 0;
            }
             .card--staff:nth-child(9) {
                 margin-left: 0;
            }
      }
    .card--staff .card__img {
         margin: 0 auto;
        /*width: 55%;
        padding-bottom: 55%;
        height: auto;*/
    }
    .card-cochairs {
            padding-bottom: 1rem;
    }
 
    .card-img {
        border-radius: 0;
        object-fit: cover;
        height: 100% !important;
    }
    .gallery .card-img {
            height: 100% !important;
    }
    @media (min-width: 992px) {
         .gallery .card-img {
            height: 200px !important;
    }
    }
    @media (min-width: 1200px) {
         .gallery .card-img {
            height: 250px !important;
    }
    }
      @media (min-width: 1290px) {
         .gallery .card-img {
            height: 275px !important;
    }
    }
     @media (min-width: 1440px) {
         .gallery .card-img {
            height: 325px !important;
    }
    }
    @media (min-width: 1690px) {
         .gallery .card-img {
            height: 387px !important;
    }
    }
    /* ------------------------------------------------------------------------ Social Media Headers */
    .sm__block {
        background: var(--black-medium);
        color: var(--white);
        padding: 1.25rem 0.75rem;
        max-width: 500px;
            margin: 0 auto;
    }

    /* ------------------------------------------------------------------------ Alerts */
    .alert-info {
        border-radius: 0;
        color: var(--black-medium);
        background-color: var(--blue-light);
        border-color: transparent;
        padding: 1.5rem 1.25rem;
    }


    /* ------------------------------------------------------------------------ List Group */
    .list-group-item {
        margin-bottom: 0;
        border: none;
        border-bottom: 2px solid var(--grey-light);
    }

        .list-group-item:last-child, .card > .list-group:last-child .list-group-item:last-child {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .list-group-item:first-child, .card > .list-group:first-child .list-group-item:first-child {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }

        .list-group-item, .list-group-item:last-child {
            padding: 0;
            background-image: none;
        }

            .list-group-item.active {
                background-color: var(--yellow);
                border-color: var(--yellow);
            }

            .list-group__link, .list-group-item a {
                display: block;
                transition: all 0.25s;
                padding: 1.25rem .25rem;
                color: var(--black-medium);
                margin-bottom: 0;
            }

    .list-group__link--sm {
        padding: .75rem .25rem;
    }

    .list-group__link:hover, .list-group-item a:hover {
        text-decoration: none;
        transform: translateX(1rem);
    }

        .list-group__link:hover .list-group__heading {
            text-decoration: underline;
        }

    .section--lightgrey__list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        list-style: disc;
        list-style-position: inside;
        margin-bottom: 3rem;
    }

        .section--lightgrey__list li {
            padding: 0;
            background: none;
            width: 100%;
            font-size: 1.25rem;
        }


    @media (min-width: 768px) {
        .section--lightgrey__list li {
            width: calc(100% / 2);
        }
    }

    @media (min-width: 1440px) {
        .section--lightgrey__list li {
            font-size: 1.375rem;
        }
    }

    @media (min-width: 1680px) {
        .section--lightgrey__list li {
            font-size: 1.625rem;
        }
    }

    /* ------------------------------------------------------------------------ Accordions */
    .accordion__card {
        background-color: var(--grey-light);
        border: none;
    }

    .accordion {
        background-color: var(--white);
    }

    .accordion__card-header {
        background-color: transparent;
        border-bottom: 0;
        color: var(--white);
        font-weight: 700;
        padding: 0;
    }

    .accordion__card-link {
        padding: 1rem;
        display: block;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.255rem;
        color: #222;
    }

        .accordion__card-link:hover {
            text-decoration: none;
            color: #222;
        }

    .accordion__card-text {
        width: calc(100% - 1.5rem);
    }

    .accordion__icon {
        float: right;
        width: 1rem;
        height: .75rem;
        background: url(../..//images/accordion-plus-icon.svg) no-repeat center;
        background-size: .75rem;
    }

    .active .accordion__icon {
        background: url(../..//images/accordion-minus-icon.svg) no-repeat center;
    }

    .accordion__card-body {
        border-top: 1px solid var(--white);
        padding-bottom: 0;
    }

    @media (min-width: 1200px) {

        .accordion__card-link {
            padding: 1.25rem 1.75rem;
        }
    }


    /* ------------------------------------------------------------------------ Pagination */
    .page-item {
        font-size: 1rem;
        background-image: none;
        padding: 0;
    }

    .page-link {
        font-weight: 400;
        color: #666;
    }

    .page-item.active .page-link {
        background-color: #666;
        border-color: #666;
    }


    /* ------------------------------------------------------------------------ Tables */

    .table {
        background-color: #fff;
    }

        .table .thead-dark th {
            background-color: #222;
            border: none;
        }

        .table td, .table th {
            border-top: 1px solid rgba(0,0,0,.125);
        }

    .table-striped tbody tr:nth-of-type(odd) {
        background-color: #f8f8f8;
    }

    .table td {
        vertical-align: middle;
    }

    .table-md td, .table-md th {
        padding: .5rem;
    }

    .table .custom-control {
        margin: 0;
        padding-left: 1.5rem;
    }
    /* ------------------------------------------------------------------------ Home Pop up */
    
    @media (max-width:992px) {
     .fade.show {
        display:none !important;
    }
    }
     @media (min-width:992px) {
     .homePage .to__top {
        bottom: 10rem;
    }
     }
    .fade.show {
        display:block;
    }
    .modal {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 25%;
        min-height: 40%;
        top: unset;
        left: unset;
        height: 120px;
    }
    .modal-dialog {
        position: fixed;
        bottom: 0;
        right: 1%;
        margin: 0;
        width: 100%;
    }
     .close {
            margin: -1rem -0.5rem -1rem auto;
    }
    .modal {
        z-index: 5;
    }
    .modal-content {
         background-color: #eee;
         background-clip: padding-box;
        border: 0;
        border-radius: 0;
    }
    .modal-header {
           padding: 0.2rem; 
    }
    .modal-body {
        min-height: 7rem;
    }
    .close {
    float: right;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    color: #222;
    text-shadow: 0 1px 0 #fff;
    opacity: 1;
    }
@media (min-width: 992px) {
.modal-dialog {
    max-width: 350px;
    
}
}

    /* ------------------------------------------------------------------------ Forms */
    .required-input,
    .validation-summary-errors {
        color: var(--red) !important;
        font-weight: bold;
    }

    .required-input,
    .validation-summary-errors {
        font-size: 0.875rem;
    }

  

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-control {
        border-radius: 0;
        border-color: var(--grey-light);
        padding: .75rem 1rem;
        height: auto;
        background-clip: border-box;
    }

        .form-control:focus {
            box-shadow: none;
            border-color: rgba(0, 0, 0, 0.5);
        }

    select.form-control:not([size]):not([multiple]) {
        height: calc(2.5rem + 2px);
    }

    .form-control-file {
        cursor: pointer;
    }

    /*custom radio and checkbox*/
    .custom-control {
        padding-left: 1.75rem;
        margin-bottom: 0;
        cursor: pointer;
    }

    .custom-control-description {
        font-weight: 400;
    }

    .custom-control-indicator {
        top: .375rem;
        width: 1.125rem;
        height: 1.125rem;
        background-color: var(--grey-light);
        border: 1px solid var(--grey-light);
        border-radius: 2px;
    }

    .custom-control-input:checked ~ .custom-control-indicator {
        background-color: var(--green-dark);
        border-color: var(--green-dark);
    }

    .custom-control-input:focus ~ .custom-control-indicator {
        box-shadow: none;
        border-color: var(--grey-dark);
    }

    input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px white inset;
    }

    .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        color: var(--grey-dark);
    }

    .form-control::-moz-placeholder { /* Firefox 19+ */
        color: var(--grey-dark);
    }

    .form-control:-ms-input-placeholder { /* IE 10+ */
        color: var(--grey-dark);
    }

    .form-control:-moz-placeholder { /* Firefox 18- */
        color: var(--grey-dark);
    }


    /* ------------------------------------------------------------------------ Events */

    .event-date__large {
        opacity: 0;
    }

    @media (max-width: 768px) {
        .event-date__large {
            display: none;
        }

        .event-name {
            margin: 0.5rem auto;
        }
            .card--team {
                margin:0 auto;
            }
    }

    .event-date {
        font-size: 1.250em;
        font-weight: 500;
        text-transform: uppercase;
    }

    .event-name {
        font-size: 1.250em;
        font-weight: 500;
        letter-spacing: -2px;
        text-transform: uppercase;
    }

    @media (min-width: 1440px) {
        .event-date__large {
            opacity: 1;
        }

        .divider-line--yellow {
            box-shadow: -18px 0px 0px -10px var(--yellow);
        }

        .event-name {
            font-size: 2.250em;
        }

        .event-date__small {
            display: none;
        }

        .event-date__large {
            display: block;
        }

        .event-date {
            font-size: 2.250em;
        }
    }

    .event-name--one, .event-name--two {
        border-radius: 100%;
        border: 4px solid var(--grey-medium);
        width: 93px;
        height: 93px;
        display: inline-block;
    }



    /* ------------------------------------------------------------------------ Quote */
    .blockquote__icon {
        background-image: url(../../images/icon-quote.svg);
        background-position: center;
        background-size: contain;
        height: 32px;
        background-repeat: no-repeat;
        display: inline-block;
        width: 45px;
        float: left;
    }

    .blockquote--list .blockquote__icon {
        float: none;
        width: 75px;
        height: 50px;
    }

    .blockquote p {
        font-size: 1.375rem;
        padding-left: 4rem;
    }

    .blockquote--list.blockquote p, .blockquote--list .blockquote__footer {
        padding-left: 0;
    }

    @media (min-width: 992px) {
        .blockquote p {
            font-size: 1.625rem;
        }
    }

    @media (min-width: 1200px) {
        .blockquote p {
            font-size: 1.75rem;
            line-height: 2.5rem;
        }
    }

    /*  @media (min-width: 1680px) {
        .blockquote p {
            font-size: 2.25rem;
            line-height: 3.625rem;
        }
    }*/

    .blockquote__footer:before {
        content: "";
        display: block;
        width: 60px;
        height: 8px;
        background: var(--yellow);
        margin-bottom: 2rem;
    }

    .blockquote__footer.text-left:before {
        margin: 0 0 2rem;
    }

    .blockquote__footer {
        font-size: 1.25rem;
        padding-left: 4rem;
    }

        .blockquote__footer span {
            font-weight: 500;
        }

    @media (min-width: 1024px) {
        .blockquote {
            max-width: 980px;
            margin: 0 auto;
        }
    }

    @media (min-width: 1440px) {
        .blockquote {
            max-width: 1300px;
            margin: 0 auto;
        }
    }

    @media (min-width: 1680px) {
        .blockquote {
            max-width: 1500px;
            margin: 0 auto;
        }

        .blockquote__footer:before {
            margin-bottom: 1.5rem;
        }
    }

    /* ------------------------------------------------------------------------ Inside Page Bottom Navigation */
    .header-icon h3 {
        font-size: 1.625rem;
        text-align: center;
        color: var(--black-medium);
    }

    .header-icon__image {
        background-repeat: no-repeat;
        width: auto;
        background-size: contain;
        height: 48px;
        display: block;
        margin: 0 auto 1rem;
        background-position: center;
    }

    @media (min-width: 1440px) {
        .header-icon__image {
            height: 66px;
        }
    }

    @media (min-width: 1200px) {
        .header-icon h3 {
            font-size: 2rem;
            line-height: 1.3;
        }
    }

    .section--navigation__item {
        position: relative;
        top: 0;
        transition: top ease 0.5s;
    }

        .section--navigation__item:hover {
            top: -1rem;
            text-decoration: none;
        }


    /* =============================================================================================
	FOOTER
============================================================================================= */
    .print-footer {
        display: none;
    }

    .intro-text--white, .intro-text--white a {
        color: var(--white);
    }
     @media (max-width: 576px) {
        a.text-nowrap {
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    }
    .footer {
        padding: 4rem 0;
        border-top: 0;
        background: var(--black-medium);
        z-index: 7;
    }

    .footer:before {
        content: "";
        background: url(../../images/section-angle-222222-top.svg);
        background-repeat: no-repeat;
        background-size: 1920px;
        background-position: right bottom;
        display: block;
        position: absolute;
        width: 100%;
        height: 4.375rem;
        margin-top: 0;
        z-index: 1;
        top:-4.3rem;
    }

    .footer span {
        padding: 0 1rem;
    }

    .footer__rkd {
        display: inline-block;
        width: 5.625rem;
    }

    .copyright {
        color: var(--white);
        font-size: 1rem;
    }

    .footer__copyright {
        margin-bottom: 0;
        font-size: 0.875rem;
        color: rgba(255,255,255,0.5);
        color: rgba(0,0,0,0.75);
    }

    .footer__link {
        margin-right: 1rem;
        text-transform: uppercase;
    }

    .footer {
        width: 100%;
        position: absolute;
        z-index: 7;
    }

    .footer__icon {
        display: inline-block;
        width: 1.25em;
        height: 2rem;
        top: 0.5rem;
        position: relative;
        padding: 0;
        margin: 0 0.2rem;
        background-repeat: no-repeat;
        background-position: center center;
        border-radius: 50%;
        background-size: cover;
    }

        .footer__icon:hover {
            opacity: 0.8;
        }

    .footer__icon--twitter {
        background-image: url(../../images/twitter.svg);
    }

    .footer__icon--facebook {
        background-image: url(../../images/facebook.svg);
    }

    .footer__icon--youtube {
        background-image: url(../../images/youtube.svg);
    }
    .footer__icon--instagram {
        background-image: url(/media/drspklaf/instagram.svg);
            border-radius: 0;
    background-size: 75%;
        width: 1.375em !important;
    }

    @media (min-width: 992px) {
        .footer {
            height:300px;
        }

        .body--sticky-footer {
            padding-bottom: 300px;
        }
    }


    @media (min-width: 1200px) {
        .footer__icon {
            width: 1.85em;
             top: 1rem;
        }
        .callout__heading {
            margin-left: 1.75rem;
        }
    }

    @media (min-width: 1440px) {
        .footer {
            padding: 5rem 0;
         }
             .footer__icon {
            top: 0.5rem;
             }
    }

    @media (min-width: 1680px) {
        .copyright {
            font-size: 1.125rem;
        }

        .footer {
            height: 365px;
            padding: 5rem 0;
        }

        .body--sticky-footer {
            padding-bottom: 300px;
        }
    }

  