* {
    margin: 0;
    padding: 0;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(Images/background.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

button {
    margin-top: 10px;
    color: #fff;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
    border: 2px solid #fff;
    padding: 10px 40px;
    font-size: 18px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 20px;
}

button:hover {
    border: 1px solid #032A37;
    background: #032A37;
    border: 2px solid #fff;
    color: white;
    transition: 1s;
}

nav {
    display: flex;
    padding: 2% 4%;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 125px; 
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul {
    list-style: none;
}

.nav-links ul li {
    display: inline-block;
    padding: 10px 10px;
    position: relative;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
    font-size: 13px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #F9D923;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.nav-links ul li ul.dropdown-menu {
    color: white;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #032a3797;
    padding: 7px;
    border-radius: 10px;
}

.nav-links ul li:hover ul.dropdown-menu {
    display: flex;
}

.title-page {
    width: 100%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.title-page h1 {
    font-size: 96px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
}

nav .fas{
    display: none;
}

/* ---------------------body-kata------------------ */
h1{
    width: 80%;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
}

.body{
    width: 90%;
    margin: 60px;
    display: flex;
    justify-content: space-between;
}
.kontak{
    margin-top: 60px;
    margin-left: 100px;
}

.list-kontak > div {
    width: 350px;
    height: 75px;
    display: flex;
    align-items: center;
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.teks{
    display: flex;
    flex-direction: column;
}

.list-kontak i {
    margin-right: 20px;
    font-size: 40px;
    color: #032A37;
}

.teks h2 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #032A37;
}

.teks p {
    margin-top:  5px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #032A37;
}

.keluhan{
    margin-top: 60px;
    margin-right: 100px;
}

.keluhan label {
    display: block; /* Ensure labels appear on separate lines */
    margin-bottom: 5px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #032A37; /* Add some space between labels */
}

.keluhan input[type="text"],
.keluhan input[type="email"],
.keluhan textarea {
    width: 100%; /* Make input fields and textarea fill the container width */
    padding: 8px; /* Add some padding to input fields and textarea */
    margin-bottom: 10px; /* Add space between input fields and textarea */
    border-radius: 5px; /* Add border radius */
    border: 1px solid #ccc; /* Add border */
}

.keluhan input[type="submit"] {
    background-color: #032A37; /* Green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.keluhan input[type="submit"]:hover {
    background-color: #032A37 /* Darker green on hover */
}


.footer {
    background-color: #d7dae0;
    padding: 20px 0;
    min-height: 150px; /* Decreased the minimum height */
    text-align: center;
}

.row-foot {
    margin: 30px 0; /* Decreased the vertical margin */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sponsorship, .partnership {
    margin-top: 20px;
    color: #032A37;
    flex: 1 1 200px;
    max-width: 300px;
    margin: 10px;
}

.sponsorship h2, .partnership h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Image Styles */
.sponsorship img, .partnership img {
    width: 70%; /* Adjusted the image width */
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 10px; /* Added padding to create space */
    transition: transform 0.3s; /* Transition for hover effect */
}

.sponsorship img:hover, .partnership img:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
}

/* Sponsorship Image Sizes */
.sponsorship img.s {
    max-width: 50px;
}

.sponsorship img.m {
    max-width: 100px;
}

.sponsorship img.l {
    max-width: 150px;
}

.sponsorship img.xl {
    max-width: 200px;
}

.sponsorship img.xxl {
    max-width: 300px;
}

/* Copyright Styles */
p.copyright {
    text-align: center;
    color: #032A37;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 10px;
    margin-top: 20px;
}

/* .sponsorship, .partnership {
    margin-top: 20px;
    color: #032A37;
}

.row-foot {
    margin: 100px;
    display: flex;
    justify-content: space-between;
}

.sponsorship img, .partnership img {
    margin-top: 20px;
    max-width: 50%; 
    height: auto;
}
*/ 

/* p.copyright {
    text-align: center;
    color: #032A37;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 20px;
} */ 

@media (max-width: 800px) {
    .header {
        min-height: 90vh;
    }
    .title-page h1 {
        font-size: 50px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: absolute; 
        background: #032A37;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fas {
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul{
        padding: 30px;
    }
    /* ---------------------body-kata------------------ */
h1{
    width: 60%;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
}

.body{
    width: 90%;
    margin: 60px;
    display: flex;
    justify-content: space-between;
}
.kontak{
    margin-top: 40px;
    margin-left: 0px;
}

.list-kontak > div {
    width: 280px;
    height: 50px;
    display: flex;
    align-items: center;
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.teks{
    display: flex;
    flex-direction: column;
}

.list-kontak i {
    margin-right: 20px;
    font-size: 24px;
    color: #032A37;
}

.teks h2 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #032A37;
}

.teks p {
    margin-top:  5px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #032A37;
}

.keluhan{
    margin-top: 40px;
    margin-left: 30px;
}

.keluhan label {
    display: block; /* Ensure labels appear on separate lines */
    margin-bottom: 5px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #032A37; /* Add some space between labels */
}

.keluhan input[type="text"],
.keluhan input[type="email"],
.keluhan textarea {
    width: 100%; /* Make input fields and textarea fill the container width */
    padding: 8px; /* Add some padding to input fields and textarea */
    margin-bottom: 10px; /* Add space between input fields and textarea */
    border-radius: 5px; /* Add border radius */
    border: 1px solid #ccc; /* Add border */
}

.keluhan input[type="submit"] {
    background-color: #032A37; /* Green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.keluhan input[type="submit"]:hover {
    background-color: #032A37 /* Darker green on hover */
}


.footer {
    background-color: #d7dae0;
    padding: 20px 0;
    min-height: 150px; /* Decreased the minimum height */
    text-align: center;
}

.row-foot {
    margin: 50px 0; /* Decreased the vertical margin */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.sponsorship, .partnership {
    margin-top: 20px;
    color: #032A37;
    flex: 1 1 200px;
    max-width: 300px;
    margin: 10px;
}

.sponsorship h2, .partnership h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Image Styles */
.sponsorship img, .partnership img {
    width: 100%; /* Adjusted the image width */
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 10px; /* Added padding to create space */
    transition: transform 0.3s; /* Transition for hover effect */
}

.sponsorship img:hover, .partnership img:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
}

/* Sponsorship Image Sizes */
.sponsorship img.s {
    max-width: 50px;
}

.sponsorship img.m {
    max-width: 100px;
}

.sponsorship img.l {
    max-width: 150px;
}

.sponsorship img.xl {
    max-width: 200px;
}

.sponsorship img.xxl {
    max-width: 300px;
}

/* Copyright Styles */
p.copyright {
    text-align: center;
    color: #032A37;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-top: 20px;
} 
}

@media (max-width: 500px) {
    .header {
        min-height: 90vh;
    }
    .title-page h1 {
        font-size: 50px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: absolute; 
        background: #032A37;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fas {
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul{
        padding: 30px;
    }
    /* ---------------------body-kata------------------ */
h1{
    width: 60%;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
}

.body{
    width: 90%;
    margin: 60px;
    display: flex;
    flex-direction: column;
}
.kontak{
    margin-top: 40px;
    margin-left: 0px;
}
/* .list-kontak{
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
} */

.list-kontak > div {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.teks{
    display: flex;
    flex-direction: column;
}

.list-kontak i {
    margin-right: 10px;
    font-size: 15px;
    color: #032A37;
}

.teks h2 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #032A37;
}

.teks p {
    margin-top:  5px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #032A37;
}

.keluhan{
    width: 100%;
    margin-top: 40px;
    margin-left: 0px;
}

.keluhan label {
    display: block; /* Ensure labels appear on separate lines */
    margin-bottom: 5px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #032A37; /* Add some space between labels */
}

.keluhan input[type="text"],
.keluhan input[type="email"],
.keluhan textarea {
    width: 100%; /* Make input fields and textarea fill the container width */
    padding: 8px; /* Add some padding to input fields and textarea */
    margin-bottom: 10px; /* Add space between input fields and textarea */
    border-radius: 5px; /* Add border radius */
    border: 1px solid #ccc; /* Add border */
}

.keluhan input[type="submit"] {
    background-color: #032A37; /* Green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.keluhan input[type="submit"]:hover {
    background-color: #032A37 /* Darker green on hover */
}


.footer {
    background-color: #d7dae0;
    padding: 20px 0;
    min-height: 150px; /* Decreased the minimum height */
    text-align: center;
}

.row-foot {
    margin: 50px 0; /* Decreased the vertical margin */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.sponsorship, .partnership {
    margin-top: 20px;
    color: #032A37;
    flex: 1 1 200px;
    max-width: 300px;
    margin: 10px;
}

.sponsorship h2, .partnership h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Image Styles */
.sponsorship img, .partnership img {
    width: 100%; /* Adjusted the image width */
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 10px; /* Added padding to create space */
    transition: transform 0.3s; /* Transition for hover effect */
}

.sponsorship img:hover, .partnership img:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
}

/* Sponsorship Image Sizes */
.sponsorship img.s {
    max-width: 50px;
}

.sponsorship img.m {
    max-width: 100px;
}

.sponsorship img.l {
    max-width: 150px;
}

.sponsorship img.xl {
    max-width: 200px;
}

.sponsorship img.xxl {
    max-width: 300px;
}

/* Copyright Styles */
p.copyright {
    text-align: center;
    color: #032A37;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-top: 20px;
} .footer {
    background-color: #d7dae0;
    padding: 20px 0;
    min-height: 150px; /* Decreased the minimum height */
    text-align: center;
}

.row-foot {
    margin: 50px 0; /* Decreased the vertical margin */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.sponsorship, .partnership {
    margin-top: 20px;
    color: #032A37;
    flex: 1 1 200px;
    max-width: 300px;
    margin: 10px;
}

.sponsorship h2, .partnership h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Image Styles */
.sponsorship img, .partnership img {
    width: 80%; /* Adjusted the image width */
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 10px; /* Added padding to create space */
    transition: transform 0.3s; /* Transition for hover effect */
}

.sponsorship img:hover, .partnership img:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
}

/* Sponsorship Image Sizes */
.sponsorship img.s {
    max-width: 50px;
}

.sponsorship img.m {
    max-width: 100px;
}

.sponsorship img.l {
    max-width: 150px;
}

.sponsorship img.xl {
    max-width: 200px;
}

.sponsorship img.xxl {
    max-width: 300px;
}

/* Copyright Styles */
p.copyright {
    text-align: center;
    color: #032A37;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 12px;
    margin-top: 20px;
}
}
@media (max-width: 350px) {
    .header {
        min-height: 90vh;
    }
    .title-page h1 {
        font-size: 50px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: absolute; 
        background: #032A37;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fas {
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul{
        padding: 30px;
    }
    /* ---------------------body-kata------------------ */
h1{
    width: 60%;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
}

.body{
    width: 90%;
    margin: 60px;
    display: flex;
    flex-direction: column;
}
.kontak{
    margin-top: 40px;
    margin-left: 0px;
}
/* .list-kontak{
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
} */

.list-kontak > div {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.teks{
    display: flex;
    flex-direction: column;
}

.list-kontak i {
    margin-right: 10px;
    font-size: 15px;
    color: #032A37;
}

.teks h2 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #032A37;
}

.teks p {
    margin-top:  5px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #032A37;
}

.keluhan{
    width: 100%;
    margin-top: 40px;
    margin-left: 0px;
}

.keluhan label {
    display: block; /* Ensure labels appear on separate lines */
    margin-bottom: 5px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #032A37; /* Add some space between labels */
}

.keluhan input[type="text"],
.keluhan input[type="email"],
.keluhan textarea {
    width: 100%; /* Make input fields and textarea fill the container width */
    padding: 8px; /* Add some padding to input fields and textarea */
    margin-bottom: 10px; /* Add space between input fields and textarea */
    border-radius: 5px; /* Add border radius */
    border: 1px solid #ccc; /* Add border */
}

.keluhan input[type="submit"] {
    background-color: #032A37; /* Green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.keluhan input[type="submit"]:hover {
    background-color: #032A37 /* Darker green on hover */
}


.footer {
    background-color: #d7dae0;
    padding: 20px 0;
    min-height: 150px; /* Decreased the minimum height */
    text-align: center;
}

.row-foot {
    margin: 50px 0; /* Decreased the vertical margin */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.sponsorship, .partnership {
    margin-top: 20px;
    color: #032A37;
    flex: 1 1 200px;
    max-width: 300px;
    margin: 10px;
}

.sponsorship h2, .partnership h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Image Styles */
.sponsorship img, .partnership img {
    width: 100%; /* Adjusted the image width */
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 10px; /* Added padding to create space */
    transition: transform 0.3s; /* Transition for hover effect */
}

.sponsorship img:hover, .partnership img:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
}

/* Sponsorship Image Sizes */
.sponsorship img.s {
    max-width: 50px;
}

.sponsorship img.m {
    max-width: 100px;
}

.sponsorship img.l {
    max-width: 150px;
}

.sponsorship img.xl {
    max-width: 200px;
}

.sponsorship img.xxl {
    max-width: 300px;
}

/* Copyright Styles */
p.copyright {
    text-align: center;
    color: #032A37;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-top: 20px;
} 
}