/*************************************
BLOG CARD
**************************************/

.cl-blog-card-container {
    display: block;
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
}
.cl-blog-card-container.x-large .cl-blog-card-title {
    font-size: 50px;
    padding: 23px 35px 0 0;
}
.cl-blog-card-container.large .cl-blog-card-title {
    font-size: 35px;
    padding: 23px 35px 0 0;
}
.cl-blog-card-container.medium .cl-blog-card-title {
    font-size: 21px;
    padding: 12px 18px 0 0;
}
.cl-blog-card-container.small .cl-blog-card-title {
    font-size: 18px;
    padding: 10px 16px 0 0;
}
.cl-blog-card {
    display: block;
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
}
.cl-blog-card-shade {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    background: rgba(241,36,47,.25);
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.cl-blog-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.cl-blog-card-container:hover .cl-blog-card-shade {
    background: rgba(0,0,0,0);
}
.cl-blog-card-share-container {
    display: block;
    width: 40px;
    height: 80px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10000;
    -moz-transition: all .08s ease-in-out;
    -webkit-transition: all .08s ease-in-out;
    -o-transition: all .08s ease-in-out;
    transition: all .08s ease-in-out;
    overflow: hidden;
}
.cl-blog-card-share {
    display: block;
    width: 100%;
    height: 100%;
}
.cl-blog-card-share-item {
    display: block;
    width: 100%;
    height: 40px;
}
.cl-blog-card-share-item-link {
    display: block;
    width: 100%;
    height: 0;
    color: white;
    background: black;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    overflow: hidden;
}
.cl-blog-card-container:hover .cl-blog-card-share-item-link,
.cl-blog-card-container:focus .cl-blog-card-share-item-link {
    height: 100%;
}
.cl-blog-card-share-item-link:hover {
    color: white;
    background: #e00016;
    height: 100%;
}
.cl-blog-card-share-item-link:focus {
  height: 100%;
  color: white;
}
.cl-blog-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    z-index: 10;
}
.cl-blog-card-link:focus {
  outline: var(--focus-dark);
}
.cl-blog-card-link-interior {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: -6px;
    z-index: 20;
}
.cl-blog-card-category-container {
    display: block;
    float: left;
    background: black;
}
h4.cl-blog-card-category {
    display: block;
    float: left;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    margin: 0;
    font-size: 0.7rem;
}
.cl-blog-card-container.x-large .cl-blog-card-category-link {
    font-size: 20px;
    padding: 5px 10px;
}
.cl-blog-card-category-link {
    display: block;
    float: left;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.cl-blog-card-category-link:focus {
  outline: var(--focus-dark);
}
.cl-blog-card-title-container {
    display: block;
    width: 100%;
    padding-right: 10%;
}
.cl-standard-text .cl-blog-card-title,
.cl-blog-text .cl-blog-card-title {
    display: block;
    float: left;
    width: 100%;
    text-align: left;
    background: #f3f3f3;
    font-weight: 400;
    color: black;
    font-size: 21px;
    padding: 12px 18px 0 0;
    margin-bottom: 0;
}
.cl-standard-text .cl-blog-card-title-link {
    color: black;
    text-decoration: none;
}
.cl-standard-text .cl-blog-card-title-link:hover {
    color: #e00016;
    text-decoration: none;
}

.cl-blog-card-container.medium a.cl-blog-card-title-link{
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

.cl-blog-card-container.medium .cl-blog-card-title{
    max-height: 166px;
    overflow: hidden;
}

/*************************************
EVENT CARD
**************************************/

.cl-event-card-container {
    display: block;
    width: 100%;
    position: relative;
    text-align: center;
}
.cl-event-card {
    display: block;
    width: 100%;
    background: #e9e9e9;
    -webkit-transition: all 500ms cubic-bezier(0.000, 0.000, 0.000, 0.995);
    -moz-transition: all 500ms cubic-bezier(0.000, 0.000, 0.000, 0.995);
    -o-transition: all 500ms cubic-bezier(0.000, 0.000, 0.000, 0.995);
    transition: all 500ms cubic-bezier(0.000, 0.000, 0.000, 0.995);
    -webkit-transition-timing-function: cubic-bezier(0.000, 0.000, 0.000, 0.995);
    -moz-transition-timing-function: cubic-bezier(0.000, 0.000, 0.000, 0.995);
    -o-transition-timing-function: cubic-bezier(0.000, 0.000, 0.000, 0.995);
    transition-timing-function: cubic-bezier(0.000, 0.000, 0.000, 0.995);
}
.cl-event-card.open {
    background: white;
    position: absolute;
    z-index: 100;
}
.cl-event-card.faded {
    opacity: 0.5;
}
.cl-event-card-share-container {
    display: block;
    width: 40px;
    height: 160px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10000;
    -moz-transition: all .08s ease-in-out;
    -webkit-transition: all .08s ease-in-out;
    -o-transition: all .08s ease-in-out;
    transition: all .08s ease-in-out;
    overflow: hidden;
}
.cl-event-card-share {
    display: block;
    width: 100%;
    height: 100%;
}
.cl-event-card-share-item {
    display: block;
    width: 100%;
    height: 40px;
}
.cl-event-card-share-item-link {
    display: block;
    width: 100%;
    height: 0;
    color: white;
    background: black;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    overflow: hidden;
}
.cl-event-card-share-item-link:hover,
.cl-event-card-share-item-link:focus {
    color: white;
    background: #e00016;
    height: 100%;
}
.cl-event-card-container:hover .cl-event-card-share-item-link,
.cl-event-card-container:focus .cl-event-card-share-item-link {
    height: 100%;
}
.cl-event-card .cl-event-image-container {
    display: block;
    width: 100%;
}
.cl-event-card .cl-event-image-link {
    display: block;
    width: 100%;
}
.cl-event-card .cl-event-image-link:focus {
    outline: var(--focus-dark);
}
.cl-event-card .cl-event-card-image-container {
    width: 100%;
    position: relative;
}
.cl-event-card .cl-event-card-image-container::before {
    display: block;
    content: "";
    width: 100%;
    padding-top: calc((0.85 / 2) * 100%);
}
.cl-event-card .cl-event-card-image {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.cl-event-card .cl-event-card-content-container {
    display: block;
    width: 100%;
}
.cl-event-card .cl-event-card-content {
    display: block;
    width: 100%;
}
.cl-event-card .cl-event-card-content .cl-event-card-category-container {
    display: block;
    width: 100%;
    padding-top: 40px;
}
.cl-event-card .cl-event-card-content .cl-event-category {
    text-transform: uppercase;
    font-size: 12px;
    color: #696969;
    line-height: 12px;
}
.cl-event-card .cl-event-card-content .cl-event-card-title-container {
    display: block;
    width: 100%;
    height: 55px;
    margin-top: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}
.cl-event-card .cl-event-card-content .cl-event-card-title {
    font-size: 24px;
    font-weight: 400;
    padding: 0 20px;
}
.cl-event-card .cl-event-card-content .cl-event-card-title-link {
    color: black;
    text-decoration: none;
}
.cl-event-card .cl-event-card-content .cl-event-card-title-link:hover,
.cl-event-card .cl-event-card-content .cl-event-card-title-link:focus {
    color: #e00016;
    text-decoration-line: underline;
}
.cl-event-card .cl-event-card-content .cl-event-card-meta-container {
    display: block;
    width: 100%;
}
.cl-event-card .cl-event-card-content .cl-event-card-meta {
    display: block;
    width: 100%;
}
.cl-event-card .cl-event-card-content .cl-event-card-meta-date-container {
    display: block;
    float: left;
    width: 50%;
    padding-right: 20px;
    overflow: hidden;
}
.cl-event-card .cl-event-card-content .cl-event-card-meta-date {
    display: block;
    float: right;
    width: 100px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    color: black;
    line-height: 18px;
    font-weight: 600;
}
.cl-event-card .cl-event-card-content .cl-event-card-meta-icon {
    display: block;
    width: 100%;
    color: #e00016;
    font-size: 19px;
    margin-bottom: 10px;
}
.cl-event-card .cl-event-card-content .cl-event-card-meta-location-container {
    display: block;
    float: left;
    width: 50%;
    padding-left: 20px;
    overflow: hidden;
}
.cl-event-card .cl-event-card-content .cl-event-card-meta-location {
    display: block;
    float: left;
    width: 130px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    color: black;
    line-height: 18px;
    font-weight: 600;
}
.cl-event-card-container.past .cl-event-card .cl-event-card-content .cl-event-card-meta-date,
.cl-event-card-container.past .cl-event-card .cl-event-card-content .cl-event-card-meta-location,
.cl-event-card-container.past .cl-event-card .cl-event-card-content .cl-event-card-meta-icon {
    color: #8a8a8a;
}
.cl-event-card .cl-events-card-more-container {
    display: block;
    width: 100%;
    clear: both;
}
.cl-event-card .cl-event-card-more {
    display: block;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 1px;
}
.cl-event-card .cl-event-card-more .cl-events-card-more-trigger-container {
    display: block;
    width: 100%;
    margin: 20px 0;
    cursor: pointer;
    height: 22px;
    overflow: hidden;
    clear: both;
}
.cl-event-card .cl-event-card-more:hover .cl-events-card-more-trigger-container .cl-event-card-more-trigger {
    position: relative;
    bottom: 24px;
}
.cl-event-card .cl-event-card-more .cl-event-card-more-trigger {
    display: block;
    width: 42px;
    height: auto;
    margin: auto;
}
.cl-event-card .cl-event-card-more .cl-event-card-more-content-container {
    display: none;
    width: 100%;
    padding: 0 20px;
}
.cl-event-card .cl-event-card-more .cl-event-card-more-content {
    display: block;
    width: 100%;
}
.cl-event-card .cl-event-card-more .cl-event-card-more-buttons-container {
    display: block;
    width: 100%;
    padding: 25px 0 15px 0;
}
.cl-event-card .cl-event-card-more .cl-event-card-more-buttons {
    display: block;
    width: 100%;
    text-align: center;
}
.cl-event-card .cl-event-card-more .cl-button {
    margin-bottom: 10px;
    float: none;
    display: block;
}
.summer-event .cl-event-card .cl-event-card-more .cl-button {
    margin-top: 10px;
}
.cl-event-card .cl-event-card-more .cl-button:hover {
    text-decoration: none;
}

@media(max-width: 767px) {
    .cl-event-card {
        min-height: initial;
    }
    .cl-event-card.open {
        position: static;
    }
    .cl-event-card .cl-event-card-content .cl-event-card-title {
        font-size: 21px;
    }
    .cl-event-card .cl-event-card-content .cl-event-card-title-container {
        height: auto;
    }
    .cl-event-card .cl-event-card-content .cl-event-card-meta-date,
    .cl-event-card .cl-event-card-content .cl-event-card-meta-location {
        font-size: 12px;
    }
}

/*************************************
FAQ
**************************************/
.content-container.qa {
    background-image: linear-gradient(to bottom, #ea2537 0%, #a11854 100%);
    clear: both;
}

/*************************************
ANCHORED SUB NAVIGATION
**************************************/
.cl-anchored-subnav {
    display: block;
    width: 100%;
    height: 100px;
    background: rgba(243,243,243, 0.95);
    z-index: 10000;
    position: relative;
}
.cl-anchored-subnav-interior {
    display: block;
    margin: auto;
    max-width: 1200px;
    width: 100%;
    height: 100px;
}
.cl-anchored-subnav-sections-container {
    display: block;
    float: left;
    height: 100px;
}
.cl-anchored-subnav-sections {
    display: block;
    float: left;
    height: 100px;
    margin-left: 0;
    margin-top: 0;
}
.cl-anchored-subnav-section {
    display: block;
    float: left;
    height: 100px;
    line-height: 100px;
    margin-right: 40px;
    font-size: 18px;
}
.cl-anchored-subnav-section .cl-anchored-subnav-section-link {
    text-decoration: none;
    color: #6f6f6f;
    -webkit-transition: all 500ms cubic-bezier(0.000, 0.000, 0.000, 0.995);
    -moz-transition: all 500ms cubic-bezier(0.000, 0.000, 0.000, 0.995);
    -o-transition: all 500ms cubic-bezier(0.000, 0.000, 0.000, 0.995);
    transition: all 500ms cubic-bezier(0.000, 0.000, 0.000, 0.995);
    -webkit-transition-timing-function: cubic-bezier(0.000, 0.000, 0.000, 0.995);
    -moz-transition-timing-function: cubic-bezier(0.000, 0.000, 0.000, 0.995);
    -o-transition-timing-function: cubic-bezier(0.000, 0.000, 0.000, 0.995);
    transition-timing-function: cubic-bezier(0.000, 0.000, 0.000, 0.995)
}
.cl-anchored-subnav-section.active .cl-anchored-subnav-section-link,
.cl-anchored-subnav-section .cl-anchored-subnav-section-link:hover {
    color: black;
}

.cl-anchored-subnav-section .cl-anchored-subnav-section-link:focus {
  text-decoration-line: underline;
}

.cl-anchored-subnav-share-open {
    display: none;
}
.cl-anchored-subnav-share-container {
    display: block;
    float: right;
    height: 100px;
}
.cl-anchored-subnav-share-container .register-button {
    display: block;
    float: right;
    color: black;
    font-weight: bold;
    background: #fff230;
    padding: 20px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 20px;
}
.cl-anchored-subnav-share-container .register-button:hover {
    background: #e0d400;
}
.is-sticky .cl-anchored-subnav-share-container .register-button {
    margin-top: 10px;
}
.cl-anchored-subnav-share {
    display: block;
    float: left;
    height: 100px;
}
.cl-anchored-subnav-share-heading-container {
    display: block;
    float: left;
    height: 100px;
}
.cl-anchored-subnav-share-heading {
    display: block;
    float: left;
    height: 100px;
    line-height: 100px;
    margin-right: 20px;
    font-size: 21px;
    color: #6f6f6f;
}
.cl-anchored-subnav-share-list-container {
    display: block;
    float: left;
    height: 100px;
}
.cl-anchored-subnav-share-list {
    display: block;
    float: left;
    height: 100px;
    padding: 25px 0;
    margin-left: 0;
    margin-top: 0;
}
.cl-anchored-subnav-share-list-item {
    display: block;
    float: left;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    margin-right: 9px;
}
.cl-anchored-subnav-share-list-item.linkedin {
  margin-right: 0;
}
.cl-anchored-subnav-share-list-item.close {
    display: none;
}
.cl-anchored-subnav-share-list-item-link {
    display: block;
    float: left;
    width: 100%;
    height: 100%;
    color: #6f6f6f;
    background: #f3f3f3;
    line-height: 44px;
    font-size: 20px;
    border-radius: 100%;
    transition: 0.2s background-color ease, 0.2s color ease;
}
.cl-anchored-subnav-share-list-item-link:hover {
    color: #f3f3f3;
    background: #6f6f6f;
}
.cl-anchored-subnav-share-list-item-link:focus {
  outline: var(--focus-dark);
}

.is-sticky .cl-anchored-subnav,
.is-sticky .cl-anchored-subnav .cl-anchored-subnav-sections-container,
.is-sticky .cl-anchored-subnav .cl-anchored-subnav-sections,
.is-sticky .cl-anchored-subnav .cl-anchored-subnav-sections .cl-anchored-subnav-section,
.is-sticky .cl-anchored-subnav .cl-anchored-subnav-share-container,
.is-sticky .cl-anchored-subnav .cl-anchored-subnav-nav-share,
.is-sticky .cl-anchored-subnav .cl-anchored-subnav-nav-share .cl-anchored-subnav-share-heading-container,
.is-sticky .cl-anchored-subnav .cl-anchored-subnav-nav-share .cl-anchored-subnav-share-heading,
.is-sticky .cl-anchored-subnav .cl-anchored-subnav-nav-share .cl-anchored-subnav-share-list-container,
.is-sticky .cl-anchored-subnav .cl-anchored-subnav-nav-share .cl-anchored-subnav-share-list {
    height: 80px;
}
.is-sticky .cl-anchored-subnav .cl-anchored-subnav-sections .cl-anchored-subnav-section,
.is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-heading {
    line-height: 80px;
}
.is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list {
    padding: 15px 0;
}

@media (max-width: 1280px) {
    .cl-anchored-subnav {
        max-width: 1280px;
        padding: 0 40px;
    }
}

@media only screen and (min-width: 900px) and (max-width: 1100px) {
    .cl-blog-card-container.large .cl-blog-card-title {
        font-size: 24px;
    }
    .cl-blog-card-container.medium .cl-blog-card-title {
        font-size: 16px;
    }
    .cl-blog-card-container.medium .cl-blog-card-title{
        max-height: 157px;
    }
}

@media (max-width: 900px){
    .cl-blog-card-container.medium .cl-blog-card-title{
        max-height: 137px;
    }
    .cl-blog-card-container.medium a.cl-blog-card-title-link{
        -webkit-line-clamp: 4;
    }
}

@media(max-width: 1124px) {
    #sticky-wrapper {
        bottom: 100px;
        height: 100px !important;
    }
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list {
        padding: 0;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-heading-container {
        height: 50px;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-heading {
        display: none;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list-container {
        height: 50px;
        position: absolute;
        right: -100%;
        -webkit-transition: all 500ms cubic-bezier(0.000, 0.000, 0.000, 0.995);
        -moz-transition: all 500ms cubic-bezier(0.000, 0.000, 0.000, 0.995);
        -o-transition: all 500ms cubic-bezier(0.000, 0.000, 0.000, 0.995);
        transition: all 500ms cubic-bezier(0.000, 0.000, 0.000, 0.995);
        -webkit-transition-timing-function: cubic-bezier(0.000, 0.000, 0.000, 0.995);
        -moz-transition-timing-function: cubic-bezier(0.000, 0.000, 0.000, 0.995);
        -o-transition-timing-function: cubic-bezier(0.000, 0.000, 0.000, 0.995);
        transition-timing-function: cubic-bezier(0.000, 0.000, 0.000, 0.995);
    }
    .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list-container.open {
        right: 0;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list {
        height: 100px;
        padding: 0;
        background: white;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list .cl-anchored-subnav-share-list-item {
        height: 100px;
        width: 100px;
        line-height: 100px;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list .cl-anchored-subnav-share-list-item-link {
        background: white;
        height: 100px;
        width: 100px;
        line-height: 100px;
        font-size: 30px;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share-open {
        display: block;
        width: 50px;
        height: 100px;
        position: absolute;
        right: 0;
        top: 0;
        line-height: 100px;
        text-align: center;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share-open-link {
        display: block;
        width: 50px;
        height: 100px;
        line-height: 100px;
        color: #8a8a8a;
        font-size: 30px;
    }
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list {
        height: 80px;
    }
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list .cl-anchored-subnav-share-list-item {
        height: 80px;
        width: 80px;
        line-height: 80px;
    }
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list .cl-anchored-subnav-share-list-item-link {
        height: 80px;
        width: 80px;
        line-height: 80px;
        font-size: 25px;
    }
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share-open {
        height: 80px;
        line-height: 80px;
    }
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share-open-link {
        height: 80px;
        line-height: 80px;
        font-size: 25px;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list .cl-anchored-subnav-share-list-item.close {
        display: block;
        margin-right: 0;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list .cl-anchored-subnav-share-list-item.close .cl-anchored-subnav-share-list-item-link {
        color: white;
        background: #8a8a8a;
    }
}

@media(max-width: 767px) {
    #sticky-wrapper {
        height: 50px !important;
        bottom: 0;
    }
    .is-sticky .cl-anchored-subnav-container,
    .is-sticky .cl-anchored-subnav,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-sections-container,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-sections,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-sections .cl-anchored-subnav-section,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share-container,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-heading-container,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-heading,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list-container,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share-open,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share-open-link,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list .cl-anchored-subnav-share-list-item,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list .cl-anchored-subnav-share-list-item-link {
        height: 50px;
        line-height: 50px;
    }
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list .cl-anchored-subnav-share-list-item,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list .cl-anchored-subnav-share-list-item-link {
        width: 50px;
    }
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share-open-link,
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list .cl-anchored-subnav-share-list-item-link {
        font-size: 20px;
    }
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-sections .cl-anchored-subnav-section {
        line-height: 1.25em;
    }
    .is-sticky .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list {
        padding: 0;
    }
    .cl-anchored-subnav-container {
        height: 50px;
    }
    .cl-anchored-subnav {
        height: 50px;
        padding: 0;
    }
    .cl-anchored-subnav .cl-anchored-subnav-sections-container {
        height: 50px;
        padding-right: 50px;
        width: 100%;
    }
    .cl-anchored-subnav .cl-anchored-subnav-sections {
        display: table;
        width: 100%;
        height: 50px;
    }
    .cl-anchored-subnav .cl-anchored-subnav-sections .cl-anchored-subnav-section {
        display: table-cell;
        height: 50px;
        margin-right: 0;
        padding: 0 20px;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.25em;
        float: none;
        text-align: center;
        vertical-align: middle;
    }
    .cl-anchored-subnav .cl-anchored-subnav-sections .cl-anchored-subnav-section.active .cl-anchored-subnav-section-link {
        font-weight: 400;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share-container {
        height: 50px;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share {
        height: 50px;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share-open {
        height: 50px;
        line-height: 50px;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share-open-link {
        height: 50px;
        line-height: 50px;
        font-size: 18px;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list {
        height: 50px;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list .cl-anchored-subnav-share-list-item {
        height: 50px;
        width: 50px;
        line-height: 50px;
    }
    .cl-anchored-subnav .cl-anchored-subnav-share .cl-anchored-subnav-share-list .cl-anchored-subnav-share-list-item-link {
        height: 50px;
        width: 50px;
        line-height: 50px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .cl-blog-card-container.large .cl-blog-card-title {
        font-size: 24px;
    }
    .cl-blog-card-container.medium .cl-blog-card-title {
        font-size: 16px;
    }
}

/*************************************
DOWNLOADS
**************************************/
.cl-downloads h4 {
    font-weight: 400;
    font-size: 24px;
    color: #000;
    margin-bottom: 30px;
    position: relative;
}
.cl-downloads .cl-downloads-image {
    display: block;
    float: left;
    width: 48%;
    padding-right: 40px;
}
.cl-downloads .cl-downloads-image img {
    float: right;
    width: 310px;
    height: 348px;
}
.cl-downloads .cl-downloads-text {
    display: block;
    float: left;
    width: 52%;
    padding-left: 40px;
    padding-top: 100px;
}
@media(max-width: 950px) {
    .cl-downloads .cl-downloads-image {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    .cl-downloads .cl-downloads-image img {
        display: block;
        float: none;
        margin: auto;
    }
    .cl-downloads .cl-downloads-text {
        width: 100%;
        padding-left: 0;
        padding-top: 0;
        text-align: center;
    }
    .cl-downloads .cl-downloads-text .cl-button {
        float: none;
        margin: auto;
        width: 210px;
    }
}
@media(max-width: 768px) {
    .cl-downloads .cl-downloads-image img {
        float: left;
        margin: 0;
    }
    .cl-downloads .cl-downloads-text {
        text-align: left;
    }
    .cl-downloads .cl-downloads-text .cl-button {
        float: left;
        margin: 0;
        width: auto;
    }
}

/*************************************
DISQUS
**************************************/
.cl-disqus {
    height: 300px;
}

/*************************************
SIMPLE IMAGE SLIDER
**************************************/
.simple-image-slider {
    position: relative;
}
.simple-image-slider .simple-image-slider__wrap {
    margin: 0;
}
.simple-image-slider li {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.simple-image-slider li:before {
    content: "";
    float: left;
    padding-bottom: 60%;
}
@media(min-width: 1360px) {
    .simple-image-slider li:before {
        padding-bottom: 800px;
    }
}
.simple-image-slider li:after {
    content: "";
    display: table;
    clear: both;
}
.simple-image-slider .bx-wrapper .bx-controls a{
    position: absolute;
    z-index: 20;
    top: 48%;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 65px;
    padding: 14px 17px 14px 14px;
    transform: translateY(-50%);
    background-color: #e00016;
    color: white;
}
.simple-image-slider .bx-wrapper .bx-controls a:focus {
  outline: var(--focus-light);
}
.simple-image-slider .bx-wrapper .bx-controls a:hover{
    text-decoration: none;
    background: #cd1017;
}
.simple-image-slider .bx-wrapper .bx-controls a.bx-next{
    right: 0;
    left: auto;
    padding: 14px 8px 14px 14px;
}
.simple-image-slider .bx-wrapper .bx-controls a.disabled{
  display: none;
}
.simple-image-slider .bx-wrapper .bx-controls a i{
    display: block;
    margin: auto;
    font-size: 34px;
    text-align: center;
}
