@import url('https://fonts.googleapis.com/css2?family=Stack+Sans+Headline:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Stack Sans Headline", sans-serif;
    border: none;
    outline: none;
    text-decoration: none;
    color: var(--primary-text);
}

html {
    --primary: #846bf5;
    --primary-text: #ffffff;
    --sub-text: #ffffff9e;
    --border: 1px solid #ffffff24;
    --lite-border: 1px solid #ffffff0b;
    --bg: #0a070e;
    --bg2: #1f1828;
}

[class*="grid"] {
    display: grid;
}

.align-center {
    align-items: center;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
    position: relative;
}

body {
    -webkit-text-size-adjust: 100%;
    background: var(--bg);
}

p,
a,
input,
select,
textarea,
button {
    font-size: 1.6rem;
}

p {
    color: var(--sub-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;

}

img,
video {
    max-width: 100%;
}

.container {
    max-width: 1240px;
    width: 100%;
    margin: auto;
    padding: 0 1.5rem;
}

button {
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--primary);
    color: white;
}

button.btn {
    position: relative;
    height: 5rem;
    padding: 0 2.5rem;
    padding-right: 0;
    border-radius: 5rem;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2;
}

button.empty {
    background: unset;
    display: flex;
    align-items: center;
    gap: 1rem;
}

button.btn i {
    font-size: 2.5rem;
    width: 5rem;
    aspect-ratio: 1/1;
    border-radius: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -1rem;
    margin-right: 1rem;
    transition: 0.3s;
}

button.btn::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5rem;
    background: var(--primary);
    z-index: -1;
    transition: 0.3s;
}

button.btn:hover::before {
    width: 5rem;
}

button.btn:hover i {
    margin-left: 0rem;
    margin-right: 0rem;
}

button.btn:hover {
    color: var(--sub-text);
}

.buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* header section */
header {
    height: 8rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    background: transparent;
    transition: 0.3s;
}

header.sticky {
    background: var(--bg);
    transition: 0.3s;
    border: unset;
}

header button {
    transition: 0.3s;
}

header.sticky button {
    padding: 1rem;
    font-size: 1.3rem;
}

header .logo h1 {
    transition: 0.3s;
    line-height: 0.8;
}

header.sticky .logo h1 {
    font-size: 2rem;
}

header .dropdown-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    color: white;
    height: 8rem;
    cursor: pointer;
}

header .dropdown {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg2);
    border-radius: 2rem;
    padding: 2rem;
    top: 6rem;
    transform: scale(0);
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    transform-origin: top;
}

/* header .dropdown-wrap:hover .dropdown {
    opacity: 1;
    scale: 1;
} */

.logo img {
    height: 6rem;
}

header .container {
    height: 100%;
    max-width: 100%;
    padding: 0 5rem;
}

header .links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

header .links a {
    transition: 0.3s;
    color: white;
}

header .links a:hover {
    color: var(--primary);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.menu {
    font-size: 3rem;
    display: none;
}

/* main */
main {
    position: relative;
    min-height: 60dvh;
    height: 80rem;
    overflow: hidden;
}

main::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#0a070e49, #0a070e);
    z-index: 1;
}

main .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

main .container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
    padding: 5rem 0;
}

main .title {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 80rem;
    width: 100%;
}

main .title h1 {
    font-size: 8rem;
    line-height: 1;
}

main .title p {
    font-size: 2rem;
    font-weight: 300;
}

section {
    padding: 8rem 0;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    padding: 5rem;
}

.grid-2 .card {
    border-right: var(--border);
    border-bottom: var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.card h2 {
    font-size: 3rem;
}

.card .ico img {
    height: 5rem;
}

.grid-2 .card:nth-child(3),
.grid-2 .card:nth-child(4) {
    border-bottom: unset;
}

.grid-2 .card:nth-child(2),
.grid-2 .card:nth-child(4) {
    border-right: unset;
}

.title-1 {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    margin-bottom: 5rem;
    max-width: 80rem;
    width: 100%;
}

.title-1 span {
    color: var(--primary);
    font-size: 2rem;
    text-transform: uppercase;
}

.title-1 h2 {
    font-size: 5rem;
    line-height: 1;
}

.gap-5 {
    gap: 5rem;
}

.card-2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-2 .ico {
    width: 8rem;
    aspect-ratio: 1/1;
    background: var(--primary);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-2 .ico i {
    font-size: 3rem;
}

.card-2 h2 {
    font-size: 3rem;
}

.card-2 p {
    font-size: 1.8rem;
    font-weight: 300;
}

.title-1.center {
    text-align: center;
    margin: auto;
    margin-bottom: 5rem;
}

.slider .card {
    max-width: 50rem;
    width: 100%;
    aspect-ratio: 1/1.3;
    background: #ffffff0e;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 0 1rem;
}

.slider .card .details {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.slider .card .details .profile {
    width: 8rem;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 50%;
}

.slider .card .details .profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider .card .body p {
    font-size: 2.3rem;
}

.slider .card .details h3 {
    font-size: 3rem;
}

.btm-btn {
    padding: 0 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cstm-slider-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 5rem;
}

.cstm-slider-nav button {
    background: none;
    width: 5rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border);
    cursor: pointer;
}

.c-logo {
    font-size: 2rem;
    color: var(--sub-text);
}

.c-logo img {
    height: 2rem;
    filter: grayscale(1) brightness(2);
}

.card p {
    color: var(--primary-text);
}

.news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
    margin: 2.5rem 0;
}

.news img {
    width: 100%;
    aspect-ratio: 16/12;
    object-fit: cover;
    object-position: center;
}

.news h2 {
    font-size: 3rem;
}

.news .text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news .text-content p {
    font-size: 1.8rem;
}

.grid-2 .cta {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: var(--primary);
}

.cta img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s;
}

.grid-2 .cta .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #632d8ae1;
    gap: 1rem;
    transition: 0.3s;
}

.grid-2 .cta .content h2 {
    font-size: 3rem;
}

.grid-2 .cta .content i {
    font-size: 3rem;
    opacity: 0;
    margin-left: -3rem;
    transition: 0.3s;
}

.grid-2 .cta:hover img {
    scale: 1.2;
}

.grid-2 .cta:hover i {
    opacity: 1;
    margin: unset;
}

.grid-2 .cta:hover .content {
    background: #632d8a4a;
}

main.donate {
    height: 100dvh;
    min-height: 100dvh;
}

main.donate::before {
    display: none;
}

main.donate .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
    padding: 0;
    max-width: 1240px;
}


main.donate .container .content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 5rem;
    text-align: center;
    align-items: center;
    justify-content: center;
}

main.donate .container .content h1 {
    font-size: 5rem;
    line-height: 1;
}

main.donate .container .content p {
    font-size: 2rem;
}

main.donate.h-adj {
    height: 80rem;
    min-height: unset;
    margin-top: 8rem;
}

main.donate.h-adj {
    height: 80rem;
    min-height: unset;
    margin-top: 8rem;
}

main.donate.h-adj .content h1 {
    font-size: 5rem;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-3 .card-2 {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.grid-3 .card-2 h3 {
    font-size: 3rem;
}

.grid-3 .card-2 p {
    font-size: 1.6rem;
}

.cta-2 {
    padding: 10rem;
    background: var(--primary);
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    max-width: 90rem;
    width: 100%;
    margin: auto;
}

.cta-2 h2 {
    font-size: 6rem;
    text-transform: capitalize;
    line-height: 1;
}

.cta-2 button {
    z-index: 3;
}

.logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.logos img {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    padding: 3rem;
    border: var(--border);
    filter: grayscale(1) brightness(5);
    opacity: 0.5;
}

main.events {
    height: 50rem;
    min-height: 50vh;
}

main.events .container {
    align-items: center;
    justify-content: center;
}

.card-3 .frame {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.card-3 {
    background: var(--bg2);
}

.card-3 .body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.card-3 .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-3 h3 {
    font-size: 2.8rem;
    line-height: 1;
}

.card-3 p {
    font-size: 1.8rem;
}

footer {
    padding: 5rem 0;
    text-align: center;
}

.d-form {
    max-width: 100% !important;
    background: white;
    border-radius: 2rem;
    width: 100%;
}

.sp .card-2 .ico {
    background: var(--bg2);
}

.date {
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    background: var(--bg);
}

#about .grid-2 {
    background: var(--primary);
}

.grid-3 .ico {
    background: var(--bg2);
}

.cta-2 button::before {
    background: var(--bg);
}

.popup {
    max-width: 50rem;
    padding: 3rem;
    background: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    box-shadow: 0 0 100px var(--bg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: 0.3s;
    scale: 0;
    opacity: 0;
}

.popup.active {
    scale: 1;
    opacity: 1;
}

.popup i {
    font-size: 5rem;
    color: red;
    cursor: pointer;
}

.popup p {
    color: var(--bg);
}

body.modal-open {
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}

body.modal-open .popup.active {
    pointer-events: auto;
}

form {
    background: var(--bg2);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 80rem;
    width: 100%;
    margin: auto;
}

form h2 {
    font-size: 5rem;
    text-align: center;
    margin-bottom: 3rem;
}

#countryCode {
    display: none;
}

form input,
form select {
    width: 100%;
    padding: 1.5rem 2rem;
    background: #ffffff08;
    color: white;
    border: 1px solid #ffffff13;
    transition: 0.3s;
}

form label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

form p {
    color: #ffffff9d;
    font-weight: 300;
}

form h3 {
    font-size: 2rem;
    font-style: italic;
    font-weight: 800;
    margin-bottom: 1rem;
}

input:focus {
    border-color: var(--primary);
}

form button {
    margin-top: 3rem;
    width: 100%;
    padding: 2rem;
}

form .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.list label {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    font-size: 1.6rem;
}

.list p {
    font-size: 2rem;
    color: var(--primary-text);
}

iframe.web {
    width: 100%;
    height: calc(100dvh - 8rem);
}

.p-0 {
    padding: 0;
    margin-top: 7.7rem;
}

.card-3 .frame {
    position: relative;
}

.card-3 .frame .tag {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: var(--primary);
    padding: 0.5rem 1rem;
    font-size: 1.4rem;
    box-shadow: 0 0 10px var(--bg);
}

.popup ul li {
    color: var(--bg);
    text-align: left;
    font-size: 1.6rem;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.status-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.status-card h2 {
    font-size: 5rem;
}

.status-card:nth-child(odd) h2 {
    color: var(--primary);
}

.dfr .status-card {
    background: var(--bg2);
}

.dfr {
    gap: 1rem;
}

@media (max-width: 1024px) {
    html {
        font-size: 50%;
    }
}

@media (max-width: 720px) {
    html {
        font-size: 62%;
    }

    [class*="grid"] {
        grid-template-columns: 1fr !important;
    }

    .news {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* nav bar */
    header .container {
        padding: 0 1.5rem;
    }

    .toogle-menu {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        justify-content: space-around;
        gap: 0.8rem;
        width: 3rem;
        height: 2.5rem;
        cursor: pointer;
        margin-left: auto;
    }

    .toogle-menu>span {
        width: 100%;
        height: 2px;
        border-radius: 1rem;
        background: var(--primary-text);
    }

    .toogle-menu>span:first-child {
        width: 50%;
        margin-left: auto;
    }

    .toogle-menu>span:last-child {
        width: 80%;
        margin-left: auto;
    }

    header.active .toogle-menu span:first-child,
    header.active .toogle-menu span:last-child {
        width: 100%;
    }

    .toogle-menu span:first-child,
    .toogle-menu span:last-child {
        transition: 0.3s;
    }

    header {
        background: var(--bg);
    }

    header .links {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        height: calc(100vh - 8rem);
        position: fixed;
        top: 8rem;
        background: var(--bg);
        backdrop-filter: blur(15px);
        width: 100%;
        padding: 5rem 0;
        left: 0px;
        transition: 0.5s;
        transform: translateX(100%);
    }

    header.active .links {
        transform: translateX(0%) !important;
    }

    header .links a {
        color: var(--primary-text);
    }

    header .logo h1 {
        font-size: 1.6rem !important;
    }

    header button {
        padding: 1rem !important;
        font-size: 1.4rem !important;
    }

    .title-1 h2 {
        font-size: 3rem;
    }

    .title-1 h2 br {
        display: none;
    }

    .grid-2 .card {
        padding: 3rem;
        border: unset;
        border-bottom: var(--border);
    }

    .card-2 h2 {
        font-size: 2.3rem;
    }

    main .title h1 {
        font-size: 3rem;
    }

    main {
        height: 50rem;
    }

    main .container {
        padding: 0 1.5rem;
        padding-bottom: 5rem;
    }

    main .title p {
        font-size: 1.6rem;
    }

    .slider .card {
        max-width: 30rem;
        padding: 2rem;
    }

    .slider .card .body p {
        font-size: 1.6rem;
    }

    .slider .card .details h3 {
        font-size: 2rem;
    }

    .slider .card .details .profile {
        width: 5rem;
    }

    header .dropdown-wrap {
        height: unset;
        flex-direction: column;
    }

    header .dropdown-wrap .dropdown {
        opacity: 1;
        scale: 1;
        position: relative;
        padding: 0;
        background: unset;
        top: unset;
    }

    .fix {
        grid-area: 1 / 1 / 2 / 2;
    }

    main.donate .container {
        grid-template-columns: 1fr;
    }

    .logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .logos img {
        padding: 1.5rem;
    }

    .cta-2 {
        padding: 3rem;
    }

    .cta-2 h2 {
        font-size: 3rem;
    }

    main.donate {
        height: 100%;
        padding: 5rem 0;
    }

    main.donate .container {
        padding: 0 1rem;
    }

    main.donate .container .content h1 {
        font-size: 3rem;
    }

    form {
        padding: 3rem;
    }

    form .row {
        grid-template-columns: 1fr;
    }

    section {
        padding: 5rem 0;
    }

    form h2 {
        font-size: 3rem;
        line-height: 1;
    }

    header .dropdown-wrap {
        font-size: 2rem;
    }

    .popup.active {
        width: 100%;
        max-width: 95%;
        padding: 2rem;
    }
}