 *,
 body {
     margin: 0;
     padding: 0;
     font-family: "Montserrat", sans-serif;
 }

 body{
    background-color: #F2FDFF;
 }

 /* navbar */

 .navbar {
     background-color: rgb(0, 0, 0.5);
 }


 .bg-blue {
     background-color: #0ff;
 }

 .bg-dongker {
     background-color: #002944;
 }

 .bg-cyan {
     background-color: #cbffff;
 }

 .text-blue {
     color: #0ff;
 }

 .text-dongker {
     color: #002944;
 }

 .text-cyan {
     color: #cbffff;
 }

 .navbar {
     background-color: rgba(0, 0, 0, 0.5);
     justify-content: center;
     align-items: center;
     width: 100%;
     position: fixed;
     z-index: 10;
     padding: 5px;
 }

 .logo {
     width: 100%;
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .logo img {
     width: 50px;
     object-fit: contain;
     background-color: #cbffff;
     border-radius: 50%;
     padding: 5px;
 }

 .logo h2 {
     font-weight: 700;
 }

 .logo h2,
 .logo span {
     font-family: "Poppins";
     font-size: 1.5rem;
     color: white;
 }

 /* * Hero */
 .hero-section {
     align-items: center;
     justify-content: center;
     background-image: url(/assets/donate-our-people.jpg);
     background-position: top;
     background-size: cover;
     background-repeat: no-repeat;
     height: 60vh;
 }

 .row {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     height: 100%;
 }

 .row h1 {
     color: #00FFFF;
     font-size: 3rem;
     font-family: "Montserrat";
     font-weight: 800;
     text-align: center;
     animation: slideInRight 2s;
 }

 .row .route {
     display: flex;
     flex-direction: row;
     margin-top: 1rem;
     align-items: center;
     justify-content: center;
     gap: 3px;
     font-family: "Poppins";
     animation: slideInLeft 2s;
 }

 .row .route a {
     font-size: 14px;
     font-weight: 400;
     color: white;
     transition: 0.4s ease-in-out;
     border-bottom: 1px solid rgba(0, 255, 255, 0);
 }

 .row .route i {
     color: #00FFFF;
     font-size: 14px;
     font-weight: 400;
 }

 .row .route a:hover {
     border-bottom: 1px solid #00FFFF;
     color: #cbffff;
 }

 .row .route span {
     color: #00FFFF;
     font-size: 14px;
     font-weight: 400;
     text-shadow: 1px 1px 3px black;
 }

 .title-faq {
     margin-top: 7rem;
     justify-content: center;
 }

 .jangka-waktu-container {
     justify-content: center;
     align-items: center;
     margin-top: 2rem;
     align-items: center;
     width: 100%;
 }

 .jangka-waktu {
     width: 70%;
     margin: auto;
     position: relative;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
     border-bottom: 2px solid #002944;
     padding: 15px 0;
     text-align: left;
 }

 .question {
     display: flex;
     gap: 5px;
     justify-content: space-between;
     align-items: center;
     z-index: 1;
     width: 100%;
     background-color: #F2FDFF;
     color: #002944;
     text-align: center;
 }

 #answer {
     transition: 0.7s;
     position: absolute;
 }

 .jangka-waktu.hover #answer {
     position: relative;
 }

 #cross {
     display: none;
 }

 #cross.hover {
     display: block;
 }

 #arrow-down {
     display: block;
 }

 #arrow-down.hover {
     display: none;
 }

 #btn-answer-x {
     display: none;
 }

 .hero-section p {
     font-family: "Poppins";
     font-weight: 400;
     font-size: 1rem;
     color: #cbffff;
 }

 .title-faq h1 {
     font-family: "Montserrat";
     font-size: 2rem;
     font-weight: 800;
     color: #002944;
     text-align: center;
     width: 100%;
 }

 .question h1 {
     font-family: "Poppins";
     font-size: 1rem;
     font-weight: 600;
     color: #002944;
 }

 .question p {
     font-family: "Poppins";
     font-weight: 400;
     font-size: 1rem;
     color: #cbffff;
     width: 100%;
 }

 .question button{
    border: none;
    background-color: #F2FDFF;
    outline: none;
 }

 .question button i{
    font-size: 1.25rem;
 }

 .footer {
    background: linear-gradient(to bottom, #F2FDFF, #3362cc);
    padding: 5rem 5rem 2rem 5rem;
    font-family: "Poppins";
    margin-top: 7rem;
    overflow: hidden;
}

.footer-column {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    text-align: justify;
    color: #0E1836;
    justify-content: space-around;
    gap: 50px;
}

.footer-column-one {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #0E1836;
}

.footer p {
    font-size: 1rem;
    font-weight: 500;
    color: #0E1836;
}

.footer-column-one p:nth-child(3) {
    font-size: 1.5rem;
}

.footer-column-kritik {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column-kritik .input-kritik {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    background-color: #e4e4e4;
    border: 1px solid #0E1836;
    border-radius: 0 5px 5px 0;
}

.footer-column-kritik .input-kritik input {
    padding: 8px;
    outline: none;
    border: none;
    background-color: white;
    width: 100%;
    border-right: 1px solid #0E1836;
}

.footer-column-kritik .input-kritik input::placeholder {
    color: rgba(14, 24, 54, 0.5);
    font-family: "Montserrat";
    font-size: 1rem;
    align-items: center;
}

.footer-column-kritik .input-kritik button {
    white-space: nowrap;
    font-size: 1rem;
    font-family: "Poppins";
    font-weight: 500;
    outline: none;
    border: none;
    background-color: #e4e4e4;
    padding: 0 10px;
    cursor: pointer;
    color: #0E1836;
    transition: 0.3s;
}

.footer-column-kritik .input-kritik button:hover {
    color: #28608e;
    transition: 0.3s ease-in-out;
}

.footer-column-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column-contact .kontak-link {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.footer-column-contact .kontak-link a {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #0E1836;
    gap: 5px;
    font-size: 1rem;
    font-weight: 400;
    transition: 0.3s;
}

.footer-column-contact .kontak-link a:hover {
    color: #2f5abf;
    transition: 0.3s ease-in-out;
}

.footer-column-contact .kontak-link a i {
    font-size: 1.25rem;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10rem;
    justify-content: space-between;
}

.footer-bottom .medsos-icon {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.footer-bottom .medsos-icon a {
    align-items: center;
    justify-content: center;
}

.footer-bottom .medsos-icon a i {
    padding: 8px;
    color: #dbdbdb;
    border: 1px solid #0E1836;
    border-radius: 50px;
    font-size: 1.5rem;
    transition: 0.3s;
}

.footer-bottom .medsos-icon a i:hover {
    background-color: #2e3958;
    transition: 0.3s ease-in-out;
}

.footer-bottom .footer-copyright {
    display: flex;
    flex-direction: column;
}

.footer-bottom .footer-copyright p {
    font-size: 1rem;
    font-weight: 400;
}

@media only screen and (max-width: 768px) {
    .footer {
        padding: 3rem 2rem 2rem 2rem;
    }

    .footer-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column-one,
    .footer-column-kritik,
    .footer-column-contact {
        align-items: center;
    }

    .footer-column-kritik .input-kritik {
        flex-direction: column;
        align-items: stretch;
        border-radius: 5px;
    }

    .footer-column-kritik .input-kritik input {
        border-right: none;
        border-bottom: 1px solid #0E1836;
        width: 100%;
    }

    .footer-column-kritik .input-kritik button {
        width: 100%;
        padding: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        margin-top: 5rem;
        text-align: center;
    }

    .footer-bottom .medsos-icon {
        justify-content: center;
    }
}