#app-navbar {
    padding-top: 35px;
    padding-left: 10%;
    padding-right: 10%;
    position: relative;
    background: transparent;
    z-index: 2;
}

#navbar-menu {
    background: transparent;
}

.nav-item {
    padding-left: 2vw;
    background: transparent;
    background-color: transparent;
}

#navbar-icon {
    border-color: transparent;
}

.navbar-dark .nav-item>.nav-link.active {
    background-color: transparent !important;
    color: white !important;
}

nav .navbar-nav li a:active,
nav .navbar-nav li a:hover {
    color: white !important;
    transition: .5s;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0) 100%), url('assets/header_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

#app-navbar,
main,
section {
    position: relative;
    z-index: 1;
}

/* hero */

.hero-section {
    height: 90vh;
    position: relative;
    width: 100%;

}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    height: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-weight: 700;
    background: transparent;
}

.hero-body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-grey);
    background: transparent;
}

.hero-button {
    width: 160px;
    margin-top: 60px;
    background: transparent;
}

.hero-button-top {
    margin-bottom: 25px;
}

/* tag */

.tag {
    background: transparent;
    padding: 5px 15px;
    font-size: 10px;
    background-color: var(--bg);
    color: white;
    background: transparent;
    border: .5px solid white;
    border-radius: 24px;
}

.gradient-section {
    height: 10vh;
    background: #000000;
}

/* stats */

.stats-section {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    margin: 0 auto;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 15vh;
    background: linear-gradient(to bottom, #000000, var(--bg));
}

.stats-section-content {
    display: flex;
    flex-direction: row;
    background: transparent;
}

.stats-info {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    background: transparent;
}

.stats-section-title {
    font-size: 36px;
    font-weight: 700;
    background: transparent;
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.stats-section-body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-grey);
    text-align: left;
    background: transparent;
}

.stats-numbers {
    width: 65%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    background: transparent;
}

.stats-col {
    padding-right: 5rem;
    background: transparent;
}

.stat-number {
    background: transparent;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.number {
    font-size: 32px;
    font-weight: 700;
    background: transparent;
}

.number-label {
    font-size: 14px;
    background: transparent;
    color: var(--text-grey);
}

/* get in touch */

.touch-section {
    background-image: url('assets/pitch.svg');
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.touch-content {
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 500px;
}

.touch-title {
    font-size: 36px;
}

/* footer */

.app-footer {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 10vh;
    text-align: center;
}

.footer-content {
    background: transparent;
}

.footer-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: transparent;
    gap: 2rem;
    padding-top: 1rem;
}

.footer-action {
    background: transparent;
    text-decoration: none;
    color: white;
}

.footer-action:hover {
    background: transparent;
    color: white;
}

.divider {
    background: transparent;
    width: 90%;
    height: 1px;
    background-color: var(--text-grey);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    background: transparent;
}

.socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: transparent;
    gap: 1rem;
}

.social-button {
    padding-bottom: .5rem;
    padding-top: .35rem;
    padding-left: .75rem;
    padding-right: .75rem;
    border-radius: 360px;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: .5s;
}

.social-button:hover {
    background: rgba(255, 255, 255, 0.4);
}

.social-icon {
    height: 18px;
    background: transparent;
}