.charity-top-cards {
    margin-top: -70px;
}
.charity-top-cards .row > div {
    z-index: 11;
    min-height: 320px; 
    background: var(--charity-top-cards-bg);
    color: var(--charity-top-cards-color);
    position: relative;
    padding-bottom: 80px;
}
.charity-top-cards .row div {
    animation: fadeInRight 2s;
}
.charity-top-cards .row > div > .shadow_ {
    top: 0;
    left: 0;
    z-index: 1;
}
.charity-top-cards .row > div > .btn-container_ {
    position: absolute;
    z-index: 2;
    text-align: center;
    bottom: 0;
}
.charity-top-cards .row > div > .badge_ {
    width: 100px;
    height: 100px;
    background: var(--charity-top-cards-color);
    color: var(--charity-top-cards-bg);
}
.charity-top-cards .btn {
    color: var(--charity-top-cards-color);
    border-color: var(--charity-top-cards-color);
}
.charity-top-cards .btn:hover {
    background: var(--charity-top-cards-color);
    color: var(--charity-top-cards-bg);
    animation: swing 1s;
}
.charity-top-cards p {
    margin: 0;
    padding: 0;
}

.charity-project::-webkit-scrollbar {
    display: none;
}
.charity-project {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.charity-project {
    width: 100%;
    height: 100%;
    overflow-x: scroll;
}
.charity-project .container_ {
    white-space: nowrap;
}
.charity-project .card_ {
    width: var(--width);
    min-width: 240px;
    min-height: 200px;
    display: inline-block;
    margin: 0 15px;
    white-space: normal;
}
.charity-project .card-glow_ {
    transition: all .2s; bottom: 0;
    width: 0; height: 0; position: absolute; background: rgba(255,255,255,.1);z-index: 9;
}
.charity-project .card-image_ {
    width: 100%;
    height: 240px;
    background: var(--bgimage);
    background-size: cover;
    background-position: center center;
    transition: all .2s ease-in;
}
.charity-project .card_:hover > div .card-glow_ {
    transition: all .5s ease-out;
    width: 100%;
    height: 100%;
}
.charity-project .card_:hover > div .card-image_ {
    transition: all .2s ease-out;
    width: 105%;
    height: 105%;
}
.charity-project .right-glow_, .charity-project .left-glow_ {
    height: 30%;
    width: 50px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,.2), rgba(255,255,255,.3), rgba(255,255,255,.2));
    position: absolute;
    right: 0px;
    top: 30%;
    transition: all .5s;
    visibility: hidden;
}
.charity-project .left-glow_ {
    background: linear-gradient(to left, rgba(255,255,255,0), rgba(255,255,255,.2), rgba(255,255,255,.3), rgba(255,255,255,.2));
    left: 0px;
}
.charity-project .right-arrow_, .charity-project .left-arrow_ {
    position: absolute;
    top: 40%;
    z-index: 2;
    opacity: .5;
    cursor: pointer;
    transition: opacity .5s; 
    animation: shakeX 5s infinite;
    visibility: hidden;
}
.charity-project .right-arrow_ {right: 20px;}
.charity-project .left-arrow_ {left: 20px;}
.charity-project .right-arrow_:hover {opacity: 1;}
.charity-project .left-arrow_:hover {opacity: 1;}
.charity-menu {
    opacity: 1;
}
.charity-menu a {text-decoration: none; color: #aaa; cursor: pointer;}
.charity-menu {
    text-align: center;
}
.charity-menu .menu {
    position: relative;
    display: inline-block;
    margin: 0 2px;
}
.charity-menu .menu > a {
    display: inline-block;
    color: var(--charity-menu-color);
    background: var(--charity-menu-background);
    padding: 10px 20px;
    transition: all .2s ease-in-out;
    font-weight: bold;
}
.charity-menu .menu a {cursor: pointer;}
.charity-menu .menu > a:hover, .charity-menu .active {
    color: var(--charity-menu-hover-color);
    background: var(--charity-menu-hover-background);
}
.charity-menu .dropdown {
    font-size: 8pt;
    padding-left: 5px;
    opacity: .5;
    vertical-align: super;
}
.charity-menu .submenu-box {
    display: none;
    background: var(--charity-menu-submenu-background);
    position: absolute;
    left: 0;
    top: 100%;
    text-align: left;
    z-index: 11;
    white-space: nowrap;
    box-shadow: 0px 2px 2px rgba(0,0,0,.1);
    font-weight: normal;
    font-size: 11pt;
}
.charity-menu .tab {
    padding-right: 5px;
    opacity: .5;
}
.charity-menu .submenu {
    color: var(--charity-menu-submenu-color);
    display: block;
    padding: 10px 40px 10px 20px;
    transition: background .2s ease-in-out;
}
.charity-menu .submenu:hover, .charity-menu .submenu-box .active {
    color: var(--charity-menu-submenu-hover-color);
    background: var(--charity-menu-submenu-hover-background);
}
.charity-menu .submenu:after {
    /*content: '\27A2';*/
    position: absolute;
    right: 10px;
    opacity: .5;
}
.charity-menu .spacer {
    height: var(--charity-menu-spacer);
}