/* General */
* {
  box-sizing: border-box;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: color 250ms linear, background-color 250ms linear, border-color 250ms linear, opacity 250ms linear;
}

button,
input[type=submit] {
  transition: color 250ms linear, background-color 250ms linear, border-color 250ms linear, opacity 250ms linear;
}
button:hover, button:focus,
input[type=submit]:hover,
input[type=submit]:focus {
  cursor: pointer;
}

p {
  margin: 0 0 10px 0;
}

/* Media */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

iframe,
object,
embed,
video {
  display: block;
  max-width: 100%;
  border: 0;
}

.embed-container {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Helpers */
.sr-only {
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

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

.container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  margin: 0 -15px;
}
.row:after {
  display: table;
  clear: both;
  content: " ";
}

.col {
  float: left;
  position: relative;
  min-height: 1px;
  padding: 0 15px;
}
.col.col-20 {
  width: 20%;
}
.col.col-22 {
  width: 22%;
}
.col.col-25 {
  width: 25%;
}
.col.col-33 {
  width: 33.333333%;
}
.col.col-35 {
  width: 35%;
}
.col.col-40 {
  width: 40%;
}
.col.col-45 {
  width: 45%;
}
.col.col-50 {
  width: 50%;
}
.col.col-55 {
  width: 55%;
}
.col.col-60 {
  width: 60%;
}
@media screen and (max-width: 991px) {
  .col {
    float: none;
    width: 100% !important;
  }
}

.flex-row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  flex-direction: row;
  margin: 0 -15px;
}
.flex-row.align-items-center {
  align-items: center;
}
@media screen and (max-width: 991px) {
  .flex-row {
    flex-wrap: wrap;
  }
}
.flex-row .flex-col {
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0 15px;
}
.flex-row .flex-col.col-auto {
  flex-basis: auto;
}
.flex-row .flex-col.col-5 {
  flex-basis: 5%;
  max-width: 5%;
}
.flex-row .flex-col.col-10 {
  flex-basis: 10%;
  max-width: 10%;
}
.flex-row .flex-col.col-15 {
  flex-basis: 15%;
  max-width: 15%;
}
.flex-row .flex-col.col-20 {
  flex-basis: 20%;
  max-width: 20%;
}
.flex-row .flex-col.col-25 {
  flex-basis: 25%;
  max-width: 25%;
}
.flex-row .flex-col.col-30 {
  flex-basis: 30%;
  max-width: 30%;
}
.flex-row .flex-col.col-33 {
  flex-basis: 33.333333%;
  max-width: 33.333333%;
}
.flex-row .flex-col.col-35 {
  flex-basis: 35%;
  max-width: 35%;
}
.flex-row .flex-col.col-40 {
  flex-basis: 40%;
  max-width: 40%;
}
.flex-row .flex-col.col-45 {
  flex-basis: 45%;
  max-width: 45%;
}
.flex-row .flex-col.col-50 {
  flex-basis: 50%;
  max-width: 50%;
}
.flex-row .flex-col.col-55 {
  flex-basis: 55%;
  max-width: 55%;
}
.flex-row .flex-col.col-60 {
  flex-basis: 60%;
  max-width: 60%;
}
.flex-row .flex-col.col-65 {
  flex-basis: 65%;
  max-width: 65%;
}
.flex-row .flex-col.col-70 {
  flex-basis: 70%;
  max-width: 70%;
}
.flex-row .flex-col.col-75 {
  flex-basis: 75%;
  max-width: 75%;
}
.flex-row .flex-col.col-80 {
  flex-basis: 80%;
  max-width: 80%;
}
.flex-row .flex-col.col-85 {
  flex-basis: 85%;
  max-width: 85%;
}
.flex-row .flex-col.col-90 {
  flex-basis: 90%;
  max-width: 90%;
}
.flex-row .flex-col.col-95 {
  flex-basis: 95%;
  max-width: 95%;
}
.flex-row .flex-col.col-100 {
  flex-basis: 100%;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .flex-row .flex-col:not(.keep-width) {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
}

/* Helpers */
.text-center {
  text-align: center;
}

/* Lists */
.inline-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.inline-list > li {
  display: inline-block;
  vertical-align: middle;
}

/* Form */
.input-wrap {
  margin: 0 0 10px 0;
}

.input {
  display: block;
  width: 100%;
  padding: 5px;
  border: 0;
  border-radius: 0;
  font-family: inherit;
  font-weight: inherit;
  transition: color 250ms linear, background-color 250ms linear, border-color 250ms linear, opacity 250ms linear;
}
.submit {
  border-style: solid;
  font-family: inherit;
  font-weight: inherit;
  text-decoration: none;
  transition: color 250ms linear, background-color 250ms linear, border-color 250ms linear, opacity 250ms linear;
}
.submit:hover, .submit:focus {
  cursor: pointer;
}

/* Images */
img.size-auto, img.size-full, img.size-large, img.size-medium {
  max-width: 100%;
  height: auto;
}
img.alignleft {
  display: inline;
  float: left;
  margin-right: 1.6666666667rem;
  margin-bottom: 1.6666666667rem;
}
img.alignright {
  display: inline;
  float: right;
  margin-bottom: 1.6666666667rem;
  margin-left: 1.6666666667rem;
}
img.aligncenter {
  display: block;
  clear: both;
  margin-right: auto;
  margin-bottom: 1.6666666667rem;
  margin-left: auto;
}

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

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.6666666667rem;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.6666666667rem;
}

.aligncenter {
  display: block;
  clear: both;
  margin-right: auto;
  margin-left: auto;
}

/* Fonts */
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-ExtraBold.woff2") format("woff2"), url("../font/Madera-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-Medium.woff2") format("woff2"), url("../font/Madera-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-Light.woff2") format("woff2"), url("../font/Madera-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-ThinItalic.woff2") format("woff2"), url("../font/Madera-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-Bold.woff2") format("woff2"), url("../font/Madera-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-BoldItalic.woff2") format("woff2"), url("../font/Madera-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-Italic.woff2") format("woff2"), url("../font/Madera-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-UltraLight.woff2") format("woff2"), url("../font/Madera-UltraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-UltraLightItalic.woff2") format("woff2"), url("../font/Madera-UltraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-ExtraBoldItalic.woff2") format("woff2"), url("../font/Madera-ExtraBoldItalic.woff") format("woff");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-MediumItalic.woff2") format("woff2"), url("../font/Madera-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-Hairline.woff2") format("woff2"), url("../font/Madera-Hairline.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-Regular.woff2") format("woff2"), url("../font/Madera-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-LightItalic.woff2") format("woff2"), url("../font/Madera-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Madera Hairline";
  src: url("../font/Madera-HairlineItalic.woff2") format("woff2"), url("../font/Madera-HairlineItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Madera";
  src: url("../font/Madera-Thin.woff2") format("woff2"), url("../font/Madera-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
/* General */
html {
  color: #124156;
  background: #fcfdfd;
  font-family: "Madera";
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
}
@media screen and (max-width: 1599px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1199px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 12px;
  }
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 1500px;
}

a {
  color: #0B72A2;
}
a:hover, a:focus {
  color: #124156;
}

p {
  margin: 0 0 2.2222222222rem 0;
}

ol,
ul {
  margin: 0 0 1.6666666667rem 0;
  padding: 0;
  list-style-position: inside;
}

hr {
  margin: 2.2222222222rem 0;
  border-top: 1px solid #124156;
}

h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 2.2222222222rem 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.flex-row {
  margin: 0 -25px;
}
@media screen and (max-width: 991px) {
  .flex-row {
    padding: 0 -15px;
  }
}
.flex-row .flex-col {
  padding: 0 25px;
}
@media screen and (max-width: 991px) {
  .flex-row .flex-col {
    padding: 0 15px;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9444444444rem 1.8888888889rem;
  border-radius: 5px;
  font-size: 0.8888888889rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  text-indent: 0.1em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.btn.btn-dark-blue {
  color: #fff;
  background: #124156;
}
.btn.btn-dark-blue:hover, .btn.btn-dark-blue:focus {
  color: #fff;
  background: #4aebc6;
}

/* Form */
.form-group {
  margin: 0 0 2.2222222222rem 0;
}
.form-group label {
  display: block;
  margin-bottom: 0.2777777778rem;
  font-weight: bold;
}

input[type=date],
input[type=tel],
input[type=email],
input[type=text],
select,
textarea {
  display: block;
  width: 100%;
  min-height: 2.7222222222rem;
  padding: 0.5555555556rem 0.8333333333rem !important;
  border: 1px solid #fff !important;
  border-radius: 5px;
  color: #124156;
  background: #fff;
  box-shadow: -1px 8px 53.69px 5.31px rgba(101, 115, 121, 0.22);
  font-family: "Madera";
  font-size: 1rem !important;
  font-weight: normal;
  line-height: 1.5;
  -webkit-appearance: none !important;
}
input[type=date].placeholder,
input[type=tel].placeholder,
input[type=email].placeholder,
input[type=text].placeholder,
select.placeholder,
textarea.placeholder {
  color: #124156;
}
input[type=date]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=text]:-moz-placeholder,
select:-moz-placeholder,
textarea:-moz-placeholder {
  color: #124156;
}
input[type=date]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=text]::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #124156;
}
input[type=date]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #124156;
}
input[type=date]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #124156;
}
input[type=date]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=text]:focus,
select:focus,
textarea:focus {
  border-color: #4aebc6;
  outline: 0;
}

select {
  -webkit-appearance: menulist;
}

input[type=submit],
button {
  padding: 0.8333333333rem !important;
  border: 0 !important;
  border-radius: 5px !important;
  color: #124156 !important;
  background: #4aebc6 !important;
  font-family: "Madera" !important;
  font-size: 1rem !important;
  font-weight: normal !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  -webkit-appearance: none !important;
}
input[type=submit]:hover, input[type=submit]:focus,
button:hover,
button:focus {
  color: #fff !important;
  background: #124156 !important;
}

.wpcf7 br {
  display: none;
}
.wpcf7 fieldset {
  border: 0;
}

.white-house-info {
  display: none;
}

/* Header */
#header {
  position: relative;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 6px 34.58px 3.42px rgba(0, 0, 0, 0.08);
}
#header .container {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  padding: 0;
  flex-wrap: nowrap;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  #header .container {
    display: block;
  }
}
#header .nav-logo {
  display: inline-block;
  padding: 0.5555555556rem 0.8333333333rem;
  background: #fff;
  vertical-align: middle;
  flex: 0 1 auto;
}
#header .nav-logo img {
  width: 26.6666666667rem;
}
@media screen and (max-width: 1650px) {
  #header .nav-logo img {
    width: 25.5555555556rem;
  }
}
@media screen and (max-width: 1550px) {
  #header .nav-logo img {
    width: 23.3333333333rem;
  }
}
@media screen and (max-width: 1450px) {
  #header .nav-logo img {
    width: 21.1111111111rem;
  }
}
@media screen and (max-width: 1350px) {
  #header .nav-logo img {
    width: 14.4444444444rem;
  }
}
@media screen and (max-width: 1250px) {
  #header .nav-logo img {
    width: 11.1111111111rem;
  }
}
@media screen and (max-width: 1199px) {
  #header .nav-logo img {
    width: 26.6666666667rem;
  }
}
@media screen and (max-width: 330px) {
  #header .nav-logo img {
    width: 16.6666666667rem;
  }
}
#header .nav-collapse {
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}
#header .nav-collapse nav {
  display: flex;
  position: relative;
  text-align: center;
  flex: 1 1 auto;
  align-self: stretch;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  #header .nav-collapse nav {
    display: block;
  }
}
#header .nav-collapse nav::before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f6f6f6;
  content: " ";
  transform: skew(-30deg, 0deg);
  transform-origin: bottom left;
}
@media screen and (max-width: 1199px) {
  #header .nav-collapse nav::before {
    display: none;
  }
}
#header .nav-collapse nav > ul {
  position: relative;
  z-index: 1;
  margin: -0.5555555556rem 0 0 0;
  padding: 0;
  list-style: none;
}
#header .nav-collapse nav > ul > li {
  display: inline-block;
  position: relative;
  padding: 0 1.6666666667rem;
  font-size: 0.9444444444rem;
  font-weight: 500;
  line-height: 1.5;
  vertical-align: middle;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  #header .nav-collapse nav > ul > li {
    display: block;
    padding: 0;
  }
  #header .nav-collapse nav > ul > li + li {
    margin-top: 0.8333333333rem;
  }
}
#header .nav-collapse nav > ul > li > a {
  color: #124156;
}
#header .nav-collapse nav > ul > li > a:hover, #header .nav-collapse nav > ul > li > a:focus {
  color: #4aebc6;
}
#header .nav-collapse nav > ul > li > ul {
  display: none;
  position: absolute;
  z-index: 1030;
  top: 100%;
  width: 200px !important;
  max-width: 200px;
  margin: 0 0 0 0;
  padding: 0;
  padding: 0.2777777778rem;
  background: #124156;
  text-align: left;
  list-style: none;
}
@media screen and (max-width: 1199px) {
  #header .nav-collapse nav > ul > li > ul {
    display: block;
    position: static;
    width: 100% !important;
    background: none;
    margin: 0 auto;
  }
}
#header .nav-collapse nav > ul > li > ul > li {
  padding: 0.2777777778rem;
  font-size: 0.7777777778rem;
  line-height: 1.5;
}
#header .nav-collapse nav > ul > li > ul > li + li {
  border-top: 1px solid #f6f6f6;
}
@media screen and (max-width: 1199px) {
  #header .nav-collapse nav > ul > li > ul > li {
    padding: 0;
  }
  #header .nav-collapse nav > ul > li > ul > li + li {
    margin-top: 0.8333333333rem;
    border-top: 0;
  }
}
#header .nav-collapse nav > ul > li > ul > li > a {
  color: #fff;
}
#header .nav-collapse nav > ul > li > ul > li > a:hover, #header .nav-collapse nav > ul > li > ul > li > a:focus {
  color: #4aebc6;
}
@media screen and (max-width: 1199px) {
  #header .nav-collapse nav > ul > li > ul > li > a {
    color: #39b7f1;
  }
  #header .nav-collapse nav > ul > li > ul > li > a:hover, #header .nav-collapse nav > ul > li > ul > li > a:focus {
    color: #124156;
  }
}
#header .nav-collapse nav > ul > li:hover > ul, #header .nav-collapse nav > ul > li:focus > ul, #header .nav-collapse nav > ul > li:focus-within > ul {
  display: block;
}
#header .nav-collapse .nav-social {
  display: flex;
  flex-direction: column;
  padding: 0 0.8333333333rem 0 2.5rem;
  background: #4aebc6;
  text-align: center;
  flex: 0 1 auto;
  align-self: stretch;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  #header .nav-collapse .nav-social {
    display: block;
    margin-top: 1.6666666667rem;
    padding: 0;
    background: none;
  }
}
#header .nav-collapse .nav-social #google_translate_element {
  position: absolute;
  right: 0;
  bottom: -33px;
}
@media screen and (max-width: 1199px) {
  #header .nav-collapse .nav-social #google_translate_element {
    position: static;
    text-align: center !important;
  }
}
#header .nav-collapse .nav-social #google_translate_element .goog-te-gadget-simple {
  display: block;
  margin-bottom: 3px;
  padding: 0;
  border: 0;
  font-size: 9px;
}
@media screen and (max-width: 1199px) {
  #header .nav-collapse .nav-social #google_translate_element .goog-te-gadget-simple {
    display: inline-block;
  }
}
#header .nav-collapse .nav-social #google_translate_element .goog-te-gadget-simple img {
  display: inline-block;
}
#header .nav-collapse .nav-social > ul {
  padding: 0;
  list-style: none;
}
#header .nav-collapse .nav-social > ul > li {
  padding: 0 0.2777777778rem;
  font-size: 0.8888888889rem;
  line-height: 1;
}
#header .nav-collapse .nav-social > ul > li > a {
  display: inline-block;
  padding: 0.2777777778rem;
  border-radius: 50%;
  color: #124156;
  background: #fff;
  text-align: center;
  vertical-align: middle;
}
#header .nav-collapse .nav-social > ul > li > a:hover, #header .nav-collapse .nav-social > ul > li > a:focus {
  color: #39b7f1;
}
#header .nav-collapse .nav-social > ul > li:last-child > a {
  padding: 0;
  background: none;
}
@media screen and (max-width: 1199px) {
  #header .nav-collapse {
    display: none;
  }
  #header .nav-collapse.open {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 1.6666666667rem;
    background: #f6f6f6;
  }
}
#header .nav-toggle {
  display: none;
}
@media screen and (max-width: 1199px) {
  #header .nav-toggle {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    color: #124156;
    font-size: 1.6666666667rem;
    line-height: 1.5;
    vertical-align: middle;
    transform: translateY(-50%);
  }
  #header .nav-toggle:hover, #header .nav-toggle:focus {
    color: #4aebc6;
  }
}

/* Main */
#main {
  /* Home */
  /* Page */
  /* Single Post */
  /* Votes */
  /* Search */
  /* Map */
}
#main .section {
  padding: 4.1666666667rem 0 8.3333333333rem 0;
}
#main .section .section-title {
  display: inline-block;
  margin: 0 0 4.4444444444rem 0;
  color: #124156;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5;
}
#main .section .section-title::before {
  display: inline-block;
  width: 0.5555555556rem;
  height: 5rem;
  margin-right: 1.6666666667rem;
  background: #39b7f1;
  vertical-align: middle;
  content: "";
}
#main .section .section-title.white {
  color: #fff;
}
#main .section .section-title.green-after::before {
  background: #4aebc6;
}
#main #home-hero {
  position: relative;
}
#main #home-hero .hero {
  position: relative;
}
#main #home-hero .hero > img {
  width: 100%;
}
#main #home-hero .hero > .container {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  color: #124156;
  transform: translateY(-50%);
}
@media screen and (min-width: 1200px) and (max-width: 1599px) {
  #main #home-hero .hero > .container {
    max-width: 1230px;
  }
}
@media screen and (max-width: 991px) {
  #main #home-hero .hero > .container {
    position: static;
    color: #124156;
    transform: none;
  }
}
#main #home-hero .hero > .container .hero-content {
  max-width: 730px;
  /*margin: 0 auto;*/
  font-size: 1.3333333333rem;
  font-weight: bold;
  /*text-align: center;*/
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #main #home-hero .hero > .container .hero-content {
    max-width: 600px;
    font-size: 1.1111111111rem;
  }
}
@media screen and (max-width: 991px) {
  #main #home-hero .hero > .container .hero-content {
    max-width: 100%;
    padding: 2.2222222222rem 0;
    font-size: 1rem;
    text-align: center;
  }
}
#main #home-hero .hero > .container .hero-content p {
  /*margin: 0 0 calculate-rem(30px, $html-font-size) 0;*/
  margin: 0 0 0.8333333333rem 0;
  /*text-shadow: 2px 2px #232323;*/
}
@media screen and (max-width: 1199px) {
  #main #home-hero .hero > .container .hero-content p {
    text-shadow: none;
  }
}
#main #home-hero .hero > .container .hero-content form {
  position: relative;
  max-width: 400px;
  /*margin: 0 auto;*/
  padding-right: 5.2777777778rem;
}
@media screen and (max-width: 991px) {
  #main #home-hero .hero > .container .hero-content form {
    margin: 0 auto;
  }
}
#main #home-hero .hero > .container .hero-content form input {
  display: block;
  width: 100%;
  padding: 0.5555555556rem 0.8333333333rem;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #124156;
  background: #fff;
  box-shadow: -1px 8px 53.69px 5.31px rgba(101, 115, 121, 0.22);
  font-family: "Madera";
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  -webkit-appearance: none;
}
#main #home-hero .hero > .container .hero-content form input.placeholder {
  color: #124156;
}
#main #home-hero .hero > .container .hero-content form input:-moz-placeholder {
  color: #124156;
}
#main #home-hero .hero > .container .hero-content form input::-moz-placeholder {
  color: #124156;
}
#main #home-hero .hero > .container .hero-content form input:-ms-input-placeholder {
  color: #124156;
}
#main #home-hero .hero > .container .hero-content form input::-webkit-input-placeholder {
  color: #124156;
}
#main #home-hero .hero > .container .hero-content form input:focus {
  border-color: #4aebc6;
  outline: 0;
}
#main #home-hero .hero > .container .hero-content form button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.8333333333rem;
  border: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 0;
  color: #124156;
  background: #4aebc6;
  font-family: "Madera";
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
  -webkit-appearance: none;
}
#main #home-hero .hero > .container .hero-content form button:hover, #main #home-hero .hero > .container .hero-content form button:focus {
  color: #fff;
  background: #124156;
}
#main #home-hero .stats {
  /*position: absolute;*/
  right: 0;
  /*bottom: calculate-rem(-140px, $html-font-size);*/
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1199px) {
  #main #home-hero .stats {
    position: static;
  }
}
#main #home-hero .stats .stats-inner {
  display: flex;
  flex-direction: row;
  position: relative;
  max-width: 1600px;
  margin: 0 0 0 auto;
  flex-wrap: nowrap;
}
#main #home-hero .stats .stats-inner::before {
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
}
@media screen and (max-width: 1199px) {
  #main #home-hero .stats .stats-inner {
    flex-direction: column;
  }
  #main #home-hero .stats .stats-inner::before {
    display: none;
  }
}
#main #home-hero .stats .stats-inner .stat {
  display: flex;
  flex-direction: row;
  z-index: 2;
  max-width: 25%;
  padding: 2.2222222222rem;
  flex: 1 0 25%;
  flex-wrap: nowrap;
  align-items: flex-start;
}
@media screen and (max-width: 1199px) {
  #main #home-hero .stats .stats-inner .stat {
    flex-direction: column;
    max-width: 100%;
    flex: 1 1 100%;
    align-items: center;
  }
}
#main #home-hero .stats .stats-inner .stat .number {
  padding-bottom: 15px;
  border-bottom: 8px solid #124156;
  color: #fff;
  font-size: 4.1666666667rem;
  font-weight: 800;
  line-height: 1.5;
  flex: 0 0 auto;
}
#main #home-hero .stats .stats-inner .stat .number sup {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  font-size: 2.6666666667rem;
  line-height: 1.5;
  vertical-align: top;
}
#main #home-hero .stats .stats-inner .stat .text {
  padding: 0.5555555556rem 0 0 1.1111111111rem;
  flex: 1 1 auto;
  font-size: 1.1111111111rem;
}
@media screen and (max-width: 1199px) {
  #main #home-hero .stats .stats-inner .stat .text {
    padding-left: 0;
  }
}
#main #home-hero .stats .stats-inner .stat:nth-child(1) {
  background: #4aebc6;
}
#main #home-hero .stats .stats-inner .stat:nth-child(1) .number {
  color: #124156;
}
#main #home-hero .stats .stats-inner .stat:nth-child(2) {
  background: #39b7f1;
}
#main #home-hero .stats .stats-inner .stat:nth-child(2) .number {
  color: #124156;
}
#main #home-hero .stats .stats-inner .stat:nth-child(3) {
  background: #d6dfe3;
}
#main #home-hero .stats .stats-inner .stat:nth-child(3) .number {
  border-color: #39b7f1;
  color: #124156;
}
#main #home-hero .stats .stats-inner .stat:nth-child(4) {
  background: #124156;
}
#main #home-hero .stats .stats-inner .stat:nth-child(4) .number {
  border-color: #39b7f1;
}
#main #home-hero .stats .stats-inner .stat:nth-child(4) .text {
  color: #fff;
}
#main #home-services {
  /*padding: calculate-rem(400px, $html-font-size) 0 calculate-rem(215px, $html-font-size) 0;*/
  padding: 11.9444444444rem 0;
  background: url("../img/bg/home-services.png") no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 991px) {
  #main #home-services {
    padding: 4.1666666667rem 0 8.3333333333rem 0;
  }
}
#main #home-services .container {
  position: relative;
  padding-left: 3.3333333333rem;
}
@media screen and (max-width: 1199px) {
  #main #home-services .container {
    padding-left: 0.8333333333rem;
  }
}
#main #home-services .container::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 15px;
  width: 0.5555555556rem;
  height: 13.8888888889rem;
  background: #39b7f1;
  vertical-align: middle;
  content: "";
}
@media screen and (max-width: 1199px) {
  #main #home-services .container::before {
    display: none;
  }
}
#main #home-services .section-title {
  margin-bottom: 3.3333333333rem;
}
@media screen and (max-width: 1199px) {
  #main #home-services .section-title {
    margin-bottom: 4.4444444444rem;
  }
}
#main #home-services .section-title::before {
  display: none;
}
@media screen and (max-width: 1199px) {
  #main #home-services .section-title::before {
    display: inline-block;
  }
}
#main #home-services .services {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  #main #home-services .services {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
#main #home-services .services .service {
  max-width: 150px;
  text-align: center;
  flex: 1 1 150px;
}
@media screen and (max-width: 1199px) {
  #main #home-services .services .service {
    margin-bottom: 1.1111111111rem;
    padding: 0 0.5555555556rem;
  }
}
@media screen and (max-width: 480px) {
  #main #home-services .services .service {
    flex: 1 1 130px;
    max-width: 130px;
  }
}
#main #home-services .services .service > a {
  display: block;
  color: #124156;
}
#main #home-services .services .service > a:hover, #main #home-services .services .service > a:focus {
  color: #39b7f1;
}
#main #home-services .services .service > a .service-box {
  padding: 1.3888888889rem;
  border-radius: 40px;
  background: linear-gradient(to right, rgb(74, 236, 197) 0%, rgb(61, 195, 231) 100%);
}
#main #home-services .services .service > a .service-box i {
  color: #fff;
  text-shadow: 6px 6px 15.36px rgba(30, 83, 107, 0.2);
  font-size: 5rem;
  line-height: 1.5;
}
#main #home-services .services .service > a span {
  display: block;
  margin-top: 1.3888888889rem;
  font-size: 0.8888888889rem;
  font-weight: 500;
  line-height: 1.5;
}
#main #home-news {
  background: url("../img/bg/home-news.png") no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 991px) {
  #main #home-news .flex-row .flex-col + .flex-col {
    margin-top: 2.2222222222rem;
  }
}
#main #home-news .news-item {
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 6px 6px 59px 0 rgba(30, 83, 107, 0.43);
}
#main #home-news .news-item > img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
#main #home-news .news-item .news-content {
  position: relative;
  padding: 1.3888888889rem 2.7777777778rem 1.3888888889rem 1.3888888889rem;
  font-size: 0.8888888889rem;
  line-height: 1.625em;
}
#main #home-news .news-item .news-content header {
  margin: 0 0 0.8333333333rem 0;
}
#main #home-news .news-item .news-content header time {
  font-size: 0.7777777778rem;
  font-weight: 500;
  line-height: 1.5;
  text-indent: 0.1em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
#main #home-news .news-item .news-content header h3 {
  margin: 0;
  font-size: 1.1111111111rem;
  font-weight: bold;
  line-height: 1.5em;
}
#main #home-news .news-item .news-content header h3 a {
  color: #124156;
}
#main #home-news .news-item .news-content header h3 a:hover, #main #home-news .news-item .news-content header h3 a:focus {
  color: #4aebc6;
}
#main #home-news .news-item .news-content blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}
#main #home-news .news-item .news-content .category-bar {
  position: absolute;
  top: 1.3888888889rem;
  right: 1.3888888889rem;
  bottom: 1.3888888889rem;
}
#main #home-news .news-item .news-content .category-bar::before {
  display: block;
  width: 1px;
  height: 100%;
  background: #124156;
  content: "";
}
#main #home-news .news-item .news-content .category-bar span {
  display: inline-block;
  position: absolute;
  top: -15px;
  right: 5px;
  padding: 5px 10px;
  color: #0B72A2;
  background: #fff;
  font-size: 0.6111111111rem;
  font-weight: 500;
  line-height: 1.5;
  vertical-align: middle;
  white-space: nowrap;
  text-indent: 0.1em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: right center;
}
#main #home-news .news-item.sticky {
  color: #fff;
  background-color: #124156;
}
#main #home-news .news-item.sticky .news-content::before {
  display: inline-block;
  position: absolute;
  z-index: 10;
  top: -1.3888888889rem;
  left: 0;
  padding: 0.2777777778rem 0.5555555556rem;
  color: #fff;
  background: #39b7f1;
  font-size: 0.7777777778rem;
  font-weight: 500;
  line-height: 1.5;
  text-indent: 0.1em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  content: "Featured Story";
}
#main #home-news .news-item.sticky .news-content header h3 a {
  color: #fff;
}
#main #home-news .news-item.sticky .news-content header h3 a:hover, #main #home-news .news-item.sticky .news-content header h3 a:focus {
  color: #4aebc6;
}
#main #home-news .news-item.sticky .news-content .category-bar span {
  background-color: #124156;
}
#main #home-news .more {
  margin-top: 5.5555555556rem;
  text-align: center;
}
#main #home-media .videos-box {
  padding: 2.7777777778rem;
  background: linear-gradient(to right, rgb(74, 236, 197) 0%, rgb(61, 195, 231) 100%);
}
#main #home-media .videos-box #video-player {
  margin-bottom: 1rem;
  border: 2px solid #fff;
}
#main #home-media .videos-box #video-info {
  padding: 0.5555555556rem 0 0.5555555556rem 0.8333333333rem;
  border-left: 5px solid #39b7f1;
}
#main #home-media .videos-box #video-info > span {
  display: block;
}
#main #home-media .videos-box #video-info > span:nth-child(1) {
  margin-bottom: 5px;
  color: #124156;
  font-size: 0.7777777778rem;
  font-weight: 500;
  line-height: 1.5;
  text-indent: 0.1em;
  letter-spacing: 0.2em;
}
#main #home-media .videos-box #video-info > span:nth-child(2) {
  color: #124156;
  font-size: 1.3333333333rem;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  #main #home-media .videos-box #video-info {
    margin-bottom: 2.7777777778rem;
  }
}
#main #home-media .videos-box #video-thumbs .video-thumb + .video-thumb {
  margin-top: 2.7777777778rem;
}
#main #home-media .videos-box #video-thumbs .video-thumb > a {
  display: block;
  color: #124156;
}
#main #home-media .videos-box #video-thumbs .video-thumb > a:hover, #main #home-media .videos-box #video-thumbs .video-thumb > a:focus {
  color: #fff;
}
#main #home-media .videos-box #video-thumbs .video-thumb > a > img {
  width: 100%;
  margin: 0 auto 8px auto;
  border: 2px solid #fff;
}
#main #home-media .videos-box #video-thumbs .video-thumb > a .video-info {
  padding: 0.5555555556rem 0 0.5555555556rem 0.8333333333rem;
  border-left: 5px solid #4aebc6;
}
@media screen and (max-width: 991px) {
  #main #home-media .videos-box #video-thumbs .video-thumb > a .video-info {
    border-color: #124156;
  }
}
#main #home-media .videos-box #video-thumbs .video-thumb > a .video-info > span {
  display: block;
}
#main #home-media .videos-box #video-thumbs .video-thumb > a .video-info > span:nth-child(1) {
  margin-bottom: 5px;
  color: #124156;
  font-size: 0.7777777778rem;
  font-weight: 500;
  line-height: 1.5;
  text-indent: 0.1em;
  letter-spacing: 0.2em;
}
#main #home-media .videos-box #video-thumbs .video-thumb > a .video-info > span:nth-child(2) {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}
#main #home-social {
  background: url("../img/bg/home-social.png") no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 991px) {
  #main #home-social .flex-row .flex-col + .flex-col {
    margin-top: 2.2222222222rem;
  }
}
#main #home-social .social-box {
  padding: 1.6666666667rem;
  border-radius: 5px;
  color: #124156;
  background: #fff;
}
#main #home-social .social-box .social-header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 20px;
  align-content: center;
  align-items: center;
}
#main #home-social .social-box .social-header .handle {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
#main #home-social .social-box .social-header .handle::before {
  display: inline-block;
  margin-right: 8px;
  font-family: "Font Awesome 5 Brands";
  font-size: 1.4444444444rem;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1.5;
  vertical-align: middle;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
#main #home-social .social-box .social-header .handle > a {
  color: #124156;
}
#main #home-social .social-box .social-header .handle > a:hover, #main #home-social .social-box .social-header .handle > a:focus {
  color: #39b7f1;
}
#main #home-social .social-box .social-header .time {
  font-size: 0.6666666667rem;
  font-weight: 500;
  line-height: 1.5;
  text-indent: 0.1em;
  letter-spacing: 0.2em;
}
#main #home-social .social-box .social-content {
  overflow-y: auto;
  height: 300px;
  font-size: 0.8888888889rem;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  #main #home-social .social-box .social-content {
    height: auto;
  }
}
#main #home-social .social-box .social-content img {
  margin: 0 auto 20px auto;
}
#main #home-social .social-box .social-content p {
  margin: 0;
}
#main #home-social .social-box .social-content a {
  word-break: break-all;
}
#main #home-social .social-box.instagram {
  border-bottom: 30px solid #4aebc6;
}
#main #home-social .social-box.instagram .handle::before {
  color: #4aebc6;
  content: "\f16d";
}
#main #home-social .social-box.twitter {
  border-bottom: 30px solid #39b7f1;
}
#main #home-social .social-box.twitter .handle::before {
  color: #39b7f1;
  content: "\f099";
}
#main #home-social .social-box.facebook {
  border-bottom: 30px solid #2f89b2;
}
#main #home-social .social-box.facebook .handle::before {
  color: #2f89b2;
  content: "\f39e";
}
#main .page-header {
  position: relative;
  background-color: #000000;
}
#main .page-header::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.42);
  content: "";
}
#main .page-header > img {
  width: 100%;
  height: 29.4444444444rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media screen and (max-width: 1199px) {
  #main .page-header > img {
    height: 16.6666666667rem;
  }
}
#main .page-header > .container {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  left: 0;
  text-align: center;
  transform: translateY(-50%);
}
#main .page-header > .container > .page-title {
  margin: 0;
  color: #fff;
  font-size: 2.9444444444rem;
  font-weight: 800;
  line-height: 1.5;
}
#main .inner-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1500px;
  margin: -8.8888888889rem auto 0 auto;
  padding: 5rem;
  background: #fff;
}
@media screen and (max-width: 1199px) {
  #main .inner-content-wrap {
    margin-top: 0;
    padding: 0;
    padding: 4.4444444444rem 0;
  }
}
#main .inner-content-wrap a {
  text-decoration: underline;
}
#main .inner-content-wrap .container {
  max-width: 1230px;
}
#main .inner-content-wrap .post-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background: #f1f4f9;
}
@media screen and (max-width: 1199px) {
  #main .inner-content-wrap .post-item {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
#main .inner-content-wrap .post-item + .post-item {
  margin-top: 4.4444444444rem;
}
#main .inner-content-wrap .post-item .post-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 2.7777777778rem 2.7777777778rem 2.7777777778rem 5rem;
}
#main .inner-content-wrap .post-item .post-content.post-content-wide {
  flex: 0 0 100%;
  max-width: 100%;
}
@media screen and (max-width: 1199px) {
  #main .inner-content-wrap .post-item .post-content {
    flex: 1 0 100%;
    max-width: 100%;
    order: 2;
  }
}
#main .inner-content-wrap .post-item .post-content header .header-info {
  display: flex;
  flex-direction: row;
  font-size: 0.8333333333rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: space-between;
}
#main .inner-content-wrap .post-item .post-content header .header-info .time-cat {
  font-size: 0.7777777778rem;
  line-height: 1.5;
  text-indent: 0.1em;
  letter-spacing: 0.2em;
}
#main .inner-content-wrap .post-item .post-content header .header-info .social-share > li:first-child {
  display: none;
}
#main .inner-content-wrap .post-item .post-content header .header-info .social-share > li + li {
  margin-left: 0.6666666667rem;
}
#main .inner-content-wrap .post-item .post-content header .header-info .social-share > li > a {
  color: #39b7f1;
}
#main .inner-content-wrap .post-item .post-content header .header-info .social-share > li > a:hover, #main .inner-content-wrap .post-item .post-content header .header-info .social-share > li > a:focus {
  color: #4aebc6;
}
#main .inner-content-wrap .post-item .post-content header h2 {
  position: relative;
  margin: 1.3888888889rem 0 1.1111111111rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}
#main .inner-content-wrap .post-item .post-content header h2::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2.2222222222rem;
  width: 8px;
  background: #39b7f1;
  content: "";
}
#main .inner-content-wrap .post-item .post-content header h2 > a {
  text-decoration: none;
  color: #124156;
}
#main .inner-content-wrap .post-item .post-content header h2 > a:hover, #main .inner-content-wrap .post-item .post-content header h2 > a:focus {
  color: #4aebc6;
}
#main .inner-content-wrap .post-item .post-content blockquote {
  margin: 0 0 0.5555555556rem 0;
  padding: 0;
  border: 0;
  font-size: 1rem;
  line-height: 1.5;
}
#main .inner-content-wrap .post-item .post-image {
  flex: 0 0 50%;
  max-width: 50%;
}
@media screen and (max-width: 1199px) {
  #main .inner-content-wrap .post-item .post-image {
    flex: 1 0 100%;
    max-width: 100%;
    order: 1;
  }
}
#main .inner-content-wrap .post-item .post-image > img {
  height: 22.2222222222rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media screen and (max-width: 1199px) {
  #main .inner-content-wrap .post-item .post-image > img {
    height: auto;
  }
}
#main .inner-content-wrap .post-item:nth-child(even) .post-content header h2::before {
  background: #4aebc6;
}
#main .inner-content-wrap .wp-pagenavi {
  margin-top: 5.5555555556rem;
  text-align: center;
}
#main .inner-content-wrap .wp-pagenavi * + * {
  margin-left: 4px;
}
#main .inner-content-wrap .wp-pagenavi span,
#main .inner-content-wrap .wp-pagenavi a {
  display: inline-block;
  padding: 2px 5px 5px 5px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  vertical-align: middle;
}
#main .inner-content-wrap .wp-pagenavi span.current {
  color: #fff;
  background: #124156;
}
#main .inner-content-wrap .wp-pagenavi a {
  color: #124156;
}
#main .inner-content-wrap .wp-pagenavi a:hover, #main .inner-content-wrap .wp-pagenavi a:focus {
  color: #fff;
  background: #124156;
}
#main .inner-content-wrap .wp-pagenavi a.previouspostslink, #main .inner-content-wrap .wp-pagenavi a.nextpostslink {
  color: #39b7f1;
  background: none;
}
#main .inner-content-wrap .wp-pagenavi a.previouspostslink:hover, #main .inner-content-wrap .wp-pagenavi a.previouspostslink:focus, #main .inner-content-wrap .wp-pagenavi a.nextpostslink:hover, #main .inner-content-wrap .wp-pagenavi a.nextpostslink:focus {
  color: #124156;
}
#main .postpage-header {
  position: relative;
  background-color: #000000;
  min-height: 29.4444444444rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 1199px) {
  #main .postpage-header {
    min-height: 16.6666666667rem;
  }
}
#main .postpage-header .page-header {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#main .postpage-header .page-header::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.42);
  content: "";
}
#main .postpage-header .page-header > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
#main .postpage-header .page-header > .container {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  left: 0;
  text-align: center;
  transform: translateY(-50%);
}
#main .postpage-header .page-header > .container > .page-title {
  margin: 0;
  color: #fff;
  font-size: 2.9444444444rem;
  font-weight: 800;
  line-height: 1.5;
}
#main .postpage-header .post-header {
  position: relative;
  z-index: 2;
  margin: 1.1111111111rem 0 3.3333333333rem 0;
  padding: 0 0 0 1.1111111111rem;
  border-left: 8px solid #39b7f1;
}
#main .postpage-header .post-header > time,
#main .postpage-header .post-header span {
  color: #fff;
  font-size: 0.7777777778rem;
  font-weight: 500;
  line-height: 1.5;
  text-indent: 0.1em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
#main .postpage-header .post-header > time.cat,
#main .postpage-header .post-header span.cat {
  color: #39b7f1;
}
#main .postpage-header .post-header .page-title {
  margin: 0.2777777778rem 0 0 0;
  color: #fff;
  font-size: 1.6666666667rem;
  font-weight: bold;
  line-height: 1.5;
}
#main .post-inner-content {
  position: relative;
  z-index: 3;
  padding: 0 0 6.3888888889rem 0;
}
#main .post-inner-content .post-box {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 5rem;
  background: #fff;
}
@media screen and (max-width: 1199px) {
  #main .post-inner-content .post-box {
    margin-top: 0;
    padding: 0;
    padding: 4.4444444444rem 0;
  }
}
#main .post-inner-content .post-box a {
  text-decoration: underline;
}
#main .post-inner-content .featured-post-img {
  width: 100%;
  margin: 0 auto 2.2222222222rem auto;
}
#main .post-inner-content .social-share {
  text-align: center;
}
#main .post-inner-content .social-share > li {
  line-height: 1;
}
#main .post-inner-content .social-share > li + li {
  margin-left: 0.4444444444rem;
}
#main .post-inner-content .social-share > li > span {
  color: #0B72A2;
  text-indent: 0.1em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
#main .post-inner-content .social-share > li > a {
  display: inline-block;
  padding: 0.4444444444rem;
  border-radius: 50%;
  color: #4aebc6;
  background: #124156;
}
#main .post-inner-content .social-share > li > a:hover, #main .post-inner-content .social-share > li > a:focus {
  color: #fff;
  background: #4aebc6;
}
#main .related-posts {
  padding: 4.4444444444rem 0;
  background: linear-gradient(to right, rgb(74, 236, 197) 0%, rgb(61, 195, 231) 100%);
}
#main .related-posts h2 {
  margin: 0 0 4.4444444444rem 0;
  color: #fff;
  font-size: 2.9444444444rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 991px) {
  #main .related-posts .flex-row .flex-col + .flex-col {
    margin-top: 2.2222222222rem;
  }
}
#main .related-posts .news-item {
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 6px 6px 59px 0 rgba(30, 83, 107, 0.43);
}
#main .related-posts .news-item > img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
#main .related-posts .news-item .news-content {
  position: relative;
  padding: 1.3888888889rem 2.7777777778rem 1.3888888889rem 1.3888888889rem;
  font-size: 0.8888888889rem;
  line-height: 1.5;
}
#main .related-posts .news-item .news-content header {
  margin: 0 0 0.8333333333rem 0;
}
#main .related-posts .news-item .news-content header time {
  font-size: 0.7777777778rem;
  font-weight: 500;
  line-height: 1.5;
  text-indent: 0.1em;
  letter-spacing: 0.2em;
}
#main .related-posts .news-item .news-content header h3 {
  margin: 0;
  font-size: 1.1111111111rem;
  font-weight: bold;
  line-height: 1.5;
}
#main .related-posts .news-item .news-content header h3 a {
  color: #124156;
}
#main .related-posts .news-item .news-content header h3 a:hover, #main .related-posts .news-item .news-content header h3 a:focus {
  color: #4aebc6;
}
#main .related-posts .news-item .news-content blockquote {
  margin: 0;
  padding: 0;
  border: 0;
}
#main .related-posts .news-item .news-content .category-bar {
  position: absolute;
  top: 1.3888888889rem;
  right: 1.3888888889rem;
  bottom: 1.3888888889rem;
}
#main .related-posts .news-item .news-content .category-bar::before {
  display: block;
  width: 1px;
  height: 100%;
  background: #124156;
  content: "";
}
#main .related-posts .news-item .news-content .category-bar span {
  display: inline-block;
  position: absolute;
  top: -15px;
  right: 5px;
  padding: 5px 10px;
  color: #39b7f1;
  background: #fff;
  font-size: 0.6111111111rem;
  font-weight: 500;
  line-height: 1.5;
  vertical-align: middle;
  white-space: nowrap;
  text-indent: 0.1em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: right center;
}
#main .votes {
  border: 1px solid #124156;
  text-align: center;
}
#main .votes .vote .flex-col {
  padding: 5px 25px;
}
#main .votes .vote + .vote {
  border-top: 1px solid #124156;
}
#main .searchform label {
  display: block;
  margin: 0 0 0.5555555556rem 0;
}
#main .searchform #searchsubmit {
  margin: 0.5555555556rem 0 0 0;
}
#main #congress_office_map,
#main #congress_district_map {
  height: 0;
  margin: 0 0 2.2222222222rem 0;
  padding-bottom: 56.25%;
}
#main #issue-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
#main #issue-wrapper a {
  display: block;
  background-size: cover;
  background-position: center;
  border: 6px solid #ffffff;
  transition: 0.3s all;
  text-decoration: none;
}
#main #issue-wrapper a:hover, #main #issue-wrapper a:focus {
  border-color: #4aebc6;
}
#main #issue-wrapper a:hover .filter, #main #issue-wrapper a:focus .filter {
  background-color: rgba(18, 65, 86, 0.6666666667);
}
#main #issue-wrapper .filter {
  background: transparent;
  background-color: rgba(0, 0, 0, 0.1333333333);
  padding: 10px;
  width: 256px;
  height: 256px;
  transition: 0.3s all;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
}
#main #issue-wrapper .filter span {
  text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.8);
}

/* Footer */
#footer-newsletter {
  position: relative;
}
@media screen and (max-width: 991px) {
  #footer-newsletter {
    padding: 4.4444444444rem 0;
  }
}
#footer-newsletter::before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 57%;
  height: 100%;
  background: #fff;
  content: " ";
  transform: skew(-10deg, 0deg);
  transform-origin: bottom left;
}
@media screen and (max-width: 991px) {
  #footer-newsletter::before {
    display: none;
  }
}
#footer-newsletter .container {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  max-width: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  #footer-newsletter .container {
    position: static;
    max-width: 100%;
    transform: none;
  }
}
#footer-newsletter > img {
  width: 50%;
  max-width: 50%;
}
@media screen and (max-width: 991px) {
  #footer-newsletter > img {
    display: none;
  }
}
#footer-newsletter .newsletter {
  max-width: 500px;
  margin: 0 auto;
}
#footer-newsletter .newsletter h2 {
  display: inline-block;
  margin: 0 0 1.6666666667rem 0;
  color: #124156;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5;
}
#footer-newsletter .newsletter h2::before {
  display: inline-block;
  width: 0.5555555556rem;
  height: 5rem;
  margin-right: 1.6666666667rem;
  background: #39b7f1;
  vertical-align: middle;
  content: "";
}
#footer-newsletter .newsletter form {
  position: relative;
  padding-right: 5.8333333333rem;
}
#footer-newsletter .newsletter form input {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  padding: 0.8333333333rem 1.1111111111rem;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #124156;
  background: #fff;
  box-shadow: -1px 8px 53.69px 5.31px rgba(101, 115, 121, 0.22);
  font-family: "Madera";
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}
#footer-newsletter .newsletter form input.placeholder {
  color: #124156;
}
#footer-newsletter .newsletter form input:-moz-placeholder {
  color: #124156;
}
#footer-newsletter .newsletter form input::-moz-placeholder {
  color: #124156;
}
#footer-newsletter .newsletter form input:-ms-input-placeholder {
  color: #124156;
}
#footer-newsletter .newsletter form input::-webkit-input-placeholder {
  color: #124156;
}
#footer-newsletter .newsletter form input:focus {
  border-color: #4aebc6;
  outline: 0;
}
#footer-newsletter .newsletter form button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.1111111111rem;
  border: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #124156;
  background: #4aebc6;
  font-family: "Madera";
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
  -webkit-appearance: none;
}
#footer-newsletter .newsletter form button:hover, #footer-newsletter .newsletter form button:focus {
  color: #fff;
  background: #124156;
}

#footer {
  position: relative;
  background: url("../img/bg/footer-bg.png") no-repeat center bottom;
  /*background-size: 100% auto;*/
  background-size: cover;
  /*background: -webkit-linear-gradient(bottom, rgba(117, 226, 187, 0.96) 0%, rgba(85, 167, 176, 0.96) 60%, rgba(65, 132, 170, 0.96) 100%);
  background: -o-linear-gradient(bottom, rgba(117, 226, 187, 0.96) 0%, rgba(85, 167, 176, 0.96) 60%, rgba(65, 132, 170, 0.96) 100%);
  background: -ms-linear-gradient(bottom, rgba(117, 226, 187, 0.96) 0%, rgba(85, 167, 176, 0.96) 60%, rgba(65, 132, 170, 0.96) 100%);
  background: -moz-linear-gradient(bottom, rgba(117, 226, 187, 0.96) 0%, rgba(85, 167, 176, 0.96) 60%, rgba(65, 132, 170, 0.96) 100%);
  background: linear-gradient(to top, rgba(117, 226, 187, 0.96) 0%, rgba(85, 167, 176, 0.96) 60%, rgba(65, 132, 170, 0.96) 100%);

  .parallax {
  	overflow: hidden;
  	position: absolute;
  	top: 0;
  	right: 0;
  	bottom: 0;
  	left: 0;

  	> img {
  		position: absolute;
  		bottom: 0;
  		width: 100%;
  		opacity: 0;
  		animation-timing-function: ease-out;

  		@-webkit-keyframes go-up {

  			0% {
  				transform: translateY(50%);
  			}

  			100% {
  				transform: translateY(0%);
  			}
  		}

  		@media screen and (min-width: 2000px) {
  			bottom: -50%;
  		}

  		&.img-1 {
  			z-index: 9;
  			animation-duration: 3s;
  		}

  		&.img-2 {
  			z-index: 8;
  			animation-duration: 3s;
  		}

  		&.img-3 {
  			z-index: 7;
  			animation-duration: 3s;
  		}

  		&.img-4 {
  			z-index: 6;
  			animation-duration: 3s;
  		}

  		&.img-5 {
  			z-index: 5;
  			animation-duration: 3s;
  		}

  		&.img-6 {
  			z-index: 4;
  			animation-duration: 4s;
  		}

  		&.img-7 {
  			z-index: 3;
  			animation-duration: 3s;
  		}

  		&.img-8 {
  			z-index: 2;
  			animation-duration: 3s;
  		}
  	}
  }*/
}
@media screen and (min-width: 1921px) {
  #footer {
    background-position: center -20%;
  }
}
#footer .footer-top {
  position: relative;
  z-index: 15;
  padding: 4.4444444444rem 0;
  /*background: $color-dark-blue url("../img/bg/footer-bg.png") no-repeat center top;
  background-size: cover;*/
  /*background: $color-dark-blue;*/
}
@media screen and (max-width: 991px) {
  #footer .footer-top {
    text-align: center;
  }
}
#footer .footer-top .footer-logo {
  margin: 6.1111111111rem auto;
}
@media screen and (max-width: 991px) {
  #footer .footer-top .footer-logo {
    width: 13.8888888889rem;
  }
}
#footer .footer-top .flex-row .flex-col {
  border-left: 1px solid #96a3a7;
}
@media screen and (max-width: 991px) {
  #footer .footer-top nav {
    display: none;
  }
}
#footer .footer-top nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .footer-top nav > ul > li {
  font-size: 0.8888888889rem;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}
#footer .footer-top nav > ul > li + li {
  margin-top: 2.7777777778rem;
}
#footer .footer-top nav > ul > li.current-menu-item > a {
  color: #fff;
}
#footer .footer-top nav > ul > li > a {
  color: #4aebc6;
}
#footer .footer-top nav > ul > li > a:hover, #footer .footer-top nav > ul > li > a:focus {
  color: #fff;
}
#footer .footer-top nav > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .footer-top nav > ul > li > ul > li {
  margin-top: 1.1111111111rem;
  font-size: 0.8888888889rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: none;
}
#footer .footer-top nav > ul > li > ul > li > a {
  color: #fff;
}
#footer .footer-top nav > ul > li > ul > li > a:hover, #footer .footer-top nav > ul > li > ul > li > a:focus {
  color: #4aebc6;
}
#footer .footer-top .office {
  color: #fff;
}
#footer .footer-top .office + .office {
  margin-top: 2.7777777778rem;
}
#footer .footer-top .office p {
  margin: 0 0 1.1111111111rem 0;
  font-size: 0.8888888889rem;
  line-height: 1.5;
}
#footer .footer-top .office p:nth-child(1) {
  color: #4aebc6;
  font-weight: 800;
  text-transform: uppercase;
}
#footer .footer-top .socials > li {
  font-size: 1.1111111111rem;
  line-height: 1;
}
#footer .footer-top .socials > li + li {
  margin-left: 26px;
}
#footer .footer-top .socials > li > a {
  color: #4aebc6;
}
#footer .footer-top .socials > li > a:hover, #footer .footer-top .socials > li > a:focus {
  color: #fff;
}
#footer .footer-bottom {
  position: relative;
  z-index: 15;
  padding: 10px 0;
  color: #124156;
  background: #39b7f1;
  text-align: center;
}
#footer .footer-bottom a {
  color: #124156;
}
#footer .footer-bottom a:hover, #footer .footer-bottom a:focus {
  color: #fff;
}
#footer .footer-bottom ul > li {
  font-size: 0.6666666667rem;
  font-weight: 800;
  line-height: 1.5;
  text-indent: 0.2em;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
#footer .footer-bottom ul > li + li::before {
  display: inline-block;
  margin-right: 17px;
  margin-left: 13px;
  font-size: 0.4444444444rem;
  font-weight: 800;
  line-height: 1.5;
  vertical-align: middle;
  content: "|";
}

.grecaptcha-badge {
  z-index: 1000 !important;
}

.gsc-input-box {
  border: 0 !important;
}

.gsc-search-button-v2 {
  min-width: 4.1666666667rem !important;
  margin-left: 0 !important;
}/*# sourceMappingURL=style.css.map */