﻿/**
*
* GET STARTED PAGE
*
**/


/* General stylings */
.get-started-title h1 {
    color: #444;
    font-weight: 600;
    text-align: center;
    font-size: 1.2em;
    text-transform: uppercase;
}

.get-started-title-border {
    border-top: #aeadae solid 1px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2em;
}

.get-started-image {
    display:block;
    background: #f2f2f2;
}

.get-started-image > img {
    display:block;
}

/* centers get started hero image on larger screens */
.get-started-hero-image-desktop {
    display: block;
    margin: auto;
}

.get-started-group-name {
    color: #565458;
    text-align: center;
    font-size: 1.75em;
    text-transform: lowercase;
    font-weight: 600;
    padding:0 .5em;
}

.get-started-links {
    padding-bottom: 2.5em;
}

.get-started-links > a {
    padding: 0 0 .5em 0;
    color: #000;
}

.get-started-links > a:hover {
    color: #467187;
}

.get-started-group:not(:last-child) {
    border-bottom: #aeadae solid 1px;
    margin-bottom: 2.5em;
}

.get-started-bottom-row {
    color: #777676;
    text-align: center;
}

.get-started-bottom__links {
    padding-right: 3em;
}

    .get-started-bottom__links:hover {
        color: #467187;
    }

    .get-started-bottom__links:before {
        padding-right: .5em;
    }

/* DESKTOP ONLY */
@media only screen and (min-width: 47.9375em) {
    .get-started-title h1 {
        font-size: 1.75em;
        padding-top: 1em;
        padding-bottom: .5em;
    }

    .get-started-title-border {
        padding-top: 3em;
        width: 35%;
    }

    .get-started-links > a {
        border-bottom: solid #aeadae 1px;
    }
}

@media only screen and (min-width: 30em) {
    .get-started-image {
        display:flex;
        align-items:center;
    }
}


/* MOBILE ONLY */
@media only screen and (max-width: 47.9375em) {
    .get-started-hero-image-mobile {
        width: 100%;
        padding-bottom: 1em;
    }
    
    .get-started-group-name {
        font-size: 1.25em;
        margin:1em 0;
    }

    .get-started-image {
        margin-bottom: 0;
    }

    .get-started-links {
        margin-top: 0;
    }

    .get-started-links a[class*=l-grid-sm-]:nth-child(0n+1):nth-child(0n+1) ~ [class*=l-grid-sm-],
    .get-started-links a {
        margin-bottom: 0;
        padding: .5em 0 .5em 1em;
    }

    .get-started-links > a:nth-child(even) {
        background: #ededed;
    }

    .get-started-bottom-row {
        font-size: .95em;
    }

    .get-started-bottom__links {
        display:block;
        padding-right:0;
    }

    .get-started-inner {
        width: 100% !important;
    }
}