/* -----------------responsive-----------------------*/

/* desktop */
@media screen and (max-width: 1024px) {
    .cp-r-desktop {
        display: none
    }
}

/* tablet */
@media screen and (min-width: 1025px) {
    .cp-r-mobile-tablet,
    .cp-r-tablet {
        display: none
    }
}

@media screen and (max-width: 481px) {
    .cp-r-tablet {
        display: none
    }
}

/* mobile */
@media screen and (min-width: 481px) {
    .cp-r-mobile {
        display: none
    }
}

/* ---------------end responsive---------------------*/

@media screen and (max-width: 1024px) {
    #sticky-wrapper {
        display: none
    }

    .banner.homepage-top-banner,
    section.content-row {
        margin-top: 64px;
    }

    .banner.homepage-top-banner {
        padding-top: 0;

    }

    section.content-row {
        padding-top: 20px;
    }
}

.relative {
    position: relative;
    /* height: 100%; */
    width: 100%;
}

.menu-open {
    position: fixed;
}

.menu-wrapper {
    position: fixed;
    /* height: 65px; */
    width: 100%;
    top: 0;
    border-bottom: 1px solid #bbb;
    z-index: 100;
}

.cp-is-sticky .menu-wrapper {
    border-width: 0;
    box-shadow: 1px 1px 6px 0px #adadad;
}

/* menu */
.logo-and-menu-actions {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 99;
    background: white;
    position: relative;
}

.logo-and-menu-actions .logo {
    max-height: 40px;
    max-width: 150px;
    margin-top: 0;
    padding: 0;
}

.logo-and-menu-actions .logo img {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-and-menu-actions .donate-button {
    background-color: #9d1d36;
    border-radius: 2px;
    color: #ffffff;
    display: flex;
    font-size: 16px;
    line-height: 19px;
    padding: 10px 17px;
    margin-left: auto;
    margin-right: 40px;
}

.logo-and-menu-actions .hamburger {
    height: 44px;
}

.menu-content-layer {
    position: fixed;
    width: 100%;
    height: 100%;
    /* background: #0000006b; */
    top: 0;
    z-index: 200;
    transform: translateX(100%);
    /* opacity:0.9; */
    overflow-y: auto;
}

.menu-content-layer .logo {
    max-height: 40px;
    max-width: 150px;
    margin-top: 0;
    padding: 0;
    transform: translateX(400px);
    transition: transform 400ms ease 200ms, opacity 300ms ease 200ms;
    /* opacity: .5; */
}

.menu-content-layer .overlay {
    background: #000000d1;
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: .6;
    transition: opacity 200ms ease;
    z-index: 1;
}

.menu-content-layer .middle {
}

.menu-open .menu-content-layer .overlay {
    opacity: 1;
}

.menu-open .menu-content-layer .logo img {
    width: 100%;
}

.menu-content-layer .menu-button {
    font-size: 31px;
    line-height: initial;
    position: relative;
    display: inline-block;
    width: 33px;
}

.menu-open .menu-content-layer {
    transform: translateX(0);
    /* direction: rtl; */
    /* opacity:1; */
    /* display: flex; */
}

.menu-content-layer .menu-content {
    transform: translateX(100%);
    position: relative;
}

.menu-open .menu-content {
    background: white;
    /* height: 100%; */
    max-width: 400px;
    transform: translateX(0);
    transition: transform 400ms ease 150ms;
    margin-left: auto;
    /* overflow-y: auto; */
    z-index: 2;
}

.menu-open .menu-content-layer .logo {
    transform: translateX(0px);
    /* opacity: 1; */
}

.menu-items ul {
    list-style: none;
    padding: 0;
}

.menu-items ul li {
    position: relative;
    margin: 0;
    padding: 0px 15px;
    overflow: hidden;
}
.menu-items ul li a{padding:9px 0;display:inline-block;}

.menu-items ul li {
    transform: translateX(40px);
    opacity: 0;
    transition: transform 500ms ease, opacity 400ms ease;

}

.menu-open .menu-items ul li {
    transform: translateX(0px);
    opacity: 1;
}

.menu-button {
    padding: 0;
    background: transparent;
    border: none;
}

.menu-open .menu-items ul li:nth-child(1) {
    transition-delay: 100ms;
}

.menu-open .menu-items ul li:nth-child(2) {
    transition-delay: 200ms;
}

.menu-open .menu-items ul li:nth-child(3) {
    transition-delay: 300ms;
}

.menu-open .menu-items ul li:nth-child(4) {
    transition-delay: 400ms;
}

.menu-open .menu-items ul li:nth-child(5) {
    transition-delay: 500ms;
}

.menu-open .menu-items ul li:nth-child(6) {
    transition-delay: 600ms;
}

.menu-open .menu-items ul li:nth-child(7) {
    transition-delay: 750ms;
}

.menu-open .menu-items ul li:nth-child(8) {
    transition-delay: 800ms;
}

.menu-open .menu-items ul li:nth-child(9) {
    transition-delay: 850ms;
}

.menu-open .menu-items ul li:nth-child(10) {
    transition-delay: 900ms;
}

.menu-open .menu-items ul li:nth-child(11) {
    transition-delay: 950ms;
}

.menu-open .menu-items ul li:nth-child(12) {
    transition-delay: 1000ms;
}

.menu-items ul li label {
    display: block;

    padding: 9px 0;
}

.menu-items ul li ul li {
    padding: 0px 20px;
}

.menu-items ul li a {
    color: black;
}

.menu-items ul li ul {
    /* display: none; */
    margin: 0;
    height: 0;
    /* overflow: hidden; */
    /* transform: scale(0); */
}

.menu-items ul li input:checked ~ ul {
    /* display: block */
    height: auto;
}

.menu-open .menu-items ul li ul li {
    transform: translateY(-10px);
    transition: transform 500ms ease, opacity 400ms ease;
    opacity: 0;
}

.menu-items ul li input:checked ~ ul li {
    transform: translateY(0px);
    opacity: 1;

}

.menu-items ul li input:checked ~ ul li:nth-child(1) {
    transition-delay: 100ms
}

.menu-items ul li input:checked ~ ul li:nth-child(2) {
    transition-delay: 200ms
}

.menu-items ul li input:checked ~ ul li:nth-child(3) {
    transition-delay: 300ms
}

.menu-items ul li input:checked ~ ul li:nth-child(4) {
    transition-delay: 400ms
}

.menu-items ul li input:checked ~ ul li:nth-child(5) {
    transition-delay: 500ms
}

.menu-items ul li input:checked ~ ul li:nth-child(6) {
    transition-delay: 600ms
}

.menu-items ul li input:checked ~ ul li:nth-child(7) {
    transition-delay: 700ms
}

.menu-items ul li input:checked ~ ul li:nth-child(8) {
    transition-delay: 800ms
}

.border {
    transform: translateY(-42px);
    height: 42px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 6px;
    background: #9d1d36;
    transition: transform 400ms ease;
}

.menu-items ul li input:checked ~ .border {
    transform: translateY(0px);
}

.menu-items ul li input:checked ~ ul li a {
    color: #949393;
}

.menu-items ul li ul li {
    padding-bottom: 0;
}

.menu-items:after {
    content: '';
    height: 1px;
    width: 100%;
    background: #d4d4d4;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: 364px;
}

.menu-items {
    overflow: hidden
}

.menu-items ul li .fa {
    color: #949393;
    font-size: 13px;
    position: absolute;
    right: 11px;
    top: 11px;
}

.top {
    position: sticky;
    top: 0;
    z-index: 100;
}

.absolute {
    /* position: absolute; */
    /* padding-top: 66px; */
    /* top: 0; */
    /* left: 0; */
    /* width: 100%; */
    /* height: 100%; */
    /* overflow-y: auto; */
}

.menu-items ul li .fa-chevron-up {
    display: none
}

.menu-items ul li input:checked ~ .fa-chevron-up {
    display: inline-block;
}

.menu-items ul li input:checked ~ .fa-chevron-down {
    display: none;
}

.menu-content-layer form.newsletter {
    width: 100%;
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

.menu-content-layer .cp-form-subscribe {
    display: block;
    padding: 33px 15px;
}

.menu-content-layer .cp-form-subscribe label {
    margin-bottom: 13px;
    display: inline-block;
}

.social-icons {
    padding: 0px 15px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.social-button {
    display: inline-block;
    margin-left: 13px;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    text-align: center;
    overflow: hidden;
}

.social-button.facebook {
    background: #3b5999;
    padding-top: 10px;
}

.social-button.twitter {
    background: #55acee;
    padding-top: 10px;
    overflow: hidden;
}

/* mobile */
@media screen and (max-width: 481px) {
    .logo-and-menu-actions .donate-button {
        margin-right: auto;
    }
}