* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
    background: #151515;
}


.shadow {
    width: 100vw;
    height: 1px;
    position: fixed;
    bottom: -1px;
    box-shadow: 0 0 200px 30px rgb(174, 129, 246, 0.4);
    /* box-shadow: 0 0 200px 100px rgb(0, 0, 0); */
}

.shadow2 {
    width: 100vw;
    height: 1px;
    position: fixed;
    top: -1px;
    box-shadow: 0 0 200px 30px rgb(174, 129, 246, 0.4);
    /* box-shadow: 0 0 200px 100px rgb(0, 0, 0); */
}


/* ===== Loading Start ===== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(21, 21, 21, 1);
    display: flex;
    gap: 20px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 200;
}

.loading .logo {
    transition: 0.2s ease-in-out;
}

.loading .hiddenLoadingText {
    display: none;
    font-family: 'Poppins', sans-serif;
    color: #dfdfdf !important;
}

.loading.transition {
    background: rgba(21, 21, 21, 0);
    transition: 1s ease-in-out;
}

.loading.transition .logo {
    opacity: 0;
}

.loading .logo img {
    height: 100px;
    object-fit: cover;
    object-fit: contain;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s 0.5s, opacity 0.5s linear;
}

.displayNone {
    display: none !important;
}

/* ===== Loading End ===== */


/* ===== Nav Start ===== */
nav {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 70px;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
    padding: 40px 40px;
    z-index: 100;
}

nav .logo {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    user-select: none;
    display: flex;
    gap: 2px;
    align-items: center;
    /* justify-content: center; */
}

nav .logo h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin-top: 4.5px;
    color: #ffffff;
    user-select: none;
}

nav .logo img {
    height: 30px;
    object-fit: cover;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 0px;
    padding: 10px 10px;
    transition: 0.1s ease-in-out;
    width: fit-content;
    margin: auto;
}

nav.fancy ul {
    background: rgba(92, 92, 92, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

nav ul li a {
    padding: 4px 15px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    position: relative;
    color: #ffffff;
    font-size: 15px;
    font-weight: 200;
    text-decoration: none;
    /* text-transform: uppercase; */
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    white-space: nowrap;
}

nav ul li a:hover {
    color: rgb(255, 255, 255);
    background: rgb(129, 129, 129);
}

nav .buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

nav .buttons button {
    width: 37px;
    height: 37px;
    border: 0.5px solid #535353;
    outline: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    background: transparent;
    color: #aeaeae;

    display: flex;
    align-items: center;
    justify-content: center;
}

nav.fancy .buttons button {
    backdrop-filter: blur(10px) brightness(0.7);
}

nav .buttons button span {
    font-size: 20px;
}

/* ===== Nav End ===== */

/* ===== Header Start ===== */
header {
    width: 100vw;
    height: 100vh;
    display: flex;
    gap: 10vh;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid rgba(92, 92, 92, 0.7);
    padding-bottom: 20px;
}

header .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 0.2;
    filter: brightness(0.5);
}

header .top {
    height: 100%;
    display: flex;
    align-items: end;
    padding-bottom: 5vh;
    justify-content: center;
}

header .top h1 {
    font-size: 5em;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    padding: 0 20px;
}

header .bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100vw;
    padding: 20px 80px;
}

header .bottom .left {
    width: 350px;
    font-size: 15px;
    line-height: 180%;
    text-align: left;
    color: #aeaeae;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
}

header .bottom .right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header .bottom button {
    padding: 10px 10px 10px 20px;
    border: 0.5px solid #535353;
    outline: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    background: rgb(142, 129, 232);
    color: #2e2e2e;
    font-size: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s ease-in-out;
}

header .bottom button span {
    font-size: 20px;
    margin-left: 10px;
    width: 37px;
    height: 37px;
    outline: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    background: #a6a6a6;
    color: #3f3f3f;
    font-size: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease-in-out;
}

header .bottom button:hover{
    background: rgb(174, 129, 246);
}

header .bottom button:hover span{
    background: #ffffff;
    color: #2e2e2e;
}


/* ===== Header End ===== */

/* ===== Features Start ===== */

.features {
    width: 100vw;
    padding: 100px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.features .cards {
    width: 1100px;
    height: 90vh;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.features .cards .card:first-child {
    grid-column: 1/3;
    grid-row: 1/2;
}


.features .cards .card:nth-child(2) {
    grid-column: 1/3;
    grid-row: 2/3;
    flex-direction: row-reverse;
}


.features .cards .card:last-child {
    grid-column: 3/4;
    grid-row: 1/3;
}


.features .cards .card {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(27, 27, 27, 0.7);
    border: 1px solid rgba(212, 117, 212, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.features .cards .card .left {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    z-index: 2;
}

.features .cards .card .left h3 {
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.features .cards .card .left p {
    font-size: 14px;
    line-height: 180%;
    text-align: left;
    color: #aeaeae;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

.features .cards .card .left ul{
    margin-top: 10px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #aeaeae;
    font-size: 14px;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
    list-style: circle;
}

.features .cards .card .left button{
    padding: 7px 20px;
    outline: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    background: linear-gradient(-45deg, rgb(142, 129, 232), rgb(174, 0, 255), rgb(174, 0, 255));
    color: #ffffff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    cursor: pointer;
}

.features .cards .card .right {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.features .cards .card .right .text {
    color: #dddddd;
    font-size: 12px;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
    user-select: none;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.features .cards .card .right .text span {
    padding: 5px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px) brightness(0.8);
    animation: float 3s ease-in-out infinite;
    font-family: 'Poppins', sans-serif;
}

.features .cards .card .right .text span:first-child{
    animation: float 3s ease-in-out infinite, toSide 10s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.features .cards .card .right .image {
    width: 70%;
    /* position: relative; */
    height: 350px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .cards .card .right .image img {
    position: absolute;
    width: 300px;
    height: auto;
    object-fit: contain;
}

.features .cards .card .right .bg {
    position: absolute;
    left: 0;
    width: 100%;
    object-fit: contain;
    filter: grayscale(1) opacity(0);
    z-index: -1;
}

.features .cards .card:hover>.right .image {
    filter: grayscale(0);
    transition: 0.3s ease-in-out;
    filter: brightness(2) grayscale(0.1) invert(0.1);
}

.features .cards .card:hover>.right .bg {
    filter: grayscale(0) opacity(0.3);
    transition: 0.3s ease-in-out;
}

.cardShadow {
    width: 800px;
    height: 800px;
    border-radius: 50%;
    position: absolute;
    filter: blur(40px);
    box-shadow: none;
    opacity: 1;
    transition: 0.2s transform linear, 0.4s opacity ease-in-out;
}

.features .cards .card:first-child .cardShadow {
    background: linear-gradient(135deg, rgba(217, 139, 22, 0.3), rgba(174, 0, 255, 0.3));
}

.features .cards .card:nth-child(2) .cardShadow {
    background: linear-gradient(35deg, rgba(217, 139, 22, 0.3), rgba(174, 0, 255, 0.3));
}

.features .cards .card:last-child .cardShadow {
    background: linear-gradient(135deg, rgba(63, 78, 179, 0.3), rgba(174, 0, 255, 0.3));
}

.features .cards .card::before {
    content: "";
    position: absolute;
    top: -1px;
    width: 100%;
    height: 1px;
    box-shadow: 0 0 200px 30px rgb(174, 129, 246, 0.4);
    transition: 0.1s linear;
}


.features .cards .card::after {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 1px;
    box-shadow: 0 0 200px 30px rgba(230, 129, 246, 0.4);
    transition: 0.1s linear;
}


.cardShadow.hidden {
    opacity: 0;
}

/* ===== Features End ===== */


/* ===== News Start ===== */

.news {
    width: 100vw;
    padding: 100px 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
}

.news .left {
    position: sticky;
    top: 0;
    padding: 150px 0;
    width: 350px;
    font-size: 15px;
    line-height: 180%;
    text-align: left;
    color: #aeaeae;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;

    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: start;
}

.news .left h2 {
    font-size: 2.5em;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}

.news .left p {
    font-size: 15px;
    line-height: 180%;
    text-align: left;
    color: #aeaeae;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
    max-width: 300px;
}

.news .left button {
    padding: 10px 20px;
    border: 0.5px solid #535353;
    outline: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    background: rgb(142, 129, 232);
    color: #2e2e2e;
    font-size: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.news .left button span {
    font-size: 20px;
    margin-left: 10px;
    width: 37px;
    height: 37px;
    outline: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    background: #a6a6a6;
    color: #3f3f3f;
    font-size: 15px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.news .left button:hover{
    background: rgb(174, 129, 246);
}

.news .left button:hover span{
    background: #ffffff;
    color: #2e2e2e;
}

.news .right {
    width: 800px;
    padding: 150px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news .right .cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.news .right .cards .card {
    position: relative;
    background: rgba(27, 27, 27, 0.7);
    border: 1px solid rgba(212, 117, 212, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    /* padding: 20px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    transition: 0.3s;
    min-height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.news .right .cards .card:hover img {
    filter: brightness(0.6);
}

.news .right .cards .card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.news .right .cards .card .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #dfdfdf;
    font-family: 'Poppins', sans-serif;
}

.news .right .cards .card .content h3 {
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.2;
}


/* ===== News End ===== */


/* ===== Sponsors Start ===== */

.sponsors {
    width: 100vw;
    padding: 0px 50px 200px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    flex-direction: column;
    color: #d5d5d5;
}

.sponsors .text {
    font-size: 15px;
    line-height: 180%;
    text-align: center;
    color: #aeaeae;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: none;
}

.sponsors .text h2 {
    font-size: 3em;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
    background: linear-gradient(45deg, rgb(238, 238, 238), rgb(169, 169, 169));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-wrap: wrap;
}

.sponsors .text h2 span {
    background: linear-gradient(45deg, rgb(142, 129, 232), rgb(238, 238, 238));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-wrap: wrap;
}

.sponsors .text p {
    margin-top: 10px;
    max-width: 800px;
    text-wrap: wrap;
}

.sponsors .text a {
    color: rgb(142, 129, 232);
    text-decoration: none;
}

.sponsors .logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 80vw;
}



.sponsors .logos {
    gap: 25px;
    width: 80vw !important;
    position: relative;
    background: transparent;
}

.sponsors .logos .scroller {
    width: 100%;
    overflow: hidden;
}

.sponsors .logos .scroller:last-child .scrolling-text {
    animation-direction: reverse;
}

.sponsors .logos::after {
    content: "";
    position: absolute;
    right: -1px;
    width: 1px;
    height: 100%;
    box-shadow: 0 0 100px 100px rgb(0, 0, 0);
    transition: 0.1s linear;
    z-index: 2;
}

.sponsors .logos::before {
    content: "";
    position: absolute;
    left: -1px;
    width: 1px;
    height: 100%;
    box-shadow: 0 0 200px 200px rgb(0, 0, 0);
    transition: 0.1s linear;
    z-index: 2;
}

.sponsors .logos .text {
    flex-direction: row;
}



.sponsors .logos .collection {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 75vw;
}

.sponsors .logos .collection .label {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    width: 100%;
}

.sponsors .logos .collection .label .line {
    position: relative;
    width: 100%;
    height: 1px;
    display: block;
    background: #ffffff;
    margin: 0 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.sponsors .logos .collection .label .line:first-child {
    width: 100px;
}

.sponsors .logos .collection .label .line::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 1px;
    height: 1px;
    border-radius: 50%;
    box-shadow: 0 0 20px 20px rgb(255, 255, 255);
    z-index: 2;
    animation: toLeft 2s linear infinite;
}

.sponsors .logos .collection .label .line:last-child:before {
    animation-delay: 0.9s;
}

@keyframes toLeft {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(60vw);
    }

    100% {
        transform: translateX(60vw);
    }
}

.sponsors .logos .collection .label h3 {
    font-size: 0.9em;
    font-weight: 500;
    text-transform: capitalize;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.sponsors .logos .collection .label h3 span {
    font-size: small;
}

.sponsors .logos .collection .list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.sponsors .logos .sponsor {
    height: 50px;
    padding: 10px 30px;
    transition: 0.3s;
    cursor: pointer;
    background: #eeeeee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e2e2e;
    border: 1px solid rgba(0, 0, 0, 0.1);
    user-select: none;
}

.platinum .label .line {
    background: rgb(229, 228, 226) !important;
}

.platinum .label h3 {
    color: rgb(229, 228, 226) !important;
}

.platinum .label .line::before {
    box-shadow: 0 0 20px 200px rgb(255, 255, 255) !important;
}

.gold .label .line {
    background: rgb(255, 234, 112) !important;
}

.gold .label h3 {
    color: rgb(255, 234, 118) !important;
}


.silver .label .line {
    background: rgb(192, 192, 192) !important;
}

.silver .label .line {
    color: rgb(192, 192, 192) !important;
}


.bronze .label .line {
    background: rgb(205, 127, 50) !important;
}

.bronze .label h3 {
    color: rgb(205, 127, 50) !important;
}


.copper .label .line {
    background: rgb(205, 127, 50) !important;
}

.copper .label h3 {
    color: rgb(205, 127, 50) !important;
}

.copper .list {
    gap: 10px !important;
}

.copper .list .sponsor {
    height: 40px !important;
    font-size: 10px !important;
    padding: 4px 9px !important;
    border-radius: 5px !important;
}

.copper .list .sponsor h1 {
    font-size: medium !important;
}

.sponsors .logos .sponsor img {
    height: 100%;
    object-fit: contain;
}

.sponsors .logos .sponsor h1 {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

/* ===== Sponsors End ===== */



/* ===== FAQs Start ===== */

.faqs {
    width: 100vw;
    padding: 100px 50px 200px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-direction: column;
    color: #d5d5d5;
}


.faqs .text {
    width: 75vw;
    font-size: 15px;
    line-height: 180%;
    text-align: start;
    color: #aeaeae;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
    padding: 0 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-transform: none;
}

.faqs .text .tag {
    color: rgb(138, 120, 255);
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    padding: 2px 15px;
    border-radius: 20px;
    border: 1px solid rgba(138, 120, 255, 0.5);
}

.faqs .text .tag span {
    font-size: medium;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    user-select: none;
}

.faqs .text h2 {
    font-size: 3em;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
    background: linear-gradient(45deg, rgb(255, 255, 255), rgb(202, 202, 202));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-wrap: wrap;
}

.faqs .text h2 span {
    background: linear-gradient(45deg, rgb(142, 129, 232), rgb(238, 238, 238));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-wrap: wrap;
}

.faqs .text p {
    margin-top: 10px;
    max-width: 800px;
    text-wrap: wrap;
}

.faqs .text a {
    color: rgb(142, 129, 232);
    text-decoration: none;
}

.faqs .faqsContainer {
    width: 75vw;
    /* display: flex;
flex-direction: column; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    gap: 20px;
    margin-top: 50px;
}

.faqs .faqsContainer .col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faqs .faqsContainer .faq {
    background: rgba(27, 27, 27, 0.7);
    border: 1px solid rgba(212, 117, 212, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s;
    cursor: pointer;
    overflow: hidden;
    user-select: none;
}

.faqs .faqsContainer .faq::before {
    content: "";
    position: absolute;
    top: -1px;
    width: 100%;
    height: 1px;
    box-shadow: 0 0 200px 30px rgb(174, 129, 246, 0.4);
    transition: 0.1s linear;
}


.faqs .faqsContainer .faq::after {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 1px;
    box-shadow: 0 0 200px 30px rgba(230, 129, 246, 0.4);
    transition: 0.1s linear;
}

.faqs .faqsContainer .faq .cardShadow {
    background: linear-gradient(135deg, rgba(217, 139, 22, 0.3), rgba(174, 0, 255, 0.3));
}

.faqs .faqsContainer .faq .question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.faqs .faqsContainer .faq .question span {
    font-size: 25px;
    transition: 0.3s;
    user-select: none;
}

.faqs .faqsContainer .faq .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #aeaeae;
    font-size: 14px;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
    line-height: 180%;
}

.faqs .faqsContainer .faq .answer a {
    color: rgb(142, 129, 232);
    text-decoration: none;
}

.faqs .faqsContainer .faq.active .question span {
    transform: rotate(45deg);
}

.faqs .faqsContainer .faq.active .answer {
    max-height: 500px;
}

/* ===== FAQs End ===== */



/* ===== GetInvolved Start ===== */

.gi{
    /* position: relative; */
    width: 70vw;
    margin: auto;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gi::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px) brightness(2);
    /* background: linear-gradient(135deg, rgba(217, 139, 22, 0.3), rgba(174, 0, 255, 0.3)); */
    transition: 0.1s linear;
    z-index: -2;
}

.getInvolved {
    position: relative;
    width: 70vw;
    margin: auto;
    margin-bottom: 150px;
    padding: 100px 200px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #dfdfdf;
    border: none;
    overflow: hidden;
    backdrop-filter: blur(5px) brightness(0.8);
    border-radius: 30px;
}

.getInvolved .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 70vw;
    height: 100%;   
    object-fit: cover;
    z-index: -2;
    opacity: 0.2;
    filter: brightness(0.5) blur(1px);
}

.getInvolved .cardShadow {
    background: linear-gradient(135deg, rgba(217, 139, 22, 0.3), rgba(174, 0, 255, 0.3));
    /* background: linear-gradient(135deg, rgba(142, 129, 232, 0.3), rgba(174, 0, 255, 0.3)); */
    backdrop-filter: blur(100px);
    width: 1000px;
    height: 1000px;
    z-index: -1;
}

.getInvolved::before {
    content: "";
    position: absolute;
    top: -1px;
    width: 100%;
    height: 1px;
    box-shadow: 0 0 200px 30px rgba(242, 129, 246, 0.4);
    transition: 0.1s linear;
}

.getInvolved::after {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 1px;
    box-shadow: 0 0 200px 30px rgba(230, 129, 246, 0.4);
    transition: 0.1s linear;
}


.getInvolved h2 {
    font-size: 3em;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
    text-wrap: wrap;
    font-family: 'Poppins', sans-serif;
    color: #eeeeee;
}

.getInvolved p {
    font-size: 15px;
    line-height: 180%;
    text-align: center;
    color: #aeaeae;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    margin-top: 10px;
}

.getInvolved p a {
    color: rgb(142, 129, 232);
    text-decoration: none;
}

.getInvolved .buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.getInvolved .buttons button {
    
    padding: 7px 20px;
    outline: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    background: linear-gradient(-45deg, rgb(142, 129, 232), rgb(174, 0, 255), rgb(174, 0, 255));
    color: #ffffff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    /* margin-top: 25px; */
    cursor: pointer;
}


/* ===== GetInvolved End ===== */



/* ===== Banner Start ===== */

.banner {
    width: 100vw;
    height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top: 1px solid rgba(92, 92, 92, 0.7);
    user-select: none;
}

.banner::before,
.banner::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 12em;
    box-shadow: 0 0 300px 200px rgba(0, 0, 0, 0.7);
    z-index: 5;
}

.banner::before {
    left: -1px;
}

.banner::after {
    right: -1px;
}

.scrolling-text {
    display: flex;
    animation: scroll-left 20s linear infinite;
}

.scrolling-text .text {
    display: flex;
    font-size: 12em;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    color: #fff;
}

.text span {
    margin: 0 10px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot {
    font-size: 1em;
    line-height: 1;
    color: rgb(142, 129, 232);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ===== Banner End ===== */

/* ===== Footer Start ===== */

.footer {
    width: 100vw;
    padding: 100px 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 15px;
    text-align: center;
}

.footer .left {
    display: flex;
    gap: 150px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.footer .left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer .left ul li {
    margin: 5px 0;
}

.footer .left ul li a {
    text-decoration: none;
    color: #dfdfdf;
}

.footer .left .newsletter {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    gap: 10px;
}

.footer .left .newsletter h3 {
    font-size: 1.5em;
    font-weight: 500;
    color: #fff;
}

.footer .left .newsletter form {
    margin-top: 30px;
}

.footer .left .newsletter input {
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 200px;
    font-family: 'Poppins', sans-serif;
}

.footer .left .newsletter button {
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 5px;
    background: rgb(142, 129, 232);
    color: #2e2e2e;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.footer .right {
    display: flex;
    gap: 20px;
    align-items: end;
    justify-content: center;
    flex-direction: column;
}


.footer .right .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 20px;
}

.footer .right .logo h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin-top: 4.5px;
    color: #ffffff;
    user-select: none;
}

.footer .right .logo img {
    height: 30px;
    object-fit: cover;
}

.footer .right .text {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(92, 92, 92, 0.7);

}

.footer .right .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 20px;
}





/* media queries */

@media (max-width: 1000px) {

    body {
        width: 100vw;
        height: 100vh;
        position: fixed;
        overflow: hidden;
    }

    .loading.hidden {
        opacity: 1;
        visibility: unset;
        transition: visibility 0s 0.5s, opacity 0.5s linear;
    }

    .loading.transition {
        background: rgba(21, 21, 21, 1) !important;
    }

    .loading.transition .logo {
        opacity: 1 !important;
    }

    .displayNone {
        display: flex !important;
    }

    .hiddenLoadingText {
        display: flex !important;
    }
}