﻿@import "normalize.css";
@import "components/form.css";
@import "components/header.css";
@import "components/footer.css";
@import "components/features.css";
@import "components/step-indicator.css";

body {
    padding: 0;
    color: #232324;
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.secondary {
    max-width: 80rem;
    min-height: 45vh;
    margin: 5rem auto;
    padding: 0 .875rem;
}

.btn-wrap {
    display: flex;
    margin: 2rem 0;
    flex-flow: row wrap;
    grid-gap: 0 2rem;
}

.btn-default {
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    width: 100%;
    padding: 3px .5rem 0;
    background-color: #343a3f;
    border: none;
    color: #fff;
    border-radius: 5px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 54px;
    transition: all .2s linear;
    outline: none;
}

@media (min-width: 500px) {
    .btn-default {
        height: 64px;
        padding: 3px 1rem 0;
        font-size: 18px;
    }
}

.btn-default:hover {
    background-color: #26f098;
    color: #000;
    cursor: pointer;
    text-decoration: none;
}

.btn-lnk {
    display: block;
    margin: 0 auto;
    font-size: 16px;
    background: none;
    border: none;
    outline: none;
    text-decoration: none;
}

    .btn-lnk:hover, btn-lnk:focus, btn-lnk:active {
        cursor: pointer;
        color: #343a3f;
        border: none;
    }

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}