/* BASE GRID
 * ------------------------------------------------ */
.container {
  position: relative;
  width: 100%;
  padding: 0;
  float: left;
  overflow: hidden;
}
.container .row {
  max-width: 1410px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.container .row.abs_row {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1410px;
  width: 100%;
  margin: 0 auto;
  z-index: 100;
}
.container .row .column,
.container .row .columns {
  float: left;
  display: inline;
  position: relative;
}
.container .row .column.alpha,
.container .row .columns.alpha {
  margin-left: 0;
}
.container .row .column.omega,
.container .row .columns.omega {
  margin-right: 0;
}

/* Overrides */
.container .column,
.container .columns {
  margin-left: 1%;
  margin-right: 1%;
}

.container .one.column,
.container .one.columns {
  width: 6.33333%;
}
.container .two.columns {
  width: 14.66667%;
}
.container .three.columns {
  width: 23%;
}
.container .four.columns {
  width: 31.33333%;
}
.container .five.columns {
  width: 39.66667%;
}
.container .six.columns {
  width: 48%;
}
.container .seven.columns {
  width: 56.33333%;
}
.container .eight.columns {
  width: 64.66667%;
}
.container .nine.columns {
  width: 73%;
}
.container .ten.columns {
  width: 81.33333%;
}
.container .eleven.columns {
  width: 89.66667%;
}
.container .twelve.columns {
  width: 98%;
}
.container .columns.one-third {
  width: 41.77778%;
}
.container .columns.two-thirds {
  width: 85.55556%;
}
.container .offset-by-one {
  padding-left: 8.33333%;
}
.container .offset-by-two {
  padding-left: 16.66667%;
}
.container .offset-by-three {
  padding-left: 25%;
}
.container .offset-by-four {
  padding-left: 33.33333%;
}
.container .offset-by-five {
  padding-left: 41.66667%;
}
.container .offset-by-six {
  padding-left: 50%;
}
.container .offset-by-seven {
  padding-left: 58.33333%;
}
.container .offset-by-eight {
  padding-left: 66.66667%;
}
.container .offset-by-nine {
  padding-left: 75%;
}
.container .offset-by-ten {
  padding-left: 83.33333%;
}
.container .offset-by-eleven {
  padding-left: 91.66667%;
}

/* MOBILE
 * ------------------------------------------------ */
@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
  .container .column,
  .container .columns {
    margin-left: 0;
    margin-right: 0;
  }
  .container .one.column {
    width: 100%;
  }
  .container .one.columns, .container .two.columns, .container .three.columns, .container .four.columns, .container .five.columns, .container .six.columns, .container .seven.columns, .container .eight.columns, .container .nine.columns, .container .ten.columns, .container .eleven.columns, .container .twelve.columns {
    width: 100%;
  }
  .container .one-third.column {
    width: 100%;
  }
  .container .two-third.column {
    width: 100%;
  }
  .container .offset-by-one, .container .offset-by-two, .container .offset-by-three, .container .offset-by-four, .container .offset-by-five, .container .offset-by-six, .container .offset-by-seven, .container .offset-by-eight, .container .offset-by-nine, .container .offset-by-ten, .container .offset-by-eleven {
    padding-left: 0;
  }
}
/* CLEARING
 * ------------------------------------------------ */
.container:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix, .row {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .row:before, .row:after {
  content: "\0020";
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.clearfix:after, .row:after {
  clear: both;
}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* --------------------------------

Primary style

-------------------------------- */
.cd-panel {
  /*...*/
  visibility: hidden;
  transition: visibility 0s 0.6s;
  z-index: 1000000000;
}

.cd-panel.is-visible {
  visibility: visible;
  transition: visibility 0s 0s;
}

.cd-panel-header {
  /*...*/
  position: fixed;
  top: -50px;
  width: 90%;
  height: 50px;
  transition: top 0.3s 0s;
}

.is-visible .cd-panel-header {
  top: 0;
  transition: top 0.3s 0.3s;
}

.cd-panel-container {
  /*...*/
  position: fixed;
  width: 90%;
  height: 100%;
  top: 0;
  right: 0;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
  transform: translate3d(100%, 0, 0);
}

.is-visible .cd-panel-container {
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.cd-main-content {
  text-align: center;
}
.cd-main-content h1 {
  font-size: 20px;
  font-size: 1.25rem;
  color: #64788c;
  padding: 4em 0;
}
.cd-main-content .cd-btn {
  position: relative;
  display: inline-block;
  padding: 1em 2em;
  background-color: #89ba2c;
  color: #ffffff;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 5px rgba(0, 0, 0, 0.1);
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.no-touch .cd-main-content .cd-btn:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 1000px) {
  .cd-main-content h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}

.cd-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
}
.cd-panel::after {
  /* overlay layer */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
}
.cd-panel.is-visible {
  visibility: visible;
}
.cd-panel.is-visible::after {
  background: rgba(0, 0, 0, 0.6);
}

.cd-panel-header {
  position: fixed;
  width: 100%;
  height: 50px;
  line-height: 50px;
  z-index: 2;
  -moz-transition: top 0.3s 0s;
  -o-transition: top 0.3s 0s;
  -webkit-transition: top 0.3s;
  -webkit-transition-delay: 0s;
  transition: top 0.3s 0s;
}
.cd-panel-header h1 {
  font-weight: bold;
  color: #89ba2c;
  padding-left: 5%;
}
.from-right .cd-panel-header, .from-left .cd-panel-header {
  top: -50px;
}
.from-right .cd-panel-header {
  right: 0;
}
.from-left .cd-panel-header {
  left: 0;
}
.is-visible .cd-panel-header {
  top: 0;
  -moz-transition: top 0.3s 0.3s;
  -o-transition: top 0.3s 0.3s;
  -webkit-transition: top 0.3s;
  -webkit-transition-delay: 0.3s;
  transition: top 0.3s 0.3s;
}
@media only screen and (min-width: 768px) {
  .cd-panel-header {
    width: 100%;
  }
}
@media only screen and (min-width: 1000px) {
  .cd-panel-header {
    width: 100%;
  }
}

.cd-panel-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60px;
  background: url("../images/btn-close.png");
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 99999999999;
  /* image replacement */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.no-touch .cd-panel-close:hover::before, .no-touch .cd-panel-close:hover::after {
  background-color: #ffffff;
  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  -ms-transition-property: transform;
  -o-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: .3s;
  -moz-transition-duration: .3s;
  -ms-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
}

.cd-panel-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.from-right .cd-panel-container {
  right: 0;
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.from-left .cd-panel-container {
  left: 0;
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.is-visible .cd-panel-container {
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
@media only screen and (min-width: 768px) {
  .cd-panel-container {
    width: 100%;
  }
}
@media only screen and (min-width: 1000px) {
  .cd-panel-container {
    width: 100%;
  }
}
.cd-panel-container ul {
  padding: 50px 0 100px 0;
}
.cd-panel-container ul li {
  list-style-type: none;
  border-bottom: 1px solid #424242;
  padding: 0 0 15px 0;
  text-align: center;
}
.cd-panel-container ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  line-height: 34px;
  text-transform: upper;
  font-weight: 600;
}
.cd-panel-container ul li a:link, .cd-panel-container ul li a:visited {
  color: #fff;
  font-family: "Open Sans", sans-serif;
}
.cd-panel-container ul .mob-sub {
  margin: 15px 0 15px 0;
}
.cd-panel-container ul ul {
  margin: 0 0 30px 0;
  padding: 0;
}
.cd-panel-container ul ul li {
  border-bottom: none;
  padding: 15px 0 0 0;
  margin: 0 0 15px 0;
}
.cd-panel-container ul ul li a {
  text-decoration: none;
  font-size: 14px;
  line-height: 14px;
  color: #7d888a;
  font-weight: 400;
}
.cd-panel-container ul ul li a:link, .cd-panel-container ul ul li a:visited {
  color: #7d888a;
  font-family: "Open Sans", sans-serif;
}
.cd-panel-container h3 {
  font-size: 16px;
  line-height: 16px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin: 10px 0;
}
.cd-panel-container h3.green {
  margin: 20px 0 0 30px;
}

.cd-panel-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  padding: 0 5%;
  overflow: auto;
  /* smooth scrolling on touch devices */
  -webkit-overflow-scrolling: touch;
}
.cd-panel-content p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #424f5c;
  line-height: 1.4;
  margin: 2em 0;
}
.cd-panel-content p:first-of-type {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .cd-panel-content p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* RESET & BASICS (Inspired by E. Meyers)
 * ------------------------------------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* FONTS
 * ------------------------------------------------ */
@font-face {
  font-family: 'pmn_caecilia_55roman';
  src: url("../fonts/caecilia-roman-webfont.eot");
  src: url("../fonts/caecilia-roman-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/caecilia-roman-webfont.woff2") format("woff2"), url("../fonts/caecilia-roman-webfont.woff") format("woff"), url("../fonts/caecilia-roman-webfont.ttf") format("truetype"), url("../fonts/caecilia-roman-webfont.svg#pmn_caecilia_55roman") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* BASIC STYLES
 * ------------------------------------------------ */
body {
  background: #272727;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 21px;
  color: #58595b;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
}

/*** Responsive Base ***/
.desktop {
  display: block;
}
@media only screen and (max-width: 768px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .mobile {
    display: block;
  }
}

/* SHORTCUT CLASSES
 * ------------------------------------------------ */
input.whodat {
  display: none !important;
}

.center {
  text-align: center;
}

.overflow {
  overflow: visible !important;
}

.upper {
  text-transform: uppercase;
}

.getwiththeprogram {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

#scrollBud {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100px;
  background-color: red;
  visibility: hidden;
}

/* TYPOGRAPHY
 * ------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  color: #000000;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
}

h1 a, h2 a, h3 a,
h4 a, h5 a, h6 a {
  font-weight: inherit;
}

h1 {
  font-size: 54px;
  line-height: 58px;
  margin-bottom: 16px;
}

h2 {
  font-size: 41px;
  line-height: 47px;
  margin-bottom: 12px;
}

h3 {
  font-size: 33px;
  line-height: 40px;
  margin-bottom: 9px;
}

h4 {
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 5px;
}

h5 {
  font-size: 20px;
  line-height: 28px;
}

h6 {
  font-size: 16px;
  line-height: 25px;
}

.subheader {
  color: #777;
}

p {
  margin: 0 0 20px 0;
}
p img {
  margin: 0;
}
p.lead {
  font-size: 25px;
  line-height: 32px;
  color: #777;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: bold;
  color: #333;
}

u {
  text-decoration: underline;
}

small {
  font-size: 80%;
}

/*	Blockquotes  */
blockquote, blockquote p {
  font-size: 28px !important;
  line-height: 42px !important;
  color: #3d62a9;
  font-style: italic;
  font-weight: 300;
}

blockquote {
  text-align: center;
  font-style: italic;
}

blockquote cite {
  display: block;
  font-size: 14px;
  color: #555;
}
blockquote cite:before {
  content: "\2014 \0020";
}
blockquote cite a, blockquote cite a:visited {
  color: #555;
}

hr {
  border-style: solid;
  border-color: #ddd;
  border-width: 1px 0 0;
  clear: both;
  margin: 10px 0 30px;
  height: 0;
}

/* LINKS
 * ------------------------------------------------ */
a {
  color: #000;
  text-decoration: underline;
  outline: 0;
  transition: all 0.2s ease;
}

p a, p a:visited {
  line-height: inherit;
}

/* LISTS
 * ------------------------------------------------ */
ul,
ol {
  margin-bottom: 20px;
}

ul {
  list-style: none outside;
}

ol {
  list-style: decimal;
}

ol, ul.square,
ul.circle, ul.disc {
  margin-left: 30px;
}

ul.square {
  list-style: square outside;
}

ul.circle {
  list-style: circle outside;
}

ul.disc {
  list-style: disc outside;
}

ul ul, ul ol,
ol ol, ol ul {
  margin-top: 4px;
  margin-right: 0;
  margin-bottom: 5px;
  margin-left: 30px;
  font-size: 90%;
}

ul ul li, ul ol li,
ol ol li, ol ul li {
  margin-bottom: 6px;
}

li {
  line-height: 18px;
  margin-bottom: 12px;
}

ul.large li {
  line-height: 21px;
}

li p {
  line-height: 21px;
}

/* IMAGES
 * ------------------------------------------------ */
img.scale {
  width: 100%;
  height: auto;
}

img.scale-max {
  max-width: 100%;
  height: auto;
}

img.height {
  /* Set rules to fill background */
  min-height: 100%;
  min-width: 100%;
}

img.displayed {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTONS
 * ------------------------------------------------ */
.btn-whiteborder {
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  font-size: 14px;
  background: transparent;
  padding: 11px 17px;
  border: solid #ffffff 3px;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: all 0.2s ease "";
  -moz-transition: all 0.2s ease "";
  -ms-transition: all 0.2s ease "";
  -o-transition: all 0.2s ease "";
  transition: all 0.2s ease "";
  cursor: pointer;
}
.btn-whiteborder:hover, .btn-whiteborder.active {
  background: #ffdf5d;
  border: solid #ffdf5d 3px;
  text-decoration: none;
  color: #000;
}
.btn-whiteborder.darknav {
  color: #272727;
  border: 3px solid #272727;
}
.btn-whiteborder.darknav:hover, .btn-whiteborder.darknav.active {
  border: 3px solid #ffdf5d;
}
.btn-whiteborder.innernav {
  color: #747474;
  border: 3px solid #747474;
}
.btn-whiteborder.innernav:hover, .btn-whiteborder.innernav.active {
  border: 3px solid #ffdf5d;
}
.btn-whiteborder.whitebg {
  color: #272727;
  border: 3px solid #272727;
}
.btn-whiteborder.whitebg:hover, .btn-whiteborder.whitebg.active {
  background: #fff;
  border: 3px solid #fff;
}
.quote.btn-whiteborder.white {
  background: #fff;
  color: #272727;
  border: 3px solid #272727;
}
.quote.btn-whiteborder.yellow {
  background-color: #ffdf5d;
  border: solid #ffdf5d 3px;
  color: #000;
}

.btn-whiteborder.blue {
  color: #4e6ca8;
  border: 2px solid #4e6ca8;
  padding: 13px 45px;
}
.btn-whiteborder.blue:hover {
  background: #4e6ca8;
  color: #fff;
}
.btn-whiteborder.blue-whitebg {
  color: #4e6ca8;
  border: 2px solid #4e6ca8;
  padding: 13px 45px;
  background: #fff;
}
.btn-whiteborder.blue-whitebg:hover {
  background: #4e6ca8;
  color: #fff;
}
.btn-whiteborder.blue-bluebg {
  color: #ffffff;
  border: 2px solid #4e6ca8;
  padding: 13px 45px;
  background: #4e6ca8;
}
.btn-whiteborder.blue-bluebg:hover {
  background: #4e6ca8;
  color: #c2c2c2;
}
.btn-whiteborder.blue-graybg {
  color: #4e6ca8;
  border: 2px solid #4e6ca8;
  padding: 13px 45px;
  background: #f5f5f5;
}
.btn-whiteborder.blue-graybg:hover {
  background: #4e6ca8;
  color: #c2c2c2;
}

.btn-black {
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  font-size: 15px;
  background: #332927;
  padding: 20px 80px 20px 80px;
  border: none;
  text-decoration: none;
  cursor: pointer;
}
.btn-black:hover {
  text-decoration: none;
}

/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* FORMS
 * ------------------------------------------------ */
form {
  margin-bottom: 20px;
  width: 75%;
  margin: 0 auto;
}

fieldset {
  margin-bottom: 20px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="number"],
textarea,
select {
  background: #fff;
  border: none;
  padding: 20px 25px;
  outline: none;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  color: #777;
  margin: 0 0 20px;
  width: 210px;
  max-width: 100%;
  display: block;
  -webkit-appearance: none;
  border-radius: 0;
}

select {
  padding: 0;
}

textarea {
  min-height: 60px;
}

label,
legend {
  display: block;
  font-size: 15px;
  font-weight: bold;
}

select {
  width: 220px;
}

input[type="checkbox"] {
  display: inline;
}

label span,
legend span {
  font-size: 15px;
  font-weight: normal;
  color: #444;
}

/* MISC
 * ------------------------------------------------ */
.subtract-bottom {
  margin-bottom: -20px !important;
}

.remove-bottom {
  margin-bottom: 0 !important;
}

.half-bottom {
  margin-bottom: 10px !important;
}

.add-bottom {
  margin-bottom: 20px !important;
}

/**
 * SASS/SCSS/Compass Transcription of Skeleton Responsive Grid
 * originally authored by Dave Gamache. This translation offers
 * mixins that support fluid and as well as fixed grids to supplement
 * the work that Dave Gamache has done.
 * @author Dennis Thompson <http://www.atomicpages.net>
 * @copyright Copyright (c) 2013 AtomicPages LLC
 * @license MIT
 * @version 1.6.1
 */
/*** Header ***/
.head-nav {
  position: absolute;
  top: 0;
  z-index: 10000;
  overflow: visible !important;
}

.home-nav {
  position: fixed;
  top: 0;
  overflow: visible !important;
}

#subLogo {
  float: left;
  width: 12%;
  margin: 0 0 0 3%;
}
@media only screen and (max-width: 1410px) {
  #subLogo {
    width: 12%;
    margin: 0 0 0 5%;
  }
}
@media only screen and (max-width: 1199px) {
  #subLogo {
    width: 15%;
  }
}
@media only screen and (max-width: 479px) {
  #subLogo {
    width: 25%;
  }
}

#subMenu {
  float: left;
  margin: 60px 0 0;
}
#subMenu ul {
  text-align: right;
  padding: 0;
  list-style: none;
  position: relative;
}
#subMenu ul li {
  position: relative;
  display: inline-block;
  margin: 0 15px;
}
#subMenu ul li a {
  font-size: 14px;
  line-height: 14px;
  font-style: normal;
  font-weight: bold;
  color: #FFF;
  letter-spacing: initial;
  text-decoration: none;
  padding: 12px 0;
  transition: all 0.2s linear;
}
#subMenu ul li a:hover {
  border-bottom: 2px solid #FFF;
}
#subMenu ul li.here a, #subMenu ul li.parent-here a {
  border-bottom: 2px solid #FFF;
}
@media only screen and (max-width: 899px) {
  #subMenu ul li {
    margin: 0 10px;
  }
}
#subMenu.darknav ul li a {
  color: #272727;
}
#subMenu.darknav ul li a:hover {
  border-bottom: 2px solid #272727;
}
#subMenu.darknav ul li.here a, #subMenu.darknav ul li.parent-here a {
  border-bottom: 2px solid #272727;
}
#subMenu.innernav ul li a {
  color: #747474;
}
#subMenu.innernav ul li a:hover {
  border-bottom: 2px solid #747474;
}
#subMenu.innernav ul li.here a, #subMenu.innernav ul li.parent-here a {
  border-bottom: 2px solid #747474;
}
@media only screen and (max-width: 1410px) {
  #subMenu {
    width: 50%;
  }
}
@media only screen and (max-width: 1199px) {
  #subMenu {
    width: 50%;
  }
}
@media only screen and (max-width: 999px) {
  #subMenu {
    width: 40%;
  }
}
@media only screen and (max-width: 899px) {
  #subMenu {
    margin: 40px 0 0;
  }
  #subMenu ul li a {
    font-size: 12px;
    line-height: 12px;
  }
}
@media only screen and (max-width: 768px) {
  #subMenu {
    display: none;
  }

  .get-quote {
    display: none;
  }
}

#subAccountAccess {
  float: left;
  width: 12%;
  margin: 60px 1% 0 0;
  text-align: right;
  position: relative;
}
#subAccountAccess .saa_dropdown {
  position: absolute;
  top: 34px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.2s, opacity 0.2s, linear;
  -moz-transition: visibility 0.2s, opacity 0.2s, linear;
  -ms-transition: visibility 0.2s, opacity 0.2s, linear;
  -o-transition: visibility 0.2s, opacity 0.2s, linear;
  transition: visibility 0.2s, opacity 0.2s, linear;
}
#subAccountAccess .saa_dropdown.active {
  visibility: visible;
  opacity: 1;
}
#subAccountAccess .saa_dropdown.whiteborder ul {
  border: 2px solid #FFF;
}
#subAccountAccess .saa_dropdown ul {
  border: 2px solid #ffdf5d;
  text-align: left;
  background: #FFF;
  width: 185px;
}
#subAccountAccess .saa_dropdown ul li {
  margin: 0;
}
#subAccountAccess .saa_dropdown ul li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
}
#subAccountAccess .saa_dropdown ul li a:hover {
  background: #F1F1F1;
}
@media only screen and (max-width: 1410px) {
  #subAccountAccess {
    width: 15%;
  /*  margin: 60px 5% 0 0; */
  }
}
@media only screen and (max-width: 999px) {
  #subAccountAccess {
    width: 20%;
  }
}
@media only screen and (max-width: 899px) {
  #subAccountAccess {
    margin: 40px 5% 0 0;
  }
}
@media only screen and (max-width: 768px) {
  #subAccountAccess {
    display: none;
  }
}

.nav-burger {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 150000;
}

/*** Full Page Styles ***/
#fullPage {
  position: absolute;
  background-color: #333;
}

.section {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.content {
  position: relative;
  top: 50%;
  margin-top: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  z-index: 100;
}
.content h1 {
  font-family: "pmn_caecilia_55roman";
  color: #FFF;
  font-size: 58px;
  line-height: 58px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .content h1 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
.content h2 {
  font-family: "pmn_caecilia_55roman";
  color: #FFF;
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 55px;
}
@media only screen and (max-width: 1199px) {
  .content h2 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .content h2 {
    font-size: 24px;
    line-height: 25px;
    margin: 0 0 10px 0;
  }
}
.content h3 {
  font-family: "pmn_caecilia_55roman";
  color: #252323;
  /* font-size: 28px; */
  line-height: 28px;
}
@media only screen and (max-width: 768px) {
  .content h3 {
    font-size: 18px;
    line-height: 21px;
  }
}
.content h5 {
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  color: #FFF;
  padding: 0 35px 22px 0;
  border-bottom: 2px solid #FFF;
  display: inline-block;
  margin: 0 0 30px 0;
}
@media only screen and (max-width: 768px) {
  .content h5 {
    margin: 0 0 18px 0;
    padding: 0 30px 8px 0;
  }
}
.content p {
  color: #FFF;
  margin: 0;
}
.content.left {
  text-align: left;
}
.content.left .content_links a {
  margin: 0 38px 0 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.content_links {
  margin: 70px 0 0 0;
}
.content_links a {
  color: #ffdf5d;
  font-family: "pmn_caecilia_55roman";
  font-size: 24px;
  line-height: 55px;
  text-decoration: none;
  margin: 0 19px;
  padding: 13px 0;
  transition: all 0.2s linear;
}
.content_links a:hover {
  border-bottom: 2px solid #ffdf5d;
}
@media only screen and (max-width: 999px) {
  .content_links a {
    font-size: 18px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .content_links {
    margin: 20px 0 0 0;
  }
}
@media only screen and (max-width: 479px) {
  .content_links {
    text-align: center;
  }
  .content_links a {
    display: block;
    font-size: 24px;
    line-height: 25px;
  }
  .content_links a:hover {
    border-bottom: none;
  }
}

.arrow-sub {
  position: absolute;
  display: block;
  width: 27px;
  height: 15px;
  padding: 10px;
  background-image: url("../images/icon-arrow-white.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 27px auto;
  margin: -10px;
  cursor: pointer;
  bottom: 40px;
  left: 49%;
}
@media only screen and (max-width: 768px) {
  .arrow-sub {
    bottom: 10px;
  }
}

.arrow {
  position: absolute;
  display: block;
  width: 27px;
  height: 15px;
  padding: 10px;
  background-image: url("../images/icon-arrow-white.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 27px auto;
  margin: -10px;
  cursor: pointer;
  z-index: 100;
}

.no-touch .arrow:hover {
  opacity: 0.5;
}

.arrow.disabled, .arrow.disabled:hover {
  opacity: 0.2;
  cursor: default;
}

.no-touch .arrow.disabled:hover {
  opacity: 0.2;
  cursor: default;
}

.arrow.down {
  display: none;
  left: 50%;
  bottom: 40px;
  -webkit-transform: translateX(-16px);
  -ms-transform: translateX(-23px);
  -moz-transform: translateX(-23px);
  -o-transform: translateX(-23px);
  transform: translateX(-16px);
}
@media only screen and (max-width: 768px) {
  .arrow.down {
    bottom: 10px;
  }
}

/*** Sections Styles ***/
#sectionHome {
  background-color: #272727;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/bg-one.jpg");
}
#sectionHome .content {
  max-width: 1200px;
  margin: auto;
}
#sectionHome .content #thirtyyear {
  width: 35%;
  margin: 0 32.5% 30px;
}
#sectionHome .content p {
  font-size: 21px;
  line-height: 21px;
}
@media only screen and (max-width: 768px) {
  #sectionHome .content p {
    font-size: 14px;
    line-height: 18px;
    margin: 0 40px;
  }
}

#sectionIndividuals {
  background-color: #272727;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/bg-two.jpg");
}
#sectionIndividuals .content {
  max-width: 1200px;
  margin: auto 0 auto 100px;
  width: 40%;
}
#sectionIndividuals .content p {
  font-size: 18px;
  line-height: 28px;
}
#sectionIndividuals .content .content_links {
  text-align: left;
}
@media only screen and (max-width: 1499px) {
  #sectionIndividuals .content {
    width: 45%;
  }
}
@media only screen and (max-width: 1299px) {
  #sectionIndividuals .content {
    width: 50%;
  }
}
@media only screen and (max-width: 1199px) {
  #sectionIndividuals .content {
    margin: auto 0 auto 45px;
  }
  #sectionIndividuals .content p {
    margin: 0 100px 0 0;
  }
}
@media only screen and (max-width: 999px) {
  #sectionIndividuals .content p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 959px) {
  #sectionIndividuals .content {
    width: 55%;
  }
}
@media only screen and (max-width: 899px) {
  #sectionIndividuals .content {
    width: 58%;
  }
}
@media only screen and (max-width: 799px) {
  #sectionIndividuals .content {
    width: 65%;
  }
}
@media only screen and (max-width: 768px) {
  #sectionIndividuals .content {
    width: 100%;
    margin: auto 25px;
  }
  #sectionIndividuals .content p {
    line-height: 18px;
  }
}
@media only screen and (max-width: 479px) {
  #sectionIndividuals .content p {
    margin: 0 30px 0 0;
  }
}
@media only screen and (max-width: 479px) {
  #sectionIndividuals {
    background-position: top right -100px;
  }
}

#sectionEmployers {
  background-color: #272727;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/bg-three.jpg");
}
#sectionEmployers .content {
  max-width: 1200px;
  margin: auto 3% auto 0;
  width: 40%;
  float: right;
}
#sectionEmployers .content p {
  font-size: 18px;
  line-height: 28px;
  margin-right: 50px;
}
#sectionEmployers .content .content_links {
  text-align: left;
}
@media only screen and (max-width: 1699px) {
  #sectionEmployers .content {
    margin: auto 5% auto 0;
  }
}
@media only screen and (max-width: 1599px) {
  #sectionEmployers .content {
    margin: auto 7% auto 0;
  }
}
@media only screen and (max-width: 1499px) {
  #sectionEmployers .content {
    width: 45%;
  }
}
@media only screen and (max-width: 1399px) {
  #sectionEmployers .content {
    width: 47%;
    margin: auto 10% auto 0;
  }
}
@media only screen and (max-width: 1299px) {
  #sectionEmployers .content {
    width: 49%;
  }
}
@media only screen and (max-width: 1199px) {
  #sectionEmployers .content {
    width: 53%;
    margin: auto 0;
  }
}
@media only screen and (max-width: 1099px) {
  #sectionEmployers .content {
    width: 58%;
  }
}
@media only screen and (max-width: 999px) {
  #sectionEmployers .content {
    width: 52%;
  }
  #sectionEmployers .content p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 899px) {
  #sectionEmployers .content {
    width: 65%;
  }
}
@media only screen and (max-width: 768px) {
  #sectionEmployers .content {
    width: 100%;
    margin: auto 25px;
    float: none;
  }
}
@media only screen and (max-width: 479px) {
  #sectionEmployers {
    background-position: top left;
  }
}

#sectionExpertise {
  background-color: #272727;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/bg-four.jpg");
}
#sectionExpertise .content {
  max-width: 1200px;
  margin: auto;
}
#sectionExpertise .content h2 {
  color: #252323;
}
#sectionExpertise .content p {
  color: #4B4D51;
  margin: 0 200px;
}
#sectionExpertise .content .content_logos {
  margin: 45px 0 0 0;
}
#sectionExpertise .content .content_logos img {
  margin: 0 10px;
}
@media only screen and (max-width: 999px) {
  #sectionExpertise .content p {
    margin: 0 100px;
  }
}
@media only screen and (max-width: 768px) {
  #sectionExpertise .content p {
    margin: 0 120px;
    font-size: 14px;
    line-height: 18px;
  }
  #sectionExpertise .content .content_logos {
    margin: 10px 0 0 0;
  }
  #sectionExpertise .content .content_logos img {
    width: 10%;
  }
}
@media only screen and (max-width: 479px) {
  #sectionExpertise .content p {
    margin: 0 25px;
  }
  #sectionExpertise .content .content_logos img {
    width: 35%;
  }
}

#sectionLearnmore {
  background-color: #ffdf5d;
}
#sectionLearnmore .content {
  max-width: 1200px;
  margin: auto;
}
#sectionLearnmore .content .content_form {
  margin: 55px 0 0 0;
}
#sectionLearnmore .content .content_form input {
  display: inline-block;
  margin: 10px 10px;
  width: 300px;
  -webkit-appearance: none;
  border-radius: 0;
}
#sectionLearnmore .content .content_form input.submit {
  width: auto;
  float: left;
  margin-left: 10%;
}
@media only screen and (max-width: 999px) {
  #sectionLearnmore .content .content_form input {
    width: 250px;
  }
}
@media only screen and (max-width: 899px) {
  #sectionLearnmore .content .content_form input {
    width: 200px;
  }
}
@media only screen and (max-width: 799px) {
  #sectionLearnmore .content .content_form input {
    width: 180px;
  }
}
@media only screen and (max-width: 768px) {
  #sectionLearnmore .content .content_form input {
    width: 60%;
    margin: 0 18% 10px 18%;
    padding: 10px 15px;
  }
}
@media only screen and (max-width: 479px) {
  #sectionLearnmore .content .content_form input {
    margin: 0 5% 20px 5%;
  }
  #sectionLearnmore .content .content_form input.submit {
    width: 68%;
  }
}
@media only screen and (max-width: 479px) {
  #sectionLearnmore .content .content_form {
    margin: 15px 0 0 0;
  }
}
@media only screen and (max-width: 899px) {
  #sectionLearnmore .content h3 {
    margin: 0 50px;
  }
}
@media only screen and (max-width: 768px) {
  #sectionLearnmore .content .content_form {
    margin: 10px 0 0 0;
  }
}
#sectionLearnmore #footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto 65px auto;
  border-top: 3px solid #252323;
  text-align: left;
  padding: 40px 0 0 0;
  width: 100%;
  max-width: 1410px;
}
#sectionLearnmore #footer .fcopy {
  float: left;
  width: 25%;
}
#sectionLearnmore #footer .fcopy p {
  font-size: 14px;
  line-height: 14px;
  color: #000;
}
@media only screen and (max-width: 899px) {
  #sectionLearnmore #footer .fcopy {
    width: 100%;
    text-align: center;
  }
}
#sectionLearnmore #footer .fnav {
  float: left;
  width: 75%;
  text-align: right;
}
#sectionLearnmore #footer .fnav ul {
  float: right;
}
#sectionLearnmore #footer .fnav ul li {
  float: left;
  display: inline;
  margin: 0 0 0 25px;
}
#sectionLearnmore #footer .fnav ul li a {
  font-size: 14px;
  line-height: 14px;
  color: #000;
  text-decoration: none;
  padding: 12px 0;
}
#sectionLearnmore #footer .fnav ul li a:hover {
  border-bottom: 2px solid #000;
}
@media only screen and (max-width: 959px) {
  #sectionLearnmore #footer .fnav ul li {
    margin: 0 0 0 15px;
  }
}
@media only screen and (max-width: 899px) {
  #sectionLearnmore #footer .fnav {
    width: 100%;
    text-align: center;
  }
  #sectionLearnmore #footer .fnav ul {
    float: none;
    display: inline-block;
  }
}
@media only screen and (max-width: 768px) {
  #sectionLearnmore #footer .fnav {
    display: none;
  }
}
@media only screen and (max-width: 1410px) {
  #sectionLearnmore #footer {
    width: 95%;
    margin: 0 2.5%;
    padding: 40px 0 65px 0;
  }
}
@media only screen and (max-width: 768px) {
  #sectionLearnmore #footer {
    padding: 40px 0;
  }
  #sectionLearnmore #footer p {
    margin: 0;
  }
}

/*** Simple Page ***/
.simple-page {
  background: #FFF;
  padding: 150px 0;
}
.simple-page h1, .simple-page h2, .simple-page h3, .simple-page h4, .simple-page h5 {
  font-family: "pmn_caecilia_55roman";
}
.simple-page h1 {
  text-align: center;
}
.simple-page .sp-wrap {
  float: left;
  width: 90%;
  margin: 0 5%;
}

/*** Begin Sub Pages ***/
.sub-hero {
  line-height: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.sub-hero .sh-content {
  float: left;
  width: 80%;
  margin: 20% 10% 0;
}
.sub-hero .sh-content h1 {
  font-family: "pmn_caecilia_55roman";
  color: #FFF;
  font-size: 47px;
  line-height: 55px;
  margin-bottom: 40px;
}
.sub-hero .sh-content p {
  font-size: 21px;
  line-height: 28px;
  color: #FFF;
  margin: 0 10%;
}
@media only screen and (max-width: 1410px) {
  .sub-hero .sh-content {
    margin: 16% 10% 0;
  }
}
@media only screen and (max-width: 1199px) {
  .sub-hero .sh-content h1 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1099px) {
  .sub-hero .sh-content {
    margin: 21% 10% 0;
  }
}
@media only screen and (max-width: 999px) {
  .sub-hero .sh-content h1 {
    font-size: 34px;
    line-height: 34px;
  }
  .sub-hero .sh-content p {
    font-size: 17px;
    line-height: 23px;
  }
}
@media only screen and (max-width: 899px) {
  .sub-hero .sh-content {
    margin: 23% 10% 0;
  }
}
@media only screen and (max-width: 768px) {
  .sub-hero .sh-content {
    margin: 45% 2.5% 0;
    width: 95%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 700px) {
  .sub-hero .sh-content {
    margin: 15% 2.5% 0;
    width: 95%;
  }
  .sub-hero .sh-content h1 {
    font-size: 28px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .sub-hero .sh-content {
    margin: 50% 2.5% 0;
  }
  .sub-hero .sh-content h1 {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 10px 0;
  }
  .sub-hero .sh-content p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .sub-hero .sh-content .content_links {
    margin: 15px 0 0 0;
  }
  .sub-hero .sh-content .content_links a {
    font-size: 18px;
    line-height: 18px;
    padding: 5px 0;
  }
}

#indHero {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/hero-indiv.jpg");
}

#empHero {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/hero-emp.jpg");
}

#aboutHero {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/about-hero.jpg");
  max-height: 900px;
}

.inner-hero {
  padding: 255px 0 130px;
  background: #FFF;
}
.inner-hero .sh-content {
  float: left;
  width: 80%;
  margin: 0 10%;
}
.inner-hero .sh-content h1 {
  font-size: 37px;
  line-height: 47px;
  color: #000;
}
.inner-hero .sh-content p {
  color: #58595B;
  font-size: 18px;
  line-height: 22px;
}
@media only screen and (max-width: 1199px) {
  .inner-hero .sh-content h1 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 999px) {
  .inner-hero .sh-content h1 {
    font-size: 34px;
    line-height: 34px;
  }
  .inner-hero .sh-content p {
    font-size: 17px;
    line-height: 23px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 700px) {
  .inner-hero .sh-content h1 {
    font-size: 28px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .inner-hero .sh-content h1 {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 10px 0;
  }
  .inner-hero .sh-content p {
    font-size: 14px;
    line-height: 20px;
  }
}
.inner-hero .content_links a {
  color: #4E6CA8;
}
.inner-hero .content_links a:hover {
  border-bottom: 2px solid #4E6CA8;
}

.emp-thumbs {
  background: #FFF;
  padding: 140px 0 0 0;
}
.emp-thumbs .et-wrap {
  width: 64%;
  margin: 0 18%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .emp-thumbs .et-wrap {
    width: 90%;
    margin: 0 5%;
  }
}
.emp-thumbs img {
  margin: 0 0 50px;
}
.emp-thumbs p {
  font-size: 21px;
  line-height: 30px;
  color: #58595B;
}

.sub-lr-involved {
  background: #FFF;
  padding: 120px 0 0 0;
}
.sub-lr-involved .slr-wrap {
  float: left;
  width: 100%;
  margin: 0 0 130px 0;
}
.sub-lr-involved .slr-wrap h2 {
  font-size: 37px;
  line-height: 37px;
  font-family: "pmn_caecilia_55roman";
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 899px) {
  .sub-lr-involved .slr-wrap h2 {
    font-size: 24px;
    line-height: 24px;
  }
}
.sub-lr-involved .slr-wrap ul.three-wide {
  float: left;
  margin: 0 0 40px 0;
}
.sub-lr-involved .slr-wrap ul.three-wide li {
  float: left;
  width: 30%;
  margin: 0 0 20px 3%;
  list-style-type: disc;
  font-family: "pmn_caecilia_55roman";
  font-size: 15px;
  color: #58595B;
  font-weight: bold;
}
@media only screen and (max-width: 899px) {
  .sub-lr-involved .slr-wrap ul.three-wide {
    margin: 0 0 20px;
  }
  .sub-lr-involved .slr-wrap ul.three-wide li {
    font-size: 13px;
  }
}
@media only screen and (max-width: 768px) {
  .sub-lr-involved .slr-wrap ul.three-wide {
    width: 100%;
  }
  .sub-lr-involved .slr-wrap ul.three-wide li {
    float: none;
    display: inline-block;
  }
}
@media only screen and (max-width: 479px) {
  .sub-lr-involved .slr-wrap ul.three-wide li {
    width: 44%;
  }
}
.sub-lr-involved .slr-wrap p {
  margin: 0 0 40px;
}
@media only screen and (max-width: 899px) {
  .sub-lr-involved .slr-wrap p {
    margin: 0 0 20px 0;
  }
}
.sub-lr-involved .slr-wrap a.account {
  color: #4E6CA8;
  text-decoration: none;
  font-weight: bold;
  margin: 0 0 0 30px;
  padding-bottom: 13px;
}
.sub-lr-involved .slr-wrap a.account:hover {
  border-bottom: 2px solid #4E6CA8;
}
.sub-lr-involved .slr-wrap .left-text-involved {
  float: left;
  width: 40%;
  margin: 0 5% 0 10%;
  padding: 60px 0 0 0;
}
@media only screen and (max-width: 1099px) {
  .sub-lr-involved .slr-wrap .left-text-involved {
    width: 45%;
    margin: 0 5%;
    padding: 20px 0 0 0;
  }
}
@media only screen and (max-width: 899px) {
  .sub-lr-involved .slr-wrap .left-text-involved {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .sub-lr-involved .slr-wrap .left-text-involved {
    width: 95%;
    margin: 0 2.5%;
  }
}
.sub-lr-involved .slr-wrap .right-img-full {
  float: left;
  width: 45%;
}
@media only screen and (max-width: 768px) {
  .sub-lr-involved .slr-wrap .right-img-full {
    display: none;
  }
}
.sub-lr-involved .slr-wrap .left-img-full {
  float: left;
  width: 45%;
}
@media only screen and (max-width: 768px) {
  .sub-lr-involved .slr-wrap .left-img-full {
    display: none;
  }
}
.sub-lr-involved .slr-wrap .right-text-involved {
  float: left;
  width: 40%;
  margin: 0 10% 0 5%;
  padding: 60px 0 0 0;
}
@media only screen and (max-width: 1099px) {
  .sub-lr-involved .slr-wrap .right-text-involved {
    width: 45%;
    margin: 0 5%;
    padding: 20px 0 0 0;
  }
}
@media only screen and (max-width: 899px) {
  .sub-lr-involved .slr-wrap .right-text-involved {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .sub-lr-involved .slr-wrap .right-text-involved {
    width: 95%;
    margin: 0 2.5%;
  }
}
@media only screen and (max-width: 768px) {
  .sub-lr-involved .slr-wrap {
    margin: 0 0 75px;
  }
}
@media only screen and (max-width: 768px) {
  .sub-lr-involved {
    padding: 75px 0 0 0;
    text-align: center;
  }
}

.mobile-app {
  line-height: 0;
  max-height: 690px;
  position: relative;
}
.mobile-app .ma-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.mobile-app .ma-content {
  float: left;
  width: 32%;
  margin: 200px 60% 0 8%;
  z-index: 200;
}
.mobile-app .ma-content h2 {
  color: #FFF;
  font-family: "pmn_caecilia_55roman";
  font-size: 37px;
  line-height: 37px;
  margin: 0 0 40px;
}
.mobile-app .ma-content p {
  color: #FFF;
  margin: 0 0 40px;
  line-height: 25px;
}
.mobile-app .ma-content img {
  margin: 0 20px 0 0;
}
@media only screen and (max-width: 1199px) {
  .mobile-app .ma-content {
    margin: 150px 60% 0 8%;
  }
}
@media only screen and (max-width: 1099px) {
  .mobile-app .ma-content {
    margin: 110px 60% 0 8%;
  }
}
@media only screen and (max-width: 959px) {
  .mobile-app .ma-content {
    width: 40%;
    margin: 50px 55% 0 5%;
  }
}
@media only screen and (max-width: 768px) {
  .mobile-app .ma-content {
    width: 95%;
    margin: 220px 2.5% 0;
    text-align: center;
  }
}
@media only screen and (max-width: 479px) {
  .mobile-app .ma-content {
    width: 95%;
    margin: 150px 2.5% 0;
    text-align: center;
  }
  .mobile-app .ma-content img {
    width: 100px;
  }
}

.inner-content {
  background: #FFF;
  padding: 125px 0 0 0;
}
.inner-content h2 {
  font-size: 27px;
  line-height: 27px;
  font-family: "pmn_caecilia_55roman";
}
.inner-content a.ic-cta {
  color: #4E6CA8;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  background-image: url("../images/icon-blue-arrow.png");
  background-size: 17px;
  background-repeat: no-repeat;
  padding: 0 30px 0 0;
  background-position: right center;
}
.inner-content.gray {
  background: #F5F5F5;
  padding-bottom: 145px;
}
@media only screen and (max-width: 768px) {
  .inner-content.gray {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .inner-content {
    padding: 0 0 40px 0;
  }
}

.inner-basic {
  background: #F5F5F5;
  padding: 150px 0;
}
.inner-basic .ib-content {
  float: left;
  width: 65%;
  margin: 0 17.5%;
}
.inner-basic .ib-content img {
  width: 45%;
  margin: 0 27.5% 75px;
}
.inner-basic .ib-content p {
  color: #58595B;
  font-size: 18px;
  line-height: 26px;
}
@media only screen and (max-width: 899px) {
  .inner-basic .ib-content {
    width: 90%;
    margin: 0 5%;
  }
}

.bgimage-text {
  line-height: 0;
  max-height: 700px;
}
.bgimage-text .bgi-wrap {
  float: left;
  width: 60%;
  margin: 145px 20% 0;
}
.bgimage-text .bgi-wrap h2 {
  font-family: "pmn_caecilia_55roman";
  font-size: 37px;
  margin: 0 0 35px 0;
}
.bgimage-text .bgi-wrap p {
  font-size: 18px;
  line-height: 26px;
  color: #58595B;
  margin: 0 0 60px;
}
@media only screen and (max-width: 768px) {
  .bgimage-text .bgi-wrap p {
    display: none;
  }
}
@media only screen and (max-width: 799px) {
  .bgimage-text .bgi-wrap {
    margin: 100px 20% 0;
  }
}
@media only screen and (max-width: 768px) {
  .bgimage-text .bgi-wrap {
    width: 80%;
    margin: 100px 10% 0;
  }
}
@media only screen and (max-width: 479px) {
  .bgimage-text .bgi-wrap {
    margin: 50px 10% 0;
  }
}

.ic_simple {
  width: 80%;
  margin: 0 10%;
  font-size: 21px;
  line-height: 30px;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .ic_simple {
    font-size: 18px;
    line-height: 26px;
    margin: 50px 10% 0;
  }
}

.ic_trips {
  float: left;
  width: 90%;
  margin: 100px 5% 150px;
}
.ic_trips .ict {
  float: left;
  width: 30%;
  margin: 0 1.5% 0 1.5%;
  text-align: center;
}
.ic_trips .ict h3 {
  font-family: "pmn_caecilia_55roman";
  font-size: 37px;
  line-height: 37px;
  margin: 0 0 15px;
}
@media only screen and (max-width: 768px) {
  .ic_trips .ict {
    width: 100%;
    margin: 0 0 20px 0;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .ic_trips {
    width: 95%;
    margin: 50px 2.5% 0;
  }
}

.lt-ri {
  float: left;
  width: 100%;
  position: relative;
  margin: 0 0 125px 0;
}
.lt-ri .text {
  float: left;
  width: 40%;
  height: 100%;
  margin: 0 12% 0 3%;
  color: #58595B;
}
.lt-ri .text ul {
  margin: 20px 0 0 20px;
}
.lt-ri .text ul li {
  list-style-type: disc;
}
@media only screen and (max-width: 1410px) {
  .lt-ri .text {
    width: 45%;
    margin: 0 5%;
  }
}
@media only screen and (max-width: 768px) {
  .lt-ri .text {
    width: 90%;
    margin: 0 5% !important;
    padding: 40px 0;
  }
}
.lt-ri .image {
  float: left;
  width: 42%;
  margin: 0 3% 0 0;
}
@media only screen and (max-width: 1410px) {
  .lt-ri .image {
    width: 40%;
    margin: 0 5% 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .lt-ri .image {
    width: 90%;
    margin: 0 5%;
  }
}
@media only screen and (max-width: 768px) {
  .lt-ri {
    margin: 0;
  }
}

.li-rt {
  float: left;
  width: 100%;
  margin: 0 0 125px 0;
}
.li-rt .text {
  float: right;
  width: 40%;
  margin: 0 3% 0 12%;
  color: #58595B;
}
.li-rt .text ul {
  margin: 20px 0 0 20px;
}
.li-rt .text ul li {
  list-style-type: disc;
}
@media only screen and (max-width: 1410px) {
  .li-rt .text {
    width: 45%;
    margin: 0 5%;
  }
}
@media only screen and (max-width: 768px) {
  .li-rt .text {
    width: 90%;
    margin: 0 5% !important;
    padding: 40px 0;
  }
}
.li-rt .image {
  float: right;
  width: 34%;
  margin: 0 0 0 3%;
}
@media only screen and (max-width: 1410px) {
  .li-rt .image {
    width: 32%;
    margin: 0 0 0 5%;
  }
}
@media only screen and (max-width: 768px) {
  .li-rt .image {
    width: 90%;
    margin: 0 5%;
  }
}
@media only screen and (max-width: 768px) {
  .li-rt {
    margin: 0;
  }
}

.ft {
  float: left;
  width: 94%;
  margin: 0 3%;
}
.ft ul {
  margin: 20px 0 0 20px;
}
.ft ul li {
  list-style-type: disc;
}
@media only screen and (max-width: 768px) {
  .ft {
    width: 90%;
    margin: 50px 5% 0;
  }
}

/*** Team ***/
.our_team {
  background: #F5F5F5;
  padding: 135px 0;
}
.our_team .ot_intro {
  float: left;
  width: 90%;
  margin: 0 5% 85px;
}
.our_team .ot_intro h2 {
  font-family: "pmn_caecilia_55roman";
  font-size: 37px;
  margin: 0 0 55px 0;
}
@media only screen and (max-width: 768px) {
  .our_team .ot_intro {
    margin: 0 5% 0;
  }
}
.our_team .ot_team {
  float: left;
  width: 90%;
  margin: 0 5%;
}
.our_team .ot_team h3 {
  font-size: 37px;
  line-height: 47px;
  font-family: "pmn_caecilia_55roman";
  margin: 45px 0 55px 0;
  text-align: center;
}
.our_team .ot_team h4 {
  float: left;
  width: 100%;
  margin: 25px 0 55px;
  font-family: "pmn_caecilia_55roman";
  font-size: 28px;
  line-height: 38px;
}
@media only screen and (max-width: 768px) {
  .our_team .ot_team h4 {
    float: none;
    text-align: center;
    display: inline-block;
  }
}
.our_team .ot_team .ot_ceo {
  float: left;
  width: 100%;
  margin: 0 0 80px;
}
.our_team .ot_team .ot_ceo .otc_img {
  float: left;
  width: 20%;
  margin: 0 5%;
}
.our_team .ot_team .ot_ceo .otc_content {
  float: left;
  width: 65%;
  margin: 0 5% 0 0;
}
.our_team .ot_team .ot_ceo .otc_content h5 {
  font-family: "pmn_caecilia_55roman";
  font-size: 28px;
  line-height: 28px;
  margin: 0 0 5px 0;
}
.our_team .ot_team .ot_ceo .otc_content h6 {
  font-weight: 300;
  font-size: 21px;
  line-height: 21px;
  margin: 0 0 30px;
}
.our_team .ot_team .ot_ceo .otc_content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}
.our_team .ot_team .ot_ceo .otc_content a {
  color: #4E6CA8;
  text-decoration: none;
  font-weight: bold;
}
.our_team .ot_team .ot_ceo .otc_content a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .our_team .ot_team .ot_ceo {
    margin: 50px 0 0;
  }
}
@media only screen and (max-width: 600px) {
  .our_team .ot_team .ot_ceo .otc_img {
    float: left;
    width: 50%;
    margin: 0 25% 50px;
  }
  .our_team .ot_team .ot_ceo .otc_content {
    float: left;
    width: 100%;
  }
}
.our_team .ot_team .ott {
  min-height: 130px;
  float: left;
  width: 33.33333%;
  margin: 0;
}
.our_team .ot_team .ott .ott_img {
  float: left;
  width: 22%;
  margin: 0 5% 0 3%;
}
@media only screen and (max-width: 1199px) {
  .our_team .ot_team .ott .ott_img {
    width: 27%;
  }
}
@media only screen and (max-width: 959px) {
  .our_team .ot_team .ott .ott_img {
    width: 17%;
  }
}
@media only screen and (max-width: 768px) {
  .our_team .ot_team .ott .ott_img {
    width: 25%;
    margin: 0 5% 0 0;
  }
}
@media only screen and (max-width: 600px) {
  .our_team .ot_team .ott .ott_img {
    width: 22%;
    margin: 0 5%;
  }
}
@media only screen and (max-width: 479px) {
  .our_team .ot_team .ott .ott_img {
    width: 22%;
    margin: 0 5%;
  }
}
.our_team .ot_team .ott .ott_text {
  float: left;
  width: 70%;
}
.our_team .ot_team .ott .ott_text h5 {
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  color: #000;
  margin: 12px 0 5px 0;
}
.our_team .ot_team .ott .ott_text p {
  font-size: 14px;
  line-height: 20px;
}
.our_team .ot_team .ott .ott_text p a {
  font-size: 14px;
  color: #4E6CA8;
  text-decoration: none;
}
.our_team .ot_team .ott .ott_text p a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1199px) {
  .our_team .ot_team .ott .ott_text {
    width: 65%;
  }
}
@media only screen and (max-width: 959px) {
  .our_team .ot_team .ott .ott_text {
    width: 75%;
  }
  .our_team .ot_team .ott .ott_text h5 {
    margin: 10px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .our_team .ot_team .ott .ott_text {
    width: 70%;
  }
}
@media only screen and (max-width: 600px) {
  .our_team .ot_team .ott .ott_text {
    width: 50%;
  }
}
@media only screen and (max-width: 479px) {
  .our_team .ot_team .ott .ott_text {
    width: 68%;
  }
}
@media only screen and (max-width: 959px) {
  .our_team .ot_team .ott {
    width: 45%;
    margin: 0 5% 0 0;
  }
}
@media only screen and (max-width: 600px) {
  .our_team .ot_team .ott {
    width: 90%;
    margin: 0 5%;
  }
}
@media only screen and (max-width: 768px) {
  .our_team .ot_team {
    margin: 0 5%;
  }
}
@media only screen and (max-width: 768px) {
  .our_team {
    padding: 50px 0;
  }
}

/** Our Values Section **/
.our_purpose {
  background: #F5F5F5;
  padding-top: 150px;
  padding-bottom: 100px;
}
.our_purpose h2, .our_purpose p {
  text-align: center;
}

.our_values {
  background: #FFF;
  padding-bottom: 60px;
}
.our_values h2 {
  padding-top: 80px;
}

.img-container {
  background: #FFF;
}

#values-img {
  width: 100%;
}

.values-border {
  position: absolute;
  max-height: 600px;
}

.values-circle, .values-list::after {
  height: 15px;
  width: 15px;
  border-radius: 50px;
  background: #FADE5B;
  position: relative;
  left: 49.7%;
}

.values-list {
  position: relative;
}

.values-list::before {
  content: attr(values-circle);
  width: 2px;
  height: 600px;
  border-right: 1px solid #FADE5B;
  position: absolute;
}

.values-list::after {
  content: '';
  position: absolute;
  top: 600px;
}
.values-list li {
  display: block;
  width: 50%;
  float: left;
}
.values-list li p {
  max-width: 37.5%;
  padding-left: 70px;
  padding-right: 70px;
}

.values-list li p span {
  font-size: 40px;
  font-weight: bold;
  color: #4E6CA8;
}
.values-list li:nth-child(odd) {
  text-align: right;
  clear: both;
}
.values-list li:nth-child(odd) p {
  float: right;
}
.values-list li:nth-child(even) {
  text-align: left;
}
.values-list li:nth-child(even) p {
  float: left;
}

.values-list li:nth-child(4), .values-list li:nth-child(6), .values-list li:nth-child(8) {
  padding-top: 2%;
}

.values-list li:nth-child(3), .values-list li:nth-child(5) {
  padding-top: 2%;
}

@media screen and (min-width: 320px) and (max-width: 670px) {
  .our_purpose p {
    max-width: 93%;
  }

  .values-list li {
    width: 100%;
  }

  .values-list::before {
    display: none;
  }

  .values-circle, .values-list::after {
    display: none;
  }

  .our_purpose {
    padding-top: 100px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .values-list li p {
    max-width: 100%;
  }

  .values-list::before {
    height: 675px;
  }

  .values-list::after {
    top: 675px;
  }

  .values-list li:nth-child(3) {
    padding: 0;
  }
}
/**** Icons ****/
.inner-icons {
  background: #F5F5F5;
}
.inner-icons .icons-wrap {
  float: left;
  width: 70%;
  margin: 0 15%;
  padding: 120px 0 70px 0;
}
.inner-icons .icons-wrap .icon {
  float: left;
  width: 23.33333%;
  text-align: center;
  margin: 0 5%;
  min-height: 150px;
}
.inner-icons .icons-wrap .icon img {
  width: 68px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .inner-icons .icons-wrap .icon {
    width: 45%;
    margin: 0 2.5%;
  }
}
@media only screen and (max-width: 999px) {
  .inner-icons .icons-wrap {
    width: 80%;
    margin: 0 10%;
  }
}
@media only screen and (max-width: 899px) {
  .inner-icons .icons-wrap {
    width: 90%;
    margin: 0 5%;
  }
}

.bpc_content {
  width: 100%;
  margin: 0 20%;
}

@media only screen and (max-width: 1100px) and (min-width: 769px) {
  .bpc_content {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  .bpc_content {
    margin: 0 auto;
  }
}

/*** Forms ***/
.forms_hero {
  background: #FFF;
  padding: 250px 0 100px;
}
.forms_hero .fh_content {
  float: left;
  width: 50%;
  margin: 0 25%;
}
.forms_hero .fh_content h2 {
  font-size: 37px;
  line-height: 37px;
  margin: 0 0 35px;
}
.forms_hero .fh_content p {
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
}
@media only screen and (max-width: 959px) {
  .forms_hero .fh_content {
    width: 80%;
    margin: 0 10%;
  }
}
@media only screen and (max-width: 768px) {
  .forms_hero {
    padding: 150px 0 50px;
  }
}

.forms_header {
  background: #FFF;
}
.forms_header ul {
  margin: 0;
}
.forms_header ul li {
  display: inline-block;
  margin: 0;
}
.forms_header ul li a {
  display: block;
  font-size: 19px;
  line-height: 19px;
  text-decoration: none;
  color: #9F9F9F;
  font-weight: bold;
  padding: 0 0 33px;
  margin: 0 30px;
}
.forms_header ul li a:hover, .forms_header ul li a.here {
  border-bottom: 3px solid #F7E841;
  padding: 0 0 30px;
  color: #747474;
}
@media only screen and (max-width: 768px) {
  .forms_header ul li a {
    margin: 0 20px;
    font-size: 16px;
    padding: 0 0 23px;
  }
  .forms_header ul li a:hover, .forms_header ul li a.here {
    padding: 0 0 20px;
  }
}
@media only screen and (max-width: 479px) {
  .forms_header ul li a {
    margin: 0 10px;
    font-size: 12px;
    font-weight: normal;
  }
}

.pre_forms {
  background: #F5F5F5;
}
.pre_forms .pf_container {
  float: left;
  width: 65%;
  margin: 0 17.5%;
  padding: 130px 0 0;
}
.pre_forms .pf_container p {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}
@media only screen and (max-width: 479px) {
  .pre_forms .pf_container p {
    font-size: 14px;
  }
}
.pre_forms .pf_container ul {
  margin: 50px 0 0 50px;
}
.pre_forms .pf_container ul li {
  list-style-type: disc;
  margin: 0 0 40px 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}
@media only screen and (max-width: 479px) {
  .pre_forms .pf_container ul {
    margin: 30px 0 0 20px;
  }
  .pre_forms .pf_container ul li {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .pre_forms .pf_container {
    width: 90%;
    margin: 0 5%;
    padding: 50px 0 0;
  }
}

.form_sections {
  background: #F5F5F5;
  padding: 0 0 90px;
}
.form_sections .forms_wrap {
  float: left;
  width: 90%;
  margin: 0 5%;
}
.form_sections .form_section {
  float: left;
  width: 100%;
  margin: 90px 0 0;
}
.form_sections .fs_header {
  float: left;
  width: 100%;
  border-bottom: 1px solid #DCDCDC;
}
.form_sections .fs_header p {
  margin: 0 0 10px;
  color: #BBB;
  font-weight: bold;
}
.form_sections .fs_header .fsh_title {
  float: left;
  width: 75%;
}
.form_sections .fs_header .fsh_modified {
  float: left;
  width: 25%;
}
@media only screen and (max-width: 768px) {
  .form_sections .fs_header .fsh_modified {
    display: none;
  }
}
.form_sections .form_row {
  float: left;
  width: 100%;
  border-bottom: 1px solid #DCDCDC;
}
.form_sections .form_row a {
  display: block;
  float: left;
  width: 100%;
  line-height: 0;
  padding: 20px 0;
}
.form_sections .form_row a:hover {
  background: #FFF;
}
.form_sections .form_row .fr_icon {
  float: left;
  width: 10%;
}
@media only screen and (max-width: 600px) {
  .form_sections .form_row .fr_icon {
    width: 15%;
  }
}
.form_sections .form_row .fr_title {
  float: left;
  width: 65%;
}
.form_sections .form_row .fr_title p {
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  color: #747474;
  margin: 15px 0 0;
}
@media only screen and (max-width: 1099px) {
  .form_sections .form_row .fr_title p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 959px) {
  .form_sections .form_row .fr_title p {
    margin: 8px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .form_sections .form_row .fr_title {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .form_sections .form_row .fr_title p {
    margin: 5px 0 0;
  }
}
.form_sections .form_row .fr_modified {
  width: 20%;
  float: left;
}
.form_sections .form_row .fr_modified p {
  font-size: 16px;
  line-height: 16px;
  color: #747474;
  margin: 15px 0 0;
}
@media only screen and (max-width: 1099px) {
  .form_sections .form_row .fr_modified p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 959px) {
  .form_sections .form_row .fr_modified p {
    margin: 8px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .form_sections .form_row .fr_modified {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .form_sections .form_row .title_mod_wrap {
    float: left;
    width: 85%;
  }
}
@media only screen and (max-width: 600px) {
  .form_sections .form_row .title_mod_wrap {
    width: 68%;
    margin: 0 5% 0 2%;
  }
}
.form_sections .form_row .fr_dl {
  float: left;
  width: 5%;
  text-align: right;
}
.form_sections .form_row .fr_dl img {
  margin: 10px 20px 0 0;
}
@media only screen and (max-width: 600px) {
  .form_sections .form_row .fr_dl {
    width: 10%;
  }
}

/*** Upload Form ***/
.upload_form_wrap {
  float: left;
  width: 60%;
  margin: 60px 20% 150px;
  overflow: visible;
}
@media only screen and (max-width: 999px) {
  .upload_form_wrap {
    width: 80%;
    margin: 50px 10%;
  }
}
@media only screen and (max-width: 768px) {
  .upload_form_wrap {
    width: 90%;
    margin: 0 5%;
  }
}
.upload_form_wrap .nbs-field-wrapper {
  margin: 1% auto;
  position: relative;
}
.upload_form_wrap .nbs-field-wrapper img {
  margin: 1% !important;
}
.upload_form_wrap input[type="password"],
.upload_form_wrap input[type="text"],
.upload_form_wrap input[type="number"],
.upload_form_wrap input[type="email"] {
  width: 94%;
  padding: 2.5%;
  margin: 0;
  border: 2px solid #CCC;
  margin: 0 0 10px;
  line-height: 24px;
}

.upload_form_wrap input.hasDatepicker {
  width: 94%;
  padding: 2.5%;
  border: 2px solid #CCC;
  background-image: url("../images/icon-cal.png");
  background-repeat: no-repeat;
  background-size: 33px;
  background-position: right 10px center;
}
.upload_form_wrap .ui-datepicker-trigger {
  display: none;
}
.upload_form_wrap .gform_drop_area {
  border: 2px solid #FFDF5D;
  padding: 2.5%;
  position: relative;
}
.upload_form_wrap .gform_drop_area .gform_button_select_files {
  width: 29px;
  position: absolute;
  right: 13px;
  top: 5px;
  cursor: pointer;
  height: 32px;
  background: #FFF;
  border: none;
  background-image: url("../images/icon-upload.png");
  background-size: 29px;
  background-repeat: no-repeat;
}
.upload_form_wrap select {
  width: 100% !important;
  margin: 0 0 10px;
  display: block;
  height: auto;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  color: #A9A9A9;
  line-height: 24px;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border: 2px solid #CCC;
  -webkit-appearance: none;
  background-image: url("../images/icon-arrow-form.png");
  background-position: right 13px center;
  background-repeat: no-repeat;
  -webkit-background-size: 14px;
  background-color: #FFF;
  background-size: 16px;
  padding: 11px 0 11px 2.5%;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  outline: none;
}
@media only screen and (max-width: 768px) {
  .upload_form_wrap select {
    float: none;
    margin: 0;
    width: 100% !important;
  }
}
.upload_form_wrap select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.upload_form_wrap .field_description {
  overflow: visible;
}
.upload_form_wrap .field_description span {
  border-radius: 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  font-weight: bold;
  background-color: #000;
  color: #FFF;
  position: absolute;
  right: -30px;
  top: 15px;
}
.upload_form_wrap #extensions_message {
  display: none;
}
.upload_form_wrap .gform_button {
  font-family: "Open Sans", sans-serif;
  color: #FFF;
  font-weight: bold;
  font-size: 15px;
  background: #332927;
  padding: 20px 80px 20px 80px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  margin: 50px 0 0;
}
.upload_form_wrap .gform_button:hover {
  text-decoration: none;
}

#ui-datepicker-div {
  background: #CCC;
}
#ui-datepicker-div select {
  display: inline-block;
  margin: 0 5%;
  width: 40%;
}
/*** COBRA ES Form ***/
.cobes_form_wrap {
  float: left;
  width: 60%;
  margin: 60px 20% 150px;
  overflow: visible;
}
@media only screen and (max-width: 999px) {
  .cobes_form_wrap {
    width: 80%;
    margin: 50px 10%;
  }
}
@media only screen and (max-width: 768px) {
  .cobes_form_wrap {
    width: 90%;
    margin: 0 5%;
  }
}
.cobes_form_wrap .nbs-field-wrapper {
  margin: 1% auto;
  position: relative;
}
.cobes_form_wrap .nbs-field-wrapper img {
  margin: 1% !important;
}
.cobes_form_wrap input[type="password"],
.cobes_form_wrap input[type="text"],
.cobes_form_wrap input[type="number"],
.cobes_form_wrap input[type="email"] {
  width: 94%;
  padding: 2.5%;
  margin: 0;
  border: 2px solid #CCC;
  margin: 0 0 10px;
  line-height: 24px;
}

.cobes_form_wrap .gform_drop_area {
  border: 2px solid #FFDF5D;
  padding: 2.5%;
  position: relative;
}
.cobes_form_wrap .gform_drop_area .gform_button_select_files {
  width: 29px;
  position: absolute;
  right: 13px;
  top: 5px;
  cursor: pointer;
  height: 32px;
  background: #FFF;
  border: none;
  background-image: url("../images/icon-upload.png");
  background-size: 29px;
  background-repeat: no-repeat;
}
.cobes_form_wrap select {
  width: 100% !important;
  margin: 0 0 10px;
  display: block;
  height: auto;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  color: #A9A9A9;
  line-height: 24px;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border: 2px solid #CCC;
  -webkit-appearance: none;
  background-image: url("../images/icon-arrow-form.png");
  background-position: right 13px center;
  background-repeat: no-repeat;
  -webkit-background-size: 14px;
  background-color: #FFF;
  background-size: 16px;
  padding: 11px 0 11px 2.5%;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  outline: none;
}
@media only screen and (max-width: 768px) {
  .cobes_form_wrap select {
    float: none;
    margin: 0;
    width: 100% !important;
  }
}
.cobes_form_wrap select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.cobes_form_wrap .field_description {
  overflow: visible;
}
.cobes_form_wrap .field_description span {
  border-radius: 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  font-weight: bold;
  background-color: #000;
  color: #FFF;
  position: absolute;
  right: -30px;
  top: 15px;
}
.cobes_form_wrap #extensions_message {
  display: none;
}
.cobes_form_wrap .gform_button {
  font-family: "Open Sans", sans-serif;
  color: #FFF;
  font-weight: bold;
  font-size: 15px;
  background: #332927;
  padding: 20px 80px 20px 80px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  margin: 50px 0 0;
}
.cobes_form_wrap .gform_button:hover {
  text-decoration: none;
}

/*** Contact Us ***/
.contact_form {
  background: #FFF;
  padding: 250px 0 150px 0;
  text-align: center;
}
.contact_form h1 {
  font-family: "pmn_caecilia_55roman";
  font-size: 37px;
  line-height: 37px;
}
.contact_form .form_wrap {
  float: left;
  width: 90%;
  margin: 0 5%;
}
.contact_form .form_wrap input {
  float: left;
  border: 2px solid #CCC;
  width: 28%;
  padding: 1%;
  margin: 1.3%;
}
.contact_form .form_wrap input.charlie {
  display: none;
}
.contact_form .form_wrap input.submit {
  border: none;
  width: auto;
  float: none;
  padding: 1% 50px;
}
.contact_form .form_wrap textarea {
  width: 94%;
  margin: 1.3%;
  padding: 1%;
  border: 2px solid #CCC;
  float: left;
}
.contact_form .form_wrap select {
  width: 30% !important;
  margin: 0 36% 10px 34.5%;
  display: block;
  height: auto;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  color: #A9A9A9;
  line-height: 24px;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border: 2px solid #CCC;
  -webkit-appearance: none;
  background-image: url("../images/icon-arrow-form.png");
  background-position: right 13px center;
  background-repeat: no-repeat;
  -webkit-background-size: 14px;
  background-color: #FFF;
  background-size: 16px;
  padding: 11px 0 11px 2.5%;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  outline: none;
}
@media only screen and (max-width: 768px) {
  .contact_form .form_wrap select {
    float: none;
    margin: 0;
    width: 100% !important;
  }
}
.contact_form .form_wrap select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
@media only screen and (max-width: 768px) {
  .contact_form .form_wrap input {
    width: 44.3%;
  }
}
@media only screen and (max-width: 479px) {
  .contact_form .form_wrap input {
    padding: 2%;
    width: 92%;
  }
  .contact_form .form_wrap input.submit {
    border: none;
    width: 92%;
    float: none;
    padding: 2%;
  }
  .contact_form .form_wrap textarea {
    width: 92%;
    padding: 2%;
  }
}
@media only screen and (max-width: 768px) {
  .contact_form {
    padding: 150px 0 50px;
  }
}

.map {
  line-height: 0;
  max-height: 600px;
}
.map .contact_info {
  width: 90%;
  margin: 0 5%;
}
.map .contact_info h3 {
  color: #FFF;
  font-family: "pmn_caecilia_55roman";
  font-size: 28px;
}
.map .contact_info p {
  color: #FFF;
  line-height: 20px;
}
@media only screen and (max-width: 768px) {
  .map {
    max-height: none;
  }
  .map .row.abs_row {
    position: static !important;
    margin: 0 !important;
    float: left;
  }
  .map .contact_info {
    margin: 50px 5%;
    float: left;
  }
}

/*** COBRA Enrollee Survey Form ***/
div.cform {
  background-color: #FFF;
  padding: 200px 0 150px 0;
  text-align: left;
  color: #58595B;
}

.cform h1 {
  font-family: "pmn_caecilia_55roman";
  color: #58595B;
  font-size: 37px;
  line-height: 37px;
  text-align: center;
  padding: 0 0 20px 0;
}

.cform .form_wraps {
  background-color: #FFF;
  float: left;
  width: 90%;
  margin: 0 5%;
  padding: 3.5% 0;
}

.cform .form_wraps label {
  font-size: 16px;
  text-align: left;
  padding: 0 0 0 0;
}

.cform .form_wraps input[type="file"] {
  border: 2px solid #CCC;
  padding: 1%;
  margin: 1%;
  cursor: pointer;
  overflow: hidden;
}

.cform .form_wraps input[type="text"] {
  border: 2px solid #CCC;
  padding: 1%;
  margin: 1%;
}

.cform .form_wraps input[type="button"] {
  width: 40%;
  border: 2px solid #CCC;
}

.cform .form_wraps input[type="email"] {
  border: 2px solid #CCC;
  padding: 1%;
  margin: 1%;
}

.cform .form_wraps input {
  border: 2px solid #CCC;
  padding: 1%;
  margin: 1%;
  width: 50%;
}

.cform .form_wraps input[type="submit"] {
  font-family: "Open Sans", sans-serif;
  border: 2px solid #CCC;
  color: #302D2D;
  font-weight: bold;
  font-size: 16px;
  border: none;
  width: auto;
  float: none;
  padding: 1% 50px;
  background-color: #FFDF5D;
  text-align: center;
  cursor: pointer;
}

.cform .form_wraps select {
  width: 100% !important;  
  display: block;
  height: auto;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  color: #A9A9A9;
  line-height: 22px;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border: 2px solid grey;
  -webkit-appearance: none;
  background-position: right 13px center;
  background-repeat: no-repeat;
  -webkit-background-size: 14px;
  background-color: #FFF;
  background-size: 16px;
  padding: 11px 0 11px 2.5%;
  -moz-appearance: none;
  text-indent: 0.01px;
  /*
	text-overflow: '';	
	margin: 0 36% 10px 34.5%;
	*/
  outline: none;
}
@media only screen and (max-width: 768px) {
  .cform .form_wraps select {
    float: none;
    margin: 0;
    width: 100% !important;
  }
}

.cform .form_wraps select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
@media only screen and (max-width: 768px) {
  .cform .form_wraps input {
    width: 44.3%;
  }
}
@media only screen and (max-width: 479px) {
  .cform .form_wraps input {
    padding: 2%;
    width: 92%;
  }
  .cform .form_wraps input.submit {
    border: none;
    width: 92%;
    float: none;
    padding: 2%;
  }
  .cform .form_wraps textarea {
    width: 92%;
    padding: 2%;
  }
}
@media only screen and (max-width: 768px) {
  .cform {
    padding: 150px 0 50px;
  }
}

.form_wraps div.validation_error {
color: #D84C58 !important;
font-size: 100% !important;
font-weight: bold !important;
padding: 1em 0px 1em 20px !important;
}

.form_wraps .gfield_error .gfield_label,
.form_wraps .validation_message {
color: #D84C58 !important;
}

.form_wraps li.gfield_error input[type="email"],
.form_wraps li.gfield_error input[type="number"],
.form_wraps li.gfield_error input[type="password"],
.form_wraps li.gfield_error input[type="tel"],
.form_wraps li.gfield_error input[type="text"],
.form_wraps li.gfield_error input[type="url"],
.form_wraps li.gfield_error input[type="file"],
.form_wraps li.gfield_error textarea {
border: 1px solid #D84C58;
}


/*** Carrier Integration ***/
.cint_form {
  background: #FFF;
  padding: 0 0 150px 0;
  text-align: center;
}
.cint_form h1 {
  font-family: "pmn_caecilia_55roman";
  font-size: 37px;
  line-height: 37px;
}
.cint_form .form_wrap {
  float: left;
  width: 90%;
  margin: 0 5%;
}
.cint_form .form_wrap input {
  float: left;
  border: 2px solid #CCC;
  width: 28%;
  padding: 1%;
  margin: 1.3%;
}
.cint_form .form_wrap input.delta {
  float: none;
  border: 2px solid #CCC;
  width: 28%;
  padding: 1%;
  margin: 1.3%;
}
.cint_form .form_wrap input.charlie {
  display: none;
}
.cint_form .form_wrap input.submit {
  border: none;
  width: auto;
  float: none;
  padding: 1% 50px;
}
.cint_form .form_wrap textarea {
  width: 94%;
  margin: 1.3%;
  padding: 1%;
  border: 2px solid #CCC;
  float: left;
}

@media only screen and (max-width: 768px) {
  .cint_form .form_wrap select {
    float: none;
    margin: 0;
    width: 100% !important;
  }
}
.cint_form .form_wrap select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
@media only screen and (max-width: 768px) {
  .cint_form .form_wrap input {
    width: 44.3%;
  }
}
@media only screen and (max-width: 479px) {
  .cint_form .form_wrap input {
    padding: 2%;
    width: 92%;
  }
  .cint_form .form_wrap input.submit {
    border: none;
    width: 92%;
    float: none;
    padding: 2%;
  }
  .cint_form .form_wrap textarea {
    width: 92%;
    padding: 2%;
  }
}
@media only screen and (max-width: 768px) {
  .cint_form {
    padding: 150px 0 50px;
  }
}

.carriergraphic {
  background: #FFF;
  line-height: 0;
  max-height: 600px;
  padding: 215px 0 150px 0;
}
.carriergraphic .contact_info {
  width: 90%;
  margin: 0 5%;
}
.carriergraphic .contact_info h3 {
  color: #FFF;
  font-family: "pmn_caecilia_55roman";
  font-size: 28px;
}
.carriergraphic .contact_info p {
  color: #FFF;
  line-height: 20px;
}
@media only screen and (max-width: 768px) {
  .carriergraphic {
    max-height: none;
  }
  .carriergraphic .row.abs_row {
    position: static !important;
    margin: 0 !important;
    float: left;
  }
  .carriergraphic .contact_info {
    margin: 50px 5%;
    float: left;
  }
}

/*** POP Plan ***/

.pophead {
  background: #FFF;
  line-height: 0;
  font-size: 21px;
  line-height: 28px;
  max-height: 600px;
  padding: 215px 0 150px 0;
}

@media only screen and (max-width: 768px) {
  .pophead {
    max-height: none;
  }
  .pophead .row.abs_row {
    position: static !important;
    margin: 0 !important;
    float: left;
  }
}
.pop-icons {
  background: #F5F5F5;
}
.pop-icons .icons-wrap {
  float: left;
  width: 70%;
  margin: 0 15%;
  padding: 50px 0 25px 0;
}
.pop-icons .icons-wrap .icon {
  float: left;
  width: 23.33333%;
  text-align: center;
  margin: 0 5%;
  min-height: 150px;
}
.pop-icons .icons-wrap .icon img {
  width: 68px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .pop-icons .icons-wrap .icon {
    width: 45%;
    margin: 0 2.5%;
  }
}
@media only screen and (max-width: 999px) {
  .pop-icons .icons-wrap {
    width: 80%;
    margin: 0 10%;
  }
}
@media only screen and (max-width: 899px) {
  .pop-icons .icons-wrap {
    width: 90%;
    margin: 0 5%;
  }
}
.popdesc {
  background: #F5F5F5;
  padding: 0 0 100px 0;
  text-align: justify;
  font-size: 18px;
  line-height: 22px;
}
.popdesc .text_wrap {
  background: #F5F5F5;
  float: left;
  width: 50%;
  margin: 0 25%;
}

@media only screen and (max-width: 768px) {
  .popdesc {
    max-height: none;
  }
  .popdesc .row.abs_row {
    position: static !important;
    margin: 0 !important;
    float: left;
  }
}

.poptable {
    background: #FFF;
    padding: 150px 0 100px 0;
}
poptable .table.poptable {
    table-layout:fixed;
    border: 2px solid #302D2D;
    text-align: left;
    border-collapse: collapse;
    float: left;
    width: 100%;
    background: #FFF;
}

th.p {
    padding: 15px;
    border: 2px solid #302D2D;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    font-family: "pmn_caecilia_55roman";
    background-color: #FFDF5D;
    color: #302D2D;
    width: 50%;
}

td.p {
    padding: 15px;
    border: 2px solid #302D2D;
    text-align: center;
    vertical-align: middle;
    word-wrap:break-word;
    color: #58595B;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    background-color: #FFF;
}
td.p2 {
    padding: 15px;
    border: 2px solid #302D2D;
    text-align: left;
    vertical-align: middle;
    word-wrap:break-word;
    color: #58595B;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    background-color: #FFF;
}

@media only screen and (max-width: 768px) {
  .poptable {
    padding: 150px 0 50px;
  }
}

.pop_form {
  background: #FFF;
  text-align: center;
  padding: 0 0 100px 0;
}
.pop_form h1 {
  font-family: "pmn_caecilia_55roman";
  font-size: 37px;
  line-height: 37px;
}
.pop_form .form_wrap {
  float: left;
  width: 70%;
  margin: 0 15%;
}
.pop_form .form_wrap input {
  float: left;
  border: 2px solid #CCC;
  width: 44%;
  padding: 1%;
  margin: 1.3%;
}

.pop_form .form_wrap input.submit {
  border: none;
  width: auto;
  float: none;
  padding: 1% 50px;
}
.pop_form .form_wrap select {
  width: 30% !important;
  margin: 0 36% 10px 34.5%;
  display: block;
  height: auto;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  color: #A9A9A9;
  line-height: 24px;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border: 2px solid #CCC;
  -webkit-appearance: none;
  background-image: url("../images/icon-arrow-form.png");
  background-position: right 13px center;
  background-repeat: no-repeat;
  -webkit-background-size: 14px;
  background-color: #FFF;
  background-size: 16px;
  padding: 11px 0 11px 2.5%;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  outline: none;
}

.pop_form .form_wrap textarea {
  width: 93%;
  margin: 1.3%;
  padding: 1%;
  border: 2px solid #CCC;
  float: left;
}

@media only screen and (max-width: 768px) {
  .pop_form .form_wrap select {
    float: none;
    margin: 0;
    width: 100% !important;
  }
}
.pop_form .form_wrap select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
@media only screen and (max-width: 768px) {
  .pop_form .form_wrap input {
    width: 44.3%;
  }
}
@media only screen and (max-width: 479px) {
  .pop_form .form_wrap input {
    padding: 2%;
    width: 92%;
  }
  .pop_form .form_wrap input.submit {
    border: none;
    width: 92%;
    float: none;
    padding: 2%;
  }
  .pop_form .form_wrap textarea {
    width: 92%;
    padding: 2%;
  }
}
@media only screen and (max-width: 768px) {
  .pop_form {
    padding: 150px 0 50px;
  }
}
.popfoot {
  background: #F5F5F5;
  padding: 0 0 100px 0;
  text-align: center;
  font-size: 18px;
  line-height: 22px;
}
.popfoot .text_wrap {
  background: #F5F5F5;
  float: left;
  width: 65%;
  margin: 0 17.5%;
  padding: 75px 0 0 0;
}

@media only screen and (max-width: 768px) {
  .popfoot {
    max-height: none;
  }
  .popfoot .row.abs_row {
    position: static !important;
    margin: 0 !important;
    float: left;
  }
}

/**** Payroll Remittance ****/
.intro {
  background: #FFF;
  padding: 250px 0 150px;
}
.intro#secureupload {
  padding: 150px 0 0;
}

.intro#cobes {
  padding: 150px 0 0;
}

.intro .opri_intro {
  float: left;
  width: 70%;
  margin: 0 15%;
  font-weight: 300;
}
.intro .opri_intro img {
  margin: 0 0 60px 0;
}
.intro .opri_intro h1 {
  font-size: 37px;
  font-family: "pmn_caecilia_55roman";
  text-align: center;
  line-height: 42px;
  margin: 0 0 60px;
}
.intro .opri_intro h2 {
  font-size: 28px;
  font-family: "pmn_caecilia_55roman";
  line-height: 32px;
}
.intro .opri_intro .ask_us_anything {
  border: 2px solid #ffdf5d;
  float: left;
  width: 40%;
  margin: 80px 30% 0;
  padding: 60px 0;
}
@media only screen and (max-width: 1199px) {
  .intro .opri_intro .ask_us_anything {
    width: 50%;
    margin: 80px 25% 0;
  }
}
@media only screen and (max-width: 899px) {
  .intro .opri_intro .ask_us_anything {
    width: 60%;
    margin: 50px 20% 0;
  }
}
@media only screen and (max-width: 600px) {
  .intro .opri_intro .ask_us_anything {
    width: 100%;
    margin: 50px 0 0;
  }
  .intro .opri_intro .ask_us_anything h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .intro {
    padding: 150px 0 50px;
  }
  .intro .opri_intro {
    width: 90%;
    margin: 0 5%;
  }
}

.numbers {
  background: #FFF;
  padding: 120px 0 75px;
}
.numbers .number_wrap {
  float: left;
  width: 94%;
  margin: 0 3% 65px;
}
.numbers .number_wrap .num {
  float: left;
  width: 5%;
}
.numbers .number_wrap .num h2 {
  font-size: 54px;
  line-height: 45px;
  color: #FADE5B;
  font-weight: bold;
}
@media only screen and (max-width: 899px) {
  .numbers .number_wrap .num {
    width: 8%;
  }
}
@media only screen and (max-width: 479px) {
  .numbers .number_wrap .num {
    width: 15%;
  }
}
.numbers .number_wrap .num_text {
  float: left;
  width: 95%;
}
@media only screen and (max-width: 899px) {
  .numbers .number_wrap .num_text {
    width: 92%;
  }
}
@media only screen and (max-width: 479px) {
  .numbers .number_wrap .num_text {
    width: 85%;
  }
}
@media only screen and (max-width: 768px) {
  .numbers .number_wrap {
    width: 90%;
    margin: 0 5% 40px;
  }
}
@media only screen and (max-width: 768px) {
  .numbers {
    padding: 50px 0 0;
  }
}

.simple_centered {
  padding: 145px 0;
  background: #FFF;
}
.simple_centered .sc_content {
  float: left;
  width: 60%;
  margin: 0 20%;
}
.simple_centered .sc_content h2 {
  font-size: 37px;
  font-family: "pmn_caecilia_55roman";
}
.simple_centered .sc_content p {
  margin: 0 0 60px;
}
@media only screen and (max-width: 768px) {
  .simple_centered {
    padding: 50px 0;
  }
  .simple_centered .sc_content {
    width: 80%;
    margin: 0 10%;
  }
}

/*** COBRA Login ***/
.cobra-login {
  padding: 215px 0;
  background: #F5F5F5;
}
.cobra-login .cl_form {
  border: 1px solid #C2C2C2;
  background: #FFF;
  float: left;
  width: 80%;
  margin: 0 10%;
  line-height: 0;
}
.cobra-login .cl_form .clf_left {
  float: left;
  width: 45%;
}
@media only screen and (max-width: 768px) {
  .cobra-login .cl_form .clf_left {
    display: none;
  }
}
.cobra-login .cl_form .clf_right {
  float: left;
  width: 45%;
  margin: 0 5%;
}
.cobra-login .cl_form .clf_right a {
  color: #58595B;
  text-decoration: none;
  float: right;
  margin: 20px 9% 0 0;
}
.cobra-login .cl_form .clf_right a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 999px) {
  .cobra-login .cl_form .clf_right a {
    float: none;
    margin: 20px 0 0;
    display: block;
  }
}
.cobra-login .cl_form .clf_right h3 {
  font-family: "pmn_caecilia_55roman";
  font-size: 28px;
  margin: 90px 0 40px 0;
}
@media only screen and (max-width: 1199px) {
  .cobra-login .cl_form .clf_right h3 {
    margin: 70px 0 40px 0;
  }
}
@media only screen and (max-width: 999px) {
  .cobra-login .cl_form .clf_right h3 {
    margin: 40px 0 20px;
    font-size: 22px;
  }
}
@media only screen and (max-width: 899px) {
  .cobra-login .cl_form .clf_right h3 {
    margin: 20px 0;
  }
}
.cobra-login .cl_form .clf_right input {
  border: 2px solid #C2C2C2;
  width: 80%;
  -webkit-appearance: none;
  border-radius: 0;
}
.cobra-login .cl_form .clf_right input.SearchGO {
  border: none;
  width: auto;
  float: left;
}
@media only screen and (max-width: 999px) {
  .cobra-login .cl_form .clf_right input.SearchGO {
    float: none;
  }
}
@media only screen and (max-width: 768px) {
  .cobra-login .cl_form .clf_right input.SearchGO {
    width: 91%;
    padding: 15px 0;
  }
}
@media only screen and (max-width: 999px) {
  .cobra-login .cl_form .clf_right input {
    padding: 10px 15px;
  }
}
@media only screen and (max-width: 768px) {
  .cobra-login .cl_form .clf_right {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cobra-login .cl_form .clf_right input {
    margin: 0 5% 20px;
    padding: 15px 5%;
    width: 80%;
  }
}
.cobra-login .cl_firsttimer {
  float: left;
  width: 100%;
  margin-top: 70px;
}
.cobra-login .cl_firsttimer h3 {
  font-family: "pmn_caecilia_55roman";
  font-size: 28px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 999px) {
  .cobra-login .cl_firsttimer h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.cobra-login .cl_firsttimer p {
  font-weight: 300;
  color: #58595B;
  font-size: 18px;
  line-height: 26px;
}
.cobra-login .cl_firsttimer p a {
  color: #4E6CA8;
  text-decoration: none;
}
.cobra-login .cl_firsttimer p a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 999px) {
  .cobra-login .cl_firsttimer p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .cobra-login .cl_firsttimer {
    width: 80%;
    margin: 50px 10% 0;
  }
  .cobra-login .cl_firsttimer br {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .cobra-login {
    padding: 140px 0 100px;
  }
}

.accountaccess h1 {
  font-family: "pmn_caecilia_55roman";
  font-size: 37px;
  line-height: 37px;
}
.accountaccess .aa_trips {
  width: 100%;
  margin: 50px 0;
  text-align: center;
}
.accountaccess .aa_trips .aat {
  width: 19%;
  margin: 0 2.6666%;
  display: inline-block;
}
.accountaccess .aa_trips .aat img {
  margin: 0 0 40px;
}
.accountaccess .aa_trips .aat h5 {
  color: #3D62A9;
  font-family: "pmn_caecilia_55roman";
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 40px;
}
.accountaccess .aa_trips .aat p {
  font-size: 14px;
  line-height: 24px;
  color: #58595B;
}
.accountaccess .aa_trips .aat .aatp {
  float: left;
  width: 100%;
  min-height: 120px;
}
@media only screen and (max-width: 768px) {
  .accountaccess .aa_trips .aat {
    width: 90%;
    margin: 0 5% 50px;
  }
  .accountaccess .aa_trips .aat img {
    width: 50%;
    margin: 40px 25%;
  }
}
@media only screen and (max-width: 479px) {
  .accountaccess .aa_trips .aat img {
    width: 90%;
    margin: 40px 5%;
  }
}

/*** Blog ***/
.blog_hero {
  max-height: 578px;
  line-height: 0;
}
.blog_hero .row {
  height: 100%;
}
.blog_hero .row .sh-content h1 {
  color: #FFF;
}
.blog_hero .row .sh-content p {
  color: #FFF;
  font-size: 21px;
  line-height: 28px;
  margin: 0 300px;
}
@media only screen and (max-width: 999px) {
  .blog_hero .row .sh-content h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .blog_hero .row .sh-content p {
    font-size: 14px;
    line-height: 20px;
    margin: 0 200px;
  }
}
@media only screen and (max-width: 768px) {
  .blog_hero .row .sh-content p {
    margin: 0 50px;
  }
}
@media only screen and (max-width: 600px) {
  .blog_hero .row .sh-content {
    margin: 75px 0 0 0 !important;
  }
  .blog_hero .row .sh-content p {
    display: none;
  }
}

.pagination {
  float: left;
  width: 100%;
}
.pagination a {
  color: #3D62A9;
  font-weight: bold;
  text-decoration: none;
}
.pagination a:hover {
  text-decoration: underline;
}

.nav-previous {
  float: left;
  width: 40%;
  margin: 20px 5%;
}

.nav-next {
  float: left;
  width: 40%;
  margin: 20px 5%;
  text-align: right;
}

.blog_cats {
  text-align: center;
  background: #FFF;
}
.blog_cats ul {
  display: inline-block;
  margin: 0;
}
.blog_cats ul li {
  display: inline-block;
  margin: 0 27px;
}
.blog_cats ul li a {
  display: block;
  font-size: 19px;
  line-height: 19px;
  padding: 35px 0;
  color: #9F9F9F;
  font-weight: bold;
  text-decoration: none;
}
.blog_cats ul li a:hover {
  color: #747474;
  border-bottom: 3px solid #F7E841;
  padding: 35px 0 32px 0;
}
@media only screen and (max-width: 768px) {
  .blog_cats ul li a {
    font-size: 14px;
    line-height: 14px;
    padding: 15px 0;
  }
  .blog_cats ul li a:hover {
    border-bottom: none;
    padding: 15px 0;
  }
}
.blog_cats ul li.here a {
  color: #747474;
  border-bottom: 3px solid #F7E841;
  padding: 35px 0 32px 0;
}
@media only screen and (max-width: 768px) {
  .blog_cats ul li.here a {
    border-bottom: none;
    padding: 15px 0;
  }
}
@media only screen and (max-width: 768px) {
  .blog_cats ul li {
    margin: 0 15px;
  }
}

.blog {
  background: #F5F5F5;
  padding: 0 0 100px;
}

.bp_listing {
  float: left;
  width: 28%;
  margin: 100px 2.59999% 0;
  min-height: 520px;
}
.bp_listing .bpl_content {
  float: left;
  width: 80%;
  margin: 0 10%;
}
.bp_listing img {
  margin: 0 0 40px;
  width: 100%;
  height: 230px;
}
.bp_listing h5 {
  font-size: 10px;
  line-height: 14px;
  margin: 0 0 10px;
}
.bp_listing h5 a {
  color: #9F9F9F;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
}
.bp_listing h3 {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 30px;
}
.bp_listing h3 a {
  font-family: "pmn_caecilia_55roman";
  color: #3D62A9;
  text-decoration: none;
}
.bp_listing h3 a:hover {
  color: #000;
}
.bp_listing p {
  color: #58595B;
  font-size: 14px;
  line-height: 24px;
}
@media only screen and (max-width: 899px) {
  .bp_listing {
    width: 80%;
    margin: 50px 10% 0;
    min-height: none;
  }
}

.blog_entry {
  padding: 225px 0 0;
  background: #FFF;
}
.blog_entry .bpc_post {
  width: 800px;
  margin: 0 auto;
}
.blog_entry .bpc_post_info {
  text-align: left;
  position: relative;
  left: 0;
  margin-bottom: 6%;
}

@media only screen and (max-width: 1100px) and (min-width: 769px) {
  .blog_entry .bpc_post_info {
    left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .blog_entry .bpc_post_info {
    left: 0;
  }
}
.blog_entry .bpc_post h5.cat {
  text-align: center;
  font-size: 12px;
  color: #000;
}
.blog_entry .bpc_post h5.cat a {
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
.blog_entry .bpc_post h1 {
  text-align: center;
  font-family: "pmn_caecilia_55roman";
  font-size: 37px;
  line-height: 58px;
  margin: 0 0 65px;
}
.blog_entry .bpc_post img.main_img {
  margin: 0 -18% 75px;
  width: 1080px;
}
.blog_entry .bpc_post .bpc_post_info img {
/*  margin: 0 0 18px; */
  float: left;
}
.blog_entry .bpc_post .bpc_post_info p {
  font-size: 14px;
  line-height: 22px;
  font-style: italic;
  color: #58595B;
}
.blog_entry .bpc_post .bpc_content h2 {
  font-weight: bold;
  font-size: 30px;
  line-height: 40px;
  color: #58595B;
  margin: 0 0 30px;
}
.blog_entry .bpc_post .bpc_content h3 {
  font-weight: bold;
  font-size: 22px;
  line-height: 32px;
  color: #58595B;
  margin: 0 0 30px;
}
.blog_entry .bpc_post .bpc_content p {
  font-size: 18px;
  line-height: 33px;
  margin: 0 0 50px 0;
}
.blog_entry .bpc_post .bpc_content blockquote {
  margin: 75px 0 0;
}
.blog_entry .bpc_post .bpc_content blockquote p {
  margin: 0 0 80px;
}
.blog_entry .bpc_post .bpc_content img {
  width: 100%;
  height: auto;
}
.blog_entry .bpc_post .bpc_content ul {
  margin: 0 0 50px 22px;
}
.blog_entry .bpc_post .bpc_content ul li {
  font-size: 18px;
  line-height: 28px;
  list-style-type: disc;
}
.blog_entry .bpc_post .bpc_content ol {
  margin: 0 0 50px 25px;
}
.blog_entry .bpc_post .bpc_content ol li {
  font-size: 18px;
  line-height: 28px;
}
.blog_entry .bpc_post .bpc_content p:first-child:first-letter {
  font-size: 67px;
  line-height: 77px;
  font-family: "pmn_caecilia_55roman";
  color: #3D62A9;
  float: left;
  margin: 0 5px -20px;
}
.blog_entry .bpc_post .bpc_content blockquote p:first-child:first-letter {
  font-size: inherit;
  line-height: inherit;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  float: none;
  color: inherit;
}
@media only screen and (max-width: 899px) {
  .blog_entry .bpc_post {
    width: 90%;
    margin: 0 5%;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1100px) {
  .blog_entry .bpc_post img.main_img {
    margin: 0 0 50px;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .blog_entry .bpc_post h1 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 50px;
  }
  .blog_entry .bpc_post img.main_img {
    margin: 0 0 50px;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .blog_entry {
    padding: 150px 0;
  }
}

/*** Forms ***/
.forms {
  padding: 140px 0;
  background: #FFF;
}
.forms.inner {
  background: #F5F5F5;
}
.forms a.btn-whiteborder {
  text-align: center;
}
.forms p {
  font-size: 24px;
  line-height: 30px;
  color: #58595B;
  text-align: center;
  margin: 0;
}
.forms .forms-wrap {
  width: 80%;
  float: left;
  margin: 100px 10%;
}
.forms .forms-wrap .form {
  float: left;
  width: 23%;
  padding: 1%;
}
.forms .forms-wrap .form .form-image {
  float: left;
  width: 96%;
  padding: 1.8%;
  border: 1px solid #525356;
  margin: 0 0 30px;
  position: relative;
}
.forms .forms-wrap .form .form-image img {
  z-index: -1;
}
.forms .forms-wrap .form .form-image .fi-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 219, 73, 0.85);
  background-image: url("../images/icon-download-form.png");
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 100;
  height: 100%;
}
.forms .forms-wrap .form .form-image .fi-overlay a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}
.forms .forms-wrap .form .form-title {
  float: left;
  width: 100%;
  overflow: hidden;
  min-height: 40px;
  text-align: center;
}
.forms .forms-wrap .form .form-title h5 {
  font-size: 18px;
  line-height: 18px;
  color: #58595B;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .forms .forms-wrap .form .form-title {
    min-height: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .forms .forms-wrap .form .form-title {
    min-height: 75px;
  }
}
@media only screen and (max-width: 768px) {
  .forms .forms-wrap .form {
    width: 43%;
    margin: 0 2.5% 40px 2.5%;
  }
}
@media only screen and (max-width: 1099px) {
  .forms .forms-wrap {
    width: 95%;
    margin: 75px 2.5%;
  }
}
@media only screen and (max-width: 768px) {
  .forms .forms-wrap {
    margin: 40px 2.5%;
  }
}
.forms.three .forms-wrap {
  width: 60%;
  margin: 0 20%;
}
.forms.three .forms-wrap .form {
  width: 28%;
  margin: 0 1.5%;
}
@media only screen and (max-width: 768px) {
  .forms.three .forms-wrap .form {
    width: 43%;
    margin: 0 2.5% 40px 2.5%;
  }
}
@media only screen and (max-width: 999px) {
  .forms.three .forms-wrap {
    width: 80%;
    margin: 0 10%;
  }
}
@media only screen and (max-width: 768px) {
  .forms.three .forms-wrap {
    width: 90%;
    margin: 0 5%;
  }
}
@media only screen and (max-width: 959px) {
  .forms {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 768px) {
  .forms {
    padding: 40px 0;
  }
  .forms p {
    margin: 0 2.5%;
  }
}

.retirement_message {
  background: #F5F5F5;
  padding: 90px 0 80px;
  font-size: 16px;
}
.retirement_message p {
  float: left;
}
.retirement_message a.rm_pre {
  color: inherit;
  text-decoration: none;
}
.retirement_message a.rm_pre:hover {
  text-decoration: underline;
}
.retirement_message.open_positions {
  background: #FFF;
}
.retirement_message.open_positions a {
  color: inherit;
  text-decoration: none;
}
.retirement_message.open_positions a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .retirement_message {
    padding: 50px 0 40px;
  }
  .retirement_message a {
    display: block;
    width: 50%;
    padding: 13px 5% !important;
    margin: 20px 20%;
  }
  .retirement_message .retirement_spacing {
    display: none;
  }
}

.footer {
  background: #ffdf5d;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: left;
  padding: 40px 0 25px 0;
  width: 100%;
}
.footer .fcontent {
  border-top: 3px solid #252323;
  float: left;
  width: 100%;
  margin: 0;
  padding: 40px 0 0 0;
}
.footer .fcontent .fcopy {
  float: left;
  width: 25%;
  text-align: left;
}
.footer .fcontent .fcopy p {
  font-size: 14px;
  line-height: 14px;
  color: #000;
}
@media only screen and (max-width: 899px) {
  .footer .fcontent .fcopy {
    width: 100%;
    text-align: center;
  }
}
.footer .fcontent .fnav {
  float: left;
  width: 75%;
  text-align: right;
}
.footer .fcontent .fnav ul {
  float: right;
}
.footer .fcontent .fnav ul li {
  float: left;
  display: inline;
  margin: 0 0 0 25px;
}
.footer .fcontent .fnav ul li a {
  font-size: 14px;
  line-height: 14px;
  color: #000;
  text-decoration: none;
  padding: 12px 0;
}
.footer .fcontent .fnav ul li a:hover {
  border-bottom: 2px solid #000;
}
@media only screen and (max-width: 768px) {
  .footer .fcontent .fnav ul li a:hover {
    border-bottom: none;
  }
}
.footer .fcontent .fnav ul li.here a, .footer .fcontent .fnav ul li.parent-here a {
  border-bottom: 2px solid #000;
}
@media only screen and (max-width: 768px) {
  .footer .fcontent .fnav ul li.here a, .footer .fcontent .fnav ul li.parent-here a {
    border-bottom: none;
  }
}
@media only screen and (max-width: 959px) {
  .footer .fcontent .fnav ul li {
    margin: 0 0 0 15px;
  }
}
@media only screen and (max-width: 768px) {
  .footer .fcontent .fnav ul {
    float: none;
    text-align: center;
  }
  .footer .fcontent .fnav ul li {
    display: inline-block;
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 899px) {
  .footer .fcontent .fnav {
    width: 100%;
    text-align: center;
  }
  .footer .fcontent .fnav ul {
    float: none;
    display: inline-block;
  }
}
@media only screen and (max-width: 1410px) {
  .footer .fcontent {
    width: 90%;
    margin: 0 5%;
  }
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }
}

/*** GRAVITY FORMS ***/
.service_form_captcha {
	image-rendering: auto;
}

/*** CUSTOM CSS AFTER LAUNCHING SITE **/
#retirement-images {
  height: 140px;
}

#retirement-images img {
  vertical-align: middle;
  margin: 0 20px;
}

.get-quote a {
  margin: 48px 0 0;
  float: left;
  padding: 9px 17px;
}

.highlighted {
  background-color: #ffdf5d;
  border: solid #ffdf5d 3px;
  color: #000;
}

#sectionHome .btn-whiteborder.blue {
  background: #4e6ca8;
  color: #fff;
  position: relative;
  top: 25px;
}

.quote.btn-whiteborder {
  background-color: #ffdf5d;
  border: solid #ffdf5d 1px;
  color: #000;
}

.fixit {
  position: fixed;
  top: 8%;
 /* left: 10%;
  right: 18%;
  bottom: 0;  */
  transform: translateX(-90%);
  transition: .2s ease;
}

@media only screen and (min-width: 1105px) {
  .fixit {
  /* left: 17%; */
   transform: translateX(-90%);
  }
}

@media screen and (min-width: 1100px) and (max-width: 1299px) {
  .fixit {
  /*  left: 5%; */
  /* transform: translateX(-90%); */
  }
}

.rel {
  position: relative;
  float: left;
  top: 0;
 /* right: 18%; */
  transform: translateX(-90%);
  transition: .2s ease;
}

.footer-form {
/*  width: 100%; */
  max-width: 1200px;
}

@media only screen and (max-width: 1035px) {
  .footer-form {
    width: 100%;
  }
}

.footer-form h3 {
	padding-bottom: 30px;
	font-family: "pmn_caecilia_55roman";
}

.footer .fcontent:nth-child(1) {
	border-top: 3px solid #252323;
	padding: 40px 0 40px;
	text-align: center;
}

.footer-form-section {
  background: #ffdf5d;
  text-align: center;
}


.footer_content_form {
  display: inline-block;
  margin: 55px 0 0 0;
/*  width: 100%; */
  max-width: 1410px;
  padding: 25px;
  overflow: hidden;
}

@media only screen and (min-width: 1400px) {
  .footer_content_form {

  }
}

.footer_content_form input {
  display: inline-block;
  margin: 10px 10px;
  width: 300px;
}

@media only screen and (min-width: 1100px) {

	.footer_content_form input.submit {
	  width: auto;
	  float: left;
	  margin-left: 10%;
	}
}
