html {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

body {
    margin: 0;
    background: #0d1015;
    color: #fff;
    overflow-x: hidden;
}

body::-webkit-scrollbar-thumb {
    background: #00F100;
    border-radius: 3px;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.header {
    background-color: #10141a;
    padding: 10px 0;
    height: 62px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

.main {
    margin-top: 62px;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.header__left,
.header__right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header__menu_btn,
.search_btn {
    background: #ffffff0d;
    padding: 7px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all .2s ease;
}

.header__menu_btn:hover,
.search_btn:hover {
    background: #ffffff1a;
}

.menu-primary,
.menu-footer {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.menu-primary a,
.menu-footer a {
    color: #a2a2a2;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all .2s ease;
}

.menu-primary a:hover,
.menu-footer a:hover {
    color: white;
}

.primary_btn {
    position: relative;
    border-radius: 12px;
    background-color: rgba(0, 138, 0, 1);
}

.primary_btn_inner {
    border-radius: 12px;
    display: block;
    width: fit-content;
    padding: 10px 28px;
    background-color: #00f100;
    transform: translateY(-4px);
    transition: all .2s ease;
    box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 3px 16px 0px rgba(0, 241, 0, .50196);
}

.primary_btn_inner:hover {
    transform: translateY(-6px);
}

.secondary_btn {
    position: relative;
    border-radius: 12px;
    background-color: rgba(162, 162, 162, 1);
}

.secondary_btn_inner {
    border-radius: 12px;
    display: block;
    width: fit-content;
    padding: 10px 28px;
    background-color: #fff;
    transform: translateY(-4px);
    transition: all .2s ease;
    box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 3px 16px 0px rgba(254, 254, 254, .50196);
}

.secondary_btn_inner:hover {
    transform: translateY(-6px);
}

.primary_btn,
.secondary_btn {
    color: #0d1015;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.footer {
    background-image: radial-gradient(50% 100% at 50% 0%, rgb(26, 31, 40), rgb(13, 16, 21));
    padding-top: 48px;
    padding-bottom: 80px;
}

.menu-footer {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.menu-footer,
.payments {
    flex-wrap: wrap;
}

.payments {
    display: flex;
    justify-content: center;
    gap: 20px;
    border-bottom: 1px solid #ffffff0d;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.payments img,
.additional img {
    height: 38px;
}

.additional {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.footer_end {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_18 {
    border: 1px solid #fff;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.copyright {
    color: #a2a2a2;
    font-size: 12px;
    line-height: 16px;
}

.aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -99;
    opacity: 0;
    transition: opacity .3s ease;
}

.aside.open {
    z-index: 99999;
    opacity: 1;
}

.aside_overlay {
    width: 100%;
    height: 100%;
    background: #0d1015;
    opacity: 0.8;
}

.aside_container {
    position: absolute;
    top: 0;
    left: -320px;
    height: 100%;
    background: #10141a;
    padding: 12px 20px;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow-y: auto;
    transition: all .3s ease;
    scrollbar-width: thin;
    scrollbar-color: rgb(0, 241, 0) rgba(255, 255, 255, 0.05);
}

.open .aside_container {
    left: 0;
}

.aside_close_btn {
    position: absolute;
    right: 20px;
    top: 12px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a2a2a2;
    transition: all .2s ease;
}

.aside_close_btn:hover {
    color: #fff;
}

.aside_container .primary_btn,
.aside_container .secondary_btn,
.aside_container .primary_btn_inner,
.aside_container .secondary_btn_inner {
    width: 100%;
    display: block;
    text-align: center;
}

.aside_container .menu-primary {
    flex-direction: column;
    width: 100%;
}

.aside_container .menu-primary a {
    font-size: 14px;
}

@media(max-width: 767px) {

    .primary_btn_inner,
    .secondary_btn_inner {
        padding: 6px 10px;
    }

    .header__left,
    .header__right {
        gap: 10px;
    }
}