﻿/*Base Styles
---------------------------------------------------*/

:root {
    --red: #D7282F;
    --blue: #005F9A;
    --link-color: #005F9A;
    --link-hover-color: #FFA300;
    --transition-duration: .25s;
    --wrap-size: 1480px;
}

/* Fonts */

.center {
    text-align: center;
}

.k-icon {
    font-size: 20px !important;
}

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: "Outfit", Verdana, Helvetica, Arial, sans-serif;
    line-height: 2.5rem;
    color: #000;
    margin: 0;
    background-color: var(--main-bg); /*maybe change?*/
    max-width: 2000px;
    margin: 0 auto;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.wide-wrap {
    width: 1920px;
    margin: 0 auto;
}
.wrap {
    width: 1480px;
    margin: 0 auto;
}

.page {
    min-height: calc(100vh - 14rem);
}

@media (max-width: 1919px) {
    .wide-wrap {
        width: 100% !important;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
@media (max-width: 1479px) {
    .wrap {
        width: 100% !important;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
@media (max-width: 550px) {
    .wrap {
        width: 100% !important;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.grecaptcha-badge {
    visibility: hidden !important;
}
/* Titles */
h1 {
    font-size: 4.5rem;
    line-height: 5rem;
}

h2 {
    font-size: 3rem;
    line-height: 3.5rem;
}

h3 {
    font-size: 2.1rem;
    margin: 1rem 0 1rem 0;
    text-transform: uppercase;
}

h4 {
    font-size: 2.3rem;
    margin: 1rem 0 1rem 0;
}

/* 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-family: "Outfit";
}

    input[type=text],
    input[type=email],
    input[type=file],
    input[type=date] {
        height: 29px;
        width: 100%;
        border: solid 1px #e2e2e2;
    }

    input[type=file] {
        min-height: 10rem;
    }

    input.red-border {
        border: 1px solid #D7282F;
    }

label {
    font-size: 1.4rem;
    font-weight: 600;
}

.form textarea {
    margin-bottom: 30px;
    width: 100%;
    border: solid 1px #e2e2e2;
}

input:focus,
textarea:focus {
    outline-color: #000;
}

select {
    font-size: 1.6rem;
    padding: 1rem 2rem;
    border-color: #cdcbcb;
    color: #8f8f8f;
}

.validation-error {
    background-color: #ff0000;
    color: #fff;
    padding: .5rem 1rem;
}

ul {
    padding-left: 2rem;
}

/* 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;
}


.header-overlay {
    margin-top: -8rem;
}

.top-nm {
    margin-top: -23rem;
}

    .top-nm .text-section .wrap h1 {
        padding: 1rem 10rem 2rem 10rem;
    }

    .top-nm .text-section .wrap p {
        padding: 0 10rem;
    }

    .top-nm .text-section .wrap {
        padding-top: 5rem;
        width: 100rem
    }

@media (max-width: 1279px) {
    .top-nm .text-section .wrap {
        padding-top: 5rem;
        width: 95% !important;
    }
}

/* Padding */
.p-5 {
    padding: .5rem;
}

.p-10 {
    padding: 1rem;
}

.p-15 {
    padding: 1.5rem;
}

.p-20 {
    padding: 2rem;
}

.p-25 {
    padding: 2.5rem;
}

.b-14, p.b-14 {
    font-size: 1.4rem;
}

.b-16, p.b-16 {
    font-size: 1.6rem;
}

/* 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);
    }

.yellow-button {
    background-color: #FFA300;
    color: #fff;
    text-transform: uppercase;
    padding: .5rem 3.5rem;
    font-size: 1.3rem;
    border: none;
}

a.yellow-button:hover {
    color: #fff;
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.medium {
    font-weight: 500;
}

.bold {
    font-weight: 600;
}

.bolder {
    font-weight: 700;
}

.boldest {
    font-weight: 900;
}

.red-left-border {
    padding-left: 1.5rem;
    border-left: 3px solid #ff0000;
}

/* Wrap
------------------------------------------------- */
.wrap {
    width: var(--wrap-size);
    margin: 0 auto;
}

@media (max-width: 1279px) {
    .wrap {
        width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Logo
------------------------------------------------ */
.logo {
    max-width: 250px;
}

.logo-small {
    width: 104.4px;
}

/* Icons
------------------------------------------------ */
.social-media-icon {
    height: 1.8rem;
    width: 1.8rem;
}

.arrow-icon {
    height: 1.3rem;
    width: 1.3rem;
    cursor: pointer;
}

.pdf-icon {
    width: 2.5rem;
    height: 3.7rem;
}

/* Line
----------------------------------------------- */
.line {
    width: 100%;
    height: 1px;
    border: solid 1px rgba(0, 0, 0, 0.12);
}

.line-short {
    width: 95rem;
    height: 1px;
    border: solid 0.5px rgba(0, 0, 0, 0.12);
    margin: auto;
}

.line-extraShort {
    width: 30rem;
    height: 1px;
    border: solid 1px rgba(0, 0, 0, 0.12);
    margin: 3rem 0;
}

.bottom-border {
    border: solid 1px rgba(0, 0, 0, 0.12);
}

.remove-border {
    display: none;
}

.border-top {
    border-top: 2px solid #d7282f;
    width: 8rem;
}

.border-vertical {
    /*    width: 1px;
    height: 12.4rem;
    border: solid 1px rgba(0, 0, 0, 0.12);*/
}

.border-vertical-tall {
    width: 1px;
    height: 25rem;
    border: solid 1px rgba(0, 0, 0, 0.12);
}

/* Slider styling */
/*.owl-nav .owl-next,
.owl-prev {
    width: 3rem;
    border-radius: 2.5rem;
    font-size: 35px;
    color: #fff;
    background-color: #005F9A;
}

    .owl-nav .owl-next > span,
    .owl-nav .owl-prev > span {
        margin-top: -7px;
        display: block;
        padding: 6px 0;
        margin-left: 1px;
    }

.owl-carousel {
    position: relative;
}
    .owl-carousel .owl-dots {
        display: none;
    }
    .owl-carousel .owl-nav .owl-prev {
        position: absolute;
        left: -5rem;
        top: calc(50% - 20px);
    }

    .owl-carousel .owl-nav .owl-next {
        position: absolute;
        right: -5rem;
        top: calc(50% - 20px);
    }

    .owl-carousel .owl-nav .owl-next,
    .owl-carousel .owl-nav .owl-prev {
        width: 3rem;
        border-radius: 2.5rem;
        font-size: 35px !important;
        color: #fff !important;
        background-color: #005F9A !important;
    }

        .owl-carousel .owl-nav .owl-next > span,
        .owl-carousel .owl-nav .owl-prev > span {
            margin-top: -7px;
            display: block;
            padding: 6px 0;
            margin-left: 0px;
        }

@media (max-width: 1249px) {
    .owl-carousel .owl-nav .owl-prev {
        left: -2rem;
    }

    .owl-carousel .owl-nav .owl-next {
        right: -2rem;
    }
}*/


/* Hero Section
---------------------------------------------- */
.hero-image {
    width: 100%;
    height: 75rem;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-gradient {
    width: 60%;
    height: 100%;
    background-image: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-image .hero-content {
    max-width: 43%;
}

    .hero-image .hero-content h1 {
        font-weight: 300;
        font-size: 7rem;
        width: 50rem;
        line-height: 7rem;
        margin: 0 0 2rem 0;
    }

    .hero-image .hero-content p {
        font-size: 2.4rem;
        width: 50rem;
        line-height: 3.2rem;
        margin: 0;
    }
@media (max-width: 1479px) {
    .hero-image {
        height: 60rem;
    }
}
@media (max-width: 1024px) {
    .hero-image {
        height: 40rem;
    }
}
@media (max-width: 768px) {
    .hero-image {
        height: 30rem;
    }
}
@media (max-width: 767px) {
    .hero-image .hero-content {
        max-width: 60%;
    }

        .hero-image .hero-content h1 {
            width: 100%;
            line-height: 5rem;
        }

        .hero-image .hero-content p {
            width: 100%;
        }
}

@media (max-width: 550px) {
    .hero-image .hero-content {
        max-width: 100%;
    }

        .hero-image .hero-content h1 {
            font-size: 4rem;
        }

    .hero-image {
        height: 20rem;
    }
}

