@media (max-width: 1280px) {
    .footer-top-inner, .footer-bottom-inner {
        width: 90%;
    }
    .footer-left {
        width: 80%;
    }
    .footer-right.justify-between {
        width: 20%;
    }
}

@media (max-width: 1024px) {
    .header-inner-wrap {
        max-width: calc(100% - 60px);
    }

    .header-bottom .header-right,
    .header-socials {
        display: none;
    }
    .header-top .header-right {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* header */
    .desktop-header {
        display: none;
    }
    .mobile-header {
        display: block;
        padding: 20px 30px;
        box-shadow: 0px 10px 60px 0px #0000001a;
        position: relative;
    }
    .mobile-header .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mobile-header .header-inner .header-right {
        display: flex;
    }
    .mobile-header .search-area:after {
        display: none;
    }
    .header-menu-mobile {
        position: absolute;
        left: 0;
        top: 82px;
        width: 100%;
        min-height: 100vh;
        z-index: 100;
        padding: 87px 30px 74px;
        background: #283734;
        opacity: 0;
        transform: translateX(50%);
        -webkit-transform: translateX(50%);
        pointer-events: none;
        transition: all 0.3s ease;
    }
    header {
        background: #ffffff;
        transition: all 0.3s ease;
    }
    header.menu-mobile-show {
        background: #283734;
    }
    header.menu-mobile-show .header-menu-mobile {
        opacity: 1;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        pointer-events: auto;
    }
    .header-menu-mobile .main-menu {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .header-menu-mobile .main-menu a {
        width: max-content;
        margin: 0 auto;
        font-family: Inter;
        font-size: 30px;
        font-weight: 400;
        line-height: 1.333;
        color: #CEEDE7 !important;
        transition: all 0.3s ease;
    }
    .header-menu-mobile .main-menu a:hover {
        color: #ffffff !important;
        font-weight: 600;
    }
    .header-menu-mobile .main-menu a:hover svg path {
        fill: #ffffff;
    }
    .header-menu-mobile .menu {
        padding-bottom: 72px;
        border-bottom: 1px solid #3c514d;
    }
    .mobile-auth-btn {
        display: block;
        padding: 16px 16px;
        border-radius: 10px;
        background-color: #ffffff;
        color: #252839;
        font-family: Inter;
        font-size: 14px;
        font-weight: 700;
        transition: all 0.3s ease;
    }
    .mobile-auth-btn.register {
        color: #ffffff;
        background-color: #01705c;
    }
    .mobile-donate-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 10px;
        padding: 16px 16px;
        border-radius: 10px;
        background-color: #fbd45a;
        color: #252839;
        font-family: Inter;
        font-size: 14px;
        font-weight: 700;
        transition: all 0.3s ease;
    }
    .mobile-become-member-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 10px;
        padding: 16px 16px;
        border-radius: 10px;
        background-color: transparent;
        color: #ffffff;
        font-family: Caveat;
        font-size: 24px;
        font-weight: 700;
        transition: all 0.3s ease;
    }
    .header-mobile-detail-title {
        font-family: Inter;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.333;
    }
    .header-mobile-detail-value {
        font-family: Inter;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
    }
    .mobile-header-social-list a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #ffffff;
    }

    .mobile-header .menu-burger .open {
        display: block;
    }
    .mobile-header .menu-burger .close {
        display: none;
    }

    header.menu-mobile-show .mobile-header .menu-burger .close {
        display: block;
    }
    header.menu-mobile-show .mobile-header .menu-burger .open {
        display: none;
    }

    .main-menu li ul.sub-menu {
        position: relative;
        padding: 18px 13px 0px;
        width: 100%;
        opacity: 1;
        display: none;
        pointer-events: auto;
        background-color: transparent;
        transition: none;
    }
    .main-menu li ul.sub-menu li a .sub-menu-icon svg path {
        fill: #ffffff;
    }
    .has-sub-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }
    .main-menu li ul.sub-menu li a {
        justify-content: center;
    }
    .main-menu li ul.sub-menu li a .sub-menu-icon {
        opacity: 1;
    }
    .main-menu li ul.sub-menu li a:hover {
        background: transparent;
    }
    .main-menu li ul.sub-menu li a .sub-menu-icon path {
        fill: #CEEDE7;
    }
    .main-menu li ul.sub-menu li a:hover .sub-menu-icon path {
        fill: #ffffff;
    }
    /* end header */

    /* footer */
    .main-footer-front {
        margin: 0px;
        border-radius: 0px;
    }
    .footer-top-inner,
    .footer-right > .flex,
    .footer-bottom-inner {
        flex-direction: column;
    }
    .footer-left,
    .footer-right {
        width: 100%;
    }

    .footer-top-inner,
    .footer-bottom-inner {
        width: calc(100% - 60px);
        margin: 0 auto;
    }
    .footer-top-inner {
        padding-top: 40px;
    }
    .footer-left {
        gap: 20px;
    }
    .footer-left hr {
        display: none;
    }
    .footer-right {
        padding-top: 0;
    }
    .footer-right > div {
        gap: 45px;
    }
    .footer-right hr {
        margin-top: 45px;
    }
    .footer-slider {
        display: none;
    }

    .footer-bottom-inner {
        margin-top: 44px;
        gap: 40px;
        flex-direction: column-reverse;
    }
    .footer-bottom-inner > div {
        width: 100%;
    }
    .footer-bottom-inner form {
        width: 100%;
        margin-bottom: 45px;
        flex-direction: column;
    }
    .footer-bottom-inner form input,
    .footer-bottom-inner form button {
        width: 100%;
    }
    .footer-history {
        display: block;
    }
    .footer-history div {
        width: 100%;
    }
    .footer-history div:last-child {
        margin-top: 24px;
    }
    .footer-copyright {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }
    .footer-copyright div:last-child {
        justify-content: center;
    }
    .footer-right.justify-between {
        width: 100%;
    }
	.foot-left-bot-wrap {
		flex-direction: column;
		align-items: flex-start;
    	row-gap: 20px;
	}
	.foot-left-bot-wrap .fundraising-img-wrap {
		margin-left: 0;
    	padding-left: 0;
	}
	.foot-left-bot-wrap .fundraising-img-wrap:before {
		display: none;
	}
    /* end footer */
}