.desktop-nav {
    display: none;
}

.btn-row>.btn {
    margin: 0.5rem 0;
}

.mobile-nav {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    border-bottom: #0002 1px solid;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    background: white;
    z-index: 5;
}

.mobile-nav>div {
    display: flex;
    align-items: center;
}

.mobile-nav>div>a {
    border: 2px solid var(--blech);
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 100px;
    margin-right: 1rem;
    font-weight: 600;
    background: var(--blech);
    color: white;
}

.mobile-nav>div>a:hover {
    background: none;
    color: var(--blech);
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: space-around;
    width: 30px;
    margin-right: 1rem;
    height: 30px;
    padding: 15px;
}

.hamburger:hover {
    background: #0003;

}

.line {
    width: 100%;
    height: 2px;
    background: var(--blech);
}

.logo {
    margin-left: 1rem;
}

main {
    margin: 0;
}

#mobile-nav-popout {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #0007;
}

#mobile-nav-popout ul {

    position: absolute;
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 350px;
    height: 100%;
    right: 0;
    border-left: #0003;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#mobile-nav-popout ul li {
    display: block;
}

#mobile-nav-popout ul>li>a {
    font-weight: 600;
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 8px 14%;
    text-transform: uppercase;
}

#mobile-nav-popout ul>li>a>span {

    position: relative;
    display: block;
    width: fit-content;
}

#mobile-nav-popout ul>li>a:hover>span::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--blech);
}


hgroup {
    text-align: center;
}

hgroup h1 {
    font-size: 48px;
}

hgroup h2 {
    font-size: 24px;
}

.hgroup-content {
    display: flex;
}

.btn-row {
    justify-content: center;
}

.left-quote-pink,
.left-quote-cyan {
    display: flex;
    flex-direction: column;
}

.left-quote-pink>h2,
.left-quote-cyan>h2 {
    text-align: left !important;
    margin: 0 1rem;
    font-size: 24px;
    line-height: 0;
    margin-top: 2rem;
}
.left-quote-pink,
.left-quote-cyan {
    padding-right: 0;
}
.footer-cta {
    display: flex;
    flex-direction: column;

    border-bottom: 1px solid #fff3;
    padding: 4rem 1rem;
}

.footer-cta>h2 {
    font-weight: 300;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-cta .btn {
    background: #fff;
    color: #272727;
    font-weight: 600;
    font-size: 1.2rem;
}

@media screen and (max-width: 450px) {
    hgroup h1 {
        font-size: 36px;
    }

    hgroup h2 {
        font-size: 18px;
    }

    hgroup .btn {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}