﻿/*Base Styles
---------------------------------------------------*/

:root {
    --red: #e71618;
    --dark-blue: #00306B;
    --dark-blue-hover: #00214a;
    --light-blue: #76B4E3;
    --green: #82C341;
    --green-hover: #76b339;
    --dark-green: #009346;
    --light-grey: #C1C5CA;
    --dark-grey: #777B83;
    --dark-grey-hover: #56595e;
    --link-color: #00306B;
    --link-hover-color: #00306B;
    --transition-duration: .25s;
    --wrap-size: 1280px;
}

body, html {
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /*    max-width: 1220px;*/
    margin: 0 auto;
    background-color: #fff;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-size: 1.6rem;
    font-weight: 400;
    font-family: 'Exo 2', Verdana, Helvetica, Arial, sans-serif;
    line-height: 2.5rem;
    color: #000;
    margin: 0;
    background-color: #fff;
}

.wrap {
    width: var(--wrap-size);
    margin: 0 auto;
}

@media (max-width: 1279px) {
    .wrap {
        width: 100% !important;
        padding: 0 2rem;
    }
}

a {
    transition: color .25s;
}
a:hover {
    transition: color .25s;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
    color: var(--link-color);
    text-decoration: none;
    transition: all var(--transition-duration);
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

    a:hover {
        color: var(--link-hover-color);
        text-decoration: none;
        transition: all var(--transition-duration);
    }

.blue-button {
    background-color: var(--dark-blue);
    color: #fff;
    text-transform: uppercase;
    padding: 1.5rem 4.5rem;
    font-size: 2rem;
    border: none;
    border-radius: .8rem;
    display: inline-block;
}
.green-button {
    background-color: var(--green);
    color: #fff;
    text-transform: uppercase;
    padding: 1.5rem 4.5rem;
    font-size: 2rem;
    border: none;
    border-radius: .8rem;
    display: inline-block;
}

a.blue-button:hover {
    color: #fff;
    background-color: var(--dark-blue-hover);
}
a.green-button:hover {
    color: #fff;
    background-color: var(--green-hover);
}

.blue-button.sm {
    padding: 0.3rem 2rem;
    font-size: 1.4rem;
}

@media (max-width: 550px) {
    .blue-button {
        background-color: var(--dark-blue);
        color: #fff;
        text-transform: uppercase;
        padding: 1.5rem 3rem;
        font-size: 1.8rem;
        border: none;
        border-radius: .8rem;
        display: inline-block;
    }

    .green-button {
        background-color: var(--green);
        color: #fff;
        text-transform: uppercase;
        padding: 1.5rem 4.5rem;
        font-size: 2rem;
        border: none;
        border-radius: .8rem;
        display: inline-block;
    }
}

.page {
    min-height: calc(100vh - 49.3rem);
}

/* Slick override */
.slick-dots li button:before {
    font-size: 11px !important;
}
.slick-dots {
    bottom: 2rem !important;
    left: calc(-1280px / 4);
}

/* video */
.video-container .embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.video-container .embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Forms  */

input,
textarea {
    border-radius: 0;
    border-width: 2px;
    border-color: #ccc;
    box-shadow: none;
    border-style: solid;
    margin-bottom: 5px;
    padding: .3rem 1rem;
    font-size: 1.6rem;
    font-family: 'Exo 2';
}

    input[type=text],
    input[type=email],
    input[type=file],
    input[type=date] {
        height: 41px;
        width: 100%;
        border: solid 1px #e2e2e2;
        font-size: 1.6rem;
    }

    input[type=file] {
        min-height: 10rem;
    }

    input.red-border {
        border: 1px solid #ff0000;
    }

label {
    font-size: 1.6rem;
    font-weight: 600;
}

textarea {
    margin-bottom: 30px;
    width: 100%;
    border: solid 1px #e2e2e2;
    width: 100%;
    font-family: 'Exo 2';
}

input:focus,
textarea:focus {
    outline-color: #000;

}

select {
    font-size: 1.6rem;
    padding: 1rem 2rem;
    border-color: #e2e2e2;
    width: 100%;
    font-family: 'Exo 2';
}

.validation-error {
    background-color: #ff0000;
    color: #fff;
    padding: .5rem 1rem;
}



/* Margins */
.m-5 {
    margin-top: .5rem;
}

.m-10 {
    margin-top: 1rem;
}

.m-15 {
    margin-top: 1.5rem;
}

.m-20 {
    margin-top: 2rem;
}

.m-25 {
    margin-top: 2.5rem;
}

.m-30 {
    margin-top: 3rem;
}

.m-40 {
    margin-top: 4rem;
}

.m-50 {
    margin-top: 5rem;
}

.m-75 {
    margin-top: 7.5rem;
}

.m-100 {
    margin-top: 10rem;
}

.mb-5 {
    margin-bottom: .5rem;
}

.mb-10 {
    margin-bottom: 1rem;
}

.mb-15 {
    margin-bottom: 1.5rem;
}

.mb-20 {
    margin-bottom: 2rem;
}

.mb-25 {
    margin-bottom: 2.5rem;
}

.mb-30 {
    margin-bottom: 3rem;
}

.mb-40 {
    margin-bottom: 4rem;
}

.mb-50 {
    margin-bottom: 5rem;
}

.mb-75 {
    margin-bottom: 7.5rem;
}

.mb-100 {
    margin-bottom: 10rem;
}

h1, h1 p {
    font-size: 5rem;
    font-weight: 400;
    line-height: 5.6rem;
    margin: 0 0 1rem 0;
}
    h2, h2 p {
        font-size: 4rem;
        font-weight: 400;
        line-height: 4.4rem;
        margin: 0 0 1rem 0;
    }

p {
    font-size: 2.4rem;
    line-height: 3.2rem;
    font-weight: 400;
}

@media (max-width: 767px) {
    h1, h1 p {
        font-size: 4rem;
        font-weight: 400;
        line-height: 4.6rem;
        margin: 0 0 1rem 0;
    }

    h2, h2 p {
        font-size: 3rem;
        font-weight: 400;
        line-height: 3.6rem;
        margin: 0 0 1rem 0;
    }

    p {
        font-size: 2rem;
        line-height: 2.8rem;
        font-weight: 400;
    }
}
