.desktop-experience label {
    font-size: 16px;
}

.desktop-experience .main-form .form-inline input {
    margin-bottom: 15px;
    width: 140%
}

.our-info p {
    font-size: 16px;
}

#required-fields {
    padding-left: 25px;
    padding-bottom: 0px
}



/* Display Desktop Experience if Over 768px */
@media (min-width: 900px) {
    .mobile-experience {
        display: none;
    }

    .desktop-experience li {
        font-size: 18px;
        font-family: 'Nunito Sans', sans-serif;
    }

    h1 {
        text-align: center;
        font-size: 48px;
        font-family: 'Zilla Slab', serif;
    }

    .btn-lg.btn-primary[disabled] {
        background-color: #333;
        opacity: 0.8;
    }
}

/* Display Mobile Experience if Under 768px */
@media (max-width: 900px) {

    h1 {
        text-align: center;
        font-size: 42px;
        font-family: 'Zilla Slab', serif;
    }

    .desktop-experience {
        display: none;
    }

    .mobile-experience {
        display: contents;
    }

    .mobile-experience li {
        font-size: 15px;
        font-family: 'Nunito Sans', sans-serif;
    }

    .btn-lg.btn-primary[disabled] {
        background-color: #333;
        opacity: 0.8;
    }
}