﻿/*Base Styles
---------------------------------------------------*/

:root {
    --red: #D7282F;
    --blue: #005F9A;
    --link-color: #005F9A;
    --link-hover-color: #005F9A;
    --transition-duration: .25s;
    --wrap-size: 1280px;
}

/* Fonts */

@font-face {
    font-family: 'Gotham Black';
    src: url('/fonts/Gotham-Black.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Black Italic';
    src: url('/fonts/Gotham-BlackItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Bold';
    src: url('/fonts/Gotham-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Bold Italic';
    src: url('/fonts/Gotham-BoldItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Book';
    src: url('/fonts/Gotham-Book.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Book Italic';
    src: url('/fonts/Gotham-BookItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Light';
    src: url('/fonts/Gotham-Light.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Light Italic';
    src: url('/fonts/Gotham-LightItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Medium';
    src: url('/fonts/Gotham-Medium.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Medium Italic';
    src: url('/fonts/Gotham-MediumItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Thin';
    src: url('/fonts/Gotham-Thin.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Thin Italic';
    src: url('/fonts/Gotham-ThinItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Ultra';
    src: url('/fonts/Gotham-Ultra.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham Ultra Italic';
    src: url('/fonts/Gotham-UltraItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham XLight';
    src: url('/fonts/Gotham-XLight.otf') format('opentype');
}

@font-face {
    font-family: 'Gotham XLight Italic';
    src: url('/fonts/Gotham-XLightItalic.otf') format('opentype');
}

/* Fonts */

.italic {
    font-family: 'Gotham Book Italic';
}

.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: "Gotham Book", Verdana, Helvetica, Arial, sans-serif;
    line-height: 2.5rem;
    color: #000;
    margin: 0;
    background-color: var(--main-bg); /*maybe change?*/
}

.wrap {
    width: 1140px;
    margin: 0 auto;
}

.page {
    min-height: calc(100vh - 14rem);
}

@media (max-width: 1139px) {
    .wrap {
        width: 100% !important;
    }
}

/* Titles */
h1 {
    font-family: 'Gotham Bold';
    font-size: 4.5rem;
    line-height: 5rem;
    font-weight: 400;
}

h2 {
    font-family: 'Gotham Medium';
    font-size: 3rem;
    line-height: 3.5rem;
}

h3 {
    font-family: 'Gotham Bold';
    font-size: 2.1rem;
    margin: 1rem 0 5rem 0;
    text-transform: uppercase;
    font-weight: 400;
}

h4 {
    font-family: 'Gotham Bold';
    font-size: 2.3rem;
    margin: 1rem 0 5rem 0;
    font-weight: 400;
}

/* 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: 'Gotham Book';
}

    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;
}

/* 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;
    font-family: 'Gotham Book';
}

.b-16, p.b-16 {
    font-size: 1.6rem;
    font-family: 'Gotham Book';
}

/* 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: #005F9A;
    color: #fff;
    text-transform: uppercase;
    padding: 1rem 6rem;
    font-size: 1.3rem;
    font-family: 'Gotham Medium';
    border: none;
}

a.blue-button:hover {
    color: #fff;
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.medium {
    font-family: 'Gotham Medium';
}

.bold {
    font-family: 'Gotham Bold';
}

.bolder {
    font-family: 'Gotham Black';
}

.boldest {
    font-family: 'Gotham Ultra';
}

.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 {
    width: 172px;
}

.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: 52rem;
    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-family: 'Gotham Light';
        font-weight: 300;
        font-size: 7rem;
        width: 50rem;
        line-height: 7rem;
        margin: 0 0 2rem 0;
    }

    .hero-image .hero-content p {
        font-family: 'Gotham Book';
        font-size: 2.4rem;
        width: 50rem;
        line-height: 3.2rem;
        margin: 0;
    }

@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: 40rem;
    }
}

/* Text Section
------------------------------------------------- */
.text-section {
    margin: 10rem 0 10rem 0;
}

    .text-section .wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #fff;
    }

        .text-section .wrap h5 {
            font-family: "Gotham Bold";
            font-size: 1.4rem;
            text-transform: uppercase;
            /*        border-top: 2px solid #d7282f;*/
            margin: 0 0;
            font-weight: 400;
        }

        .text-section .wrap h1 {
            font-family: "Gotham Bold";
            font-size: 2.8rem;
            margin: 0 0;
            padding: 1rem 20rem;
            text-align: center;
            line-height: 1.36;
            font-weight: 400;
        }

        .text-section .wrap p {
            margin: 0 0;
            text-align: center;
            padding: 0 26rem;
        }

        .text-section .wrap .blue-button {
            margin-top: 2rem;
        }

@media (max-width: 1024px) {
    .text-section .wrap p,
    .top-nm .text-section .wrap p {
        padding: 0 15rem;
    }

    .text-section .wrap h1,
    .top-nm .text-section .wrap h1 {
        padding: 1rem 15rem 2rem 15rem;
    }
}

@media (max-width: 768px) {
    .text-section .wrap p,
    .top-nm .text-section .wrap p {
        padding: 0 10rem;
    }

    .text-section .wrap h1,
    .top-nm .text-section .wrap h1 {
        padding: 1rem 10rem 2rem 10rem;
    }
}

@media (max-width: 550px) {
    .text-section .wrap p,
    .top-nm .text-section .wrap p {
        padding: 0;
    }

    .text-section .wrap h1,
    .top-nm .text-section .wrap h1 {
        padding: 1rem 0 2rem 0;
    }
}

/* Data Section & Data Blocks
------------------------------------------------------- */
.data-section {
    width: 100%;
    min-height: 44rem;
    background-color: #f7f7f7;
    position: relative;
}
    .data-section .top-white-bar {
        display: none;
    }
    .data-section .top-white-bar.owl-carousel.owl-theme {
        display: block;
        position: absolute;
        background-color: #fff;
        height: 5rem;
        width: 100%;
    }

.data-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    grid-gap: 1.5rem;
}

.data-block {
    width: 38rem;
    height: 40rem;
    background-color: #fff;
    padding: 3rem;
    box-shadow: 1px 1px 6px 0px #c9c9c9;
    border: solid 0.5px rgba(151, 151, 151, 0.5);
    margin-top: -5rem;
    position: relative;
    font-size: 1.4rem;
}

    .data-block h5 {
        margin: 0 0 0.5rem 0;
        font-family: 'Gotham Bold';
        font-size: 1.6rem;
        line-height: 2.2rem;
        margin: 0 0;
        font-weight: 400;
    }

    .data-block .line {
        border-bottom: 0px solid rgba(151, 151, 151, 0.21);
        margin: 1.5rem 0;
    }

    .data-block p {
        margin: 0 0 1rem 0;
        font-family: 'Gotham Book';
        font-size: 1.4rem;
        text-align: left;
    }

    .data-block .blue-button {
        margin-top: 3rem;
        position: absolute;
        bottom: 3rem;
        padding: 0.8rem 1.6rem;
    }

.data-flex.owl-carousel .data-block {
    width: initial;
    height: initial;
    min-height: 45rem;
    margin: 0 .5rem 5rem .5rem;
    border-radius: 4px;
    box-shadow: 1px 1px 6px 0px #c9c9c9;
}
.data-flex.owl-carousel .data-block p {
    line-height: 2rem;
}

@media (max-width: 768px) {
    .data-block {
        width: 35rem;
    }

    .data-section {
        height: initial;
    }
}

@media (max-width: 767px) {
    .data-flex {
        flex-direction: column;
    }

    .data-block {
        margin-bottom: 8rem;
        width: 95%;
    }
}

/* Text Images Section
----------------------------------------------------------- */
.text-images-section {
    padding: 10rem 0;
}

    .text-images-section .text-images-grid {
        display: flex;
        flex-direction: row;
        grid-gap: 6rem;
        justify-content: center;
    }

    .text-images-section .text-images {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

.right-images {
    order: 3;
}

.text-images-section .text-images .text-image {
    display: flex;
    flex-direction: column;
    width: 16rem;
}

    .text-images-section .text-images .text-image h5 {
        font-family: "Gotham Medium";
        font-size: 1.4rem;
        font-weight: 500;
        margin: 0;
        text-align: center;
        padding-top: 1rem;
    }

    .text-images-section .text-images .text-image img {
        max-width: 16rem;
        height: 23rem;
    }

.text-images-section .text-images-grid .text-images-container {
}

.text-images-section .text-images-grid .text-images-content h5 {
    font-family: "Gotham Bold";
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
    font-weight: 400;
}

.text-images-section .text-images-grid .text-images-content h1 {
    font-family: "Gotham Bold";
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.36;
    padding-top: 1.5rem;
    margin: 0;
    font-weight: 400;
}

.text-images-section .text-images-grid .text-images-content p {
    font-family: "Gotham Book";
}

@media (max-width: 1279px) {
    .text-images-section .text-images {
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
    }

    .text-images-section .text-images-grid {
        flex-direction: column;
    }

    .text-images-section .text-images .text-image {
        width: initial;
    }

    .text-images-section .text-images .text-image {
        width: initial;
    }

        .text-images-section .text-images .text-image img {
            max-width: 100%;
            height: initial;
        }
}

@media (max-width: 768px) {
    .text-images-section .text-images-grid .text-images-container {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .text-images-section .text-images {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 550px) {
    .text-images-section .text-images {
        grid-template-columns: repeat(2, 1fr);
    }

        .text-images-section .text-images .text-image h5 {
            padding: 0 0 1rem 0;
        }
}

/* Contact Section
---------------------------------------------------------------------- */
.contact-hero {
    height: 54rem;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center;
}

.contact-gradient {
    background-image: linear-gradient(to right, #202020 38%, rgba(32, 32, 32, 0) 100%);
    height: 100%;
}

.contact-container {
    width: calc(40% + 8rem);
    height: 100%;
    padding-top: 6rem;
    padding-left: 8rem;
}

    .contact-container .line-short {
        border: solid 0.5px #fff;
        height: 1px;
        margin: 5rem 0 4rem 0;
        width: 52rem;
    }

    .contact-container h1 {
        font-family: "Gotham Bold";
        font-size: 4.5rem;
        color: #fff;
        line-height: 1.09;
        padding-right: 5rem;
        font-weight: 400;
    }

    .contact-container hr {
        margin: 5rem 0 4rem 0;
        border-color: rgb(151, 151, 151);
    }

    .contact-container p {
        font-family: "Gotham Book";
        font-size: 1.4rem;
        line-height: 1.71;
        color: #fff;
        margin: 0;
    }

    .contact-container .contact {
        display: flex;
        flex-direction: row;
        align-items: center;
        grid-gap: 3rem;
    }

        .contact-container .contact .blue-button {
            padding: 1rem 3rem;
        }

@media (max-width: 1024px) {
    .contact-container {
        width: calc(60% + 8rem);
        padding: 4rem 0 0 6rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        width: calc(100%);
        padding: 4rem;
    }

    .contact-hero {
        height: 40rem;
    }

    .contact-container h1 {
        font-size: 3.2rem;
        margin-top: 0;
        padding: 0;
    }
}

@media (max-width: 550px) {
    .contact-container {
        width: calc(100%);
        padding: 4rem;
    }

    .contact-hero {
        height: initial;
    }

    .contact-container h1 {
        font-size: 2.8rem;
    }

    .contact-container hr {
        margin: 2rem 0;
    }

    .contact-container .contact {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 375px) {
    .contact-container {
        width: calc(100%);
        padding: 3rem;
    }
}

/* Full Text Section
------------------------------------------------------------------------------*/
.full-text-section .full-text-container {
    padding: 10rem 0;
}

.full-text-section .wrap .full-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 12rem;
}

.full-text-section .full-text-container h5 {
    text-transform: uppercase;
    font-family: "Gotham Bold";
    font-weight: 400;
    margin: 0;
}

.full-text-section .full-text-grid .right-editor {
    padding-right: 10rem;
}

@media (max-width: 1024px) {
    .full-text-section .wrap .full-text-grid {
        grid-gap: 6rem;
    }
}

@media (max-width: 768px) {
    .full-text-section .wrap .full-text-grid {
        grid-gap: 4rem;
    }

    .full-text-section .full-text-grid .right-editor {
        padding-right: 2rem;
    }
}

@media (max-width: 767px) {
    .full-text-section .wrap .full-text-grid {
        grid-template-columns: 1fr;
    }
}


/* Professionals Section
------------------------------------------------------------------------------*/
.professionals-section {
    padding: 10rem 0;
}

    .professionals-section .professionals-grid {
        display: grid;
        grid-template-columns: 60rem 1fr;
        grid-gap: 10rem;
    }

    .professionals-section .wrap > h5 {
        font-family: "Gotham Bold";
        font-size: 1.4rem;
        font-weight: 400;
        text-transform: uppercase;
        margin: 0;
        padding: 0 0 2rem 0;
    }

    .professionals-section .wrap .border-top {
    }

    .professionals-section .professionals-grid .professionals-content img {
        max-width: 100%;
        margin-top: 7rem;
    }

    .professionals-section .professionals-grid .professionals-content p {
        font-family: "Gotham Medium";
        font-size: 1.8rem;
        font-weight: 500;
        margin: 0;
    }
    .professionals-section .professionals-list.downloads {
        width: 66.6%;
        margin: 0 auto;
    }
    .professionals-section .professionals-list h1 {
        font-size: 1.8rem;
        font-family: "Gotham Medium";
        font-weight: 500;
        margin: 4rem 0 0 0;
    }

    .professionals-section .professionals-list .professional {
        display: flex;
        flex-direction: row;
        background-color: #f3f3f3;
        margin-bottom: 1px;
        align-items: center;
        justify-content: space-between;
        padding: 0 3rem;
        cursor: pointer;
    }

    .professionals-section .professionals-list .professional-expanded {
        border: solid 5px #f3f3f3;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding: 2rem;
        cursor: pointer;
    }
    .professionals-section .professionals-list .professional-expanded .professional-flex {
        cursor: initial;
    }
        .professionals-section .professionals-list .professional-expanded h5 {
            margin: 0;
            font-size: 1.6rem;
            font-weight: normal;
            font-family: "Gotham Book";
            cursor: pointer;
        }

            .professionals-section .professionals-list .professional-expanded h5:nth-child(1) {
                font-family: "Gotham Medium";
                font-weight: 500;
            }

        .professionals-section .professionals-list .professional-expanded .arrow-icon{
            position: absolute;
            top: 2rem;
            right: 2.5rem;
        }
        .professionals-section .professionals-list .professional-expanded img {
            margin-top: 1rem;
            max-height: 25rem;
        }

    .professionals-section .professional .professional-flex {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

        .professionals-section .professional .professional-flex h5 {
            font-size: 1.6rem;
            font-family: "Gotham Book";
            font-weight: normal;
            margin: .6rem 0;
        }

            .professionals-section .professional .professional-flex h5:nth-child(1) {
                font-family: "Gotham Medium";
                font-weight: 500;
            }

    .professionals-section .text-section {
        margin: 0 auto 2rem auto;
    }

        .professionals-section .text-section h1 p {
            font-family: "Gotham Bold";
            padding: 0;
            font-weight: 400;
        }

    .professionals-section.downloads .professional-flex ul {
        padding: 0 0 0 2rem;
    }

@media (max-width: 1279px) {
    .professionals-section .professionals-grid {
        grid-template-columns: 50rem 1fr;
        grid-gap: 5rem;
    }

        .professionals-section .professionals-grid .professionals-content img {
            margin-top: 4rem;
        }
}

@media (max-width: 1024px) {
    .professionals-section .professionals-grid {
        grid-template-columns: 30rem 1fr;
    }
}

@media (max-width: 768px) {
    .professionals-section .professionals-grid {
        grid-template-columns: 1fr;
    }

    .professionals-section .professional .professional-flex {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

        .professionals-section .professional .professional-flex h5 {
            margin: .3rem 0;
        }
}


/* Banner Text Section
------------------------------------------------------------------------------*/

.banner-text-section {
    padding: 10rem 0;
}

.banner {
    width: 100%;
    height: 45rem;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .banner .banner-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

.banner-text-section .wrap .text-box {
    background-color: #fff;
    margin: 0 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -10rem;
    padding: 0 12rem;
}

    .banner-text-section .wrap .text-box h5 {
        font-family: "Gotham Medium";
        font-size: 1.8rem;
        font-weight: 500;
        margin: 0;
        padding-top: 5rem;
    }

    .banner-text-section .wrap .text-box p {
        font-family: "Gotham Book";
        font-size: 1.6rem;
        line-height: 1.79;
        text-align: center;
        margin: 0;
        padding-bottom: 2rem;
    }

.banner .banner-grid .banner-content {
    display: flex;
    flex-direction: column;
    padding: 0 10rem 6rem 0;
}

    .banner .banner-grid .banner-content h1,
    .banner .banner-grid .banner-content h1 p {
        font-family: "Gotham Bold";
        font-size: 2.8rem;
        font-weight: 400;
        color: #fff;
        line-height: 1.46;
        padding-bottom: 2rem;
        margin: 0;
    }

    .banner .banner-grid .banner-content p {
        font-family: "Gotham Book";
        font-size: 1.6rem;
        font-weight: normal;
        color: #fff;
        line-height: 1.69;
        margin: 0;
    }

@media (max-width: 768px) {
    .banner {
        height: 50rem;
    }

        .banner .banner-grid {
            grid-template-columns: 1fr 2fr;
        }

    .banner-text-section .wrap .text-box {
        padding: 0 6rem;
    }
}

@media (max-width: 767px) {
    .banner {
        height: 45rem;
        justify-content: flex-start;
    }

        .banner .banner-grid {
            grid-template-columns: 1fr;
            padding: 0 8rem;
        }

            .banner .banner-grid .banner-content {
                padding: 2rem 0 0 0;
            }
}

@media (max-width: 550px) {
    .banner {
        height: 40rem;
    }

    .banner-text-section .wrap .text-box {
        margin: -10rem 2rem 0 2rem;
    }

    .banner .banner-grid .banner-content h1 {
        font-size: 2.4rem;
        line-height: 1.36;
    }

    .banner .banner-grid {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }

    .banner-text-section .wrap .text-box {
        padding: 0 3rem;
        height: initial;
    }

        .banner-text-section .wrap .text-box h5 {
            padding-top: 3rem;
        }
}

@media (max-width: 375px) {
    .banner {
        height: 45rem;
    }
}


/* Text Image Contact Section
------------------------------------------------------------------------------*/
.text-image-contact-section {
    padding: 10rem 0;
}

.text-image-contact-grid {
    display: grid;
    grid-template-columns: 60% 40%;
}

    .text-image-contact-grid img {
        width: 100%;
    }

    .text-image-contact-grid .section-content {
        background-color: #f7f7f7;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 7rem;
    }

        .text-image-contact-grid .section-content h1 {
            font-family: "Gotham Medium";
            font-size: 2.8rem;
            line-height: 1.14;
            font-weight: 500;
            margin: 0;
        }

        .text-image-contact-grid .section-content p {
            font-family: "Gotham Book";
            font-size: 1.6rem;
            line-height: 1.63;
        }

.text-image-contact-section .blue-box {
    width: 60rem;
    height: 35rem;
    background-color: rgb(8,92,156);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5rem;
    margin-top: -10rem;
    margin-left: 28.5%;
    position: relative;
}

    .text-image-contact-section .blue-box h5 {
        color: #fff;
        font-family: "Gotham Medium";
        font-size: 1.6rem;
        line-height: 1.38;
        font-weight: 500;
        margin: 0;
    }

    .text-image-contact-section .blue-box p {
        color: #fff;
        font-family: "Gotham Book";
        font-size: 1.5rem;
        line-height: 1.33;
        margin: 0;
        padding-bottom: 2rem;
    }

/* Multi Images Section
------------------------------------------------------------------------------*/
.multi-image-section {
    margin: 10rem 0;
}

    .multi-image-section .multi-section-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .multi-image-section .multi-section-flex h5 {
            font-family: "Gotham Bold";
            font-size: 1.4rem;
            font-weight: 400;
            margin: 0;
            padding: 0 3rem 0 3rem;
        }

        .multi-image-section .multi-section-flex h1 {
            font-family: "Gotham Bold";
            font-size: 2.8rem;
            font-weight: 400;
            line-height: 1.75;
            margin: 2rem 0 1rem 0;
        }

        .multi-image-section .multi-section-flex p {
            margin-top: 0;
            text-align: center;
        }

        .multi-image-section .multi-section-flex .multi-images {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            align-content: center;
            width: 90rem;
        }

    .multi-image-section .multi-images .title-image {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 4rem;
        flex: 1 1 19rem;
        max-width: 19rem;
    }

        .multi-image-section .multi-images .title-image img {
            max-height: 6rem;
            max-width: 6rem;
            padding-bottom: 1rem;
        }

        .multi-image-section .multi-images .title-image h5 {
            font-family: "Gotham Medium";
            font-size: 1.4rem;
            line-height: 1.29;
            font-weight: 500;
            text-align: center;
        }

    .multi-image-section .multi-images .border-vertical:last-child {
        display: none;
    }

    .multi-image-section .multi-images .border-vertical:nth-child(12) {
        display: none;
    }

@media (max-width: 1190px) {
    .multi-image-section .multi-images .border-vertical:nth-child(12) {
        display: block;
    }

    .multi-image-section .multi-images .border-vertical:nth-child(10) {
        display: none;
    }
}

@media (max-width: 997px) {
    .multi-image-section .multi-images .border-vertical:nth-child(10) {
        display: block;
    }

    .multi-image-section .multi-images .border-vertical:nth-child(8) {
        display: none;
    }

    .multi-image-section .multi-section-flex .multi-images {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .multi-image-section .multi-images .border-vertical:nth-child(8) {
        display: block;
    }

    .multi-image-section .multi-images .border-vertical:nth-child(6) {
        display: none;
    }

    .multi-image-section .multi-images .border-vertical:nth-child(12) {
        display: none;
    }
}

@media (max-width: 610px) {
    .multi-image-section .multi-images .border-vertical:nth-child(6) {
        display: block;
    }

    .multi-image-section .multi-images .border-vertical:nth-child(4n) {
        display: none;
    }
}

@media (max-width: 475px) {
    .multi-image-section .multi-images .title-image {
        flex: 1 1 15rem;
        max-width: 15rem;
    }
}

@media (max-width: 320px) {
    .multi-image-section .multi-images .title-image {
        flex: 1 1 13rem;
        max-width: 13rem;
    }
}


/* Image & Content Page Section */

.left-right {
    padding: 0;
    text-align: center;
    margin: 10rem 0;
}

    .left-right.full {
        background-color: #f7f7f7;
    }

    .left-right h4 {
        margin-bottom: 2rem;
    }

    .left-right .text {
        padding: 0 12rem;
        margin-bottom: 8rem;
        font-size: 1.5rem;
    }

    .left-right .left-right-grid {
        display: grid;
        grid-template-columns: 50% 1fr;
        text-align: left;
    }

        .left-right .left-right-grid > div:nth-child(1) {
            background-size: cover !important;
        }

        .left-right .left-right-grid > div:nth-child(2) {
            background-color: #f7f7f7;
            padding: 4.6rem 4.6rem 0 4.6rem;
        }

    .left-right.full .left-right-grid > div:nth-child(2) {
        padding-right: calc((100vw - 1200px) / 2);
    }

    .left-right .left-right-grid.reverse > div:nth-child(1) {
        background-color: #f7f7f7;
        padding: 4.6rem 4.6rem 0 4.6rem;
    }

    .left-right .left-right-grid.reverse > div:nth-child(2) {
        background-size: cover !important;
    }

    .left-right.full .left-right-grid.reverse > div:nth-child(1) {
        padding-left: calc((100vw - 1200px) / 2);
    }

    .left-right .left-right-grid h5 {
        font-size: 2.4rem;
        line-height: 3.2rem;
        margin: 0 0 1rem 0;
    }

    .left-right .phone-grid {
        display: grid;
        grid-template-columns: 2rem 1fr;
        align-items: center;
        font-family: 'Gotham Medium';
        font-size: 2.6rem;
        padding: 0 0 4rem 0;
        grid-gap: 1rem;
    }

    .left-right .left-right-grid .phone-grid img {
        max-width: 100%;
    }

    .left-right .left-right-grid.offset {
        display: grid;
        grid-template-columns: 1fr 45%;
        text-align: left;
    }

        .left-right .left-right-grid.offset > div:nth-child(2) {
            padding-bottom: 3rem;
        }

    .left-right .blue-box-grid {
        display: grid;
        grid-template-columns: 1fr 500px 45%;
        text-align: left;
        background-color: #fff;
    }

        .left-right .blue-box-grid > div:nth-child(2) {
            background-color: #005F9A;
            color: #fff;
            padding: 4rem 5rem;
        }

            .left-right .blue-box-grid > div:nth-child(2) h2 {
                margin: 0 0 1rem 0;
            }

            .left-right .blue-box-grid > div:nth-child(2) p {
                margin: 0;
            }

            .left-right .blue-box-grid > div:nth-child(2) img {
                width: 2rem;
            }

            .left-right .blue-box-grid > div:nth-child(2) .phone-grid {
                padding: 0;
                margin: 1rem 0;
            }

            .left-right .blue-box-grid > div:nth-child(2) .grey-button {
                margin: 1rem 0 0 0;
                display: inline-block;
                padding: 0.4rem 1.6rem;
                background-color: #f7f7f7;
                font-size: 1.3rem;
                text-transform: uppercase;
                font-family: "Gotham Medium";
            }

@media (max-width: 1300px) {
    .left-right.full .left-right-grid > div:nth-child(2) {
        padding-right: 4.6rem;
    }
}

@media (max-width: 1200px) {
    .left-right .left-right-grid.reverse > div:nth-child(1) {
        padding: 2rem 2rem 2rem 2rem !important;
    }
}

@media (max-width: 1023px) {
    .left-right .left-right-grid {
        grid-template-columns: 40% 1fr;
    }

    .left-right .left-right-grid {
        grid-template-columns: 60% 1fr;
    }

        .left-right .left-right-grid.offset {
            grid-template-columns: 1fr 55%;
        }

    .left-right .blue-box-grid {
        grid-template-columns: 0px 1fr 55%;
    }
}

@media (max-width: 767px) {
    .left-right .left-right-grid {
        grid-template-columns: 1fr;
    }

        .left-right .left-right-grid > div:nth-child(1) {
            min-height: 35rem;
        }

        .left-right .left-right-grid.reverse > div:nth-child(2) {
            min-height: 35rem;
        }

        .left-right .left-right-grid > div:nth-child(2) {
            padding: 2rem 2rem 0 2rem;
        }

        .left-right .left-right-grid.reverse > div:nth-child(1) {
            padding: 2rem 2rem 2rem 2rem !important;
        }

        .left-right .left-right-grid.offset {
            grid-template-columns: 1fr;
        }

    .left-right .blue-box-grid {
        grid-template-columns: 0px 1fr 0px;
    }

        .left-right .blue-box-grid > div:nth-child(2) {
            padding: 4rem 2rem;
        }
}

/* Partners Section */
.partners-section {
    background-color: #f7f7f7;
    margin-bottom: 10rem;
    padding: 10rem 0;
}

    .partners-section .partners-grid {
        display: grid;
        grid-template-columns: 40% 1fr;
    }

        .partners-section .partners-grid h1 {
            font-family: "Gotham Bold";
            font-size: 2.8rem;
            margin: 0 0;
            line-height: 1.36;
            font-weight: 400;
        }

            .partners-section .partners-grid h1 p {
                margin: 0 0 2rem 0;
            }

        .partners-section .partners-grid img {
            max-width: 100%;
        }

        .partners-section .partners-grid > div:nth-child(1) {
            padding-right: 8rem;
        }

        .partners-section .partners-grid > div:nth-child(2) {
            display: flex;
            flex-direction: row;
            container-widget-width: initial;
            container-widget-height: 100%;
            container-widget-flex-grow: 1;
            container-widget-align-self: stretch;
            justify-content: flex-start;
            gap: 2rem;
            flex-wrap: wrap;
        }

            .partners-section .partners-grid > div:nth-child(2) .partner-box {
                width: 21rem;
                height: 16rem;
                padding: 1.5rem 2rem;
                box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.10196078431372549);
                display: flex;
                align-items: center;
                background-color: #fff;
            }

@media (max-width: 768px) {
    .partners-section .partners-grid {
        grid-template-columns: 1fr;
        grid-gap: 2rem;
    }

        .partners-section .partners-grid > div:nth-child(1) {
            padding-right: 0;
        }

        .partners-section .partners-grid > div:nth-child(2) .partner-box {
            width: 15rem;
            height: 11rem;
        }
}

/* Text with Icon Boxes Section */
.text-with-icon-boxes {
    margin-bottom: 10rem;
}

    .text-with-icon-boxes .icon-box-container {
        background-color: #f7f7f7;
        padding-bottom: 0;
    }

        .text-with-icon-boxes .icon-box-container .icon-boxes {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            grid-gap: 1.5rem;
            flex-wrap: wrap;
        }

            .text-with-icon-boxes .icon-box-container .icon-boxes > div {
                width: 24rem;
                height: 34rem;
                background-color: #fff;
                padding: 3rem;
                box-shadow: 1px 1px 6px 0px #c9c9c9;
                border: solid 0.5px rgba(151, 151, 151, 0.5);
                margin-top: -5rem;
                text-align: center;
                margin-bottom: 7rem;
            }

                .text-with-icon-boxes .icon-box-container .icon-boxes > div img {
                    height: 6rem;
                }

                .text-with-icon-boxes .icon-box-container .icon-boxes > div hr {
                    border-color: rgba(151, 151, 151, 0.21);
                }

                .text-with-icon-boxes .icon-box-container .icon-boxes > div h3 {
                    font-size: 18px;
                    text-transform: none;
                    margin-bottom: 1.5rem;
                }

                .text-with-icon-boxes .icon-box-container .icon-boxes > div p {
                    text-align: left;
                }

/* Two Column With Image Section */

.two-col-image-section {
    margin-bottom: 10rem;
}

    .two-col-image-section .two-col-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 4rem;
    }
        .two-col-image-section .two-col-grid img {
            max-width: 100%;
        }

        .two-col-image-section .two-col-grid > div:nth-child(1) {
            justify-self: end;
        }

        .two-col-image-section .two-col-grid .text h5 {
            font-family: "Gotham Bold";
            font-size: 1.4rem;
            text-transform: uppercase;
            margin: 0;
        }

        .two-col-image-section .two-col-grid .text h1 {
            font-family: "Gotham Bold";
            font-size: 2.8rem;
            margin: 1rem 0 0 0;
            line-height: 1.36;
            font-weight: 400;
        }

            .two-col-image-section .two-col-grid .text h1 p {
                margin: 0;
            }
            .two-col-image-section .two-col-grid .text ul {
                margin-top: -1rem;
                padding-left: 2rem; 
            }

@media (max-width: 768px) {
    .two-col-image-section .two-col-grid {
        grid-template-columns: 50% 50%;
    }
        .two-col-image-section .two-col-grid > div:nth-child(1) {
            justify-self: start;
        }

}
@media (max-width: 767px) {
    .two-col-image-section .two-col-grid {
        grid-template-columns: 1fr;
    }
        .two-col-image-section .two-col-grid img {
            width: 100%;
        }
}


.two-col-image-section.new {
    padding-top: 10rem;   
}
.two-col-image-section.new .two-col-grid  {
    grid-template-columns: 1fr 50rem;
    grid-gap: 7rem;
}
    .two-col-image-section.new .two-col-grid.inverse {
        grid-template-columns: 50rem 1fr;
    }
    .two-col-image-section.new .two-col-grid.inverse div:nth-child(1) {
        order: 2;
    }
    .two-col-image-section.new.four-image div.two-image-grid {
        justify-self: initial;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: .5rem;
    }
    .two-col-image-section.new.four-image div.two-image-grid > div {
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: cover !important;
        background-position: center;
    }

@media (max-width: 1023px) {
    .two-col-image-section.new .two-col-grid {
        grid-template-columns: 1fr;
        grid-gap: 3rem;
    }
    .two-col-image-section.new .two-col-grid.inverse {
        grid-template-columns: 1fr;
        grid-gap: 3rem;
    }
}

.two-col-image-section.new.four-image .two-col-grid {
    grid-template-columns: 44rem 1fr;
    grid-gap: 12rem;
}
.two-col-image-section.new.four-image .four-image-grid {
    width: 100%;
    display: inline-block;
}
.two-col-image-section.new.four-image .four-image-grid img {
    max-width: 49%;
}
.two-col-image-section.new.four-image .text-two-col {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
}
@media (max-width: 1279px) {
    .two-col-image-section.new.four-image .two-col-grid {
        grid-template-columns: 44rem 1fr;
        grid-gap: 5rem;
    }
}
@media (max-width: 1024px) {
    .two-col-image-section.new.four-image .two-col-grid {
        grid-template-columns: 44rem 1fr;
        grid-gap: 3rem;
    }
}
@media (max-width: 1023px) {
    .two-col-image-section.new.four-image .two-col-grid {
        grid-template-columns: 30rem 1fr;
        grid-gap: 3rem;
    }
}
@media (max-width: 767px) {
    .two-col-image-section.new.four-image .two-col-grid {
        grid-template-columns: 1fr;
        grid-gap: 3rem;
    }
}
@media (max-width: 550px) {
    .two-col-image-section.new.four-image .text-two-col {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}


/* Quote Slider Section */

.quote-slider-section {
    background-color: #f7f7f7;
    padding: 4rem 0 10rem 0;
}

    .quote-slider-section .quote-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .quote-slider-section .quote-image .quote > img {
            width: 3.3rem !important;
            margin: 0 1.5rem;
        }

        .quote-slider-section .quote-image .portrait > img {
            width: 10rem !important;
            border-radius: 6rem;
        }

    .quote-slider-section .quote-text {
        text-align: center;
        padding: 0 8rem;
    }
        .quote-slider-section .quote-text h5 p {
            font-family: "Gotham Bold";
            font-size: 1.8rem;
            font-weight: 400;
        }
        .quote-slider-section .quote-text h6 {
            font-family: "Gotham Bold";
            font-size: 1.4rem;
            margin: 1rem 0 0 0;
            font-weight: 400;
        }



        .quote-slider-section .owl-nav .owl-next > span,
        .quote-slider-section .owl-nav .owl-prev > span {
            margin-top: -7px;
            display: block;
            padding: 6px 0;
            margin-left: 1px;
        }

    .quote-slider-section .owl-carousel {
        position: relative;
    }

        .quote-slider-section .owl-carousel .owl-nav .owl-prev {
            position: absolute;
            left: -5rem;
            top: calc(52%);
        }

        .quote-slider-section .owl-carousel .owl-nav .owl-next {
            position: absolute;
            right: -5rem;
            top: calc(52%);
        }

        .quote-slider-section .owl-carousel .owl-nav .owl-next,
        .quote-slider-section .owl-carousel .owl-nav .owl-prev {
            width: 3rem;
            font-size: 75px;
            color: #4b4b4b;
        }
            .quote-slider-section .owl-carousel .owl-nav .owl-next:hover,
            .quote-slider-section .owl-carousel .owl-nav .owl-prev:hover {
                background-color: #f7f7f7;
                color: #4b4b4b;
            }

            .quote-slider-section .owl-carousel .owl-nav .owl-next > span,
            .quote-slider-section .owl-carousel .owl-nav .owl-prev > span {
                margin-top: -7px;
                display: block;
                padding: 7px 0;
                margin-left: 2px;
            }

            .quote-slider-section .owl-carousel .owl-dots {
                margin-top: 2rem;
            }
                .quote-slider-section .owl-carousel .owl-dots .owl-dot span {
                    background: #fff;
                    border: 1px solid #797979;
                }
                .quote-slider-section .owl-carousel .owl-dots .owl-dot.active span,
                .quote-slider-section .owl-carousel .owl-dots .owl-dot:hover span {
                    background: #797979;
                    border: 1px solid #797979;
                }

@media (max-width: 1140px) {
    .quote-slider-section .owl-carousel .owl-nav .owl-prev {
        left: 2rem;
    }
    .quote-slider-section .owl-carousel .owl-nav .owl-next {
        right: 2rem;
    }
}
@media (max-width: 767px) {
    .quote-slider-section .quote-text {
        text-align: center;
        padding: 0 2rem;
    }
    .quote-slider-section .owl-carousel .owl-nav .owl-prev {
        left: -2rem;
    }

    .quote-slider-section .owl-carousel .owl-nav .owl-next {
        right: -2rem;
    }
}


.blue-rectangle-cta {
    background-color: #005F9A;
    color: #fff;
    text-align: center;
    padding: 6rem 0 10rem 0;
}
    .blue-rectangle-cta h2 p {
        font-size: 2.8rem;
        font-family: "Gotham Bold";
        line-height: 1.36;
        margin-bottom: 0;
        font-weight: 400;
    }
    .blue-rectangle-cta p {
        line-height: 1.5;
        margin-bottom: 3rem;
    }
    .blue-rectangle-cta a {
        color: #fff;
        border: 1px solid #fff;
        font-size: 1.3rem;
        text-transform: uppercase;
        padding: .8rem 3rem;
    }


/* Hero Slider Section
------------------------------------------------------------------------------*/
.hero-slide {
    height: 57.5rem;
    background-position: center center !important;
    background-size: cover !important;
    color: #fff;
    position: relative;
}
.hero-slide .captions {
    position: absolute;
    bottom: 0;
    text-align: center;
    background-color: #000;
    min-height: 15rem;
    padding: 2.5rem 0;
}
    .hero-slide .captions .wrap {
        width: 1280px;
        margin-left: calc((100vw - 1280px) / 2);
        margin-right: calc((100vw - 1280px) / 2);
    }
    .hero-slide .captions h1 {
        margin: 0
    }
    .hero-slide .captions h1 p {
        font-family: 'Gotham Medium';
        font-size: 4rem;
        font-weight: 500;
        line-height: 1.13;
        margin: 0
    }
        .hero-slide .captions h1.script p {
            font-family: 'Birthstone';
            font-size: 6.5rem;
            font-weight: 600;
            line-height: 1.13;
            margin: -1rem 0 0 0;
        }
    .hero-slide .captions h2 {
        margin: 0
    }
        .hero-slide .captions h2 p {
            font-family: 'Gotham Book';
            font-size: 3rem;
            margin: 1.5rem 0 0 0;
            font-weight: 500;
        }
        .hero-slide .captions h2.script p {
            font-family: 'Birthstone';
            font-size: 5.5rem;
            margin: .5rem 0 0 0;
            font-weight: 400;
        }
.slider-container .slick-dots {
    bottom: 185px;
}
    .slider-container .slick-dots li {
        width: 10px;
        margin: 0 2px;
    }
    .slider-container .slick-dots li button:before {
        font-size: 10px;
        color: #fff;
        opacity: 1;
    }
        .slider-container .slick-dots li.slick-active button:before {
            font-size: 10px;
            color: #d7282f;
        }

@media (max-width: 1279px) {
    .hero-slide .captions {
        width: 100vw;
    }
    .hero-slide .captions .wrap {
        margin: 0;
    }
}
@media (max-width: 1023px) {
    .hero-slide .captions h1 p {
        font-size: 3rem;
    }
        .hero-slide .captions h2 p {
            font-size: 4.5rem;
        }
}
@media (max-width: 550px) {
    .hero-slide .captions h1 p {
        font-size: 2.4rem;
    }

    .hero-slide .captions h2 p {
        font-size: 3.5rem;
    }
}

.color-box-section > .wrap {
    width: 80rem;
}
.color-box-section > .text-section .wrap {
    width: 80rem;
}
.color-box-section > .text-section {
    margin-bottom: 5rem;
}
    .color-box-section > .text-section .wrap h1 {
        padding-left: 0;
        padding-right: 0;
    }
.color-box-section > .text-section .wrap p {
    padding: 0 0;
}

.color-box-section .logo-boxes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 4rem;
    grid-row-gap: 3rem;
}
    .color-box-section .logo-boxes-grid > .color-box {
        border: 1px solid #ccc;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.17);
        border-radius: 5px;
        padding: 4rem 3rem;
        border-top: 7px solid #f4c55c;
    }
        .color-box-section .logo-boxes-grid > .color-box:nth-child(2) {
            border-top: 7px solid #07b4e4;
        }
        .color-box-section .logo-boxes-grid > .color-box:nth-child(3) {
            border-top: 7px solid #089d68;
        }
        .color-box-section .logo-boxes-grid > .color-box:nth-child(4) {
            border-top: 7px solid #855b93;
        }
        .color-box-section .logo-boxes-grid > .color-box:nth-child(6) {
            border-top: 7px solid #f4c55c;
        }
        .color-box-section .logo-boxes-grid > .color-box:nth-child(6) {
            border-top: 7px solid #07b4e4;
        }
        .color-box-section .logo-boxes-grid > .color-box:nth-child(7) {
            border-top: 7px solid #089d68;
        }
        .color-box-section .logo-boxes-grid > .color-box:nth-child(8) {
            border-top: 7px solid #855b93;
        }

        .color-box-section .logo-boxes-grid > .color-box h5 {
            font-family: 'Gotham Bold';
            margin: 0 0 1.5rem 0;
            font-size: 2.2rem;
            font-weight: 400;
        }
        .color-box-section .logo-boxes-grid > .color-box h6 {
            font-family: 'Gotham Medium';
            margin: 0 0 1.5rem 0;
            font-size: 1.8rem;
            font-weight: 500;
        }
        .color-box-section .logo-boxes-grid > .color-box p {
            margin: 0;
            font-size: 1.4rem;
        }
        .color-box-section .logo-boxes-grid > .color-box ul {
            margin: 0;
            padding: 0 0 0 1rem;
            font-size: 1.4rem;
            line-height: 1.79;
        }

@media (max-width: 1279px) {
    .color-box-section > .wrap {
        width: 80rem !important;
    }
    .color-box-section > .text-section .wrap {
        width: 80rem !important;
    }
}
@media (max-width: 1023px) {
    .color-box-section > .wrap {
        width: 100% !important;
    }

    .color-box-section > .text-section .wrap {
        width: 100% !important;
    }
}
@media (max-width: 767px) {
    .color-box-section .logo-boxes-grid {
        grid-template-columns: 1fr;
    }
}

.involvement {
    background-color: #f7f7f7;
    padding: 4.5rem 0;
}
    .involvement h5 {
        font-family: "Gotham Bold";
        font-size: 1.4rem;
        text-transform: uppercase;
        margin: 0 0;
        font-weight: 400;
    }
    .involvement h1 {
        font-family: "Gotham Bold";
        font-size: 2.8rem;
        margin: 0;
        padding: 1rem 0;
        line-height: 1.36;
        font-weight: 400;
    }
    .involvement p {
        margin: 0;
    }
    .involvement .involvement-grid {
        display: grid;
        grid-gap: 5rem;
        grid-template-columns: 1fr 53rem;
    }
    .involvement .involvement-grid div:nth-child(2) {
        text-align: center;
        width: 100%;
    }
        .involvement .involvement-grid .slidey {
            border: 8px solid #fff;
        }
        .involvement .involvement-grid div:nth-child(2) .logo-slide {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            flex-direction: row;            
            padding: 4rem
        }
            .involvement .involvement-grid div:nth-child(2) .logo-slide .logo-i {
                margin-bottom: 1rem;
            }
            .involvement .involvement-grid div:nth-child(2) .logo-slide img {
                max-width: 30rem;
            }
            .involvement .involvement-grid div:nth-child(2) .logo-slide p {
                font-size: 1.4rem;
                line-height: 1.64;
            }
                .involvement .involvement-grid div:nth-child(2) .logo-slide p a {
                    font-family: "Gotham Medium";
                    
                }

@media (max-width: 1023px) {
    .involvement .involvement-grid {
        grid-template-columns: 1fr;
    }
        .involvement .involvement-grid .slidey #logo-slider {
            width: calc(100vw - 6rem);
        }
}
