﻿body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #333;
    background-color: #fff;
    width: 100%;
}

h1 {
    font-family: 'Museo Slab 700', 'Helvetica Neue', Arial, sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-family: 'Museo Slab 700', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

h3 {
    font-family: 'Museo Slab 700', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 18pt;
    font-weight: 100;
    color: #333;
    margin: 0;
}

p {
    margin: 2rem 0;
}

/* Button Styles */
.btn, .navbar-default .navbar-nav > li > .btn {
    padding: 12px 32px;
    border-radius: 32px;
    font-size: 1em;
    font-weight: 500;
    transition: background-color .2s ease-in-out;
    cursor: pointer;
    line-height: 1.5rem;
    min-height: 56px;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1280px) {
    /* For desktop: */
    .hero-p {
        width: 85%;
    }

    #main-hero {
        padding: 10rem 0;
    }

    .module-header .hero-section {
        padding: 4rem 2rem;
    }
}

.btn-primary {
    background-color: #176370;
    color: #fff;
}

.btn-primary:hover, 
.navbar-collapse .navbar-nav > li > .btn-primary:hover {
    background-color: #13505b;
    color: #fff;
}

.btn-secondary, 
.navbar-collapse .navbar-nav > li > .btn-secondary {
    background-color: #fff;
    color: #176370 !important;
    border: 1px solid #176370 !important;
}

.btn-secondary:hover,
.navbar-collapse .navbar-nav > li > .btn-secondary:hover {
    background-color: #e4e4e4;
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.btn-outline-light:hover {
    border-color: #e4e4e4;
    color: #e4e4e4;
    background-color: #176370;
}

/* Hero Section */
.hero {
    background-color: #d4ea4a;
}

.hero-section {
    padding: 5rem 0;
    display: flex;
    justify-self: center;
    width: 75%;
}

.hero-text {
    height: 100%;
    align-content: space-around;
    margin: 1rem 0;
    color: #555;
    padding: 0 2rem;
}

.hero-image img {
    width: 130%;
    padding: 0 3rem;
    float: right;
}

/* For mobile phones: */
@media (max-width: 767px) {
    /* button, h1... body: */
    .btn, .navbar-default .navbar-nav > li > .btn {
        display: block;
        padding: 12px 32px;
        border-radius: 32px;
        font-size: 1em;
        align-content: center;
    }

    h1 {
        font-size: 24px;
        margin-top: 2rem;
    }

    h2 {
        font-size: 20px;
        font-weight: 400;
    }

    h3 {
        font-size: 16px;
        font-weight: 400;
    }

    body {
        font-size: 14px;
    }

    p {
        font-size: 14px;
        width: 100%;
    }

    /* Hero: */
    .hero-section {
        padding: 2rem 2rem;
        width: 100%;
    }

    .hero-text {
        margin: 1rem 0;
        height: auto;
        font-size: 16pt;
    }

    .hero-text li {
        font-size: 14px;
    }

    .hero-image img {
        width: 100%;
        margin-bottom: 2rem;
    }  
}

/* Help center css */
.help-center {
    background-color: #cbebf1;
}

.video-group {
    margin: 2rem 0;
    font-size: 12pt;
}

.video-group > a {
    color: #333;
}

.crop {
    max-width: 250px;
    height: 135px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.crop img {
    width: 100%;
    margin: -25px 0 0 0;
}

.faq-sections section:nth-of-type(odd) {
    background-color: #f3f3f3;
}

.faq-sections section:nth-of-type(even) {
    background-color: #e4e4e4;
}