/* #region General */

body {
    max-width: 1920px;
    margin: 0 auto;
    font: 16px 'Geometria', Arial, Helvetica, sans-serif;
    color: #2f2f2f;
    line-height: 1.6;
}
 
/* #endregion */

/* #region Bootstrap overrides */

.container--half {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
}

.flex-row-reverse .container--half {
    margin-right: initial;
    margin-left: auto;
}

.container {
    max-width: 100%;
}

@media (min-width: 768px) {
    .container { max-width: 750px; }
    .container--half { max-width: 375px; }
}

@media (min-width: 992px) {
    .container { max-width: 970px; }
    .container--half { max-width: 485px; }
}

@media (min-width: 1200px) {
    .container { max-width: 1170px; }
    .container--half { max-width: 585px; }
}

/* #endregion */

/* #region helpers */

.border__light-gray { border-color: #e8e8e8 !important; }
.bg-grey { background-color: #f0f0f0; }
.bg-lightgrey { background-color: #e8e8e8; }
.bg-white { background-color: #ffffff; }
.bg-blue { background-color: #002957; }
.bg-teal { background-color: #58AEBF; }
.bg-black { background-color: #000000; }
.bg-white { background-color: #FFFFFF; }
.bg-transparent { background-color: transparent; }
.bg-orange { background-color: #d23f08; }
.orange { color: #d23f08; }
.blue { color: #002857; }
.white { color: #ffffff; }
.light-grey { color: #757575; }
.dark-grey { color: #2f2f2f; }
.darkblue { color: #002957; }
.border-blue { border-color: #002957 !important; }
.border-med-grey { border-color: #b7b5b5 !important; }
.font-weight-semi-bold { font-weight: 400; }
.font-weight-bold { font-weight: 500 !important; }
.font-weight-bolder { font-weight: 800; }
.font-size--xs { font-size: 13px; }
.font-size--sm { font-size: 14px; }
.font-size--default { font-size: 16px; }
.font-size--md { font-size: 20px; }
.font-size--lg { font-size: 28px; }
.font-size--xl { font-size: 36px; }
.line-height-1 { line-height: 1; }
.line-height-2 { line-height: 2; }
.text-transform-none { text-transform: none !important; }
.text-underline { text-decoration: underline; }
.text-decoration-none { text-decoration: none; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.50; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }
.pointer-none { pointer-events: none; }
.display-none { display: none !important; }
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important; /* added line */
    border: 0 !important;
}
.hidden {
    display: none !important;
}
.text-white-underline hr { background-color: #fff; } 
.p-6 { padding: 4.5rem; }
.px-6 { padding-left: 4.5rem; padding-right: 4.5rem; }
.py-6 { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }
.pt-6 { padding-top: 4.5rem; }
.pb-6 { padding-bottom: 4.5rem; }
.pl-6 { padding-left: 4.5rem; }
.pr-6 { padding-right: 4.5rem; }
.m-0-auto { margin: 0 auto;}

.background--cover {
    background-size: cover;
    background-repeat: no-repeat;
}
.background--center { background-position: center; }
.object-fit-cover { object-fit: cover; }
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
}

.darken-background {
    position: relative;
}

    .darken-background *:not(.contain) {
        position: relative;
    }

    .darken-background:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        z-index: 0;
    }

@media only screen and (min-width: 768px) {
    .w-md-75 { width: 75%; }
    .p-md-6 { padding: 4.5rem; }
    .px-md-6 { padding-left: 4.5rem !important; padding-right: 4.5rem !important; }
    .py-md-6 { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }
    .pt-md-6 { padding-top: 4.5rem; }
    .pb-md-6 { padding-bottom: 4.5rem; }
    .pl-md-6 { padding-left: 4.5rem; }
    .pr-md-6 { padding-right: 4.5rem; }
}

/* #endregion */

/* #region UI Toolkit */
.button { text-align:center; text-decoration: none;}
.button.orange { border-color: #d23f08; color: #ffffff;}
.button.bg-orange { 
    background-color: #d23f08; 
    color: #FFFFFF;
}
.button.bg-orange:hover {
    background-color: #FFFFFF;
    color: #d23f08;
}
.button.blue {
    border-color: #002857;
    background: #fff;
}

    .button:hover {
        color: #d23f08;
        text-decoration: none;
        background-color: #ffffff;
    }

    .button.blue:hover {
        background-color: #002857;
        color: #ffffff;
    }

.button.bg-orange:hover {
    background-color: #FFFFFF;
    color: #d23f08;
}

.btn--transparent-white {
    text-transform: uppercase;
    transition: all 0.15s;
    padding: 1rem 4rem;
    color: #fff;

}

.btn--transparent-white a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.btn--transparent-white:hover a {
    color: #2f2f2f;
}

.breadcrumb-link:hover {
    color: #23527c !important;
}

.breadcrumb-link + .divider {
    color: #ccc;
}

.breadcrumb-link i {
    font-family: FontAwesome;
    font-style: normal;
}

a.breadcrumb-link {
    text-decoration:none;
}

.horizontal-rule {
    border-top: 0px;
    border-bottom: 1px solid;
}

.vertical-line {
    border-left: 1px solid #FFFFFF;
    height: 75%;
    position: absolute;
    left: 50%;
    margin-left: 5px;
}

/* #endregion */

/* #region Main Navigation */
.navbar button:focus { background-color:transparent; }
.navbar-buttons--mobile .button.blue:not(.collapsed) + .button.orange {
    display: none;
}

.navbar-buttons--mobile .button.blue:not(.collapsed) {
    border: none;
}

.navbar-buttons--mobile .button.blue:not(.collapsed):hover {
    background-color: transparent;
    color: #002857;
}

.navbar-buttons--mobile .button {
    margin-right: 10px;
}

.navbar-buttons--mobile .button.blue.collapsed .fa.fa-times {
    display: none;
}

.navbar-buttons--mobile .button.blue.collapsed, .navbar-buttons--mobile .button.orange {
    margin-bottom: 8px;
}

.navbar-buttons--mobile > * {
    width: 130px;
    padding: 11px 15px;
}

.navbar-nav.children {
    background-color: #f0f0f0;
}

.navbar-nav.children .nav-item {
    border-top: 1px solid #d9d9d9;
}

.navbar-nav.children .nav-link {
    font-size: 11px;
    padding: 11px 5px 11px 40px;
}

.header .nav-link {
    color: #4c4d4f;
    font-size: 15px;
    text-transform: uppercase;
    padding: 10px 5px 10px 20px;
}

.main-nav .nav-item:first-child {
    margin-left: 0;
}
.secondary-nav .nav-link {
    font-size: 11px;
    padding: 16px 5px 16px 20px;
    color: #4c4d4f;
    border-bottom: 1px solid #d9d9d9;
}

.header-search .input-group {
    width: 200px;
    margin-bottom: 0 !important;
}

.header-search .form-control, .header-search .btn {
    font-size: 13px;
}

.header-search .form-control::-webkit-input-placeholder {
    color: #988b8b;
    opacity: 1;
}

.header-search .form-control::placeholder {
    color: #988b8b;
    opacity: 1;
}

.header-search .btn {
    color: #878787;
}

.header-search .form-control {
    line-height: 42px;
    height: 42px;
    font-size: 11px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .navbar-buttons--mobile {
        position: absolute;
        right: 0;
        top: -63px;
    }

    .main-nav .nav-item {
        margin: 0 1.25vw 10px;
    }

    .main-nav .nav-link.active {
        font-weight: 700;
    }

    .secondary-nav .nav-link {
        padding: 0 0 0 1em;
    }

    .navbar-nav.main-nav {
        flex-direction: row;
        justify-content: space-between;
    }


    /*menu animation*/
    nav .main-nav li {
        position: relative;
        -webkit-transition: color .25s;
        -o-transition: color .25s;
        transition: color .25s;
    }

    nav .main-nav li::before, nav .main-nav li::after, nav .main-nav .current_page::before, nav .main-nav .current_page::after, nav .main-nav .current_category1::before, nav .main-nav .current_category1::after {
        position: absolute;
        left: 50%;
        width: 0;
        height: 0;
        border: solid transparent;
        content: '';
        pointer-events: none;
    }

    nav .main-nav li::before, nav .main-nav li::after {
        visibility: hidden;
        -webkit-transform: scale3d(0, 1, 1);
        -ms-transform: scale3d(0, 1, 1);
        transform: scale3d(0, 1, 1);
        -webkit-transform-origin: left left;
        -ms-transform-origin: left left;
        transform-origin: left left;
        -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
        transition: -webkit-transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
        -o-transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
        transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
        transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s, -webkit-transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
    }

    nav .main-nav li.current_page::before, nav .main-nav li.current_page::after, nav .main-nav li.current_category1::before, nav .main-nav li.current_category1::after {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        -o-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    nav .main-nav li:hover::before, nav .main-nav li:hover::after {
        visibility: visible;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),visibility 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),visibility 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        -o-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),visibility 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1)visibility 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),visibility 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    nav .main-nav li::before {
        bottom: -19px;
        margin-left: -9px;
        border-width: 10px;
        border-top-color: #b5b5b5;
    }

    nav .main-nav li.current_page::before, nav .main-nav li.current_category1::before {
        margin-left: -9px;
        border-width: 10px;
        border-top-color: #d23f08;
    }

    nav .main-nav li::after, nav .main-nav li.current_page::after, nav .main-nav li.current_category1::after {
        bottom: -11px;
        margin-left: -5px;
        border-width: 6px;
        border-top-color: #FFF;
    }

    nav .main-nav a {
        position: relative;
        margin: 0;
        padding-right: 0;
        padding-left: 0;
        color: #b5b5b5;
        -webkit-transition: color 0.4s;
        -o-transition: color 0.4s;
        transition: color 0.4s;
    }

    nav .main-nav li.current_page a, nav .main-nav li.current_page a:hover, nav .main-nav li.current_page a:focus, nav .main-nav li.current_category1 a, nav .main-nav li.current_category1 a:hover, nav .main-nav li.current_category1 a:focus {
        color: #d23f08;
    }

    nav .main-nav li.current_page a::after, nav .main-nav li.current_page a::before, nav .main-nav li.current_category1 a::after, nav .main-nav li.current_category1 a::before {
        -webkit-transform: scale3d(1, 1, 1) translateX(-50%);
        transform: scale3d(1, 1, 1) translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    nav .main-nav li.current_page a::before, nav .main-nav li.current_category1 a::before {
        left: 50%;
        width: 100%;
        -webkit-transform: translateX(-50%) scale3d(1, 1, 1);
        transform: translateX(-50%) scale3d(1, 1, 1);
        -ms-transform: translateX(-50%);
        -webkit-transition-delay: 0;
        -o-transition-delay: 0;
        transition-delay: 0;
        background-color: #d23f08;
    }

    nav .main-nav a:hover, nav .main-nav a:focus {
        color: #b5b5b5;
        text-decoration: none;
    }

    nav .main-nav li:hover a::before, nav .main-nav li:focus a::before {
        left: 50%;
        width: 100%;
        -webkit-transform: translateX(-50%) scale3d(1, 1, 1);
        -ms-transform: translateX(-50%) scale3d(1, 1, 1);
        transform: translateX(-50%) scale3d(1, 1, 1);
        -webkit-transition-delay: .2s;
        -o-transition-delay: .2s;
        transition-delay: .2s;
    }

    nav .main-nav a::before, nav .main-nav a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        width: 0;
        max-width: 80px;
        height: 3px;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
        -webkit-transform: scale3d(1, 1, 1) translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: scale3d(1, 1, 1) translateX(-50%);
    }

    nav .main-nav a::before {
        background: #b5b5b5;
        -webkit-transition-delay: 0;
        -o-transition-delay: 0;
        transition-delay: 0;
    }

    nav .main-nav a::after {
        background: #d23f08;
    }
}

@media (min-width: 992px) {
    .navbar-buttons--mobile {
        position: static;
        right: auto;
        top: auto;
    }

    .secondary-nav .nav-link {
        font-size: 13px;
        border-bottom: none;
        padding: 0;
    }

    .navbar-expand-lg .secondary-nav {
        position: absolute;
        right: 0;
        top: -85px;
        height: 50px;
    }

    .navbar-expand-lg .secondary-nav .navbar-nav {
        margin-right: 20px;
    }

    .navbar-expand-lg .secondary-nav .nav-item {
        padding: 0 10px;
    }

    .navbar-expand-lg .secondary-nav .nav-link {
        padding-right: 1em;
        padding-left: 1em;
    }
}

@media (min-width: 1200px) {
    .main-nav .nav-item {
        margin: 0 30px 10px;
    }
}
/* #endregion */

/* #region Category Nav */

.fa-angle-down { transition: transform linear .2s; }
.collapsed .fa-angle-down { transform: rotate(-180deg); }
.category-nav .nav-item { border-bottom: 2px solid #d6d6d6; }

.category__nav-btn {
    font-size: 14px;
    font-weight: 700;
}

.category-nav .navbar-nav .nav-link {
    transition: background-color linear 0.15s;
    color: #2f2f2f;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 15px;
    padding: 26px;
}

.category-nav .nav-link:hover { background-color: #d6d6d6; }

@media only screen and (min-width: 992px) {
    .category-nav { background-color: #002957; }
    .category-nav .nav-item { border-bottom: none; }
    .category-nav .navbar-nav .nav-link {
        color: #ffffff;
        font-size: 14px;
        line-height: 1.6;
        padding: 16px 26px 20px;
    }
    .category-nav .nav-link.active-category { background-color: #d23f08; }

    .category-nav .nav-link:hover, .category-nav .nav-link.active-category:hover {
        background-color: #fff;
        color: #002857;
    }
}

/* #endregion */

/* #region GENERIC FORM STYLINGS */
.umbraco-forms-field > div, .umbraco-forms-form label {
    position: relative;
    max-width: none;
    font-weight: 500;
}

.umbraco-forms-field input {
    border-radius: 0px;
    -webkit-appearance: none;
}

input[type="radio"], input[type="checkbox"] {
    /*visibility: hidden;*/
    width: 0;
}

    input[type="radio"] + label::before {
        content: "";
        position: absolute;
        left: 0px;
        top: 3px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .2s ease-out;
        transition: all .3s ease-out;
        background-color: #ccc;
    }

    input[type="radio"]:checked + label::before {
        background-color: #002c54;
    }

    input[type="radio"]:checked + label::after {
        content: "";
        position: absolute;
        top: 7px;
        left: 4px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #fff;
        opacity: 0;
        transition: all .2x ease-out;
    }

    input[type="radio"]:checked + label::after, input[type="checkbox"]:checked + label:after {
        opacity: 1;
    }

    input[type="checkbox"] + label:before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        width: 13px;
        height: 13px;
        border-radius: 2px;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
        background-color: #ccc;
    }

    input[type="checkbox"] + label:after {
        content: "";
        position: absolute;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
        opacity: 0;
        top: 7px;
        left: 4px;
        width: 5px;
        height: 8px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
        -webkit-transform: rotate( 45deg );
        -ms-transform: rotate(45deg);
        transform: rotate( 45deg );
    }

.umbraco-forms-form .checkboxlist input.visually-hidden, .umbraco-forms-form .checkbox input.visually-hidden {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; /* added line */
    border: 0 !important;
}

input[type="checkbox"]:checked + label:before {
    background-color: #002c54;
}

.umbraco-forms-form .checkboxlist label, .umbraco-forms-form .radiobuttonlist label {
    padding-left: 20px;
}

.umbraco-forms-form .umbraco-forms-field input.text, .umbraco-forms-form .umbraco-forms-field textarea {
    max-width: none !important;
}

.umbraco-forms-form select {
    padding: 6px;
    display: block;
    width: 100%;
}

.umbraco-forms-navigation .col-md-12 {
    padding: 0 15px;
}

.umbraco-forms-navigation input {
    min-width: 200px;
    margin: 5px 0;
}

.umbraco-forms-field.date input {
    margin: 0.5em 0;
    border: 1px solid #bbb;
    padding: 5px;
    width: 100%;
}

/* #endregion */

/* #region FEATURE PANELS */

.feature-panel--1 .learnMore::after, .feature-panel--1 .learnMore::before { border-color: #ffffff; }
.feature-panel--1 .opacity-50, .feature-panel--1 .background--cover { transition: all .3s ease-out; }
.feature-panel--1.col-md-6 .feature-panel--1__content, .feature-panel--1 .learnMore {
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease-out;
}
.feature-panel--1.col-12 .learnMore { transform: translateY(-62px); }
.col-md-6 .feature-panel--1__content { height: 0; }


.feature-panel--2 a.col-md-7 div { height:100%;}
.feature-panel--2 .row:nth-child(odd) a.px-3 { padding-left:0px !important; }
.feature-panel--2 .row:nth-child(even) a.px-3 { padding-right:0px !important; }
.feature-panel--2 p { margin-bottom:0px; }
.feature-panel--2 .col-md-5 img, .feature-panel--3 .col-md-6 img { height:55px; }
.feature-panel--2 .copy div { max-width:275px; }
.feature-panel--2 .img { display:none; }

.feature-panel--2 > div.row { 
    min-height: 300px; 
}

.feature-panel--3 .copy div { max-width:350px; }
.feature-panel--3 .button { font-weight: 600; }
.feature-panel--3 .img { height:100%; }

.feature-panel--3 .h2 {
    font-weight: 400;
    line-height: 1.2;
}

.feature-panel--4 .img { height:250px; overflow:hidden; }
.feature-panel--4 .img img { height:100%; width:auto; }
.feature-panel--4 .position-relative .h2 {
    top: 50%;
    left: 50%;
    line-height: 1.2;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.feature-panel--4 .col-md-6 .copy {
    max-width: 66%;
}
.feature-panel--4 .copy a.copy__link { text-transform: uppercase; }
.feature-panel--4 .copy a.copy__link span { font-family: FontAwesome; }

.feature-panel--5 .px-3.flex-column { height:250px; }
.feature-panel--5 .bg-blue, .feature-panel--5 .bg-orange {
    width: 90%;
    max-width: 500px;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.feature-panel--5 .bg-blue:hover { background-color: #d23f08; text-decoration: none;}
.feature-panel--5 .bg-orange:hover { background-color: #ffffff; text-decoration: none;color: #d23f08;}
.feature-panel--5 .bg-orange:hover h2 { color: #d23f08;}
.feature-panel--5 .h2 i { font-family: FontAwesome; padding-left: 5px; }

.feature-panel--6 .button span {
    font-family: FontAwesome;
    font-size:14px;
}
.feature-panel--6 a.blue { font-weight:400; }
.feature-panel--6 a.blue:hover { text-decoration:none; }
.feature-panel--6 .img { height:160px; }

.feature-panel--7 a.img { height:250px; } 
.feature-panel--7 .button { font-weight:600; } 
.feature-panel--7 .h2 { font-weight:500; }
.feature-panel--7 img {
    height:100px; 
    top:0;
    bottom:0;
    left:0;
    right:0;
}

.feature-panel--8 .img img {height:55px;}
.feature-panel--8 .copy { padding-top:10px;}
.feature-panel--8 .h2 { font-weight:600; }

.feature-panel--9 .h2 { font-weight: 600; }
.feature-panel--9 .link { font-weight: 600; }
.feature-panel--9 .link a:hover { color: #d23f08; }

@media only screen and (min-width: 768px) {
    .feature-panel--3 .copy div { text-align:left; }
    .feature-panel--7 .text-center { text-align:left !important; }
    .feature-panel--8 .img.text-left {text-align:right !important;}
    .feature-panel--8 .copy { padding-top:0px !important;}
    .feature-panel--8 .img {padding:0px !important;}
}

@media only screen and (min-width: 992px) {
    .feature-panel--1:hover .feature-panel--1__content, .feature-panel--1:hover .learnMore{
        visibility: visible;
        opacity: 1;
    }
    .feature-panel--1.col-md-6:hover .feature-panel--1__content { height: 100px; }
    .feature-panel--1.col-12:hover .learnMore {
        opacity: 1;
        transform: translateY(0);
        display: inline-block;
    }
    .feature-panel--1:hover .opacity-50 { opacity: 0.75; }
    .feature-panel--1.col-md-6:hover .background--cover { transform: scale3d(1.1, 1.1, 1.1); }
}

/* #endregion */



/* #region LOGO WALL */

.logo-wall .intro-content { max-width:750px; }
.logo-wall .h2 { font-weight:400; }

.logo-wall--1 { max-width:700px; }
/*
.logo-wall .logo img { min-height: 100px;}*/

.logo-wall--2 .divider {
    width:102px; 
    border-bottom:1px solid #878787;
}
.logo-wall--2 .logo { height: 65px; }


.logo-wall--3 .logo { height: 50px; }
.logo-wall--3 .col-md-3.col-sm-6 .description { font-size: 18px; line-height:1.4; }

.logo-wall--4 { max-width: 860px; }
.logo-wall--rotator .glide__bullet {
    border-radius: 50%;
    border: 1px solid #212529;
    height: 12px;
    width: 12px;
    padding: 0;
    background: transparent;
}

.logo-wall--rotator .glide__bullet--active {
    background: #8f8f8f;
}

.logo-wall--5 .logo {
    height: 150px;
    width: 150px;
    border: 1px solid #DDDDDD;
    margin: 10px;
    min-width: 196px;
}

    .logo-wall--5 .logo span:after {
        content: "";
        position: absolute;
        width: 6px;
        height: 6px;
        top: 50%;
        right: 15px;
        border-top: 1px solid #d23f08;
        border-right: 1px solid #d23f08;
        -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }

    .logo-wall--5 .logo i {
        font-family: FontAwesome;
        font-style: normal;
        font-weight: bold;
    }
.logo-wall--5 .logo {
    color: #C4C4C4;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    justify-content: center;
}
    .logo-wall--5 .logo a {
        color: #C4C4C4;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    .logo-wall--5 .logo .arrow-container {
        position: absolute;
        bottom: 0px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .logo-wall--5 .logo a:hover {
        text-decoration: none;
        color: #d23f08;
        font-size: 20px;
    }
    .logo-wall--5 .logo:hover {
        border: 1px solid #686868;
        color: #d23f08;
        font-size: 20px;
    }

.logo-wall--rotator .col-6 {
    max-width: 46%;
}
.logo-wall--rotator .logo {
    height: 135px;
    width: 135px;
    border: 1px solid #DDDDDD;
    margin: 5px;
    min-width: 135px;

}

.logo-wall--rotator .logo-group {
    justify-content: center;
}

.logo-wall--rotator .logo span:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 50%;
    right: 15px;
    border-top: 1px solid #d23f08;
    border-right: 1px solid #d23f08;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}



.logo-wall--rotator .logo i {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: bold;
}

.logo-wall--rotator .logo {
    color: #C4C4C4;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .logo-wall--rotator .logo a {
        color: #C4C4C4;
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .logo-wall--rotator .logo .arrow-container {
        position: absolute;
        bottom: 0px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

.logo-wall--rotator .logo a:hover {
    text-decoration: none;
    color: #d23f08;
    font-size: 20px;
}

.logo-wall-rotator--5.logo-wall--rotator .logo:hover {
    border: 1px solid #686868;
    color: #d23f08;
    font-size: 20px;
}
    .logo-wall-rotator--5.logo-wall--rotator .logo:hover a {
        font-size: 20px;
    }

.logo-wall-rotator--5.logo-wall--rotator .logo a:hover .fas.fa-angle-double-right {
    color: #d23f08;
}



@media only screen and (max-width: 575px) {
    .logo-wall--2 .col-md-3.col-sm-6 { width:50%; }
    .logo-wall--2, .logo-wall { padding-left:0px; padding-right:0px; }
    .logo-wall .intro-content { padding-left:15px; padding-right:15px; }
    .logo-wall--1 .logo img { max-width:200px !important; }
}

@media only screen and (min-width: 768px) {
    .logo-wall--4.d-md-flex { display: flex !important; }
}

/* #endregion */
/* #region STATS & FACTS */
.statsFacts-panel h2 {
    font-weight: 500;
}

.statsFacts-panel3 h2 {
    font-size:24px; 
    font-weight:500;
}

.stats-facts--1 h3 {
    font-size: 60px;
    font-weight: 400;
}
.stats-facts--1 .icon { max-width:65px; }
.stats-facts--1 .divider, .stats-facts--2 .divider, .stats-facts--4 .divider {
    width: 102px;
    border-bottom: 1px solid #878787;
}

.stats-facts--2 h3, .stats-facts--4 h3 {
    font-size: 60px;
    font-weight: 400;
}

.container.py-5.statsFacts-panel {
    max-width: 1215px;
}


.stats-facts--2 small { font-size:9px; }

.stats-facts--3 h3 { font-weight:400; }
.stats-facts--3 .divider {
    width: 50%;
    border-bottom: 1px solid #eee;
}
.stats-facts--3 .description { font-size: 18px; }
.stats-facts--3 .description p { line-height:1.2; }


@media only screen and (min-width: 1080px) {
    .stats-facts--5-panel {
        min-width: 150px;
    }
}

@media only screen and (max-width: 768px) {
    .stats-facts--5-panel p {
        padding: 0 5px;
    }

    .stats-facts--5 .border-right {
        border: none !important;
    }

    .stats-facts--5 .row {
        flex-direction: column-reverse !important;
    }
    .stats-facts--5 .container {
        padding: 0px !important;
        margin: 0px !important;
    }
    .stats-facts--5 h5 {
        padding: 15px !important;
    }
}

/* #endregion */


/* #region FAQS */
.faq-panel h2 {  font-weight:500; }
.faq-panel .accordion_container {  width: 100%; }

.faq-panel .accordion_head {
    cursor: pointer;
    font-size: 14px;
    margin: 0 0 1px 0;
    padding: 18px 15px 0px 0;
    font-weight: bold;
    text-transform: uppercase;
    color: #d23f08;
    line-height: 25px;
}

.faq-panel .accordion_body {
    padding: 0 20px 0 0;
    margin: 0px;
}

.faq-panel .plusminus {
    float: right;
    color: #2f2f2f;
}

.faq-panel .faq-wrapper .question { width: 80%; }

.faq-panel .faq-wrapper {
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

    .faq-panel .faq-wrapper:last-child {
        border-bottom: none;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
/* #endregion */

/* #region Video Gallery */
.video-gallery h2 span { font-size:20px; }
.video-gallery h2.blue { font-weight:400; }
.video-gallery--1 .video, .video-gallery--2 .video {
    padding-bottom: 56.26%;
    height: 0;
}
.video-gallery--1 .video iframe, .video-gallery--2 .video iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.video-gallery--1 .title { font-size:18px; }
.video-gallery--1 .button span {
    font-family: FontAwesome;
    font-size:16px;
}
.video-gallery--1 .button {
    font-weight: 400;
    width: 265px;
}
.video-gallery--1 .button:hover { border-color:#d23f08; }


/* #endregion */

/* #region  Bootcamp Start */

.bootcamp img { width:auto; max-width:100%; }
.bootcamp .respond { background: #FAA637; }
.bootcamp .plan { background: #72C4D6; }
.bootcamp .office-hours { background: #E97043; }
.bootcamp .return-stronger { background: #74A641; }

.bootcamp .button {
    font-weight:400; 
    border:none; 
    max-width:265px;
}

.bootcamp img.bootcamp__play-button {
    position: absolute;
    width: 28px;
    height: auto;
    left: 0;
    right: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    top: 70px;
}

.bootcamp img.bootcamp__play-button--featured {
    position: absolute;
    width: 48px;
    height: auto;
    left: 0;
    right: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    top: 36%;
}

.bootcamp h2 {
    line-height: 25px;
    font-weight:500;
}

.bootcamp h3 {
    font-size: 18px;
    line-height: 23px;
}

.bootcamp h4 {
    font-size: 18px;
    color: #686868;
    line-height: 23px;
}

.bootcamp__todays-sessions__header {
    font-weight:500;
    line-height: 17px;
}

.bootcamp img.bootcamp__video-logo-overlay--main {
    width: 50px;
    top: 10px;
    left: 10px;
}

.bootcamp__todays-sessions__presenter-block, .bootcamp__featured-webinar__presenter-block {
    width: auto;
    padding-right: 20px;
}

    .bootcamp__todays-sessions__presenter-block:nth-child(2) .bootcamp__todays-sessions__image, .bootcamp__featured-webinar__presenter-block:nth-child(2) .bootcamp__featured-webinar__image {
        padding-left: 20px;
        border-left: 1px solid #979797;
    }

.bootcamp__container {
    max-width: 950px;
    padding: 38px 0 40px;
}

.bootcamp__todays-sessions__image-container--text, .bootcamp__featured-webinar__image-container--text {
    font-size: 12px;
    line-height: 15px;
    padding: 2px 10px;
}


.bootcamp__todays-sessions__image-container {
    padding-right: 20px;
    max-width: 408px;
}

.bootcamp__featured-webinar__image-container { max-width: 408px; }

.bootcamp__todays-sessions__presented-by, .bootcamp__featured-webinar__presented-by {
    line-height: 17px;
    color: #909090;
}

.bootcamp__todays-sessions__image, .bootcamp__featured-webinar__image {
    height: 50px;
    width: auto;
    margin: 10px 0;
}

    .bootcamp__todays-sessions__image img, .bootcamp__featured-webinar__image img { height: 50px; }

.bootcamp__featured-webinar__presenter-container { padding: 0 20px; }

.bootcamp__todays-sessions__sponsor-description p, .bootcamp__featured-webinar__sponsor-description p {
    font-size: 14px;
    line-height: 18px;
    padding-top: 10px;
}

.bootcamp__weekly-tiles__body-text p { line-height: 21px; }

.bootcamp__weekly-tiles {
    max-width: 300px;
    height: 320px;
    margin: 3px;
    border: 1px solid #e2e2e2;
}

.bootcamp__weekly-tiles__image-wrap {
    height: 90px;
    overflow: hidden;
}

    .bootcamp__weekly-tiles__image-wrap img {
        max-width: 100%;
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate( -50%, -50%);
    }

.bootcamp__colored-line--text {
    line-height: 15px;
    padding: 2px 10px;
}

.bootcamp__tile-sponsor-icon-wrap {
    width: 47px;
    height: 47px;
    padding: 3px;
    border: 1px solid #e2e2e2;
    background: #FFFFFF;
}

.bootcamp__tile-sponsor-icon-wrap img { flex: 1 0 100%; }

.bootcamp__tile-sponsor-icon-link {
    position: absolute;
    top: 18px;
    right: 10px;
}

.bootcamp__tile-sponsor-icon-link:nth-child(2) { top: 75px; }
.bootcamp__weekly-tiles__body-wrap { padding: 10px; }
.bootcamp__weekly-tiles__date { font-size: 11px; line-height: 13px; color: #878787; }

.bootcamp__weekly-tiles__link {
    bottom: 24px;
    left: 10px;
}

.bootcamp__weekly-tiles__body-text {
    max-height: 124px;
    overflow: hidden;
}

.bootcamp__weekly-tiles__body-text p { line-height: 21px; }

.bootcamp__accordion-toggle {
    border: none;
    background: none;
}

    .bootcamp__accordion-toggle h3 { margin: 0; }

    .bootcamp__accordion-toggle .fa {
        font-size: 1.4rem;
        margin-right: 0.5rem;
    }

.video-wrap {
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
    height: 0
}

    .video-wrap iframe, .video-wrap img {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0
    }


.featured-webinar--2 .webinar-wrapper { margin:0 auto; }
.featured-webinar--2 .webinar-video {
    max-width: 450px;
    margin: 0 0px 20px;
}

.featured-webinar--2 .webinar-content {
    max-width: 460px;
    margin: 0px;
}

.featured-webinar--2 .webinar-content--title {
    font-size: 18px;
    line-height: 24px;
}

.featured-webinar--2 .webinar-content--button {
    padding: 12px 0;
    height: 50px;
    width: 265px;
    text-align: center;
    background: #002757;
    -webkit-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    border: none;
    color: #fff;
    text-transform: uppercase
}
.featured-webinar--2.container {
    padding-left:0; 
    padding-right:0;
}
.webinar-content--button:hover { background-color: #d23f08; }
.webinar-content a { text-decoration: none; }
.webinar-content--button span { font-family: fontawesome; }

@media only screen and (min-width: 600px) {
    .featured-webinar--2 .webinar-video { margin: 0 20px 20px 0; }
    .featured-webinar--2 .webinar-content { margin: 0 20px; }

    }
@media only screen and (max-width: 479px) {
    .bootcamp__container { padding: 38px 10px 60px; }
    .bootcamp__todays-sessions__image-container { padding-right: 0px; }
    .bootcamp__presenters-wrapper { display: none; }
    .bootcamp__presenters-wrapper--mobile { padding: 20px 0; }
    .bootcamp__weekly-tiles { max-width: 300px; height: 320px; margin: 0 auto; margin-bottom: 5px; }
    .bootcamp__tile-sponsor-icon-link:nth-child(2) { top: 76px; }
    .bootcamp__tile-sponsor-icon-link { top: 20px; }
    .bootcamp__weekly-tiles__body-text p { line-height: 21px; }
    .bootcamp__play-button { top: 90px; }
    .bootcamp__featured-webinar__presenter-container--mobile { display: block; padding: 10px 0; }
    .bootcamp__featured-webinar__presenter-container { display: none; }
    }
@media only screen and (min-width: 480px) {
    .webinar__presenters-text-block hr { display: none; }
    .bootcamp__featured-webinar__presenter-container { display: block; }
}

@media only screen and (min-width: 480px) {
    .bootcamp__presenters-wrapper--mobile { display: none; }
}

.bootcamp__featured-webinar__presenter-container--mobile {
    display: none;
}
/* #endregion */

/* #region HIGHLIGHT PANELS */
.highlight-panels .intro-body { max-width: 850px; }
.highlight-panels--1 .panel { width:300px; }
.highlight-panels--1 .icon { width:90px; height:90px; }
.highlight-panels--1 .body p { margin-bottom:10px; }
.highlight-panels--1 .icon img { width:75px; }
.highlight-panels--1 .panel:nth-child(odd) .title, .highlight-panels--2 .panel:nth-child(odd) .title { background-color: #002957; }
.highlight-panels--1 .panel:nth-child(even) .title, .highlight-panels--2 .panel:nth-child(even) .title { background-color: #d23f08; }
.highlight-panels--1 .panel:nth-child(odd) .link { color: #002957; }
.highlight-panels--1 .panel:nth-child(even) .link { color: #d23f08; }
.highlight-panels--1 .title { font-weight:300; }
    .highlight-panels--1 .title:before, .highlight-panels--2 .title:before {
        content: "\25B6 \FE0E";
        position: absolute;
        left: -7px;
        top: 50%;
        transform: translate(0%,-50%);
    }
    .highlight-panels--1 .title:after, .highlight-panels--2 .title:after {
        content: "\25C0 \FE0E";
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translate(0%,-50%);
    }


.highlight-panels--2 .panel {
    width: 185px;
    min-height: 180px;
}

.highlight-panels--3 .line-height-1 p { line-height:1.5; }
.highlight-panels--3 .title { font-weight:500; }
.highlight-panels--3 .border-dark { border-color: transparent !important; }
.highlight-panels--3 .sidePanel p { margin-bottom:0px; }
.highlight-panels--3 .col-md-8.text-center { text-align:left; }
.highlight-panels--3 .row.container:nth-child(odd) .sidePanel { color: #002957; }
.highlight-panels--3 .row.container:nth-child(even) .sidePanel { color:#d23f08; }

.highlight-panel--4 .copy div { max-width: 350px;}
.highlight-panel--4 .button { font-weight: 600;}
.highlight-panel--4 .img { height: auto; min-height:439px;}
.highlight-panel--4 .h2 { font-weight: 400; line-height: 1.2; word-break: break-word;}

@media only screen and (min-width: 768px) {
    .highlight-panels--3 .border-dark { border-color:inherit !important; }
    .highlight-panels--3 .col-md-8.text-center { text-align:inherit !important; } 
}



@media only screen and (min-width: 479px) {
    .highlight-panel--4 .highlight-sub-panel--4 {
        min-height: 439px;
    }
}
@media only screen and (max-width: 479px) {
    .highlight-panels--3 .row:nth-child(even) {
        flex-direction: column-reverse;
    }
}
/* #endregion */


/* #region QUOTES PANEL */
.quotes-container .quotetext { line-height: 37px; }
.quotes-container .glide__arrows {
    top:45%; 
    width:90%; 
}
.quotes-container .quote {
    width:85%; 
    margin:0 auto; 
    margin-left:30px; 
}
.quotes-container .glide__arrow--left {
    left: -10px;
    font-size: 20px;
    color: #002857;
}
.quotes-container .glide__arrow--right {
    right: -40px;
    font-size: 20px;
    color: #002857;
}
    .quotes-container .glide__arrow--right::before, .quotes-container .glide__arrow--left::before{
        color: #002857;
    }
/* #endregion */

/* #region TWO COLUMN TEXT PANEL */
.twocolumn-text { padding: 40px 15px; }
    .twocolumn-text h2 {
        color: #878787;
        font-weight: 400;
    }

.twocolumn-text-left {
    padding: 15px;
}

.twocolumn-text-right {
    padding: 15px;
}

@media only screen and (min-width: 768px) {
    .twocolumn-text-left {
        padding-left: 150px;
    }

    .twocolumn-text-right {
        padding-right: 150px;
    }
}
/* #endregion */



/* #region TESTIMONIAL */
.testimonial-wrapper h4 { font-weight: 400; }
.testimonial-wrapper .quote-wrapper { max-width: 440px; }
.testimonial-wrapper .feature-wrapper { max-width: 400px; }
.testimonial-wrapper .quote { font-size: 24px; }
.testimonial-wrapper .attributor { font-size: 12px; }
.testimonial-wrapper .attributor p { margin-bottom: 8px; }
.testimonial-wrapper .right-block img { max-width: 146px;  }
.testimonial-wrapper .right-block {
    border-top: 1px solid #FFFFFF;
    margin-top: 50px;
}
.testimonial-wrapper .vertical-line { display:none; }
.testimonial-wrapper .horizontal-rule {
    margin-top: 20px;
    margin-bottom: 8px;
    width:200px;
}
@media only screen and (min-width: 768px) {
    .testimonial-wrapper .vertical-line { display: block; }
    .testimonial-wrapper .right-block {
        border: none;
        margin-top: 0px;
    }
}
/* #endregion */

/* #region NEWS/EVENTS MODULE */

.news-wrapper .date { font-weight: 500; }
.news-wrapper .h2 { font-size: 24px; }
.news-wrapper a:hover { text-decoration: none; }
.news-wrapper .button {
    max-width: 280px;
    font-weight:400;
}

/* #endregion */

/* #region Text Content Heading Left */

.textContent_headline-left .content p { margin-bottom:10px; }
.textContent_headline-left .title span { font-weight:500; }
.textContent_headline-left .title .text-center { border-right:none !important; }
@media only screen and (min-width:768px) {
    .textContent_headline-left .col-md-12.row { padding: 30px 0px; }
    .textContent_headline-left .text-center { padding: 0 30px 15px 30px; text-align:right !important;}
    .textContent_headline-left .title .text-center { border-right: 1px solid !important; } 
    .textContent_headline-left .content .text-center { text-align:left !important; }
}
@media only screen and (min-width:992px) {
    .textContent_headline-left .title { max-width: 275px; }
}
/* #endregion */


/* #region TWO COLUMN TEXT PANEL */


.twocolumn-text { padding: 40px 15px; }
.twocolumn-text h2 { 
    color: #878787; 
    font-weight: 400;
}

/* #endregion */


/* #region ADVANCED TEXT CONTENT */
.advanced-text-content { padding: 60px 0; }
/* #endregion */


/* #region ONE SHEET DOWNLOAD */
.one-sheet-download__wrapper {
    border: 1px solid #d23f08;
    padding: 30px;
}
.one-sheet-download__button {
    bottom: -25px;
    left: 0;
}
    .one-sheet-download__button a {
        background-color: #d23f08;
    }
        .one-sheet-download__button a.button:hover {
            background-color: #FFFFFF !important;
            color: #d23f08;
        }

.one-sheet-download__wrapper p { margin-bottom:10px; }
/* #endregion */



/* #region ADVANCED TEXT CONTENT */
.advanced-text-content { padding: 60px 0; }
/* #endregion */
/* #region GENERIC FORM STYLINGS */
.umbraco-forms-field > div, .umbraco-forms-form label {
    position: relative;
    max-width: none;
    font-weight:500;
}

.umbraco-forms-field input { 
    border-radius:0px; 
    -webkit-appearance:none;
}

input[type="radio"], input[type="checkbox"] {
    /*visibility: hidden;*/
    width: 0;
}
    input[type="radio"] + label::before {
        content: "";
        position: absolute;
        left: 0px;
        top: 3px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .2s ease-out;
        transition: all .3s ease-out;
        background-color: #ccc;
    }
    input[type="radio"]:checked + label::before { background-color: #002c54; }
    input[type="radio"]:checked + label::after {
        content: "";
        position: absolute;
        top: 7px;
        left: 4px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #fff;
        opacity: 0;
        transition: all .2x ease-out;
    }
    input[type="radio"]:checked + label::after, input[type="checkbox"]:checked + label:after { opacity: 1; }
    input[type="checkbox"] + label:before {
        content: "";
        position: absolute;
        left: 0;
        top:6px;
        width: 13px;
        height: 13px;
        border-radius: 2px;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
        background-color: #ccc;
    }
    input[type="checkbox"] + label:after {
        content: "";
        position: absolute;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
        opacity: 0;
        top: 7px;
        left: 4px;
        width: 5px;
        height: 8px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
        -webkit-transform: rotate( 45deg );
        -ms-transform: rotate(45deg);
        transform: rotate( 45deg );
    }
.umbraco-forms-form .checkboxlist input.visually-hidden, .umbraco-forms-form .checkbox input.visually-hidden {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; /* added line */
    border: 0 !important;
}
input[type="checkbox"]:checked + label:before { background-color: #002c54; }
.umbraco-forms-form .checkboxlist label, .umbraco-forms-form .radiobuttonlist label { padding-left: 20px; }
.umbraco-forms-form .umbraco-forms-field input.text, .umbraco-forms-form .umbraco-forms-field textarea { max-width: none !important; }
.umbraco-forms-form select { padding: 6px; }
.umbraco-forms-navigation .col-md-12 { padding:0;}
.umbraco-forms-navigation .col-md-12 { padding:0 15px;}
.umbraco-forms-navigation input { 
    min-width:200px;
    margin:5px 0;
}

.umbraco-forms-field.date input {
    margin: 0.5em 0;
    border: 1px solid #bbb;
    padding: 5px;
    width:100%;
}

/* #endregion */

/* #region PROGRESSIVE FORM */

.form-page-indicators {
    display: flex;
    justify-content: center;
    padding: 24px 14px 16px 0;
}

.form-page-indicator {
    height: 14px;
    width: 14px;
    border: 2px solid #878787;
    border-radius: 50%;
    margin: 0 1rem;
}

    .form-page-indicator.active {
        background: #002857;
        border: 1px solid #002857;
    }

.progressive-form-wrapper {
    overflow: hidden;
    margin-bottom: 4.5rem;
}

    .progressive-form-wrapper .form-label-group {
        position: relative;
        width: 25rem;
        margin: 0 auto;
        margin-bottom: 1rem;
    }
    .progressive-form-wrapper .umbraco-forms-field > div {
        width: 100%;
        margin: 0 auto;
        padding-top: 2px;
    }
    .progressive-form-wrapper .umbraco-forms-container.col-md-6 .form-label-group, .progressive-form-wrapper .umbraco-forms-container.col-md-6  .umbraco-forms-field > div {
        width: 100%;
    }

    .progressive-form-wrapper .checkboxlist {
        text-align: left;
        max-width: 50rem;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
    }

        .progressive-form-wrapper .checkboxlist .custom-checkbox {
            flex: 0 0 100%;
            padding-left: 8rem;
        }

    .progressive-form-wrapper .custom-control-label::after, .progressive-form-wrapper .custom-control-label::before {
        left: -3rem;
    }

    .progressive-form-wrapper .custom-control-label::before {
        background: transparent;
        border: 1px solid #fcb447;
    }

    .progressive-form-wrapper .umbraco-forms-page {
        transform: translateY(0) scale(1);
        opacity: 1;
        transition: all 0.15s ease-in-out;
        margin: 0 auto;
    }

    .progressive-form-wrapper .umbracoForms-Indicator, .progressive-form-wrapper .field-validation-error {
        display: block;
        color: #fd7d72;
    }

    .progressive-form-wrapper .slide-out {
        transform: translateX(-100rem) scale(0.7);
        opacity: 0;
    }

    .progressive-form-wrapper .stage {
        transform: translateX(100rem) scale(0.7);
        opacity: 0;
    }

.form-group > .umbraco-forms-label {
    font-size: 1.1rem;
}

.form-group > .umbraco-forms-label, form-group > label {
    margin-bottom: 0;
}

input.datepicker, input.timepicker {
    border-right: none;
}

.umbraco-forms-submitmessage {
    display: block;
    text-align: center;
}

@media only screen and (min-width: 480px) {
    .progressive-form-wrapper .umbraco-forms-field > div { width: 25em; }
}

/* #endregion */


/* #region ONE SHEET DOWNLOAD */
.one-sheet-download__wrapper {
    border:1px solid #d23f08;
}
.one-sheet-download__button {
    bottom: -25px;
    left: 0;
}
    .one-sheet-download__button a {
        background-color: #d23f08;
    }
        .one-sheet-download__button a.button:hover {
            background-color: #FFFFFF !important;
            color: #d23f08;
        }
.one-sheet-download__wrapper { padding: 30px; }
.one-sheet-download__wrapper p { margin-bottom:10px; }
/* #endregion */



/* #region TIMELINE */
.timeline-wrapper .timeline {
    background-color: #e8e8e8;
    height: 580px;
    overflow: hidden;
    background-repeat:no-repeat;
}

    .timeline-wrapper .timeline .textcolumn {
        background-color: #e8e8e8;
        height: 580px;
        padding-top: 200px;
    }

    .timeline-wrapper .timeline .dates {
        height: 600px;
        overflow: hidden;
        float: left;
    }

        .timeline-wrapper .timeline .dates li {
            list-style: none;
            width: 100%;
            height: 100px;
            line-height: 100px;
            font-size: 24px;
            padding-left: 10px;
        }
            .timeline-wrapper .timeline .dates li a {
                color: #FFFFFF;
                font-size: 16px;
                -webkit-transition: all .3s ease-out;
                -o-transition: all .3s ease-out;
                transition: all .3s ease-out;
            }
        .timeline-wrapper .timeline .dates a {
            line-height: 38px;
            padding-bottom: 10px;
        }
.timeline-wrapper .timeline .dates a:hover { color:#FFFFFF; }
.timeline-wrapper .timeline .dates a:hover, .timeline-wrapper .timeline .dates a:active { text-decoration: none; }

        .timeline-wrapper .timeline .dates .selected {
            font-size: 28px;
            margin-left: -7px;
        }
/* #endregion */


/* #region NEWS/EVENTS MODULE */

.news-wrapper .date { font-weight: 500; }
.news-wrapper .h2 { font-size: 24px; }
.news-wrapper a:hover { text-decoration: none; }
.news-wrapper .button {
    max-width: 280px;
    font-weight:400;
}

/* #endregion */


/* #region FEATURED EVENTS */

.events-wrapper .h2 { font-size: 24px; }
.events-wrapper .button {
    max-width: 280px;
    font-weight: 400;
}
.events-wrapper .calendar, .events-wrapper .calendar {
    height: 72px;
    top: 5px;
}
    .events-wrapper .calendar span {
        font-size: 72px;
        font-family: FontAwesome;
        top: -24px;
        left: 0;
        right: 0;
        line-height: 72px;
    }

.events-wrapper .date {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}
.events-wrapper .link span { padding-left: 10px; }
.events-wrapper .link:hover { text-decoration:none; }
.events-wrapper .time {
    font-size: 14px;
    line-height: 19px;
}
.featured-events--1 .title { font-weight: 400; }

@media only screen and (min-width: 768px) {
    .featured-events--2 .col-md-3 {
        border-right: 1px solid #DDDDDD;
        max-width: 220px;
        max-height: 150px;
    }
}
/* #endregion */

.timeline-wrapper .timeline .issues {
    height: 600px;
    overflow: hidden;
    float: left;
}

    .timeline-wrapper .timeline .issues li {
        max-width: 300px;
        height: 500px;
        list-style: none;
        text-align: left;
    }

.timeline-wrapper .timeline .issues li.selected .fa-circle { font-size: 30px; }

        .timeline-wrapper .timeline .issues li p {
            font-size: 14px;
            font-weight: normal;
            line-height: 22px;
        }

.timeline-wrapper .timeline .next, .timeline-wrapper .timeline .prev {
    left: 52px;
    font-size: 23px;
    font-family: 'Geometria', Arial, Helvetica, sans-serif;
}

.timeline-wrapper .timeline .next { bottom: 140px; }
.timeline-wrapper .timeline .prev { top: 130px; }
.timeline-wrapper .timeline .next.disabled, .timeline-wrapper .timeline .prev.disabled { opacity: 0.2; }

.timeline-wrapper .dottedline {
    border-left: 1px dotted #FFFFFF;
    height: 580px;
    left: 31px;
}

.timeline-wrapper .timeline .textcolumn .logo {
    right: 0;
    opacity: 0.5;
}

.timeline-wrapper .timeline .textcolumn .historyTitle {
    top: 50px;
    font-size: 26px;
    left: 52px;
}
.timeline-wrapper .timeline .hiddentitle {display:none; font-weight:500;}	
@media only screen and (min-width: 1500px) {
    .timeline-wrapper .timeline {background-size:45%;}
}
@media only screen and (min-width: 1199px) {
    .timeline-wrapper .timeline .dates .selected {font-size:26px;}
    .timeline-wrapper #quotes, .timeline-wrapper #videos {max-width: 920px;margin-left: auto;margin-right: auto;}
    .timeline-wrapper .next-button {right: -10px;}
    .timeline-wrapper .prev-button {left: -10px;}	
}
@media only screen and (max-width: 992px) {
    .timeline-wrapper .timeline .dates .selected {font-size: 19px;margin-left: -3px;}	
    .timeline-wrapper .timeline .textcolumn .logo {display:none;}	
}
@media only screen and (max-width: 767px) {
  .timeline-wrapper .timeline .datecolumn, .timeline-wrapper .timeline .next,
  .timeline-wrapper .timeline .prev, .timeline-wrapper #orangeBackgroundContent .middle {display:none !important;}
  .timeline-wrapper .timeline .container { max-width:100%; }
  .timeline-wrapper .timeline .hiddentitle {display:block;}	
  .timeline-wrapper .timeline, .timeline-wrapper .timeline .textcolumn {height: auto;overflow: initial;}
  .timeline-wrapper .timeline .textcolumn {padding-top: 100px;width: 100%; max-width:100%; flex: 0 0 100%;}
  .timeline-wrapper .timeline .issues {height:auto !important;}
  .timeline-wrapper .timeline .issues li {max-width: auto;height: auto;padding-bottom: 40px;}
  .timeline-wrapper .timeline .issues li {opacity:1 !important;}
}

/* #endregion */

/* #region FEATURED EVENTS */

.events-wrapper .h2 { font-size: 24px; }
.events-wrapper .button {
    max-width: 280px;
    font-weight: 400;
}
.events-wrapper .calendar, .events-wrapper .calendar {
    height: 72px;
    top: 5px;
}
    .events-wrapper .calendar span {
        font-size: 72px;
        font-family: FontAwesome;
        top: -24px;
        left: 0;
        right: 0;
        line-height: 72px;
    }

.events-wrapper .date {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}
.events-wrapper .link span, .news-wrapper .link span {
    padding-left: 10px;
}
.events-wrapper .link:hover { text-decoration:none; }
.events-wrapper .time {
    font-size: 14px;
    line-height: 19px;
}
.featured-events--1 .title { font-weight: 400; }

@media only screen and (min-width: 768px) {
    .featured-events--2 .col-md-3, .events-index--wrapper .col-md-3 {
        border-right: 1px solid #DDDDDD;
        max-width: 220px;
        max-height: 150px;
    }
}
/* #endregion */

/* #region NEWS/EVENTS MODULE */

.news-wrapper .date {
    font-weight: 500;
}

.news-wrapper .h2 {
    font-size: 24px;
}

.news-wrapper a:hover {
    text-decoration: none;
}

.news-wrapper .button {
    max-width: 280px;
    font-weight: 400;
}

.cselect select {
    appearance: none
}

.cselect::after {
    content: "\f107";
    font-family: FontAwesome;
}

.cselect {
    position: relative
}

    .cselect::after {
        position: absolute;
        top: 3px;
        right: 15px;
        font-size: 24px;
        pointer-events: none;
    }

.datepicker-select-wrapper::after {
    content: "\f107";
    font-family: FontAwesome;
}

.datepicker-select-wrapper::after {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 24px;
    pointer-events: none;
}

.news__filter-section--wrapper-dates span.calendar {
    position: absolute;
    background-color: #E2E2E2;
    height: 44px;
    width: 44px;
    top: 1px;
    font-family: FontAwesome;
    margin: 0;
    text-align: center;
    line-height: 40px;
    pointer-events: none;
    display: none;
}

span.calendar:first-of-type {
    left: 128px;
}

span.calendar:last-of-type {
    right: 1px;
}

.news__datepicker {
    padding-left: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius:0px; 
}

    .news__datepicker input:after {
        width: 24px;
        height: 24px;
        background-color: grey;
    }

.news-index .h1 span, .events-index .h1 span {
    color: #d23f08;
}

.news__filter-section--wrapper {
    max-width: 800px;
    border-bottom: 1px solid #878787;
    border-top: 1px solid #878787;
}

.news__filter-section--wrapper-dates input.news__datepicker {
    width: 110px !important;
    border: 1px solid #878787 !important;
    height: 46px !important;
}

.news__filter-section--wrapper span {
    margin-left: 5px;
    margin-right: 5px;
}

.news__filter-section--wrapper-dates .datepicker-controls .select-month input {
    width: 80px;
}

.news__filter-section--wrapper-dates .datepicker-modal {
    height: auto;
    width: 100%;
    max-width: 352px;
    background-color: transparent;
    overflow: visible;
    margin: 0;
    position: absolute;
}

.news__filter-section--wrapper-dates .modal, .news__filter-section--wrapper-dates .modal-content {
    border-radius: 0px;
}

.news__filter-section--wrapper-dates .modal {
    top: 48px !important;
}

.news__filter-section--wrapper-dates .datepicker-day-button {
    width: 40px;
    font-size:14px;
}

.news__filter-section--wrapper-dates .dropdown-content li > a, .dropdown-content li > span {
    color: #002857 !important;
}

.news__filter-section--wrapper-dates {
    position: relative;
    margin-bottom: 18px;
    margin-left: 20px;
}

    .news__filter-section--wrapper-dates .datepicker-modal {
        left: -15px;
    }

.news__filter-section--wrapper [type="radio"]:not(:checked), .news__filter-section--wrapper [type="radio"]:checked {
    opacity: 0;
    pointer-events: none;
}

.news__option--wrap label {
    color: transparent;
    width: 0px;
    top: -7px;
}

.news__option--wrap input[type="radio"] + label::before {
    top: 0px;
    bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
    border: 2px solid #000000;
    background-color: transparent;
}

.news__option--wrap input[type="radio"] + label::after {
    top: 0px;
    bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
    left: 2px;
    width: 10px;
    height: 10px;
    background-color: #000000;
    border: 2px solid #FFFFFF;
}

#newsRangeDropdownForm {
    padding-left: 20px;
    max-width: 265px;
    margin-bottom: 20px;
}

    #newsRangeDropdownForm #selectDateRange, #newsRangeDropdownForm #selectDateRange.valid {
        border: 1px solid #878787 !important;
        border-radius: 0px;
        width: 225px !important;
        font-size: 14px;
        height: 46px;
        font-family: 'Geometria', Arial, sans-serif;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

.events-index--wrapper .calendar span {
    font-size: 72px;
    font-family: FontAwesome;
    top: -24px;
    left: 0;
    right: 0;
    line-height: 72px;
}

.events-index--wrapper .date {
    font-size: 18px;
}

body.news-index {
    overflow: visible !important;
}

.events-index .h1, .news-index .h1, .news-events-index .h1, .media-center .h1 {
    font-size: 40px;
    line-height: 1.2;
}

    .events-index .h1 span, .news-index .h1 span, .news-events-index .h1 span, .media-center .h1 span {
        font-size: 20px;
    }


.news-events-index main {
    padding: 60px 0 0 0;
}

.events-index main, .news-index main {
    padding: 60px 0 120px;
}

.news-events-index .h1 span, .media-center .h1 span {
    color: #d23f08;
}

.events-filter--wrapper {
    width: 100%;
    max-width: 826px;
    margin: 0 auto;
}

.news-filter--wrapper {
    width: 100%;
    max-width: 826px;
    margin: 0;
    padding-left: 0px;
}

    .events-filter--wrapper .row, .news-filter--wrapper .row {
        padding-bottom: 40px;
    }

    .events-filter--wrapper .checkbox-wrap input[type=checkbox], .news-filter--wrapper .checkbox-wrap input[type=checkbox] {
        display: none;
    }

        .events-filter--wrapper .checkbox-wrap input[type=checkbox] + label:before, .news-filter--wrapper .checkbox-wrap input[type=checkbox] + label:before {
            font-family: 'FontAwesome';
            display: inline-block;
            border: 1px solid #9B9B9B;
            width: 17px;
            height: 17px;
            left: 20px;
            top: 5px;
            line-height: 1;
            font-size: 12px;
            color: #9B9B9B;
            text-align: center;
            padding: 0 1.5px;
            border-radius: 0;
            transition: none;
            -webkit-transition: none;
            -o-transition: none;
            letter-spacing: 10px;
            background-color: transparent;
        }

        .events-filter--wrapper .checkbox-wrap input[type=checkbox]:checked + label:before, .news-filter--wrapper .checkbox-wrap input[type=checkbox]:checked + label:before {
            content: "\f00c";
            letter-spacing: 5px;
            background-color: transparent;
            line-height: 14px;
        }

        .events-filter--wrapper .checkbox-wrap input[type=checkbox]:checked + label:after, .news-filter--wrapper .checkbox-wrap input[type=checkbox]:checked + label:after { border: none !important; }
        
        .events-filter--wrapper .checkbox-wrap input[type=checkbox] + label:after, .news-filter--wrapper .checkbox-wrap input[type=checkbox] + label:after {
            border: none !important;
            transition: none;
            -webkit-transition: none;
            -o-transition: none;
        }

    .events-filter--wrapper .checkbox-wrap label, .news-filter--wrapper .checkbox-wrap label {
        padding-top: 2px;
        padding-left: 34px;
        color: #9B9B9B;
        font-weight: 600;
        line-height: 16px;
        font-size: 14px;
    }

.events-filtered--container a, .news-filtered--container a { max-width:280px; }
.events-filtered--container span, .news-filtered--container span { text-transform: capitalize; }

.comma:not(:first-child) { margin-left: -.3em; }
.comma:first-child:empty ~ .comma:not(:empty) { margin-left: 0; }
    .comma:first-child:empty ~ .comma:not(:empty) ~ .comma:not(:empty) { margin-left: -.3em; }
.comma:empty { display: none; }
.comma:not(:first-child):before { content: ", "; }
.comma:empty + .comma:not(:empty):before { content: ""; }
.comma:not(:empty) ~ .comma:empty + .comma:not(:empty):before { content: ", "; }
.comma:nth-child(n+3):last-child::before {
    margin-left: 0;
    content: ", and ";
    text-transform: lowercase;
}
.comma:nth-child(2):last-child::before {
    margin-left: 6px;
    content: " and ";
    text-transform: lowercase;
}

@media only screen and (min-width: 360px) {
    span .calendar:first-of-type { left: 128px; }
    .news__datepicker { padding-left: 15px; }
    .news__filter-section--wrapper-dates { margin-left: 40px; }
    #newsRangeDropdownForm { padding-left: 40px; }
    .news__filter-section--wrapper-dates input.news__datepicker { width: 120px !important; }
}
@media only screen and (min-width: 460px) {
    .news__filter-section--wrapper-dates span.calendar { display:block; }
    .news__filter-section--wrapper-dates .datepicker-day-button { width: 44px; }
    .news__filter-section--wrapper-dates input.news__datepicker { width: 173px !important; }
    .news__filter-section--wrapper span {
        margin-left: 15px;
        margin-right: 10px;
    }
}

/* #endregion */

/* #region INDUSTRIES - PROGRAMS */

.industries .umb-block-list .feature-panel--8 .col-md-2.px-3.text-left img {
    max-width: 90px;
}

.contactFormFlex { padding: 20px 10px; max-width: 450px; margin: 25px 0px 25px 20%; background-color: #002d53; color: #fff; text-align: center; font-size: 14px;}
.contactFormFlex .umbraco-forms-field { color: black;} 
.contactFormFlex .umbraco-forms-label { display: none;} 
.contactFormFlex .umbraco-forms-form input {    line-height: 2.1;} 
.contactFormFlex .umbraco-forms-form input[type=submit] { font-size: 14px; text-transform: uppercase; background-color: #d23f08; width: 40%; color: #fff; padding: 19px;}
.contactFormFlex .umbraco-forms-form input[type=text] { border: 1px solid #d3d3d3;}
.contactFormFlex .umbraco-forms-form .field-validation-error {    color: #d23f08;}
.contactFormFlex .umbraco-forms-caption { font-size: 1.75rem; }
.contactFormFlex .titleanddescription h2 { font-size: 1.25rem; color: #fff; }
.contactFormFlex .row > .col-6:nth-child(even) { padding-left: 4px; }
.contactFormFlex .row > .col-6:nth-child(odd) { padding-right: 4px; }
    .contactFormFlex select {
        appearance: none;
        -webkit-appearance: none;
        color: black;
        font-size: 14px;
        border-radius: 0;
        border-style: inset;
        background-color: #ffffff;
        background-repeat: no-repeat;
        background-size: 12px;
        background-position: 95% 50%;
        background-image: url("data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJjaGV2cm9uLWRvd24iIGNsYXNzPSJzdmctaW5saW5lLS1mYSBmYS1jaGV2cm9uLWRvd24gZmEtdy0xNCIgcm9sZT0iaW1nIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0yMDcuMDI5IDM4MS40NzZMMTIuNjg2IDE4Ny4xMzJjLTkuMzczLTkuMzczLTkuMzczLTI0LjU2OSAwLTMzLjk0MWwyMi42NjctMjIuNjY3YzkuMzU3LTkuMzU3IDI0LjUyMi05LjM3NSAzMy45MDEtLjA0TDIyNCAyODQuNTA1bDE1NC43NDUtMTU0LjAyMWM5LjM3OS05LjMzNSAyNC41NDQtOS4zMTcgMzMuOTAxLjA0bDIyLjY2NyAyMi42NjdjOS4zNzMgOS4zNzMgOS4zNzMgMjQuNTY5IDAgMzMuOTQxTDI0MC45NzEgMzgxLjQ3NmMtOS4zNzMgOS4zNzItMjQuNTY5IDkuMzcyLTMzLjk0MiAweiI+PC9wYXRoPjwvc3ZnPg==");
        border: 1px solid #d3d3d3;
        height: 33px;
    }
@media only screen and (max-width: 575px) {
    .contactFormFlex {
        margin: 25px auto;
    }

}


/* #endregion */


/* #region INDUSTRIES FINANCIAL - TALENT */


@media only screen and (max-width: 575px) {
    .twocolumn-text .flex-container-highlights-fact-item-center {
        display: none;
    }
}


/* #endregion */


/* #region INDUSTRIES FINANCIAL - HOMEPAGE LOGOWALL */


.logo-wall-Apple, .logo-wall-American-Express {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
    padding: 0;
}


/* #endregion */

/* #region EB-5 Page */

.eb5-page .h2 {
    padding-top: 60px;
    padding-bottom: 20px;
    color: #002857;
}

.eb5-page .twocolumn-text {
    padding-top: 10px;
    padding-bottom: 60px;
}

.eb5-page .eb5-county-row label {
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 22px;
    margin-top: 10px;
}

.eb5-page .cselect {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 244px;
    height: 34px;
}

.eb5-page select.eb5-county-list {
    width: 100%;
    max-width: 244px;
    border: 1px solid #D3D3D3;
    height: 34px;
    margin-bottom: 10px;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 10px;
    background-color: white;
}

.eb5-page .cselect:after {
    position: absolute;
    top: 1px;
    right: 10px;
    font-size: 20px;
    pointer-events: none;
    content: "\f107";
    font-family: FontAwesome;
    color: #707070;
}

.eb5-page textarea.eb5-tract-list {
    width: 100%;
    max-width: 530px;
    height: 88px;
    border: 1px solid #D3D3D3;
    padding: 10px;
}

.eb5-page .eb5-county-row {
    margin-bottom: 10px;
}

.eb5-page #addAdditionalField {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.eb5-page .eb5-results-row {
    font-size: 22px;
    font-weight: 500;
    padding-top: 10px;
    line-height: 1;
}

.eb5-page #eb5-validate, .eb5-page #eb5-submit {
    margin: 5px 0;
    padding: 24px;
    max-width: 269px;
    width: 100%;
}

.eb5-page #eb5-instructions ol {
    padding-left: 17px;
}
/* #endregion */


.nser-body .highlight-panels--1 {
    max-width: 660px;
    margin: 0 auto;
}

/* #region CEO Forum */

#ceoForum {
    max-width: 100%;
    font-family: 'Open Sans', sans-serif;
}

    #ceoForum .section {
        min-height: 100vh;
        padding-bottom: 40px;
    }

    #ceoForum .floating-section {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        max-width: 900px;
        width: 100%;
        min-height: 254px;
        display: none;
    }

        #ceoForum .floating-section .logos-wrap {
            max-width: 400px;
            flex-wrap: wrap;
            width: 100%;
        }

#ceoForumFp .section-1 {
    background-repeat: repeat-x;
    background-position: 0 5%;
    background-size: auto 216px;
}

    #ceoForumFp .section-1 p {
        font-size: 18px;
        line-height: 24px;
    }

#ceoForumFp .container {
    max-width: 900px;
    width: 100%;
    padding: 0 30px;
}

#ceoForumFp .slide-content .content {
    z-index: 2;
    max-width: 400px;
}

    #ceoForumFp .slide-content .content h1 {
        font-size: 29px;
        line-height: 39px;
        font-weight: 100;
        letter-spacing: 1.6px;
        padding-bottom: 10px;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

    #ceoForumFp .slide-content .content .h2 {
        font-size: 68px;
        line-height: 68px;
        letter-spacing: normal;
        font-weight: 100;
        padding-bottom: 20px;
    }
#ceoForumFp .slide-content .content {
    color: #FFFFFF;
}

#ceoForumFp .slide-content .row {
    justify-content: center;
}

#ceoForumFp .section-2 {
    background-repeat: repeat-x;
    background-position: 175% 0%;
    background-size: auto 90%;
}

    #ceoForumFp .section-2 .content h3 {
        font-size: 24px;
        line-height: 33px;
        color: #000000;
    }

    #ceoForumFp .section-2 .content p {
        color: #000000;
        font-size: 18px;
        line-height: 24px;
    }

    #ceoForumFp .section-2 .football-overlay {
        top: 50%;
        right: 0;
        transform: translate(50%, -50%);
        height: 50%;
    }

        #ceoForumFp .section-2 .football-overlay img {
            height: 100%;
            max-height: 424px;
        }



#ceoForum .floating-section, #ceoForum .slide-content {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

#ceoForum .gradient-background {
    background: linear-gradient(300deg,#724025,#ce8258,#955232,#7c4a30);
    background-size: 240% 240%;
    animation: gradient-animation 10s ease infinite;
}

#ceoForum .section-3 .top-border {
    height: 10px;
    top: -6px;
    position: absolute;
    width: 100%;
}

#ceoForum .umbraco-forms-container {
    color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
}

    #ceoForum .umbraco-forms-container .firstname, #ceoForum .umbraco-forms-container .lastname {
        width: 50%;
        max-width: 169px;
    }

    #ceoForum .umbraco-forms-container .company, #ceoForum .umbraco-forms-container .cellphone, #ceoForum .umbraco-forms-container .phone, #ceoForum .umbraco-forms-container .email, #ceoForum .umbraco-forms-container .title, #ceoForum .umbraco-forms-container .interest {
        width: 100%;
        max-width: 300px;
    }

    #ceoForum .umbraco-forms-container input[type=text] {
        background: #0F0F0F;
        border: 1px solid #737373;
        width: 100%;
        height: 40px;
        color: #ffffff;
        padding-left: 10px;
    }

    #ceoForum .umbraco-forms-container .umbraco-forms-field.firstname {
        padding-right: 10px;
    }

    #ceoForum .umbraco-forms-container label, #ceoForum .umbraco-forms-container .umbraco-forms-label {
        position: absolute;
        line-height: 21px;
        top: 25px;
        left: 10px;
        transition: all .3s ease-out;
        cursor: text;
        z-index: 1;
        margin-bottom: 0px;
    }

    #ceoForum .umbraco-forms-container .umbraco-forms-field {
        padding: 15px 0px;
        position: relative;
    }

        #ceoForum .umbraco-forms-container .umbraco-forms-field.active label {
            font-size: 14px;
            top: -8px;
            left: 0;
        }

        #ceoForum .umbraco-forms-container .umbraco-forms-field.interest .umbraco-forms-label {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap; /* added line */
            border: 0;
        }

        #ceoForum .umbraco-forms-container .umbraco-forms-field.interest .radiobuttonlist label {
            position: relative;
            top: 0;
            left: 0;
            line-height: 2;
            padding-left: 34px;
            padding-top: 0;
            cursor: pointer;
        }

#ceoForum .umbraco-forms-field.singlechoice {
    padding: 20px 0 30px;
}

#ceoForum .umbraco-forms-field span.field-validation-error {
    font-size: 10px;
    position: absolute;
    bottom: -14px;
    left: 1px;
}

#ceoForum .umbraco-forms-container input[type="radio"] + label::before {
    background-color: transparent;
    width: 24px;
    height: 24px;
    border: 3px solid #737373;
}

#ceoForum .umbraco-forms-container input[type="radio"]:checked + label::before {
    background-color: transparent;
    width: 24px;
    height: 24px;
    border: 3px solid #FFFFFF;
}

#ceoForum .umbraco-forms-container input[type="radio"]:checked + label::after, #ceoForum .umbraco-forms-container input[type="checkbox"]:checked + label:after {
    background-color: #D2A371;
    width: 16px;
    height: 16px;
}

#ceoForum .umbraco-forms-navigation {
    padding-left: 15px;
}

    #ceoForum .umbraco-forms-navigation input {
        background-color: #D2A371;
        padding: 9px 20px;
        border-radius: 0;
        font-size: 18px;
        line-height: 24px;
    }

#ceoForum .slide-content {
    z-index: 11;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

#ceoForum .background-1 {
    top: 0;
    left: 0;
}

#ceoForum .background-2 {
    right: -75px;
    font-size: 200px;
    font-weight: 600;
    color: #737373;
    top: 0;
    white-space: nowrap;
    height: 100%;
    max-height: 100vh;
}

    #ceoForum .background-2 img {
        max-width: 272px;
    }

#ceoForum .post-form-text {
    font-style: italic;
    font-size: 18px;
    line-height: 24px;
    padding-top: 5px;
    max-width: 315px;
}

#ceoForum.thank-you .section {
    min-height: 100vh;
}

#ceoForum.thank-you .slide-content .content .h2 {
    color: #292929;
}

#ceoForum.thank-you .slide-content .content h1, #ceoForum.thank-you .slide-content .content p, #ceoForum.thank-you .slide-content .content a {
    color: #292929;
    font-weight: 400;
}
#ceoForum.thank-you .slide-content .content h1 {
    font-weight: 100;
    font-size: 32px;
    line-height: 43px;
    letter-spacing: 3.2px;
}
#ceoForum.thank-you.final-four .section-1 {
    padding-bottom: 90px;
}

#ceoForum .mobile-content {
    display: block;
    text-align: center;
    padding-top: 90px;
    padding-bottom: 70px;
}

#ceoForum .section-2 .mobile-content, #ceoForum .section-3 .mobile-content {
    padding-bottom: 40px;
}


#ceoForum .section-2 {
    background-image: url(/media/n10nwft5/football-bg.png);
}

#ceoForum .section-3 {
    padding-bottom: 65px;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

    #ceoForum .section-3 .background-section {
        position: absolute;
        width: 100%;
        overflow: hidden;
        height: 100%;
        top: 0;
    }

#ceoForumFp .fp-tableCell {
    vertical-align: top;
}

.hide-on-mobile {
    display: none;
}

#ceoForum .logos-wrap {
    flex-wrap: wrap;
    justify-content: space-around;
}

    #ceoForum .logos-wrap .logo {
        padding:10px;
    }

#ceoForum .section-1 {
    background-image: url(/media/evsl3cvf/background-footballs.png);
}

#ceoForum .mouse-scroll__link {
    display: none;
}

#ceoForum .umbraco-forms-navigation .col-md-12 {
    padding-left: 0px;
}

#ceoForum .umbraco-forms- {
    padding-top: 2px;
}


@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

#ceoForum.itinerary-page button.mouse-scroll__link {
    color: #292929;
    margin-top: 30px;
    background: transparent;
    border: none;
}
    #ceoForum.itinerary-page button.mouse-scroll__link:hover, #ceoForum.itinerary-page button.mouse-scroll__link:focus, #ceoForum.itinerary-page button.mouse-scroll__link:focus-within {
        color: #A45D41;
        outline: none;
    }
#ceoForum.itinerary-page #panel-1 button.mouse-scroll__link {
    color: #A45D41;
}
#ceoForum.itinerary-page button.mouse-scroll__link:disabled, #ceoForum.itinerary-page button.mouse-scroll__link[disabled] {
    opacity: 0.3;
}
    #ceoForum.itinerary-page button.mouse-scroll__link:disabled:hover, #ceoForum.itinerary-page button.mouse-scroll__link[disabled]:hover, #ceoForum.itinerary-page button.mouse-scroll__link:disabled:hover {
        opacity: 0.3;
        top: 0;
        color: #292929;
    }

#ceoForum.itinerary-page h1, #ceoForum.itinerary-page h2, #ceoForum.itinerary-page p, #ceoForum.itinerary-page .slide-content .content {
    color: #000000;
}
#ceoForum.itinerary-page .section-2 .content h3 {
    color: #292929;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    #ceoForum.itinerary-page .section-2 .content h3 {
        margin-bottom: 30px;
    }
    #ceoForumFp .container {
        padding: 0 15px;
    }
}
#ceoForum.itinerary-page .time {
    color: #292929;
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 0px;
    padding-top: 10px;
}
#ceoForum.itinerary-page .text {
    color: #292929;
    font-size: 14px;
    line-height: 19px;
    margin-bottom:20px;
    padding-bottom: 0px;
}
#ceoForum.itinerary-page .umbraco-forms-field.dropdown {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; /* added line */
    border: 0;
}
#ceoForum.itinerary-page .umbraco-forms-container input[type=text] {
    margin-bottom: 0px;
    margin-top: 0px;
    background: transparent;
    color: #292929;
    padding-top: 0px;
    font-size: 14px;
}
#ceoForum.itinerary-page .umbraco-forms-container label {
    color: #292929;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
}
#ceoForum.itinerary-page .umbraco-forms-container .umbraco-forms-field.email {
    padding-bottom: 30px;
}
#ceoForum.itinerary-page .umbraco-forms-container input:focus-visible {
    outline: 1px solid #737373 !important;
}
#ceoForum.itinerary-page select:focus-visible {
    outline: 1px solid #737373 !important;
}

#ceoForum.itinerary-page .umbraco-forms-container .umbraco-forms-field.guestfirstname {
    padding-right: 10px;
}
#ceoForum.itinerary-page .umbraco-forms-container .umbraco-forms-field.guestfirstname, #ceoForum .umbraco-forms-container .umbraco-forms-field.guestlastname {
    width: 50%;
    max-width: 169px;
}
#ceoForum.itinerary-page .umbraco-forms-field span.field-validation-error {
    padding-left: 0px;
}
#ceoForum.itinerary-page .umbraco-forms-container .umbraco-forms-field {
    padding-bottom: 18px;
}
#ceoForum.itinerary-page .section {
    min-height: auto;
}
#ceoForum.itinerary-page .section .content {
    overflow: hidden;
}
#ceoForum.itinerary-page #fp-nav ul li a.active span, #ceoForum.itinerary-page .fp-slidesNav ul li a.active span, #ceoForum.itinerary-page #fp-nav ul li:hover a.active span, #ceoForum.itinerary-page .fp-slidesNav ul li:hover a.active span {
    margin: -2px 0 0 -2px;
    background: #A45D41;
    border: none;
    pointer-events: all;
}
#ceoForum.itinerary-page #fp-nav ul li a span, #ceoForum.itinerary-page .fp-slidesNav ul li a span {
    height: 12px;
    width: 12px;
    left: 3px;
    top: 3px;
    background: transparent;
    border: 2px solid #D2A371;
}
    #ceoForum.itinerary-page #fp-nav ul li:hover a span, #ceoForum.itinerary-page .fp-slidesNav ul li:hover a span {
        margin: -2px 0 0 -2px;
    }
#ceoForum.itinerary-page #fp-nav ul li:first-child a span, #ceoForum.itinerary-page #fp-nav ul li a.completed span {
    background: #D2A371;
    pointer-events: all;
}
#ceoForum.itinerary-page #fp-nav ul li a.active span, #ceoForum.itinerary-page #fp-nav ul li:last-child a.active span {
    background: #A45D41;
    border: none;
}
#ceoForum.itinerary-page #fp-nav ul li:last-child a span {
    background: transparent;
    border: 2px solid #D2A371;
}
#ceoForum.itinerary-page #fp-nav.fp-right {
    top: 50%;
    left: 48%;
    width: 28px;
}
#ceoForum.itinerary-page .floating-section {
    background-image: url(/media/n10nwft5/football-bg.png);
    background-repeat: repeat-x;
    background-position: 175% 0%;
    background-size: auto 90%;
    height: 100%;
    width: 100%;
    max-width: none;
}
    #ceoForum.itinerary-page .floating-section .container {
        max-width: 900px;
        width: 100%;
        min-height: 254px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
    }

#ceoForum.itinerary-page .section-2 {
    background-image: none;
}

#ceoForum.itinerary-page .football-overlay {
    display: none;
}
#ceoForum.itinerary-page .football-overlay img {
    height: 100%;
}
#ceoForum.itinerary-page form .postformtext {
    padding-top: 0px;
}
    #ceoForum.itinerary-page form .postformtext p {
        font-size: 14px;
        line-height: 19px;
    }

#ceoForum.itinerary-page form .umbraco-forms-field.hidden {
    height: 0px !important;
    width: 0px !important;
    padding: 0px !important;
}

@media only screen and (min-width: 768px) {
    #ceoForum.itinerary-page .football-overlay {
        display: block;
        height: 100%;
        max-height: 550px;
        top: 50%;
        right: 0;
        transform: translate(50%, -50%);
    }
    #ceoForum.itinerary-page .section-2#panel-2 {
        background-image: url(/media/n10nwft5/football-bg.png);
    }
    #ceoForum.itinerary-page .slide-content {
        overflow: hidden;
    }
    #ceoForum.itinerary-page .section-2 .football-overlay {
        height: 550px !important;
    }
    .hide-background {
        background-image: none !important;
    }
    #ceoForum.thank-you.final-four .section-1 {
        padding-bottom: 0px;
    }
}
@media only screen and (min-width: 820px) {
    #ceoForum.itinerary-page #fp-nav.fp-right {
        left: 50%;
    }
}

.remove-clickable {
    pointer-events: none;
}

#ceoForum.itinerary-thank-you .slide-content .content h1, #ceoForum.itinerary-thank-you .slide-content .content p, #ceoForum.itinerary-thank-you .slide-content .content a {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}
#ceoForum.itinerary-thank-you .floating-section {
    z-index: 100;
}

@media only screen and (min-width: 768px) {
    #ceoForum.itinerary-page .section {
        min-height: 100vh;
        overflow: hidden;
    }
}






#ceoForum .form-section select {
    width: 100% !important;
    max-width: 255px;
    padding: 8px 38px 8px 10px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
    border: 1px solid #737373 !important;
    font-size: 12px !important;
    outline: none !important;
    color: #292929 !important;
    display: block;
    background: transparent;
}
    #ceoForum .form-section select::-ms-expand {
        display: none;
    }

#ceoForum .form-section .select-wrapper {
    position: relative;
    max-width: 255px;
}
    #ceoForum .form-section .select-wrapper::after {
        content: "\f107";
        font-family: FontAwesome;
        position: absolute;
        top: 6px;
        right: 14px;
    }

#ceoForumFp {
    overflow-x: hidden;
}

@media only screen and (min-width: 768px) {
    #ceoForum .section {
        min-height: 100vh;
    }

    #ceoForum .floating-section {
        display: block;
    }

    #ceoForum .mobile-content {
        display: none;
    }

    #ceoForum .logos .logos-wrap {
        position: absolute;
        left: 0;
        -webkit-transition: opacity 0.5s ease-in-out;
        -moz-transition: opacity 0.5s ease-in-out;
        -o-transition: opacity 0.5s ease-in-out;
        transition: opacity 0.5s ease-in-out;
    }

    #ceoForum.main-page.fp-viewing-0 .logos-wrap-light, #ceoForum.main-page.fp-viewing-2 .logos-wrap-light {
        opacity: 0
    }

    #ceoForum.main-page.fp-viewing-0 .logos-wrap-dark, #ceoForum.main-page.fp-viewing-2 .logos-wrap-dark {
        opacity: 1
    }

    #ceoForum.main-page.fp-viewing-1 .logos-wrap-dark {
        opacity: 0
    }

    #ceoForum.main-page.fp-viewing-1 .logos-wrap-light {
        opacity: 1
    }

    #ceoForumFp .slide-content .row {
        justify-content: space-between;
    }

    #ceoForumFp .fp-tableCell {
        vertical-align: middle;
    }

    #ceoForumFp .section-2 .football-overlay {
        height: 100%;
    }

    #ceoForum .background-2 {
        right: -50px;
    }

        #ceoForum .background-2 img {
            max-height: 100%;
        }

    .hide-on-mobile {
        display: block;
    }

        #ceoForum .logos-wrap .logo {
            padding: 0;
        }

    #ceoForumFp .section-1 {
        background-position: center;
    }

    #ceoForum .mouse-scroll__link {
        font-size: 18px;
        margin-top: 20px;
        display: inline-block;
        overflow: hidden;
        position: relative;
        top: 0;
        transition: top ease 0.5s;
    }

        #ceoForum .mouse-scroll__link:hover, #ceoForum .mouse-scroll__link:focus, #ceoForum .mouse-scroll__link:focus-within {
            color: #FFFFFF;
            text-decoration: none;
            top: 5px;
        }

        #ceoForum .mouse-scroll__link::after {
            content: "\f103";
            font-family: FontAwesome;
            padding-left: 5px;
        }

    #ceoForum .section-2 .mouse-scroll__link:hover {
        color: #2f2f2f;
    }

    #ceoForumFp .section-1 p {
        margin-bottom: 40px;
    }

    #ceoForumFp .section-2 .football-overlay img {
        max-height: none;
    }

    #ceoForum .section {
        padding-bottom: 0px;
    }
}
/* #endregion */

/* #region Final Four CEO Forum */

.final-four .main-logo {
    max-width: 230px;
}
.final-four .logos .logo {
    margin-top: 0px;
}
.final-four .logos .logo {
    width: 100%;
}
    .final-four .logos .logo:nth-child(1) {
        max-width: 127px;
    }
.final-four .logos .logo:nth-child(2) {
    max-width: 140px;
}
.final-four #ceoForumFp .slide-content .content {
    z-index: 2;
    max-width: 440px;
}
#ceoForum.final-four .section-1 {
    background-image: url(/media/igjgxumb/group-732.png);
    background-size: 110%;
    background-position-x: center;
    background-position-y: 60px;
    background-repeat: no-repeat;
}
#ceoForum.final-four.thank-you .section-1 {
    background-image: url(/media/3raf1n5k/mobile-background.png);
}
#ceoForum.final-four .floating-section {
    min-height: 330px;
}
#ceoForum.final-four .section-2 {
    background-color: #00BFDA;
    background-image: none;
}
    #ceoForum.final-four .section-2 .slide-content .content p, #ceoForum.final-four .section-2 .slide-content .content h3 {
        color: #ffffff;
    }
    #ceoForum.final-four .section-2 .overlay-container {
        left: 0;
        right: 0;
        top: 0;
    }
        #ceoForum.final-four .section-2 .overlay-container .football-overlay {
            top: 50px;
            right: 0;
            transform: translate(0, 0);
            height:100%;
            width: 100%;
            text-align: center;
        }
        #ceoForum.final-four .section-2 .overlay-container .football-overlay img {
            max-height: none;
            max-width: 100%;
            display: inline-block;
        }
    #ceoForum.final-four .section-2 .basketball-overlay {
        width: 286px;
        height: auto;
        top: -140px;
        left: -70px;
    }

#ceoForum.final-four .section-3 .top-border {
    top: 0;
}
    #ceoForum.final-four .section-3 .top-border img {
        height: 51px;
        left: -34px;
    }
#ceoForum.final-four .section-3 .background-2 {
    left: -5px;
    right: 0;
    top: 100px;
    width: 100%;
    max-height: none;
    height: auto;
    opacity: 0.2;
}
    #ceoForum.final-four .section-3 .background-2 img {
        width: 105%;
        max-width: 105%;
    }
#ceoForum.final-four #panel-3 .mobile-content {
    padding-top: 120px;
}


#ceoForum.final-four .umbraco-forms-container input[type=text] {
    background: #000000;
}

#ceoForum.final-four .umbraco-forms-container .umbraco-forms-field {
    max-width: 100%;
}
#ceoForum.final-four .umbraco-forms-container .umbraco-forms-field.phone {
    width: 100%;
}
#ceoForum.final-four .umbraco-forms-navigation input {
    background-color: #FFC226;
}
#ceoForum.final-four .umbraco-forms-container input[type="radio"]:checked + label::after, #ceoForum.final-four .umbraco-forms-container input[type="checkbox"]:checked + label:after {
    background-color: #FFC226;
}
#ceoForum.final-four .post-form-text {
    max-width: 300px;
}


@media only screen and (min-width: 480px) {
    #ceoForum.final-four .section-2 .overlay-container .football-overlay {
        top:120px;
    }
    #ceoForum.final-four .section-1 {
        background-size: 500px auto;
    }
}
@media only screen and (min-width: 768px) {

    .final-four .main-logo {
        max-width: 180px;
    }

    .final-four #ceoForumFp .slide-content .content h1 {
        font-size: 32px;
        line-height: 43px;
    }
    #ceoForum.final-four .section-1 {
        background-image: url(/media/131d2sut/banner1.png);
        background-size: auto 600px;
        background-position-x: center;
        background-position-y: center;
        background-repeat: repeat-x;
    }

    #ceoForum.final-four .section-2 .overlay-container .football-overlay {
        top: 0;
        text-align: right;
        padding-right: 15px;
    }
    #ceoForum.final-four .section-2#panel-2 {
        overflow: hidden;
    }
    #ceoForum.final-four .section-2 .basketball-overlay {
        width: 500px;
        height: auto;
        top: -14%;
        left: -215px;
    }
    #ceoForum.final-four .section-3 .background-2 {
        left: -30px;
    }
        #ceoForum.final-four .section-3 .background-2 img {
            width: 110%;
            max-width: 110%;
        }

    .final-four .logos .logo {
        margin-top: 220px;
    }
    #ceoForum.final-four .main-logo {
        position: absolute;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        -webkit-transition: opacity 0.5s ease-in-out;
        -moz-transition: opacity 0.5s ease-in-out;
        -o-transition: opacity 0.5s ease-in-out;
        transition: opacity 0.5s ease-in-out;
    }

    #ceoForum.final-four.main-page.fp-viewing-0 .main-logo.light, #ceoForum.final-four.main-page.fp-viewing-2 .main-logo.light {
        opacity: 0
    }

    #ceoForum.final-four.main-page.fp-viewing-0 .main-logo.dark, #ceoForum.final-four.main-page.fp-viewing-2 .main-logo.dark {
        opacity: 1
    }

    #ceoForum.final-four.main-page.fp-viewing-1 .main-logo.dark {
        opacity: 0
    }

    #ceoForum.final-four.main-page.fp-viewing-1 .main-logo.light {
        opacity: 1
    }
    #ceoForum.final-four.thank-you .section-1 {
        background-image: url(/media/131d2sut/banner1.png);
    }
}
@media only screen and (min-width: 900px) {
    #ceoForum.final-four .section-2 .basketball-overlay {
        width: 866px;
        height: auto;
        top: -20%;
        left: -360px;
    }
}

    /* #endregion */

/* #region ACRC Pages */


.acrc .secondary-hero-image img {
    max-width: 400px;
    width: 100%;
}

.acrc main .container {
    max-width: 834px;
}

.acrc main {
    padding-bottom: 60px;
}

.acrc .image-blocks .block {
    padding: 0 20px;
}

.acrc .enroll-button {
    padding: 40px 0;
}

.acrc .stats-facts--4.container {
    max-width: 940px;
}

.acrc .stats-facts--4 .description {
    font-size: 18px;
}

.acrc-video {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

    .acrc-video iframe, .acrc-video video {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }

.acrc .highlight-sub-panel--4 p a, .acrc .resource-section p a {
    font-weight: 400;
    color: #282828;
}

.acrc .highlight-sub-panel--4.image {
    background-position: top center;
}

.acrc .resource-section {
    padding-top: 100px;
    padding-bottom: 40px;
}

    .acrc .resource-section .block .image {
        min-height: 267px;
        font-size: 18px;
    }

    .acrc .resource-section .block .title {
        margin: auto;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }

.acrc .logo-container .logo {
    padding: 0 30px;
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .acrc .logo-container .logo:last-child {
        border-right: none;
    }

.acrc .logo-container .row {
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
    align-items: center;
}

    .acrc .logo-container .row:last-child .logo {
        padding: 0 25px;
        min-height: 45px;
    }

        .acrc .logo-container .row:last-child .logo:last-child {
            border-right: none;
        }


.acrc h1 {
    font-size: 36px;
    font-weight: 400;
}

.acrc h4 {
    font-size: 20px;
    font-weight: 400;
    color: #002857;
}

/*Career Readiness*/
.acrc .acrc_intro-content h1 {
    padding-top: 80px;
    margin-bottom: 80px;
}

.acrc.career-readiness .image-blocks {
    padding-top: 35px;
    padding-bottom: 65px;
    font-size: 15px;
}

    .acrc.career-readiness .image-blocks .container {
        max-width: 675px;
    }

    .acrc.career-readiness .image-blocks .block {
        padding: 15px;
        width: 120px;
    }

    .acrc.career-readiness .image-blocks .image-wrapper {
        height: 90px;
    }

        .acrc.career-readiness .image-blocks .image-wrapper img {
            max-width: 80px;
            width: 100%;
        }

    .acrc.career-readiness .image-blocks .title {
        line-height: 20px;
    }

.acrc.career-readiness .additional-content {
    padding-top: 115px;
    padding-bottom: 115px;
}

    .acrc.career-readiness .additional-content p {
        margin-bottom: 80px;
    }

.acrc.career-readiness .tab-content .card .card-header .btn-header-link:after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 12px;
    padding-left: 5px;
}

.acrc.career-readiness .tab-content .card .card-header .btn-header-link.collapsed:after {
    content: "\f077";
}

.acrc.career-readiness .tab-section .darken-background:before, .acrc.career-readiness .tab-section {
    background-color: rgba(0, 40, 87, 0.9);
}

.acrc.career-readiness .tab-content, .acrc.career-readiness .tab-content > .active {
    min-height: 900px;
    align-items: center;
    display: flex;
    width: 100%;
}

    .acrc.career-readiness .tab-content .content {
        max-width: 620px;
        padding-top: 342px;
    }

        .acrc.career-readiness .tab-content .content .title {
            font-size: 36px;
            line-height: 45px;
            padding-top: 15px;
        }

        .acrc.career-readiness .tab-content .content .icon img {
            max-width: 90px;
        }

    .acrc.career-readiness .tab-content .card {
        background-color: transparent;
        border: none;
        color: #FFFFFF;
    }

        .acrc.career-readiness .tab-content .card .btn {
            color: #FFFFFF;
        }

        .acrc.career-readiness .tab-content .card .card-header, .acrc.career-readiness .tab-content .card .card-header a {
            padding: 0;
            border: none;
            background-color: transparent;
        }

.acrc.career-readiness .tab-section .nav-tabs {
    top: 0;
    left: 0;
    right: 0;
    border: none;
    flex-direction: column;
    text-align: center;
    z-index: 1;
}

    .acrc.career-readiness .tab-section .nav-tabs a {
        padding: 20px 25px;
        color: #FFFFFF;
        background-color: #D23F08;
        margin-left: 1px;
        margin-right: 1px;
        display: block;
        margin-top: 1px;
        height: 100%;
        font-size: 15px;
        min-height: 60px;
        line-height: 19px;
    }

        .acrc.career-readiness .tab-section .nav-tabs a:hover {
            text-decoration: none;
        }

        .acrc.career-readiness .tab-section .nav-tabs a.active {
            background-color: transparent;
        }

.acrc.career-readiness .tab-section {
    margin-bottom: 120px;
}

.acrc .bg-grey .stats-facts--4 {
    padding-bottom: 8px;
}

/*Skills & Development*/
.acrc.skills-development .image-blocks {
    padding-top: 80px;
    padding-bottom: 60px;
}

    .acrc.skills-development .image-blocks .title {
        color: #878787;
        padding-top: 5px;
    }

    .acrc.skills-development .image-blocks .block {
        padding-bottom: 20px;
    }

        .acrc.skills-development .image-blocks .block img {
            max-width: 128px;
        }

.acrc.skills-development .grey-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.acrc .block-section-wrapper .section-title {
    font-size: 15px;
    line-height: 20px;
}

.acrc .block-section-wrapper .block {
    padding: 34px 20px 10px;
    position: relative;
}

    .acrc .block-section-wrapper .block.darken-background:before {
        background-color: rgba(0, 0, 0, 0.7);
    }

    .acrc .block-section-wrapper .block .block-title {
        font-size: 18px;
        line-height: 23px;
        font-weight: 500;
        padding-bottom: 8px;
        padding-right: 30px;
    }

.acrc .plus {
    font-size: 22px;
    font-weight: 600;
    color: #4A4A4A;
    margin: 0 auto;
    padding: 0 28px;
}

.acrc.skills-development .block-section.container {
    max-width: 1085px;
    margin: 0 auto;
}

.acrc .block-section .block-image img {
    width: 100%;
    max-width: 260px;
    min-height: 120px;
}

.acrc.skills-development .bottom-content {
    padding-top: 110px;
    padding-bottom: 30px;
}

.acrc.skills-development .quotes-container {
    max-width: 930px;
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 120px;
}

    .acrc.skills-development .quotes-container .quotetext {
        font-size: 18px;
        line-height: 23px;
    }

    .acrc.skills-development .quotes-container button.glide__bullet {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        padding: 0;
        background-color: transparent;
        border-color: #002857;
        margin: 0 5px;
    }

    .acrc.skills-development .quotes-container button.glide__bullet--active {
        background-color: #002857;
    }

.acrc.skills-development .block-section > .d-flex {
    flex-direction: column;
}

@media only screen and (min-width: 340px) {
    .acrc .logo-container .row {
        flex-direction: row;
    }

        .acrc .logo-container .row:last-child .logo {
            border-right: 1px solid #8C8C8C;
        }

            .acrc .logo-container .row:last-child .logo:nth-child(even) {
                border-right: none;
            }
}

@media only screen and (min-width: 472px) {
    .acrc .logo-container .row:last-child .logo:nth-child(even) {
        border-right: 1px solid #8C8C8C;
    }

    .acrc .logo-container .row:last-child .logo:nth-child(2) {
        border-right: none;
    }
}

@media only screen and (min-width: 480px) {
    .acrc .logo-container .logo {
        border-right: 1px solid #E8E8E8;
    }

    .acrc .logo-container .row:last-child .logo:nth-child(2) {
        border-right: 1px solid #8C8C8C;
    }

    .acrc .logo-container .row:last-child .logo:nth-child(3) {
        border-right: none;
    }
}

@media only screen and (min-width: 638px) {
    .acrc .logo-container .row:last-child .logo:nth-child(4) {
        border-right: none;
    }

    .acrc .logo-container .row:last-child .logo:nth-child(3) {
        border-right: 1px solid #8C8C8C;
    }
}

@media only screen and (min-width: 768px) {
    .acrc .block-section-wrapper .block {
        max-width: 250px;
        min-height: 400px;
        width: 100%;
        min-width: 250px;
    }

    .acrc .block-section-wrapper.full-width .section-title {
        max-width: 750px;
    }

    .acrc .block-section-wrapper.full-width .block {
        max-width: 750px;
        min-height: 192px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

        .acrc .block-section-wrapper.full-width .block p {
            margin-bottom: 0px;
        }

    .acrc .block-section-wrapper.full-width .block-description {
        padding-right: 72px;
    }
}

@media only screen and (min-width: 794px) {
    .acrc .logo-container .row:last-child .logo:nth-child(4) {
        border-right: 1px solid #8C8C8C;
    }

    .acrc.career-readiness .tab-section .nav-tabs a {
        width: 158px;
        padding: 10px 25px;
    }

    .acrc.career-readiness .tab-section .nav-tabs:before, .acrc.career-readiness .tab-section .nav-tabs:after {
        content: '';
        flex: 1;
        margin: 0px 1px;
        height: 60px;
        background-color: #D23F08;
        margin-top: 0px;
    }

    .acrc.career-readiness .tab-content .content {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 850px) {
    .acrc.career-readiness .tab-content, .acrc.career-readiness .tab-content > .active {
        min-height: 617px;
    }

    .acrc.skills-development .tab-section .nav-tabs a {
        display: revert;
    }

    .acrc.career-readiness .block-section .row {
        flex-wrap: nowrap;
    }

    .acrc.career-readiness .tab-section .nav-tabs a {
        margin-top: 0px;
    }

    .acrc .block-section-wrapper .block {
        max-width: 269px;
    }

    .acrc .block-section-wrapper.full-width .section-title {
        max-width: 810px;
    }

    .acrc .block-section-wrapper.full-width .block {
        max-width: 810px;
        min-height: 192px;
    }
}


/*Get Started*/
.acrc.get-started .nav {
    max-width: 850px;
    margin: 0 auto;
}

.acrc.get-started .nav-tabs {
    border-bottom: 3px solid #000000;
}

    .acrc.get-started .nav-tabs .nav-link {
        background-color: #d23f08;
        color: #FFFFFF;
        border: 1px solid #d23f08;
        padding: 20px 0;
        min-width: 250px;
        margin-bottom: 0;
        border-bottom: 0px;
    }

        .acrc.get-started .nav-tabs .nav-link.active {
            background-color: #ffffff;
            color: #d23f08;
        }

    .acrc.get-started .nav-tabs .nav-item {
        padding: 0px 5px;
        text-align: center;
        text-transform: uppercase;
    }

.acrc.get-started .tab-section .nav-item {
    width: 100%;
    padding: 0;
}

    .acrc.get-started .tab-section .nav-item .nav-link {
        border-radius: 0px;
    }

.acrc.get-started main .container {
    max-width: 850px;
}

.acrc.get-started .tab-content {
    padding-top: 70px;
    padding-bottom: 70px;
}

    .acrc.get-started .tab-content .number {
        font-size: 62px;
        line-height: 40px;
        min-width: 60px;
        text-align: center;
    }

    .acrc.get-started .tab-content .title {
        font-size: 20px;
        line-height: 25px;
    }

    .acrc.get-started .tab-content .text-content p {
        color: #686868;
        line-height: 22px;
    }

    .acrc.get-started .tab-content .h3 {
        text-transform: none;
    }

.acrc.get-started form .umbraco-forms-page {
    max-width: 686px;
    margin: 0 auto;
}

    .acrc.get-started form .umbraco-forms-page input.text {
        margin: 0;
        width: 100%;
        padding: 11px 20px;
        border-color: #878787;
        font-size: 16px;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

        .acrc.get-started form .umbraco-forms-page input.text::placeholder {
            font-size: 16px;
            color: #2E2E2E;
        }

        .acrc.get-started form .umbraco-forms-page input.text:focus {
            outline-color: black;
            border-radius: 0;
        }

    .acrc.get-started form .umbraco-forms-page input.input-validation-error {
        background: #FFFFFF;
        border-color: #878787;
    }

    .acrc.get-started form .umbraco-forms-page .shortanswer label.umbraco-forms-label, .acrc.get-started form .umbraco-forms-page .shortanswerlimit255 label.umbraco-forms-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap; /* added line */
        border: 0;
    }

.acrc.get-started form br {
    display: none;
}

.acrc.get-started form .form-page-indicators {
    display: none;
}

.acrc.get-started form .umbraco-forms-page .umbraco-forms-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.acrc.get-started form .umbraco-forms-page .field-validation-error {
    position: absolute;
    bottom: 6px;
    font-size: 11px;
    line-height: 12px;
    left: 4px;
}

.acrc.get-started form .umbraco-forms-page .interestedin .field-validation-error {
    bottom: 25px;
    left: 0;
}

.acrc.get-started form .umbraco-forms-page .firstname,
.acrc.get-started form .umbraco-forms-page .lastname,
.acrc.get-started form .umbraco-forms-page .title,
.acrc.get-started form .umbraco-forms-page .company,
.acrc.get-started form .umbraco-forms-page .email,
.acrc.get-started form .umbraco-forms-page .phone,
.acrc.get-started form .umbraco-forms-page .city,
.acrc.get-started form .umbraco-forms-page .comments,
.acrc.get-started form .umbraco-forms-page .interestedin,
.acrc.get-started form .umbraco-forms-page .industry {
    width: 100%;
}

.acrc.get-started form .umbraco-forms-page .state,
.acrc.get-started form .umbraco-forms-page .zip {
    width: 50%;
}

.acrc.get-started form .umbraco-forms-page .titleanddescription p {
    text-align: center;
    font-weight: 400;
    padding-bottom: 40px;
}

.acrc.get-started form .umbraco-forms-page .umbraco-forms-field-wrapper {
    padding: 5px;
    width: 100%;
}

.acrc.get-started form .umbraco-forms-page .umbraco-forms-fieldset {
    padding-right: 0px;
}

    .acrc.get-started form .umbraco-forms-page .umbraco-forms-fieldset:nth-child(2), .acrc.get-started form .umbraco-forms-page .umbraco-forms-fieldset:nth-child(3) {
        border-top: 1px solid #707070 !important;
        padding-top: 24px !important;
        margin-top: 24px;
    }

.acrc.get-started form .umbraco-forms-page .interestedin .umbraco-forms-field-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 5px;
}

    .acrc.get-started form .umbraco-forms-page .interestedin .umbraco-forms-field-wrapper label {
        font-weight: normal;
        height: 40px;
        display: block;
        padding-left: 0px;
        padding-top: 4px;
        padding-right: 40px;
        line-height: 1.2;
        width: auto;
    }

.acrc.get-started form .umbraco-forms-page .interestedin .checkboxlist {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-top: 0px !important;
}

    .acrc.get-started form .umbraco-forms-page .interestedin .checkboxlist input[type="checkbox"] + label {
        padding-left: 30px;
        cursor: pointer;
    }

        .acrc.get-started form .umbraco-forms-page .interestedin .checkboxlist input[type="checkbox"] + label::before {
            position: absolute;
            content: "";
            font-family: 'FontAwesome';
            display: inline-block;
            border: 1px solid #9B9B9B;
            width: 17px;
            height: 17px;
            left: 0px;
            top: 5px;
            line-height: 1;
            font-size: 12px;
            color: #9B9B9B;
            text-align: center;
            padding: 0 1.5px;
            border-radius: 0;
            transition: none;
            -webkit-transition: none;
            -o-transition: none;
            letter-spacing: 10px;
            background-color: transparent;
        }

    .acrc.get-started form .umbraco-forms-page .interestedin .checkboxlist input[type="checkbox"]:checked + label::before {
        content: "\f00c";
        letter-spacing: 5px;
        background-color: transparent;
        line-height: 14px;
    }

    .acrc.get-started form .umbraco-forms-page .interestedin .checkboxlist input[type="checkbox"] + label::after {
        content: "";
        position: absolute;
        border: none !important;
        transition: none;
        -webkit-transition: none;
        -o-transition: none;
        opacity: 0;
        top: 1px;
        left: 4px;
        width: 5px;
        height: 8px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .acrc.get-started form .umbraco-forms-page .interestedin .checkboxlist input[type="checkbox"]:checked + label::after {
        border: none !important;
    }

    .acrc.get-started form .umbraco-forms-page .interestedin .checkboxlist input[type="checkbox"] + label::after, .acrc.get-started form .umbraco-forms-page .interestedin .checkboxlist input[type="checkbox"] + label::before {
        transition: none;
    }

.acrc.get-started .umbraco-forms-navigation {
    text-align: center;
    padding-top: 40px;
}

    .acrc.get-started .umbraco-forms-navigation input[type="submit"] {
        background: #D13E08;
        border-radius: 0;
        color: #FFFFFF;
        text-transform: uppercase;
        padding: 15px 75px;
    }

.acrc.get-started .progressive-form-wrapper {
    margin-bottom: 0px;
}

    .acrc.get-started .progressive-form-wrapper .umbraco-forms-submitmessage {
        font-size: 24px;
    }

@media only screen and (min-width: 480px) {
    .acrc.get-started form .umbraco-forms-page .firstname,
    .acrc.get-started form .umbraco-forms-page .lastname,
    .acrc.get-started form .umbraco-forms-page .title,
    .acrc.get-started form .umbraco-forms-page .company,
    .acrc.get-started form .umbraco-forms-page .email,
    .acrc.get-started form .umbraco-forms-page .phone,
    .acrc.get-started form .umbraco-forms-page .city {
        width: 50%;
    }

    .acrc.get-started form .umbraco-forms-page .state,
    .acrc.get-started form .umbraco-forms-page .zip {
        width: 25%;
    }

    .acrc.get-started form .umbraco-forms-page .interestedin {
        flex-wrap: nowrap;
        padding: 0;
    }

        .acrc.get-started form .umbraco-forms-page .interestedin .umbraco-forms-field-wrapper label {
            height: 30px;
            padding-top: 4px;
            padding-left: 0px;
        }
}

@media only screen and (min-width: 517px) {
    .acrc.get-started form .umbraco-forms-page .interestedin .field-validation-error {
        left: 155px;
    }
}

@media only screen and (min-width: 785px) {
    .acrc.get-started .tab-section .nav-item {
        width: revert;
        padding: 0 5px;
    }

        .acrc.get-started .tab-section .nav-item .nav-link {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }
}

@media only screen and (max-width: 1200px) {
    .webinars-filter--wrapper .checkbox-wrap input[type=checkbox] + label:before {
        left: 0px;
    }
}

/*Next Steps*/
.acrc.next-steps .blocks-wrapper .number {
    font-size: 62px;
    line-height: 40px;
}

.acrc.next-steps main .container {
    max-width: 975px;
}

.acrc.next-steps .upcoming-dates .title {
    font-size: 18px;
    line-height: 23px;
    color: #686868;
    font-weight: 500;
}

.acrc.next-steps .upcoming-dates .date {
    font-size: 15px;
    line-height: 40px;
}

.acrc.next-steps .upcoming-dates form input {
    width: 0;
}

.acrc.next-steps .upcoming-dates form label {
    position: relative;
    cursor: pointer;
    color: #686868;
    font-size: 15px;
    padding-left: 36px;
}

.acrc.next-steps .upcoming-dates form .field-wrapper {
    padding-bottom: 8px;
}

.acrc.next-steps .upcoming-dates form input[type="radio"] + label::before {
    width: 24px;
    height: 24px;
    top: 0;
    border: 2px solid #707070;
    background: transparent;
    position: absolute;
}

.acrc.next-steps .upcoming-dates form input[type="radio"]:checked + label::after {
    background: #707070;
    top: 4px;
    left: 4px;
    width: 16px;
    height: 16px;
}

.acrc.next-steps .register-button {
    width: fit-content;
    max-width: 240px;
}

    .acrc.next-steps .register-button:focus {
        color: #FFFFFF;
        background-color: #002857;
    }

    .acrc.next-steps .register-button[disabled] {
        opacity: 0.4;
        cursor: not-allowed;
    }

        .acrc.next-steps .register-button[disabled]:hover {
            background-color: #FFFFFF;
            color: #002857;
            border-color: #002857;
        }

.acrc.next-steps .blocks-wrapper .text-content {
    max-width: 678px;
}

    .acrc.next-steps .blocks-wrapper .text-content p a {
        font-weight: 600;
    }

    .acrc.next-steps .blocks-wrapper .text-content .download-link a, .acrc.next-steps .blocks-wrapper .resource-section .text-content a {
        color: inherit;
        font-weight: 400;
    }

    .acrc.next-steps .blocks-wrapper .text-content .download-link::after {
        content: "\f08e";
        font-family: FontAwesome;
        font-size: 14px;
        padding-left: 6px;
    }

.acrc.next-steps .blocks-wrapper .resource-section .text-content {
    max-width: 100%;
}

.acrc.next-steps .modal-content {
    border-radius: 0px;
    border: 1px solid #707070;
    padding: 0px;
}

.acrc.next-steps .modal-content {
    padding: 28px;
}

    .acrc.next-steps .modal-content button.close {
        position: absolute;
        right: 20px;
        top: 12px;
    }

    .acrc.next-steps .modal-content .preform-content {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 20px;
    }

    .acrc.next-steps .modal-content .umbraco-forms-form {
        padding: 0px;
        margin-bottom: 0px;
    }

        .acrc.next-steps .modal-content .umbraco-forms-form fieldset {
            padding: 0px;
            padding-bottom: 40px;
        }

        .acrc.next-steps .modal-content .umbraco-forms-form .recaptcha .umbraco-forms-field-wrapper {
            display: flex;
            justify-content: center;
            padding-top: 15px;
        }

        .acrc.next-steps .modal-content .umbraco-forms-form .shortanswer input, .acrc.next-steps .modal-content .umbraco-forms-form .shortanswerlimit255 input, .acrc.next-steps .modal-content .umbraco-forms-form .longanswer textarea {
            width: 100%;
        }

        .acrc.next-steps .modal-content .umbraco-forms-form input[type=submit] {
            background-color: #D23F08;
            color: #FFFFFF;
            border-radius: 0px;
            text-transform: uppercase;
            font-weight: 600;
            padding: 10px 110px;
        }

    .acrc.next-steps .modal-content .umbraco-forms-field.shortanswer, .acrc.next-steps .modal-content .umbraco-forms-field.shortanswerlimit255, .acrc.next-steps .modal-content .umbraco-forms-field.longanswer {
        padding-bottom: 12px;
    }

    .acrc.next-steps .modal-content .umbraco-forms-navigation {
        text-align: center;
    }

    .acrc.next-steps .modal-content .form-page-indicators {
        display: none;
    }

    .acrc.next-steps .modal-content .progressiveform {
        padding: 0;
    }

        .acrc.next-steps .modal-content .progressiveform .date.hidden {
            height: 0;
        }

        .acrc.next-steps .modal-content .progressiveform .recaptcha label {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap; /* added line */
            border: 0;
        }

.acrc.next-steps .acrcnextstepsenrollform {
    margin-bottom: 0px;
}

    .acrc.next-steps .acrcnextstepsenrollform .progressiveform.container {
        padding-left: 0px;
        padding-right: 0px;
    }

@media only screen and (min-width: 480px) {
    .acrc.next-steps .modal-content .progressive-form-wrapper .umbraco-forms-field > div {
        width: 100%;
    }
}

@media (min-width: 576px) {
    .acrc.next-steps .modal-dialog {
        max-width: 480px;
    }

    .acrc.next-steps .modal-content {
        padding: 50px;
    }
}
/* #endregion */

/* #region NSER */
.nser .secondary-hero-image {
    max-width: 269px;
}

.nser .featured-block {
    max-width: 868px;
    padding: 40px 15px;
}

    .nser .featured-block .headline {
        padding-top: 40px;
        font-size: 18px;
    }

.nser .quotes-container .glide__arrows {
    width: 98%;
}

.nser .quotes-container .glide__arrow--right {
    right: 0px;
}

.nser .quotes-container .glide__arrow--left {
    left: -30px;
}

.nser .quotes-container .quote {
    width: 100%;
    margin: 0 auto;
    max-width: 586px;
}

.nser #quotesWrapper {
    padding-right: 20px;
    padding-left: 20px;
}

.nser .quotetext {
    font-size: 18px;
    line-height: 23px;
}

.nser #quotesWrapper .image {
    max-width: 175px;
    margin: 0 auto;
    text-align: center;
}

    .nser #quotesWrapper .image img {
        max-width: 100%;
        max-height: 80px;
    }

.nser #quotesWrapper .quote .author {
    font-size: 18px;
    line-height: 23px;
}

.nser #quotesWrapper .quote .subtext, .nser #quotesWrapper .quote .company {
    font-size: 14px;
    line-height: 17px;
}

.nser .quotes-container button.glide__bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    background-color: transparent;
    border-color: #2f2f2f;
    margin: 0 5px;
}

.nser .quotes-container button.glide__bullet--active {
    background-color: #2f2f2f;
}

.nser .blueBlocks .title.h2 {
    font-size: 28px;
    line-height: 40px;
}

.nser .blueBlocks .description {
    max-width: 850px;
    margin: 0 auto;
}

.nser .video-container {
    min-height: 384px;
    width: 100%;
    position: relative;
}

    .nser .video-container video {
        width: 100%;
        height: 100%;
        position: absolute;
        object-fit: cover;
        z-index: 0;
    }

    .nser .video-container .blocks {
        z-index: 1;
        position: relative;
        text-align: center;
        color: #dc0000;
        padding: 40px 5px;
        max-width: 1042px;
    }

.nser .block .block-inner {
    padding: 10px;
}

    .nser .block .block-inner .block-title {
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 12px;
    }

    .nser .block .block-inner .block-description {
        padding: 0 10px;
    }

.responsive-video {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

    .responsive-video iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }

.nser .news-wrapper.container, .nser .logo-wall--1 {
    max-width: 1000px;
}

.nser main {
    padding: 40px 0;
}

@media (max-width: 360px) {
    .nser h1.h1 {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .nser .quotes-container .glide__arrow--right {
        right: -5px;
    }

    .nser .featured-block {
        padding: 50px 70px;
    }
}

@media (min-width: 990px) {
    .nser .quotes-container .glide__arrow--right {
        right: -10px;
    }
}

@media (min-width: 1200px) {
    .nser .container.quotes-container {
        max-width: 970px;
    }
}
/* #endregion */

/* #region Arizona - Israel/South Korea styles*/
.israel .israelform .umbraco-forms-caption, .israel .israelform label {
    display: none;
}

    .israel .israelform label.umbraco-forms-label, .israel .israelform label.umbraco-forms-label {
        font-weight: normal;
    }

.israel .israelform form {
    width: 100%;
    max-width: none;
}

.israel .israelform .umbraco-forms-field > div {
    max-width: none;
}

.israel .israelform input[type="text"], .israel .israelform input[type="email"], .israel .israelform input[type="tel"],
.israel .israelform textarea, .israel .israelform select {
    max-width: none;
}

.israel .israelform textarea {
    min-height: 130px;
}

.israel .israelform .btn {
    width: auto !important;
    padding: 18px 100px !important;
}

.israel .israelform .checkbox label {
    padding-left: 50px;
    line-height: 30px;
}

    .israel .israelform .checkbox label:before {
        content: "";
        position: absolute;
        left: 0;
        width: 30px;
        height: 30px;
        border-radius: 2px;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
        background-color: white;
        border: 1px solid #d3d3d3;
    }

    .israel .israelform .checkbox label:after {
        content: "";
        position: absolute;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
        opacity: 0;
        top: 1px;
        left: 8px;
        width: 15px;
        height: 23px;
        border-right: 6px solid white;
        border-bottom: 5px solid white;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .israel .israelform .checkbox label.selected:before {
        background-color: #002c54;
    }

    .israel .israelform .checkbox label.selected:after {
        opacity: 1;
    }

.israel .israelform {
    margin-bottom: 50px;
}

    .israel .israelform .umbraco-forms-submitmessage {
        display: block !important;
        text-align: center;
    }

.covid.proptech-sandbox.israel .content-wrapper.israelform {
    margin-top: 0;
}

.israel .israelform .shortanswer, .israel .israelform .shortanswerlimit255 {
    width: 100%;
    display: inline-block;
}

    .israel .israelform .shortanswer input, .israel .israelform .shortanswerlimit255 input,
    .israel .israelform .dropdown select {
        box-sizing: border-box;
        height: 50px;
        width: 300px;
        border: 1px solid #878787;
        background-color: #FFFFFF;
        padding: 10px 15px;
    }

.israel .israelform .dropdown {
    width: 100%;
    display: inline-block;
}

.israel .israelform .title {
    font-weight: normal !important;
    font-family: 'Geometria', Arial, Helvetica, sans-serif;
    margin-top: 0;
}

.israel .israelform .singlechoice label {
    display: block;
    padding-bottom: 10px;
}

.israel .israelform .singlechoice input[type="radio"] + label::before {
    box-sizing: border-box;
    height: 35px;
    width: 35px;
    border: 1px solid #979797;
    background-color: #FFFFFF;
}

.israel .israelform .singlechoice br {
    display: none;
}

.israel .israelform .singlechoice input[type="radio"]:checked + label::before {
    background-color: #979797;
}

.israel .israelform .singlechoice input[type="radio"]:checked + label::after {
    content: "";
    position: absolute;
    top: 13px;
    left: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0;
    transition: all .2s ease-out;
}

.israel .israelform .singlechoice input[type="radio"]:checked + label::after {
    opacity: 1;
}

.israel .israelform .singlechoice label {
    font-size: 18px;
    margin-top: 20px;
}

.israel .israelform .radiobuttonlist label {
    padding-left: 50px;
    font-size: 18px;
    padding-top: 6px;
    margin-top: -10px;
    font-weight: 400;
}

.israel .israelform .other.shortanswer, .israel .israelform .other.shortanswerlimit255 {
    left: 140px;
    margin-top: -62px;
    position: absolute;
    bottom: 0;
    width: 200px;
}

    .israel .israelform .other.shortanswer input, .israel .israelform .other.shortanswerlimit255 input {
        border: 1px solid #979797;
    }

.israel .israelform .umbraco-forms-navigation {
    text-align: center;
    margin-top: 60px;
}

.israel .israelform.umbraco-forms-form fieldset {
    padding: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.israel .israelform .umbraco-forms-field > div.umbraco-forms-label {
    margin-top: 20px;
}

.israel .israelform #contour input.contourError, .israel .israelform #contour textarea.contourError, .israel .israelform #contour input.input-validation-error,
.israel .israelform #contour textarea.input-validation-error .umbraco-forms-form input.contourError, .israel .israelform .umbraco-forms-form textarea.contourError,
.israel .israelform .umbraco-forms-form input.input-validation-error, .israel .israelform .umbraco-forms-form textarea.input-validation-error,
.israel .israelform input[type="text"].input-validation-error, .israel .israelform textarea.input-validation-error,
.israel .israelform select.input-validation-error {
    background-color: #FBE3E4;
    border-color: #FBC2C4;
}

.israel .israelform input[type="text"].valid, .israel .israelform input[type="email"].valid, textarea.valid {
    border: 1px solid #75a641;
}

.israel .israelform .field-validation-error {
    font-size: 11px;
    position: absolute;
    top: 6px;
    left: 3px;
    text-transform: initial;
}

.israel .israelform .umbraco-forms-field > div input.input-validation-error + span:after,
.israel .israelform .umbraco-forms-field > div textarea.input-validation-error + span:after,
.israel .israelform .umbraco-forms-field > div select.input-validation-error + span:after {
    top: 2px;
    right: -16px;
    padding: 0;
}

.israel .israelform .singlechoice .field-validation-error {
    top: 0px;
}

.israel .israelform .umbraco-forms-field > div input.valid + span:after, .israel .israelform .umbraco-forms-field > div textarea.valid + span:after,
.israel .israelform .umbraco-forms-field > div select.valid + span:after {
    right: -15px;
}

.israel .israelform .singlechoice .select-one__input-validation-error:after {
    top: -1px;
    left: 106px;
    font-size: 11px;
}

.israel .israelform .singlechoice .select-one__valid:after {
    left: 350px;
}

.israel .israelform .umbraco-forms-container {
    text-align: center;
}

.israel .israelform .singlechoice {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
}

.israel .israelform input::placeholder, .israel .israelform select {
    color: #2f2f2f;
}

@media only screen and (min-width: 768px) {
    .israel .israelform .shortanswer, .israel .israelform .shortanswerlimit255 {
        width: 49%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .israel .israelform .dropdown {
        width: 49%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .israel .israelform .umbraco-forms-container {
        text-align: left;
    }
}

@media only screen and (min-width: 998px) {
    .israel .israelform .shortanswer, .israel .israelform .shortanswerlimit255 {
        width: 33%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .israel .israelform .dropdown {
        width: 33%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .israel .israelform .umbraco-forms-container {
        text-align: left;
    }
}

@media only screen and (min-width: 720px) {
    .israel .israelform .other.shortanswer, .israel .israelform .other.shortanswerlimit255 {
        width: 300px;
    }
}


.getconnected .text-wrapper {background-color:#002857;color:#FFFFFF;padding:80px;text-align:center;}
.getconnected {padding-top:50px;padding-bottom:50px;background-size:cover;background-position: center;}
.getconnected .text-wrapper .btn {color: #FFFFFF;font-size: 16px;font-weight: normal;line-height: 20px;text-align: center;border:1px solid #DF4526;
   padding: 18px 30px;margin-top: 12px;background-color:#DF4526; border-radius:0px;}
.getconnected .text-wrapper .btn:hover {color: #DF4526;background-color:#FFFFFF;border:1px solid #DF4526;}
.getconnected .text-wrapper .title {color: #FFFFFF;font-size: 20px;font-weight: 500;line-height: 25px;}
.getconnected.inner {margin-top:50px;}
.getconnected .contain { max-width: 1054px; }

.arizona-korea-home .logo-wall {
    padding-bottom:10px !important;
}
/* #endregion */


.selectusaform {
    width:100%;
    max-width: 440px;
    margin: 0 auto;
    margin-bottom: 80px;
}
    .selectusaform .umbraco-forms-navigation {
        text-align:center;
    }
.countryprovincedropdown br {
    display: none;
}
/* #region Future48 Pages */

.future48 .hero-text__wrapper {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    max-width: 475px;
}
    .future48 .hero-text__wrapper h1{
       font-size: 38px;
       line-height: 48px;
    }
.future48 img {
    max-width: 100%;
}
.future48 .body-content {
    max-width: 780px;
}
    .future48 .body-content p {
        margin-bottom: 0px;
    }
.future48 .intro-content {
    max-width: 915px;
    padding-top: 80px;
    padding-bottom: 100px;
}
.future48 .feature-panel--2 {
    max-width: 1036px;
    padding-top: 96px;
    padding-bottom: 104px;
}
    .future48 .feature-panel--2 .copy div {
        max-width: none;
    }
        .future48 .feature-panel--2 .copy p {
            line-height: 25px;
        }
        .future48 .feature-panel--2 .copy .h3 {
            line-height: 30px;
        }
    .future48 .feature-panel--2 .block {
        min-height: 330px;
    }
        .future48 .feature-panel--2 .block:nth-child(even) .img {
            padding-left: 0px;
        }
        .future48 .feature-panel--2 .block:nth-child(odd) {
            flex-direction: row-reverse;
        }
            .future48 .feature-panel--2 .block:nth-child(odd) .img {
                padding-right: 0px;
            }

.future48 .accelerator-block {
    max-width: 1035px;
}
    .future48 .accelerator-block h2 {
        font-size: 28px;    
    }
    .future48 .accelerator-block .title {
        font-size: 18px;
        line-height: 23px;
    }

.future48 .aatn {
    padding-top: 80px;
    padding-bottom: 80px;
}
    .future48 .aatn .container {
        max-width: 810px;
    }
    .future48 .aatn img {
        max-width: 340px;
        width: 100%;
    }

.future48 .ideaMosaic {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

    .future48 .ideaMosaic .container {
        padding: 0;
    }

    .future48 .ideaMosaic .idea {
        background-color: black;
        text-align: center;
        padding: 0 40px;
        height: 20vw;
        min-height: 400px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

        .future48 .ideaMosaic .idea .idea-bg {
            background-size: cover;
            background-position: center;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
            -webkit-transition: all .5s ease-out;
            -o-transition: all .5s ease-out;
            transition: all .5s ease-out;
        }

        .future48 .ideaMosaic .idea span {
            color: white;
            text-decoration: none;
            font-weight: 300;
            position: relative;
        }

            .future48 .ideaMosaic .idea span:before, .future48 .ideaMosaic .idea span:after {
                border-color: white;
            }

            .future48 .ideaMosaic .idea span:after {
                right: -15px;
            }
            .future48 .ideaMosaic .idea .learnMore:hover:after {
                right: -20px;
            }


        .future48 .ideaMosaic .idea h2 {
            color: white;
            font-weight: 100;
            text-transform: uppercase;
            line-height: 32px;
            font-size: 26px;
        }

        .future48 .ideaMosaic .idea div:not(.idea-bg) {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            color: white;
            z-index: 3;
            width: 90%;
        }

            .future48 .ideaMosaic .idea div:not(.idea-bg) p {
                font-size: 16px;
            }
            .future48 .ideaMosaic .idea div img {
                max-height: 66px;
            }

        .future48 .ideaMosaic .idea:before {
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.5);
            position: absolute;
            -webkit-transition: all .5s ease-out;
            -o-transition: all .5s ease-out;
            transition: all .5s ease-out;
            z-index: 1;
        }

        .future48 .ideaMosaic .idea div:not(.idea-bg) span.learnMore {
            display: inline;
        }

.future48 .full-link {
    width: 100%;
    height: 100%;
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 5;
    color: transparent;
}

    .future48 .full-link:hover {
        color: transparent;
    }

.future48 .quickStartSection .button {
    padding: 20px 40px;
}

.future48 .h2 {
    font-size: 32px;
}

.future48 .programs-section .title-block .h2 {
    font-size: 36px;
}

.future48 .programs-section .container {
    max-width: 1070px;
}
.future48 .programs-section .program-block .logo {
    padding-bottom: 14px;
}
    .future48 .programs-section .program-block .logo img {
        max-height: 40px;
    }
.future48 .programs-section .program-block p {
    margin: 0px;
    line-height: 25px;
}
.future48 .programs-section .program-block a:hover {
    color: #d23f08;
}

@media all and (max-width:535px) {
    .future48 .full-link {
        vertical-align: middle;
    }
}


@media only screen and (min-width: 480px) {
    .future48 .accelerator-block h2 {
        font-size: 32px;
    }
}
@media only screen and (min-width: 768px) {
    .future48 .h2 {
        font-size: 32px;
    }
    .future48 .quickStartSection .h2 {
        font-size: 36px;
        line-height: 45px;
        max-width: 452px;
    }
    .future48 .accelerator-block .image-container {
        height: fit-content;
        border-right: 1px solid #979797;
    }
    .future48 .accelerator-block .block:nth-child(odd) .row {
        flex-direction: row-reverse;
    }
        .future48 .accelerator-block .block:nth-child(odd) .row .image-container {
            border-left: 1px solid #979797;
            border-right: none;
        }
    .future48 .accelerator-block .text-container {
        padding-left: 65px;
    }
    .future48 .accelerator-block .block:nth-child(odd) .text-container {
        padding-right: 65px;
        padding-left: 0px;
    }
    .future48 .accelerator-block .block.py-md-5 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .future48 .ideaMosaic .idea div:not(.idea-bg) p, .future48 .ideaMosaic .idea div:not(.idea-bg) span {
        visibility: hidden;
        opacity: 0;
        height: 0;
        -webkit-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
        transition: all .5s ease-out;
        display: block;
        margin: 0;
    }
    .future48 .ideaMosaic .idea {
        min-height: 320px;
    }
}

@media all and (min-width: 768px) {
    .future48 .ideaMosaic .idea span:hover:before {
        right: -15px;
    }

    .future48 .ideaMosaic .idea span:hover:after {
        right: -20px;
    }

    .future48 .ideaMosaic .idea:hover .idea-bg {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }

    .future48 .ideaMosaic .idea:hover div:not(.idea-bg) p {
        visibility: visible;
        opacity: 1;
        height: 85px;
        font-size: 16px;
    }

    .future48 .ideaMosaic .idea:hover div:not(.idea-bg) span {
        visibility: visible;
        opacity: 1;
        height: 16px;
    }

    .future48 .ideaMosaic .idea:hover:before {
        background-color: rgba(0, 0, 0, 0.7);
    }
}

    /* #endregion */


.umbraco-forms-hidden {
	display: none !important;
}