:root {
    --primary-color: #3677c3;
    --secondary-color: #233484;
}

html, body {
    height: 100%;
    width: 100%;

    margin: 0;
    padding: 0;

    font-family: 'Montserrat', sans-serif;

	scroll-behavior: smooth;
}

.navbar {
    background-color: #0000002a;
    position: absolute;
    top: 0;

    width: 100%;
    height: 80px;

    transition: all 0.5s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.navbar .logo a {
    width: 20%;
}

.navbar .logo a img {
    height: 60px;
    margin: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    background-color: white;
    padding: 5px;
}

.navbar .logo a:hover img {
    opacity: 0.8;
}

.navbar .links {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.navbar .links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar .links ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.navbar .links ul li a {
    color: white;
    text-decoration: none;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    font-size: 1.2em;
}

.navbar .links ul li a:hover {
    opacity: 0.8;
}

.navbar .dropdown {
    display: none;
    position: fixed;
    background-color: #0000002a;
    top: 80px;
    transition: all 0.5s ease-in-out;
    z-index: 100;
}

.navbar .dropdown.show {
    display: block;
}

.navbar .dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar .dropdown ul li {
    display: block;
    margin: 5px;
    margin-bottom: 10px;
    padding: 0;
}

.navbar .dropdown ul li a {
    color: white;
    text-decoration: none;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    font-size: 1.2em;
}

.navbar .dropdown ul li a:hover {
    opacity: 0.8;
}

.navbar .hamburger-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    background-color: #ffffff00;
    border: none;
    width: 50px;
    height: 50px;
}

.navbar .hamburger-btn i {
    color: white;
}

.navbar .hamburger {
    background-color: #171717;
    position: fixed;
    display: none;
    height: 90%;
    width: 80%;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease-in-out;
    border-radius: 10px 0 0 10px;
}

.navbar .hamburger.show {
    display: block;
}

@media screen and (max-width: 768px) {
    .navbar .links {
        display: none;
    }

    .navbar .hamburger-btn {
        display: block;
    }

    .navbar .hamburger ul {
        list-style: none;
        margin: 0;
        padding: 0;
        margin-top: 20px;
    }

    .navbar .hamburger ul li {
        display: block;
        margin: 5px;
        margin-bottom: 10px;
        padding: 0;
        color: white;
        margin-left: 25px;
    }

    .navbar .hamburger ul li.heading {
        font-size: 1.5em;
        font-weight: 700;
        margin-left: 20px;
    }

    .navbar .hamburger ul li a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        font-size: 1.2em;
        width: 100%;
    }
}

footer {
    background-color: rgb(20, 20, 20);
    color: white;
    padding: 20px;
    text-align: center;
}

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

footer .footer-content .footer-section {
    width: 33%;
    padding: 20px;
}

footer .footer-content .footer-section h2 {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

footer .footer-content .footer-section p {
    font-size: 1em;
    font-weight: 300;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

footer .footer-content .footer-section.links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .footer-content .footer-section.links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .footer-content .footer-section.links ul li {
    margin: 0;
    margin-bottom: 5px;
    padding: 0;
}

footer .footer-content .footer-section.links a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    font-weight: 300;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

footer .footer-content .footer-section.links a:hover {
    opacity: 0.7;
}

footer .footer-content .footer-section.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
}

footer .footer-content .footer-section.about ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .footer-content .footer-section.about ul li {
    margin: 0;
    margin-bottom: 5px;
    padding: 0;
}

footer .footer-content .footer-section.about a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    font-weight: 300;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

footer .footer-content .footer-section.about a:hover {
    opacity: 0.7;
}

footer .footer-bottom {
    padding: 10px;
}

@media screen and (max-width: 768px) {
    footer .footer-content {
        flex-direction: column;
    }

    footer .footer-content .footer-section {
        width: 100%;
    }

    footer .footer-content .footer-section.links {
        width: 100%;
    }

    footer .footer-content .footer-section.about {
        width: 100%;
    }
}

.donate-btn {
    -webkit-border-radius: 5;
    -moz-border-radius: 5;
    border-radius: 5px;
    color: #ffffff;
    font-size: 24px;
    background: #f53131;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}
  
.donate-btn:hover {
    background: #f02727;
    text-decoration: none;
}

.mobile {
    display: none;
}

.mobile-hidden {
    display: block;
}

@media screen and (max-width: 768px) {
    .mobile {
        display: block;
    }

    .mobile-hidden {
        display: none;
    }
}
