.bg-lightGray {
    background: #f2f6f7;
}

.bg-green {
    background: #01673E;
}

.section-gap {
    padding: 70px 0 50px;
}

    .section-gap:after, .comp-right:after, .comp-left:after {
        content: "";
        clear: both;
        display: block;
    }


/* Header */
.header-main {
    position: fixed;
    z-index: 9;
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.08));
}

.top-nav {
    padding: 15px 0;
    display: flex;
    align-items: center;
    position: relative;
}

.top-nav__logo {
    max-width: 160px;
    width: 100%;
}

.hamburger-menu {
    position: absolute;
    top: 30px;
    right: 15px;
    padding: 10px;
    display: none;
}

.top-nav__wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

.top-nav__utlility {
    max-width: 55%;
}

    .top-nav__utlility ul {
        padding: 0 0 0 30px;
    }

    .top-nav__utlility li {
        display: inline-block;
        padding: 5px 10px !important;
    }

        .top-nav__utlility li::before {
            display: none;
        }

        .top-nav__utlility li a {
            font-size: 1.4rem;
            font-weight: 400;
            font-family: "Epilogue";
            color: #000;
        }

.top-nav__rightCol {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.topHeader-search {
    min-height: 36px;
    display: flex;
    align-items: center;
}

    .topHeader-search a {
        font: 400 1.4rem "Epilogue";
        color: #000;
    }

        .topHeader-search a img {
            max-width: 16px;
        }

.topHeader-search-con {
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    width: 0px;
    padding: 0;
    overflow: hidden;
    margin-left: 0;
    /* transition: all .25s ease-in-out; */
}

.topHeader-search.active > a {
    display: none;
}

.topHeader-search.active .topHeader-search-con {
    width: 250px;
    padding: 0 10px;
    border: solid 1px #ddd;
    margin-left: -24px;
}

.topHeader-search-con input {
    width: 240px;
    height: 34px;
    background: none;
    border: none;
    font-size: 14px;
    color: #333;
    margin: 0 10px;
}

    .topHeader-search-con input:focus {
        border: none;
        outline: none;
    }

.topHeader-search-con button {
    background: none;
    border: none;
    margin-top: -4px;
}

    .topHeader-search-con button:hover,
    .topHeader-search-con button:focus {
        outline: none;
        border: none;
    }

.topHeader-search-con .close img {
    max-width: 12px;
}

.top-nav__signin {
    font: 400 1.5rem "Epilogue";
    color: #000;
    margin: 0 20px;
}

    .top-nav__signin:hover {
        color: #78b63c;
    }


/* Bottom nav */
.body_overflow {
    position: relative;
    overflow: hidden;
}

.bottom-nav {
    border-top: 1px solid #333;
}

.nav-main {
    display: flex;
    justify-content: space-between;
}

    .nav-main > li {
        padding: 25px 0;
        position: relative;
    }

        .nav-main > li > a {
            text-transform: uppercase;
            padding: 0 15px;
            display: block;
            font: 700 1.7rem "Epilogue";
            color: #211E21;
        }

    .nav-main li > ul {
        background: #01673E;
        padding: 15px 0;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        white-space: nowrap;
    }

    .nav-main ul li {
        padding: 15px 30px;
        position: static;
    }

        .nav-main ul li a {
            position: relative;
        }

        .nav-main ul li::before {
            display: none;
        }

        .nav-main ul li.arrow a:before {
            content: '';
            border: solid 20px #211E21;
            border-left-color: transparent;
            border-top-color: transparent;
            border-bottom-color: transparent;
            position: absolute;
            top: 50%;
            right: 0;
            left: inherit;
            transform: translateY(-50%);
            width: 20px;
            height: 40px;
            margin-right: -30px;
            display: none;
        }

    .nav-main > li:last-child ul li.arrow a:before {
        content: '';
        border: solid 20px #211E21;
        border-right-color: transparent;
        border-top-color: transparent;
        border-bottom-color: transparent;
        position: absolute;
        top: 50%;
        right: inherit;
        left: 0;
        transform: translateY(-50%);
        width: 20px;
        height: 40px;
        margin-left: -30px;
        display: none;
    }

    .nav-main ul li.arrow:hover a:before, .nav-main > li:last-child ul li.arrow:hover a:before {
        display: block;
    }

    .nav-main ul li a {
        font: 400 1.5rem "Epilogue";
        color: #fff;
        display: block;
    }

    .nav-main > li:hover > ul {
        display: block;
    }

    .nav-main > li ul li ul {
        position: absolute;
        top: 0;
        left: 100%;
    }

    .nav-main > li:last-child ul li ul {
        position: absolute;
        top: 0;
        right: 100%;
        left: inherit;
    }

    .nav-main li ul li:hover ul {
        display: block;
    }

    .nav-main > li ul li ul {
        background: #211E21;
        min-height: 100%;
    }

        .nav-main > li ul li ul ul, .nav-main > li:last-child ul li ul ul {
            position: static;
            padding: 5px 0 0;
            display: none !important;
        }

            .nav-main > li ul li ul ul li {
                padding: 5px 0;
            }

        .nav-main > li ul li ul li a:before {
            display: none !important;
        }

        .nav-main > li ul li ul li:hover ul {
            display: block !important;
        }

/* Footer */
.comp-footer {
    background-color: #000;
    padding: 0 0 30px;
}

.comp-footer__quickLinks {
    background: #1f1f1f;
    text-align: center;
    padding: 10px 0;
    margin: 0 0 35px;
}

    .comp-footer__quickLinks ul {
        padding: 0;
    }

    .comp-footer__quickLinks li {
        display: inline-block;
        padding: 10px !important;
        list-style: none;
        color: #fff;
    }

        .comp-footer__quickLinks li:before {
            display: none;
        }

        .comp-footer__quickLinks li a {
            color: #fff;
            font-family: "Epilogue";
            font-weight: 400;
            font-size: 1.5rem;
        }

.comp-footer__address {
    color: #fff;
    font-family: "Epilogue";
    font-weight: 400;
    font-size: 1.8rem;
    padding: 0 0 20px;
}

    .comp-footer__address strong {
        display: block;
    }

.comp-footer__social {
    max-width: 300px;
    float: right;
}

    .comp-footer__social ul {
        padding: 0;
    }

    .comp-footer__social li {
        display: inline-block;
        padding: 0px 7px 10px !important;
    }

        .comp-footer__social li:first-child {
            padding-left: 0 !important;
        }

        .comp-footer__social li:before {
            display: none;
        }

.comp-footer__copy {
    color: #fff;
    font-family: "Epilogue";
    font-weight: 500;
    font-size: 1.4rem;
    padding: 10px 0 0 5px;
}



/* Hero - home */
.hero--default {
    padding: 12rem 0;
}

    .hero--default:after {
        background: linear-gradient(79.37deg, #000000 36.39%, rgba(217, 217, 217, 0) 92.76%);
    }

.comp-hero,
.comp-heroInterior {
    position: relative;
    overflow: hidden;
    padding: 0;
}

    .comp-hero:after,
    .comp-heroInterior:after {
        position: absolute;
        content: "";
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: linear-gradient(79.37deg, #000000 36.39%, rgba(217, 217, 217, 0) 92.76%);
    }

    .comp-hero figure,
    .comp-heroInterior figure {
        margin: 0;
    }

    .comp-hero img {
        width: 100%;
        object-fit: cover;
        object-position: top;
        max-height: 650px;
    }

    .comp-heroInterior img {
        width: 100%;
        object-fit: cover;
        object-position: top;
        max-height: 505px;
    }

.comp-hero__content {
    position: absolute;
    right: 0;
    top: 50%;
    left: 0;
    color: #fff;
    z-index: 2;
    transform: translateY(-50%);
}

.comp-heroInterior__content {
    position: absolute;
    right: 0;
    top: 50%;
    left: 0;
    color: #fff;
    z-index: 2;
    padding: 50px 0;
    transform: translateY(-45%);
}

.comp-hero-twoCol {
    display: flex;
    align-items: center;
    padding: 0;
}

.comp-hero-twoCol img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    max-height: 700px;
}

.comp-hero-twoCol [class*='col-'] {
    padding-left: 0;
    padding-right: 0;
}

.comp-hero-twoCol__eyebrow {
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #666;
}

.comp-hero-twoCol__content {
    padding: 30px;
    overflow: hidden;
}

.comp-hero-twoCol h1 {
    font-size: 4.8rem;
    padding-bottom: 20px;
    font-family: "Oswald", Helvetica,sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;    
}

.comp-hero-twoCol p,
.comp-hero-twoCol__author {
    font-size: 1.8rem;
    font-weight: 400;
    font-family: "Epilogue";
    color: #211E21;
}

.comp-hero-twoCol__author {
    padding: 0 0 20px;
    font-weight: 700;
}

.comp-hero-twoCol .button {
    margin-top: 10px;
}

.comp-hero-twoCol--imgRight {
    background: #F2F6F6;
    box-shadow: 0px 4px 14px 0px rgba(102, 102, 102, 0.25);    
}

.comp-hero-twoCol--imgRight [class^=col-]:first-child {
    order: 2;
}

.comp-hero-twoCol--imgRight .comp-hero-twoCol__content {
    max-width: 570px;
    float: right;    
}

.comp-breadcrumb__con {
    position: absolute;
    left: 0;
    right: 0;
    top: 25px;
    z-index: 3;
}

.comp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    list-style: none;
}

.comp-breadcrumb__item {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

    .comp-breadcrumb__item + .comp-breadcrumb__item {
        padding-left: 0.5rem;
    }

        .comp-breadcrumb__item + .comp-breadcrumb__item:before {
            content: "/";
            padding-right: 0.5rem;
            color: #fff;
        }

    .comp-breadcrumb__item a {
        color: #fff;
        font-weight: 500;
    }

.comp-twoCol {
    padding: 75px 0 75px;
}

    .comp-twoCol img {
        width: 100%;
    }

.comp-twoCol-content {
    padding: 0 0 0 60px;
    max-width: 500px;
}

    .comp-twoCol-content h3 a:hover {
        color: #01673e;
    }

    .comp-twoCol-content ul {
        padding-left: 0;
    }

        .comp-twoCol-content ul li {
            padding-bottom: 0;
        }

.newhome .comp-twoCol__title,
.comp-twoCol__title {
    font-size: 4.8rem;
    padding: 0 0 15px;
    font-family: Oswald,Helvetica,sans-serif;
}

.comp-twoCol-content__subTitle {
    text-transform: uppercase;
    color: #666666;
    font: 700 1.3rem "Arial";
    letter-spacing: 1px;
    padding: 10px 0;
}

.comp-twoCol-content .button {
    margin-top: 10px;
}

.comp-twoCol--imgRight [class^="col-"]:first-child {
    order: 2;
}

.comp-twoCol--imgRight [class^="col-"]:last-child .comp-fullCard-content {
    float: right;
}

.comp-twoCol--imgRight .comp-twoCol-content {
    padding: 0;
    max-width: 550px;
}

/* container right full width */
.section-full__wrapper {
    width: 100%;
}

.comp-left {
    width: 20%;
    padding: 0 15px;
    margin-top: -35px;
}

    .comp-left .section-title h2 {
        font-size: 3.6rem;
    }

.comp-right {
    width: 80%;
    padding: 0 15px;
}

.section-title__top {
    padding: 0 0 15px;
}

.section-title h2 {
    text-transform: uppercase;
    font-size: 3.6rem;
}

.section-title p {
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Epilogue";
    color: #333;
}

.section-title .button {
    margin-top: 10px;
}

.card-pattern1 {
}

.card-pattern1__eyebrow {
    font: 700 1.3rem "Epilogue";
    text-transform: uppercase;
    color: #666;
    padding: 0 0 15px;
}

.card-pattern1 img {
    width: 100%;
}

.card-pattern1__desc {
    padding: 10px 0;
}

    .card-pattern1__desc h4 {
        font-size: 1.8rem;
        font-family: "Epilogue";
        padding: 0px 0 10px;
    }

        .card-pattern1__desc h4 a {
            color: #333;
        }

.card-pattern1__dateCon {
    background: #201e21;
    display: flex;
    align-items: stretch;
}

.card-pattern1__date {
    padding: 30px 15px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #fff;
    max-width: 165px;
    min-width: 130px;
}

.card-pattern1__pubDate {
    font-size: 1.4rem;
}

.card-pattern1__from,
.card-pattern1__to {
    font: 500 5rem "Oswald";
}

    .card-pattern1__from span,
    .card-pattern1__to span {
        font: 500 1.5rem "Oswald";
        display: block;
        text-transform: uppercase;
        margin-bottom: -10px;
    }

.card-pattern1__to {
    display: flex;
    align-items: center;
}

.card-pattern1__date-title {
    font: 400 1.5rem "Epilogue";
    color: #fff;
    padding: 15px;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

/* .section-full__main {
    margin-left: calc(-1440px/2);
    display: flex;
    align-items: center;
} */

/* slider dots */
.comp-right .tns-nav,
.comp-partners .tns-nav,
.comp-bio__slider .tns-nav {
    text-align: center;
    padding: 25px 0 10px;
}

    .comp-right .tns-nav > [aria-controls],
    .comp-partners .tns-nav > [aria-controls],
    .comp-bio__slider .tns-nav > [aria-controls] {
        width: 14px;
        height: 14px;
        padding: 0;
        margin: 0 5px;
        border-radius: 50%;
        background: #bbb;
        border: 0;
    }

    .comp-right .tns-nav button:focus,
    .comp-partners .tns-nav button:focus,
    .comp-bio__slider .tns-nav button:focus {
        outline: none;
    }

    .comp-right .tns-nav > .tns-nav-active,
    .comp-partners .tns-nav > .tns-nav-active,
    .comp-bio__slider .tns-nav > .tns-nav-active {
        background: #211E21;
    }

.c-event-slider.tns-slider {
    display: flex;
}

    .c-event-slider.tns-slider .card-pattern1__content {
        height: 100%;
        background: #f5f5f5;
        position: relative;
    }

.c-event-slider .card-pattern1__desc {
    padding: 25px 20px 45px;
}

.c-event-slider .card-pattern1__arrow {
    text-align: right;
    padding: 10px 0 0;
    position: absolute;
    right: 25px;
    bottom: 50px;
}

.comp-partners.border-bottom {
    border-bottom: 1px solid #ddd;
}

.comp-partners h2 {
    text-align: center;
    text-transform: uppercase;
}

.comp-partners__slider {
    padding: 15px 0;
    margin: 0 auto;
}

.comp-partners__item {
    text-align: center;
}

    .comp-partners__item a {
        font: 400 1.4rem "Arial";
        color: #01673e;
    }

    .comp-partners__item img {
        max-width: 150px;
        width: 100%;
    }

    .comp-partners__item span {
        display: block;
    }

.comp-video__item {
    position: relative;
    margin-bottom: 15px;
    color: #fff;
}

    .comp-video__item:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        /* background: rgba(0, 0, 0, 0.65); */
    }

.comp-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.25rem;
    text-align: center;
    max-width: 115px;
}

    .comp-video__play i {
        display: block;
        padding: 5px 0 15px;
        font-size: 4rem;
    }

    .comp-video__play span {
        font-size: 5rem;
    }

.comp-video .modal-body {
    position: relative;
    padding: 0px;
}

.comp-video .close {
    position: absolute;
    right: -25px;
    top: -25px;
    z-index: 999;
    font-size: 4rem;
    font-weight: normal;
    opacity: 1;
    width: 50px;
    height: 50px;
    border-radius: 25px;
}

.c-video-popup {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    padding: 15px;
    display: none;
}

.c-video-popup__container {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.c-video-popup .close {
    background: #fff;
    padding: 10px;
    border-radius: 25px;
    opacity: 1;
    font-size: 3rem;
    font-weight: 400;
    width: 50px;
    height: 50px;
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 2;
}


/* Modal */
/* .popup-close {
    position: absolute;
    top: 15px;
    right: 25px;
    padding: 5px;    

    img {
        transition: $transition-ease-fast;
        transform-origin: center center;
        opacity: 0.25;
    }

    &:hover {
        img {
            transform: scaleX(-1);
            opacity: 1;
        }        
    }
} */

.overflow-hidden {
    overflow: hidden;
}

.comp-imgOverlay {
    text-align: center;
    position: relative;
    color: #fff;
    padding: 14rem 0 10rem;
    background-position: top center;
    background-size: cover;
}

.comp-imgOverlay__wrapper {
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.comp-imgOverlay__eyebrow {
    font: 700 1.3rem "Epilogue";
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comp-imgOverlay h2 {
    text-transform: uppercase;
    padding: 10px 0 20px;
    font-family: "Oswald";
    font-size: 4.8rem;
    font-weight: 500;
}

.comp-imgOverlay p {
    color: #fff;
}

.comp-imgOverlay:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.comp-imgOverlay .button {
    margin-top: 20px;
}

.comp-magazine-spotlight {
    margin: 50px 0;
    position: relative;
    padding: 0;
}

    .comp-magazine-spotlight:before,
    .comp-magazine-spotlight:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 50px;
        background: #fff;
    }

    .comp-magazine-spotlight:after {
        top: inherit;
        bottom: 0;
    }

.comp-magazine-spotlight__img-wrapper {
    position: relative;
    z-index: 2;
    max-width: 575px;
    margin: 0 auto;
}

.comp-magazine-spotlight h2 {
    font: 500 4.8rem "Oswald";
}

.comp-magazine-spotlight__content {
    max-width: 480px;
    padding: 40px 0 40px 60px;
}

    .comp-magazine-spotlight__content h2 {
        text-transform: uppercase;
        line-height: 1.25;
    }

    .comp-magazine-spotlight__content h3 {
        font-size: 2.4rem;
    }

    .comp-magazine-spotlight__content p {
        font-size: 1.7rem;
    }

    .comp-magazine-spotlight__content .button__wrapper--flex {
        padding-top: 15px;
    }

.comp-magazine-spotlight--imgRight [class^="col-"]:first-child {
    order: 2;
}

.comp-magazine-spotlight--imgRight .comp-magazine-spotlight__content {
    max-width: 580px;
}

.comp-card-slider__content {
    border-radius: 8px;
    padding: 5rem;
    margin: 0.8rem 1.6rem;
    background-color: #fff;
    border: 0;
    min-height: 48rem;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 16px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04), inset 0px 9px 0px #7FA7A2;
}

    .comp-card-slider__content h3 {
        font: 700 2rem "Epilogue";
    }

    .comp-card-slider__content p {
        font-size: 1.8rem;
    }


.comp-subscription {
    padding: 0px;
}
.comp-subscription__left {
    display: flex;
}

.comp-subscription__left {
    padding-left: 35px;
    background: url("../Images/mail-icon.png") no-repeat;
    background-size: 28px;
    background-position: top 5px left;
}

.comp-subscription__icon {
    max-width: 22px;
    height: 100%;
    margin: 6px 10px 0 0;
}

.comp-subscription .container {
    max-width: 1024px;
}

.EPiServerForms .Form__Element .Form__Element__Caption {
    font-weight: bold;
}
.comp-subscription h4 {
    font-size: 2.4rem;
    padding-top: 0;
}

.comp-subscription__form input:not([type="checkbox"]):not([type="radio"]) {
    border-radius: 4px;
    font: 400 1.4rem "Epilogue";
    min-height: 50px;
    overflow: hidden;
    padding: 15px;
}
.FormChoice{
    margin: 0 0 3rem 0 !important;
}
.Form__Element__Caption {
    padding-bottom: 10px;
}
.custom-form-row > label{
    width: 20%;
}
.custom-form-row > input{
    width: 70%;
    display: inline-block;
}


.comp-subscription__form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(102, 102, 102, 0.5);
    opacity: 1;
}

    .comp-subscription__form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: rgba(102, 102, 102, 0.5);
    }

    .comp-subscription__form input::-ms-input-placeholder { /* Microsoft Edge */
        color: rgba(102, 102, 102, 0.5);
    }



.comp-subscription__form .form-group {
    position: relative;
}

.comp-subscription__form .comp-subscription__email {
    padding-right: 60px;
}

.comp-subscription__btn {
    width: 30px !important;
    height: 30px !important;
    background: #211E21 !important;
    border-radius: 25px;
    padding: 5px !important;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 125px;
    right: 25px;
    margin-top: -60px;
}

.comp-subscription__info h3{
    color: #01673E;
}
.comp-subscription__info,
.comp-subscription__info p {
    padding: 10px 0;
    font: 400 1.2rem/1.2 "Epilogue";
}


/* Content detail */
.left-align,
.right-align {
    width: 100%;
    margin: 0 0 20px;
}

.comp-contentDetail__wrapper {
    /* padding: 50px 0;     */
}

    .comp-contentDetail__wrapper hr {
        max-width: 1410px;
        margin: 0 auto;
    }



    .comp-contentDetail__wrapper h2,
    .comp-contentDetail__wrapper .section-title h2 {
        font-size: 3.6rem;
        text-transform: uppercase;
        padding: 0 0 20px;
    }

.comp-contentDetail__container {
    padding-bottom: 25px;
}

    .comp-contentDetail__container hr {
        margin: 25px 0 35px;
    }

.comp-contentDetail__two-col {
    padding: 25px 0;
}

.section-gap .comp-contentDetail__two-col {
    padding: 0;
}

.comp-contentDetail__two-col .card-pattern1 {
    background: #f5f5f5;
    padding: 30px;
    margin-bottom: 25px;
}

.comp-contentDetail__two-col .card-pattern1--noBg {
    background: none;
    padding: 0
}

.card-pattern1__desc {
    padding: 25px 0 0;
}

/* Accordion */

.comp-accordion-container {
    padding: 45px 0 0;
}

.comp-accordion {
    padding: 15px 0;
}

.comp-accordion__card {
    padding: 20px 10px 20px;
    border-top: 1px solid #ddd;
}

    .comp-accordion__card:last-child {
        border-bottom: 1px solid #ddd;
    }

.comp-accordion__card-header h4 {
    font-size: 1.8rem;
}

    .comp-accordion__card-header h4 a {
        position: relative;
        display: block;
        padding-right: 40px;
    }

        .comp-accordion__card-header h4 a:after {
            content: "\f107";
            position: absolute;
            top: 50%;
            right: 0;
            font-size: 3rem;
            line-height: 1;
            transform: translateY(-50%);
            font-weight: 400;
            font-family: FontAwesome;
        }

        .comp-accordion__card-header h4 a.active:after {
            content: "\f106";
        }

.comp-accordion__card-body {
    padding: 10px 50px 0 0;
    display: none;
}

    .comp-accordion__card-body ul li,
    .comp-accordion__card-body ul li a,
    .comp-accordion__card-body ol li,
    .comp-accordion__card-body ol li a {
        font-size: 1.6rem;
    }

.toggle-accordion:before {
    content: "Expand All";
}

.toggle-accordion.active:before {
    content: "Collapse All";
}

.comp-accordion__toggleCon {
    width: 100%;
    text-align: right;
    padding: 0 0 25px;
    font-weight: 700;
}

/* you might also like */
.comp-yml__item {
    padding: 20px 0 20px;
}

.comp-yml__category {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.3rem;
    color: #666;
}

.comp-yml__item h4 {
    font-size: 2.4rem;
    padding-top: 10px;
}

.comp-contentDetail__wrapper .comp-yml .section-title h2 {
    font-size: 3.6rem;
}

.right-rail .ads {
    display: inline-block;
}

    .right-rail .ads a {
        margin: 10px 0;
        display: inline-block;
        width: 100%;
    }

    .right-rail .ads img {
        width: 100%;
    }

/* Bio card */
.comp-bio__wrapper {
    padding: 25px 0 0;
}

    .comp-bio__wrapper ul {
        list-style: none;
        padding: 0;
    }

        .comp-bio__wrapper ul li {
            padding: 0 0 20px;
        }

            .comp-bio__wrapper ul li:before {
                display: none;
            }

.comp-bio__item h3 {
    padding: 15px 0 5px;
}

    .comp-bio__item h3 a {
        font-size: 1.8rem;
    }

.comp-bio__item {
    padding: 10px 0 20px;
}

.comp-bio__img {
    border-bottom: 8px solid #00673E;
}

    .comp-bio__img img {
        width: 100%;
    }

.comp-bio__slider .comp-bio__item {
    text-align: center;
}

.comp-bio__slider {
    text-align: center;
}

    .comp-bio__slider .button {
        float: none;
        margin: 25px 0;
    }

.naiop-address {
    padding: 15px 0;
}

.naiop-address__title {
    text-transform: uppercase;
    font-weight: 700;
}

.naiop-address a {
    font-weight: 400;
}

/* Cookie */
.comp-cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f0f0f0;
    padding: 12px 115px 10px 15px;
    display: none;
    z-index: 2;
}

    .comp-cookie-bar.show {
        display: block;
    }

    .comp-cookie-bar p {
        color: #000;
        font-size: 1.4rem;
        padding: 5px 0;
    }

        .comp-cookie-bar p a,
        .comp-cookie-bar a {
            color: #000;
            text-decoration: underline;
        }

    .comp-cookie-bar button.close {
        position: absolute;
        top: 12px;
        right: 20px;
        background: #01673e;
        color: #fff;
        opacity: 1;
        padding: 1rem 1.2rem;
        font-weight: 400;
        border-radius: 5px;
    }

/* Notification bar */
.comp-notification-bar {
    text-align: center;
    padding: 10px 40px 10px 10px;
    background: #01673e;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: none;
}

.comp-notification-bar.show {
    display: block;
}

    .comp-notification-bar p {
        color: #fff;
        padding: 5px 0;
        font-size: 1.2rem;
        line-height: 1.1;
    }

        .comp-notification-bar p a,
        .comp-notification-bar a {
            color: #fff;
            font-weight: 400;
            font-size: 1.4rem;
            text-decoration: underline;
        }

    .comp-notification-bar button.close {
        position: absolute;
        top: 15px;
        right: 20px;
        color: #fff;
        opacity: 1;
        font-weight: 400;
        border-radius: 5px;
        font-size: 2.5rem;
    }

/* fitler table */
.filter-table {
    padding: 25px 0;
    border: none;
}

    .filter-table thead {
        background: rgba(199, 199, 199, 0.1);
        text-transform: uppercase;
        color: #211E21;
    }

table.dataTable.filter-table thead th {
    padding-top: 15px;
    padding-bottom: 15px;
}

table.dataTable.filter-table thead .sorting.sorting_asc {
    background-image: url(../Images/table-ascending-icon.png) !important;
}

table.dataTable.filter-table thead .sorting.sorting_desc {
    background-image: url(../Images/table-descending-icon.png) !important;
}

table.dataTable.filter-table thead .sorting {
    background-image: url(../Images/table-ascending-default-icon.png) !important;
    background-position: center right 8px;
    min-width: 150px;
}

table.dataTable.filter-table tbody tr td {
    padding-top: 12px;
    padding-bottom: 12px;
}

.filter-table tbody tr,
.sorting_1 {
    background: #fff !important;
}

table.dataTable.filter-table {
    border: none;
}

    table.dataTable.filter-table tbody tr {
        background: #fff;
    }

.dataTables_wrapper .dataTables_paginate .paginate_button {
    font-weight: 700;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: none;
    border-color: transparent;
    color: #333!important;
    box-shadow: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #01673e;
    border-radius: 100%;
    color: #fff!important;
    border-color: #01673e;
}


.paginate_button.next {
    position: relative;
    font-size: 0;
    width: 20px;
    height: 20px;
    margin-left: 20px!important;
}

.paginate_button.next::before {
    width: 18px;
    height: 18px;
    border-right: 1px solid #003349;
    border-top: 1px solid #003349;
    transform: rotate(45deg);
    top: -2px;
    left: calc(50% - 18px);
    position: absolute;
    z-index: 1;
    content: "";
}

.paginate_button.previous {
    position: relative;
    font-size: 0;
    width: 20px;
    height: 20px;
    margin-right: 20px!important;
}

.paginate_button.previous::before {
    width: 18px;
    height: 18px;
    border-left: 1px solid #003349;
    border-bottom: 1px solid #003349;
    transform: rotate(45deg);
    top: -2px;
    left: 10px;
    position: absolute;
    z-index: 1;
    content: "";
}

.dataTables_wrapper .dataTables_paginate {
    width: 100%;
    text-align: center;
}

.dataTables_filter label {
    font-weight: bold;
}

.dataTables_wrapper .dataTables_filter input[type="search"] {
    background: white;
    border-radius: 0;
    padding: 10px;
}

.dataTables_wrapper .dataTables_length select {
    background: #fff;
}

.sorting_asc,
.sorting_desc {
    color: #01673E;
}

/* Chapters */
.comp-chapters {
}

.comp-chapters__search {
    border: 1px solid #000;
    display: inline-block;
    padding: 7px 10px 7px 30px;
    max-height: 45px;
    margin: 10px 0 0;
    position: relative;
}

    .comp-chapters__search input {
        border: none;
        padding-left: 5px;
    }

        .comp-chapters__search input:focus,
        .comp-chapters__search button:focus {
            outline: none;
            border: none;
        }

    .comp-chapters__search button {
        border: none;
        background: none;
        max-width: 15px;
        position: absolute;
        left: 10px;
        top: 10px;
    }

.comp-chapters__row {
    padding-top: 20px;
}

    .comp-chapters__row h3 {
        font-size: 2.4rem;
        font-family: "Arial", Helvetica, sans-serif;
        font-weight: 700;
    }

.comp-chapters__columns {
    padding: 15px 0;
    margin: 0 -15px;
}

.comp-chapters__col {
    width: 100%;
    float: left;
    padding: 0 15px;
}

.comp-chapters__item {
    width: 100%;
    background: rgba(199, 199, 199, 0.1);
    padding: 15px;
    margin: 0 0 20px;
    border-bottom: 3px solid #00673E;
}

    .comp-chapters__item > li > a {
        font-weight: 700;
        font-size: 1.8rem;
        display: block;
        position: relative;
        color: #000;
    }

        .comp-chapters__item > li > a:after {
            content: "\f107";
            position: absolute;
            top: 0%;
            right: 0;
            font-size: 2.5rem;
            line-height: 1;
            font-weight: 400;
            font-family: FontAwesome;
            color: #01673E;
        }

        .comp-chapters__item > li > a.active:after {
            content: "\f106";
        }

.comp-chapters__sub {
    display: none;
    padding: 15px 0 0;
}

    .comp-chapters__sub li {
        padding: 0 0 5px;
    }

        .comp-chapters__sub li a {
            font-size: 1.8rem;
            font-weight: 400;
        }

.comp-chapters__info {
    padding: 15px 0;
}

    .comp-chapters__info h3 {
        font-size: 2.4rem;
    }

    .comp-chapters__info p a {
        color: inherit;
        font-weight: 400;
        text-decoration: underline;
    }

/* Membership types */
.comp-membershipTypes__list {
    margin: 25px 0;
}

.comp-membershipTypes__item {
    /* display: flex;
    align-items: center; 
    border-top: 1px solid #c0c0c0; */
    padding: 25px;
    border-top: 1px solid #c0c0c0;
}

.comp-membershipTypes__list .comp-membershipTypes__item:last-child {
    border-bottom: 1px solid #c0c0c0;
}

.comp-membershipTypes__list .comp-membershipTypes__item:nth-child(even) {
    background: rgba(217, 217, 217, 0.29);
}

.comp-membershipTypes__titleCon {
    min-width: 300px;
    max-width: 300px;
    /* border-right: 1px solid #333;  
    margin-right: 25px; */
    margin-bottom: 15px;
}

.comp-membershipTypes__item h3 {
    font-size: 2.4rem;
    padding: 0;
}

.comp-membershipTypes__amount {
    font: 700 4.8rem "Oswald";
    ;
}

.comp-membershipTypes__type {
    font-size: 1.8rem;
    font-weight: 700;
}

.comp-membershipTypes__item p:last-child {
    padding: 0;
}

.table-alternatingRow {
    margin: 25px 0;
    border: none;
}

    .table-alternatingRow tbody tr {
        /* display: flex;
    align-items: center; */
        padding: 0;
        display: inline-block;
    }

        .table-alternatingRow tbody tr td {
            display: block;
            padding: 25px;
            border: none;
        }

        .table-alternatingRow tbody tr > td:first-child {
            /* min-width: 300px;
    max-width: 300px; 
    border-right: 1px solid #333;
    margin-right: 25px;*/
        }

            .table-alternatingRow tbody tr > td:first-child h3 {
                font-size: 2.4rem;
                padding: 0;
                font-family: "Arial";
                color: #fff;
            }

        .table-alternatingRow tbody tr > td:first-child {
            font: 700 4.8rem "Oswald";
            background: #01673E;
            color: #fff;
        }

            .table-alternatingRow tbody tr > td:first-child p {
                color: #fff;
            }

        .table-alternatingRow tbody tr > td p:last-child {
            padding: 0;
        }

    .table-alternatingRow tbody tr {
        background: rgba(127, 167, 162, 0.1);
        margin: 0 0 25px;
    }

        .table-alternatingRow tbody tr:nth-child(even) > td:first-child {
            background: #000;
        }

/* Terms and Definitions */
.comp-definitions__alphabets li {
    display: inline-block;
    margin: 3px;
}

.comp-definitions__alphabets a {
    border: 1px solid #C9CCD4;
    padding: 10px;
    text-transform: uppercase;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .comp-definitions__alphabets a.active {
        background: #00673E;
        color: #fff;
        border-color: #00673E;
    }

.comp-definitions__item {
    padding: 25px 0 15px;
    display: flex;
    border-bottom: 1px solid #ccc;
}

.comp-definitions__desc {
    padding: 0 0 15px;
}

    .comp-definitions__desc h3 {
        font-size: 2.4rem;
    }

.comp-definitions__letter {
    text-transform: uppercase;
    font-size: 4.8rem;
    font-weight: 700;
    min-width: 85px;
    line-height: 1;
    padding: 10px 0;
    color: #01673E;
}

.comp-definitions__content {
    position: relative;
}

.comp-definitions__hasScroll {
    overflow-y: auto;
    max-height: 850px;
    padding-right: 60px;
    margin: 0 0 25px;
}

    .comp-definitions__hasScroll .comp-definitions__item:last-child {
        border: none;
    }

.comp-definitions__wrapper [class*="col-"] {
    order: 2;
}

    .comp-definitions__wrapper [class*="col-"]:last-child {
        order: 1;
    }

/* Landing */
.cards-wrapper {
    padding: 40px 0;
}

    .cards-wrapper .card-pattern1 {
        margin: 0 0 40px;
    }

.img-responsive {
    padding: 0 0 15px;
}

    .img-responsive img {
        width: 100%;
    }

.richtext-threeColumn {
    padding: 25px 0 15px;
}

/* Search */
.c-search__result-count {
    padding: 0 0 50px;
}

    .c-search__result-count .comp-pagination ul {
        display: none;
    }

/* Filter */
.c-search-filter {
    padding: 0px 15px 40px 0;
}

.c-search-filter__title {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 0 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.c-search-filter__card {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

    .c-search-filter__card ul {
        padding-top: 20px;
    }

        .c-search-filter__card ul li {
            position: relative;
            padding: 0;
        }

            .c-search-filter__card ul li:before {
                display: none;
            }

            .c-search-filter__card ul li label {
                margin-bottom: 10px;
                cursor: pointer;
            }

                .c-search-filter__card ul li label span {
                    padding-left: 5px;
                }

        .c-search-filter__card ul ul {
            padding: 0 0 0 32px;
            display: none;
        }

.c-search-filter__card-header {
    transition: all .5s ease-in-out;
}

    .c-search-filter__card-header a {
        font-weight: 600;
        font-size: 19px;
        display: block;
        position: relative;
        transition: all .5s ease-in-out;
        text-decoration: none;
    }

        .c-search-filter__card-header a:before {
            position: absolute;
            top: 10px;
            right: 0;
            font-size: 25px;
            line-height: 1;
            transition: all .25s ease-in-out;
            transform: rotate(135deg);
            font-weight: 400;
            border-right: 1px solid #000;
            border-top: 1px solid #000;
            content: "";
            width: 10px;
            height: 10px;
        }

    .c-search-filter__card-header.active a:before {
        transform: rotate(315deg);
        top: 12px;
    }

.c-search-filter__card-body {
    display: none;
}

    .c-search-filter__card-body ul {
        padding-left: 0;
    }

.c-search-filter__level3 {
    position: absolute;
    right: 0;
    transition: all .5s ease-in-out;
    font-style: normal;
    cursor: pointer;
}

    .c-search-filter__level3:before {
        position: absolute;
        top: 5px;
        right: 2px;
        font-size: 25px;
        line-height: 1;
        transition: all .25s ease-in-out;
        transform: rotate(135deg);
        font-weight: 400;
        border-right: 1px solid #000;
        border-top: 1px solid #000;
        content: "";
        width: 10px;
        height: 10px;
    }

    .c-search-filter__level3.active:before {
        transform: rotate(315deg);
        top: 10px;
    }


.selected-filters {
    padding: 0 0 15px;
}

    .selected-filters ul {
        width: 100%;
        margin-top: 15px;
        padding-left: 0;
    }

        .selected-filters ul li {
            background: rgba(239, 242, 244, 0.5);
            display: inline-block;
            padding: 8px 40px 8px 20px;
            font-size: 1.6rem;
            margin: 0 10px 10px 0;
            position: relative;
        }

            .selected-filters ul li:before {
                display: none;
            }

            .selected-filters ul li a {
                padding-left: 10px;
                position: absolute;
                right: 10px;
                top: 8px;
                font-weight: 600;
                text-decoration: none;
                padding: 0 5px;
            }

            .selected-filters ul li.selected-filters__clearFilters a {
                position: relative;
                line-height: 1;
                top: 1px;
                font-weight: 400;
                color: inherit;
            }

            .selected-filters ul li i {
                font-style: normal;
            }

            .selected-filters ul li .fa {
                font-size: 18px;
            }

            .selected-filters ul li.selected-filters__clearFilters {
                padding: 0 0 0 10px;
                font-size: 17px;
                background: none;
                cursor: pointer;
            }

.selected-filters__label {
    font-weight: 700;
    padding: 10px 0 0;
    width: 180px;
}


.update-search {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 0 25px;
}

    .update-search input {
        border: 1px solid #000;
        padding: 12px;
        width: 100%;
    }

    .update-search button {
        border: 1px solid #01673e;
        background: #01673e;
        padding: 7px 15px;
        color: #fff;
        min-width: 140px;
        font-size: 1.4rem;
    }

.c-search__sortBy {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}

    .c-search__sortBy div {
        font-weight: 700;
        margin: 0 15px 0 0;
    }

    .c-search__sortBy select {
        border: 1px solid #000;
        padding: 7px;
        min-width: 200px;
        font-size: 1.6rem;
    }

        .c-search__sortBy select:focus {
            outline: none;
        }

        .c-search__sortBy select option {
            font-size: 1.5rem;
        }

.c-search-results {
    padding: 0 0 25px;
}

.c-search-results__item {
    border-top: 1px solid #ddd;
    padding: 25px 0 15px;
}

.c-search-results h4 {
    padding: 0;
    font-size: 2.2rem;
}

    .c-search-results h4 i {
        font-size: 2rem;
        margin-right: 5px;
        color: #999;
    }

.c-search-results__date {
    font-size: 1.5rem;
    padding: 0 0 15px;
}


.top-pagination {
    padding: 0 0 10px;
}

    .top-pagination p {
        display: none;
    }

    .top-pagination .comp-pagination ul {
        justify-content: flex-start;
        padding-left: 0;
    }

/* Pagination */
.comp-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -15px;
    padding-left: 0;
}

    .comp-pagination ul li {
        margin: 0 4px;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        overflow: hidden;
        padding: 0;
    }

        .comp-pagination ul li:before {
            display: none;
        }

        .comp-pagination ul li:first-child.active {
            background: none;
        }

            .comp-pagination ul li:first-child.active span.current.prev {
                color: #000;
                opacity: 0.25;
            }

        .comp-pagination ul li:first-child span i {
            max-width: 20px;
            overflow: hidden;
        }

        .comp-pagination ul li:last-child.active {
            background: none;
        }

            .comp-pagination ul li:last-child.active span.current.next {
                color: #000;
                opacity: 0.25;
                font-weight: 700;
            }

        .comp-pagination ul li:last-child span i {
            max-width: 20px;
            overflow: hidden;
        }

        .comp-pagination ul li:first-child,
        .comp-pagination ul li:last-child {
            border: none;
        }

            .comp-pagination ul li:first-child a,
            .comp-pagination ul li:last-child a {
                display: block;
            }

                .comp-pagination ul li:first-child a span,
                .comp-pagination ul li:last-child a span {
                    max-width: 20px;
                    overflow: hidden;
                    margin-left: 10px;
                }

                .comp-pagination ul li:last-child a span {
                    margin-left: 0;
                }

        .comp-pagination ul li.active {
            background-color: #01673e;
        }

            .comp-pagination ul li.active > span {
                color: #fff;
                font-family: "Arial";
                font-size: 1.6rem;
                line-height: 1.25;
            }

            .comp-pagination ul li.active a {
                color: #fff;
            }

        .comp-pagination ul li.disabled {
            cursor: none;
            pointer-events: none;
        }

            .comp-pagination ul li.disabled a {
                opacity: 0.75;
                cursor: default;
            }

            .comp-pagination ul li.disabled i {
                color: #000;
                font-size: 2rem;
                font-family: "Arial";
                font-weight: 700;
            }

        .comp-pagination ul li a {
            font-weight: 500;
            display: flex;
            width: 38px;
            align-items: center;
            justify-content: center;
            height: 38px;
            line-height: 1;
            color: #000;
            margin-left: 0;
            border: none;
            padding: 0;
            text-decoration: none;
        }

            .comp-pagination ul li a:hover {
                background: #fff;
                color: inherit;
            }

        .comp-pagination ul li i {
            font-family: "Material Icons";
            font-size: 4rem;
            -webkit-text-stroke: 1px #fff;
            font-style: normal;
        }

        .comp-pagination ul li span {
            font-weight: 500;
        }


        .comp-pagination ul li.next {
            cursor: pointer;
        }

.comp-pagination__count {
    padding-top: 20px;
}


.social-share {
    position: absolute;
    top: 50px;
    right: 0;
    background: #fff;
    z-index: 4;
}

    .social-share ul {
        display: flex;
        padding: 12px 8px;
    }

        .social-share ul li {
            padding: 0 3px;
            max-width: 32px;
            margin: 0 3px;
        }

            .social-share ul li img {
                width: 100%;
                display: block;
            }

            .social-share ul li:before {
                display: none;
            }

/* Listing page */
.c-listing-results {
    padding: 0 0 25px;
}

.c-listing-results > .row > .col-md-6 {
    max-width: 100%;
    flex: inherit;
}

.c-listing__item {
    background: rgba(245,246,248,.6);
    margin: 0 0 30px;
    display: flex;
    height: calc(100% - 30px);    
}

.c-listing__item > div > img {
    display: none;
}

.c-listing__item img {
    object-fit: contain;
    object-position: top;
}

.c-listing__content {
    padding: 20px;
    width: 100%;
}

.c-listing__content h4 i {
    font-size: 2rem;
    margin-left: 3px;
    position: relative;
    bottom: -2px;
}

.c-listing__content h4 {
    padding: 0 0 15px;
    font-size: 1.85rem;
}

.c-listing__eventInfo {
    width: 100%;
    padding: 20px 20px 10px;
    background: #f5f6f8;
}

.c-listing__date p strong {
    display: block;
}

.c-listing__category {
    text-transform: uppercase;
    font-size: 1.45rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    line-height: 1.2;
    margin: 0 0 15px;
}

.c-listing__category i {
    max-width: 50px;
    width: 100%;
    display: inline-flex;
    margin-right: 10px;
}

.c-listing__eventInfo .link-arrow {
    margin: 0 0 20px;
    display: inline-block;
    text-transform: uppercase;
}

.c-listing-results--checked .c-listing__item > div > img {
    display: block;
}

.c-listing-results--checked .c-listing__item {
    flex-wrap: wrap;
}

.c-listing-results--checked .c-listing__eventInfo {
    align-self: flex-end;
}

.c-listing-results.c-listing-results--checked > .row > .col-md-6 {
    max-width: 50%;
    flex: 0 0 50%;
}

.c-featuredStory {
    background: #211E21;
    padding: 0;
    margin-bottom: -80px;
}

.c-featuredStory .container {
    transform: translateY(-25px);
}

.c-featuredStory .card-twoCol__content p {
    height: 75px;
}

.card-twoCol {
    display: flex;
    width: 100%;
    height: calc(100% - 30px);
    background: #F2F6F6;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(0, 0, 0, 0.00);
    margin: 0 0 30px;
}

.card-twoCol__img {
    width: 48%;
}

.card-twoCol__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-twoCol--30x70 .card-twoCol__img img {
    object-fit: fill;
}

.card-twoCol__content {
    width: 52%;
    padding: 25px 15px;
    display: flex;
    align-items: center;
}

.card-twoCol h3 {
    color: #000;
}

.card-twoCol__content h3,
.card-twoCol__content p {
    overflow: hidden;
    height: 60px;    
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    margin: 0 0 15px;
}

.card-twoCol__content p {
    height: 55px;
}

.card-twoCol__tag {    
    font: 700 1.3rem "Arial";
    background: #211E21;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 5px;
    display: none;
}

.card-twoCol--featured .card-twoCol__tag {
    display: block;
}

.card-twoCol--30x70 .card-twoCol__img {
    width: 45%;
}

.card-twoCol--30x70 .card-twoCol__content {
    width: 55%;
}

.card-twoCol--30x70 .card-twoCol__content p {
    font: 18px/1.35 "Arial";
}

.card-twoCol--30x70 .card-twoCol__content h3, 
.card-twoCol--30x70 .card-twoCol__content p {
    height: auto;
    overflow: inherit;
    display: block;
}

.c-full-dark {
    background: #211E21;
    padding: 60px 0 60px;
}

.c-full-dark.bg-green {
    background: #01673E;
    padding: 30px 0;
}

.c-full-dark__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    color: #fff;
    flex-direction: column;
}

.c-full-dark__item--noFlex {
    display: inherit; 
}

.c-full-dark__item--noFlex .button {
    margin: 0 auto;
    float: none;
}

.c-full-dark__item h2 {
    font-family: "Oswald",Helvetica,sans-serif;;
    font-size: 3.6rem;
    text-transform: uppercase;
    color: #fff;
    padding-right: 30px;
    padding-left: 30px;
}

.c-full-dark__item p {
    color: #fff;
    font-size: 2.4rem;
    line-height: 1.3;
    font-family: Arial, Helvetica, sans-serif;
}

.c-advertisement {
    padding: 35px;
    /* background: #fff; */
}

.c-advertisement .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sideRail-adv:has(*)::before {
    content: "ADVERTISEMENT";
    font-size: 1.2rem;
    color: #777;
    font-weight: 700;
    position: absolute;
    top: 20px;
}

.c-advertisement.bg-green .container:before,
.cards-overlap .sideRail-adv:before {
    color: #fff;
}

.sideRail-adv {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.no-gap {
    padding: 3px 0;
}

.bottom-overlap {
    transform: translateY(50px);
}

.cards-overlap {
    background: #01673E;
}

.cards-overlap .bg-white {
    border-radius: 6px;
    padding-bottom: 30px;
    margin-bottom: -105px;
    transform: translateY(-30px);
}

.cards-overlap .section-title {
    padding: 15px 0;
}

.cards-overlap-slider {
    transform: translateY(-20px);
    margin-bottom: -80px;
    display: flex;
}

.c-rightRail {
    padding: 40px;
    background: #E5E5E5;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    filter: drop-shadow(0px 4px 14px rgba(102, 102, 102, 0.25));
    border-radius: 6px;
}

.c-rightRail__item {
    border-radius: 6px;
    overflow: hidden;
}
.c-rightRail__item > section {
    padding: 0;
}

.c-rightRail__wrapper {
    width: 100%;
}

.c-rightRail__item img {
    width: 100%;
}

.c-related {
    padding: 0;
    transform: translateY(-25px);
    margin-bottom: -50px;
}

.c-related__wrapper {
    padding: 75px 0;
}

.c-social-share {
    display: flex; 
    flex-wrap: wrap;
    list-style: none;
}

.c-social-share li {
    padding: 0 15px;
}

.random-slider .slick-prev, 
.random-slider .slick-next,
.cards-overlap-slider .slick-prev,
.cards-overlap-slider .slick-next  {
    z-index: 2;
}

.random-slider .slick-prev:before, 
.random-slider .slick-next:before,
.cards-overlap-slider .slick-prev:before,
.cards-overlap-slider .slick-next:before {
    display: block;
    font-size: 0px;
    opacity: 1;
    width: 46px;
    height: 46px;
    font-size: 0;
    margin-top: -25px;    
}

.random-slider .slick-next:before,
.cards-overlap-slider .slick-next:before {
    background: url("../Images/right-arrow.svg") no-repeat;    
    margin-left: -25px;
    background-size: contain;
}

.random-slider .slick-prev:before,
.cards-overlap-slider .slick-prev:before {
    background: url("../Images/left-arrow.svg") no-repeat;    
    margin-right: -25px;
    background-size: contain;
}

.random-slider .slick-prev,
.cards-overlap-slider .slick-prev {
    left: 0;
}

.random-slider .slick-next,
.cards-overlap-slider .slick-next {
    right: 0;
}

.magazineNav {
    background: #666;
    padding: 5px 5px 2px;
    position: sticky;
    top: 161px;
    z-index: 3;
    margin-bottom: 0;
}

.magazine__figure img {
    max-width: 210px;
}

.magazineNav__utility__list {
    padding: 6px 0 0;
}

.magazineNav__utility__list .magazineNav__utility__item+.magazineNav__utility__item,
.magazineNav__magazine__list {
    border: none;
}

.magazineNav__utility__list .magazineNav__utility__item a {
    font-size: 1.5rem;
    font-family: "Epilogue";
    font-weight: 400;
}

.magazineNav__magazine__list .magazineNav__magazine__item {
    padding: 0 3px;
}

.magazineNav__magazine__list .magazineNav__magazine__item a {
    background: #01673E;
    color: #fff;
    padding: 7px;
    font-size: 1.35rem;
    font-family: "Epilogue";
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 3px 3px 0px 0px;
}

.magazineNav__magazine__list .magazineNav__magazine__item a:hover {
    text-decoration: none;
}

.magazineNav__magazine__list {
    justify-content: flex-start;
    padding: 10px 0 0;
}

.c-archives .bg-green {
    border-radius: 6px;
    padding: 20px 30px 50px;
    margin-bottom: -50px;   
    color: #fff;
}

.c-archives .bg-green h2,
.c-archives .bg-green p {
    color: #fff;
}

.magazine-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 50px;
}

.magazine-tags li {
    position: relative;    
}

.magazine-tags li:after {
    content: ",";
    margin-left: -5px;
    padding-right: 5px;
}

.magazine-tags li:last-child:after {
    content: "";
}

.magazine-tags li a,
.magazine-tags li:after {
    font: 14px Arial, San-Serif;
    color: #01673E;
    font-weight: bold;
}

.c-recommendations {
    padding: 40px 0 40px;
}

.c-recommendations__title {
    background: #01673E;
    padding: 30px 20px 40px;
    text-align: center;
    color: #fff;
    border-radius: 6px;
    max-width: 350px;
    margin: 0 auto -20px;
}

.c-recommendations__title h2 {
    color: #fff;
    font: 700 2.4rem "Arial";
}


@media (max-width: 1279px) {
    header {
        height: 90px;
        overflow: hidden;
        /* transition: all 0.5s ease-in-out; */
    }

    .top-nav {
        display: inherit;
    }

    .hamburger-menu {
        display: block;
    }

    .top-nav__wrapper {
        display: inherit;
    }

    .top-nav__utlility {
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .top-nav__rightCol {
        margin-left: inherit;
        justify-content: center;
    }

    .nav-main {
        display: inherit;
    }

        .nav-main > li {
            padding: 10px 0;
        }

            .nav-main > li > a {
                padding: 0;
                position: relative;
            }

            .nav-main li > ul, .nav-main > li ul li ul {
                position: static;
                background: none;
                height: auto !important;
            }

            .nav-main > li:last-child ul li ul {
                position: relative;
                right: auto;
            }

        .nav-main ul li a {
            color: #000000;
        }

        .nav-main ul li {
            padding: 10px 0;
        }

            .nav-main > li.arrow_mobi > a::before, .nav-main ul li.arrow a:before, .nav-main > li ul li ul li.arrow a::before, .nav-main > li:last-child ul li.arrow a:before {
                content: '';
                width: 7px;
                border: solid 7px #000;
                border-bottom-color: transparent;
                border-left-color: transparent;
                border-right-color: transparent;
                display: block;
                position: absolute;
                right: 0;
                top: 8px;
                margin: 0;
                transform: none;
            }

            .nav-main ul li.arrow a:before, .nav-main > li ul li ul li.arrow a::before {
                top: 5px;
                left: inherit !important;
            }

        .nav-main > li.arrow_mobi ul {
            padding-bottom: 0;
        }

    #cookieDialog__body header {
        height: auto !important;
    }

    .header_open {
        height: 100vh!important;
        overflow: auto;
    }

    .comp-left {
        width: 30%;
    }

    .comp-right {
        width: 70%;
    }

    .comp-video__play {
        max-width: 80px;
    }

    .c-video-popup .close {
        right: 0;
    }

    .comp-hero-twoCol {
        align-items: inherit;
    }

    .comp-hero-twoCol img {
        max-height: inherit;
        height: 100%;
    }

    .c-featuredStory .container {
        transform: translateY(-25px);
    }

    .random-slider__item {
        padding-left: 15px;
        padding-right: 15px;
    }

    .magazineNav__magazine__list {
        background: none;
    }

    .magazineNav {
        position: relative;
        top: 0;
    }

    .cards-overlap-slider__item {
        padding-left: 15px;
        padding-right: 15px;
    }
}


@media (max-width: 1023px) {
    .login-wrapper .login {
        color: #01673e;
    }

        .login-wrapper .login.login--active {
            color: #fff;
        }

    .comp-hero-twoCol {
        display: inherit;
    }

    .comp-hero-twoCol__eyebrow {
        font-size: 1.4rem;
        letter-spacing: 1.083px;
    }

    .comp-hero-twoCol__author {
        font-size: 2.4rem;
        line-height: 1.3;
    }

    .comp-hero-twoCol__content {
        padding: 30px 25px;
    }

    .c-featuredStory {
        background-color: transparent;
    }

    .c-featuredStory .container {
        transform: none;
    }

    .c-featuredStory {
        margin-bottom: 0;
    }

    .card-twoCol {
        margin-bottom: 25px;
        height: calc(100% - 25px);
    }

    .c-full-dark {
        padding: 40px 0 50px;
    }

    .cards-overlap .bg-white {
        transform: none;
        padding-bottom: 25px;
        margin-bottom: -65px;
        border-radius: 0;
    }

    .c-related {
        transform: none;
        margin-bottom: 0;
    }

    .c-related__wrapper {
        padding: 45px 0;
    }

    .magazineNav__img__wrapper {
        padding: 0;
    }

    .magazine__figure img {
        max-width: 170px;
    }
}



@media (max-width: 991px) {

    .nav-main > li.arrow_mobi ul {
        white-space: inherit;
    }

    .bottom-nav {
        padding: 0 0 70px;
    }

    .comp-twoCol--imgRight [class^="col-"]:last-child {
        order: 2;
    }

    .comp-twoCol-content,
    .comp-twoCol--imgRight .comp-twoCol-content {
        max-width: 100%;
        padding: 0;
    }

    .comp-twoCol {
        padding: 40px 0 50px;
    }

    .comp-magazine-spotlight--imgRight [class^="col-"]:last-child {
        order: 2;
    }

    .comp-magazine-spotlight--imgRight .comp-magazine-spotlight__content {
        max-width: 100%;
    }
    
    .newhome .comp-twoCol__title,
    .comp-twoCol__title {
        font-size: 3.8rem;
    }

    /* footer */
    .comp-footer__quickLinks li {
        padding: 3px 10px !important;
    }

    .comp-footer__social {
        float: left;
        max-width: 100%;
    }

    .comp-left {
        padding: 0 15px 40px;
        width: 100%;
        margin-top: 0;
    }

    .comp-right {
        width: 100%;
    }

        .comp-right .tns-nav > [aria-controls] {
            width: 12px;
            height: 12px;
        }

    .comp-magazine-spotlight {
        padding-top: 40px;
    }

        .comp-magazine-spotlight:before, .comp-magazine-spotlight:after {
            display: none;
        }

    .comp-magazine-spotlight__content {
        text-align: center;
        max-width: 100%;
        padding: 40px 40px;
    }

        .comp-magazine-spotlight__content .button__wrapper--flex {
            justify-content: center;
        }

    .comp-magazine-spotlight h2 {
        font-size: 3.6rem;
    }

    .c-listing__item {
        display: inherit;
    }

    .c-listing-results.c-listing-results--checked .c-listing__item {
        display: flex;
    }

    .cards-overlap-slider {
        margin-bottom: 0;
    }

    .comp-hero-twoCol--imgRight .comp-hero-twoCol__content {
        float: none;
        max-width: 100%;
    }
}

@media (max-width: 767px) {

    .section-gap {
        padding: 50px 0;
    }

    .comp-twoCol {
        padding: 50px 0;
    }

    .comp-twoCol-content, .comp-twoCol--imgRight .comp-twoCol-content {
        padding: 25px 0 0;
    }

    .comp-imgOverlay {
        padding: 10rem 0 7rem;
    }

    .comp-magazine-spotlight {
        margin: 0;
    }

    .comp-magazine-spotlight__content {
        padding: 40px 0 20px;
    }

    .social-share {
        display: none;
    }

    .top-nav__rightCol {
        flex-wrap: wrap;
    }
    .comp-subscription {
        padding: 50px 0 20px;
    }

    .c-listing-results.c-listing-results--checked > .row > .col-md-6 {
        max-width: 100%;
        flex: inherit;
    }

    .dataTables_wrapper .dataTables_length, 
    .dataTables_wrapper .dataTables_filter {
        text-align: left;
    }

    .card-twoCol {
        display: inherit;
    }

    .card-twoCol__img,
    .card-twoCol__content,
    .card-twoCol--30x70 .card-twoCol__img,
    .card-twoCol--30x70 .card-twoCol__content {
        width: 100%;
    }

    .c-featuredStory .card-twoCol {
        display: flex;
    }

    .c-featuredStory .card-twoCol__img,
    .c-featuredStory .card-twoCol__content {
        width: 50%;
    }

    .c-advertisement {
        padding: 75px 0 25px;
    }

    .c-full-dark__item {
        flex-wrap: wrap;
        text-align: center;
    }
    .c-full-dark__item h2 {
        padding-right: 0;
    }

    .bottom-overlap {
        transform: translateY(35px);
    }

    .random-slider .slick-prev:before, .random-slider .slick-next:before {
        width: 36px;
        height: 36px;
    }

    .random-slider .slick-prev {
        left: 5px;
    }

    .random-slider .slick-next {
        right: -5px;
    }

    .magazineNav__img__wrapper {
        text-align: center;
    }

    .magazineNav__utility__list .magazineNav__utility__item a {
        font-size: 1.1rem;
        text-transform: uppercase;
    }

    .magazineNav .col-md-9 {
        padding-left: 0;
        padding-right: 0;
    }

    .magazineNav__magazine__list:before,
    .magazineNav__magazine__list:after,
    .magazineNav__magazine__list .magazineNav__magazine__item:first-child:after,
    .magazineNav__magazine__list .magazineNav__magazine__item:last-child:after {
        background: none;
    }

    .magazineNav__magazine__list .magazineNav__magazine__item:first-child {
        padding-left: 0;
    }

    .magazineNav__magazine__list .magazineNav__magazine__item:last-child {
        padding-right: 0;
    }

    .cards-overlap__wrapper [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    .cards-overlap-slider {
        transform: translateY(-10px);
    }

    .sideRail-adv {
        padding: 16px;
    }
}

@media (min-width: 768px) {
    .left-align {
        float: left;
        padding-right: 20px;
        padding-bottom: 20px;
        width: auto;
    }

    .right-align {
        float: right;
        padding-left: 20px;
        padding-bottom: 20px;
        width: auto;
    }

    .section-title h2 {
        font-size: 4.8rem;
    }

    .comp-contentDetail__wrapper p {
        /* font-size: 1.8rem; */
    }

    .comp-contentDetail__wrapper h2,
    .comp-contentDetail__wrapper .section-title h2 {
        font-size: 4.8rem;
    }

    .naiop-address {
        font-size: 1.8rem;
    }

    /* bio */
    .comp-bio__wrapper ul {
        margin: 0 -15px;
        display: flex;
        flex-wrap: wrap;
    }

        .comp-bio__wrapper ul li {
            width: 50%;
            padding: 0 15px 20px;
        }

    /* Accordion */
    .comp-accordion__toggleCon {
        margin-top: -50px;
    }

    .comp-accordion-container .section-title p {
        max-width: 80%;
    }

    /* chapters */
    .comp-chapters__col {
        width: 50%;
    }

    /* Membership types */

    .comp-membershipTypes__item {
        display: flex;
        align-items: center;
        border-top: 1px solid #c0c0c0;
    }

    .comp-membershipTypes__titleCon {
        min-width: 300px;
        max-width: 300px;
        border-right: 1px solid #333;
        margin-right: 25px;
        margin-bottom: 0px;
    }

    .table-alternatingRow tbody tr {
        display: flex;
        align-items: center;
    }

        .table-alternatingRow tbody tr > td:first-child {
            min-width: 300px;
            max-width: 300px;
            align-self: stretch;
        }

    /* Search */
    .c-search-filter__card-header {
        pointer-events: none;
    }

        .c-search-filter__card-header a:before {
            display: none;
        }

    .c-search-filter__card-body {
        display: block;
    }

    .c-search__sortBy {
        justify-content: flex-end;
    }

    .selected-filters {
        margin-top: -64px;
        padding: 0;
    }

        .selected-filters ul {
            margin-top: 25px;
        }

    .update-search button {
        min-width: 180px;
        font-size: 1.6rem;
        text-transform: uppercase;
    }

    .is-hidden {
        display: none;
    }
}
.conference .comp-right{
    padding: 0;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .container {
        max-width: 1200px;
    }

    .section-full__main {
        margin-left: calc(-992px/2);
        display: flex;
        align-items: center;
    }

    .comp-left {
        width: 30%;
    }

    .comp-right {
        width: 70%;
        padding-right: 0;
    }

    /* bio */
    .comp-bio__wrapper ul li {
        width: 33.333%;
    }

    /* Chapters */
    .comp-chapters__top,
    .section-title__top {
        display: flex;
        justify-content: space-between;
    }

    /* Terms and Definitions */
    .comp-definitions__alphabets {
        max-width: 250px;
        position: sticky;
        top: 230px;
    }

    .comp-definitions__wrapper [class*="col-"] {
        order: 1;
    }

        .comp-definitions__wrapper [class*="col-"]:last-child {
            order: 1;
        }
    
    .c-listing__item {
        justify-content: space-between;
    }

    .c-listing__eventInfo {
        max-width: 350px;
    }

    .c-listing-results--checked  .c-listing__eventInfo {
        max-width: 100%;
    }

}

@media (min-width: 1024px) {
    .section-full__wrapper {
        padding-left: 50%;
        position: relative;
    }

    .container {
        max-width: 992px;
    }

    .comp-contentDetail__container {
        padding-right: 40px;
    }
}

@media (min-width: 1200px) {

    /* bio */
    .comp-bio__wrapper ul li {
        width: 20%;
    }

    /* chapters */
    .comp-chapters__col {
        width: 25%;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }

    .section-full__main {
        margin-left: calc(-1200px/2);
    }

    /* .comp-notification-bar.show {
        display: block;
    } */

    .comp-notification-bar p {
        font-size: 1.6rem;
    }

    .c-listing-results--checked .c-listing__item {
        flex-wrap: inherit;
    }

    .c-listing-results.c-listing-results--checked > .row > .col-md-6 {
        max-width: 100%;
        flex: inherit;
    }

    .c-listing-results--checked .c-listing__eventInfo {
        max-width: 315px;
        align-self: inherit;
    }

    .c-listing-results--checked .c-listing__item > div:first-child {
        display: flex;
    }

    .c-listing-results--checked .c-listing__item > div > img {
        max-width: 300px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1366px;
    }

    .section-full__main {
        margin-left: calc(-1366px/2);
    }

    .comp-left {
        width: 20%;
        max-width: 300px;
    }

    .comp-right {
        width: 80%;
    }
}

@media (min-width: 1660px) {
    .container {
        max-width: 1440px;
    }

    .section-full__main {
        margin-left: calc(-1440px/2);
    }
}


/* Checkbox styles */
.customCheckbox[type="checkbox"]:checked + label::after, .custom-select-v3::before {
    display: inline-block;
    font: normal normal normal 14px/1 "Material Icons";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.customCheckbox[type="checkbox"]:checked + label::after {
    content: "\e5ca";
}

.custom-select-v3::before {
    content: "\f078";
}

.customCheckbox[type="checkbox"]:not(:checked), .customCheckbox[type="checkbox"]:checked {
    left: -9999px;
    position: absolute;
}

    .customCheckbox[type="checkbox"]:not(:checked) + label, .customCheckbox[type="checkbox"]:checked + label {
        cursor: pointer;
        font-size: 1.7rem;
        font-weight: normal;
        line-height: 24px;
        padding: 0 15px 0 32px;
        position: relative;
    }

        .customCheckbox[type="checkbox"]:not(:checked) + label::before, .customCheckbox[type="checkbox"]:checked + label::before {
            background: #fff;
            border: 1px solid #01673e;
            content: "";
            height: 18px;
            left: 0;
            position: absolute;
            top: 2px;
            width: 18px;
        }

        .customCheckbox[type="checkbox"]:not(:checked) + label::after, .customCheckbox[type="checkbox"]:checked + label::after {
            color: #fff;
            font-size: 1.5rem;
            height: 17px;
            left: 1px;
            line-height: 17px;
            position: absolute;
            top: 2px;
            text-align: center;
            transition: all 0.1s ease 0.1s;
            width: 17px;
            background: #01673e;
            border-color: #01673e;
        }

        .customCheckbox[type="checkbox"]:not(:checked) + label::after {
            opacity: 0;
            transform: scale(0);
        }

        .customCheckbox[type="checkbox"]:checked + label::after {
            opacity: 1;
            transform: scale(1);
        }

.customCheckbox[type="checkbox"]:disabled:not(:checked) + label::before, .customCheckbox[type="checkbox"]:disabled:checked + label::before {
    background-color: #ddd;
    border-color: #bbb;
    box-shadow: none;
}

.customCheckbox[type="checkbox"]:disabled:checked + label::after {
    color: #999;
}

.customCheckbox[type="checkbox"]:disabled + label {
    color: #aaa;
}
   
.interior-txt ul li a {
    font-size: 1.6rem;
}

.bio-detail-page .comp-bio__item {
    display: flex;
    flex-wrap: wrap;
}

.bio-detail-page .comp-bio__img {
    display: flex;
    flex-wrap: wrap;
    margin: 0 15px 5px 0;
    border-bottom: none;
}

.bio-detail-page .comp-bio__img img {
    border-bottom: 8px solid #00673E;
}

.bio-detail-page .bio-detail-label {
    font-weight: bold;
}

.bio-detail-page .img-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 260px;
}

.bio-detail-page .img-container a {
    max-width: 260px;
}

.bio-detail-page .social-media-wrapper {
    display: flex;
    width: 145px;
}

.bio-detail-page .social-media-wrapper img {
    padding-right: 5px;
    max-width: 35px;
}

.bio-meta-details h3 {
    font-size: 2.6rem;
}

.EPiServerForms .Form__Status__Message.Form__Success__Message {
    background: none;
    text-align: center;
    padding: 40px 0;
}

.EPiServerForms .Form__Status__Message.Form__Success__Message p {
    font-weight: bold;
    border: 1px solid #fff;
    padding: 10px;
}

sup {
    line-height: 1;
}

blockquote {
    padding-left: 25px;
}

p:has(.button--green) {
    overflow: hidden;
}

figcaption {
    color: #01673e;
}
.block{ 
    display: block;
    float: none;
}