﻿/*---------------------------------------------------
	LESS Elements 0.9
---------------------------------------------------
	A set of useful LESS mixins
	More info at: http://lesselements.com
---------------------------------------------------*/
.polyfill {
    -ms-behavior: url(../backgroundsize.min.htc);
    behavior: url(../backgroundsize.min.htc);
}
/**
   * Global Reset of all HTML Elements
   *
   * Resetting all of our HTML Elements ensures a smoother
   * visual transition between browsers. If you don't believe me,
   * try temporarily commenting out this block of code, then go
   * and look at Mozilla versus Safari, both good browsers with
   * a good implementation of CSS. The thing is, all browser CSS
   * defaults are different and at the end of the day if visual
   * consistency is what we're shooting for, then we need to
   * make sure we're resetting all spacing elements.
   *
   */
*,
*:before,
*:after {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    border: 0;
    font-family: "Helvetica-Neue", "Helvetica", Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: underline;
}

div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
    border: 0;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
}

article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
    display: block;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

    table caption,
    table th,
    table td {
        text-align: left;
        vertical-align: middle;
    }

a img {
    border: 0;
}

:focus {
    outline: 0;
}
/***********  BUTTONS *******/
/***************************/
 /*Replaced all fcb748 with 90B548*/
 /*Replaced all 005373 with 1448A8*/
/***************************/
button {
    padding: 0.5rem 2rem;
    font-size: 1.6rem;
    font-weight: bold;
    vertical-align: middle;
    text-transform: uppercase;
    color: white;
    background-color: #90B548;
    border: 2px solid #90B548;
}
@media (max-width: 900px) {
    button {
        display: block;
        margin: 2rem auto;
    }
}

button:hover {
    color: #90B548;
    background-color: white;
}
/***********  BUTTONS *******/

/***********  CheckBoxes *******/
/* The container container label span and checkbox */
.cbContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1em;
    font-weight: lighter;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
    /* Hide the browser's default checkbox */
    .cbContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #999;
}
/* On mouse-over, add a grey background color */
.cbContainer:hover input ~ .checkmark {
    background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
.cbContainer input:checked ~ .checkmark {
    background-color: #2196F3;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
.cbContainer input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.cbContainer .checkmark:after {
    left: 9px;
    top: 5px;
    width: 8px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/***********  CheckBoxes *******/
/***********  MISC *******/
* {
    font-family: 'PT Sans', sans-serif;
}

body {
    background-color: white;
    width: 100%;
    max-width: 1920px;
    margin: auto;
}

    body #whiteBox {
        position: fixed;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.85);
        z-index: 9;
        display: none;
    }

#body_wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.4);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        letter-spacing: 1px;
    }
}

p {
    letter-spacing: 0;
    font-size: 1.6rem;
    line-height: 2.8rem;
    padding-bottom: 2rem;
}

@media (max-width: 900px) {
    p {
        letter-spacing: 0;
    }
}

ul {
    list-style: disc;
    color: #1448A8;
    padding-bottom: 2rem;
    margin-left: 5rem;
    list-style-position: outside;
}

@media (max-width: 900px) {
    ul {
        margin: 0;
        padding: 2rem;
    }
}

ul li {
    font-size: 1.6rem;
    line-height: 2.8rem;
    color: #1448A8;
    padding-left: 2rem;
}

@media (max-width: 900px) {
    ul li {
        font-size: 1.4rem;
        line-height: 2.4rem;
        padding-left: 1rem;
    }
}

ol {
    list-style-position: outside;
    margin-left: 3rem;
}

    ol li {
        font-size: 1.6rem;
        line-height: 2.8rem;
        padding-left: 1rem;
    }

html {
    background-color: #ddd;
}

@media (max-width: 900px) {
    .columns {
        width: 100% !important;
    }
}

.darkShadow {
    text-shadow: 0px 0px 11px rgba(0, 0, 0, 0.7);
}

.lightShadow {
    text-shadow: 0px 0px 6px rgba(255, 255, 255, 0.9);
}

.whiteText {
    color: white;
}

.orangeText {
    color: #90B548;
}

.blueText {
    color: #1448A8;
}

.bottomGrey {
    background-color: #e3e3e5;
    padding: 4rem 6rem;
    border-top: 3px solid #1448A8;
    z-index: 3;
}

@media (max-width: 900px) {
    .bottomGrey {
        padding: 2rem;
    }
}

.bottomGrey .bottomItem {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.bottomGrey p {
    display: inline-block;
    text-align: center;
    color: #1448A8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 1.5rem;
    font-size: 2.4rem;
    margin-top: 1.5rem;
    padding-bottom: 1rem;
}

.bottomGrey button {
    display: inline-block;
    margin-top: -0.75rem;
}

@media (max-width: 900px) {
    .bottomGrey button {
        margin-top: 1.5rem;
    }
}

.header {
    margin-top: 8rem;
    padding: 6rem;
    background-size: cover;
    height: 39.5rem;
    background-position: center center;
}

@media (max-width: 900px) {
    .header {
        padding: 2rem;
        height: auto;
        margin-top: 25rem;
    }
}

@media (max-width:768px){
    .header{
        margin-top:6rem;
    }
}

.header h1 {
    color: #90B548;
    font-size: 3.5rem;
    font-weight: bold;
    padding-top: 25rem;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

@media (max-width: 900px) {
    .header h1 {
        padding: 2rem 0;
        font-size: 4rem;
    }
}
/*************
  ============================
  VARIABLES 
  ============================
  *************/
/*
  * Skeleton V2.0.4
  * Copyright 2014, Dave Gamache
  * www.getskeleton.com
  * Free to use under the MIT license.
  * http://www.opensource.org/licenses/mit-license.php
  * 12/29/2014
  */
/* Table of contents
  ––––––––––––––––––––––––––––––––––––––––––––––––––
  - Grid
  - Base Styles
  - Typography
  - Links
  - Buttons
  - Forms
  - Lists
  - Code
  - Tables
  - Spacing
  - Utilities
  - Clearing
  - Media Queries
  */
/* Grid
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
    position: relative;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.column,
.columns {
    width: 100%;
    float: left;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
}
/* For devices larger than 400px */
@media (max-width: 900px) {
    .columns {
        width: 100%;
    }
}
/* For devices larger than 550px */
@media (min-width: 901px) {
    .container {
        width: 100%;
    }

    .column,
    .columns {
        margin-left: 4%;
    }

        .column:first-child,
        .columns:first-child {
            margin-left: 0;
        }

    .one.column,
    .one.columns {
        width: 4.66666667%;
    }

    .two.columns {
        width: 13.33333333%;
    }

    .twoish.columns {
        width: 20%;
    }

    .three.columns {
        width: 22%;
    }

    .four.columns {
        width: 30.66666667%;
    }

    .five.columns {
        width: 39.33333333%;
    }

    .six.columns {
        width: 48%;
    }

    .seven.columns {
        width: 56.66666667%;
    }

    .eight.columns {
        width: 65.33333333%;
    }

    .nine.columns {
        width: 74%;
    }

    .ten.columns {
        width: 82.66666667%;
    }

    .eleven.columns {
        width: 91.33333333%;
    }

    .twelve.columns {
        width: 100%;
        margin-left: 0;
    }

    .one-third.column {
        width: 30.66666667%;
    }

    .two-thirds.column {
        width: 65.33333333%;
    }

    .one-half.column {
        width: 48%;
    }
    /* Offsets */
    .offset-by-one.column,
    .offset-by-one.columns {
        margin-left: 8.66666667%;
    }

    .offset-by-two.column,
    .offset-by-two.columns {
        margin-left: 17.33333333%;
    }

    .offset-by-three.column,
    .offset-by-three.columns {
        margin-left: 26%;
    }

    .offset-by-four.column,
    .offset-by-four.columns {
        margin-left: 34.66666667%;
    }

    .offset-by-five.column,
    .offset-by-five.columns {
        margin-left: 43.33333333%;
    }

    .offset-by-six.column,
    .offset-by-six.columns {
        margin-left: 52%;
    }

    .offset-by-seven.column,
    .offset-by-seven.columns {
        margin-left: 60.66666667%;
    }

    .offset-by-eight.column,
    .offset-by-eight.columns {
        margin-left: 69.33333333%;
    }

    .offset-by-nine.column,
    .offset-by-nine.columns {
        margin-left: 78%;
    }

    .offset-by-ten.column,
    .offset-by-ten.columns {
        margin-left: 86.66666667%;
    }

    .offset-by-eleven.column,
    .offset-by-eleven.columns {
        margin-left: 95.33333333%;
    }

    .offset-by-one-third.column,
    .offset-by-one-third.columns {
        margin-left: 34.66666667%;
    }

    .offset-by-two-thirds.column,
    .offset-by-two-thirds.columns {
        margin-left: 69.33333333%;
    }

    .offset-by-one-half.column,
    .offset-by-one-half.columns {
        margin-left: 52%;
    }
}
/* Base Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
  html is set to 62.5% so that all the REM measurements throughout Skeleton
  are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
    font-size: 62.5%;
}

body {
    font-size: 1.6em;
    /* currently ems cause chrome bug misinterpreting rems on body element */
    line-height: 1.7;
    font-weight: 400;
    font-family: "texgyreadventor", "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #666666;
}

@font-face {
    font-family: 'texgyreadventor';
    src: url('../../font/texgyreadventor-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'texgyreadventor';
    src: url('../../font/texgyreadventor-bolditalic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'texgyreadventor';
    src: url('../../font/texgyreadventor-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* Typography
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 300;
}
/*  h1 { font-size: 72px; line-height: 80px; }
    h2 { font-size: 38px; line-height: 42px; }
    h3 { font-size: 40px; line-height: 44px; }
    h4 { font-size: 28px; line-height: 40px; }
    h5 { font-size: 24px; line-height: 28px; }
    h6 { font-size: 20px; line-height: 27px; }
   // p  { font-size: 19px; line-height: 26px; }
  
  @media(max-width: 749px) {
      h1 { font-size: 3.6rem; line-height: 3.8rem; }
      h2 { font-size: 2.4rem; line-height: 2.6rem; }
      h3 { font-size: 2.2rem; line-height: 2.4rem; }
      h4 { font-size: 2rem; line-height: 2.2rem; }
      h5 { font-size: 1.8rem; line-height: 2rem; }
      h6 { font-size: 1.7rem; line-height: 1.8rem; }
      //p  { font-size: 1.6rem; line-height: 1.7rem; }
  }*/
/* Larger than phablet */
/*@media (min-width: 550px) {
    h1 { font-size: 5.0rem; }
    h2 { font-size: 4.2rem; }
    h3 { font-size: 3.6rem; }
    h4 { font-size: 3.0rem; }
    h5 { font-size: 2.4rem; }
    h6 { font-size: 1.5rem; }
  }*/
p {
    margin-top: 0;
}
/* Links
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
    color: inherit;
}

    a:hover {
        color: inherit;
    }
/* Buttons
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}
/* Forms
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: 38px;
    padding: 6px 10px;
    /* The 6px vertically centers text on FF, ignored by Webkit */
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
}
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
}

    input[type="email"]:focus,
    input[type="number"]:focus,
    input[type="search"]:focus,
    input[type="text"]:focus,
    input[type="tel"]:focus,
    input[type="url"]:focus,
    input[type="password"]:focus,
    textarea:focus,
    select:focus {
        outline: 0;
    }

label,
legend {
    display: block;
    font-weight: 600;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

label > .label-body {
    display: inline-block;
    font-weight: normal;
}
/* Lists
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
    list-style: disc outside;
}

ol {
    list-style: decimal outside;
}

ol,
ul {
    padding-left: 0;
    margin-top: 0;
}

    ul ul,
    ul ol,
    ol ol,
    ol ul {
        margin: 1.5rem 0 1.5rem 3rem;
    }
/* Code
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
    padding: 0.2rem 0.5rem;
    margin: 0 0.2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #F1F1F1;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
}

pre > code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
}
/* Tables
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #E1E1E1;
}

    th:first-child,
    td:first-child {
        padding-left: 0;
    }

    th:last-child,
    td:last-child {
        padding-right: 0;
    }
/* Spacing
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Utilities
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
    width: 100%;
    box-sizing: border-box;
}

.u-max-full-width {
    max-width: 100%;
    box-sizing: border-box;
}

.u-pull-right {
    float: right;
}

.u-pull-left {
    float: left;
}
/* Misc
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
    border-width: 0;
    border-top: 1px solid #E1E1E1;
}
/* Clearing
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
    content: "";
    display: table;
    clear: both;
}
/* Media Queries
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
  Note: The best way to structure the use of media queries is to create the queries
  near the relevant code. For example, if you wanted to change the styles for buttons
  on small devices, paste the mobile query code up in the buttons section and style it
  there.
  */
/* Larger than mobile */
/* Larger than phablet (also point when grid becomes active) */
/* Larger than tablet */
/* Larger than desktop */
/* Larger than Desktop HD */
#index .indexHeader {
    position: relative;
    margin-top: 8rem;
}

@media (max-width: 900px) {
    #index .indexHeader {
        margin-top: 25rem;
    }
}

#index .indexHeader .sliderLogo {
    position: absolute;
    z-index: 5;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 35%;
}

@media (min-width: 901px) and (max-width: 1375px) {
    #index .indexHeader .sliderLogo {
        width: 20rem;
    }
}

@media (max-width: 900px) {
    #index .indexHeader .sliderLogo {
        display: none;
    }
}

#index .indexHeader .sliderLogo img {
    width: 34rem;
    display: block;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 901px) and (max-width: 1375px) {
    #index .indexHeader .sliderLogo img {
        width: 20rem;
    }
}

#index .indexHeader #indexSlider {
    width: 100%;
    max-height: 55rem;
    position: relative;
}

@media (max-width: 900px) {
    #index .indexHeader #indexSlider {
        height: auto;
    }
}

#index .indexHeader #indexSlider .slide {
    position: relative;
    height: auto;
    background-size: cover;
}

#index .indexHeader #indexSlider .slick-slide img {
    width: 100%;
}

#index .indexHeader #indexSlider .sliderContent {
    position: absolute;
    z-index: 2;
    top: 75%;
    left: 50%;
    text-align: center;
    width: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#index .indexHeader #indexSlider img {
    width: 100%;
}

@media (max-width: 900px) {
    #index .indexHeader #indexSlider img {
        display: none;
    }
}

#index .indexHeader #indexSlider h1 {
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-size: 3rem;
    line-height: 3.8rem;
    width: 35%;
    margin: 0 auto;
    color: #90B548;
    letter-spacing: 2px;
}

@media (min-width: 901px) and (max-width: 1375px) {
    #index .indexHeader #indexSlider h1 {
        font-size: 2.5rem;
        line-height: 2.8rem;
        width: 50%;
    }
}

@media (max-width: 900px) {
    #index .indexHeader #indexSlider h1 {
        font-size: 3.5rem;
        line-height: 4.5rem;
        letter-spacing: 5px;
    }
}

#index .indexHeader #indexSlider .slick-track .slick-track {
    display: none;
}

#index .indexHeader #indexSlider .slick-initialized {
    visibility: visible;
}

#index .iAmA {
    padding: 6rem;
    background-color: #f2f2f2;
}

@media (max-width: 900px) {
    #index .iAmA {
        padding: 2rem;
    }
}

#index .iAmA h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1448A8;
    font-weight: bold;
    padding-bottom: 3rem;
}

#index .iAmA a {
    text-align: center;
    text-decoration: none !important;
}

#index .iAmA .whiteBoxes {
    display: flex;
}

@media (max-width: 900px) {
    #index .iAmA .whiteBoxes {
        display: block;
    }
}

#index .iAmA .whiteBoxContent:hover {
    opacity: 0.7;
}

#index .iAmA .whiteBoxContent {
    flex: 1 0 21%;
    margin: 0 2rem;
    background-color: white;
    -webkit-box-shadow: 0px 0px 28px 5px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 0px 28px 5px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 0px 28px 5px rgba(0, 0, 0, 0.24);
    cursor: pointer;
}

@media (max-width: 900px) {
    #index .iAmA .whiteBoxContent {
        width: 100%;
        margin: 1rem 0;
        display: block;
    }
}

#index .iAmA .whiteBoxContent img {
    width: 100%;
    padding: 3rem 0 0;
}

@media (max-width: 900px) {
    #index .iAmA .whiteBoxContent img {
        display: none;
    }
}

#index .iAmA .whiteBoxContent p {
    text-align: center;
    text-transform: uppercase;
    margin: auto;
    padding: 1rem 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #1448A8;
}

#index .promise {
    background-color: white;
    display: flex;
}

    #index .promise .leftContent {
        width: 40%;
    }

        #index .promise .leftContent img {
            width: 100%;
            object-position: cover;
            margin-bottom: -1rem;
        }

@media (max-width: 900px) {
    #index .promise .leftContent {
        display: none;
    }
}

#index .promise .rightContent {
    width: 55%;
}

@media (max-width: 900px) {
    #index .promise .rightContent {
        width: 100%;
    }
}

#index .promise h3 {
    font-size: 3.2rem;
    color: #1448A8;
    font-weight: bold;
    line-height: 4.8rem;
    text-transform: uppercase;
    text-align: center;
    margin-top: 12%;
}

@media (max-width: 1200px) and (min-width: 901px) {
    #index .promise h3 {
        margin-top: 5%;
    }
}

@media (max-width: 900px) {
    #index .promise h3 {
        margin-top: 1rem;
        font-size: 2.5rem;
    }
}

#index .promise p {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 3.8rem;
    text-transform: uppercase;
    text-align: center;
    color: #90B548;
}

@media (max-width: 900px) {
    #index .promise p {
        line-height: 2.8rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 1440px) {
    #index .promise .offset-by-seven {
        margin: 0;
    }
}

@media (max-width: 1440px) {
    #index .promise .columns {
        width: 100%;
    }
}

#index .partnering {
    padding: 6rem;
    background-color: #e3e3e5;
}

@media (max-width: 900px) {
    #index .partnering {
        padding: 2rem;
    }
}

#index .partnering h2 {
    font-size: 2.5rem;
    color: #1448A8;
    font-weight: bold;
    line-height: 3.6rem;
    text-transform: uppercase;
    text-align: center;
    margin-top: 3rem;
    padding-bottom: 5rem;
}

@media (max-width: 900px) {
    #index .partnering h2 {
        padding-bottom: 3rem;
    }
}

#index .partnering .whiteBoxes {
    display: flex;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    #index .partnering .whiteBoxes {
        display: block;
    }
}

#index .partnering .whiteBoxContent {
    background-color: white;
}

#index .partnering .blueBoxContent {
    background-color: #e0f2f7;
}

#index .partnering .whiteBoxContent,
#index .partnering .blueBoxContent {
    flex: 1 0 21%;
    margin: 0 2rem;
    position: relative; /*// new*/ 
    -webkit-box-shadow: 0px 0px 28px 5px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 0px 28px 5px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 0px 28px 5px rgba(0, 0, 0, 0.24);
}

@media (max-width: 900px) {
    #index .partnering .whiteBoxContent,
    #index .partnering .blueBoxContent {
        width: 100%;
        margin: 1rem 0;
        display: block;
    }
}

#index .partnering .whiteBoxContent .whiteImg,
#index .partnering .blueBoxContent .whiteImg {
    width: 100%;
    padding: 3rem 0 0;
    margin-bottom: auto;
}

@media (max-width: 900px) {
    #index .partnering .whiteBoxContent .whiteImg,
    #index .partnering .blueBoxContent .whiteImg {
        display: none;
    }
}

#index .partnering .whiteBoxContent .blueImg,
#index .partnering .blueBoxContent .blueImg {
    bottom: 3rem;
    /*padding: 1rem 0 0;
    align-self: flex-end;*/
     position: absolute;
    width: 100%;
}

@media (max-width: 900px) {
    #index .partnering .whiteBoxContent .blueImg,
    #index .partnering .blueBoxContent .blueImg {
        display: none;
    }
}

#index .partnering .whiteBoxContent p,
#index .partnering .blueBoxContent p {
    font-size: 1.5rem;
    line-height: 2.6rem;
    padding: 2.5rem 1rem;
    text-align: center;
    vertical-align: middle;
    margin: auto;
    display: block;
    color: #1448A8;
}

#index .partnering .whiteBoxContent .textContent,
#index .partnering .blueBoxContent .textContent {
    display: flex;
    justify-content: center;
}

#index .partnering .whiteBoxContent .textContentBlue,
#index .partnering .blueBoxContent .textContentBlue {
    display: flex;
    justify-content: center;
    /*padding: 1rem 0;*/
}

@media (max-width: 900px) {
    #index .partnering .whiteBoxContent .textContentBlue,
    #index .partnering .blueBoxContent .textContentBlue {
        padding: 0;
    }
}

#index .ourStrengths {
    padding: 6rem;
    background: #1448A8;
}

@media (max-width: 900px) {
    #index .ourStrengths {
        padding: 2rem;
    }
}

#index .ourStrengths h2 {
    text-align: center;
    text-transform: uppercase;
    color: white;
    font-size: 2.6rem;
    font-weight: bold;
    padding-bottom: 3rem;
}

#index .ourStrengths img {
    height: 6.5rem;
    margin: 0 auto;
    display: block;
    padding-bottom: 1rem;
}

#index .ourStrengths p {
    text-align: center;
    text-transform: uppercase;
    color: white;
    font-size: 1.4rem;
    line-height: 2.2rem;
    font-weight: bold;
}

@media (max-width: 900px) {
    #index .ourStrengths p {
        padding-bottom: 2rem;
    }
}

#index .rotatingContainer {
    padding: 6rem;
    background-color: #f2f2f2;
}

@media (max-width: 900px) {
    #index .rotatingContainer {
        padding: 2rem;
    }
}

#index .rotatingContainer ul {
    list-style: none;
    font-size: 2rem;
    float: right;
    padding-right: 10rem;
}

@media (max-width: 900px) {
    #index .rotatingContainer ul {
        padding: 0;
        float: none;
    }
}

#index .rotatingContainer ul li {
    color: #1448A8;
    cursor: pointer;
    padding: 1rem 0;
}

    #index .rotatingContainer ul li:hover {
        font-weight: bold;
        color: #90B548;
    }

#index .rotatingContainer h4 {
    color: #90B548;
    font-size: 2.2rem;
    line-height: 3.4rem;
    padding-bottom: 1.5rem;
    font-weight: bold;
}

@media (max-width: 900px) {
    #index .rotatingContainer h4 {
        padding-top: 2rem;
    }
}

#index .rotatingContainer img {
    width: 100%;
    max-width: 20rem;
    margin: 1rem 0;
}

#index .rotatingContainer hr {
    display: none;
}

@media (max-width: 900px) {
    #index .rotatingContainer hr {
        display: block;
        height: 2px;
        background-color: #1448A8;
        margin: 1rem 0;
    }
}

#index .rotatingContainer p {
    color: #666666;
    padding-bottom: 3rem;
}

#index .rotatingContainer button {
    background-color: #90B548;
    color: white;
    border: 2px solid #90B548;
    font-size: 1.6rem;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    #index .rotatingContainer button {
        font-size: 1.4rem;
        padding: 1rem;
    }
}

#index .rotatingContainer button:hover {
    background-color: white;
    color: #90B548;
}

#index .rotatingContainer .rotatingContent {
    display: none;
}

#index .rotatingContainer .activeContent {
    display: block;
}

#index .rotatingContainer .splitContent {
    width: 49%;
    display: inline-block;
    padding: 1rem;
    vertical-align: top;
}

@media (max-width: 900px) {
    #index .rotatingContainer .splitContent {
        width: 100%;
    }
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 192rem;
    padding: 1.5rem 1.5rem 0;
    z-index: 100;
    /*#0a3586*/
    background-color: #1448A8;
    box-shadow: 1px 2px 5px rgb(0 0 0 / 50%);
}

@media (max-width: 900px) {
    .nav {
        padding: 2rem;
    }
}
@media (max-width:768px){
    .nav{
        padding:0 2rem;
    }
}

.nav .content {
    width: 100%;
}

.nav #logoNav {
    display: inline-block;
    margin: 0 auto;
    padding-left: 4rem;
    opacity: 1;
}

    .nav #logoNav img {
        /*width: 11.1rem;*/
        width: 16.1rem;
    }

@media (max-width: 1200px) {
    .nav #logoNav {
        display:flex;
        justify-content:center;
        padding: 0;
        width: 100%;
        /*text-align:center;*/
    }

    .nav #logoNav img {
        /*width: 11.1rem;*/
        margin: 0 auto;
    }
}

.nav button {
    background-color: #1448A8;
    border: 0.5px solid #577490;
    color: white;
    display: inline-block;
    margin-top: 1rem;
    font-weight: bold;
}

@media (max-width: 900px) {
    .nav button {
        width: 80%;
        margin: 1rem auto;
    }
}

.nav button:hover {
    color: white;
    background-color: #577490;
    border-color: #577490;
}

.nav .login-buttons {
    display: inline-block;
    text-align: right;
    margin-right: 20rem;
    vertical-align: middle;
    position: relative;
    float: right;
    width: 100%;
}

@media (max-width: 900px) {
    .nav .login-buttons {
        margin: 0 auto;
        display: block;
        text-align: center;
        float: none;
    }
}
.nav-sub {
    display: none;
    margin: 0 0 -10px 0;
    /*background: #eee;*/
    /*background:#1448a8;*/
    background:#123a85;
    padding: 0 0 0 15px;
}
.nav-sub-login {

     position: absolute;
    /*position:relative;*/
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
    height: 0;
    /*width:30%;*/
    overflow:hidden;
    margin:0;
    padding:0;
    z-index:101;
    transition: height .3s linear;

    /*display: none;*/
    /*margin: 0 0 -10px 0;*/
    /*background: #eee;*/
    /*background:#1448a8;*/
    background:#123a85;
    /*padding: 0 0 0 15px;*/
}
.nav-sub-show {
    /*display: block;*/
}
.menuButton {
    text-transform: uppercase;
    color: black;
    cursor: pointer;
    vertical-align: middle;
    display: inline-block;
    margin-left: 15rem;
    position: absolute;
    right: 7rem;
    margin-top: 1rem;
    z-index: 99;
    height: 4rem;
}

@media (max-width: 900px) {
    .menuButton {
        right: 2rem;
        top: -5rem;
        margin-left: 10rem;
    }
}

.menuButton p {
    display: inline-block;
    font-size: 1.6rem;
    vertical-align: middle;
}

@media (max-width: 900px) {
    .menuButton p {
        color: black;
    }
}

.menuButton svg {
    width: 3rem;
    display: inline-block;
    margin-left: 1rem;
    vertical-align: middle;
    fill: black;
    margin-top: -2rem;
}

@media (max-width: 900px) {
    .menuButton svg {
        fill: white;
    }
}

.menuButton:hover p {
    color: #90B548;
}

.menuButton:hover svg {
    fill: #90B548;
}

#nav {
    display: none;
    position: fixed;
    background-color: #f2f2f2;
    width: 40rem;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 999;
    padding-top: 2rem;
    overflow: scroll;
    -webkit-box-shadow: -16px 0px 24px -1px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: -16px 0px 24px -1px rgba(0, 0, 0, 0.55);
    box-shadow: -16px 0px 24px -1px rgba(0, 0, 0, 0.55);
}

@media (max-width: 900px) {
    #nav {
        width: 100%;
    }
}

#nav #logoNav {
    width: 15rem;
    display: inline-block;
    margin: 0 auto;
    padding-left: 4rem;
}

#nav #logoNavList {
    width: 15rem;
    cursor: pointer;
    margin: 0 auto;
    padding-left: 2rem 1.5rem;
}

#nav #menuOpen {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    cursor: pointer;
    z-index: 100;
}

#nav hr {
    width: 60%;
    height: 0.5rem;
    background-color: #1448A8;
    position: absolute;
    right: 0;
    display: block;
}

#nav .nav-list {
    width: 80%;
    display: block;
    margin: 2rem auto;
    padding: 2rem 4rem;
    border-top: 2px solid #1448A8;
    /*text-align: center;*/
    text-align: left;
    margin-left: 77px;
}

    #nav .nav-list li {
        display: block;
        width: 100%;
        color: #1448A8;
        font-weight: bold;
        font-size: 1.8rem;
        padding: 0.5rem 0;
        cursor: pointer;
    }

        #nav .nav-list li a {
            color: #1448A8;
            text-decoration: none;
        }

            #nav .nav-list li a:hover {
                color: #90B548;
            }

#blueBG {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: #1448A8;
    opacity: 0.8;
    top: 0;
    left: 0;
    display: none;
}

/*footer {
    height: 32.5rem;
    background-color: #1448A8;
    background-position: right 0;
    position: relative;
    bottom: 0;
}*/
footer{
    position: relative;
    bottom: 0;
    text-align: center;
    height: 80px;
    padding: 20px 20px 10px 20px;
    color: #fff;
    background: #1448a8;
}
footer p {
    color: white;
    letter-spacing: 0;
    padding-bottom:0;
}
@media (max-width: 900px) {
    footer {
        height: auto;
    }
}

footer a {
    text-decoration: none;
}

footer .footerLogo {
    width: 16rem;
}

footer .footerNavList {
    display: inline-block;
    list-style: none;
    float: right;
}

@media (max-width: 900px) {
    footer .footerNavList {
        float: none;
    }
}

footer .footerNavList li {
    display: inline-block;
    padding: 0 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

@media (max-width: 900px) {
    footer .footerNavList li {
        display: block;
        padding: 1rem;
    }
}

footer .footerNavList li:hover {
    color: #90B548;
}

footer .linkedin {
    width: 6rem;
    /*width: 5.2rem;*/
    height:4rem;
    margin-top: 8px;
    border-radius: 5px;
}

footer .youtube {
    /*height:4rem;*/
    width: 6rem;
    margin-top: 8px;
    margin-left:10px;
    border-radius: 5px;
}
footer .soc {
    height: 4.5rem;
    width: 8rem;
    margin-left: 10px;
    margin-top:5px;
    border-radius: 5px;
}

footer p {
    color: white;
    letter-spacing: 0;
}

footer .footHeader {
    font-weight: bold;
    font-size: 1.7rem;
    line-height: 2.8rem;
    padding-bottom: 1rem;
}

footer .rightSide {
    padding-top: 6rem;
    float: right;
}

@media (max-width: 900px) {
    footer .rightSide {
        padding: 0;
        float: none;
    }
}

footer .footLink {
    font-size: 1rem;
    line-height: 2.8rem;
    font-weight: bold;
    padding-bottom: 0;
}

footer .footerCopy {
    font-size: 1.2rem;
    line-height: 2.9rem;
    font-weight: bold;
}

footer .footerText {
    font-size: 1.7rem;
    line-height: 2.9rem;
}

.overlayColor {
    padding: 6rem;
}

#videoBox,
#daBox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 120;
    height: 100%;
    background-color: rgba(0, 83, 115, 0.8);
}

    #videoBox .videoBoxContent,
    #daBox .videoBoxContent {
        background-color: white;
        display: block;
        position: fixed;
        margin-top: 10rem;
        width: 40%;
        left: 50%;
        z-index: 130;
        transform: translateX(-50%);
        padding: 4rem;
        -webkit-box-shadow: 0px 0px 34px 6px rgba(0, 0, 0, 0.85);
        -moz-box-shadow: 0px 0px 34px 6px rgba(0, 0, 0, 0.85);
        box-shadow: 0px 0px 34px 6px rgba(0, 0, 0, 0.85);
    }

@media (max-width: 900px) {
    #videoBox .videoBoxContent,
    #daBox .videoBoxContent {
        width: 90%;
        padding: 2rem;
    }
}

#videoBox .videoBoxContent img,
#daBox .videoBoxContent img {
    width: 80%;
    margin: 0 auto;
    display: block;
}

@media (max-width: 900px) {
    #videoBox .videoBoxContent img,
    #daBox .videoBoxContent img {
        width: 100%;
    }
}

#videoBox .videoBoxContent button,
#daBox .videoBoxContent button {
    margin-top: 1rem;
    right: 4rem;
}

#videoBox .videoBoxContent video,
#daBox .videoBoxContent video {
    width: 100%;
    margin: 0 auto;
    display: block;
}

#videoBox .daBoxContent,
#daBox .daBoxContent {
    background-color: white;
    display: block;
    position: fixed;
    margin-top: 10rem;
    width: 60%;
    max-height: 80%;
    left: 50%;
    z-index: 130;
    transform: translateX(-50%);
    padding: 4rem;
    -webkit-box-shadow: 0px 0px 34px 6px rgba(0, 0, 0, 0.85);
    -moz-box-shadow: 0px 0px 34px 6px rgba(0, 0, 0, 0.85);
    box-shadow: 0px 0px 34px 6px rgba(0, 0, 0, 0.85);
}

@media (max-width: 900px) {
    #videoBox .daBoxContent,
    #daBox .daBoxContent {
        width: 90%;
        padding: 2rem;
    }
}

#videoBox .daBoxContent img,
#daBox .daBoxContent img {
    max-width: 100%;
    height: 60%;
    margin: 0 auto;
    display: block;
}

@media (max-width: 900px) {
    #videoBox .daBoxContent img,
    #daBox .daBoxContent img {
        width: 100%;
    }
}

#videoBox .daBoxContent button,
#daBox .daBoxContent button {
    margin-top: 1rem;
    right: 4rem;
}

#videoBox .blueBackground,
#daBox .blueBackground {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 83, 115, 0.8);
}

#videoBox #daSlideShow,
#daBox #daSlideShow {
    width: 90%;
}

    #videoBox #daSlideShow .slick-dots,
    #daBox #daSlideShow .slick-dots {
        position: absolute;
        bottom: -8rem;
        left: 10rem;
        top: auto;
    }

@media (max-width: 900px) {
    #videoBox #daSlideShow .slick-dots,
    #daBox #daSlideShow .slick-dots {
        bottom: -5.5rem;
    }
}

#videoBox #daSlideShow .slick-prev:before,
#daBox #daSlideShow .slick-prev:before {
    background: url("../../ocozzio/img/arrow_left_grey.svg");
}

#videoBox #daSlideShow .slick-prev:after,
#daBox #daSlideShow .slick-prev:after {
    background: url("../../ocozzio/img/arrow_right_grey.svg");
}

#solutions .header {
    background-image: url("../../ocozzio/img/solutions-banner.jpg");
}

#solutions .topBar {
    padding: 6rem;
    background-color: white;
}

@media (max-width: 900px) {
    #solutions .topBar {
        padding: 2rem;
    }
}

#solutions .topBar h2 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 3.8rem;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 2rem;
    color: #1448A8;
}

@media (max-width: 900px) {
    #solutions .topBar h2 {
        font-size: 2rem;
        line-height: 3rem;
    }
}

#solutions .topBar p {
    color: #1448A8;
    text-align: center;
    padding-bottom: 0;
}

#solutions .topBar ul {
    margin-left: 4rem;
}

    #solutions .topBar ul li {
        font-size: 1.8rem;
        line-height: 3.2rem;
    }

#solutions .topBar button {
    background-color: #90B548;
    color: white;
    border: 2px solid #90B548;
    text-align: center;
    display: block;
    margin: 1rem auto;
}

    #solutions .topBar button:hover {
        background-color: white;
        color: #90B548;
    }

#solutions .solNav {
    background-color: #1448A8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    #solutions .solNav {
        display: block;
        padding: 1rem;
    }
}

#solutions .solNav .topBarButton {
    justify-content: space-evenly;
    position: relative;
    align-items: stretch;
    flex-grow: 0;
    flex-basis: auto;
    flex-shrink: 1;
    color: #90B548;
    padding: 2rem;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    text-transform: uppercase;
    border-left: 2px solid white;
    height: 100%;
}

@media (max-width: 900px) {
    #solutions .solNav .topBarButton {
        border-left: 0;
        border-bottom: 1px solid white;
        padding: 1rem;
    }
}

#solutions .solNav .topBarButton .smallTxt {
    text-transform: capitalize;
    font-size: 1.2rem;
}

#solutions .solNav .topBarButton:last-child {
    border-right: 2px solid white;
}

@media (max-width: 900px) {
    #solutions .solNav .topBarButton:last-child {
        border-right: 0;
        border-bottom: 0;
    }
}

#solutions .solNav .topBarButton:hover,
#solutions .solNav .topBarButtonActive {
    background-color: #577490;
}

#solutions .lightBlueBG {
    background-color: #577490;
    padding: 6rem;
}

@media (max-width: 900px) {
    #solutions .lightBlueBG {
        padding: 2rem;
    }
}

#solutions .lightBlueBG h4 {
    color: white;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
}

    #solutions .lightBlueBG h4:after {
        content: 'For more information please contact:';
        color: transparent;
        width: auto;
        position: absolute;
        bottom: -0.5rem;
        border-bottom: 1px solid #90B548;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

#solutions .lightBlueBG p {
    font-size: 1.8rem;
    line-height: 3.6rem;
    color: white;
    text-align: center;
    padding-bottom: 0;
}

#solutions .lightBlueBG a {
    font-style: italic;
}

#solutions .greyBG {
    background-color: #f2f2f2;
    display: flex;
}

@media (max-width: 900px) {
    #solutions .greyBG {
        display: block;
    }
}

#solutions .greyBG .left60 {
    width: 60%;
    padding: 4rem 4rem 4rem 15%;
    vertical-align: top;
}

@media (max-width: 900px) {
    #solutions .greyBG .left60 {
        padding: 2rem;
        width: 100%;
    }
}

#solutions .greyBG .right60 {
    width: 60%;
    padding: 4rem 6rem 0 4rem;
    vertical-align: top;
}

@media (max-width: 900px) {
    #solutions .greyBG .right60 {
        padding: 2rem;
        width: 100%;
    }
}

#solutions .greyBG .right40 {
    width: 40%;
}

    #solutions .greyBG .right40 img {
        min-height: 100%;
        min-width: 100%;
        display: block;
        text-align: right;
        right: 0;
    }

@media (max-width: 900px) {
    #solutions .greyBG .right40 {
        width: 100%;
    }

        #solutions .greyBG .right40 img {
            display: none;
        }
}

#solutions .greyBG .left40 {
    width: 40%;
    overflow: hidden;
}

    #solutions .greyBG .left40 img {
        height: 100%;
        object-position: top left;
        display: block;
        text-align: left;
        left: 0;
    }

@media (max-width: 900px) {
    #solutions .greyBG .left40 {
        width: 100%;
    }

        #solutions .greyBG .left40 img {
            display: none;
        }
}

#solutions .greyBG .middle100 {
    display: block;
    width: 100%;
    padding: 4rem 15%;
}

@media (max-width: 900px) {
    #solutions .greyBG .middle100 {
        padding: 2rem;
    }
}

#solutions .middleGrey {
    background-color: #f2f2f2;
    padding: 6rem;
}

@media (max-width: 900px) {
    #solutions .middleGrey {
        padding: 2rem;
    }
}

#solutions .middleWhite {
    background-color: white;
    padding: 6rem;
}

@media (max-width: 900px) {
    #solutions .middleWhite {
        padding: 2rem;
    }
}

#solutions #teamCare h3 {
    text-align: center;
}

#solutions #deltaAnalytics p {
    width: 80%;
}

@media (max-width: 900px) {
    #solutions #deltaAnalytics p {
        width: 100%;
    }
}

#solutions .upper {
    text-transform: uppercase;
}

#solutions .middleGrey h3,
#solutions .middleWhite h3,
#solutions .greyBG h3 {
    color: #1448A8;
    text-transform: uppercase;
    font-size: 2.4rem;
    line-height: 2.8rem;
    padding-bottom: 1.5rem;
    padding-top: 2rem;
    font-weight: bold;
}

#solutions .middleGrey h4,
#solutions .middleWhite h4,
#solutions .greyBG h4 {
    color: #1448A8;
    font-weight: bold;
    font-size: 1.4rem;
}

#solutions .middleGrey .disclaimerText,
#solutions .middleWhite .disclaimerText,
#solutions .greyBG .disclaimerText {
    font-size: 1.4rem;
}

#solutions .middleGrey p,
#solutions .middleWhite p,
#solutions .greyBG p {
    color: #1448A8;
}

#solutions .middleGrey button,
#solutions .middleWhite button,
#solutions .greyBG button {
    background-color: #90B548;
    border: 2px solid #90B548;
    margin-bottom: 2rem;
}

    #solutions .middleGrey button:hover,
    #solutions .middleWhite button:hover,
    #solutions .greyBG button:hover {
        background-color: white;
        color: #90B548;
    }

#solutions .middleGrey .teamCareLogo,
#solutions .middleWhite .teamCareLogo,
#solutions .greyBG .teamCareLogo {
    width: 80%;
    display: block;
    margin: 0 auto 2rem;
    max-width: 25rem;
}

#solutions .middleGrey .whiteBox,
#solutions .middleWhite .whiteBox,
#solutions .greyBG .whiteBox {
    width: 100%;
    background-color: white;
    border-radius: 2rem;
    margin: 0 auto;
    padding: 3rem;
}

@media (max-width: 900px) {
    #solutions .middleGrey .whiteBox,
    #solutions .middleWhite .whiteBox,
    #solutions .greyBG .whiteBox {
        padding: 1rem;
    }
}

#solutions .middleGrey .whiteBox h2,
#solutions .middleWhite .whiteBox h2,
#solutions .greyBG .whiteBox h2 {
    color: #1448A8;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 3.6rem;
    text-align: center;
    padding-bottom: 3rem;
}

@media (max-width: 900px) {
    #solutions .middleGrey .whiteBox h2,
    #solutions .middleWhite .whiteBox h2,
    #solutions .greyBG .whiteBox h2 {
        font-size: 2.5rem;
        line-height: 3.5rem;
    }
}

#solutions .middleGrey .whiteBox .whiteBoxButtons,
#solutions .middleWhite .whiteBox .whiteBoxButtons,
#solutions .greyBG .whiteBox .whiteBoxButtons {
    text-align: center;
    margin: 0 auto;
}

#solutions .middleGrey .whiteBox .whiteBoxes,
#solutions .middleWhite .whiteBox .whiteBoxes,
#solutions .greyBG .whiteBox .whiteBoxes {
    padding: 0.2rem;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    #solutions .middleGrey .whiteBox .whiteBoxes,
    #solutions .middleWhite .whiteBox .whiteBoxes,
    #solutions .greyBG .whiteBox .whiteBoxes {
        display: block;
    }
}

#solutions .middleGrey .whiteBox .whiteBoxes .whiteBoxesContent,
#solutions .middleWhite .whiteBox .whiteBoxes .whiteBoxesContent,
#solutions .greyBG .whiteBox .whiteBoxes .whiteBoxesContent {
    flex: 1 0 21%;
    padding: 2rem 0.5rem;
}

@media (max-width: 900px) {
    #solutions .middleGrey .whiteBox .whiteBoxes .whiteBoxesContent,
    #solutions .middleWhite .whiteBox .whiteBoxes .whiteBoxesContent,
    #solutions .greyBG .whiteBox .whiteBoxes .whiteBoxesContent {
        display: block;
        width: 100%;
        padding: 1rem 0;
    }

        #solutions .middleGrey .whiteBox .whiteBoxes .whiteBoxesContent .extra,
        #solutions .middleWhite .whiteBox .whiteBoxes .whiteBoxesContent .extra,
        #solutions .greyBG .whiteBox .whiteBoxes .whiteBoxesContent .extra {
            display: none;
        }
}

#solutions .middleGrey .whiteBox .whiteBoxes .whiteBoxesContent h3,
#solutions .middleWhite .whiteBox .whiteBoxes .whiteBoxesContent h3,
#solutions .greyBG .whiteBox .whiteBoxes .whiteBoxesContent h3 {
    color: #1448A8;
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: 3rem;
    text-transform: uppercase;
}

#solutions .middleGrey .whiteBox .whiteBoxes .whiteBoxesContent img,
#solutions .middleWhite .whiteBox .whiteBoxes .whiteBoxesContent img,
#solutions .greyBG .whiteBox .whiteBoxes .whiteBoxesContent img {
    width: 12rem;
    margin: 0 auto;
    display: block;
    padding-bottom: 3rem;
}

#solutions .middleGrey .whiteBox .whiteBoxes .whiteBoxesContent p,
#solutions .middleWhite .whiteBox .whiteBoxes .whiteBoxesContent p,
#solutions .greyBG .whiteBox .whiteBoxes .whiteBoxesContent p {
    font-size: 1.4rem;
    color: #1448A8;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.8rem;
    padding: 0 1rem;
}

#solutions .middleGrey .whiteInlineBox,
#solutions .middleWhite .whiteInlineBox,
#solutions .greyBG .whiteInlineBox {
    display: flex;
    background-color: white;
    width: 80%;
    margin: 0 auto;
    padding: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    #solutions .middleGrey .whiteInlineBox,
    #solutions .middleWhite .whiteInlineBox,
    #solutions .greyBG .whiteInlineBox {
        display: block;
        width: 100%;
        padding: 1.5rem;
    }
}

#solutions .middleGrey .whiteInlineBox .whiteInlineBoxContent,
#solutions .middleWhite .whiteInlineBox .whiteInlineBoxContent,
#solutions .greyBG .whiteInlineBox .whiteInlineBoxContent {
    padding: 5rem 1rem 0;
    flex-grow: 1;
    flex-basis: 0;
}

@media (max-width: 900px) {
    #solutions .middleGrey .whiteInlineBox .whiteInlineBoxContent,
    #solutions .middleWhite .whiteInlineBox .whiteInlineBoxContent,
    #solutions .greyBG .whiteInlineBox .whiteInlineBoxContent {
        display: block;
        width: 100%;
        padding: 1rem;
    }
}

#solutions .middleGrey .whiteInlineBox .whiteInlineBoxContent .whiteSquareImg,
#solutions .middleWhite .whiteInlineBox .whiteInlineBoxContent .whiteSquareImg,
#solutions .greyBG .whiteInlineBox .whiteInlineBoxContent .whiteSquareImg {
    width: 5.9rem;
    height: 5.9rem;
    margin: 0 auto 3rem;
    display: block;
}

@media (max-width: 900px) {
    #solutions .middleGrey .whiteInlineBox .whiteInlineBoxContent .whiteSquareImg,
    #solutions .middleWhite .whiteInlineBox .whiteInlineBoxContent .whiteSquareImg,
    #solutions .greyBG .whiteInlineBox .whiteInlineBoxContent .whiteSquareImg {
        margin: 0 auto 1rem;
    }
}

#solutions .middleGrey .whiteInlineBox .whiteInlineBoxContent .whiteSquareImg img,
#solutions .middleWhite .whiteInlineBox .whiteInlineBoxContent .whiteSquareImg img,
#solutions .greyBG .whiteInlineBox .whiteInlineBoxContent .whiteSquareImg img {
    width: 100%;
    margin: auto auto;
    display: block;
}

#solutions .middleGrey .whiteInlineBox .whiteInlineBoxContent p,
#solutions .middleWhite .whiteInlineBox .whiteInlineBoxContent p,
#solutions .greyBG .whiteInlineBox .whiteInlineBoxContent p {
    font-size: 1.5rem;
    color: #1448A8;
    letter-spacing: 0;
    font-weight: bold;
    text-align: center;
    line-height: 1.8rem;
}

#solutions .middleGrey .whiteInlineBox .whiteInlineBoxContent .lightBlueText,
#solutions .middleWhite .whiteInlineBox .whiteInlineBoxContent .lightBlueText,
#solutions .greyBG .whiteInlineBox .whiteInlineBoxContent .lightBlueText {
    color: #577490;
}

#solutions .bottomContent {
    display: none;
}

#solutions .active {
    display: block;
}

#members .header {
    background-image: url("../../ocozzio/img/members-banner.jpg");
}

#members .middleWhite {
    padding: 6rem;
    background-color: white;
}

@media (max-width: 900px) {
    #members .middleWhite {
        padding: 2rem;
    }
}

#members .middleWhite img {
    width: 100%;
}

@media (max-width: 900px) {
    #members .middleWhite img {
        display: none;
    }
}

#members .middleWhite h2 {
    color: #1448A8;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 4.2rem;
    text-transform: uppercase;
    padding-bottom: 2rem;
    text-align: center;
}

#members .middleWhite p {
    color: #1448A8;
    padding-bottom: 3rem;
}

#members .middleWhite .headText {
    color: #1448A8;
    text-transform: uppercase;
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding-bottom: 2rem;
    font-weight: bold;
    width: 70%;
}

@media (max-width: 900px) {
    #members .middleWhite .headText {
        width: 100%;
    }
}

#members ul {
    width: 60%;
    display: inline-block;
}

@media (max-width: 600px) {
    #members ul {
        width: 100%;
        display: block;
        margin: 0 auto;
    }
}

#members .buttonRight {
    width: 25%;
    display: inline-block;
    float: right;
    padding-left: 1rem;
    border-left: 1px solid #1448A8;
}

    #members .buttonRight button {
        display: block;
        margin: 0.5rem 0;
        /*width: 15rem;*/
        width: 25rem;
        padding: 0.5rem 1rem;
    }

@media (max-width: 600px) {
    #members .buttonRight {
        width: 100%;
        display: block;
        float: none;
        margin: 0 auto;
    }
}

#employers .header {
    background-image: url("../../ocozzio/img/employers-banner.jpg");
}

#employers .topWhite {
    padding: 6rem;
    background-color: white;
}

@media (max-width: 900px) {
    #employers .topWhite {
        padding: 2rem;
    }
}

#employers .topWhite p {
    color: #1448A8;
}

#employers .middleGrey {
    padding: 6rem;
    background-color: #f2f2f2;
}

@media (max-width: 900px) {
    #employers .middleGrey {
        padding: 2rem;
    }
}

#employers .middleGrey p {
    color: #1448A8;
    padding-bottom: 3rem;
}

@media (max-width: 900px) {
    #employers .middleGrey p {
        padding-bottom: 3rem;
    }
}

#employers .middleGrey h2 {
    font-size: 2.5rem;
    line-height: 3.6rem;
    font-weight: bold;
    color: #1448A8;
    padding-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    #employers .middleGrey h2 {
        font-size: 2.5rem;
        line-height: 3.5rem;
    }
}

#employers .commitment {
    background-color: #062d48;
    display: flex;
}

@media (max-width: 900px) {
    #employers .commitment {
        display: block;
    }
}

#employers .commitment .textContent {
    width: 80%;
    float: right;
}

@media (max-width: 900px) {
    #employers .commitment .textContent {
        width: 100%;
        float: none;
    }
}

#employers .commitment .left60 {
    width: 60%;
    padding: 8rem;
}

    #employers .commitment .left60 h3 {
        color: #90B548;
        font-size: 2.2rem;
        line-height: 4.4rem;
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        padding-bottom: 2rem;
    }

    #employers .commitment .left60 ul {
        margin-left: 9rem;
        width: 70%;
    }

@media (max-width: 900px) {
    #employers .commitment .left60 ul {
        width: 100%;
        margin-left: 2rem;
    }
}

#employers .commitment .left60 ul li {
    color: white;
}

@media (max-width: 900px) {
    #employers .commitment .left60 {
        padding: 2rem;
        width: 100%;
    }
}

#employers .commitment .right40 {
    width: 40%;
}

@media (max-width: 900px) {
    #employers .commitment .right40 {
        display: none;
    }
}

#employers .commitment .right40 img {
    height: 100%;
    min-width: 100%;
}

#employers .tools {
    display: flex;
    background-color: white;
}

@media (max-width: 900px) {
    #employers .tools {
        display: block;
    }
}

#employers .tools .textContent {
    width: 80%;
}

@media (max-width: 900px) {
    #employers .tools .textContent {
        width: 100%;
    }
}

#employers .tools .left40 {
    width: 40%;
    overflow-x: hidden;
    overflow-y: hidden;
}

@media (max-width: 900px) {
    #employers .tools .left40 {
        display: none;
    }
}

#employers .tools .left40 img {
    height: 100%;
    min-width: 100%;
    object-position: left;
}

#employers .tools .right60 {
    width: 60%;
    padding: 8rem;
}

    #employers .tools .right60 h3 {
        color: #1448A8;
        font-size: 2.2rem;
        line-height: 3.5rem;
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        padding-bottom: 1.5rem;
    }

    #employers .tools .right60 h4 {
        color: #90B548;
        font-size: 1.8rem;
        line-height: 3.5rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
    }

    #employers .tools .right60 ul {
        margin-left: 14.5rem;
    }

@media (max-width: 900px) {
    #employers .tools .right60 ul {
        margin: 0 auto;
        display: block;
        width: 60%;
    }
}

@media (max-width: 900px) {
    #employers .tools .right60 {
        padding: 2rem;
        width: 100%;
    }
}

#employers .tools .right60 button {
    margin-left: 10rem;
}

@media (max-width: 900px) {
    #employers .tools .right60 button {
        margin: 0 auto;
    }
}

#providers .header {
    background-image: url("../../ocozzio/img/providers-banner.jpg");
}

#providers .topWhite {
    padding: 6rem;
    background-color: white;
}

@media (max-width: 900px) {
    #providers .topWhite {
        padding: 2rem;
    }
}

#providers .topWhite h2 {
    font-size: 2.5rem;
    line-height: 3.6rem;
    font-weight: bold;
    color: #1448A8;
    padding-bottom: 2rem;
    text-transform: uppercase;
}

#providers .topWhite p {
    color: #1448A8;
    padding-bottom: 0;
}

#providers .portal {
    background-color: #062d48;
    display: flex;
}

@media (max-width: 900px) {
    #providers .portal {
        display: block;
    }
}

#providers .portal .textContent {
    width: 80%;
    float: right;
    vertical-align: middle;
    padding-top: 5rem;
}

@media (max-width: 900px) {
    #providers .portal .textContent {
        width: 100%;
        float: none;
        padding-top: 0;
    }
}

#providers .portal button {
    margin: 0 auto;
    display: block;
    text-align: center;
}

#providers .portal .left60 {
    width: 60%;
    padding: 8rem;
}

    #providers .portal .left60 h3 {
        color: #90B548;
        font-size: 2.8rem;
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        padding-bottom: 2rem;
    }

@media (max-width: 900px) {
    #providers .portal .left60 h3 {
        padding-bottom: 0;
    }
}

#providers .portal .left60 ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

@media (max-width: 900px) {
    #providers .portal .left60 ul {
        padding: 1rem 1rem 2rem;
    }
}

#providers .portal .left60 ul li {
    color: white;
    text-align: center;
    padding-left: 0;
}

@media (max-width: 900px) {
    #providers .portal .left60 {
        padding: 1rem;
        width: 100%;
    }
}

#providers .portal .left60 button {
    margin-bottom: 1rem;
}

#providers .portal .right40 {
    width: 40%;
}

@media (max-width: 900px) {
    #providers .portal .right40 {
        display: none;
    }
}

#providers .portal .right40 img {
    height: 100%;
    min-width: 100%;
}

#providers .middleWhite {
    padding: 6rem;
    background-color: white;
}

@media (max-width: 900px) {
    #providers .middleWhite {
        padding: 2rem;
    }
}

#providers .middleWhite p {
    color: #1448A8;
    float: left;
    width: 85%;
    padding-bottom: 2rem;
}

@media (max-width: 900px) {
    #providers .middleWhite p {
        width: 100%;
        padding-bottom: 3rem;
    }
}

#providers .middleWhite h3 {
    font-size: 2.2rem;
    line-height: 3.6rem;
    font-weight: bold;
    color: #1448A8;
    padding-bottom: 3rem;
    text-transform: uppercase;
}

#providers .middleWhite img {
    width: 10rem;
    float: right;
    vertical-align: top;
}

@media (max-width: 900px) {
    #providers .middleWhite img {
        display: none;
    }
}

#providers .middleGrey {
    padding: 6rem;
    background-color: #f2f2f2;
}

@media (max-width: 900px) {
    #providers .middleGrey {
        padding: 2rem;
    }
}

#providers .middleGrey p {
    color: #1448A8;
    padding-bottom: 2rem;
}

@media (max-width: 900px) {
    #providers .middleGrey p {
        padding-bottom: 3rem;
    }
}

#providers .middleGrey h3 {
    font-size: 2.2rem;
    line-height: 3.6rem;
    font-weight: bold;
    color: #1448A8;
    padding-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
}

#providers .middleGrey .whiteBox {
    width: 100%;
    padding: 5rem 7rem;
    background-color: white;
    margin: 0 auto 3rem;
}

@media (max-width: 900px) {
    #providers .middleGrey .whiteBox {
        display: block;
        padding: 1rem;
    }
}

#providers .middleGrey .whiteBox h3 {
    color: #1448A8;
    text-transform: uppercase;
    font-size: 2.4rem;
    line-height: 2.8rem;
    font-weight: bold;
}

@media (max-width: 900px) {
    #providers .middleGrey .whiteBox h3 {
        font-size: 2rem;
    }
}

@media (max-width: 900px) {
    #providers .middleGrey .whiteBox ul {
        margin-left: 2rem;
    }
}

#providers .middleGrey .whiteBox .whiteBoxContent {
    width: 48%;
    padding: 1rem;
    display: inline-block;
    vertical-align: top;
}

@media (max-width: 900px) {
    #providers .middleGrey .whiteBox .whiteBoxContent {
        width: 100%;
        display: block;
        padding: 0;
    }
}

#providers .middleGrey .whiteBox .whiteBoxContent .blue {
    border-radius: 0;
    color: #1448A8;
    border: 2px solid #1448A8;
    margin: 0;
    display: inline-block;
    padding: 0.5rem 2rem;
    letter-spacing: 1px;
    font-size: 1.4rem;
}

@media (max-width: 900px) {
    #providers .middleGrey .whiteBox .whiteBoxContent .blue {
        margin: 0.5rem auto;
        text-align: center;
        display: block;
        font-size: 1.4rem;
        padding: 1rem;
    }
}

#providers .middleGrey .whiteBox .whiteBoxButtons {
    margin-left: 4rem;
    padding-top: 1rem;
}

@media (max-width: 900px) {
    #providers .middleGrey .whiteBox .whiteBoxButtons {
        margin: 0;
    }
}

#providers .middleGrey .whiteBox .whiteBoxButtons .blue {
    border-radius: 0;
    color: #1448A8;
    border: 2px solid #1448A8;
    margin: 0;
    display: inline-block;
    padding: 0.5rem 2rem;
    letter-spacing: 1px;
    font-size: 1.4rem;
}

@media (max-width: 900px) {
    #providers .middleGrey .whiteBox .whiteBoxButtons .blue {
        margin: 0.5rem auto;
        text-align: center;
        display: block;
        font-size: 1.4rem;
        padding: 1rem;
    }
}

#brokers .header {
    background-image: url("../../ocozzio/img/brokers-banner.jpg");
}

#brokers .topWhite {
    padding: 6rem;
    background-color: white;
}

@media (max-width: 900px) {
    #brokers .topWhite {
        padding: 2rem;
    }
}

#brokers .topWhite h2 {
    font-size: 2.5rem;
    line-height: 3.6rem;
    font-weight: bold;
    color: #1448A8;
    padding-bottom: 3rem;
    text-transform: uppercase;
}

#brokers .topWhite p {
    color: #1448A8;
}

    #brokers .topWhite p:last-child {
        padding-bottom: 0;
    }

#brokers .registered {
    background-color: #062d48;
    display: flex;
}

@media (max-width: 900px) {
    #brokers .registered {
        display: block;
    }
}

#brokers .registered .textContent {
    padding-top: 6rem;
    width: 80%;
    float: right;
}

@media (max-width: 900px) {
    #brokers .registered .textContent {
        width: 100%;
        float: none;
        padding-top: 0;
    }
}

#brokers .registered button {
    margin: 0 auto;
    display: block;
    text-align: center;
}

#brokers .registered .left60 {
    width: 60%;
    padding: 8rem;
}

    #brokers .registered .left60 h3 {
        color: #90B548;
        font-size: 2.8rem;
        line-height: 4.4rem;
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        padding-bottom: 2rem;
    }

@media (900px) {
    #brokers .registered .left60 h3 {
        padding-bottom: 1rem;
    }
}

#brokers .registered .left60 ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

@media (max-width: 900px) {
    #brokers .registered .left60 ul {
        padding: 0;
    }
}

#brokers .registered .left60 ul li {
    color: white;
    text-align: center;
    padding: 1rem 0;
}

@media (max-width: 900px) {
    #brokers .registered .left60 {
        padding: 2rem;
        width: 100%;
    }
}

#brokers .registered .right40 {
    width: 40%;
}

@media (max-width: 900px) {
    #brokers .registered .right40 {
        display: none;
    }
}

#brokers .registered .right40 img {
    height: 100%;
    min-width: 100%;
}

#brokers .middleBlue {
    background-color: #1448A8;
    padding: 6rem;
}

@media (max-width: 900px) {
    #brokers .middleBlue {
        padding: 2rem;
    }
}

#brokers .middleBlue p {
    color: white;
    text-align: center;
    font-size: 1.8rem;
    width: 80%;
    margin: 0 auto;
    display: block;
}

@media (max-width: 900px) {
    #brokers .middleBlue p {
        width: 100%;
    }
}

#brokers .middleBlue a {
    font-style: italic;
}

#brokers .middleBlue .buttons {
    display: block;
    margin: 0 auto;
    text-align: center;
}

#brokers .middleBlue button {
    margin: 1rem;
}

@media (max-width: 900px) {
    #brokers .middleBlue button {
        text-align: center;
        margin: 1rem auto;
        display: block;
    }
}

#brokers .middleGrey {
    padding: 6rem;
    background-color: #f2f2f2;
}

@media (max-width: 900px) {
    #brokers .middleGrey {
        padding: 2rem;
    }
}

#brokers .middleGrey p {
    color: #1448A8;
    padding-bottom: 7rem;
}

@media (max-width: 900px) {
    #brokers .middleGrey p {
        padding-bottom: 3rem;
    }
}

#brokers .middleGrey h3 {
    font-size: 2.2rem;
    line-height: 3.6rem;
    font-weight: bold;
    color: #1448A8;
    padding-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
}

#brokers .middleGrey img {
    width: 100%;
}

@media (max-width: 900px) {
    #brokers .middleGrey img {
        display: none;
    }
}

#brokers .deltaFund {
    padding: 6rem;
    background-color: white;
}

@media (max-width: 900px) {
    #brokers .deltaFund {
        padding: 2rem;
    }
}

#brokers .deltaFund img {
    margin: 2rem auto 4rem;
    display: block;
    max-width: 37.2rem;
    width: 100%;
}

#brokers .deltaFund button {
    margin-top: 2rem;
}

#brokers .deltaFund h4 {
    font-size: 2.2rem;
    line-height: 2.8rem;
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 8rem;
    color: #1448A8;
}

#brokers .deltaFund p {
    color: #1448A8;
}

#brokers .deltaFund a {
    text-decoration: underline;
    color: #1448A8;
}

    #brokers .deltaFund a:hover {
        font-weight: bold;
        color: #577490;
    }

/*///////////////////////////////////////////        Privacy AND  CCPA  /////////////////////////////////*/
#privacyPolicy .header {
    background-image: url("../../ocozzio/img/privacy-compliance-banner.jpg");
}

#privacyPolicy .resourceNav {
    background-color: #1448A8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    #privacyPolicy .resourceNav {
        display: block;
        padding: 1rem;
    }
}
#privacyPolicy ul li{
    color:#666;
}

#privacyPolicy .portal .left60 {
    width: 60%;
    padding: 8rem;
}

    #privacyPolicy .portal .left60 h3 {
        color: #90B548;
        font-size: 2rem;
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        padding-bottom: 2rem;
    }

@media (max-width: 900px) {
    #privacyPolicy .portal .left60 h3 {
        padding-bottom: 0;
    }
}

#privacyPolicy .portal .left60 ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

@media (max-width: 900px) {
    #privacyPolicy .portal .left60 ul {
        padding: 1rem 1rem 2rem;
    }
}

#privacyPolicy .portal .left60 ul li {
    color: white;
    text-align: center;
    padding-left: 0;
}
/******************************************************************************************************/

#privacyPolicy .portal .left70 {
    width: 70%;
    padding: 8rem;
}
#privacyPolicy .portal .left70 h3 {
    color: #90B548;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 2rem;
}

@media (max-width: 900px) {
    #privacyPolicy .portal .left70 h3 {
        padding-bottom: 0;
    }
}

#privacyPolicy .portal .left70 ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

@media (max-width: 900px) {
    #privacyPolicy .portal .left70 ul {
        padding: 1rem 1rem 2rem;
    }
}

#privacyPolicy .portal .left70 ul li {
    color: white;
    text-align: center;
    padding: 1rem 0;
}
/*******************************************************************************************/

#privacyPolicy .portal .right40 {
    width: 40%;
}

@media (max-width: 900px) {
    #privacyPolicy .portal .right40 {
        display: none;
    }
}

#privacyPolicy .portal .right40 img {
    height: 100%;
    min-width: 100%;
    width:480px;
}


#privacyPolicy .portal .right60 {
    width: 60%;
    /*padding: 6rem 0;*/
}

@media (max-width: 900px) {
    #privacyPolicy .portal .right60 h3 {
        padding-bottom: 0;
    }
}

/*****************************************************************************************************/
/*****************************************************************************************************/
#privacyPolicy .portal .left40 {
    width: 40%;
}

@media (max-width: 900px) {
    #privacyPolicy .portal .left40 {
        display: none;
    }
    #privacyPolicy .portal .right60 {
        width: 100%;
    }
}

#privacyPolicy .portal .left40 img {
    height: 100%;
    min-width: 100%;
    width: 480px;
}


/******************************************************************************/
#privacyPolicy .portal .right30 {
    width: 30%;
    
}
@media (max-width: 900px) {
    #privacyPolicy .portal .right30 {
        display: none;
    }
}

#privacyPolicy .portal .right30 img {
    height: 100%;
    min-width: 100%;
    width: 480px;
}
/*****************************************************************************************************/
#privacyPolicy .portal .right70 {
    width: 70%;
}
/*****************************************************************************************************/
#privacyPolicy .portal .left30 {
    width: 30%;
}

@media (max-width: 900px) {
    #privacyPolicy .portal .left30 {
        display: none;
    }
}

#privacyPolicy .portal .left30 img {
    height: 100%;
    width:100%;
}
/*****************************************************************************************************/
#privacyPolicy .portal {
    background-color: #062d48;
    display: flex;
}

@media (max-width: 900px) {
    #privacyPolicy .portal {
        display: block;
    }
}

#privacyPolicy .portal .textContent {
    width: 100%;
    float: right;
    vertical-align: middle;
    /*padding-top: 5rem;*/
}

@media (max-width: 900px) {
    #privacyPolicy .portal .textContent {
        width: 100%;
        float: none;
        padding-top: 0;
    }
}
@media (max-width: 900px) {
    #privacyPolicy .portal .left60 {
        width: 100%;
    }
}
/*/////////////////////////////////////////////////////////  Jump to div and back to top /////////////////////////////////////////////////////////*/

#privacyPolicy h2.privacyPolicyHeading::before {
    display: block;
    content: " ";
    /*margin-top: -285px;
    height: 285px;*/
    margin-top: -135px;
    height: 135px;
    visibility: hidden;
    pointer-events: none;
}
@media(max-width:499px){
 #privacyPolicy h2.privacyPolicyHeading::before {
     margin-top: -250px;
     height: 250px;
  }
}
.topOfDiv{
    position:relative;
    z-index:5;
}
#scrollTopButton {
    display: inline-block;
    background-color: #FF9800;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 50px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    padding-top: 10px;
    font-weight: bold;
}

    #scrollTopButton:hover {
        cursor: pointer;
        background-color: #333;
    }

    #scrollTopButton.show {
        opacity: 1;
        visibility: visible;
    }

/*/////////////////////////////////////////////////////////  Jump to div and back to top /////////////////////////////////////////////////////////*/

#privacyPolicy .resourceNav .topBarButton {
    justify-content: space-evenly;
    position: relative;
    align-items: stretch;
    flex-grow: 0;
    flex-basis: auto;
    flex-shrink: 1;
    color: #90B548;
    padding: 2rem;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    text-transform: uppercase;
    border-left: 2px solid white;
    position:relative;
    z-index:4;
    height: 100%;
}

@media (max-width: 900px) {
    #privacyPolicy .resourceNav .topBarButton {
        border-left: 0;
        border-bottom: 1px solid white;
        padding: 1rem;
    }
}

#privacyPolicy .resourceNav .topBarButton .smallTxt {
    text-transform: capitalize;
    font-size: 1.2rem;
}

#privacyPolicy .resourceNav .topBarButton:last-child {
    border-right: 2px solid white;
}

@media (max-width: 900px) {
    #privacyPolicy .resourceNav .topBarButton:last-child {
        border-right: 0;
        border-bottom: 0;
    }
}

#privacyPolicy .resourceNav .topBarButton:hover,
#privacyPolicy .resourceNav .topBarButtonActive {
    background-color: #577490;
}

@media (max-width: 900px) {
    #privacyPolicy .spacer {
        display: none;
    }
}

#privacyPolicy .whiteHeader {
    padding: 3rem;
}

    #privacyPolicy .whiteHeader h2 {
        color: #1448A8;
        font-size: 2.6rem;
        line-height: 4.2rem;
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
    }

#privacyPolicy .privacyContent , #privacyPolicy .blogPost{
    display: none;
}
/*#resources .bottomContent h3 {
    font-size: 2rem;
    color: #005373;
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 1rem;
  }
  #resources .bottomContent p {
    color: #005373;
    padding-bottom: 1rem;
  }
  #resources .bottomContent ol {
    color: #005373;
    padding-bottom: 1rem;
  }*/


#privacyPolicy .active {
    display: block;
}


/*///////////////////////////////////////////        Privacy AND  CCPA  /////////////////////////////////*/
/*///////////////////////////////////////////        CCPA  Form  /////////////////////////////////*/

.ccpaHeaderText {
    line-height: 2em;
    font-family: monospace;
    margin-left: 2em;
    text-align: center;
}

.confirmationBox {
    /*border: 1px solid;*/
    /*width: 35%;*/
    /*background-color: #fff;*/
    /*z-index: 2;*/
    /*position: absolute;*/
    /*padding:5px 10px;*/
    /*top:50%;
    right:30%;*/
    /*display:none;*/
}

.dialog-ovelay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.50);
    z-index: 999999;
}

    .dialog-ovelay .dialog {
        width: 430px;
        margin: 600px auto 0;
        background-color: #fff;
        box-shadow: 0 0 20px rgba(0,0,0,.2);
        border-radius: 3px;
        overflow: hidden;
    }

        .dialog-ovelay .dialog header {
            padding: 10px 8px;
            background-color: #f6f7f9;
            border-bottom: 1px solid #e5e5e5;
        }

            .dialog-ovelay .dialog header h3 {
                font-size: 1.8rem;
                font-weight: bold;
                margin: 0;
                color: #555;
                display: inline-block;
            }

            .dialog-ovelay .dialog header .fa-close {
                float: right;
                color: #c4c5c7;
                cursor: pointer;
                transition: all .5s ease;
                padding: 0 10px;
                border-radius: 1px;
            }

                .dialog-ovelay .dialog header .fa-close:hover {
                    color: #b9b9b9;
                }

                .dialog-ovelay .dialog header .fa-close:active {
                    box-shadow: 0 0 5px #673AB7;
                    color: #a2a2a2;
                }

        .dialog-ovelay .dialog .dialog-msg {
            padding: 12px 10px;
        }

            .dialog-ovelay .dialog .dialog-msg p {
                margin: 0;
                font-size: 15px;
                color: #333;
            }

        .dialog-ovelay .dialog div.alertBoxFooter {
            border-top: 1px solid #e5e5e5;
            padding: 8px 10px;
        }

            .dialog-ovelay .dialog div.alertBoxFooter .controls {
                direction: rtl;
            }

                .dialog-ovelay .dialog div.alertBoxFooter .controls .button {
                    padding: 5px 15px;
                    border-radius: 3px;
                }

.button {
    cursor: pointer;
}

.button-default {
    background-color: rgb(0, 204, 0);
    border: 1px solid rgba(0, 128, 0, 0.5);
    color: #f5f5f5;
}

.button-danger {
    background-color: #f44336;
    border: 1px solid #d32f2f;
    color: #f5f5f5;
    width: 85px;
}

div.text-danger ul li {
    color: #e01212;
}

.text-danger {
    color: #e01212;
}

.internalUse {
    border: 1px solid #ddd;
    margin: 10px 0;
    padding: 5px;
}

.ccpaHeaderText span {
    font-weight: bold;
    font-size: 2.5rem;
    color: #FFF;
}

.ccpaHeader {
    margin: auto;
    background-color: #066184;
    padding: 15px;
    margin-bottom: 10px;
}

    .ccpaHeader img {
        width: 17rem;
        margin-right: 2em;
    }

fieldset {
    border-width: 2px;
    border-color: threedface;
    border-style: groove;
    border-image: initial;
    padding: 20px;
}

/*///////////////////////////////////////////        CCPA  Form  /////////////////////////////////*/

/*-------------------------------------------------------------------------------------------------------*/
#ibew .header {
    background-image: url("../../ocozzio/img/solutions-deltaFund-banner.jpg");
}

/*-------------------------------------------------------------------------------------------------------*/

#resources .header {
    background-image: url("../../ocozzio/img/resources-banner.jpg");
}

#resources .lowercase {
    text-transform: capitalize;
    font-weight: normal;
}

#resources .resourceNav {
    background-color: #1448A8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    #resources .resourceNav {
        display: block;
        padding: 1rem;
    }
}

#resources .resourceNav .topBarButton {
    justify-content: space-evenly;
    position: relative;
    align-items: stretch;
    flex-grow: 0;
    flex-basis: auto;
    flex-shrink: 1;
    color: #90B548;
    padding: 2rem;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    text-transform: uppercase;
    border-left: 2px solid white;
    height: 100%;
}

@media (max-width: 900px) {
    #resources .resourceNav .topBarButton {
        border-left: 0;
        border-bottom: 1px solid white;
        padding: 1rem;
    }
}

#resources .resourceNav .topBarButton .smallTxt {
    text-transform: capitalize;
    font-size: 1.2rem;
}

#resources .resourceNav .topBarButton:last-child {
    border-right: 2px solid white;
}

@media (max-width: 900px) {
    #resources .resourceNav .topBarButton:last-child {
        border-right: 0;
        border-bottom: 0;
    }
}

#resources .resourceNav .topBarButton:hover,
#resources .resourceNav .topBarButtonActive {
    background-color: #577490;
}

@media (max-width: 900px) {
    #resources .spacer {
        display: none;
    }
}

#resources .leftContent,
#ibew .leftContent {
    padding: 0 6rem;
}

@media (max-width: 900px) {
    #resources .leftContent,
    #ibew .leftContent {
        padding: 2rem;
    }
}

#resources .leftContent ul,
#ibew .leftContent ul {
    list-style: none;
    width: 90%;
}

@media (max-width: 900px) {
    #resources .leftContent ul,
    #ibew .leftContent ul {
        width: 100%;
    }
}

#resources .leftContent ul li,
#ibew .leftContent ul li {
    padding: 0.5rem 2rem;
    font-size: 1.4rem;
    line-height: 2rem;
    vertical-align: middle;
    text-transform: capitalize;
    color: white;
    margin: 1rem auto;
    background-color: #577490;
    border: 2px solid #577490;
    text-align: center;
    width: 70%;
    display: block;
    cursor: pointer;
}

@media (max-width: 900px) {
    #resources .leftContent ul li,
    #ibew .leftContent ul li {
        padding: 0;
    }
}

#resources .leftContent ul li:hover,
#resources .leftContent ul .leftButtonActive,
#ibew .leftContent ul li:hover,
#ibew .leftContent ul .leftButtonActive {
    color: #577490;
    background-color: white;
    font-weight: bold;
}

#resources .leftContentActive,
#ibew .leftContentActive {
    display: block;
}

#resources .fullWidth ul {
    display: flex;
}

    #resources .fullWidth ul li {
        width: 30%;
    }

#resources .rightContent,
#ibew .rightContent {
    display: none;
    position: relative;
}

#resources .rightContent h3,
#ibew .rightContent h3 {
    font-size: 2rem;
    color: #1448A8;
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 1rem;
}

#resources .rightContent p,
#ibew .rightContent p {
    color: #1448A8;
    padding-bottom: 1rem;
}

@media (max-width: 900px) {
    #resources .rightContent ul,
    #ibew .rightContent ul {
        margin-left: 2rem;
    }
}

#resources .bottomContent {
    display: none;
}

#resources .bottomContent h3 {
    font-size: 2rem;
    color: #1448A8;
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 1rem;
}

#resources .bottomContent p {
    color: #1448A8;
    padding-bottom: 1rem;
}

#resources .bottomContent ol {
    color: #1448A8;
    padding-bottom: 1rem;
}

#resources .active,
#ibew .active  {
    display: block;
}

#resources .neverHead {
    font-size: 1.6rem !important;
}

#resources .neverList li {
    font-size: 1.4rem !important;
}

#resources .whiteBackground,
#ibew .whiteBackground {
    background-color: white;
    display: flex;
}

@media (max-width: 900px) {
    #resources .whiteBackground,
    #ibew .whiteBackground {
        display: block;
    }
}

#resources .greyBackground {
    background-color: #f2f2f2;
    /*display: flex;*/
}

@media (max-width: 900px) {
    #resources .greyBackground {
        display: block;
    }
}

#resources .left30,
#ibew .left30 {
    width: 30%;
}

@media (max-width: 900px) {
    #resources .left30,
    #ibew .left30 {
        width: 100%;
    }
}

#resources .right70,
#ibew .right70 {
    width: 70%;
}

@media (max-width: 900px) {
    #resources .right70,
    #ibew .right70 {
        width: 100%;
        padding: 2rem;
    }
}

#resources .rightContentPad,
#ibew .rightContentPad {
    padding: 0rem 20rem 0rem 3rem;
}

@media (max-width: 900px) {
    #resources .rightContentPad,
    #ibew .rightContentPad {
        padding: 2rem;
    }
}

#resources .middle100 {
    width: 100%;
}

#resources .middleContent {
    padding: 0 6rem;
}

    #resources .middleContent button {
        margin: 0 auto 3rem;
        text-align: center;
        display: block;
    }

@media (max-width: 900px) {
    #resources .middleContent button {
        margin: 3rem auto;
    }
}

@media (max-width: 900px) {
    #resources .middleContent {
        padding: 0 2rem;
    }

        #resources .middleContent p {
            padding-top: 2rem;
        }
}

#resources .columnContent {
    padding: 0 2rem;
    width: 32%;
}

@media (max-width: 900px) {
    #resources .columnContent {
        width: 100%;
    }

        #resources .columnContent ul {
            padding: 0 1rem;
        }
}

#resources .grid {
    background-color: white;
    padding: 3rem 0 6rem;
    width: 80%;
    display: block;
    margin: 0 auto;
}

@media (max-width: 900px) {
    #resources .grid {
        width: 100%;
    }
}

#resources .grid .gridRow {
    display: flex;
    padding: 1rem;
    border-top: 1px solid #1448A8;
    text-align: center;
}

    #resources .grid .gridRow:last-child {
        border-bottom: 1px solid #1448A8;
    }

#resources .grid .col {
    flex-grow: 1;
    flex-basis: 0;
}

#resources .grid .topRow p {
    color: #90B548;
    font-weight: bold;
}

#resources .qualHeader {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.4rem;
    line-height: 2rem;
}

#resources #changingCoverageContent p {
    width: 80%;
}

@media (max-width: 900px) {
    #resources #changingCoverageContent p {
        width: 100%;
    }
}

#resources #changingCoverageContent ul,
#resources #changingCoverageContent ol {
    width: 80%;
}

    #resources #changingCoverageContent ul li,
    #resources #changingCoverageContent ol li {
        font-size: 1.4rem;
    }

@media (max-width: 900px) {
    #resources #changingCoverageContent ul,
    #resources #changingCoverageContent ol {
        width: 100%;
        margin-left: 1rem;
    }
}

#resources #changingCoverageContent .changeLastList {
    padding-bottom: 0 !important;
}

#resources .changeList {
    padding-bottom: 0;
}

#resources .disclaimer {
    font-style: italic;
    font-size: 1.4rem;
    padding: 3rem 0 !important;
}

#resources .darkBlueBG {
    background-color: #062d48;
    padding: 6rem;
}

@media (max-width: 900px) {
    #resources .darkBlueBG {
        padding: 2rem;
    }
}

#resources .darkBlueBG hr {
    border-top: 1px solid #1448A8;
    width: 100%;
    max-width: 58rem;
    margin: 0 auto;
}

#resources .darkBlueBG h2 {
    color: #90B548;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-size: 2.4rem;
}

#resources .darkBlueBG h3 {
    color: #90B548;
    padding-top: 2rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
    font-size: 2rem;
}

#resources .darkBlueBG .darkLink {
    color: white;
    text-decoration: underline;
    font-style: italic;
    font-size: 2rem;
    text-align: center;
}

#resources .darkBlueBG p {
    text-align: center;
}

#resources .darkBlueBG .formButton {
    text-decoration: none;
    margin: 0 auto;
    display: block;
    text-align: center;
}

#resources .darkBlueBG .formButton .formIcon {
    display: inline-block;
    vertical-align: middle;
}

#resources .darkBlueBG .formButton p {
    display: inline-block;
    vertical-align: middle;
    color: white;
    margin-top: 2.5rem;
    padding-left: 1rem;
}

#resources .whiteHeader,
#ibew .whiteHeader {
    padding: 3rem;
}

#resources .whiteHeader h2,
#ibew .whiteHeader h2 {
    color: #1448A8;
    font-size: 2.6rem;
    line-height: 4.2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

#resources .darkBlueHeader {
    padding: 3rem;
    background-color: #062d48;
}

    #resources .darkBlueHeader h2 {
        color: white;
        font-size: 2.8rem;
        line-height: 4.2rem;
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
    }

#resources .formGrid {
    display: flex;
    position: relative;
    justify-content: center;
    flex-wrap: wrap;
    padding: 6rem;
}

@media (max-width: 900px) {
    #resources .formGrid {
        padding: 2rem;
    }
}

#resources .formGrid hr {
    border-top: 1px solid #1448A8;
}

#resources .formGrid a {
    text-decoration: none;
}

@media (max-width: 900px) {
    #resources .formGrid .lastItem {
        display: none;
    }
}

#resources .formGrid .formGridBox {
    flex-grow: 1;
    margin: 0.5rem;
    width: 30%;
    border-bottom: 1px solid #577490;
    padding: 1.5rem;
    position: relative;
}

@media (max-width: 900px) {
    #resources .formGrid .formGridBox {
        width: 48%;
    }
}

#resources .formGrid .formGridBox .formDownload {
    margin-top: auto;
}

#resources .formGrid .formGridBox .formHeader {
    color: #1448A8;
    text-transform: capitalize;
    text-align: center;
    letter-spacing: 2px;
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: bold;
    letter-spacing: 0;
    width: 70%;
    display: block;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    #resources .formGrid .formGridBox .formHeader {
        width: 100%;
    }
}

#resources .formGrid .formGridBox .download {
    color: #1448A8;
    text-align: center;
    padding-bottom: 0;
    align-self: flex-end;
}

#resources .formGrid .formGridBox .formButton {
    text-decoration: none;
    margin: 0 auto;
    display: block;
    text-align: center;
}

    #resources .formGrid .formGridBox .formButton .formIcon {
        display: inline-block;
        vertical-align: middle;
    }

    #resources .formGrid .formGridBox .formButton p {
        display: inline-block;
        vertical-align: middle;
        color: white;
        margin-top: 2.5rem;
        padding-left: 1rem;
    }

#resources .formIcon {
    width: 3.8rem;
    display: block;
    margin: 0.5rem auto;
    align-self: flex-end;
}

#resources .qualifiedContent {
    padding: 6rem;
    background-color: white;
}

@media (max-width: 900px) {
    #resources .qualifiedContent {
        padding: 2rem;
    }
}

#resources .changingCoverageContent {
    padding: 6rem;
    background-color: #f2f2f2;
}

@media (max-width: 900px) {
    #resources .changingCoverageContent {
        padding: 2rem;
    }
}

#resources .changingCoverageContent .whiteBox {
    padding: 3rem;
    background-color: white;
    border-radius: 2rem;
}

@media (max-width: 900px) {
    #resources .changingCoverageContent .whiteBox {
        padding: 1rem;
    }
}

#resources .changingCoverageContent .whiteBox h3 {
    color: #1448A8;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 2.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    #resources .changingCoverageContent .whiteBox h3 {
        letter-spacing: 1px;
    }
}

#resources .changingCoverageContent .whiteBox ul {
    padding-bottom: 0;
}

#resources .changingCoverageContent .whiteBox ol {
    padding-bottom: 2rem;
}

    #resources .changingCoverageContent .whiteBox ol li {
        color: #1448A8;
    }

#resources .changingCoverageContent .whiteBox button {
    background-color: #90B548;
    border: 2px solid #90B548;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    #resources .changingCoverageContent .whiteBox button {
        padding: 1rem;
        margin: 0 auto 2rem;
    }
}

#resources .changingCoverageContent .whiteBox button:hover {
    color: #90B548;
    background-color: white;
}

#resources .acronymsContent {
    padding: 6rem;
    background-color: white;
}

@media (max-width: 900px) {
    #resources .acronymsContent {
        padding: 2rem;
    }
}

@media (max-width: 900px) {
    #resources .acronymsContent .topRow {
        display: none;
    }
}

#resources .partnerDirectoryContent {
    padding: 6rem;
    background-color: #f2f2f2;
}

@media (max-width: 900px) {
    #resources .partnerDirectoryContent {
        padding: 2rem;
    }
}

#resources .partnerDirectoryContent .whiteBox {
    padding: 3rem;
    background-color: white;
    border-radius: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    #resources .partnerDirectoryContent .whiteBox {
        padding: 1rem;
    }
}

#resources .partnerDirectoryContent .whiteBox h3 {
    color: #1448A8;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 2.9rem;
    text-transform: uppercase;
}

#videoBox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 120;
    height: 100%;
    background-color: rgba(0, 83, 115, 0.8);
}

    #videoBox .videoBoxContent {
        background-color: white;
        display: block;
        position: fixed;
        margin-top: 10rem;
        width: 40%;
        left: 50%;
        z-index: 130;
        transform: translateX(-50%);
        padding: 4rem;
        -webkit-box-shadow: 0px 0px 34px 6px rgba(0, 0, 0, 0.85);
        -moz-box-shadow: 0px 0px 34px 6px rgba(0, 0, 0, 0.85);
        box-shadow: 0px 0px 34px 6px rgba(0, 0, 0, 0.85);
    }

@media (max-width: 900px) {
    #videoBox .videoBoxContent {
        width: 90%;
        padding: 2rem;
    }
}

#videoBox .videoBoxContent img {
    width: 80%;
    margin: 0 auto;
    display: block;
}

@media (max-width: 900px) {
    #videoBox .videoBoxContent img {
        width: 100%;
    }
}

#videoBox .videoBoxContent button {
    margin-top: 1rem;
    right: 4rem;
}

#videoBox .videoBoxContent video {
    width: 100%;
    margin: 0 auto;
    display: block;
}

#videoBox .blueBackground {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 83, 115, 0.8);
}

#videoBox #daSlideShow {
    width: 90%;
}

#about .header {
    background-image: url("../../ocozzio/img/about-banner.jpg");
}

#about .letterFromPresident {
    padding: 6rem;
    background-color: white;
}

@media (max-width: 900px) {
    #about .letterFromPresident {
        padding: 2rem;
    }
}

#about .letterFromPresident h2 {
    color: #1448A8;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 3.6rem;
    letter-spacing: 5px;
    padding-bottom: 3rem;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    #about .letterFromPresident h2 {
        letter-spacing: 1px;
    }
}

#about .letterFromPresident p {
    color: #1448A8;
}

#about .letterFromPresident .imgBlock {
    width: 13.4rem;
}

    #about .letterFromPresident .imgBlock img {
        margin-bottom: 0.5rem;
        width: 100%;
    }

    #about .letterFromPresident .imgBlock .presName {
        text-align: center;
        font-weight: bold;
        letter-spacing: 1px;
        font-size: 1.4rem;
        padding-bottom: 0;
        line-height: 1.8rem;
    }

    #about .letterFromPresident .imgBlock .presTitle {
        font-size: 1.2rem;
        text-align: center;
        letter-spacing: 1px;
    }

#about .aboutNav {
    background-color: #1448A8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    #about .aboutNav {
        display: block;
        padding: 1rem;
    }
}

#about .aboutNav .topBarButton {
    justify-content: space-evenly;
    position: relative;
    align-items: stretch;
    flex-grow: 0;
    flex-basis: auto;
    flex-shrink: 1;
    color: #90B548;
    padding: 2rem;
    font-weight: bold;
    font-size: 1.4rem;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    text-transform: uppercase;
    border-left: 2px solid white;
    height: 100%;
}

@media (max-width: 900px) {
    #about .aboutNav .topBarButton {
        border-left: 0;
        border-bottom: 1px solid white;
        padding: 1rem;
    }
}

#about .aboutNav .topBarButton .smallTxt {
    text-transform: capitalize;
    font-size: 1.2rem;
}

#about .aboutNav .topBarButton:last-child {
    border-right: 2px solid white;
}

@media (max-width: 900px) {
    #about .aboutNav .topBarButton:last-child {
        border-right: 0;
        border-bottom: 0;
    }
}

#about .aboutNav .topBarButton:hover,
#about .aboutNav .topBarButtonActive {
    background-color: #577490;
}

#about .whiteBG {
    background-color: white;
}

#about .greyBG {
    background-color: #f2f2f2;
}

#about .whiteBG,
#about .greyBG {
    padding: 6rem;
}

@media (max-width: 900px) {
    #about .whiteBG,
    #about .greyBG {
        padding: 2rem;
    }
}

#about .whiteBG .valueContent,
#about .greyBG .valueContent {
    padding-top: 3rem;
}

@media (max-width: 900px) {
    #about .whiteBG .valueContent,
    #about .greyBG .valueContent {
        padding: 0;
    }
}

#about .whiteBG h3,
#about .greyBG h3 {
    color: #1448A8;
    font-weight: bold;
    font-size: 2rem;
    line-height: 3.6rem;
    text-transform: uppercase;
    text-align: center;
}

#about .whiteBG ul,
#about .greyBG ul {
    list-style: none;
    margin: 0;
}

    #about .whiteBG ul li,
    #about .greyBG ul li {
        padding: 0.5rem 0;
        text-align: center;
    }

#about .whiteBG p,
#about .greyBG p {
    color: #1448A8;
}

#about .whiteBG .imgBox img,
#about .greyBG .imgBox img {
    margin: 0 auto 0.5rem;
    width: 100%;
    max-width: 13.4rem;
    text-align: center;
    display: block;
}

#about .whiteBG .imgBox .name,
#about .greyBG .imgBox .name {
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.4rem;
    padding-bottom: 0;
    line-height: 1.8rem;
}

#about .whiteBG .imgBox .title,
#about .greyBG .imgBox .title {
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 1px;
}

#about .whiteBG .grid .gridRow,
#about .greyBG .grid .gridRow {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    #about .whiteBG .grid .gridRow,
    #about .greyBG .grid .gridRow {
        display: block;
    }
}

#about .whiteBG .grid .gridRow .boxItem,
#about .greyBG .grid .gridRow .boxItem {
    width: 20%;
}

@media (max-width: 900px) {
    #about .whiteBG .grid .gridRow .boxItem,
    #about .greyBG .grid .gridRow .boxItem {
        width: 100%;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
}

#about .whiteBG .goldHeader,
#about .greyBG .goldHeader {
    color: #90B548;
    text-align: center;
    text-transform: uppercase;
    padding-top: 4rem;
    padding-bottom: 0;
    font-size: 3.2rem;
    line-height: 5.1rem;
    font-weight: bold;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    #about .whiteBG .goldHeader,
    #about .greyBG .goldHeader {
        letter-spacing: 0;
    }
}

#about .whiteBG .blueHeader,
#about .greyBG .blueHeader {
    color: #1448A8;
    text-align: center;
    padding-top: 0;
    padding-bottom: 4rem;
    font-size: 2rem;
    line-height: 2.6rem;
    width: 60%;
    margin: 0 auto;
    display: block;
}

@media (max-width: 900px) {
    #about .whiteBG .blueHeader,
    #about .greyBG .blueHeader {
        letter-spacing: 0;
        width: 100%;
    }
}

#about .whiteBG .video,
#about .greyBG .video {
    display: block;
    width: 100%;
    max-width: 53rem;
    margin: 0 auto;
}

#about .whiteBG .buttons,
#about .greyBG .buttons {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding-top: 3rem;
}

    #about .whiteBG .buttons svg,
    #about .greyBG .buttons svg {
        height: 1.4rem;
        margin-left: 1rem;
        vertical-align: middle;
        fill: white;
        margin-top: -0.1rem;
    }

    #about .whiteBG .buttons button:hover svg,
    #about .greyBG .buttons button:hover svg {
        fill: #90B548;
    }

#about .whiteBG .blueBox,
#about .greyBG .blueBox {
    background-color: #1448A8;
    padding: 3rem;
}

@media (max-width: 900px) {
    #about .whiteBG .blueBox,
    #about .greyBG .blueBox {
        padding: 2rem;
    }
}

#about .whiteBG .blueBox .blueBoxContent,
#about .greyBG .blueBox .blueBoxContent {
    padding: 3rem;
    border: 1px solid #90B548;
}

#about .whiteBG .blueBox h3,
#about .greyBG .blueBox h3 {
    color: white;
}

#about .whiteBG .blueBox p,
#about .greyBG .blueBox p {
    text-align: center;
    font-style: italic;
    color: white;
    font-size: 1.8rem;
    line-height: 2.8rem;
}

#about .darkBlueBar {
    padding: 6rem;
    background-color: #062d48;
    border-bottom: 2px solid white;
}

@media (max-width: 900px) {
    #about .darkBlueBar {
        padding: 2rem;
    }
}

#about .darkBlueBar h3 {
    font-size: 2.2rem;
    line-height: 3.6rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #90B548;
}

#about .darkBlueBar p {
    color: #90B548;
    text-align: center;
    font-style: italic;
    font-size: 1.8rem;
    line-height: 2.4rem;
    padding-bottom: 0;
}

#about .darkBlueBar .bigText {
    font-size: 2.2rem;
    line-height: 2.6rem;
}

#about .bottomContent {
    display: none;
}

#about .active {
    display: block;
}

#about .community {
    background-color: #f2f2f2;
    display: flex;
}

@media (max-width: 900px) {
    #about .community {
        display: block;
    }
}

#about .community .content {
    flex-basis: 0;
    flex-grow: 1;
    overflow: hidden;
    margin-bottom: -0.5rem;
}

@media (max-width: 900px) {
    #about .community .content {
        margin: 0;
    }
}

#about .community p {
    color: #1448A8;
}

#about .community img {
    height: 100%;
    overflow: hidden;
    max-height: 33rem;
    object-fit: none;
    object-position: top right;
}

@media (max-width: 900px) {
    #about .community img {
        display: none;
    }
}

#about .community button {
    margin: 0.5rem 0;
}

@media (max-width: 900px) {
    #about .community button {
        margin: 0.5rem auto;
    }
}

#about .community .middleContent {
    padding: 6rem;
}

@media (max-width: 900px) {
    #about .community .middleContent {
        padding: 2rem;
    }
}

#contact .header {
    background-image: url("../../ocozzio/img/contact-banner.jpg");
}

#contact .contactSection {
    display: flex;
}

@media (max-width: 900px) {
    #contact .contactSection {
        display: block;
    }
}

#contact .contactSection .left40 {
    background-color: white;
    width: 40%;
    padding: 4rem;
}

@media (max-width: 900px) {
    #contact .contactSection .left40 {
        width: 100%;
    }
}

#contact .contactSection .left40 h2 {
    font-size: 2.4rem;
    line-height: 2.8rem;
    color: #1448A8;
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 3rem;
}

#contact .contactSection .left40 p {
    color: #1448A8;
}

#contact .contactSection .left40 .leftContent {
    width: 60%;
    float: right;
}

@media (max-width: 900px) {
    #contact .contactSection .left40 .leftContent {
        float: none;
        width: 100%;
    }
}

@media (max-width: 900px) {
    #contact .contactSection .left40 {
        width: 100%;
    }
}

#contact .contactSection .right60 {
    background-color: #062d48;
    padding: 4rem;
    width: 60%;
}

@media (max-width: 900px) {
    #contact .contactSection .right60 {
        width: 100%;
    }
}

#contact .contactSection .right60 p {
    text-align: center;
    color: white;
}

#contact .contactSection .right60 .goldtext {
    color: #90B548;
}

    #contact .contactSection .right60 .goldtext a {
        font-style: normal;
        text-decoration: underline;
        font-weight: bold;
    }

#contact .contactSection .right60 a {
    font-style: italic;
}

#contact .contactSection .right60 .rightContent {
    float: left;
    width: 80%;
}

@media (max-width: 900px) {
    #contact .contactSection .right60 .rightContent {
        float: none;
        width: 100%;
    }
}

#careers .header {
    background-image: url("../../ocozzio/img/careers-banner.jpg");
}

#careers .center {
    text-align: center;
    width: 80%;
    display: block;
    margin: 0 auto;
}

@media (max-width: 900px) {
    #careers .center {
        width: 100%;
    }
}

#careers .whiteBG {
    padding: 6rem;
    background-color: white;
}

@media (max-width: 900px) {
    #careers .whiteBG {
        padding: 2rem;
    }
}

#careers .whiteBG .valueContent {
    padding-top: 3rem;
}

@media (max-width: 900px) {
    #careers .whiteBG .valueContent {
        padding: 0;
    }
}

#careers .whiteBG h2 {
    font-size: 3rem;
    line-height: 5rem;
    color: #1448A8;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

#careers .whiteBG p {
    color: #1448A8;
}

#careers .whiteBG h3 {
    color: #1448A8;
    font-weight: bold;
    font-size: 2rem;
    line-height: 3.6rem;
    text-transform: uppercase;
    text-align: center;
}

#careers .whiteBG ul {
    list-style: none;
    margin: 0;
}

    #careers .whiteBG ul li {
        padding: 0.5rem 0;
        text-align: center;
    }

#careers .whiteBG .blueBox {
    background-color: #1448A8;
    padding: 3rem;
}

@media (max-width: 900px) {
    #careers .whiteBG .blueBox {
        padding: 2rem;
    }
}

#careers .whiteBG .blueBox .blueBoxContent {
    padding: 3rem;
    border: 1px solid #90B548;
}

#careers .whiteBG .blueBox h3 {
    color: white;
    font-size: 2rem;
    line-height: 3.6rem;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0;
}

#careers .whiteBG .blueBox p {
    text-align: center;
    font-style: italic;
    color: white;
    font-size: 1.8rem;
    line-height: 2.8rem;
}

#careers .darkBlueBar {
    padding: 6rem;
    background-color: #062d48;
    border-bottom: 2px solid white;
}

@media (max-width: 900px) {
    #careers .darkBlueBar {
        padding: 2rem;
    }
}

#careers .darkBlueBar h3 {
    font-size: 2.2rem;
    line-height: 3.6rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #90B548;
}

#careers .darkBlueBar p {
    color: #90B548;
    text-align: center;
    font-style: italic;
    font-size: 1.8rem;
    line-height: 2.4rem;
    padding-bottom: 0;
}

#careers .darkBlueBar .bigText {
    font-size: 2.2rem;
    line-height: 2.6rem;
}

#careers .greyBG {
    padding: 6rem;
    background-color: #f2f2f2;
}

@media (max-width: 900px) {
    #careers .greyBG {
        padding: 2rem;
    }
}

#careers .greyBG p {
    color: #1448A8;
}

#careers .greyBG h2 {
    color: #1448A8;
    font-size: 2rem;
    line-height: 3rem;
    padding-bottom: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    width: 70%;
}

@media (max-width: 900px) {
    #careers .greyBG h2 {
        width: 100%;
    }
}

#careers .greyBG h3 {
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #1448A8;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid #90B548;
    margin: 3rem 0;
}

#careers .greyBG .noPosHead {
    font-size: 1.8rem;
    padding: 3rem 0 0;
}

#careers .greyBG .headerPosition {
    font-weight: bold;
    font-size: 2rem;
    line-height: 2.5rem;
    padding: 3rem 0 0;
}

#careers .greyBG .jobTitle {
    font-size: 1.6rem;
}

#careers .greyBG .headerText {
    display: block;
    margin: 0 auto;
}

    #careers .greyBG .headerText img {
        width: 4.5rem;
        margin: 1rem 0;
        vertical-align: top;
    }

@media (max-width: 900px) {
    #careers .greyBG .headerText img {
        display: none;
    }
}

#careers .greyBG .cityBox {
    margin: 1rem 0;
    display: block;
    width: 100%;
}

    #careers .greyBG .cityBox img {
        max-width: 100%;
        width: 50%;
        max-width: 22rem;
        margin-right: 1rem;
        display: inline-block;
    }

@media (max-width: 900px) {
    #careers .greyBG .cityBox img {
        width: 100%;
    }
}

#careers .greyBG .cityBox p {
    color: #1448A8;
}

#careers .greyBG .cityBox .address {
    display: inline-block;
    vertical-align: top;
    padding: 5rem 0.5rem;
    margin: auto;
    width: 45%;
}

@media (max-width: 900px) {
    #careers .greyBG .cityBox .address {
        padding: 1rem;
    }
}

#careers .greyBG .cityBox .city {
    font-size: 1.9rem;
    line-height: 2.4rem;
    text-transform: uppercase;
    font-weight: bold;
}

#privacy .header {
    background-image: url("../../ocozzio/img/privacy-banner.jpg");
}

#privacy .privacySection {
    padding: 6rem;
    background-color: white;
}

@media (max-width: 900px) {
    #privacy .privacySection {
        padding: 2rem;
    }
}

#privacy .privacySection h2 {
    color: #1448A8;
    font-size: 1.8rem;
    line-height: 3.6rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

@media (max-width: 900px) {
    #privacy .privacySection h2 {
        letter-spacing: 1px;
    }
}

#privacy .privacySection p {
    color: #1448A8;
    font-size: 1.6rem;
    line-height: 3.6rem;
    padding-bottom: 2rem;
}

@media (max-width: 900px) {
    #privacy .privacySection p {
        letter-spacing: 1px;
        word-break: break-all;
    }
}

#privacy .privacySection a {
    font-style: italic;
    color: #1448A8;
}

    #privacy .privacySection a:hover {
        font-weight: bold;
    }

#community .header {
    background-image: url("../../ocozzio/img/community-banner.jpg");
}

#community .middleGrey {
    display: flex;
    background-color: #f2f2f2;
}

@media (max-width: 900px) {
    #community .middleGrey {
        display: block;
    }
}

#community .middleGrey .left60 {
    width: 60%;
    padding: 6rem;
}

@media (max-width: 900px) {
    #community .middleGrey .left60 {
        width: 100%;
        padding: 2rem;
    }
}

#community .middleGrey .left60 .content {
    width: 60%;
    float: right;
}

@media (max-width: 900px) {
    #community .middleGrey .left60 .content {
        width: 100%;
        float: none;
    }
}

#community .middleGrey .left60 .content h2 {
    font-size: 3rem;
    line-height: 4rem;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 10rem;
    color: #1448A8;
}

@media (max-width: 900px) {
    #community .middleGrey .left60 .content h2 {
        padding-top: 0;
    }
}

#community .middleGrey .left60 .content p {
    color: #1448A8;
    font-size: 1.8rem;
    font-style: italic;
    line-height: 2.4rem;
    text-align: center;
    padding-bottom: 0;
}

#community .middleGrey .right40 {
    width: 40%;
    overflow: hidden;
}

    #community .middleGrey .right40 img {
        min-width: 100%;
        height: 100%;
    }

@media (max-width: 900px) {
    #community .middleGrey .right40 img {
        display: none;
    }
}

#community .middleBlue {
    padding: 6rem;
    background-color: #062d48;
}

@media (max-width: 900px) {
    #community .middleBlue {
        padding: 2rem;
    }
}

#community .middleBlue h3 {
    text-align: center;
    color: #90B548;
    font-size: 2rem;
    font-style: italic;
    width: 50%;
    display: block;
    margin: 0 auto;
    letter-spacing: 0;
}

@media (max-width: 900px) {
    #community .middleBlue h3 {
        width: 100%;
    }
}

#community .promise {
    padding: 6rem;
    background-color: white;
}

@media (max-width: 900px) {
    #community .promise {
        padding: 2rem;
    }
}

#community .promise h2 {
    font-size: 2.4rem;
    line-height: 3.4rem;
    color: #1448A8;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    padding-bottom: 3rem;
}

#community .promise p {
    color: #1448A8;
    text-align: center;
}

#community .promise .grid {
    display: flex;
}

@media (max-width: 900px) {
    #community .promise .grid {
        display: block;
    }
}

#community .promise .grid .imgBox {
    flex-grow: 0;
    width: 33%;
    padding: 1rem;
}

@media (max-width: 900px) {
    #community .promise .grid .imgBox {
        width: 100%;
    }
}

#community .promise .grid .imgBox img {
    max-width: 100%;
}
/*--------------------------
 10.5  404 error 304496  
 ----------------------------*/
.error-div {
    width: 65%;
    margin: 0 auto;
}

main#error {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f4f4f6;
    height: 800px;
}

.error-section {
    text-align: center;
    padding-bottom: 60px;
}

.error-block {
}

.error-title {
    font-size: 130px;
    font-weight: 900;
    color: #FDA502;
}
/*margin-bottom: 50px;*/
.error-text {
    color: #0e142e;
    margin-bottom: 20px;
    font-size: 23px;
}

.error-block .lead {
    color: #0e142e;
    font-family: 'Lato', sans-serif;
    margin-bottom: 120px;
}

.lead {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.7;
    font-family: 'Lato', sans-serif;
    color: #0e142e;
    margin-bottom: 20px;
}

.cta-single {
    background-color: #fff;
    padding: 30px;
    position: relative;
    box-sizing: border-box;
}

.cta-single-line-text {
    display: inline-block;
    margin-bottom: 0px;
}

.cta-single-line-title {
    margin-bottom: 10px;
    font-weight: 900;
    font-size: 30px;
    line-height: 32px;
    color: #0e142e;
}
/*display: inline-block;*/
.cta-single-caption {
    display: inline-block;
}


/*------------------------------------------------ Nav Bar New--------------------------------------------------------*/
.navbar-nav {
    position: relative;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

    .navbar-nav li {
        display: inline-block;
        padding-left: 0;
    }

    .navbar-nav a {
        color: white;
        font-weight: 600;
        letter-spacing: 2px;
        text-decoration: none;
        padding: 1rem 2rem;
        display: inline-block;
        width: 100%;
        text-align: center;
        white-space: nowrap;
    }

        .navbar-nav a:active,
        .navbar-nav a:visited,
        .navbar-nav a:focus {
            background: #123a85;
        }

        .navbar-nav a.btn {
            display: inline-block;
            margin: 10px 20px 10px 10px;
            padding: 5px;
            border-radius: 5px;
            background-color: #90b548;
            -webkit-transition: .6s;
            transition: .6s;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none
        }

            .navbar-nav a.btn:hover {
                box-shadow: 0 0 15px -10px rgba(0 0 0 / 90%);
                -webkit-filter: saturate(200%);
                filter: saturate(200%);
                color: #fff;
                text-decoration: none;
            }

@media only screen and (max-width:768px) {
    .container {
        padding: 0;
    }

    .navbar-nav {
        flex-flow: column;
        /*height: 0px;*/
        max-height: 0px;
        overflow: hidden;
        transition: max-height .3s linear;
    }

        .navbar-nav.open {
            max-height: 50rem;
            /*height:auto;*/
            max-height: 100%;
            /*height:25rem;*/
            /*height:100%;*/
            /*overflow:visible;*/
            /*box-shadow:1px 4px 5px rgba(0, 0, 0, .7);*/
        }

    ul.navbar-nav li {
        width: 100%;
        border-bottom: 1px solid #fff;
    }

        ul.navbar-nav li:first-child {
            border-top: 1px solid #fff;
        }

    .navbar-nav a.btn {
        display: none;
    }
}

.navbar-nav a:hover {
    color: #90b548;
    text-decoration: none
}

.sub-menue {
    position: absolute;
    /*position:relative;*/
    display: flex;
    flex-direction: column;
    /*max-height: 500px;*/
    /*position: absolute;*/
    justify-content: flex-start;
    align-items: flex-start;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 101;
    transition: height .3s linear;
}

    .sub-menue.nav-sub-show {
        /*max-height: 500px;*/
        /*height:auto;*/
        /*display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;*/
        height: 135px;
        /*margin:0;
    padding:0;*/
        /*transition:height 2s linear;*/
    }

.nav-sub-login.nav-sub-show {
    height: 100px;
}

.sub-menue li {
    width: 100%;
}

.sub-menue a {
    /*display:block;
    width:100%;*/
    padding: 10px 10px 10px 15px;
    white-space: nowrap;
    text-align: left;
}

@media(max-width:768px) {
    .sub-menue {
        width: 100%;
        position: relative;
    }

        .sub-menue a {
            width: 100%;
            text-align: center;
        }

        .sub-menue li:last-child {
            /*border-bottom:none;*/
        }

    .nav-sub-login {
        position: relative;
        width: 100%;
    }
        /*.nav-sub-login li:last-child{
        border-bottom:none;
    }*/
        .nav-sub-login.nav-sub-show {
            /*height:120px;*/
            height: 8rem;
        }
}
/*------------------------------------------------ Nav Bar New--------------------------------------------------------*/
.covid {
        display:flex;
        justify-content:flex-end;
        color: #fff;
        text-align: center;
        font-weight: bold;
        margin-top: -7px;
        font-size: 1.8rem;
        width:95%;

    }
    /*.covid div{
        display:flex;
        justify-content:flex-end;
    }*/
    .covid a {
        text-decoration: none;
        color:#fff;
    }
@media screen and (max-width:900px){
    .covid{
        font-size:1.5rem;
    }
}
@media screen and (max-width:768px){
    .covid{
        display:none;
    }
}
.dropdown:focus {
    background:#123a85;
    /*display:block;*/
}

.dropdown-menu{
    position:absolute;
    /*position:relative;*/
    top: 30px;
    left:-30px;
    padding:1rem;
    z-index: 100;
    text-align: left;
    height:0;
    overflow:hidden;
    transition:all .3s linear;
}

.dropdown-menu.open{
    /*height:auto;*/
    height:10rem;
    background: #123a85;
    padding:0;
    margin-bottom:0;
    /*padding: 1rem;*/
}
.login-partial{
    margin-top:-1rem;
}
.login_partial{
    margin:0;
    position:relative;
    
}

.navbar-header{
    position: absolute;
    display:none;
    top: 0px;
    right: 10px;
    width:48px;
    height:48px;
    cursor:pointer;
}
/*.navbar-toggle{
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
}*/
.navbar-toggle{
    padding:5px;
    margin:auto;
    cursor:pointer;
}
.navbar-header .icon-bar{
    position:relative;
    display:block;
    height:3px;
    margin:4px auto;
    background:#eee;
    border-radius:5px;
    transition:all .3s linear;

}
.navbar-toggle.open .icon-bar:first-child{
    transform:rotate(45deg);
    top:10px;
    background:#8cd30c;
}
.navbar-toggle.open .icon-bar:nth-child(2){
    opacity:0;
}
.navbar-toggle.open .icon-bar:last-child{
    transform:rotate(-45deg);
    top:-3px;
    background:#8cd30c;
}
@media(max-width:768px){
    .nav{
        background:#0a3586;
        box-shadow:1px 2px 5px rgba(0,0,0,.5)
    }
    .navbar-header{
        display:block;
        margin-top:.2rem;
    }
    .dropdown-menu{
        position:relative;
        top:0;
        margin-top:0;
        width:100%;
        padding:0;
        text-align:center;
    }
    .dropdown-menu.open{
        height:8rem;
    }
    .dropdown-menu a{
        display:block;
        padding:.5rem;
    }
    
}