@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

body {
    color: #000000;
    font-family: 'Lato', sans-serif;
}
a, a:active, a:hover, a:focus {
    outline: none;
    outline-offset: 0;
    text-decoration: none;
}

/* Bootstrap Grid */
.container {
    padding-right: 20px;
    padding-left: 20px;
}
.row {
    margin-right: -20px;
    margin-left: -20px;
}
.row > div[class^="col"] {
    padding-right: 20px;
    padding-left: 20px;
}
.position-inherit {
    position: inherit;
}

/* Color Scheme */
.bg-dark-green {
    background-color: #006b6e;
}
.bg-meadium-green {
    background-color: #0b6c36;
}
.bg-facebook-blue {
    background-color: #3a61a0;
}
.bg-twitter-blue {
    background-color: #56b5f1;
}
.bg-linkedin-blue {
    background-color: #0083bd;
}
.bg-blue {
    background-color: #1dafec;
}
.bg-light-blue {
    background-color: #eaeff3;
}
.bg-purple-gradient {
    background: -moz-linear-gradient(left,  #e361d5 0%, #9c53a8 100%);
    background: -webkit-linear-gradient(left,  #e361d5 0%,#9c53a8 100%);
    background: linear-gradient(to right,  #e361d5 0%,#9c53a8 100%);
}
.bg-purple {
    background-color: #800080;
}
.bg-dark-blue {
    background-color: #0c64a4;
}
.bg-skype-blue {
    background-color: #00a1a4;
}
.text-purple {
    color: #a254ac !important;
}
.text-green {
    color: #006b6e !important;
}
.text-orange{
    color: #eb3c25 !important;
}
.btn-green {
    font-weight: bold;
    background-color: #006b6e;
    color: #ffffff;
}
.btn-green:hover,
.btn-green.focus,
.btn-green:focus {
    background-color: #006063;
    color: #fff;
}
.btn-orange {
    font-weight: bold;
    background-color: #e74e23;
    color: #ffffff;
}
.btn-orange:hover,
.btn-orange.focus,
.btn-orange:focus {
    background-color: #ffffff;
    color: #d74117;
}
.btn-purple-dark {
    font-weight: bold;
    background-color: #a254ac;
    color: #ffffff;
}
.btn-purple-dark:hover, .btn-purple-dark.focus, .btn-purple-dark:focus {
    background-color: #924b9b;
    color: #fff;
}

.btn.btn-default{
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn.btn-default:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

/* Rounded */
.rounded-20 {
    border-radius: 20px;
}

/* Box Shadow */
.box-shadow {
    box-shadow: 2px 18px 50px rgba(0, 0, 0, .2);
}

/* Font Size */
p {
    font-size: 18px;
    letter-spacing: .2px;
}

/* Button */
.btn {
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
}
.btn-outline-whitegreen {
    border: 2px solid #ffffff;
    color: #ffffff;
}
.btn-outline-whitegreen:hover, .btn-outline-whitegreen.focus, .btn-outline-whitegreen:focus {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #006b6e;
}
.btn-whitegreen {
    background-color: #ffffff;
    color: #006b6e;
}
.btn-whitegreen:hover, .btn-whitegreen.focus, .btn-whitegreen:focus {
    background-color: #000000;
    color: #ffffff;
}
.btn-purple-gradient {
    background: -moz-linear-gradient(left,  #e361d5 0%, #9c53a8 100%);
    background: -webkit-linear-gradient(left,  #e361d5 0%,#9c53a8 100%);
    background: linear-gradient(to right,  #e361d5 0%,#9c53a8 100%);
    color: #ffffff;
}
.btn-purple-gradient:hover, .btn-purple-gradient.focus, .btn-purple-gradient:focus {
    background: -moz-linear-gradient(right,  #e361d5 0%, #9c53a8 100%);
    background: -webkit-linear-gradient(right,  #e361d5 0%,#9c53a8 100%);
    background: linear-gradient(to left,  #e361d5 0%,#9c53a8 100%);
    color: #ffffff;
}
.btn-blue {
    font-weight: bold;
    /*background-color: #1dafec; contrast issue*/
    background: #0E5D81;
    color: #ffffff !important;
}
.btn-blue:hover, .btn-blue.focus, .btn-blue:focus {
    background-color: #1DA5EC;
    color: #ffffff;
}
.btn-purple {
    font-weight: bold;
    /*background-color: #ee60de; contrast issue */
    background-color: #C814C8;
    color: #ffffff;
}
.btn-purple:hover, .btn-purple.focus, .btn-purple:focus {
    background-color: #D547C5;
    color: #fff;
}

/* Header Section */
header {
    position: relative;
    z-index: 11;
}

/* Header Topbar */

/*ul.navbar-nav a.active-trail.dropdown-item {
    background: #006b6e;
    color: #fff;
}*/

.navbar-top {
    padding: 12px 0;
}
.navbar-top-left {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.navbar-top-left li ~ li {
    margin-left: 8px;
    padding-left: 16px;
    position: relative;
}
.navbar-top-left li ~ li:before {
    background-color: #fff;
    border-radius: 50%;
    content: '';
    margin-top: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 7px;
    width: 7px;
}
.navbar-top-left li a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.navbar-top-left li a:hover {
    color: #1dafec;
}
.navbar-top-right {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.navbar-top-right li ~ li {
    margin-left: 13px;
}
.navbar-top-right .btn {
    font-size: 12px;
    font-weight: 700;
    padding: 7px 10px;
}
.navbar-top-right .btn-outline-whitegreen {
    padding-top: 5px;
    padding-bottom: 5px;
    min-width: 100px;
}
.navbar-top-right .btn-whitegreen {
    min-width: 120px;
}
.navbar-top-right .btn-purple-gradient {
    min-width: 100px;
}

/* Header Navbar */
.navbar-main {
    padding: 20px 0 30px;
}
.navbar-main .navbar-nav .nav-item .nav-link {
    position: relative;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    /* display: inline-block; */
    padding-left: 0;
    padding-right: 0;
}
.navbar-main .navbar-nav .nav-item .nav-link:after {
    position: absolute;
    content: '';
    width: 0;
    height: 4px;
    left: 0;
    bottom: 0;
    background-color: #006b6e;
    transition: all 0.3s ease-in-out 0s;
}
.navbar-main .navbar-nav .nav-item.active .nav-link:after,
.navbar-main .navbar-nav .nav-item .nav-link:hover:after {
    width: 100%;
}
.navbar-main .navbar-nav .nav-item.active .nav-link,
.navbar-main .navbar-nav .nav-item .nav-link:hover,
.navbar-main .search-icon:hover {
    color: #006b6e;
}
/*.navbar-main .navbar-nav .nav-item.active .nav-link {
    pointer-events: none;
    cursor: context-menu;
}*/
.navbar-main .search-icon {
    color: #000000;
    font-size: 20px;
    margin-left: 25px;
    min-width: 20px;
}

/* Search Section */
.search-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.search-close-icon {
    color: #ffffff;
    position: absolute;
    right: 20px;
    top: 20px;
}
.search-close-icon:hover {
    color: #000000;
}
.search-wrapper .input-group{
    width: calc(100% - 150px - .5rem);
}
.search-wrapper .input-group .input-group-btn{
    display: none;
}
.search-wrapper .form-inline .form-control {
    border-radius: 25px;
    padding: 5px 20px;
    height: 40px;
}
.search-wrapper .form-inline button {
    min-width: 150px;
}

/* Footer Section */
footer {
    padding: 40px 0;
}
.footer-logo img {
    max-width: 280px;
    width: 100%;
}
.footer-social {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-left: 40px;
}
.footer-social li ~ li {
    margin-left: 20px;
}
.footer-social li a {
    color: #fff;
    font-size: 25px;
}
.footer-social li a:hover {
    color: #1dafec;
}
.footer-middle {
    margin: 38px 0 33px;
}
.footer-middle h2.block-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
    margin-bottom: 6px;
    color: #fff;
}
.footer-middle ul li a {
    color: #dcddde;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.footer-middle ul li a:hover {
    color: #1dafec;
}
.footer-bottom p {
    font-size: 12px;
}

/* Hero Carousel Section */

.front .hero-section.home-hero-section .carousel-item{
    background: #000000;
}

.hero-section.home-hero-section .carousel-item {
    height: 800px;
}
/*.front .hero-section.home-hero-section .carousel-item:before {
    background-color: #a029ba;
    content: '';
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .5;
    height: 100%;
    width: 100%;
}*/

.front .hero-section.home-hero-section .cpt-1{
    display: none;
}

.hero-section .carousel-image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    background-color: #000000;
}
.carousel-control-prev, .carousel-control-next {
    display: block;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    height: 40px;
    width: 40px;
    z-index: 900;
}
.carousel-control-prev {
    left: 45px;
}
.carousel-control-next {
    right: 45px;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: .8;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    height: 40px;
    width: 40px;
}
.hero-section .carousel-caption {
    bottom: inherit;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin-top: -10px;
}
.home-hero-section .carousel-control-prev, .home-hero-section .carousel-control-next {
    margin-top: -30px;
}
.hero-section.home-hero-section .carousel-caption {
    padding-left: 0;
    max-width: 1140px;
    width: 100%;
    margin: -20px auto 0;
/*  max-height: 395px;*/
}
.hero-section .carousel-content {
    max-width: 1000px;
}
.hero-section.home-hero-section .carousel-caption h2 {
    font-size: 100px;
    line-height: 120px;
    font-weight: 700;
    letter-spacing: normal;
    margin-bottom: 0;
    white-space: nowrap;
}
.hero-section.home-hero-section .carousel-caption p {
    font-size: 30px;
    line-height: 45px;
}
.hero-section.home-hero-section .carousel-caption .btn {
    border-radius: 30px;
    font-size: 22px;
    line-height: 33px;
    font-weight: bold;
    letter-spacing: 1px;
    min-width: 240px;
    padding: 11px 10px 12px;
}

/*vfairs links home*/
.nawbo_vfair_links{
    margin-top: -140px;
    position: relative;
    margin-bottom: 10px;
}

/* About NAWBO Section */
.about-nawbo-wrapper {
    /*disable margin top when using vfairs links home page*/
    margin-top: -140px;
    padding: 35px;
    position: relative;
}
.about-content-block h3 {
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 5px;
    letter-spacing: .5px;
}
.about-content-block p {
    margin-bottom: 22px;
}
.about-content-block .btn {
    letter-spacing: 1px;
}

/* News NAWBO Section */
.news-nawbo-section {
    padding: 55px 0 65px;
}
h2.title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 0;
    letter-spacing: .5px;
}

/* News Block */
.news-block h5 {
    margin-bottom: 18px;
}
.news-block .item-list,
.news-block .nawbo-listing {
    margin-top: 26px;
}

/* Item List */
.item-list, .nawbo-listing {
    letter-spacing: .2px;
}
.item-list .item-row,
.nawbo-listing .item-row {
    margin-bottom: 18px;
}
.item-list .item-row:after,
.nawbo-listing .item-row:after {
    background-image: url('../images/dotted-divider.png');
    background-repeat: repeat-x;
    content: '';
    display: block;
    margin-top: 15px;
    height: 2px;
    width: 100%;
}
.item-list .item-title,
.nawbo-listing .item-title {
    font-size: 22px;
    font-weight: 900;
    line-height: normal;
}
.item-list .item-title a,
.nawbo-listing a {
    color: #000000;
}
.item-list .item-title a:hover,
.nawbo-listing a:hover {
    color: #007bff;
}
.item-date {
    /*color: #848484; contrast issue*/
    color: #595959;
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.item-list .item-text,
.nawbo-listing .item-text {
    margin-bottom: 0;
}
.item-btn .btn {
    font-weight: 700;
    letter-spacing: .5px;
}
.item-btn .btn ~ .btn {
    margin-left: 24px;
}

/* Tweets Block */
.tweets-block {
    margin-bottom: 13px;
}

/* Stay Connected Block */
.stay-connected-block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 14px 66px;
}
.stay-connected-title {
    letter-spacing: .5px;
    margin-bottom: 0;
}
.stay-connected-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-right: 18px;
}
.stay-connected-list li ~ li {
    margin-left: 24px;
}
.stay-connected-list a {
    color: #fff;
    font-size: 22px;
}
.stay-connected-list a:hover {
    color: #1dafec;
}

/* Blog Block */
.blog-block .item-list {
    margin-top: 15px;
}

/* Events Section */
.events-section {
    margin: 50px 0 110px;
    padding: 35px 0 50px;
    position: relative;
}

/* Featured Events */
.featured-events-block {
    height: 100%;
    width: 96%;
    background: #000000;
}
.featured-events-block:before {
    background-image: url('../images/featured-events-bg.jpg?v2');
    background-repeat: no-repeat;
    background-size: cover;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 2px 18px 50px rgba(0, 0, 0, .2);
    content: '';
    margin-right: -180px;
    pointer-events: none;
    position: absolute;
    right: 50%;
    top: -46px;
    height: calc(100% + 102px);
    width: calc(100% - 33.333333%);
}
.featured-events-block h2.title {
    color: #fff38a;
    margin-bottom: 36px;
    position: relative;
}
.featured-events-slider {
    position: inherit;
}
.featured-events-slider .carousel-inner {
    width: calc(100% - 120px);
}
.featured-events-slider .carousel-item h2 {
    font-size: 65px;
    font-weight: 900;
    letter-spacing: .6px;
    margin-bottom: 20px;
}
.featured-events-slider .carousel-item h4 {
    letter-spacing: .5px;
    margin-bottom: 13px;
}
.featured-events-slider .carousel-item h4.date {
    margin-bottom: 3px;
}
.featured-events-slider .carousel-item p {
    font-size: 20px;
}
.featured-events-slider .carousel-item .btn {
    letter-spacing: .5px;
    margin-top: 28px;
}
.featured-events-slider .carousel-control-next {
    margin-right: -140px;
    right: 50%;
}

/* National Events */
.national-events-block .item-list {
    margin-top: 15px;
}
.national-events-block .item-list .item-row:after {
    margin-top: 10px;
}
.national-events-block .item-list .item-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.national-events-block .item-list .item-date {
    margin-bottom: 0;
}

/* Add Banner Section */
.add-banner-nawbo-wrapper {
    padding: 45px 52px;
}
.add-banner-nawbo-wrapper p {
    font-size: 25px;
    letter-spacing: .3px;
}
.add-banner-nawbo-wrapper .btn {
    box-shadow: 2px 18px 50px rgba(0, 0, 0, .2);
    letter-spacing: .5px;
    min-width: 200px;
    padding: 12px 20px;
}

/* News Section */
.news-section {
    padding: 45px 0 64px;
}
.news-section .carousel-inner {
    margin-bottom: 24px;
}
.news-section .carousel-indicators {
    margin-bottom: 48px;
}

/* News & Announcements Block */
.news-announcements-block {
    margin-top: 35px;
}
.news-announcements-block .item-list {
    margin-top: 15px;
}
.member-spotlight-slider {
    padding: 40px 62px 65px;
}
.member-spotlight-slider h2 {
    margin-bottom: 24px;
}
.slider-thumbnail {
    position: relative;
    display: inline-block;
    max-width: 130px;
    width: 100%;
    max-height: 130px;
    overflow: hidden;
}
.slider-thumbnail img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.member-spotlight-slider .member-title {
    font-size: 30px;
    font-weight: 900;
    margin: 16px auto 0;
}
.member-position {
    letter-spacing: 1.2px;
    font-weight: 900;
    margin-bottom: 4px;
}
.member-spotlight-slider p:not(.member-position) {
    line-height: 24px;
    min-height: 144px;
}
.carousel-indicators li {
    background-color: #e2e2e2;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-left: 7px;
    margin-right: 7px;
}
.carousel-indicators li:hover,
.carousel-indicators li.active {
    background-color: #006b6e;
}

/* Anniversary Section */
.anniversary-slider {
    background-image: url('../images/anniversary-bg.jpg');
    background-size: cover;
    position: relative;
    padding: 86px 0 88px;
    overflow: hidden;
}
.anniversary-slider .carousel {
    position: static;
}
.anniversary-slider .carousel-inner {
    z-index: 1;
}
.anniversary-img {
    background-color: #fff;
    max-width: 200px;
    width: 100%;
    min-height: 226px;
    padding: 17px;
    margin-right: 48px;
}
.anniversary-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.anniversary-slider h2 {
    max-width: 770px;
    letter-spacing: normal;
    margin-bottom: 8px;
}
.anniversary-slider h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* information NAWBO section */
.information-nawbo {
    padding: 66px 0 55px;
}
.information-box {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.information-box h2 {
    margin-bottom: 9px;
}
.information-box .info-img {
    width: 360px;
    max-width: 100%;
    height: 200px;
    max-height: 200px;
    min-height: 200px;
}
.information-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.information-box-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.information-box h5 {
    color: #000000;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.1px;
    font-weight: 900;
    margin-top: 15px;
    display: inline-block;
}
.information-box p {
    color: #000;
    font-size: 18px;
    letter-spacing: 0.1px;
    line-height: 26px;
    flex: 1 0 auto;
}

/* Top supporters slider */
.page-node-245 .view-content {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.supporters-slider:not(.slick-initialized) {
    height: 436px;
    visibility: hidden;
}
.supporters .slider .slick-list,
.supporters .slider .slick-track {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.supporters-slider.slick-initialized .supporters-box {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.supporters-box {
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px 19.5px;
    width: 366px;
    padding: 52px 10px 46px;
    border-radius: 40px;
    position: relative;
    z-index: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-node-245 .supporters-box{
    margin: 19.5px 0;
    width: calc(100% / 3 - 26px);
}
.supporters-box p {
    flex: 1 0 auto;
}
.supporters-box:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 40px;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: -1;
}
.supporters-slider h4 {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0.1px;
    font-weight: 900;
    margin: 15px 0px 8px;
}
.top-category {
    font-size: 12px;
    line-height: 14px;
    padding: 3.5px 13.5px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 11px;
}
.Gold-bg {
    background: -moz-linear-gradient(left,  #ffc705 0%, #db9307 100%);
    background: -webkit-linear-gradient(left,  #ffc705 0%,#db9307 100%);
    background: linear-gradient(to right,  #ffc705 0%,#db9307 100%);
}
.Silver-bg {
    background: -moz-linear-gradient(left,  #c2c2c2 0%, #8e8e8e 100%);
    background: -webkit-linear-gradient(left,  #c2c2c2 0%,#8e8e8e 100%);
    background: linear-gradient(to right,  #c2c2c2 0%,#8e8e8e 100%);
}
.Bronze-bg{
    background: -webkit-gradient(linear, left top, left bottom, from(#cd7a05), to(#6d4103));
    background: -moz-linear-gradient(top, #cd7a05, #6d4103);
    background: linear-gradient(to bottom, #cd7a05, #6d4103);
}
.Copper-bg{
    background: -moz-linear-gradient(left, #CB6D51 0%, #CB6D51 100%);
    background: -webkit-linear-gradient(left, #CB6D51 0%,#CB6D51 100%);
    background: linear-gradient(to right, #CB6D51 0%,#CB6D51 100%);
}
.Underwriting-bg{
    background: -moz-linear-gradient(left, #e361d5 0%, #9c53a8 100%);
    background: -webkit-linear-gradient(left, #e361d5 0%,#9c53a8 100%);
    background: linear-gradient(to right, #e361d5 0%,#9c53a8 100%);
    /*color: #fff;*/
}

.supporters-slider p {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.1px;
    max-width: 300px;
    margin: 0 auto 17px;
}
.supporters-box .btn {
    padding: 12px 35px;
}
.supporters-slider {
    margin: 30px 0 0;
}
.supporters-icon {
    width: 100px;
    height: 100px;
}
.supporters-icon img {
    width: 100%;
    height: 100px;
}
.supporters {
    margin-bottom: 80px;
    overflow: hidden;
}
.supporters .slick-list {
    padding: 0 38px;
}
.slick-slider * {
    outline: none;
}

/*  Add Join Banner */
.add-banner-join-section {
    margin-bottom: 50px;
}
.add-banner-join-section .add-banner-join-wrapper {
    padding: 35px 0px;
}
.add-banner-join-section .add-banner-join-wrapper p {
    font-size: 45px;
    margin-bottom: 15px;
}
.add-banner-join-section .btn {
    box-shadow: 2px 18px 50px rgba(0, 0, 0, .2);
    letter-spacing: .5px;
    min-width: 200px;
    padding: 12px 20px;
    font-weight: bold;
}

/* Our Chapters */
.our-chapters {
    background: -moz-linear-gradient(top,  #ffffff 0%, #eaeff3 25%);
    background: -webkit-linear-gradient(top,  #ffffff 0%,#eaeff3 25%);
    background: linear-gradient(to bottom,  #ffffff 0%,#eaeff3 25%);
    padding-bottom: 23px;
}
.sub-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.1px;
}
.our-chapters h2 {
    margin-bottom: 8px;
}
.our-chapters h5 {
    margin-bottom: 0;
}
/* Company logo */
.company-logo {
    padding: 25px 0px 47px;
    overflow: hidden;
}
.company-logo-item {
    max-width: 240px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* Head Title Section */
.head-section {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    min-height: 200px;
    position: relative;
    padding-top: 48px;
    padding-bottom: 48px;
}
.head-section h1 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 0;
}
.sub-navbar {
    margin-bottom: 12px;
    margin-top: 8px;
}
/*.sub-navbar li ~ li {
    margin-left: 23px;
}*/
.head-section .sub-navbar li:not(:last-child){
    margin-right: 23px;
}
.sub-navbar li a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.sub-navbar li a:hover {
    opacity: 0.75;
}

/* About Page */
.about-head-bg:before {
    background-image: url('../images/about/about-head-bg.jpg');
    background-color: #006b6e;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    content: '';
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .6;
    height: 100%;
    width: 100%;
}
.about-section {
    margin-bottom: 70px;
}
.about-item {
    min-height: 505px;
    padding: 52px 0 10px;
}
.about-item .sub-title-about,
.agenda-item .sub-title-text {
    font-size: 22px;
    font-weight: 900;
    line-height: 26px;
    letter-spacing: .1px;
    margin-bottom: 8px;
    margin-top: 6px;
}
.about-item p {
    line-height: 28px;
    font-size: 20px;
    color: #000;
}
.about-item .btn {
    letter-spacing: 1px;
    padding: 12px 30px;
}
.about-item img {
    position: relative;
    top: 50px;
    z-index: 1;
}
.national-leadership {
    position: relative;
}
.national-leadership:before {
    background: -moz-linear-gradient(top,  #009da1 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(top,  #009da1 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom,  #009da1 0%,rgba(255,255,255,0) 100%);
    content: '';
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.nawbo-awards img {
    top: inherit;
}
/* About Page Over */

/* About Sub pages */

.about-subpage-section {
    position: relative;
    padding: 170px 0 154px;
}
.about-subpage-section img {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    bottom: 0;
    height: 100%;
    pointer-events: none;
}
.about-subpage-section h2 {
    font-size: 65px;
    line-height: 78px;
    font-weight: 800;
}
.about-subpage-section h3 {
    font-size: 29px;
    letter-spacing: 0.1px;
    font-weight: bold;
}
.about-subpage-section p {
    font-size: 20px;
    margin-top: 15px;
}
.about-our-vision {
    padding-top: 84px;
    padding-bottom: 67px;
}
.about-our-vision h4 {
    font-size: 26px;
    line-height: 35px;
    letter-spacing: -0.2px;
    font-weight: bold;
    margin-bottom: 17px;
}
.about-our-vision p {
    line-height: 29px;
    margin-bottom: 32px;
}
.about-more-info {
    padding-top: 78px;
    padding-bottom: 83px;
}
.about-more-info h4 {
    font-size: 22px;
    letter-spacing: 0.2px;
    font-weight: 900;
    margin-top: 8px;
}
.about-more-info ul {
    font-size: 18px;
    letter-spacing: 0.2px;
    margin-bottom: 23px;
    padding-left: 20px;
}
.about-more-info ul li {
    font-size: 18px;
    padding-left: 8px;
}
.about-more-info p {
    line-height: 26px;
}
/* About Sub pages Over */


/* Membership Page */
.heroSection {
    height: 500px;
    width: 100%;
    background: #a354ad url('../images/management-hero@2x.jpg') no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
    position: relative;
}
.heroSection .innerCont {
    padding-top: 94px;
}
.heroSection h1 {
    font-size: 90px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.72;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
    margin: 0 0 19px 0;
}
.heroSection p {
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
    width: 100%;
    max-width: 677px;
    margin: 0;
    padding: 0;
}
.heroSection .btn {
    white-space: nowrap;
    width: 100%;
    max-width: 340px;
    height: 69px;
    border-radius: 34.5px;
    font-size: 20.5px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.82px;
    line-height: 59px;
    text-align: center;
    margin: 34px 0 0 0;
}
.page-membership .membership-vid-section {
    margin-top: -156px;
}
.membership-vid-section h2 {
    line-height: 0.9;
    letter-spacing: normal;
    margin: 66px 0 0 0;
}
.membership-vid-section p.headline {
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.64;
    letter-spacing: normal;
    text-align: center;
    color: #000000;
    max-width: 928px;
    margin-top: 18px;
}
.membership-vid-section p {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: normal;
    text-align: center;
    color: #2a2a2a;
    max-width: 931px;
    margin: 0 auto;
    margin-top: 16px;
}
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.from-our-member-section {
    overflow: hidden;
    padding: 63px 0 0;
}
.from-our-member-section h2 {
    margin-bottom: 30px;
}
.from-our-member-section .slick-list {
    padding: 0 36px;
}
.testimonial-slider:not(.slick-initialized) {
    height: 440px;
    visibility: hidden;
}
.from-our-member-section .slider .slick-list,
.from-our-member-section .slider .slick-track {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.testimonial-slider.slick-initialized .supporters-box {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
body:not(.node-type-events-channel) .testimonial-box {
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px 18px;
    width: 366px;
    padding: 52px 10px 34px;
    border-radius: 40px;
    position: relative;
    z-index: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #006b6e;
    outline: 0;
}
.testimonial-box .testimonial-img {
    max-width: 140px;
}
.testimonial-box p {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.2px;
    text-align: center;
    color: #ffffff;
    max-width: 290px;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-box h2 {
    font-size: 24px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.24px;
    text-align: center;
    color: #ffffff;
    margin: 0;
}
.testimonial-box h2 small {
    font-size: 18px;
    letter-spacing: 0.18px;
    display: block;
    margin: 0;
}
.member-profile-section {
    background: #a154ac;
    margin-top: -105px;
    padding-top: 172px;
    padding-bottom: 79px;
}
.member-profile-section h2.title {
    margin-bottom: 2px;
}
.member-profile-section p.headline {
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    margin-bottom: 0px;
}
.profile-cout-box {
    color: #ffffff;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    margin: 13px 0;
}
.profile-cout-box .title-cont {
    height: 115px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 11px;
}
.profile-cout-box h2 {
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: -5px;
    padding: 0;
}
.profile-cout-box h2.diff {
    font-size: 80px;
    margin-bottom: 0;
}
.profile-cout-box h2.diff small {
    font-size: 40px;
    font-weight: 900;
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: -5px;
}
.profile-cout-box p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.38;
    margin: 0 auto;
}
.become-member-section {
    background: #eaeff3;
    padding: 46px 0;
}
.become-member-section h2 {
    margin-bottom: -3px;
}
.become-member-section p.headline {
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.24px;
    color: #000000;
    margin: 0 0 40px 0;
}
.joinBanner {
    margin-top: 43px;
}
.joinBanner .inCont {
    max-width: 880px;
    height: 47px;
    margin: 0 0 0 auto;
    background: #fff;
    border-radius: 20px;
    height: 100px;
    padding: 0 47px 0 51px;
}
.joinBanner .inCont .row {
    height: 100px;
}
.joinBanner .inCont p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
}
.joinBanner .inCont .btn {
    max-width: 234px;
    width: 100%;
    line-height: 36px;
}
.priceTable-tabs{
    list-style: none;
    margin: 0;
    padding: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    margin-bottom: 30px;
}
.priceTable-tabs li{
    width: 25%;
}
.priceTable-tabs li button{
    width: 100%;
    height: 100%;
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    outline: 0;
}
.priceTable-tabs li .headCont{
    height: 100%;
    background: #fff;
    padding-bottom: 15px;
}
.priceTable-tabs li.active .headCont.blue{
    background-color: #0d64a4;
}
.priceTable-tabs li.active .headCont.green{
    background-color: #006b6e;
}
.priceTable-tabs li.active .headCont.purple{
    background-color: #a254ac;
}
.priceTable-tabs li.active .headCont.orange{
    background-color: #e74e23;
}
.priceTable-tabs li h2 {
    margin: 0;
    padding: 21px 0 5px 0;
    font-size: 26px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: 0.52px;
    text-align: center;
}
.priceTable-tabs li .headCont.blue h2{
    color: #0d64a4;
}
.priceTable-tabs li .headCont.green h2{
    color: #006b6e;
}
.priceTable-tabs li .headCont.purple h2{
    color: #a254ac;
}
.priceTable-tabs li .headCont.orange h2{
    color: #e74e23;
}
.priceTable-tabs li h3 {
    margin: 0 0 7px 0;
    padding: 0;
    font-size: 16px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 1.6px;
    text-align: center;
    color: #000000;
    text-transform: uppercase;
}
.priceTable-tabs li p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.22;
    letter-spacing: 0.36px;
    text-align: center;
    color: #000000;
}
.priceTable-tabs li.active .headCont h2,
.priceTable-tabs li.active h3,
.priceTable-tabs li.active p{
    color: #fff;
}
.priceTable {
    width: 100%;
    border: 0;
}
.priceTable .btn {
    font-size: 15px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 36px;
    letter-spacing: 0.6px;
    text-align: center;
    width: 100%;
}
.priceTable tr td:first-child .btn-blue {
    max-width: 200px;
}
.priceTable span[class^="icon-"] {
    width: 24px;
    height: 24px;
    background-size: cover;
    display: block;
    margin: 0 auto;
}
.priceTable .icon-b {
    background: url('../images/check-icon-blue.png')no-repeat center center;
}
.priceTable .icon-g {
    background: url('../images/check-icon-green.png')no-repeat center center;
}
.priceTable .icon-p {
    background: url('../images/check-icon-purple.png')no-repeat center center;
}
.priceTable .icon-o {
    background: url('../images/check-icon-orange.png')no-repeat center center;
}
.priceTable .icon-pk{
    background: url('../images/check-icon-pink.png')no-repeat center center;
}
.priceTable .line-short {
    display: block;
    margin: 0 auto;
    width: 36px;
    height: 4px;
    background: #eaeff3;
}
.priceTable .sText {
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: normal;
    text-align: center;
    color: #000000;
    width: 100%;
    margin: 0 auto;
}
.priceTable th h2 {
    margin: 0;
    padding: 21px 0 5px 0;
    font-size: 26px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: 0.52px;
    text-align: center;
    color: #0d64a4;
}
.priceTable th h3 {
    margin: 0 0 7px 0;
    padding: 0;
    font-size: 16px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 1.6px;
    text-align: center;
    color: #000000;
    text-transform: uppercase;
}
.priceTable th p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.22;
    letter-spacing: 0.36px;
    text-align: center;
    color: #000000;
}
.priceTable .pricerow>h2 {
    font-size: 60px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    color: #0d64a4;
}
.priceTable .pricerow>p {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: center;
    color: #000000;
}
.priceTable .pricerow>p strong {
    font-weight: 900;
    display: block;
}
.priceTable tbody tr:not(:last-child) {
    border-top: 1px solid #dde4ea;
}
.priceTable tr th:not(:last-child):not(:first-child),
.priceTable tr td:not(:last-child):not(:first-child) {
    border-right: 1px solid #dde4ea;
}
.priceTable tfoot tr {
    vertical-align: top;
    -webkit-transition:  all 0.2s;
    transition:  all 0.2s;
}
.priceTable tbody tr td {
    padding: 12px 0;
}
.priceTable tbody tr th:not(:first-child){
    vertical-align: bottom;
}
.priceTable tbody tr td:not(:first-child) {
    background: #fff;
    padding: 18px 18px;
}
.priceTable tr th:not(:first-child),
.priceTable tr td:not(:first-child) {
    width: 220px;
}
.priceTable tr th:not(:first-child) .headCont .sText{
    padding: 10px;
}
.priceTable tr:nth-of-type(15) {
    vertical-align: top;
}
.priceTable tr th:nth-of-type(2) .headCont{
    border-top-left-radius: 20px;
}
.priceTable tr th:nth-of-type(6) .headCont {
    border-top-right-radius: 20px;
}
.priceTable tr th:not(:first-child) .headCont {
    background: #fff;
}
.priceTable tr td:not(:first-child) .footCont {
    min-height: 74px;
    padding-bottom: 26px;
    display: block;
    background: #fff;
    padding: 0 18px;
}
.priceTable tr td:nth-of-type(2) .footCont {
    border-bottom-left-radius: 20px;
}
.priceTable tr td:nth-of-type(6) .footCont {
    border-bottom-right-radius: 20px;
}
.priceTable tr th:nth-of-type(1) {
    vertical-align: bottom;
    width: auto;
}
.priceTable tr th:nth-of-type(1) span {
    font-size: 18px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
    display: block;
    margin-bottom: 4px;
}
.priceTable tr th:nth-of-type(1) span em {
    font-size: 14px;
}
.priceTable tr td:nth-of-type(1) span {
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #2a2a2a;
    max-width: 197px;
    display: block;
}
.priceTable tr th:nth-of-type(3) h2{
    color: #006b6e;
}
.priceTable tr th:nth-of-type(4) h2 {
    color: #a254ac;
}
.priceTable tr th:nth-of-type(5) h2 {
    color: #e74e23;
}
.priceTable tr th:nth-of-type(6) h2{
    color: #ee60de;
}
/* Membership Page Over */

/* advocacy page */
.hero-section .carousel-caption h2.title {
    font-size: 40px;
    line-height: 63px;
}
.hero-section .carousel-caption h2 {
    font-size: 65px;
    line-height: 78px;
    font-weight: bold;
    letter-spacing: 1px;
}
.hero-section .carousel-caption p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
}
.hero-section .carousel-caption .btn {
    font-size: 16px;
    line-height: 24px;
    min-width: inherit;
    padding: 12px 29px;
    letter-spacing: 1px;
}
.hero-section .carousel-item {
    height: 600px;
}
.event-update-section {
    padding: 53px 0 27px;
}
.event-update-section h3 {
    font-size: 25px;
    line-height: 36px;
    font-weight: bold;
    color: #010101;
    letter-spacing: 0.3px;
}
.event-update-section p {
    font-size: 18px;
    line-height: 30px;
    color: #010101;
    margin-top: 13px;
}
.event-update-section h2 {
    margin-bottom: 18px;
}
.event-update-section img {
    width: 360px;
}
.event-update-section .item-btn {
    margin-top: 22px;
}
.agenda-section {
    padding: 43px 0 23px;
}
.agenda-item {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
}
.agenda-item h5 {
    font-size: 22px;
    font-weight: 900;
}
.agenda-item p {
    flex: 1 0 auto;
}
.agenda-img {
    max-height: 200px;
    min-height: 200px;
    max-width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f4f4f4;
    border-radius: 20px;
    margin-top: 18px;
    margin-bottom: 20px;
}
.agenda-img img {
    object-fit: cover;
    border-radius: 20px;
}
.agenda-item .item-btn {
    margin-top: 0;
    margin-bottom: 43px;
}
/* advocacy page over */

/* Blog Detail Page */
.blog-artical {
    padding: 50px 0 25px;
}
.blog-title {
    font-size: 65px;
    font-weight: 900;
    max-width: 85%;
}
.blog-description {
    font-size: 20px;
}
.about_blog-user {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}
.about_blog-user p {
    font-size: 16px;
}
.blog-share {
    list-style: none;
    padding-left: 0;
}
.blog-share li {
    display: inline-block;
}
.blog-share li + li {
    margin-left: 4px;
}
.blog-share li a {
    height: 40px;
    width: 40px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    display: block;
    border-radius: 50%;
    padding: 4px;
}
.blog-artical .sub-title {
    letter-spacing: 0.5px;
    line-height: 36px;
}
.blog-description-list {
    list-style-type: none;
    padding-left: 30px;
    margin: 30px auto;
}
.blog-description-list li {
    position: relative;
    font-size: 18px;
    line-height: 25px;
    counter-increment: list;
}
.blog-description-list li:before {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    color: #006b6e;
    content: counter(list) ".";
    left: -27px;
}
.blog-description-list li + li {
    margin-top: 29px;
}
.bullet-point li:before {
    display: none;
}
.bullet-point {
    list-style: unset;
}
.user-sub-title .user-name {
    color: #000;
    font-size: 20px;
    line-height: normal;
}
.user-sub-title span {
    font-size: 20px;
    color: #000;
}
/* Blog Detail Page Over*/

/* Blog Events Detail Page */
.register-schedule {
    width: 100%;
    max-width: 480px;
}
.register-schedule {
    width: 100%;
    max-width: 750px;
}
.register-schedule p {
    margin-right: 30px;
}
/* Blog Events Detail Page Over*/

/* Calendar Page */
.view-calendar {
    margin-top: 2rem;
}
.view-calendar .view-filters {
    background-color: #006b6e;
    color: #fff;
    margin-bottom: 2rem;
}
.view-calendar .view-filters .views-exposed-widgets {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.view-calendar .view-filters .views-exposed-form .views-widget-filter-field_geofield_distance,
.view-calendar .view-filters .views-exposed-form .views-widget-filter-title,
.view-calendar .view-filters .views-exposed-form .views-widget-filter-field_acgi_type_tid,
.view-calendar .view-filters .views-exposed-form .views-widget-filter-field_event_category_tid,
.view-calendar .view-filters .views-exposed-form .views-widget-filter-field_persona_type_tid {
    float: none;
    display: flex;
    flex-wrap: wrap;
    padding: 1.5rem 2.5rem;
    width: 100%;
}

.view-calendar .view-filters .views-exposed-form .views-widget-filter-field_geofield_distance,
.view-calendar .view-filters .views-exposed-form .views-widget-filter-title {
    align-items: center;
}
.view-calendar .view-filters .views-exposed-form .views-widget-filter-field_acgi_type_tid {
    background: rgba(0,79,89,.2);
}
.view-calendar .view-filters .views-exposed-form .views-widget-filter-field_acgi_type_tid,
.view-calendar .view-filters .views-exposed-form .views-widget-filter-field_event_category_tid,
.view-calendar .view-filters .views-exposed-form .views-widget-filter-field_persona_type_tid {
    padding-bottom: .5rem;
}
.view-calendar .view-filters .views-exposed-widget > label {
    margin-bottom: 0;
    width: 120px;
}
.view-calendar .view-filters .views-exposed-form .views-widget {
    width: calc(100% - 120px);
}
.view-calendar .bef-checkboxes {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.view-calendar .bef-checkboxes .form-type-bef-checkbox {
    margin-bottom: 1rem;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 33.33%;
}
.view-calendar .bef-checkboxes input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.view-calendar .bef-checkboxes label.option {
    margin-bottom: 0;
    padding-left: 30px;
    position: relative;
}
.view-calendar .bef-checkboxes label.option:before {
    background: #003d45;
    border-radius: 50%;
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
}
.view-calendar .bef-checkboxes label.option:after {
    content: '\f00c';
    color: #1dafec;
    font-family: 'Font Awesome 5 Free';
    font-size: 1rem;
    line-height: 1;
    position: absolute;
    left: 4px;
    top: 2px;
    opacity: 0;
    -webkit-transition: opacity .25s linear;
    transition: opacity .25s linear;
}
.view-calendar .bef-checkboxes input[type=checkbox]:checked ~ label.option:after {
    opacity: 1;
}
.view-calendar .view-filters .views-exposed-form .views-reset-button {
    padding-right: 2.5rem;
}
.view-calendar .view-filters .views-exposed-form .views-exposed-widget .btn {
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.view-calendar .card {
    border-radius: 0;
    margin-bottom: 2rem;
    height: calc(100% - 2rem);
    transition: all .3s;
}
.view-calendar .card:hover {
    box-shadow: 2px 18px 50px rgba(0, 0, 0, .2);
}
.view-calendar .card a {
    color: #000000;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    height: 100%;
}
.view-calendar .card .card-title {
    color: #006b6e;
    font-weight: bold;
    flex: 1 1 auto;
}
.view-calendar .card p {
    font-size: 16px;
}
.view-calendar .card p:empty {
    margin-bottom: 0;
}
.view-calendar .pager-load-more,
.view-id-member_directory .pager-load-more{
    list-style-type: none;
    margin-bottom: 2rem;
    padding: 0;
    text-align: center;
}
.view-calendar .pager-load-more .page-link,
.view-id-member_directory .pager-load-more .page-link {
    border: none;
    color: #000;
    display: inline-block;
    font-weight: bold;
    padding: 0;
}
.view-calendar .pager-load-more .page-link:hover,
.view-id-member_directory .pager-load-more .page-link:hover {
    background-color: transparent;
}
.view-calendar .pager-load-more .page-link:focus,
.view-id-member_directory .pager-load-more .page-link:focus {
    outline: 0;
}
.view-calendar .pager-load-more .page-link:before,
.view-id-member_directory .pager-load-more .page-link:before {
    display: block;
    content: "\f078";
    color: #1dafec;
    font-family: 'Font Awesome 5 Free';
}
/* Calendar Page Over */

@media (min-width: 1900px) {
    .featured-events-block:before {
        width: calc(100% - 40.5%);
    }
}


@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    .navbar-main .navbar-nav .nav-item ~ .nav-item {
        margin-left: 30px;
    }
    .navbar-main .navbar-nav .nav-item > .dropdown-menu {
        min-width: 240px;
    }
    .navbar-main .navbar-nav .nav-item .dropdown-item {
        white-space: normal;
    }
    .navbar-main .navbar-nav .nav-item.last > .dropdown-menu {
        left: auto;
        right: 0;
    }
    .navbar-main .search-icon {
        order: 4;
    }
    .item-btn .btn {
        padding: 12px 30px;
    }
    .national-leadership img {
        top: 3px;
        left: -104px;
        max-width: initial;
        /*width: 817px;*/
    }

    /* About Page */
    .find-chapter img {
        float: right;
        max-width: initial;
        width: 589px;
    }
    /* About Page Over*/

    /* Membership Page */
    .priceTable tr th.hover,
    .priceTable tr th.hover .headCont{
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        box-shadow: 0 0 7px rgba(0, 0, 0, .15);
    }
    .priceTable tbody tr td.hover {
        position: relative;
    }
    .priceTable tbody tr td.hover:before {
        box-shadow: inset -15px 0 15px -15px rgba(0, 0, 0, .2);
        content: " ";
        height: 100%;
        top: 0;
        left: -15px;
        position: absolute;
        width: 15px;
        transform: scale(0.83);
    }
    .priceTable tbody tr td.hover:after {
        box-shadow:inset 15px 0 15px -15px rgba(0, 0, 0, .2);
        content: " ";
        height: 100%;
        position: absolute;
        top: 0;
        right: -15px;
        width: 15px;
        transform: scale(0.83);
    }
    .priceTable tfoot tr td.hover{
        box-shadow: 0 0 7px rgba(0, 0, 0, .15);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .priceTable tfoot tr td.hover .footCont {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .priceTable tr th.hover:nth-of-type(2) .headCont{
        background: #0d64a4;
    }
    .priceTable tr th.hover:nth-of-type(3) .headCont{
        background: #006b6e;
    }
    .priceTable tr th.hover:nth-of-type(4) .headCont{
        background: #a254ac;
    }
    .priceTable tr th.hover:nth-of-type(5) .headCont{
        background: #e74e23;
    }
    .priceTable tr th.hover:nth-of-type(6) .headCont{
        background: #ee60de;
    }
    .priceTable tr th.hover h2,
    .priceTable tr th.hover h3,
    .priceTable tr th.hover p {
        color: #fff;
    }
    .priceTable tr > th.hover:not(:first-child),
    .priceTable tr > td.hover:not(:first-child) {
        transform: scale(1.2);
        border: 0;
        position: relative;
    }
    .priceTable tbody td.hover > *{
        transform: scale(0.83);
    }
    .priceTable tr th:not(:first-child) .headCont{
        min-height: 23em;
    }
    /* Membership Page Over */
}

.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown-item.active, .dropdown-item:active,
.dropdown-item:hover, .dropdown-item:focus {
    color: #fff;
    text-decoration: none;
    background-color: #006b6e;
}

/**
hacker scott was here
 */
.event-gid-0{
    border-color: red!important;
}

div[class^="form-item-edit-field-acgi-type-tid-"]{
    height: unset!important;
}


/** NAWBO CHAPTER STYLE EDITS - 2022-04 - **/

/** float chapter section header to top **/
.context-chapter .head-section{z-index: 99 !important; background-color: transparent;}

/** chapter header backgrounds */
.context-chapter .chapter-header-bg img{
    width: 1000vw !important;
    overflow: visible !important;
    margin-top: -220px;
    object-fit: cover;
    max-height: 305px;
    margin-bottom: 0px !important;
    opacity: .25;
}

/** hide the national navbar on chapter pages **/
.context-chapter .navbar-main{display:none; !important;}

/** show the national site home link only on chapter pages **/
.national-home-menu-item{display: none;}
.context-chapter .national-home-menu-item{display: inherit;}

/** set chapter headers to white with bluegreen text by default **/
.context-chapter .chapter-title{color: #006B6E; }
.context-chapter .text-white{color: #006B6E !important; }
.context-chapter .head-section {background-color:transparent;}
.context-chapter .sub-navbar li a{color: #006B6E;}
.context-chapter .head-section.has-bg-image{
    background-size: cover; 
    background-position: center; 
    min-height:20vh;
    box-shadow:inset 0 0 0 2000px rgba(255, 255, 255, 0.7);}

/** style chapter logo default styles **/
.chapter-logo{max-width: 50px; max-height: 50px; float:left; margin-right:2%; }
.context-chapter .head-section .chapter-title{line-height:25px; }

/* sensible styles for chapter pages */

/** change width of home content */
.context-chapter .pane-node-body{margin-left:auto; margin-right:auto; max-width:1170px;}

/** add padding to bottom of fields */
.context-chapter .field{margin-bottom:50px;}

/** turn off default chapter menu if custom chapter menu exists*/
#block-og-menu-og-single-menu-block + #block-nawbo-dashboard-nawbo-chapter-main-menu{display:none;}

/** change default tripillar bg color */
.context-chapter .pane-tripillar-panel-pane-chapter.bg-light-blue{background-color: transparent;}

/** don't show tripillar titles on chapter pages */
.context-chapter .view-tripillar .title{display: none;}

/** don't show section titles on chapter about pages */
.node-chapter-about header{display: none;}

/** change subnav dropdown item color */
.context-chapter .sub-navbar li li a:active {
    background-color: #FEFEFE !important; color: #CCC;
}
.context-chapter .dropdown-item:active{background-color: #FFF !important;}

/** tablet styles */
@media only screen and (min-width: 480px) {

.chapter-logo{max-width: 100px; max-height: 100px; float:left; margin-right:2%}
.context-chapter .head-section .chapter-title{line-height:50px; vertical-align:center;}
.navbar-toggler-icon {display: none;}

}/** end tablet styles **/

/** desktop styles 
@media only screen and (min-width: 1200px) {
.chapter-logo{max-width: 200px; max-height: 200px; float:left; margin-right:2%;}
.context-chapter .head-section .chapter-title{line-height:200px; vertical-align:center; float:left;}
.context-chapter .head-section .sub-navbar ul{float:right; line-height:200px; margin-left:20px; vertical-align:center;}
.context-chapter .head-section .sub-navbar .dropdown-menu li{line-height:25px;}
}
*/

/** mobile styles */
@media only screen and (max-width: 480px) {

.chapter-logo{max-width: 50px; max-height: 50px; float:left; margin-right:6%;}
.context-chapter .head-section .chapter-title{line-height:25px; max-width: 265px;}
.navbar-toggler{float:right; margin-top: -20px;}
.context-chapter .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/** mobile navigation */
.navbar-collapse.collapse{display: none !important;}
.navbar-collapse.collapse.show{display: inherit !important;}
.navbar-collapse li, .navbar-collapse a{width: 100% !important;}

/** fix top navbar style on mobile**/
.navbar-top{padding:10px 5px 10px 5px !important;}
.navbar-top .navbar-top-left{align-items: center; justify-content: center; margin-top: 10px; margin-bottom: 10px !important;}
.navbar-top .container{padding-left:0px; padding-right:0px;}
.navbar-top .navbar-top-left li ~ li:before{content:none; display:none; height:0px; width:0px; }


/* hide member status on mobile to save space **/
.status.leaf{display:none;}


}/** end mobile styles **/

.context-chapter .block-system{
    margin-left: auto !important;
    margin-right: auto !important;
    width: 98%;
    max-width: 1156px;
}
