body {
    background: url('/site-files/images/site-background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #eeeeee;
    position: relative;
    font-family: "Nunito Sans", sans-serif;;
    font-size: 1.1rem;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.30);
    z-index: -1;
}
body.static::before{
    background: rgba(0, 0, 0, 0.7);
}
body.static{
    color: #dddddd;
    font-size: 0.9rem;
}
body.static section{
    margin-bottom: 25px;
}
nav {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    transition: all 0.3s ease;
}
nav ul a{
    font-weight: 500;
    text-transform: uppercase;
    transition: text-shadow 0.8s;
}
.sidenav li>a{
    font-weight: 500;
    text-transform: uppercase;
}
ul.chevron-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

ul.chevron-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 2px;
  color: #8EA4BB;
}

ul.chevron-list li::before {
  content: '›'; /* or use '\203A' for › unicode */
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 1.2rem;
  color: #2E4052; /* or any accent color */
  font-weight: bold;
}
.section.home h2{
    font-size: 3rem;
    font-weight: 800;
    margin-top: 15%;
    color: #eeeeee;
}
.section.home .home-left p{
    padding: 0 50px;
    margin-bottom: 50px;
    font-size: 1.2rem;
    font-weight: 200;
    color: #89B6E2;
}
.section.home .home-left .feature{
    width: 180px;
    height: 180px;
    border-radius: 15px;
    background: rgba(11, 18, 25, 0.8);
    border: #1d2c3b solid 0.1rem;
    /*background: rgba(19, 131, 242, 0.8);*/
    position: relative;
    /*box-shadow: #000000 10px 10px 15px;*/
    background-size: 40%;
    background-position: 50% 35%;
    background-repeat: no-repeat;
}
.section.home .home-left .feature span{
    position: absolute;
    bottom: 20px;
    left: 0;
    display: block;
    width: 100%;
    text-align: center;
    color: #dddddd;
}
.section.home .home-left .feature.crossroad{
    background-image: url('/site-files/images/icons/nearby.png');
}
.section.home .home-left .feature.circle{
    background-image: url('/site-files/images/icons/circle-privacy.png');
}
.section.home .home-left .feature.event{
    background-image: url('/site-files/images/icons/physical-meet.png');
}
.download-buttons{
    margin-top: 30px;
}
.download-buttons a{
    width: 180px;
    border-radius: 5px;
    background-position: 10% 50%;
    background-repeat: no-repeat;
    background-size: 25px;
    text-transform: none;
    /*box-shadow: #000000 10px 10px 15px;*/
    height: 52px;
    font-weight: 400;
    font-size: 1.2rem;
    background-color: rgba(11, 18, 25, 0.7);
    transition: background-color 0.5s, color 0.5s;
    border: #1d2c3b solid 0.1rem;
    color: #dddddd;
    position: relative;
    padding: 12px 0 0 50px;
    text-align: left;
    vertical-align: top;
}
.download-buttons a:hover{
    background-color: rgba(11, 18, 25, 0.98);
    color: #ffffff;
    transition: background-color 0.5s, color 0.5s;
}
.download-buttons a::before{
    content: 'Download';
    display: inline-block;
    position: absolute;
    font-size: 0.7rem;
    color: #999;
    left: 50px;
    top: 9px;
    padding: 0;
    margin: 0;
    line-height: 1;
}
.download-buttons a.ios{
    background-image: url('/site-files/images/icons/apple.png');
    margin-right: 25px;
}
.download-buttons a.android{
    background-image: url('/site-files/images/icons/android.png');
}
.nav-wrapper {
    padding: 0 20px;
}
.brand-logo img {
    height: 120px;
    margin-top: 10px;
    transition: height 0.8s;
}
.scrolled {
    /*background-color: rgba(28, 41, 56, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
}
.scrolled .brand-logo img {
    height: 60px;
    transition: height 0.8s;
}
.scrolled ul a{
    text-shadow: #000000 1px 1px 3px !important;
    transition: text-shadow 0.8s;
}
body:not(.static) .section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}
footer {
    background: rgba(5, 8, 11, 0.9);
    color: #8EA4BB;
    font-size: 1rem;
    padding: 20px;
    text-align: left;
    position: relative;
    z-index: 1;
}
footer h5{
    font-size: 1.2rem;
    font-weight: 800;
}
footer p.address{
    font-size: 0.9rem;
}
footer p.copyright{
    text-align: center;
    font-size: 0.8rem;
    color: #8EA4BB;
}
a {
    color: #89B6E2;
}
@media (max-width: 768px) {
    .section {
        min-height: 100vh;
    }
    body{
        background: url('/site-files/images/site-background.jpg') no-repeat 85% fixed;
        background-size: cover;
        font-size: 1rem;
    }
    h2{
        font-size: 3rem;
    }
    .brand-logo img {
        height: 70px;
        margin-top: 5px;
    }
    .nav-wrapper {
        padding: 0 10px;
    }
}
.app-screenshot{
    position: relative;
    display: inline-block;
    z-index: 1;
}
.app-screenshot .notification-wrapper{
    position: absolute;
    top: -45px;
    left: 15%;
    width: 70%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1;
    text-align: left;
    padding: 10px;
    color: #cccccc;
    border-radius: 5px;
    opacity: 0;
    transition: top 0.5s ease, opacity 0.5s ease;
}
.app-screenshot .notification-wrapper h4{
    font-size: 0.8rem;
    font-weight: 800;
    margin: 0 0 3px 0;
    padding: 0;
}
.app-screenshot .notification-wrapper p{
    font-size: 0.8rem;
    margin: 0;
    padding: 0;
}

.app-screenshot .notification-wrapper.show {
    top: 50px;
    opacity: 1;
    transition: top 0.5s ease, opacity 0.5s ease;
}
.section.about{
    background-color: rgba(0, 0, 0, 0.4);
}
.section h3{
    margin-bottom: 25px;
    font-weight: 800;
}
.section p.intro{
    padding: 0 25%;
    color: #89B6E2;
    margin-bottom: 0;
}
.section.about h5{
    font-size: 1.2rem;
}
.section.about .how-it-works{
    border-radius: 15px;
    background: rgba(11, 18, 25, 0.8);
    border: #1d2c3b solid 0.1rem;
    padding: 15px;
    margin-top: 25px;
    /*box-shadow: #000000 10px 10px 15px;*/
}
.section.about .how-it-works img{
    width: 80px;
    margin-top: 25px;
    margin-bottom: 15px;
}
.section.about .how-it-works p{
    color: #8EA4BB;
    font-size: 0.9rem;
}

.section.moments .moment{
    padding: 15px;
}
.section.moments .moment img{
    width: 100%;
    max-width: 300px;
    margin-top: 25px;
    margin-bottom: 15px;
    /*box-shadow: #000000 10px 10px 15px;*/
}
.section.moments .moment p{
    color: #8EA4BB;
    font-size: 0.9rem;
    padding: 0 50px;
    font-style: italic;
    font-size: 1rem;
}

.section.download{
    background-color: rgba(0, 0, 0, 0.4);
}
.section.download .screen{
    padding: 15px;
}
.section.download .screen img{
    width: 100%;
    max-width: 280px;
    margin-top: 25px;
    margin-bottom: 15px;
}
.section.download .screen p{
    color: #8EA4BB;
    font-size: 0.9rem;
    padding: 0 50px;
    font-style: italic;
    font-size: 1rem;
}
@media (max-width: 1600px) {
    .container{
        width: 90%;
    }
}
@media (max-width: 1500px) {
    .app-screenshot img{
        max-width: 320px;
        margin-top: 50px;
    }
    .section.home .home-left{
        margin-top: 30px;
    }
    .app-screenshot .notification-wrapper.show {
        top: 90px;
    }
    .section.home .home-left .feature{
        width: 150px;
        height: 150px;
    }
}
@media (max-width: 1366px) {
    .app-screenshot img{
        max-width: 320px;
        margin-top: 50px;
    }
    .section.home h2{
        font-size: 2.5rem;
        margin-top: 20%;
    }
    .app-screenshot .notification-wrapper.show{
        top: 90px;
    }
    .section.home .home-left .feature{
        width: 140px;
        height: 140px;
    }
    .section.home .home-left .feature span{
        padding: 0 10px;
        line-height: 1.2;
        bottom: 10px;
    }
}
@media (max-width: 992px) {
    .section.moments .moment p{
        padding: 0 10px;
    }
    .section.about .how-it-works p{
        padding: 0 30px;
    }
}
@media (max-width: 767px) {
    .container{
        width: 100%;
    }
    .section.home h2{
        margin-top: 35%;
        font-size: 2rem;
    }
    .section h3{
        font-size: 1.6rem;
    }
    .section.home .home-left p{
        font-size: 1rem;
    }
    .section p.intro{
        padding: 0 25px;
    }
    .section.about .how-it-works{
        padding: 8px;
    }
    .section.about h5{
        font-size: 1rem;
    }
    .section.about .how-it-works p{
        font-size: 0.8rem;
    }
    .section.home .home-left .feature{
        width: 140px;
        height: 140px;
        background-position: 50% 25%;
    }
    .download-buttons a.ios{
        margin-right: 0;
        margin-bottom: 25px;
    }
    .scrolled {
        background-color: rgba(28, 41, 56, 0.95);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .scrolled .brand-logo img{
        height: 45px;
    }
}
@media (max-width: 550px) {
    .section.home .home-left .feature{
        margin: 0 auto;
        width: 110px;
        height: 140px;
        background-position: 50% 25%;
    }
    .section.home .home-left .feature span{
        padding: 0 10px;
    }
}
@media (min-width: 1024px) and (min-height: 992px){
    .container{
        width: 100%;
    }
    body:not(.static) .section {
        min-height: 60vh;
    }
    .section.home .home-left .feature{
        width: 140px;
        height: 140px;
    }
    .section.home .home-left .feature span{
        font-size: 1rem;
    }
}