
:root {
    --color-primary: rgba(88,137,181,1);
    --color-primary-80: rgba(88,137,181,.8);
    --color-primary-60: rgba(88,137,181,.6);
    --color-primary-60-flat: rgba(155,184,211,1);
    --color-primary-30: rgba(88,137,181,.3);
    --color-primary-20: rgba(88,137,181,.2);
    --color-primary-20-flat: #dee7f0;
    --color-primary-dark: rgba(50,111,165,1);
    --color-primary-dark-70: rgba(50,111,165,.7);
    --color-secondary: rgba(17,165,223,1);
    --color-secondary-50: rgba(17,165,223,.5);
    --color-accent: rgba(63,70,75,1);
    --color-accent-secondary: rgba(220,52,25,1);
    --color-accent-tertiary: rgba(228,206,65,1);
    --color-text-primary: rgba(88,89,91,1);
    --color-text-primary-80: rgba(88,89,91,.8);
    --color-text-secondary: rgba(255,255,255,1);
    --color-bg-light: rgba(255,255,255,1);
    --color-bg-light-80: rgba(255,255,255,.8);
    --color-bg-light-20: rgba(255,255,255,.2);
    --color-bg-medium: rgba(247,247,247,1);
    --color-bg-medium-dark: rgba(220,220,220,1);
    --color-bg-medium-alt: rgba(224,224,224,1);
    --color-bg-dark: rgba(0,0,0,1);
    --color-bg-dark-60: rgba(0,0,0,.6);
    --color-bg-dark-25: rgba(0,0,0,.25);
    --color-border-primary: rgb(199, 199, 199);
    --color-success: #155724;
    --color-warning: #856404;
    --color-error: #721c24;
    --border-radius: 8px;
    --box-shadow: 3px 3px 6px rgba(0, 0, 0, .1);
}

.margin-top-md {
    margin-top:20px!important;
}
.margin-top-lg {
    margin-top:40px!important;
}
.margin-bottom-md {
    margin-bottom:20px!important;
}
.margin-bottom-lg {
    margin-bottom:40px!important;
}
.font-weight-bold {
    font-weight: 700;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Gotham A", "Gotham B", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, "Lucida Grande", sans-serif;
    color:var(--color-text-primary);
    font-size: 17px;
}

header {
    padding:20px;
    text-align: center;
}

.container {
    max-width:980px;
    margin:0px auto;
    padding:0 20px;
}
.container-wide {
    max-width:1280px;
}

.hero {
    background-image: url(/images/bg-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}
.hero h1 {
    position: absolute;
    top:50%;
    left:0%;
    transform: translate(0, -50%);
    margin:0px;
    background-image: url(/images/logo-refresh.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    text-indent: -9999px;
    height: 335px;
    width: 919px;
    max-width: 90%;
}
@media (min-width:768px) {
    .hero {
        min-height: 750px;
    }
}

h2 {
    font-size: 31px;
    text-transform: uppercase;
    font-weight: 500;
}
@media (min-width:768px) {
    h2 {
        font-size: 49px;
    }
}

h3 {
    font-weight: 400;
    line-height: 28px;
}

p {
    line-height: 26px;
}

ul li {
    line-height: 26px;
}

a {
    color:var(--color-primary);
}

.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.columns > section {
    flex:0 0 100%;
    width:100%;
}
.columns-center {
    text-align: center;
}
@media (min-width:768px) {
    .columns-3 > section {
        flex:0 0 32%;
        width:32%;
    }
    .columns-2 > section {
        flex:0 0 48%;
        width:48%;
    }
}

hr {
    border-top: 1px solid var(--color-border-primary);
}

.button {
    background-color: var(--color-primary);
    color: var(--color-text-secondary);
    border-color: var(--color-primary);
    border-radius: var(--border-radius);
    cursor: pointer;
    padding: 14px 20px;
    display: inline-block;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    transition-property: background-color, color, border;
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    text-decoration: none;
}
.button:hover {
    background-color: var(--color-primary-dark);
}
.button-secondary {
    background-color: var(--color-text-secondary);
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.button-secondary:hover {
    background-color: var(--color-bg-medium);
}

.hide {
	display: none; 
}

.agent-card {
    margin:40px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 700px;
}
.agent-card > img {
    width:175px;
    flex:0 0 175px;
    /* border-radius: var(--border-radius);
    box-shadow: var(--box-shadow); */
    border:1px solid var(--color-border-primary);
}
.agent-card-info {
    width:100%
}
.agent-card-info a {
    text-decoration:none;
}
.agent-card-info a i {
    font-size: 12px;
}
@media (min-width:768px) {
    .agent-card-info {
        width:calc(100% - 175px);
        padding:0 0 0 30px;
    }
}

.swim-lane {
    display: flex;
    flex-wrap: wrap;
    margin:0 0 80px 0;
    width:100%;
}
.swim-lane section {
    width:100%;
    flex:0 0 100%;
    order:999;
}
.swim-lane h2 {
    background-color: var(--color-primary);
    color: var(--color-text-secondary);
    padding:20px;
    margin: 0px;
}
.swim-lane-content {
    padding:20px;
}
@media (min-width:768px) {
    .swim-lane section {
        width:50%;
        flex:0 0 50%;
    }
    .swim-lane h2 {
        margin:20px 0 0 0;
    }
}

.order-1 {
    order:1!important;
}
@media (min-width:768px) {
    .order-1 {
        order: 999!important;
    }
}

img.contain {
    max-width:100%;
    display: block;
}

.iframe-stretch {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.iframe-stretch iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.counting-number {
    margin: 0px;
    font-size: 80px;
    color:var(--color-primary);
}
.counting-number > div {
    display: inline-block;
}

.form label {
    font-weight: 700;
    display: block;
    margin:0 0 5px 0;
}
.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form textarea {
    border:1px solid var(--color-border-primary);
    border-radius: var(--border-radius);
    padding:12px 10px;
    display: block;
    width:100%;
    margin-bottom: 20px;
}

footer {
    background-color:var(--color-accent);
    color: var(--color-text-secondary);
    padding:40px 0;
    margin:80px 0 0 0;
}
footer a {
    color: var(--color-text-secondary);
    text-decoration:none;
}
footer a:hover {
    text-decoration:underline;
}
footer p {
    font-size: 14px;
}
footer p a {
    margin:0 10px 10px 0;
}
footer .social {
    font-size: 23px;
}
footer small {
    line-height: 20px;
    font-size: 12px;
}
footer .small {
    font-size: 12px;
    line-height: 18px;
}