/* reset */    
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, 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;
}
/* Landing Page Layout Styles */
body{
  width: 100%;
  font-family: 'Open Sans', "Arial", sans-serif;
}
main {
}
footer {
background-color: #f2f2f2;
}
#all_content {

}

#fullwidth-grid { 
    display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  }
 #fullwidth-grid > div {
  padding: 10px;
}
#privacy-policy { 
    display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  }
 #privacy-policy > div {
  padding: 40px;
  margin: 0 auto;
}
#header { 
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
  }
#header > div {
  padding: 10px;
}

#content {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 2fr 1fr;
  grid-gap: 0;
}
#content > div {
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  #content > div {
    padding-top: 1rem;
  }
}
#content-layout2 {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 3fr;
  grid-gap: 0;
  background-attachment: scroll;
  background-position: center center;
}
@media only screen and (max-width: 1900px) {
  #content, #content-layout2 {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 2fr 2fr;
  grid-gap: 0;
  background-position: center center;
  }
}
@media only screen and (max-width: 960px) {
  #content, #content-layout2 {
    grid-template-columns: 1fr;
    padding: 0 15px !important;
    background-image: none !important
  }
}
.full-width {
  display: block;
}
@media only screen and (max-width: 960px) {
.full-width {
  display: none;
}
}
.mobile {
  display: none;
}
@media only screen and (max-width: 960px) {
.mobile {
  display: block;
  background-position: center center;
}
}
@media only screen and (max-width: 620px) {
.mobile {
  display: block;
  background-position: top center;
}
}
.alternate-img { display: hidden; }
@media only screen and (max-width: 960px) {
.alternate-img { display: block; width: 100%; }
}
#about { 
    display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  padding: 2rem 8rem;
  scroll-margin-top: 100px;
  }
#about .info {
  padding: 10px;
  color: #666;
  font-size: 18px;
  line-height: 25px;
    text-align: justify;
}
@media only screen and (max-width: 960px) {
  #about {
    padding: 1.5rem;
  }
}
#outer-grid {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
#outer-grid > div {
  padding: 10px;
}
#inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
}
#inner-grid > div {
  background: salmon;
  padding: 10px;
}
#fourcolumn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 5px;
}
#fourcolumn-grid > div {
  background: salmon;
  padding: 10px;
}
#threecolumn-grid, #qualifications, #benefits {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 5px;
  margin: 0 auto;
  padding: 2rem 10rem;
  scroll-margin-top: 100px;
}
@media only screen and (max-width: 960px) {
  #threecolumn-grid, #qualifications, #benefits {
    padding: 1.5rem;
  }
}
#threecolumn-grid > div, #qualifications > div, #benefits > div {
  display: grid; 
  padding: 10px;
}
#qualifications ul, #benefits ul {
    list-style-type: none;

}
#qualifications li, #benefits li {
    color: #666;
      font-size: 16px;
      line-height: 22px;
      margin-bottom: 10px;
      break-inside: avoid-column;
}
.fa { padding-right: 5px; }
#benefits-list, #qualifications-list {
    display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  scroll-margin-top: 100px;
}
#benefits-list {
  padding: 2rem 6rem;
}
#qualifications-list {
  padding: 2rem 10rem;
}
@media only screen and (max-width: 960px) {
#benefits-list {
  padding: 2rem 4rem;
}
#qualifications-list {
  padding: 2rem 8rem;
}
}
@media only screen and (max-width: 768px) {
#benefits-list {
  padding: 1rem;
}
#qualifications-list {
  padding: 1rem;
}
}

#benefits-list ul, #qualifications-list ul  {
  list-style-type: none;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
}
@media only screen and (max-width: 960px) {
#benefits-list ul, #qualifications-list ul  {
  list-style-type: none;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}
}
#benefits-list ul li {
    color: #666;
      font-size: 16px;
      line-height: 22px;
      margin-bottom: 10px;
      break-inside: avoid-column;
      padding: 0 10px;
    }
#qualifications-list ul li {
    color: #666;
      font-size: 16px;
      line-height: 22px;
      margin-bottom: 10px;
      break-inside: avoid-column;
      padding: 0 10px;
      text-align: center;
    }
/* Content Styles */
/* Content Styles */
#logo-nav {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 3fr;
  grid-gap: 10px;
}
@media only screen and (max-width: 960px) {
#logo-nav {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  text-align: center;
}
}
#logo-nav > div {
  padding: 10px;
}
.header-nav { text-align: right; }
@media only screen and (max-width: 960px) {
.header-nav { text-align: center; }
}
.header-nav ul {
    list-style-type: none;
}
@media only screen and (max-width: 960px) {
.header-nav ul {

}
}
.header-nav ul li {
    display: inline;
    margin-left: 1rem;
    font-size: 1.2rem;
    line-height: 80px;
    break-inside: avoid-column;
}
@media only screen and (max-width: 960px) {
.header-nav ul li {
    margin-left: 1rem;
    font-size: 1rem;
    line-height: 1.4rem;
    break-inside: avoid-column;
}
}

.logo img { height: 80px; }
@media only screen and (max-width: 960px) {
  .header-nav ul li { font-size: 30px; line-height: 30px !important; }
}
@media only screen and (max-width: 768px) {
  .header-nav ul li { font-size: 22px; line-height: 22px !important; }
}
@media only screen and (max-width: 640px) {
  .logo img { height: 40px !important; }
  .header-nav ul li { font-size: 18px; line-height: 18px !important; }
}
@media only screen and (max-width: 415px) {
  .header-nav ul li { font-size: 14px; line-height: 14px !important; }
}
@media only screen and (max-width: 620px) {
  .header-text { background-size: contain !important; }
}
.header-text h1 {
    text-shadow: #222 2px 2px 2px; 
    color: #ffffff; 
    font-size: 35px;
    text-align: center;
    font-weight: bold;
    margin-top: 4rem;
}
@media only screen and (max-width: 960px) {
  .header-text h1 {
    font-size: 3rem;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 560px) {
  .header-text h1 {
    font-size: 2.2rem;
    margin-top: 1rem;
  }
}
.header-text h2 {
    text-shadow: #222 1px 1px 1px; 
    color: #ffffff; 
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    margin-top: 3rem;
}
@media only screen and (max-width: 960px) {
  .header-text h2 {
    font-size: 2.2rem;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .header-text h2 {
    font-size: 1.8rem;
    margin-top: 25px;
  }
}
.header-text h3 {
    text-shadow: #222 1px 1px 1px; 
    color: #ffffff; 
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    margin-top: 3rem;
}
@media only screen and (max-width: 960px) {
  .header-text h3 {
    font-size: 1.8rem;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .header-text h3 {
    font-size: 1.5rem;
    margin-top: 20px;
  }
}
h3.list-header {
  font-size: 24px;
  text-align: center;
  color: #222222;
  margin-top:2.5rem;
}
@media only screen and (max-width: 1168px) {
  h3.list-header {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 960px) {
  .header-text h3 {
    font-size: 20px;
    margin-top: 1rem;
  }
}
form {
    box-shadow: inset 0 0 0 100vmax rgba(0, 0, 0, 0.20);
    border-bottom-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 6px;
    padding-top: 20px;
    mix-blend-mode: normal;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
}
form li:first-child  {display:none;}
form li:nth-child(2)  {display:none;}
select { border: none !important; 
      font-size: inherit!important;
    font-family: inherit!important;
    padding: 5px 4px!important;
    letter-spacing: normal!important;
        border-radius: 5px;
       -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
    }
.address_state { width: 100% !important; }
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .ginput_container_select {
    border: none !important;
        border-radius: 5px;
       -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
}
.gform_wrapper .gform_footer {
    text-align: center;
}
.gform_wrapper {
    margin-bottom: 10px !important;
    margin-top: 10px !important;
    max-width: 95% !important;
    margin: 0 auto;
}
.gform_wrapper .top_label div.ginput_container {
    margin-top: 0 !important;
}
@media only screen and (max-width: 641px) {
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    padding: 0 !important;
}
}
.gfield_label { color: #fff; font-weight: 500 !important; }
.gfield_consent_label a { color: #fff !important; }
.gfield_consent_label, .field_sublabel_below { color: #ffffff !important; }
#divider-img { 
    background-size: 100%;
    background-repeat: no-repeat;
    min-height: 300px;
    background-position: center center;
    position: relative;
  }
@media only screen and (max-width: 1168px) {
  #divider-img {
    min-height: 260px;
  }
}
@media only screen and (max-width: 768px) {
  #divider-img {
    min-height: 140px;
  }
}
@media only screen and (max-width: 415px) {
  #divider-img {
    min-height: 90px;
  }
}
#divider-img > div { position: absolute; bottom: 0; 
  text-align: center; color: #fff; font-size: 24px; line-height: 50px; font-weight: bold; margin: 0 auto; width: 100%; text-shadow: #222 2px 2px 2px;}
#divider-text { text-align: center; color: #fff; font-size: 24px; line-height: 30px; font-weight: bold; min-height: 20px;  padding: 20px; }
@media only screen and (max-width: 960px) {
  #divider-text {
    font-size: 18px; line-height: 22px;
  }
}
.final-copy { text-align: center; color: #222; font-size: 20px; line-height: 24px; text-align: center; padding: 1rem; }
@media only screen and (max-width: 960px) {
  .final-copy {
    font-size: 18px; line-height: 22px;
  }
}
.button {
    border-radius: 5px;
       -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
    overflow: hidden;
    perspective: 1px;
    box-shadow: #222 1px 1px 2px;
  border: none;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 1.5px;
   -webkit-box-shadow: 1px 1px 10px 0px #000000;
   -moz-box-shadow: 1px 1px 10px 0px #000000;
font-weight: bold;
}
.gform-modal-notification .button {
  background-color: #666666;
}
.header-nav a { text-decoration: none; }
.header-nav a:hover { color: #222222 !important; }
.call-button {
  text-align: center;
  width: 100%;
  margin-top: 50px;
}
@media only screen and (max-width: 460px) {
.call-button a {
	color: #000 !important;
    background-color: #fff !important;
}
}
.info p { margin-bottom: 12px !important; }
/*  ----------------------------------------------------------------------------
    wordpress default galleries
*/
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  margin-bottom: 20px;
  width: 100%;
  padding: 0 2%;
}
.gallery-item .gallery-caption {
  text-align: center;
  margin: 0;
}
.gallery-item .gallery-icon img {
  display: inline-block;
}
.gallery-columns-2,
.gallery-columns-3,
.gallery-columns-4,
.gallery-columns-5,
.gallery-columns-6,
.gallery-columns-7,
.gallery-columns-8,
.gallery-columns-9 {
  margin: 0 -2% 20px;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
/*  ----------------------------------------------------------------------------
    custom gallery-columns-1
*/
.gallery-columns-1 .gallery-item {
  margin-bottom: 30px;
  position: relative;
}
.gallery-columns-1 .gallery-item img {
  display: block;
}
.gallery-columns-1 .gallery-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #0e0e0e;
  color: white;
  font-size: 12px;
  font-style: normal;
  padding: 8px 14px 10px 14px;
}

.galrow {
  margin: 0 auto;
  margin-top: 20px;
}
.galrow > .galcolumn {
  padding: 0 8px;
}

.galrow:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.galcolumn {
  float: left;
}

/* The Modal (background) */
.galmodal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.galmodal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 60%;
  max-width: 1000px;
}
@media only screen and (max-width: 960px) {
.galmodal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 900px;
}
}
/* The Close Button */
.galclose {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.galclose:hover,
.galclose:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.galprev,
.galnext {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.galnext {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.galprev:hover,
.galnext:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.galnumbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.galcaption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.galdemo {
  opacity: 0.6;
}

.active,
.galdemo:hover {
  opacity: 1;
}
/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 150px;
    width: 150px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}
img.galhover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.embedded-video {
  width: 100%;
  max-width: 960px;
  margin: 1rem auto;

}
    .embed-container { 
        position: relative; 
        padding-bottom: 56.25%;
        overflow: hidden;
        max-width: 100%;
        height: auto;
    } 

    .embed-container iframe,
    .embed-container object,
    .embed-container embed { 
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
.comment-blurb { display: none !important; }