
@font-face {
  font-family: "Avenir Next";
  src: url("./fonts/AvenirNext-Regular.otf") format("opentype"), /* Open Type Font */
	url("./fonts/AvenirNext-Regular.ttf") format("truetype"), /* Safari, Android, iOS */
	url("./fonts/AvenirNext-Regular.woff") format("woff"), /* Modern Browsers */
	url("./fonts/AvenirNext-Regular.woff2") format("woff2"); /* Modern Browsers */
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Avenir Next"; 
  src: url("./fonts/AvenirNext-Italic.otf") format("opentype"), /* Open Type Font */
	url("./fonts/AvenirNext-Italic.ttf") format("truetype"), /* Safari, Android, iOS */
	url("./fonts/AvenirNext-Italic.woff") format("woff"), /* Modern Browsers */
	url("./fonts/AvenirNext-Italic.woff2") format("woff2"); /* Modern Browsers */
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Avenir Next";
  src: url("./fonts/AvenirNext-Medium.otf") format("opentype"), /* Open Type Font */
	url("./fonts/AvenirNext-Medium.ttf") format("truetype"), /* Safari, Android, iOS */
	url("./fonts/AvenirNext-Medium.woff") format("woff"), /* Modern Browsers */
	url("./fonts/AvenirNext-Medium.woff2") format("woff2"); /* Modern Browsers */
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Avenir Next";
  src: url("./fonts/AvenirNext-MediumItalic.otf") format("opentype"), /* Open Type Font */
	url("./fonts/AvenirNext-MediumItalic.ttf") format("truetype"), /* Safari, Android, iOS */
	url("./fonts/AvenirNext-MediumItalic.woff") format("woff"), /* Modern Browsers */
	url("./fonts/AvenirNext-MediumItalic.woff2") format("woff2"); /* Modern Browsers */
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Avenir Next";
  src: url("./fonts/AvenirNext-DemiBold.otf") format("opentype"), /* Open Type Font */
	url("./fonts/AvenirNext-DemiBold.ttf") format("truetype"), /* Safari, Android, iOS */
	url("./fonts/AvenirNext-DemiBold.woff") format("woff"), /* Modern Browsers */
	url("./fonts/AvenirNext-DemiBold.woff2") format("woff2"); /* Modern Browsers */
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Avenir Next";
  src: url("./fonts/AvenirNext-Bold.otf") format("opentype"), /* Open Type Font */
	url("./fonts/AvenirNext-Bold.ttf") format("truetype"), /* Safari, Android, iOS */
	url("./fonts/AvenirNext-Bold.woff") format("woff"), /* Modern Browsers */
	url("./fonts/AvenirNext-Bold.woff2") format("woff2"); /* Modern Browsers */
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Avenir Next Condensed";
  src: url("./fonts/AvenirNextCondensed-DemiBold.otf") format("opentype"), /* Open Type Font */
	url("./fonts/AvenirNextCondensed-DemiBold.ttf") format("truetype"), /* Safari, Android, iOS */
	url("./fonts/AvenirNextCondensed-DemiBold.woff") format("woff"), /* Modern Browsers */
	url("./fonts/AvenirNextCondensed-DemiBold.woff2") format("woff2"); /* Modern Browsers */
  font-weight: 600;
  font-style: normal;
}

body {
    background-color: white;
    background-image: none;
}

body.admin-bar .content.full_width_banner.home.no_margin_bottom {
    position: relative;
    top: -30px;
}

div {
    position: relative;
}

/* Mobile Nav */
.nav-up {
    top: -80px !important;
    transition: top .2s linear;
}

.nav-down {
    transition: top .2s linear;
}

#mobile_nav {
    position: fixed;
    top: 0px;
    height: 70px;
    background-color: white;
    z-index: 99;
    width: 100%;
    box-shadow: 0px 1px 3px RGBA(0,0,0,.1);
}

#hamburger {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 70px;
    margin: 0px 30px;
    display: grid;
    align-items: center;
    font-size: 30px;
    color: #333333;
}

#hamburger .fa-times {
    display: none;
}

#mobile {
    display: none;
    position: fixed;
    top: 70px;
    height: 100vh;
    width: 100%;
    background-color: white;
}

.mobile_nav_actions {
    position: absolute;
    right: 2rem;
    font-size: 3rem;
    color: #333333;
}

#close_mobile_menu {
    display: none;
}

#mobile_nav .logo img {
    height: 50px;
    display: block;
    margin: auto;
    padding-left: 1rem;
}

#mobile_nav ul {
    padding: 0px;
    background-color: white;
}

#mobile_nav ul li {
    display: block;
    padding: 15px 30px;
    text-align: left;
}

#mobile_nav ul li a {
    text-decoration: none;
    color: #1f3763;
    font-size: 2rem;
}

/* Desktop Nav Bar */
#desktop_menu .container {
    width: 100%;
}

#desktop_menu .logo img {
    height: 48px;
    width: auto;
}

header {
    background-color: #ffffff;
}

nav#desktop_menu {
    height: 96px;
    display: grid;
    align-items: center;
    grid-template-columns: 20% 50% 30%;
}

nav#mobile_nav {
    height: 96px;
    display: grid;
    align-items: center;
    grid-template-columns: 70% 30%;
}

#mobile_nav .logo img {
    height: 30px;
    display: block;
    width: auto;
    margin-left: 3rem;
}

nav ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: right;
}

nav ul li {
    display: inline-block;
    margin: 0px 30px 0px 0px;
}

nav ul li a {
    color: #0E0D0D;
    font-family: "Avenir Next", sans-serif;
    font-weight: 500;
    letter-spacing: -.5px;
    font-size: 1.7rem;
    text-decoration: none;
}

nav ul li:last-child {
    margin: 0px;
}

li.current-menu-item a, li.current_page_item a {
    color: #bababa;
}

nav ul li a:hover {
    color: #999999;
}

.sticky {
    position: fixed;
    top: 0px;
    left:0px;
    right: 0px;
}

/* Footer */
footer {
    background-color: #404040;
}

footer .logo img {
    max-width: 60%;
}

footer ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

footer ul li {
    display: block;
    color: white;
    margin: 0px 0px 5px 0px;
}

footer ul li a, footer ul li {
    text-decoration: none;
    color: white;
    font-family: "Avenir Next", sans-serif;
    letter-spacing: 1px;
    font-weight: 300;
    transition: .5s;
}

footer ul li a:hover {
    color: #999999;
    margin-left: 5px;
    transition: .5s;
}

footer .fa-ul {
    list-style-type: none;
    margin-left: 20px;
    padding-left: 0;
}

footer h2 {
    color: white;
    text-transform: uppercase;
    font-family: "Avenir Next", sans-serif;
    font-size: 1.2rem;
}

footer .credits {
    margin-top: 2rem;
}

footer .credits p {
    text-align: center;
}

footer .credits a {
    font-weight: 500;
    color: white;
    text-decoration: none;
}

footer .nf-field-element input[type="email"],
footer .nf-field-element input[type="button"],
footer .nf-field-element input[type="text"] {
    border-radius: 4px;
    padding: 10px 18px;
    background-color: transparent;
    border: 2px solid white !important;
    color: #ffffff;
    font-weight: 400;
}

footer .nf-form-fields-required {
    color: white;
    font-weight: 400;
    font-family: "Avenir Next", sans-serif;
}

footer .nf-field-element input[type="button"]:hover {
    border-radius: 4px;
    padding: 10px 18px;
    background-color: white;
    border: 2px solid white !important;
    color: #333333;
    font-weight: 300;
}

footer input[type="email"]::placeholder {
    color: #ffffff;
    font-weight: 300;
}

.copyright p {
    text-align: center;
    color: #999999;
    font-size: .9rem;
    text-transform: uppercase;
}



/*  Typography - - - - - - - - - - - - - - - - 
    
    Font Weights
    - regular = 400
    - medium = 500
    - demiBold = 600
    - bold = 700

    - - - - - - - - - - - - - - - - - - - - - - 
*/

html {
    font-size: 10px;
}

h1, h2, h3, h4, h5, h6, p, li, td {
    color: #0E0D0D;
    margin-top: 0;
}

h1 {
    font-family: "Avenir Next", sans-serif;
    font-size: 4.5rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 2.4rem;
}

h2 {
    font-family: "Avenir Next", sans-serif;
    font-size: 5.4rem;
    line-height: 6.4rem;
    letter-spacing: -1.67px;
    font-weight: 700;
    margin-bottom: 2.4rem;
}

h3 {
    font-family: "Avenir Next", sans-serif;
    font-size: 2.1rem;
    line-height: 3.2rem;
    letter-spacing: -0.25px;
    font-weight: 700;
    margin-bottom: 2.4rem;
}

h4 {
    font-family: "Avenir Next", sans-serif;
    font-size: 2.2rem;
    line-height: 3.6rem;
    letter-spacing: -1.2px;
    font-weight: 500;
    margin-bottom: 2.4rem;
}

h5 {
    font-family: "Avenir Next", sans-serif;
    font-size: rem;
    line-height: rem;
    letter-spacing: px;
    font-weight: 500;
    margin-bottom: 2.4rem;
}

h6,
footer h2.widget_title,
form span.main-label {
    font-family: "Avenir Next Condensed";
    font-size: 1.4rem;
    line-height: 1.4rem;
    letter-spacing: 3.65px !important;
    text-transform: uppercase;
    margin-bottom: 2.4rem;
}

h6.overline,
footer h2.widget_title,
form span.main-label {
    margin: 0 0 0.8rem 0;
}

h6.overline + h1,
h6.overline + h2,
h6.overline + h3,
h6.overline + h4,
h6.overline + p {
    margin-top: 0;
}

.condensed {
    font-family: Avenir Next Condensed;
}

p, a, li, td {
    font-family: "Avenir Next", sans-serif;
    font-size: 1.7rem;
    line-height: 2.7rem;
    letter-spacing: -0.5px;
    font-weight: 500;
}

li {
    margin-bottom: 2rem;
}

p {
    margin-bottom: 2.4rem;
}

p.caption {
    font-size: 1.2rem;
    line-height: 1.8rem;
    letter-spacing: 0.14px;
    color: #919191;
    margin-bottom: 1.6rem;
}

blockquote p {
    font-size: 2rem;
    font-style: italic;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.center {
    text-align: center;
}

.white {
    color: #ffffff !important;
}

/* page-home.php - - - - - - - - - - - - - - - - */
.homepage_banner_carousel .slick-dots li button:before {
    opacity: .9;    
}

.homepage_banner_carousel .slick-dots li button:before {
    color: white;
}

#testimony_slider .slick-arrow {
    font-size: 3rem;
}

#testimony_slider .fa-chevron-left.slick-arrow {
    left: -100px;
}

#testimony_slider .fa-chevron-right.slick-arrow {
    right: -100px;
}

/* social_widget.widget.php - - - - - - - - - - - - - - - - */



/* Images - - - - - - - - - - - - - - - - */

img.alignright { float: right; margin: 0 0 2.4rem 2.4rem; }
img.alignleft { float: left; margin: 0 2.4rem 2.4rem 0; }
img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignright { float: right; }
.alignleft { float: left; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

img {
    max-width: 100%;
    width: auto;
    position: relative;
}

.square {
    padding-top: 100%;
    width: 100%;
}

.circle {
    padding-top: 100%;
    width: 100%;
    border-radius: 50%;
}

.sixteen_nine {
    padding-top: 56.25%;
}

.four_three {
    padding-top: 75%;
}

.banner {
    padding-top: 50%;
}

.short.banner {
    padding-top: 30%;
}

.video iframe {
    width: 100%;
    height: 100%;
}

/*  Colors - - - - - - - - - - - - - - - - */

/* Process Page */

.process_card {
    margin-bottom: 24px;
}

.color_bar {
    display: block;
    position: relative;
    top: -2.4rem;
    height: 10px;
}

img.process_SVG {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.get_started {
    margin: auto;
}

.black {
    color: #0E0D0D !important;
}

/*  Card Styles - - - - - - - - - - - - - - - - 
    
    Card Sizes
    - Large (6.4rem padding)
    - Medium (4.8rem padding)
    - Small (2.4rem padding)

*/

.card {
    box-shadow: 0 8px 24px 0 rgba(14,13,13,0.10);
    position: relative;
    background-color: #ffffff;
    z-index: 2;
    margin-bottom: 2.4rem;
}

.large.card,
.image.card .large.card_inner {
    padding: 6.4rem;
}

.medium.card,
.image.card .medium.card_inner {
    padding: 4.8rem;
}

.small.card,
.image.card .small.card_inner {
    padding: 2.4rem 2.4rem 3.2rem 2.4rem;
}

.image.card {
    padding: 0;
}

.card_inner,
.overlay {
    z-index: 2;
}

.pin_to_bottom {
    position: absolute;
    bottom: 4.8rem;
    left: 4.8rem;
    right: 4.8rem;
    z-index: 2;
}

.scroll_inside {
    position: absolute;
    top: 4.8rem;
    bottom: 4.8rem;
    left: 4.8rem;
    right: 4.8rem;
    overflow: scroll;
    z-index: 2;
}



.card h1:last-child,
.card h2:last-child,
.card h3:last-child,
.card h4:last-child,
.card h5:last-child,
.card h6:last-child,
.card p:last-child,
.card p.caption:last-child {
    margin-bottom: 0;
}

/*  Scrims - - - - - - - - - - - - - - - - 

    Scrim Types
    - full_scrim
    - half_scrim

*/

.full_scrim:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.2);
    z-index: 1;
}

.full_white_scrim:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(256,256,256,.7);
    z-index: 1;
}

.half_scrim:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}

/*  Testimonies Page - - - - - - - - - - - - - - - -  */
.hidden {
    display: none;
}

.testimony_content {
    dsiplay: grid;
    align-items: center;
}

/*  Resouces Page - - - - - - - - - - - - - - - -  */

.resource_sidebar {
    
}

.resource.card {
    height: 240px;
}

ul.pills  {
    margin: 0;
    padding: 0;
}

ul.pills li {
    display: inline-block;
    background-color: #dedede;
    border-radius: 4px;
    margin: 0px 0.6rem 0.6rem 0;
    padding: 0;
    float: left;
}

ul.pills li a {
    font-size: 1.2rem;
    line-height: 1.2rem;
    text-decoration: none;
    color: black;
    padding: 0 1rem;
    position: relative;
    top: -1px;
}

.small.resource.card h4 {
    line-height: 2.6rem;
}

.resource.card a.button {
    position: absolute;
    bottom: 2.4rem;
    left: 2.4rem;
    right: 2.4rem;
    line-height: 2.4rem;
    margin-bottom: 0px;
}

.search form {
    display: grid;
    align-items: center;
    grid-template-columns: 5fr 1fr;
    grid-column-gap: 1rem;
}

a.simple {
    color: #1f3763;
    text-decoration: none;
    display: block;
    clear: both;
}

.resource_commentary {
    margin-bottom: 1rem;
}

.search input[type="text"] {
    height: 30px !important;
}

.search input[type="submit"] {
    line-height: 3rem;
    background-color: #608fba;
    border: 1px solid #608fba;
    color: #ffffff;
    font-size: 1.4rem;
    border-radius: 2px;
}

.empty_state {
    background-color: #f1f1f1;
    text-align: center;
    padding: 6rem;
}

.empty_state h4 {
    margin: 0px;
}

.fade_to_white {
    height: 90px;
    overflow: hidden;
}

/*  page-contact.php */

input[type="text"],
input[type="email"] {
    height: 40px !important;
    font-size: 14px !important;
    line-height: 40px !important;
    color: #0E0D0D !important;
}

form textarea {
    font-size: 14px !important;
    padding: 12px !important;
    color: #0E0D0D !important;
}

form button.submit-button {
    padding: 0.8rem 3.2rem !important;
    background-color: #0E0D0D !important;
    border: 1px solid #0E0D0D !important;
    transition: all .1s linear !important;
}

form button.submit-button span.text {
    font-size: 17px;
    font-weight: 500;
    line-height: 35px;
}

.powered-by {
    display: none !important;
}

/*  page-payments.php */

.formcraft-css .fc-form .stripe-cover {
    padding-top: 0px;
}

html .formcraft-css .fc-form .form-element .error {
    top: 19px !important;
    right: 20px !important;
}

.stripe-amount-show:before,
.stripe-amount-show:after {
    <!-- display: none; -->
}

/*  Pagination */
nav.navigation.pagination {
    text-align: center;
    border-top: 1px solid #999999;
    padding-top: 15px;
}

.navigation.pagination h2 {
    display: none;
}

.nav-links a.page-numbers {
    font-family: "Avenir Next", sans-serif;
    color: #333333;
    padding: 0 4px;
    text-decoration: none;
}

.nav-links a.page-numbers:hover {
    font-family: "Avenir Next", sans-serif;
    color: #999999;
    padding: 0 4px;
    text-decoration: none;
}

.page-numbers.current {
    font-family: "Avenir Next", sans-serif;
    font-weight: 600;
    color: #333333;
    border-bottom: 2px solid #333333;
    padding-bottom: 0px;
}

.page-numbers .fa-chevron-left, .page-numbers .fa-chevron-right {
    position: relative;
    top: 1px;
}

/*  Buttons  - - - - - - - - - - - - - - - - 
    
    Button Types
    - Large Solid
    - Small Solid
    - Larege Wire
    - Small Wire

*/

.button {
    text-align: center;
    transition: all .1s linear;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 2.4rem;
}

.button.no_margin {
    margin-bottom: 0px
}

.small.button {
    padding: 0.8rem 1.6rem;
}

.large.button {
    padding: 0.8rem 3.2rem;
}

.small.wire.button,
ul.buttons.menu li:nth-child(2) a {
    padding: 0.8rem 1.6rem;
    line-height: 3.5rem;
    border: 1px solid #0E0D0D;
}

.small.solid.button {
    padding: 0.8rem 1.6rem;
    line-height: 3.5rem;
    background-color: #0E0D0D;
    color: #ffffff;
    border: 1px solid #0E0D0D;
}

ul.buttons.menu li:nth-child(1) a {
    padding: 0.8rem 1.6rem;
    line-height: 3.5rem;
    background-color: #608fba;
    color: #ffffff;
    border: 1px solid #608fba;
}

.large.solid.button {
    background-color: #0E0D0D;
    color: #ffffff;
    border: 1px solid #0E0D0D;
}

.large.wire.button {
    background-color: #ffffff;
    color: #0E0D0D;
    border: 1px solid #0E0D0D;
}

.white.button {
    background-color: #ffffff !important;
    color: #0E0D0D !important;
    border: 1px solid #ffffff !important;
}

.button.full_width {
    width: 100%;
}

.center.button {
    margin: auto;
    display: table;
}

a.card,
a.button {
    text-decoration: none;
}

a.wire.button {
    color: #0E0D0D;
}

a.button {
    color: #ffffff;
}

.right.button {
    float: right;
}

.solid.button:hover,
ul.buttons.menu li:nth-child(1) a:hover,
form button.submit-button {
    background-color: #ffffff; 
    color: #0E0D0D;
    border: 1px solid #0E0D0D;
}

.white.button:hover {
    background-color: #0E0D0D !important;
    color: #ffffff !important;
    border: 1px solid #0E0D0D !important;
}

.wire.button:hover,
ul.buttons.menu li:nth-child(2) a:hover {
    background-color: #0E0D0D;
    color: #ffffff;
    border: 1px solid #0E0D0D;
}

.button:active {
    opacity: .6;
}

/*  Color Classes  - - - - - - - - - - - - - - - - 
    - Primary
    - Secondary
    - Tertiary
    - Quaternary
*/

.primary.background {
    background-color: #1f3763;
}

.secondary.background {
    background-color: #608fba;
}

.tertiary.background {
    background-color: #c3a13d;
}

.quaternary.background {
    background-color: #75a259;
}

/* Margin Classes */
.no_margin_top {
    margin-top: 0px !important;
}

.no.margin.bottom {
    margin-bottom: 0px !important;
}

.medium.top_and_bottom_padding {
    padding: 2.4rem 0;
}

/* Alignment Classes */
.center {
    text-align: center;
}

/* Slick Carousels */
.slick-slider .slick-track, .slick-slider .slick-list {
    z-index: 3 !important;
}

.homepage_banner_carousel.slick-initialized.slick-slider.slick-dotted {
    display: grid;
    align-items: center;
}

i.fal.fa-angle-left.slick-arrow {
    font-size: 5rem;
    color: white;
}

i.fal.fa-angle-right.slick-arrow {
    font-size: 5rem;
    color: white;
}

/* Media Queries */

@media (min-width: 1023px) {
    nav#mobile_nav {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
 	.container {
        padding: 0px 30px;
	}

    nav#desktop_menu {
        display: none;
    }

    nav#mobile_nav {
        display: grid;
        align-items: center;
    }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
}

@media (min-width: 481px) and (max-width: 767px) {
    nav#desktop_menu {
        display: none;
    }

    nav#mobile_nav {
        display: grid;
        align-items: center;
    }

    .card {
        margin-bottom: 2.4rem;
    }

    .card:last-child {
        margin-bottom: 0;
    }
}

@media (min-width: 0px) and (max-width: 480px) {
    nav#desktop_menu {
        display: none;
    }

    nav#mobile_nav {
        display: grid;
        align-items: center;
    }

    /* Cards */
    .medium.card, .large.card, .image.card .large.card_inner {
        padding: 2.4rem;
    }

    .pin_to_bottom {
        bottom: 2.4rem;
        left: 2.4rem;
        right: 2.4rem;
    }

    /* Typography */

    h1 {
        font-size: 4.6rem;
        line-height: 5.5rem;
    }

    h2 {
        font-size: 3.2rem;
        line-height: 4.2rem;
    }

    h3 {
        font-size: 1.8rem;
        line-height: 2.6rem;
    }

    h4 {
        font-size: 1.8rem;
        line-height: 2.8rem;
    }

    h5 {
        font-size: 1.2rem;
        line-height: 2.0rem;
    }

    h6,
    footer h2.widget_title,
    form span.main-label {
        font-size: 1.4rem;
        line-height: 1.4rem;
    }

    p, a, li, td {
        font-size: 1.6rem;
        line-height: 2.6rem;
    }

    footer img {
        width: 80%;
        display: block;
        margin: auto;
    }

    footer .column {
        margin: 0px 0px 60px 0px;
    }
}