* {
    box-sizing: border-box
}

.whiteFont {
    color: #fff
}

.fontSixteen {
    font-size: 16px
}

.semiBold {
    font-weight: 600
}

.posRel {
    position: relative
}

body,
html {
    width: 100%;
    height: 100%
}

body {
    margin: 90px 0 0 0;
    padding: 0;
    color: #222;
    font-family: Montserrat, sans-serif;
    /* font-size: 16px; */
    overflow-x: hidden
}

@media screen and (max-width:991px) {
    body {
        margin: 0
    }
}

@media screen and (max-width:767px) {
    body {
        font-size: 14px
    }
}

li,
ul {
    margin: 0;
    padding: 0;
    list-style: none
}

a {
    text-decoration: none;
    color: #222
}

a:hover {
    text-decoration: none;
    transition: all .4s
}

a:focus {
    outline: 0
}

button,
input,
select,
textarea {
    margin: 0;
    padding: 0;
    border: none;
    background: 0 0
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 0;
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0) !important
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-weight: 400;
    margin: 0;
    padding: 0
}

h1 {
    text-transform: uppercase;
    color: #222;
    font-weight: 600;
    font-size: 30px;
    margin: 10px 0 30px 0;
    padding: 15px 0;
    position: relative
}

h1:after {
    content: '';
    position: absolute;
    left: 46%;
   
    bottom: 0;
    width: 100px;
    height: 5px;
    margin: auto;
    background: #cdcdcd
}

h1 span {
    color: #bf1a1f
}

@media screen and (max-width:767px) {
    h1 {
        font-size: 20px
    }
}

.clearfix::after {
    content: "";
    clear: both;
    display: table
}

p {
    /* line-height: 28px */
}

.btn-gray {
    display: inline-block;
    border-radius: 20px;
    background: #7b7d7c;
    color: #fff;
    padding: 6px 25px;
    font-size: 16px;
    font-weight: 500;
    transition: all .4s
}

.btn-gray:hover {
    background: #bf1a1f;
    color: #fff
}

@media screen and (max-width:767px) {
    .btn-gray {
        font-size: 14px;
        padding: 6px 15px
    }
}

.btn-white {
    display: inline-block;
    border-radius: 20px;
    background: 0 0;
    border: 1px solid #7b7d7c;
    color: #7b7d7c;
    padding: 6px 25px;
    font-size: 16px;
    font-weight: 500;
    transition: all .4s
}

.btn-white:hover {
    background: #bf1a1f;
    color: #fff;
    border: 1px solid #bf1a1f
}

@media screen and (max-width:767px) {
    .btn-white {
        font-size: 14px;
        padding: 6px 15px
    }
}

@media screen and (max-width:991px) {
    .mob-display-none {
        display: none
    }
}

.container {
    max-width: 1200px
}

.fixed-social {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 100
}

.fixed-social a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    margin: 5px 0
}

.facebook {
    background: #3b5998
}

.twitter {
    background: #00acee
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%
}

.center-it {
    display: none;
    position: fixed;
    bottom: -145px;
    left: 50%;
    z-index: 101;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.scroll-btn {
    display: block
}

@media screen and (max-width:991px) {
    .center-it {
        display: none
    }

    .scroll-btn {
        display: none
    }
}

.caption {
    width: 2px;
    height: 100px;
    background: #bf1a1f;
    margin: 10px auto 0 auto
}

.mouse {
    display: inline-block;
    height: 35px;
    width: 20px;
    border-radius: 12px;
    border: 2px solid #bf1a1f;
    text-align: center
}

.mouse:a {
    display: inline-block
}

.mouse:after {
    display: inline-block;
    height: 5px;
    width: 5px;
    background-color: #bf1a1f;
    border-radius: 50%;
    content: "";
    -webkit-animation: scroll 1.3s ease-out infinite forwards;
    -moz-animation: scroll 1.3s ease-out infinite forwards;
    animation: scroll 1.3s ease-out infinite forwards
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(5px)
    }

    100% {
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes scroll {
    0% {
        -moz-transform: translateY(0)
    }

    50% {
        -moz-transform: translateY(5px)
    }

    100% {
        -moz-transform: translateY(0)
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(5px);
        -moz-transform: translateY(5px);
        -ms-transform: translateY(5px);
        -o-transform: translateY(5px);
        transform: translateY(5px)
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

header {
    background: #fff;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .1);
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    z-index: 101
}

@media screen and (max-width:991px) {
    header {
        position: static;
        height: auto
    }
}

@media screen and (max-width:991px) {
    header .row {
        margin: 0
    }
}

@media screen and (max-width:991px) {
    header .col-sm-12 {
        padding: 0
    }
}

header .header-left-container {
    float: left;
    width: 12%
}

@media screen and (max-width:991px) {
    header .header-left-container {
        width: 50%;
        padding-left: 15px
    }
}

header .header-right-container {
    float: right
}

@media screen and (max-width:991px) {
    header .header-right-container {
        width: 100%
    }
}

header .header-top-container {
    position: absolute;
    right: 15px;
    top: 13px
}

@media screen and (max-width:991px) {
    header .header-top-container {
        top: 25px
    }
}

@media screen and (max-width:425px) {
    header .header-top-container {
        top: 15px
    }
}

header .header-bottom-container {
    float: right;
    margin: 35px 0 15px 0
}

@media screen and (max-width:991px) {
    header .header-bottom-container {
        width: 100%;
        margin-top: 0;
        display: none
    }
}

header nav ul li {
    display: inline-block;
    padding: 0 10px;
    position: relative
}

header nav ul li:first-child {
    padding-left: 0
}

@media screen and (max-width:991px) {
    header nav ul li:first-child {
        border-top: 0 solid #ccc;
        padding: 0
    }
}

header nav ul li:last-child {
    padding-right: 0
}

@media screen and (max-width:991px) {
    header nav ul li:last-child {
        padding: 0
    }
}

header nav ul li a {
    display: block;
    color: #444;
    font-weight: 600;
    position: relative;
    font-size: 13px;
    transition: all .4s
}

header nav ul li a:hover {
    color: #bf1a1f
}

header nav ul li a:hover:after {
    width: 80%
}

@media screen and (max-width:991px) {
    header nav ul li a:hover:after {
        width: 0%
    }
}

header nav ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 0%;
    height: 2px;
    background: #bf1a1f;
    transition: all .4s
}

header nav ul li a.active {
    color: #bf1a1f
}

header nav ul li a.active:after {
    width: 80%
}

@media screen and (max-width:991px) {
    header nav ul li a.active:after {
        width: 0%
    }
}

@media screen and (max-width:1200px) {
    header nav ul li a {
        font-size: 14px
    }
}

@media screen and (max-width:991px) {
    header nav ul li a {
        padding: 5px 0
    }
}

@media screen and (max-width:1200px) {
    header nav ul li {
        padding: 0 5px
    }
}

@media screen and (max-width:991px) {
    header nav ul li {
        width: 100%;
        text-align: center;
        border-top: 1px solid #ccc;
        font-size: 15px;
        padding: 0
    }
}

header nav ul li .sub-nav {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 200px;
    border-top: 2px solid #bf1a1f;
    background: #fff;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .3)
}

header nav ul li .sub-nav ul li {
    display: inline-block;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #d6d6d6
}

header nav ul li .sub-nav ul li a {
    display: block;
    text-align: left;
    padding: 5px 10px;
    color: #222;
    font-weight: 400;
    text-transform: none;
    font-size: 14px
}

header nav ul li .sub-nav ul li a:after {
    display: none
}

header nav ul li .sub-nav ul li a:hover {
    background: #fff;
    color: #bf1a1f
}

@media screen and (max-width:991px) {
    header nav ul li .sub-nav ul li a {
        text-align: center;
        color: #222
    }
}

header nav ul li .sub-nav ul li:last-child {
    border-bottom: none
}

@media screen and (max-width:991px) {
    header nav ul li .sub-nav ul li {
        border-bottom: none
    }
}

@media screen and (max-width:991px) {
    header nav ul li .sub-nav {
        position: static;
        width: 100%;
        background: #f5f5f5;
        border-top: 0 solid #fff;
        box-shadow: none
    }
}

header nav ul li .sub-nav:after {
    bottom: 100%;
    left: 20px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #bf1a1f;
    border-width: 7px;
    margin-left: -7px
}

@media screen and (max-width:991px) {
    header nav ul li .sub-nav:after {
        display: none
    }
}

header nav ul li span {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 31px;
    background: #bf1a1f;
    color: #fff;
    line-height: 31px;
    cursor: pointer
}

header nav ul li span:after {
    content: '+';
    font-size: 25px
}

@media screen and (max-width:991px) {
    header nav ul li span {
        display: block
    }
}

@media screen and (min-width:991px) {
    header nav ul li:hover .sub-nav {
        display: block
    }
}

@media screen and (max-width:991px) {
    header nav {
        background: #fff
    }
}

header nav .minus:after {
    content: "-" !important
}

@media screen and (max-width:991px) {
    header .container {
        padding: 0
    }
}

.mobile-menu {
    display: none;
    float: left;
    width: 100%;
    background: #bf1a1f;
    padding: 5px 15px;
    cursor: pointer;
    margin: 8px 0 0 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px
}

.mobile-menu i {
    float: right;
    margin-top: 5px
}

@media screen and (max-width:991px) {
    .mobile-menu {
        display: block
    }
}

#mainBanner img {
    display: inline-block
}

#banner img {
    display: inline-block
}

#banner .banner-outer-container {
    position: absolute;
    right: 40px;
    top: 0;
    margin: auto;
    bottom: 0;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 2px solid #fff
}

@media screen and (max-width:1150px) {
    #banner .banner-outer-container {
        width: 370px;
        height: 370px
    }
}

@media screen and (max-width:991px) {
    #banner .banner-outer-container {
        display: none;
        top: 50px;
        left: 0;
        margin: auto
    }
}

@media screen and (max-width:767px) {
    #banner .banner-outer-container {
        top: 30px;
        width: 290px;
        height: 290px
    }
}

#banner .banner-content-container {
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background: rgba(191, 26, 31, .9);
    border-radius: 50%;
    padding: 0 30px
}

@media screen and (max-width:1150px) {
    #banner .banner-content-container {
        width: 350px;
        height: 350px
    }
}

@media screen and (max-width:991px) {
    #banner .banner-content-container {
        width: 280px;
        height: 280px;
        left: 0;
        right: 0
    }
}

@media screen and (max-width:767px) {
    #banner .banner-content-container {
        width: 220px;
        height: 220px
    }
}

@media screen and (max-width:575px) {
    #banner .banner-content-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
        background: rgba(191, 26, 31, .4)
    }
}

#banner h2 {
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 20px 0;
    line-height: 36px;
    text-shadow: 2px 2px rgba(0, 0, 0, .5)
}

#banner h2 strong {
    font-size: 72px;
    color: #bf1a1f;
    font-weight: 600
}

@media screen and (max-width:767px) {
    #banner h2 strong {
        font-size: 16px
    }
}

@media screen and (max-width:1150px) {
    #banner h2 {
        font-size: 20px;
        line-height: 26px
    }
}

@media screen and (max-width:991px) {
    #banner h2 {
        font-size: 16px;
        line-height: normal
    }
}

@media screen and (max-width:767px) {
    #banner h2 {
        font-size: 12px;
        margin: 0 0 5px 0;
        line-height: 20px
    }
}

@keyframes blink {
    50% {
        background: #fff;
        color: #7b7d7c;
        border-color: #fff
    }
}

#banner a {
    display: inline-block;
    color: #fff;
    padding: 1px 20px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: relative;
    /*animation:tcolor 2s infinite*/
}

#banner a:hover {
    background: #fff;
    color: #b81f25;
}

#banner a span {
    position: relative;
    z-index: 99
}

@media screen and (max-width:767px) {
    #banner a {
        font-size: 14px;
        padding: 5px 15px
    }
}

#banner .draw {
    overflow: hidden;
    position: relative
}

#banner .draw::before {
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: borderLeftColor 2s infinite
}

@keyframes borderLeftColor {
    0% {
        background: 0 0
    }

    25% {
        background: #fff
    }

    75% {
        background: #fff
    }

    100% {
        background: 0 0
    }
}

@keyframes borderRightColor {
    0% {
        right: -165px
    }

    25% {
        right: -84px
    }

    75% {
        right: -84px
    }

    100% {
        right: -165px
    }
}

@keyframes tcolor {
    0% {
        color: #fff
    }

    25% {
        color: #bf1a1f
    }

    75% {
        color: #bf1a1f
    }

    100% {
        color: #fff
    }
}

#banner .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    width: 1175px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    text-align: left
}

@media screen and (max-width:1220px) {
    #banner .slick-dots {
        width: 100%;
        padding: 0 15px
    }
}

@media screen and (max-width:991px) {
    #banner .slick-dots {
        bottom: 10px
    }
}

#banner .slick-dots li {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

#banner .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 15px;
    height: 15px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: #fff
}

#banner .slick-dots li.slick-active button {
    background: #bf1a1f
}

#overviewContainer {
    background: #fff
}

#overviewContainer .overview-inner-container {
    padding: 30px 0 50px 0;
    margin-top: 0;
    width: 100%;
    position: relative;
    background: #fff url(../images/about-bg.jpg) no-repeat top center;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, .1)
}

@media screen and (max-width:991px) {
    #overviewContainer .overview-inner-container {
        margin: 0
    }
}

@media screen and (max-width:767px) {
    #overviewContainer .overview-inner-container {
        padding: 20px 0
    }
}

#overviewContainer h2 {
    font-weight: 600;
    font-size: 18px;
    padding: 15px 0;
    line-height: 28px;
    position: relative
}

#overviewContainer h2:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 5px;
    margin: auto;
    background: #cdcdcd
}

#overviewContainer p {
    margin: 15px 0 0 0
}

#overviewContainer a {
    color: #222;
    display: inline-block
}

#overviewContainer a:hover {
    color: #fff
}

@media screen and (max-width:767px) {
    #overviewContainer a {
        display: inherit;
        width: 200px;
        margin: 0 auto
    }
}

#cammitteesContainer {
    background: #bf1a1f url(../images/committees-bg.jpg) no-repeat center center;
    color: #fff
}

#cammitteesContainer h1 {
    color: #fff
}

#cammitteesContainer h2 {
    font-weight: 500;
    font-size: 24px
}

@media screen and (max-width:767px) {
    #cammitteesContainer h2 {
        font-size: 16px
    }
}

#cammitteesContainer .circle-container {
    transition: all .4s
}

#cammitteesContainer .circle-container div {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    line-height: 85px;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    
    transition: all .4s;
}

@media screen and (max-width:575px) {
    #cammitteesContainer .circle-container div {
        width: 110px;
        height: 110px;
        line-height: 110px
    }
}

#cammitteesContainer .circle-container img {
    transition: all .4s
}

#cammitteesContainer .circle-container:hover div {
    background: #7b7c7c;
    box-shadow: inset 0 0 5px 5px rgba(0, 0, 0, .3);
    border: 4px solid #eaeaea
}

#cammitteesContainer .circle-container:hover img {
    transform: scale(.9)
}

#cammitteesContainer a {
    color: #fff;
    display: block;
    transition: all .4s
}

#cammitteesContainer a span {
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    width: 100%;
    text-transform: capitalize;
    margin-top: 15px
}

@media screen and (max-width:767px) {
    #cammitteesContainer a span {
        font-size: 16px
    }
}

#upcomingEvent .event-list-container {
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .1);
    border-radius: 10px;
    min-height: 336px;
    /*min-height:400px*/
}

@media screen and (max-width:767px) {
    #upcomingEvent .event-list-container {
        min-height: auto
    }
}

#upcomingEvent figure {
    position: relative;
    width: 100%;
    height: 185px;
    /*height:249px*/
}

#upcomingEvent figure img {
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

#upcomingEvent .event-date {
    position: absolute;
    left: 0;
    top: 20px;
    background: #bf1a1f;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 10px
}

#upcomingEvent .event-date sup {
    text-transform: none
}

#upcomingEvent h2 {
    color: #bf1a1f;
    font-weight: 600;
    font-size: 18px
}

#upcomingEvent h2 a {
    color: #bf1a1f
}

@media screen and (max-width:767px) {
    #upcomingEvent h2 {
        font-size: 16px
    }
}

#upcomingEvent .event-address,
#upcomingEvent .event-time {
    color: #222;
    font-weight: 500
}

#upcomingEvent .event-address i,
#upcomingEvent .event-time i {
    color: #bf1a1f
}

@media screen and (max-width:1100px) {

    #upcomingEvent .event-address,
    #upcomingEvent .event-time {
        font-size: 14px
    }
}

#ourMembers {
    background: #f5f5f5
}


#ourMembers .member-box {
    width: 100%;
    height: 200px;
    line-height: 200px;
    transition: all .4s;
    background: 0 0;
    border-radius: 20px;
    box-shadow: 0 0 2px 2px transparent;
    border: 3px solid transparent
}

#ourMembers .member-box:hover {
    background: #f6f6f6;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .1);
    border: 3px solid #fff
}

#ourMembers .member-box:hover img {
    -webkit-filter: grayscale(0);
    filter: none
}

#ourMembers .member-box img {
    max-width: 95%;
    max-height: 95%;
    /*filter:gray;-webkit-filter:grayscale(1);filter:grayscale(1);*/
    transition: all .4s
}

@media screen and (max-width:991px) {
    #ourMembers .member-box img {
        max-width: 70%;
        max-height: 70%
    }
}

@media screen and (max-width:991px) {
    #ourMembers .member-box {
        height: 100px;
        line-height: 100px;
        background: #f6f6f6;
        box-shadow: 0 0 2px 2px rgba(0, 0, 0, .1);
        border: 3px solid #fff
    }
}

footer {
    background: #bf1a1f url(../images/footer-bg.jpg) no-repeat center center;
    background-size: cover
}

footer h2 {
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 10px 0
}

@media screen and (max-width:991px) {
    footer h2 {
        background: rgba(0, 0, 0, .1);
        padding: 8px 10px;
        font-size: 14px;
        position: relative;
        cursor: pointer
    }

    footer h2:after {
        content: '+';
        position: absolute;
        right: 10px;
        top: 3px;
        font-size: 22px
    }
}

footer .minus {
    position: relative
}

footer .minus:after {
    content: "-" !important
}

footer ul li {
    margin: 5px 0
}

@media screen and (max-width:991px) {
    footer ul {
        display: none;
        padding: 0 10px;
        margin-bottom: 20px
    }
}

footer a {
    font-size: 14px;
    font-weight: 300;
    color: #fff
}

footer a:hover {
    color: #fff
}

footer p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    line-height: 22px
}

footer p:hover {
    color: #fff
}

@media screen and (max-width:991px) {
    footer p {
        display: none;
        padding: 0 10px
    }
}

footer .email-icon,
footer .location-icon,
footer .phone-icon {
    padding-left: 20px;
    position: relative
}

footer .location-icon:after {
    content: "\f3c5";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0;
    color: #afafad
}

footer .phone-icon:after {
    content: "\f2a0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0;
    color: #afafad
}

footer .email-icon:after {
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0;
    color: #afafad
}

footer .email-icon:hover {
    text-decoration: underline
}

footer .copyright {
    font-size: 12px;
    text-align: center
}

@media screen and (max-width:991px) {
    footer .copyright {
        text-align: right;
        margin-top: 10px
    }
}

@media screen and (max-width:575px) {
    footer .copyright {
        text-align: center;
        margin-bottom: 10px
    }
}

.footer-social {
    display: inline-block
}

.footer-social a {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin: 0 2px;
    background: #fff;
    border-radius: 50%;
    color: #bf1a1f
}

.footer-social a:hover {
    color: #222
}

.footer-social a i {
    font-size: 12px
}

#committeeContainer h2 {
    font-size: 26px;
    font-weight: 600
}

@media screen and (max-width:767px) {
    #committeeContainer h2 {
        font-size: 16px
    }
}

#committeeContainer p strong {
    font-weight: 600
}

#committeeContainer .col-md-9 p strong {
    font-weight: 600;
    color: #bf1a1f
}

#committeeContainer .grad {
    background-image: linear-gradient(#fff, #f5f5f5)
}

#committeeContainer .email-text {
    font-size: 25px;
    font-weight: 500
}

#committeeContainer .email-text a {
    color: #bf1a1f;
    text-decoration: underline;
    font-weight: 600;
    font-size: 28px
}

#committeeContainer .email-text a:hover {
    text-decoration: none
}

@media screen and (max-width:767px) {
    #committeeContainer .email-text a {
        font-size: 20px
    }
}

@media screen and (max-width:767px) {
    #committeeContainer .email-text {
        font-size: 16px
    }
}

#infoBtnContainer .btn-gray {
    padding: 10px 25px
}

#governanceContainer ul li {
    margin-bottom: 20px;
    padding: 0 0 0 30px;
    position: relative
}

#governanceContainer ul li span {
    color: #bf1a1f
}

#governanceContainer ul li::after {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0;
    color: #bf1a1f
}


#memberLogo ul li {
    float: left;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    height: 160px;
    line-height: 160px;
    text-align: center;
    width: 25%;
    cursor: default;
}

@media screen and (max-width:767px) {
    #memberLogo ul li {
        width: 50%
    }

}

#memberLogo ul li img {
    max-width: 95%;
    max-height: 95%;
}

@media screen and (max-width:767px) {
    #memberLogo ul li img {
        max-width: 90%;
        max-height: 90%
    }
}

@media screen and (max-width:767px) {
    #memberLogo ul li:nth-child(2n) {
        border-right: none
    }

}

#memberLogo ul li:nth-child(4n) {
    border-right: none
}

#memberLogo ul li:nth-last-child(-n+4):nth-child(4n+1),
#memberLogo ul li:nth-last-child(-n+4):nth-child(4n+1)~* {
    border-bottom: none
}

@media screen and (max-width:767px) {

    /*#memberLogo ul li:nth-last-child(-n+4):nth-child(4n+1),#memberLogo ul li:nth-last-child(-n+4):nth-child(4n+1)~*{display:none;border-bottom:1px solid #ccc}*/

    #memberLogo ul li:nth-last-child(-n+4):nth-child(4n+1) {
        border-bottom: 1px solid #ccc;
    }

    #memberLogo ul li:nth-last-child(3) {
        border-bottom: 1px solid #ccc !important;
    }

    #memberLogo ul li:last-child {
        display: none;
    }

}

#membershipType h2 {
    font-size: 20px;
    font-weight: 600
}

#membershipType p strong {
    font-size: 18px;
    font-weight: 500
}

#membershipType .about-member {
    min-height: 420px
}

@media screen and (max-width:767px) {
    #membershipType .about-member {
        min-height: auto
    }
}

#membershipType .memb-member {
    min-height: 320px
}

@media screen and (max-width:767px) {
    #membershipType .memb-member {
        min-height: auto
    }
}

#membershipType .membership-type-container {
    margin-top: -50px;
    background: #f5f5f5;
    position: relative
}

@media screen and (max-width:767px) {
    #membershipType .membership-type-container {
        margin-top: 0
    }
}

#membershipType .membership-type-container ul li {
    padding: 0 0 0 20px;
    position: relative;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px
}

#membershipType .membership-type-container ul li:after {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0;
    color: #bf1a1f
}

#membershipTypeNew {
    background: #f5f5f5;
    margin: 80px 0 0 0
}

#membershipTypeNew h2 {
    font-size: 20px;
    font-weight: 600
}

#membershipTypeNew p strong {
    font-size: 18px;
    font-weight: 500
}

#membershipTypeNew .about-member {
    min-height: 420px
}

@media screen and (max-width:767px) {
    #membershipTypeNew .about-member {
        min-height: auto
    }
}

#membershipTypeNew .memb-member {
    min-height: 320px
}

@media screen and (max-width:767px) {
    #membershipTypeNew .memb-member {
        min-height: auto
    }
}

#membershipTypeNew .membership-type-container {
    position: relative
}

@media screen and (max-width:767px) {
    #membershipTypeNew .membership-type-container {
        margin-top: 0
    }
}

#membershipTypeNew .membership-type-container ul {
    counter-reset: my-sec-counter
}

#membershipTypeNew .membership-type-container ul li {
    padding: 0 0 0 20px;
    position: relative;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px
}

#membershipTypeNew .membership-type-container ul li:after {
    counter-increment: my-sec-counter;
    content: " " counter(my-sec-counter) ". ";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0;
    color: #bf1a1f
}

#fccVision {
    background: url(../images/about/vision-bg.jpg) no-repeat 73% center;
    background-size: cover
}

@media screen and (max-width:767px) {
    #fccVision {
        background: #fefdf8
    }
}

#fccVision h2 {
    color: #bf1a1f;
    font-weight: 600;
    font-size: 30px
}

@media screen and (max-width:767px) {
    #fccVision h2 {
        font-size: 20px
    }
}

#fccMission {
    background: url(../images/about/mission-banner.jpg) no-repeat center center;
    background-size: cover
}

@media screen and (max-width:767px) {
    #fccMission {
        background: #f0f0f0
    }
}

#fccMission h2 {
    color: #bf1a1f;
    font-weight: 600;
    font-size: 30px
}

@media screen and (max-width:767px) {
    #fccMission h2 {
        font-size: 20px
    }
}

#convergenceDevelopment h2 {
    color: #bf1a1f;
    font-weight: 600;
    font-size: 22px
}

#convergenceDevelopment .convergence {
    background: url(../images/about/convergence-&-collaboration-banner.jpg) no-repeat center center;
    background-size: cover;
    min-height: 473px
}

#convergenceDevelopment .development {
    background: url(../images/about/development-banner.jpg) no-repeat center center;
    background-size: cover
}

#formContainer {
    background: #f5f5f5
}

#formContainer p {
    color: #000;
    font-size: 14px;
    font-weight: 500
}

#formContainer h6 {
    font-size: 20px;
    font-weight: 500
}

#formContainer h6 a {
    color: #bf1a1f
}

#formContainer h6 a:hover {
    text-decoration: underline
}

@media screen and (max-width:767px) {
    #formContainer h6 a {
        font-size: 20px
    }
}

@media screen and (max-width:767px) {
    #formContainer h6 {
        font-size: 16px
    }
}

#formContainer .field-group {
    background: #fff;
    padding: 30px 50px 10px 50px;
    margin-bottom: 0px;
    box-shadow: 0 1px 1px 1px #b0b0b0
}

@media screen and (max-width:767px) {
    #formContainer .field-group {
        padding: 30px 10px 10px 10px
    }
}

#formContainer .form-group {
    margin-bottom: 2rem
}

#formContainer .form-control {
    background: 0 0;
    border-radius: 0;
    border: none;
    padding: .375rem .35rem;
    border-bottom: 1px solid #999
}

#formContainer button {
    background: #bf1a1f;
    display: inline-block;
    cursor: pointer;
    color: #fff;
    border-radius: 30px;
    padding: 10px 50px;
    font-size: 20px;
    font-weight: 500;
    transition: all .4s
}

#formContainer button:hover {
    background: #7a7a7a;
    color: #fff
}

#formContainer .text-danger {
    display: none;
    font-size: 14px;
    padding: 5px 0 0 0
}

#formContainer select {
    color: 000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/apply-for-membership/select-arrow.png) no-repeat right 15px !important
}

#formContainer::placeholder {
    color: #000;
    opacity: 1
}

#formContainer:-ms-input-placeholder {
    color: #000
}

#formContainer::-ms-input-placeholder {
    color: #000
}

#formContainer .captcha-input {
    border-bottom: 1px solid #999;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px
}

#formContainer .captcha-container {
    position: absolute;
    left: 25px;
    top: 6px;
    font-weight: 600;
    color: #bf1a1f
}

#formContainer .captcha-input {
    padding-left: 50px !important
}

#addressContainer h2 {
    font-size: 18px;
    font-weight: 600
}

#addressContainer .map {
    display: inline-block;
    padding-left: 20px;
    position: relative
}

#addressContainer .map:after {
    content: "\f3c5";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0;
    color: #afafad
}

@media screen and (max-width:575px) {
    #addressContainer .map:after {
        left: 35px
    }
}

#addressContainer .map strong {
    font-weight: 600
}

#addressContainer i {
    color: #afafad;
    padding-right: 5px
}

#addressContainer p a:hover {
    color: #bf1a1f
}

@media screen and (max-width:767px) {
    #addressContainer img {
        width: 100px
    }
}

#policyContainer {
    min-height: 423px;
    position: relative
}

@media screen and (max-width:991px) {
    #policyContainer {
        min-height: 350px
    }
}

@media screen and (max-width:767px) {
    #policyContainer {
        min-height: auto
    }
}

#policyContainer .row {
    height: 100%
}

#policyContainer .col-md-6 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 400px
}

@media screen and (max-width:1200px) {
    #policyContainer .col-md-6 {
        height: auto
    }
}

#policyContainer h2 {
    color: #bf1a1f;
    font-size: 20px;
    font-weight: 600
}

#policyContainer .report-container a {
    font-weight: 500;
    padding: 3px 30px 3px 0;
    background: url(../images/policy/pdf-icon.png) no-repeat right top
}

#policyContainer .report-container a:hover {
    color: #bf1a1f
}

#policyContainer .policy-pic {
    position: absolute;
    right: 0;
    top: 0;
    width: 52%;
    text-align: right
}

@media screen and (max-width:767px) {
    #policyContainer .policy-pic {
        position: static;
        width: 100%
    }
}

#policyContainer .policy-pic img {
    width: 100%
}

#researchList h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 600
}

#researchList .listHeadingBg {
    background: #7c7c7c
}

#researchList .listRowBg {
    background: #f5f5f5;
    border-bottom: 1px solid #7c7c7c
}

#researchList a {
    font-weight: 500
}

#researchList a:hover {
    color: #bf1a1f
}

#thankyou {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px
}

#aboutIntroContent {
    background: #fff;
    height: 500px;
    position: relative;
    overflow: auto
}

#aboutIntroContent p a {
    color: #bf1a1f;
    font-weight: 600
}

#aboutIntroContent p a:hover {
    text-decoration: underline
}

#aboutIntroContent .ps__thumb-y {
    background: #fff
}

#aboutIntroContent .ps__rail-y {
    background: #fff
}

#aboutBtn {
    position: relative
}

#aboutBtn p a {
    color: #bf1a1f;
    font-weight: 600
}

#aboutBtn p a:hover {
    text-decoration: underline
}

#aboutBtn:after {
    content: '';
    position: absolute;
    left: 0;
    top: -130px;
    width: 100%;
    height: 130px;
    z-index: 1;
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .7) 27%, #fff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(27%, rgba(255, 255, 255, .7)), color-stop(100%, #fff));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .7) 27%, #fff 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .7) 27%, #fff 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .7) 27%, #fff 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .7) 27%, #fff 100%)
}

#activitiesContent p {
    font-size: 14px;
    line-height: 22px
}

.advocacy-list li {
    padding: 0 0 0 20px;
    position: relative;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px
}

.advocacy-list li:after {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0;
    color: #bf1a1f
}

#eventContainer ul li {
    float: left;
    width: 100%;
    margin-bottom: 50px
}

@media screen and (max-width:767px) {
    #eventContainer ul li {
        margin-bottom: 20px
    }
}

#eventContainer .event-left {
    float: left;
    width: 380px
}

@media screen and (max-width:991px) {
    #eventContainer .event-left {
        width: 40%
    }
}

@media screen and (max-width:767px) {
    #eventContainer .event-left {
        width: 100%
    }
}

#eventContainer .event-left figure {
    width: 100%;
    height: 280px;
    line-height: 280px;
    text-align: center
}

@media screen and (max-width:991px) {
    #eventContainer .event-left figure {
        height: 250px;
        line-height: 250px
    }
}

@media screen and (max-width:767px) {
    #eventContainer .event-left figure {
        height: auto;
        line-height: normal;
        text-align: left
    }
}

#eventContainer .event-left figure img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px
}

#eventContainer .event-right {
    float: right;
    width: calc(100% - 420px)
}

@media screen and (max-width:991px) {
    #eventContainer .event-right {
        width: 55%
    }
}

@media screen and (max-width:767px) {
    #eventContainer .event-right {
        width: 100%
    }
}

#eventContainer .event-right h2 {
    color: #bf1a1f;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase
}

@media screen and (max-width:767px) {
    #eventContainer .event-right h2 {
        font-size: 16px
    }
}

#eventContainer .event-right .photo-gallery-btn a {
    background: #bf1a1f;
    display: inline-block;
    cursor: pointer;
    color: #fff;
    border-radius: 30px;
    padding: 6px 25px;
    font-size: 16px;
    font-weight: 500
}

#eventContainer .event-right .photo-gallery-btn a:hover {
    background: #7a7a7a
}

#eventContainer .event-right .event-address,
#eventContainer .event-right .event-time {
    color: #222;
    font-weight: 500
}

#eventContainer .event-right .event-address i,
#eventContainer .event-right .event-time i {
    color: #bf1a1f
}

#newsContainer ul li {
    float: left;
    width: 100%;
    padding: 20px 30px
}

#newsContainer ul li:nth-child(odd) {
    background-image: linear-gradient(#fff, #f5f5f5)
}

@media screen and (max-width:767px) {
    #newsContainer ul li {
        padding: 20px 20px
    }
}

#newsContainer ul li h2 {
    font-size: 18px;
    font-weight: 600
}

#newsContainer ul li h2 a {
    color: #bf1a1f
}

#newsContainer ul li h2 a:hover {
    color: #bf1a1f
}

@media screen and (max-width:767px) {
    #newsContainer ul li h2 {
        font-size: 16px
    }
}

#newsContainer ul li .news-time {
    float: left;
    font-size: 14px
}

#newsContainer ul li .news-time i {
    color: #bf1a1f
}

#newsContainer ul li .news-share {
    float: left
}

#newsContainer ul li .news-share i {
    color: #bf1a1f;
    cursor: pointer
}

#newsContainer .loadMore {
    float: left;
    width: 100%;
    margin: 25px 0;
    color: #bf1a1f;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-weight: 600
}

#newsContainer .loadMore i {
    font-size: 12px
}

#newsContainer select {
    border: 1px solid #ccc;
    padding: 6px 40px 6px 20px;
    color: #bf1a1f;
    font-weight: 600;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #eee url(../images/apply-for-membership/select-arrow.png) no-repeat 88% 14px !important
}

#newsContainer .news-share-icon {
    display: none;
    float: left;
    margin-top: -4px;
    padding: 0 10px
}

#newsContainer .news-share-icon a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    margin: 0 3px
}

#newsContainer .news-share-icon a i {
    color: #fff
}

.btnW {
    width: 250px
}

@media screen and (max-width:767px) {
    .btnW {
        width: 225px
    }
}

#memberPageBtn {
    margin: 0 auto;
    width: 600px
}

@media screen and (max-width:767px) {
    #memberPageBtn {
        width: 80%
    }
}

#memberPageBtn .btn-left {
    float: left;
    width: 48%
}

@media screen and (max-width:767px) {
    #memberPageBtn .btn-left {
        width: 100%;
        margin-bottom: 20px
    }
}

#memberPageBtn .btn-right {
    float: right;
    width: 48%
}

@media screen and (max-width:767px) {
    #memberPageBtn .btn-right {
        width: 100%
    }
}

#HomeClientLogo {
    height: 500px
}

#HomeClientLogo .ps__rail-x,
#HomeClientLogo .ps__rail-y {
    opacity: .6
}

.allmembers__cards {
    display: block;
    text-align: center;
    margin-bottom: 35px;
}

.allmembers__logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 150px;
    padding: 15px;
    background: #fff;
    border: 1px solid rgba(151,151,151,0.5);
    overflow: hidden;
}

.allmembers__logo {
    width: 140px;
    max-width: 220px;
}
@media (min-width: 1200px) {  
    .allmembers__logo {
        width: 220px;
        max-width: 220px;
    }
}


.allmembers__cards p {
    /* font: 14px/18px "Poppins-Regular"; */
    color: #000;
    margin: 10px 0 0;
}