.menu-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    z-index: 12345;
}

.topbar {
    width: 100%;
    height: 100%;
    padding: 0px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
}

.scrolled .topbar {
    background-color: var(--background-color);
    box-shadow: 3px 0px 4px var(--shadow-dark-color);
}

.logo-container {
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.scrolled .logo-white {
    display: none;
}

.logo-colored {
    display: none;
}

.scrolled .logo-colored {
    display: block;
}

.navbar {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: none !important;
}

.inner-navbar-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    list-style: none;
}

.sidebar-close-btn {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    cursor: pointer;
    display: none;
    align-self: flex-end;
    align-items: center;
    justify-content: center;
    color: var(--border-dark-color);
    user-select: none;
    font-size: 30px;
}

.sidebar-close-btn:hover {
    color: var(--link-color);
}

.sidebar-close-btn:active {
    background-color: var(--button-color);
    color: var(--background-color);
}

.navbar-link {
    color: var(--title-color);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0px 20px;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.3s ease-in-out;
    user-select: none;
}

.navbar-link:hover {
    font-weight: 600;
    color: var(--title-color);
}

.navbar-link:active {
    color: var(--active-color);
}

.active-link {
    font-weight: 600;
    color: var(--background-color);
}

.scrolled .active-link {
    color: var(--link-color);
}

.active-link:hover {
    font-weight: 700;
}

.sidebar-open-btn {
    width: 40px;
    height: 40px;
    padding: 2.5px 0px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.bar {
    height: 3px;
    width: 30px;
    background-color: var(--border-color);
    user-select: none;
}

.sidebar-open-btn:hover>.bar {
    height: 4px;
}

.sidebar-open-btn:active>.bar {
    background-color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .sidebar-open-btn {
        display: flex;
    }
    .sidebar {
        position: fixed;
        overflow: hidden;
        top: 0;
        left: 0px;
        display: none;
        flex-direction: column;
        align-items: flex-end;
        height: 100vh;
        width: 100vw;
        background-color: var(--cover-color);
        z-index: 12345;
    }
    .sidebar-toggle {
        display: flex;
    }
    .sidebar .inner-navbar-container {
        flex-direction: column;
        width: 270px;
        margin-right: -270px;
        padding: 10px 30px;
        padding-right: 10px;
        align-items: flex-start;
        height: 100%;
        background-color: var(--background-color);
        transition: all 0.3s ease-in-out;
    }
    .sidebar-toggle .inner-navbar-container {
        margin-right: 0px;
    }
    .sidebar-close-btn {
        display: flex;
    }
    .navbar-link {
        width: 100%;
        padding: 20px 0px;
        padding-right: 100px;
    }
    .active-link {
        color: var(--link-color);
    }
}

.hero-section {
    width: 100vw;
    height: 100vh;
    position: relative;
    background-image: url('../../static/images/hero/carbon-credits.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container {
    width: 100%;
    height: 100%;
    background-color: var(--cover-color);
    z-index: 123;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    max-width: 75%;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: var(--background-color);
    margin-top: 5%;
}

@media screen and (max-width: 768px) {
    .hero-container {
        padding: 30px 20px;
    }
    .hero-title {
        font-size: 32px;
        max-width: none;
    }
}

.footer {
    width: 100%;
    height: auto;
    background-color: var(--primary-lighter-color);
    display: flex;
    flex-direction: column;
}

.footer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    max-height: 150px;
    object-fit: contain;
}

.footer-social-media-container {
    margin: 20px 0px;
    display: flex;
    flex-direction: row;
}

.footer-social-media-container i {
    height: 35px;
    width: 35px;
    margin-right: 20px;
    border-radius: 50%;
    font-size: 15px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-media-container a:hover i {
    color: var(--background-color);
    background-color: var(--primary-color);
}

.footer-social-media-container a:active i {
    background-color: var(--active-color);
}

.footer-copyright-container {
    width: 100%;
    padding: 20px 0px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright {
    font-size: 14px;
    color: var(--title-color);
    text-align: center;
}