* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 1.0625rem;
    font-family: 'Work Sans', sans-serif;
    line-height: 1.4;
}

h1, h2, h3, h4, h5, h6  {
    font-family: 'Eczar', serif;
}

h4 {
    margin-bottom: 15px;
}

ul, ol {
    list-style: none;
}

ol.custom {
    margin-top: 15px;
}

    ol.custom li::before {
      content: "• ";
      color: #F94A4A; /* or whatever color you prefer */
    }

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(0,0,0,0.2);
}
::-moz-placeholder { /* Firefox 19+ */
  color: rgba(0,0,0,0.2);
}
:-ms-input-placeholder { /* IE 10+ */
  color: rgba(0,0,0,0.2);
}
:-moz-placeholder { /* Firefox 18- */
  color: rgba(0,0,0,0.2);
}

.l-row {
    overflow: hidden;
}

.l-pull-left {
    float: left;
}

.l-pull-right {
    float: right;
}

.l-margin-auto {
    margin: 0 auto;
}

.l-mb-25 {
    margin-bottom: 25px;
}

.l-text-justify {
    text-align: justify;
}

.l-text-left {
    text-align: left;
}

.l-1-3 {
    float: left;
    width: 33%;
    padding-left: 30px;
    padding-right: 30px;
}

.emphasis {
    color: #F94A4A;
    font-weight: 500;
}

.container {
    width: 1370px;
    margin: 0 auto;
    padding: 0 30px;
}

.navbar {
    height: 70px;
    line-height: 70px;
    background: #172A40;
    color: #EAF2EF;
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
}

    .navbar h1 {
        font-size: 1.8rem;
        padding-right: 12px;
    }
        .navbar .bar h1 a {
            font-size: inherit;
            font-weight: inherit;
            padding: inherit;
        }

    .navbar a {
        font-size: 0.875rem;
        font-weight: 300;
        color: #fff;
        text-decoration: none;
    }

    .navbar .bar a {
        padding-left: 12px;
        padding-right: 12px;
    }

        .navbar a:hover {
            text-decoration: underline;
        }

    .navbar .mobile {
        display: none;
    }

.hero {
    height: 500px;
    position: relative;
    display: table;
    width: 100%;
    text-align: center;
    margin-top: 70px;
}

    .hero:after {
        background: url('../images/feature.jpeg') no-repeat 50% 50%;
        background-attachment: fixed;
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        content: "";
        width: 100%;
        height: 100%;
    }

    .hero-filter {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: rgba(14, 17, 53, 0.7);
    }

    .hero-text {
        display: table-cell;
        vertical-align: middle;
        color: #fff;
        font-weight: 500;
        font-size: 5rem;
        z-index: 2000;
        position: relative;
    }

    .hero-text-content {
        max-width: 850px;
        margin: auto;
    }

        .hero-text-content span {
            font-weight: 300;
        }

    .sub-hero-text {
        text-transform: uppercase;
        font-size: 1.2rem;
        font-weight: 300;
        margin-top: 15px;
    }

        .sub-hero-text::before {
            content: "";
            border-bottom: 6px double #F94A4A;
            position: relative;
            width: 130px;
            height: 20px;
            top: -6px;
            display: inline-block;
            margin-right: 20px;
        }

        .sub-hero-text::after {
            content: "";
            border-bottom: 6px double #F94A4A;
            position: relative;
            width: 130px;
            height: 20px;
            top: -6px;
            display: inline-block;
            margin-left: 20px;
        }

.logo-explain {
    width: 100px;
    height: 100px;
    margin: 20px auto 70px;

    background: white;
    transition: 100ms ease-out;
}
    .logo-explain:hover {
        transform: scale(1.2);
    }

    .logo-explain.share {
        -webkit-mask-image: url(../images/share2.svg);
        mask-image: url(../images/share2.svg);
    }

    .logo-explain.currency {
        -webkit-mask-image: url(../images/money.svg);
        mask-image: url(../images/money.svg);
    }

    .logo-explain.graph {
        -webkit-mask-image: url(../images/bar-chart.svg);
        mask-image: url(../images/bar-chart.svg);
    }

.emblem {
    background-image: url('../images/emblem.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 266px;
    height: 250px;
    margin: 0 auto 35px;
    // transform: translate3d(-150px, 0, 0);
    transition: 100ms ease-out;
}

.segment {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

    .segment-header {
        font-size: 3.625rem;
        padding-bottom: 60px;
        color: #7A918D;
        text-transform: uppercase;
        font-weight: 500;
    }

    .segment-content {
        max-width: 680px;
        margin: auto;
    }

        .segment-content p {
            line-height: 1.4;
        }

.segment.invert {
    background: #172A40;
    color: #EAF2EF;
}

    .segment.invert .segment-header {
        color: #EAF2EF;
    }

.input-group {
    margin-bottom: 25px;
    text-align: left;
}

    .input-group label{
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 8px;
        display: block;
        color: #F94A4A;
    }

input[type="text"], input[type="email"], textarea {
    width: 100%;
    height: 45px;
    font-size: 1.3rem;
    padding: 5px 0;
    border: none;
    border-bottom: 3px solid #7A918D;
}

input:focus, textarea:focus {
    outline: none;
}

textarea {
    font-family: 'Work Sans', sans-serif;
    height: inherit;
}

.btn {
    background: #7A918D;
    width: 180px;
    border-radius: 3px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
}

    .btn:hover {
        cursor: pointer;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    }

.footer {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #B0C0BC;
    color: #172A40;
    font-size: 0.875rem;
}

    .footer-links {
        margin-left: 20px;
    }

        .footer-links li {
            margin-left: 10px;
        }
            .footer-links li a{
                color: #172A40;
                text-decoration: none;
            }

            .footer-links li a:hover{
                text-decoration: underline;
            }

.copyright {
    font-weight: 500;
}

#privacy_policy p {
    margin-bottom: 25px;
}

#privacy_policy ul {
    list-style: inherit;
    margin-bottom: 25px;
    padding-left: 25px;
}

#privacy_policy li {
    margin-bottom: 10px;
}

.menu {
    background: #172A40;
    display: none;
}

    .menu li a {
        display: block;
    }

.burger {
    padding-left: 30px;
}

@media (max-width: 1369px) {
    .container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero:after {
        background-attachment: scroll;
    }

    .segment-content {
        max-width: 100%;
    }

    .footer-content {
        padding: 0 30px;
    }

    .hero {
        height: 300px;
    }

    .hero-text {
        font-size: 2.5rem;
    }

        .sub-hero-text::before, .sub-hero-text::after  {
            display: none;
        }

    .segment {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .segment-header {
        font-size: 2.5rem;
        padding-bottom: 40px;
    }

    .l-1-3 {
        float: none;
        width: 100%;
        margin-bottom: 60px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .logo-explain {
        width: 200px;
        height: 200px;
    }

    .navbar .mobile {
        display: block;
    }

    .navbar .desktop {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 60px;
        line-height: 60px;
    }

        .navbar h1 {
            font-size: 1.4rem;
        }

    .container {
        padding: 0 15px;
    }

    .hero {
        height: 220px;
        margin-top: 60px;
    }

        .hero-text {
            font-size: 1.6rem;
        }

            .sub-hero-text {
                font-size: 0.9rem;
            }

    .segment {

    }

        .segment-header {
            font-size: 1.8rem;
            padding-bottom: 20px;
        }

    .emblem {
        width: 180px;
        height: 170px;
    }

    .logo-explain {
        width: 120px;
        height: 120px;
        margin-bottom: 35px;
    }

    .footer {
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

        .footer .l-pull-left {
            float: none;
        }

        .footer-links {
            margin: 10px 0 0;
        }

            .footer-links li {
                display: inline-block;
            }
}
