body {
    font-size: 16px;
}

h1, .h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

p {
    margin-bottom: .5rem;
}

p+h2 {
    margin-top: 2.5rem;
}

p+.small {
    margin-top: 2.5rem;
}

.icon {
    width: 24px;
	height: 24px;
    background-size: cover;
    border-radius: 0;
    display: block;
}

.icon-menu { background-image: url('../img/icons/menu.svg'); }
.icon-menu-close { background-image: url('../img/icons/menu-close.svg'); }

.btn-menu {
    border-radius: .5rem;
    padding: .5rem .75rem;
    border: solid 2px transparent;
}

.navbar {
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 999;
    background: linear-gradient(to bottom, var(--white), transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar-brand {
    margin: 0;
}

.navbar .btn-menu:hover {
    border: solid 2px var(--black) !important;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: var(--white);
    padding-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.menu.show {
    opacity: 1;
    visibility: visible;
}

.menu .btn-menu {
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.menu a {
    color: var(--black);
    font-size: 2rem;
    margin: 1rem;
    text-decoration: none;
}

.menu .btn-app {
    margin: 0;
}

.box {
    padding: 2rem;
    width: 100%;
    max-width: 768px;
}

.btn-app img {
    width: 128px;
    max-width: 100%;
}

section {
    padding: 5rem 0;
}

.illustration {
    width: 100%;
    max-width: 240px;
    display: block;
}

#header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    text-align: center;
    padding: 10rem 0;
    color: var(--white);
    background-image: url('../img/header-bg.png');
}

#header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

#header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1rem;
}

#header h1 {
    font-size: 4rem;
}

@media (max-width: 767px) {
    #header h1 {
        font-size: 2rem;
    }
}

#features .feature {
    margin: 10rem 0;
}

#features .box {
    position: relative;
    z-index: 2;
}

#features .screen {
    width: 100%;
    max-width: 300px;
}

#features .illustration {
    margin-left: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    #features .illustration {
        margin: auto;
    }
}

#features .feature:first-child,
#features .feature:last-child {
    margin-top: 0;
    margin-bottom: 0;
}

#reviews {
    background-color: var(--extralight);
    background-image: url('../img/background.png');
    background-size: cover;
    background-attachment: fixed;
}

#download {
    text-align: center;
}

#footer {
    font-size: 14px;
}

@media (max-width: 767px) {
    #footer {
        text-align: center;
    }
}

#footer a,
#footer a:hover,
#footer a:focus {
    color: var(--gray);
    font-weight: initial;
}