body {
    font-family: Brazilia Three CG;
    background-color: black;
}

a {
    text-decoration: none;
    color: #78ff00;


}
/* Navigation */

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    color: white;
}
nav {
    background-color: rgba(72, 72, 72, 0.332);
    position: sticky;
    top: 0;
    -webkit-backdrop-filter: blur(35px);
    backdrop-filter: blur(10px);
}
nav .container ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style-type: none;
}

nav .container ul li {
    cursor: pointer;
}

nav .container img {
    filter: grayscale();
    width: 42px;
    height: 42px;
}

.container #mtx_download {
    background-color: #77ff003c;
    color: #78ff00;
    border: 1px solid #78ff00;
    padding: 8px 12px;
}

/* Section-1 */
.section-1 {
    display: flex;
    background-image: url(../imgs/background.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.section-1 .container {
    padding: 20px;
    width: 50%;
    color: white;
}

@media (max-width:768px) {
    .section-1  {
        flex-direction: column;
    }
    .section-1 .container {
        width: 100%;
    }
    .nav-item {
        display: none;
    }
}

.section-1 .container #p1 {
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 2px;
}
.section-1 .container #p2 {
    color: rgb(217, 217, 217);
    line-height: 120%;

}

.container #mtx_download_1 {
    background-color: #ffffff3c;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    border: 1px solid #ffffff;
    padding: 8px 12px;
}

.mtx_buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
}

#c2 {
    display: flex;
    justify-content: center;
}
.section-1 .container img {
    width: 70%;
}
/* Section-2 */

.section-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #78ff00;
    -webkit-backdrop-filter: blur(35px);
    backdrop-filter: blur(10px);
    padding: 4px;
    border-top: 1px solid #b7beb1;
}

.marquee {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    animation: scroll-left 20s linear infinite;
}

.partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 0px; */
    text-align: center;
}

.partner img {
    width: 120px; /* Adjust size as needed */
    height: auto;
    filter: grayscale(0%) ;
    transition: all 0.3s ease-in-out;
}

.partner p {
    color: #000000;
    font-size: 16px;
    font-weight: bold;
}

.partner img:hover {
    filter: grayscale(100%);
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* Footer */
footer {
    padding: 12px;
    background-color: rgb(27,30,45);
    color: white;
    display: flex;
    justify-content: space-between;
}

footer img {
    width: 40px;
    height: 40px;
}

footer .f-1,.f-2,.f-3 {
    display: flex;
    align-items: center;
    gap: 10px;
}