/*

SASS_STYLE.SCSS CONTENTS

This file is set up for mobile-first coding. See below for file structure:

- Variables and mixins
- General
    This is where global styles go, as well as styles that apply to content
- Header
- Main Menu
- Footer
- Interior Pages
	- Sidebar
	- Pagination
- Home
- Media Queries
	- Tablet Portrait (768px); corresponds with Bootstrap 'sm'
	- Tablet Landscape (992px); corresponds with Bootstrap 'md'
	- Desktop (1200px); corresponds with Bootstrap 'lg'

*/
/*
	= Variables and mixins
*******************************************************************************************/
/* Use this mixin when using webfonts that appear darker than in mockups (especially complex fonts) */
/* This is also useful when using light text against a dark background; this will make the text crisper and less fuzzy */
/*
	= General
*******************************************************************************************/
/* line 70, ../sass/sass_style.scss */
html {
  overflow-x: hidden;
}

/* line 71, ../sass/sass_style.scss */
body {
  overflow: hidden;
}

/* line 72, ../sass/sass_style.scss */
.container {
  max-width: 1168px;
}

/* line 75, ../sass/sass_style.scss */
body {
  font-family: "Merriweather", sans-serif !important;
  color: #000;
  padding-bottom: 0;
  background-color: #FFF;
  word-wrap: break-word;
}

/* line 83, ../sass/sass_style.scss */
img {
  max-width: 100%;
  height: auto;
}

/* line 87, ../sass/sass_style.scss */
.wp-caption {
  padding: 5px;
}
/* line 89, ../sass/sass_style.scss */
.wp-caption img {
  width: 100%;
  height: auto;
}
/* line 93, ../sass/sass_style.scss */
.wp-caption .wp-caption-text {
  margin-bottom: 0;
  font-size: 12px !important;
  font-style: italic;
  color: #111;
  background-color: #DDD;
  padding: 5px;
}

/* line 102, ../sass/sass_style.scss */
.alignleft {
  float: left;
  margin-right: 10px;
}

/* line 106, ../sass/sass_style.scss */
.aligncenter {
  margin: 10px auto;
  display: block;
}

/* line 110, ../sass/sass_style.scss */
.alignright {
  float: right;
  margin-left: 10px;
}

/* line 114, ../sass/sass_style.scss */
input[type="button"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* line 118, ../sass/sass_style.scss */
h1, h2 {
  margin: 30px 0 15px;
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
}

/* line 123, ../sass/sass_style.scss */
h3, h4, h5, h6 {
  margin: 30px 0 15px;
  font-family: "Roboto Condensed", sans-serif !important;
}

/* line 128, ../sass/sass_style.scss */
.maincontent.lower a, .container-normal a {
  color: #00647D;
}
/* line 131, ../sass/sass_style.scss */
.maincontent.lower em, .container-normal em {
  font-style: italic;
}
/* line 134, ../sass/sass_style.scss */
.maincontent.lower strong, .container-normal strong {
  font-weight: bold;
}
/* line 137, ../sass/sass_style.scss */
.maincontent.lower p, .container-normal p {
  font: normal normal normal 15px/150% "Merriweather", sans-serif;
  line-height: 2;
  color: #111;
  margin-bottom: 15px;
}
/* line 143, ../sass/sass_style.scss */
.maincontent.lower blockquote, .maincontent.lower blockquote *, .container-normal blockquote, .container-normal blockquote * {
  color: #000;
  font: italic 14px/130% "Merriweather", sans-serif;
  margin: 0;
  line-height: 20px;
}
/* line 149, ../sass/sass_style.scss */
.maincontent.lower blockquote, .container-normal blockquote {
  border-left: 7px solid #6ED2F0;
}
/* line 152, ../sass/sass_style.scss */
.maincontent.lower h1, .maincontent.lower h2, .container-normal h1, .container-normal h2 {
  text-transform: uppercase;
}
/* line 155, ../sass/sass_style.scss */
.maincontent.lower h2, .container-normal h2 {
  color: #00647D;
}
/* line 158, ../sass/sass_style.scss */
.maincontent.lower h3, .maincontent.lower h4, .maincontent.lower h5, .maincontent.lower h6, .container-normal h3, .container-normal h4, .container-normal h5, .container-normal h6 {
  color: #000;
  margin: 30px 0 15px;
  font-family: "Roboto Condensed", sans-serif !important;
}
/* line 163, ../sass/sass_style.scss */
.maincontent.lower h2, .container-normal h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}
/* line 164, ../sass/sass_style.scss */
.maincontent.lower h3, .container-normal h3 {
  font-size: 30px;
}
/* line 165, ../sass/sass_style.scss */
.maincontent.lower h4, .container-normal h4 {
  font-size: 30px;
}
/* line 166, ../sass/sass_style.scss */
.maincontent.lower h5, .container-normal h5 {
  font-size: 30px;
}
/* line 167, ../sass/sass_style.scss */
.maincontent.lower h6, .container-normal h6 {
  font-size: 20px;
  text-transform: uppercase;
}
/* line 169, ../sass/sass_style.scss */
.maincontent.lower > h2, .container-normal > h2 {
  font-size: 40px;
}
/* line 170, ../sass/sass_style.scss */
.maincontent.lower ul, .container-normal ul {
  list-style-type: disc;
  color: #111;
  font: normal normal normal 15px/150% "Roboto Condensed", sans-serif !important;
  margin-bottom: 15px;
}
/* line 175, ../sass/sass_style.scss */
.maincontent.lower ul ul, .container-normal ul ul {
  padding-left: 0px;
  list-style-type: disc;
  margin-bottom: 0;
}
/* line 179, ../sass/sass_style.scss */
.maincontent.lower ul ul ul, .container-normal ul ul ul {
  list-style-type: circle;
}
/* line 184, ../sass/sass_style.scss */
.maincontent.lower ol, .container-normal ol {
  padding-left: 30px;
  list-style-type: decimal;
  color: #111;
  font: normal normal normal 15px/150% "Roboto Condensed", sans-serif !important;
  margin-bottom: 15px;
}
/* line 190, ../sass/sass_style.scss */
.maincontent.lower ol ul, .container-normal ol ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 0;
}
/* line 194, ../sass/sass_style.scss */
.maincontent.lower ol ul ul, .container-normal ol ul ul {
  list-style-type: circle;
}
/* line 198, ../sass/sass_style.scss */
.maincontent.lower ol ol, .container-normal ol ol {
  padding-left: 20px;
}
/* line 202, ../sass/sass_style.scss */
.maincontent.lower pre, .container-normal pre {
  background-color: transparent;
  border: none;
  color: #CCC;
  font-size: 150%;
  font-style: italic;
  font-family: "Merriweather", sans-serif;
  text-align: center;
}
/* line 211, ../sass/sass_style.scss */
.maincontent.lower li, .container-normal li {
  color: #6ED2F0;
  font-weight: bold;
}
/* line 214, ../sass/sass_style.scss */
.maincontent.lower li span, .container-normal li span {
  color: #00647D;
  font-weight: normal;
  line-height: 2;
}
/* line 221, ../sass/sass_style.scss */
.maincontent.lower .entry textarea, .maincontent.lower .entry input[type=text], .container-normal .entry textarea, .container-normal .entry input[type=text] {
  background-color: #D9FDED;
  border: none;
}
/* line 225, ../sass/sass_style.scss */
.maincontent.lower .entry input[type=submit], .container-normal .entry input[type=submit] {
  background-color: #00647D;
  color: #FFF;
  border: none;
  box-shadow: none;
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
  font-size: 23px;
}
/* line 234, ../sass/sass_style.scss */
.maincontent.lower .entry h3, .container-normal .entry h3 {
  color: #00647D;
  font-family: "Roboto Condensed", sans-serif !important;
}
/* line 238, ../sass/sass_style.scss */
.maincontent.lower .entry h4, .container-normal .entry h4 {
  color: #FFF;
  background-color: #00647D;
  padding: 5px;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif !important;
}
/* line 245, ../sass/sass_style.scss */
.maincontent.lower .entry h5, .container-normal .entry h5 {
  color: #6ED2F0;
  font-style: italic;
  text-align: center;
}

/* line 254, ../sass/sass_style.scss */
a:link, a:visited {
  color: #00647D;
}
/* line 257, ../sass/sass_style.scss */
a:hover {
  color: #00F087;
}

/* line 261, ../sass/sass_style.scss */
a span.more {
  font-size: 20px;
  font-weight: bold;
}

/* line 265, ../sass/sass_style.scss */
.whats-new {
  background-color: #D9FDED;
  padding: 15px;
  line-height: 30px;
  display: block;
  margin-bottom: -15px;
}

/* line 272, ../sass/sass_style.scss */
span.green-button {
  background-color: #00F087;
  padding: 0px 5px;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif !important;
  font-size: 20px;
  margin: 10px 0px;
}
/* line 279, ../sass/sass_style.scss */
span.green-button a {
  color: #000 !important;
}

/* line 283, ../sass/sass_style.scss */
span.bright-blue-button {
  background-color: #6ED2F0;
  padding: 0 5px;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif !important;
  font-size: 20px;
  margin: 10px 0px;
  color: #FFF;
}
/* line 291, ../sass/sass_style.scss */
span.bright-blue-button a {
  color: #FFF !important;
}

/* line 295, ../sass/sass_style.scss */
p {
  word-wrap: break-word;
}

/*
	Gravity Forms
*/
/* line 302, ../sass/sass_style.scss */
.gform_wrapper .gfield_checkbox li label {
  white-space: normal !important;
}

/*.gform_wrapper .gfield_checkbox li label {
    display: block !important;
    padding-left: 15px !important;
    text-indent: -15px !important;
}
.gform_wrapper .gfield_checkbox li input, .gform_wrapper .gfield_checkbox li input[type=checkbox], .gform_wrapper .gfield_radio li input[type=radio]{
    width: 13px !important;
    height: 13px !important;
    padding: 0 !important;
    margin:0 !important;
    vertical-align: bottom !important;
    position: relative !important;
    top: -1px !important;
    overflow: hidden;
}*/
/* line 324, ../sass/sass_style.scss */
.gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox li, .gform_wrapper li.gfield.gf_list_2col ul.gfield_radio li {
  position: relative;
}

/* line 327, ../sass/sass_style.scss */
.gform_wrapper .gfield_checkbox li input, .gform_wrapper .gfield_checkbox li input[type=checkbox], .gform_wrapper .gfield_radio li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
}

/* line 332, ../sass/sass_style.scss */
.gform_wrapper .gfield_checkbox li label {
  position: absolute;
  left: 15px;
  top: 0;
}

/* line 338, ../sass/sass_style.scss */
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input, .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox], .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
  margin-top: 5px !important;
}

/* line 341, ../sass/sass_style.scss */
.gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox li, .gform_wrapper li.gfield.gf_list_2col ul.gfield_radio li {
  min-height: 60px !important;
}

/*
	= Header
*******************************************************************************************/
/* line 349, ../sass/sass_style.scss */
.navbar-wrapper {
  position: static;
}

/* line 352, ../sass/sass_style.scss */
.navbar-wrapper .container {
  padding: 0;
}

/* line 355, ../sass/sass_style.scss */
.navbar {
  border: none;
  margin-bottom: 0;
}

/* line 360, ../sass/sass_style.scss */
.left {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* line 365, ../sass/sass_style.scss */
.brand {
  margin-bottom: 20px;
}
/* line 367, ../sass/sass_style.scss */
.brand a.logo {
  position: relative;
  z-index: 9999;
}
/* line 371, ../sass/sass_style.scss */
.brand .logo img {
  padding-top: 15px;
  width: 100%;
}

/* line 376, ../sass/sass_style.scss */
#search-2 {
  float: right;
}

/* line 379, ../sass/sass_style.scss */
.iframe {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #FFF;
}

/* line 387, ../sass/sass_style.scss */
.cover_text {
  position: absolute;
  /*left: 50%;
  margin-left: -585px;*/
  bottom: 80px;
}

/* line 394, ../sass/sass_style.scss */
.mission {
  font-family: 'Roboto Condensed';
  font-size: 57px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00F087;
  text-align: left;
}

/* line 403, ../sass/sass_style.scss */
.image_story {
  position: absolute;
  bottom: 0;
  right: 0px;
}

/* line 409, ../sass/sass_style.scss */
.image_story .story {
  text-align: left;
  padding: 10px;
  background-color: #6ED2F0;
  display: none;
}
/* line 414, ../sass/sass_style.scss */
.image_story .story p {
  font-size: 13px;
  margin: 0;
}

/* line 419, ../sass/sass_style.scss */
#story-show, .plus-link {
  color: #00F087 !important;
  display: block;
  font-size: 24px;
  padding: 50px;
  text-align: right;
}
/* line 425, ../sass/sass_style.scss */
#story-show:hover, .plus-link:hover {
  color: #00647D !important;
}

/* line 430, ../sass/sass_style.scss */
.image_story .credit {
  text-align: right;
}

/* line 433, ../sass/sass_style.scss */
#icl_lang_sel_widget-1 {
  float: left;
}

/* line 436, ../sass/sass_style.scss */
#top-search {
  color: #00647D;
}

/* line 439, ../sass/sass_style.scss */
#topmenu .brand {
  position: relative;
}

/* line 440, ../sass/sass_style.scss */
#topmenu .form {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  color: #00647D;
  background-color: #00F087;
  height: 90px;
}
/* line 449, ../sass/sass_style.scss */
#topmenu .form .search-field {
  background-color: #00F087;
  color: #FFF;
  font-size: 40px;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif !important;
  border: none;
}
/* line 457, ../sass/sass_style.scss */
#topmenu .form ::-webkit-input-placeholder {
  color: #FFF;
  opacity: 1 !important;
}
/* line 461, ../sass/sass_style.scss */
#topmenu .form :-moz-placeholder {
  /* Firefox 18- */
  color: #FFF;
  opacity: 1 !important;
}
/* line 465, ../sass/sass_style.scss */
#topmenu .form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #FFF;
  opacity: 1 !important;
}
/* line 469, ../sass/sass_style.scss */
#topmenu .form :-ms-input-placeholder {
  color: #FFF;
  opacity: 1 !important;
}
/* line 472, ../sass/sass_style.scss */
#topmenu .form .search-form {
  float: left;
  padding-top: 20px;
  padding-left: 20px;
}
/* line 477, ../sass/sass_style.scss */
#topmenu .form .fa-times {
  color: #FFF;
  font-size: 40px;
  padding-top: 25px;
  padding-right: 20px;
}

/*
	= Main Menu
*******************************************************************************************/
/* line 489, ../sass/sass_style.scss */
.menu-collapser {
  display: none !important;
}

/* line 492, ../sass/sass_style.scss */
.navbar-toggle {
  background-color: #333;
}
/* line 494, ../sass/sass_style.scss */
.navbar-toggle .icon-bar {
  background-color: #E5E5E5;
}

/* line 498, ../sass/sass_style.scss */
ul.slimmenu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: block !important;
}
/* line 504, ../sass/sass_style.scss */
ul.slimmenu li {
  position: relative;
  display: inline-block;
}
/* line 507, ../sass/sass_style.scss */
ul.slimmenu li a {
  display: block;
  color: #00647D;
  padding: 12px 64px 12px 16px;
  font-size: 17px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  /*transition: background-color 0.5s ease-out;
  -o-transition: background-color 0.5s ease-out;
  -moz-transition: background-color 0.5s ease-out;
  -webkit-transition: background-color 0.5s ease-out;*/
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
}
/* line 519, ../sass/sass_style.scss */
ul.slimmenu li a:hover {
  /*background-color: #999;*/
  text-decoration: none;
}
/* line 525, ../sass/sass_style.scss */
ul.slimmenu li .sub-collapser {
  /*background: none repeat scroll 0 0 rgba(0, 0, 0, 0.075);*/
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 100%;
  text-align: center;
  z-index: 999;
  cursor: pointer;
}
/* line 535, ../sass/sass_style.scss */
ul.slimmenu li .sub-collapser:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
/* line 542, ../sass/sass_style.scss */
ul.slimmenu li .sub-collapser > i {
  color: #333;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
}
/* line 550, ../sass/sass_style.scss */
ul.slimmenu li > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 999;
  width: 100%;
}
/* line 557, ../sass/sass_style.scss */
ul.slimmenu li > ul > li ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 999;
  width: 100%;
}
/* line 569, ../sass/sass_style.scss */
ul.slimmenu ul {
  margin: 0;
  list-style-type: none;
}
/* line 572, ../sass/sass_style.scss */
ul.slimmenu ul li {
  /* background-color: #BBB; */
}
/* line 576, ../sass/sass_style.scss */
ul.slimmenu.collapsed li {
  display: block;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
/* line 582, ../sass/sass_style.scss */
ul.slimmenu.collapsed li a {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
/* line 589, ../sass/sass_style.scss */
ul.slimmenu.collapsed li .sub-collapser {
  height: 40px;
}
/* line 592, ../sass/sass_style.scss */
ul.slimmenu.collapsed li > ul {
  display: none;
  position: static;
}

/* line 599, ../sass/sass_style.scss */
.collapse-button {
  display: none;
}

/* line 602, ../sass/sass_style.scss */
.navbar-collapse {
  max-height: 430px;
}

/*
	= Footer
*******************************************************************************************/
/* line 609, ../sass/sass_style.scss */
.bg_blue {
  background-color: #F8FDFE;
  padding-bottom: 50px;
}
/* line 612, ../sass/sass_style.scss */
.bg_blue #footer {
  padding-top: 50px;
}
/* line 614, ../sass/sass_style.scss */
.bg_blue #footer p.exec {
  color: #00647D;
  padding-top: 30px;
}
/* line 618, ../sass/sass_style.scss */
.bg_blue #footer .current_page_item {
  background-color: transparent;
}
/* line 620, ../sass/sass_style.scss */
.bg_blue #footer .current_page_item a {
  color: #00647D !important;
}
/* line 624, ../sass/sass_style.scss */
.bg_blue #footer span.more {
  font-size: 14px !important;
}

/* line 629, ../sass/sass_style.scss */
footer {
  text-align: center;
  border-top: 1px solid #E5E5E5;
  background-color: #000;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 300;
}

/* line 641, ../sass/sass_style.scss */
#menu-footer-menu, #menu-footer-menu-spanish, #menu-footer-menu-french {
  padding-left: 0;
  margin: 20px auto;
}
/* line 644, ../sass/sass_style.scss */
#menu-footer-menu li, #menu-footer-menu-spanish li, #menu-footer-menu-french li {
  list-style: none;
  margin-right: 10px;
  text-align: right;
}
/* line 648, ../sass/sass_style.scss */
#menu-footer-menu li a, #menu-footer-menu-spanish li a, #menu-footer-menu-french li a {
  font-family: "Roboto Condensed", sans-serif !important;
  font-size: 30px;
  line-height: 2;
  text-transform: uppercase;
  font-weight: 300;
}

/* line 657, ../sass/sass_style.scss */
#text-15 .textwidget {
  text-align: right;
  font-size: 25px;
}

/* line 661, ../sass/sass_style.scss */
#text-14 {
  padding-top: 20px;
}

/*
	= Interior pages
*******************************************************************************************/
/* line 669, ../sass/sass_style.scss */
.current_page_item {
  background-color: #00647D;
}
/* line 671, ../sass/sass_style.scss */
.current_page_item a {
  color: #FFF !important;
  text-decoration: none !important;
}

/* line 676, ../sass/sass_style.scss */
.page-title {
  font-size: 40px !important;
  /*background-color: $green;*/
  padding: 10px !important;
}

/* line 681, ../sass/sass_style.scss */
.maincontent.lower {
  padding-bottom: 50px;
}

/* line 684, ../sass/sass_style.scss */
.container-normal .row.maincontent {
  background-color: #FFF;
  padding-bottom: 50px;
  padding-top: 50px;
}

/* line 690, ../sass/sass_style.scss */
#breadcrumbs {
  list-style: none;
  margin: 10px 0;
  overflow: hidden;
}
/* line 694, ../sass/sass_style.scss */
#breadcrumbs li {
  float: left;
  margin-right: 15px;
}
/* line 698, ../sass/sass_style.scss */
#breadcrumbs .separator {
  font-weight: 700;
  font-size: 20px;
  color: #999;
}

/* About */
/* line 707, ../sass/sass_style.scss */
.submenu {
  background-color: #00F087;
}
/* line 709, ../sass/sass_style.scss */
.submenu ul {
  list-style: none;
  margin: 10px auto;
  text-align: center;
  padding-left: 0;
}
/* line 714, ../sass/sass_style.scss */
.submenu ul li {
  display: inline-block;
  padding: 0 3%;
}
/* line 717, ../sass/sass_style.scss */
.submenu ul li a {
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
  padding: 10px 0;
  line-height: 30px;
}
/* line 722, ../sass/sass_style.scss */
.submenu ul li a:hover {
  background-color: #00F087;
  color: #00647D !important;
}

/* line 731, ../sass/sass_style.scss */
.aboutcontent h3.about-title {
  margin-top: 40px;
}
/* line 733, ../sass/sass_style.scss */
.aboutcontent h3.about-title span {
  background-color: #00F087;
  padding: 5px;
}
/* line 738, ../sass/sass_style.scss */
.aboutcontent .toplink {
  text-align: right;
}
/* line 740, ../sass/sass_style.scss */
.aboutcontent .toplink a {
  color: #00F087;
}
/* line 744, ../sass/sass_style.scss */
.aboutcontent .fa-file-pdf-o {
  color: #00647D;
}

/* News */
/* line 751, ../sass/sass_style.scss */
.date {
  font-family: "Merriweather", sans-serif !important;
  display: inline-block;
  padding: 0 5px;
  margin-bottom: 0;
  font-size: 12px;
}
/* line 757, ../sass/sass_style.scss */
.date.chrd {
  background-color: #00647D;
  color: #FFF;
}
/* line 761, ../sass/sass_style.scss */
.date.members {
  background-color: #6ED2F0;
  color: #000;
}
/* line 765, ../sass/sass_style.scss */
.date.external {
  background-color: #969696;
  color: #FFF;
}
/* line 769, ../sass/sass_style.scss */
.date span {
  font-style: italic;
}

/* line 773, ../sass/sass_style.scss */
#text_icl-2 {
  display: none;
}

/* line 777, ../sass/sass_style.scss */
.newscontent {
  padding-top: 40px;
}
/* line 780, ../sass/sass_style.scss */
.newscontent h2 {
  margin: 0px 0px 10px 0px;
  text-transform: none;
  text-align: left;
}
/* line 784, ../sass/sass_style.scss */
.newscontent h2 a {
  color: #000;
  font-size: 23px;
  font-weight: bold;
}
/* line 791, ../sass/sass_style.scss */
.newscontent a.read-more span.more {
  color: #000;
  font-size: 13px;
}
/* line 795, ../sass/sass_style.scss */
.newscontent .a2a_dd {
  display: none;
}

/* Single News */
/* line 802, ../sass/sass_style.scss */
.addtoany_content_top {
  text-align: right;
  color: blue;
}

/* line 807, ../sass/sass_style.scss */
.page-title.news {
  background-color: #6ED2F0;
  color: #FFF;
  font-family: "Merriweather", sans-serif;
  text-transform: none;
  padding: 20px 5px;
}

/* line 817, ../sass/sass_style.scss */
.postmetadata {
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
  border-top: 2px solid #333;
  padding-top: 20px;
  margin-top: 20px;
}
/* line 823, ../sass/sass_style.scss */
.postmetadata a {
  color: #00647D;
}

/* Our Work */
/* line 829, ../sass/sass_style.scss */
.our-work-subpage {
  margin-top: 50px;
}
/* line 831, ../sass/sass_style.scss */
.our-work-subpage h3 {
  background-color: #6ED2F0;
  padding: 30px 10px;
  display: block;
  margin: 0 0 30px 0;
}
/* line 836, ../sass/sass_style.scss */
.our-work-subpage h3 a {
  color: #FFF;
}
/* line 840, ../sass/sass_style.scss */
.our-work-subpage p.excerpt {
  background-color: #00647D;
  color: #FFF;
  padding: 10px;
}
/* line 845, ../sass/sass_style.scss */
.our-work-subpage a.plus-link {
  padding: 0;
}

/* Our Work Child Page */
/* line 851, ../sass/sass_style.scss */
.ourwork-top {
  position: relative;
  text-align: center;
}
/* line 854, ../sass/sass_style.scss */
.ourwork-top .title-wrapper {
  left: 40%;
  bottom: 5%;
  margin-top: -120px;
  text-align: center;
}
/* line 859, ../sass/sass_style.scss */
.ourwork-top .title-wrapper .page-title {
  display: inline-block;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: bold;
  padding: 5px;
  color: #00647D;
}

/* line 870, ../sass/sass_style.scss */
.ourwork-child .entry {
  margin-top: 50px;
  padding: 0 5%;
}
/* line 874, ../sass/sass_style.scss */
.ourwork-child .resources-by-page {
  padding: 0 5%;
}
/* line 876, ../sass/sass_style.scss */
.ourwork-child .resources-by-page li {
  color: #000;
}

/* line 882, ../sass/sass_style.scss */
.maincontent.lower .slider-ourwork-child {
  padding: 0 5%;
}
/* line 884, ../sass/sass_style.scss */
.maincontent.lower .slider-ourwork-child ul {
  list-style: none;
}
/* line 887, ../sass/sass_style.scss */
.maincontent.lower .slider-ourwork-child .flexslider {
  border: none;
}
/* line 890, ../sass/sass_style.scss */
.maincontent.lower .slider-ourwork-child .flex-control-nav {
  display: none;
}
/* line 893, ../sass/sass_style.scss */
.maincontent.lower .slider-ourwork-child h4 {
  font-size: 20px;
}
/* line 898, ../sass/sass_style.scss */
.maincontent.lower .slider-ourwork-child h5 {
  text-align: center;
  margin-top: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 20px;
}
/* line 905, ../sass/sass_style.scss */
.maincontent.lower .slider-ourwork-child .flex-direction-nav {
  position: absolute;
  bottom: 60px;
  right: -15px;
}
/* line 909, ../sass/sass_style.scss */
.maincontent.lower .slider-ourwork-child .flex-direction-nav .flex-next {
  left: 40px;
}
/* line 913, ../sass/sass_style.scss */
.maincontent.lower .slider-ourwork-child .flex-direction-nav .flex-prev, .maincontent.lower .slider-ourwork-child .flex-direction-nav .flex-next {
  opacity: 1 !important;
}

/* line 918, ../sass/sass_style.scss */
.maincontent.lower .slider-ourwork-child ul, ol {
  list-style: none;
  padding: 0 !important;
}

/* EWS page*/
/* line 927, ../sass/sass_style.scss */
.ews-page .maincontent.lower .page-title {
  font-size: 40px;
  display: block;
  margin: -60px 0;
  background-color: #F8FDFE;
  text-align: center;
}
/* line 934, ../sass/sass_style.scss */
.ews-page .maincontent.lower .entry {
  margin-top: 150px;
}
/* line 937, ../sass/sass_style.scss */
.ews-page .maincontent.lower .update {
  padding-bottom: 20px;
}
/* line 940, ../sass/sass_style.scss */
.ews-page .maincontent.lower .date {
  background-color: #00647D;
  color: #FFF;
  font-style: italic;
}
/* line 945, ../sass/sass_style.scss */
.ews-page .maincontent.lower .update-content {
  background-color: #F8FDFE;
}
/* line 949, ../sass/sass_style.scss */
.ews-page .maincontent.lower .resources_box a {
  color: #FFF;
}
/* line 954, ../sass/sass_style.scss */
.ews-page .row.news {
  /*.headline{
  	margin: 50px auto 0 auto;
  }*/
}

/*end of ews page*/
/* line 962, ../sass/sass_style.scss */
.news-content-home {
  word-wrap: break-word;
  max-width: 100%;
}

/*
	= Single EWS Project
*/
/* line 971, ../sass/sass_style.scss */
.single-project .postmetadata {
  display: none;
}

/*
	= EWS Updates

*/
/* line 980, ../sass/sass_style.scss */
.page-id-3871 .submenu, .page-id-3854 .submenu {
  display: none;
}
/* line 983, ../sass/sass_style.scss */
.page-id-3871 #right-content, .page-id-3871 #sidebar, .page-id-3854 #right-content, .page-id-3854 #sidebar {
  float: right;
}
/* line 986, ../sass/sass_style.scss */
.page-id-3871 .addtoany_share_save_container, .page-id-3854 .addtoany_share_save_container {
  display: none;
}
/* line 989, ../sass/sass_style.scss */
.page-id-3871 #secondary .searchandfilter h4, .page-id-3854 #secondary .searchandfilter h4 {
  margin-top: 0;
}
/* line 992, ../sass/sass_style.scss */
.page-id-3871 .searchandfilter > ul > li, .page-id-3854 .searchandfilter > ul > li {
  padding-bottom: 30px;
}

/* line 996, ../sass/sass_style.scss */
.updates-title {
  padding-left: 25px;
}

/* Single Resources */
/* line 1004, ../sass/sass_style.scss */
.single-resource .page-title {
  background-color: #00F087;
  color: #FFF;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif !important;
  font-size: 50px;
  margin-bottom: 50px;
}
/* line 1014, ../sass/sass_style.scss */
.single-resource .postmetadata {
  padding: 50px 0;
  display: none;
}
/* line 1018, ../sass/sass_style.scss */
.single-resource .resources_box.active-resource {
  background-color: #D9FDED;
}
/* line 1020, ../sass/sass_style.scss */
.single-resource .resources_box.active-resource h3 {
  background-color: transparent;
}
/* line 1023, ../sass/sass_style.scss */
.single-resource .resources_box.active-resource .about-title a {
  color: #80F7C3;
}

/* Take Action */
/* line 1030, ../sass/sass_style.scss */
.bg-green {
  background-color: #00F087;
  padding: 5% 0 0 0;
}
/* line 1033, ../sass/sass_style.scss */
.bg-green .subtitle {
  text-transform: uppercase;
  color: #00647D;
  font-size: 53px;
  font-weight: bold;
}

/* line 1040, ../sass/sass_style.scss */
.actiontitle {
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
  background-color: #00647D;
  color: #FFF;
  font-size: 23px;
  margin-bottom: 40px;
  padding: 10px;
}
/* line 1048, ../sass/sass_style.scss */
.actiontitle span {
  float: right;
}
/* line 1051, ../sass/sass_style.scss */
.actiontitle.open {
  background-color: #00F087;
  color: #00647D;
}

/* line 1056, ../sass/sass_style.scss */
.answer {
  margin-bottom: 30px;
}

/* line 1059, ../sass/sass_style.scss */
.page-id-2442 #title-1 {
  display: none;
}

/* Blog Page*/
/* line 1064, ../sass/sass_style.scss */
.addtoany_share_save {
  display: none !important;
}

/* line 1067, ../sass/sass_style.scss */
#topmenu.blogpage, .single-post #topmenu {
  background-color: #00647D;
}
/* line 1069, ../sass/sass_style.scss */
#topmenu.blogpage ul.slimmenu li a, .single-post #topmenu ul.slimmenu li a {
  color: #FFF;
}
/* line 1072, ../sass/sass_style.scss */
#topmenu.blogpage #top-search, .single-post #topmenu #top-search {
  color: #FFF;
}
/* line 1076, ../sass/sass_style.scss */
#topmenu.blogpage #lang_sel_list a.lang_sel_sel, .single-post #topmenu #lang_sel_list a.lang_sel_sel {
  background-color: #FFF !important;
  color: #00647D !important;
}
/* line 1080, ../sass/sass_style.scss */
#topmenu.blogpage #lang_sel_list ul, .single-post #topmenu #lang_sel_list ul {
  border: none;
}

/* line 1084, ../sass/sass_style.scss */
a.blogpage {
  display: none;
}

/* line 1087, ../sass/sass_style.scss */
.page-id-2397 #topright #lang_sel_list li a, .single-post #topright #lang_sel_list li a {
  color: #FFF !important;
}

/* line 1090, ../sass/sass_style.scss */
.page-id-2397 a.blogpage, .single-post a.blogpage {
  display: inline-block;
  background-color: #FFF;
  margin-left: 15px;
  padding: 2px;
  color: #00647D;
}
/* line 1096, ../sass/sass_style.scss */
.page-id-2397 a.blogpage:hover, .single-post a.blogpage:hover {
  background-color: #00F087;
  color: #00647D;
}

/* line 1105, ../sass/sass_style.scss */
#blogpage .maincontent.lower h3 {
  background-color: transparent;
}
/* line 1108, ../sass/sass_style.scss */
#blogpage .entry-title a {
  font-size: 27px;
  font-family: "Merriweather", sans-serif;
  font-weight: bold;
}
/* line 1113, ../sass/sass_style.scss */
#blogpage .meta {
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
  font-size: 12px;
}
/* line 1117, ../sass/sass_style.scss */
#blogpage .meta span.author {
  background-color: #00647D;
  color: #FFF;
  padding: 5px;
  margin-right: 10px;
}
/* line 1122, ../sass/sass_style.scss */
#blogpage .meta span.author a {
  color: #FFF;
}
/* line 1126, ../sass/sass_style.scss */
#blogpage .meta p {
  float: left;
  font-size: 11px;
}
/* line 1130, ../sass/sass_style.scss */
#blogpage .meta .addtoany_shortcode {
  float: right;
}
/* line 1134, ../sass/sass_style.scss */
#blogpage .entry-summary {
  font-family: "Merriweather", sans-serif;
  margin-top: 30px;
  color: #333;
  line-height: 2;
  border-bottom: 1px solid #00F087;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
/* line 1136, ../sass/sass_style.scss */
#blogpage .entry-summary p {
  font-family: "Merriweather", sans-serif;
}
/* line 1146, ../sass/sass_style.scss */
#blogpage .tags {
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
  font-size: 12px;
}
/* line 1150, ../sass/sass_style.scss */
#blogpage .tags p {
  font-size: 12px;
}
/* line 1153, ../sass/sass_style.scss */
#blogpage .tags .tag-list {
  list-style: none;
  padding-left: 0;
}
/* line 1156, ../sass/sass_style.scss */
#blogpage .tags .tag-list li {
  display: inline-block;
  background-color: #00647D;
  color: #FFF;
  padding: 5px;
  margin-right: 10px;
  font-size: 12px;
}
/* line 1163, ../sass/sass_style.scss */
#blogpage .tags .tag-list li span {
  color: #FFF;
  font-family: "Roboto Condensed", sans-serif !important;
}
/* line 1171, ../sass/sass_style.scss */
#blogpage .comments-section {
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
  font-size: 12px;
}
/* line 1177, ../sass/sass_style.scss */
#blogpage article {
  margin-bottom: 70px;
}

/*End Blog Page*/
/* single bog post */
/* line 1184, ../sass/sass_style.scss */
.single-post .meta {
  float: left;
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
  font-size: 12px;
}
/* line 1189, ../sass/sass_style.scss */
.single-post .meta span.author {
  background-color: #00647D;
  color: #FFF;
  padding: 5px;
  margin-right: 10px;
}
/* line 1194, ../sass/sass_style.scss */
.single-post .meta span.author a {
  color: #FFF;
}
/* line 1198, ../sass/sass_style.scss */
.single-post .meta p {
  float: left;
  font-size: 11px;
}
/* line 1205, ../sass/sass_style.scss */
.single-post .page-title {
  text-transform: none;
  font-family: "Merriweather", sans-serif;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
}
/* line 1212, ../sass/sass_style.scss */
.single-post .entry {
  border-bottom: solid 2px #00F087;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
/* line 1217, ../sass/sass_style.scss */
.single-post .tags-author.row, .single-post .navigation.row, .single-post .row.comments {
  border-bottom: 2px solid #00F087;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
/* line 1222, ../sass/sass_style.scss */
.single-post .tags {
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
}
/* line 1226, ../sass/sass_style.scss */
.single-post .tags .tag-list li {
  display: inline-block;
  background-color: #000;
  margin-right: 5px;
  padding: 5px;
}
/* line 1227, ../sass/sass_style.scss */
.single-post .tags .tag-list li span {
  color: #FFF;
}
/* line 1238, ../sass/sass_style.scss */
.single-post .author .display-name {
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
  color: #FFF;
  background-color: #000;
  color: #FFF;
  padding: 5px;
  display: inline-block;
  margin-bottom: 10px;
}
/* line 1249, ../sass/sass_style.scss */
.single-post .author .avatar img {
  border-radius: 50%;
}
/* line 1255, ../sass/sass_style.scss */
.single-post .navigation.row {
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
}
/* line 1258, ../sass/sass_style.scss */
.single-post .navigation.row span {
  background-color: #00F087;
  padding: 5px;
  font-size: 30px;
  display: block;
  margin-top: 10px;
}
/* line 1264, ../sass/sass_style.scss */
.single-post .navigation.row span a {
  color: #000;
}
/* line 1269, ../sass/sass_style.scss */
.single-post .comments {
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
}
/* line 1272, ../sass/sass_style.scss */
.single-post .comments .comment {
  border-left: 3px solid #00F087;
  margin-left: 10px;
  margin-top: 30px;
}
/* line 1277, ../sass/sass_style.scss */
.single-post .comments .comment .comments-author {
  background-color: #00F087;
  color: #FFF;
  padding: 5px;
  display: inline-block;
  margin-top: 0;
}
/* line 1284, ../sass/sass_style.scss */
.single-post .comments .comment p {
  padding-left: 10px;
}
/* line 1288, ../sass/sass_style.scss */
.single-post .comments h3#comments {
  display: none;
}
/* line 1291, ../sass/sass_style.scss */
.single-post .comments .commentlist {
  list-style: none;
}
/* line 1296, ../sass/sass_style.scss */
.single-post #respond h3 {
  background-color: transparent;
}
/* line 1299, ../sass/sass_style.scss */
.single-post #respond textarea {
  background-color: #D9FDED;
  border: none;
}
/* line 1303, ../sass/sass_style.scss */
.single-post #respond input[type=submit] {
  background-color: #00647D;
  color: #FFF;
  border: none;
  box-shadow: none;
}

/* line 1314, ../sass/sass_style.scss */
#blogpage #secondary, .single-post #secondary {
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
}
/* line 1317, ../sass/sass_style.scss */
#blogpage #secondary h3.widget-title, .single-post #secondary h3.widget-title {
  background-color: #00647D;
  color: #FFF;
  padding: 5px;
  display: block;
}
/* line 1324, ../sass/sass_style.scss */
#blogpage #secondary aside, .single-post #secondary aside {
  padding: 0;
}
/* line 1326, ../sass/sass_style.scss */
#blogpage #secondary #input_1_1, .single-post #secondary #input_1_1 {
  background-color: #00F087;
  border: none;
  box-shadow: none;
  color: #000;
  width: 100%;
}
/* line 1334, ../sass/sass_style.scss */
#blogpage #secondary #gform_submit_button_1, .single-post #secondary #gform_submit_button_1 {
  display: none;
}
/* line 1338, ../sass/sass_style.scss */
#blogpage #secondary #gform_wrapper_1 ::-webkit-input-placeholder, .single-post #secondary #gform_wrapper_1 ::-webkit-input-placeholder {
  color: black;
}
/* line 1342, ../sass/sass_style.scss */
#blogpage #secondary #gform_wrapper_1 :-moz-placeholder, .single-post #secondary #gform_wrapper_1 :-moz-placeholder {
  /* Firefox 18- */
  color: black;
}
/* line 1346, ../sass/sass_style.scss */
#blogpage #secondary #gform_wrapper_1 ::-moz-placeholder, .single-post #secondary #gform_wrapper_1 ::-moz-placeholder {
  /* Firefox 19+ */
  color: black;
}
/* line 1350, ../sass/sass_style.scss */
#blogpage #secondary #gform_wrapper_1 :-ms-input-placeholder, .single-post #secondary #gform_wrapper_1 :-ms-input-placeholder {
  color: black;
}
/* line 1354, ../sass/sass_style.scss */
#blogpage #secondary .fa-search, .single-post #secondary .fa-search {
  font-size: 20px;
}
/* line 1358, ../sass/sass_style.scss */
#blogpage form.search-form, .single-post form.search-form {
  width: 100%;
  background-color: #00647D;
  color: #FFF;
}
/* line 1362, ../sass/sass_style.scss */
#blogpage form.search-form input[type=search], .single-post form.search-form input[type=search] {
  background-color: #00647D;
  border: none;
  box-shadow: none;
  width: 100%;
  padding: 5px 0 0 5px;
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: normal;
}
/* line 1372, ../sass/sass_style.scss */
#blogpage form.search-form input[type=search] .fa-search, .single-post form.search-form input[type=search] .fa-search {
  font-size: 20px;
}
/* line 1377, ../sass/sass_style.scss */
#blogpage .gform_wrapper .top_label .gfield_label, .single-post .gform_wrapper .top_label .gfield_label {
  display: none;
}
/* line 1381, ../sass/sass_style.scss */
#blogpage #text-23 ul li, .single-post #text-23 ul li {
  display: inline-block;
  background-color: #00647D;
  padding: 5px;
  margin: 5px 0 0 5px;
}
/* line 1386, ../sass/sass_style.scss */
#blogpage #text-23 ul li a, .single-post #text-23 ul li a {
  color: #FFF;
}
/* line 1390, ../sass/sass_style.scss */
#blogpage #text-24 h3, .single-post #text-24 h3 {
  background-color: #00647D;
  color: #FFF;
  padding: 5px;
  display: block;
}
/* line 1395, ../sass/sass_style.scss */
#blogpage #text-24 h3 a, .single-post #text-24 h3 a {
  color: #FFF;
}
/* line 1396, ../sass/sass_style.scss */
#blogpage #text-24 h3 span, .single-post #text-24 h3 span {
  float: right;
  font-size: 14px;
  padding-top: 5px;
}
/* line 1403, ../sass/sass_style.scss */
#blogpage .tweet-footer, .single-post .tweet-footer {
  background-color: #00F087;
  padding: 5px;
}
/* line 1406, ../sass/sass_style.scss */
#blogpage .tweet-footer a, .single-post .tweet-footer a {
  color: #000;
  text-transform: none;
}

/*
	= our members */
/* line 1416, ../sass/sass_style.scss */
.acf-map {
  width: 92% !important;
  margin-right: 15px;
}

/* line 1421, ../sass/sass_style.scss */
.page-id-6125 .container-normal .row.maincontent, .page-id-7820 .container-normal .row.maincontent, .page-id-7824 .container-normal .row.maincontent {
  padding-top: 90px;
}
/* line 1424, ../sass/sass_style.scss */
.page-id-6125 .container-normal, .page-id-7820 .container-normal, .page-id-7824 .container-normal {
  margin-top: 30px;
}
/* line 1433, ../sass/sass_style.scss */
.page-id-6125 .green-bg, .page-id-7820 .green-bg, .page-id-7824 .green-bg {
  background-color: #D9FDED;
  overflow: hidden;
  padding: 10px;
  margin-bottom: 20px;
}
/* line 1439, ../sass/sass_style.scss */
.page-id-6125 .maincontent.lower .entry h4, .page-id-6125 .container-normal .entry h4, .page-id-7820 .maincontent.lower .entry h4, .page-id-7820 .container-normal .entry h4, .page-id-7824 .maincontent.lower .entry h4, .page-id-7824 .container-normal .entry h4 {
  background-color: transparent;
  color: #00647D;
  margin: 0;
}
/* line 1444, ../sass/sass_style.scss */
.page-id-6125 #filter, .page-id-7820 #filter, .page-id-7824 #filter {
  cursor: default;
}
/* line 1448, ../sass/sass_style.scss */
.page-id-6125 #filterby h4, .page-id-7820 #filterby h4, .page-id-7824 #filterby h4 {
  font-size: 25px;
  word-break: normal;
}
/* line 1452, ../sass/sass_style.scss */
.page-id-6125 #filterby form > ul, .page-id-7820 #filterby form > ul, .page-id-7824 #filterby form > ul {
  padding-left: 0;
}
/* line 1456, ../sass/sass_style.scss */
.page-id-6125 #filterby form > ul li li, .page-id-7820 #filterby form > ul li li, .page-id-7824 #filterby form > ul li li {
  border-bottom: 1px dotted #00647D;
}
/* line 1458, ../sass/sass_style.scss */
.page-id-6125 #filterby form > ul li li span, .page-id-7820 #filterby form > ul li li span, .page-id-7824 #filterby form > ul li li span {
  display: flex;
  align-items: center;
}
/* line 1464, ../sass/sass_style.scss */
.page-id-6125 .chevron, .page-id-7820 .chevron, .page-id-7824 .chevron {
  display: inline-block;
  float: right;
  margin-right: 15px;
  margin-bottom: 0;
  font-size: 25px;
  color: #00647D;
}
/* line 1472, ../sass/sass_style.scss */
.page-id-6125 .searchandfilter label, .page-id-7820 .searchandfilter label, .page-id-7824 .searchandfilter label {
  display: block;
}
/* line 1475, ../sass/sass_style.scss */
.page-id-6125 .searchandfilter li[data-sf-field-input-type=checkbox] label, .page-id-6125 .searchandfilter li[data-sf-field-input-type=radio] label, .page-id-6125 .searchandfilter li[data-sf-field-input-type=range-radio] label, .page-id-6125 .searchandfilter li[data-sf-field-input-type=range-checkbox] label, .page-id-7820 .searchandfilter li[data-sf-field-input-type=checkbox] label, .page-id-7820 .searchandfilter li[data-sf-field-input-type=radio] label, .page-id-7820 .searchandfilter li[data-sf-field-input-type=range-radio] label, .page-id-7820 .searchandfilter li[data-sf-field-input-type=range-checkbox] label, .page-id-7824 .searchandfilter li[data-sf-field-input-type=checkbox] label, .page-id-7824 .searchandfilter li[data-sf-field-input-type=radio] label, .page-id-7824 .searchandfilter li[data-sf-field-input-type=range-radio] label, .page-id-7824 .searchandfilter li[data-sf-field-input-type=range-checkbox] label {
  display: inline-block;
}
/* line 1478, ../sass/sass_style.scss */
.page-id-6125 .maincontent.lower .entry textarea, .page-id-6125 .maincontent.lower .entry input[type=text], .page-id-6125 .container-normal .entry textarea, .page-id-6125 .container-normal .entry input[type=text], .page-id-7820 .maincontent.lower .entry textarea, .page-id-7820 .maincontent.lower .entry input[type=text], .page-id-7820 .container-normal .entry textarea, .page-id-7820 .container-normal .entry input[type=text], .page-id-7824 .maincontent.lower .entry textarea, .page-id-7824 .maincontent.lower .entry input[type=text], .page-id-7824 .container-normal .entry textarea, .page-id-7824 .container-normal .entry input[type=text] {
  background-color: #FFF;
}
/* line 1481, ../sass/sass_style.scss */
.page-id-6125 .acf-map, .page-id-7820 .acf-map, .page-id-7824 .acf-map {
  position: absolute;
  top: 100px;
}
/* line 1485, ../sass/sass_style.scss */
.page-id-6125 .green-bg, .page-id-7820 .green-bg, .page-id-7824 .green-bg {
  margin-top: 430px;
}
/* line 1488, ../sass/sass_style.scss */
.page-id-6125 .sf-field-submit, .page-id-7820 .sf-field-submit, .page-id-7824 .sf-field-submit {
  width: 100%;
}
/* line 1490, ../sass/sass_style.scss */
.page-id-6125 .sf-field-submit input[type=submit], .page-id-7820 .sf-field-submit input[type=submit], .page-id-7824 .sf-field-submit input[type=submit] {
  width: 100%;
}
/* line 1492, ../sass/sass_style.scss */
.page-id-6125 .sf-field-submit input[type=submit]:hover, .page-id-7820 .sf-field-submit input[type=submit]:hover, .page-id-7824 .sf-field-submit input[type=submit]:hover {
  background-color: #00F087;
}
/* line 1497, ../sass/sass_style.scss */
.page-id-6125 .plus, .page-id-7820 .plus, .page-id-7824 .plus {
  padding-left: 5px;
}

/* line 1503, ../sass/sass_style.scss */
.single-member .postmetadata {
  display: none;
}
/* line 1507, ../sass/sass_style.scss */
.single-member #member-data span.blue {
  color: #00647D;
  font-weight: bold;
}
/* line 1508, ../sass/sass_style.scss */
.single-member #member-data p {
  margin-bottom: 0;
}
/* line 1510, ../sass/sass_style.scss */
.single-member .members-link {
  font-family: "Roboto Condensed", sans-serif !important;
}
/* line 1511, ../sass/sass_style.scss */
.single-member #member-data {
  background-color: #D9FDED;
  padding: 15px;
}

/* End of Our Member Map Page */
/* Sidebar

****************************************************/
/* line 1525, ../sass/sass_style.scss */
#secondary h3.widget-title {
  margin-top: 0;
  display: block;
}
/* line 1529, ../sass/sass_style.scss */
#secondary aside {
  padding: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
}
/* line 1533, ../sass/sass_style.scss */
#secondary aside ul {
  list-style: none;
  padding-left: 0;
}
/* line 1538, ../sass/sass_style.scss */
#secondary li {
  list-style: none;
}
/* line 1543, ../sass/sass_style.scss */
#secondary li.sf-field-search h4 {
  display: none;
}
/* line 1546, ../sass/sass_style.scss */
#secondary li.sf-field-search input[type=text] {
  text-transform: uppercase;
  color: #FFF;
  background-color: #6ED2F0;
  border: none;
  padding: 5px 10px;
  width: 100%;
}
/* line 1555, ../sass/sass_style.scss */
#secondary #text-17, #secondary #text16, #secondary #text-18, #secondary #text-13 {
  color: #969696;
}
/* line 1557, ../sass/sass_style.scss */
#secondary #text-17 a, #secondary #text16 a, #secondary #text-18 a, #secondary #text-13 a {
  color: #969696;
}
/* line 1560, ../sass/sass_style.scss */
#secondary #text-17 label, #secondary #text16 label, #secondary #text-18 label, #secondary #text-13 label {
  font-weight: normal;
}
/* line 1564, ../sass/sass_style.scss */
#secondary .searchandfilter h4 {
  background-color: #6ED2F0;
  color: #FFF;
  padding: 10px;
  margin: 30px 0px 20px 0px;
}
/* line 1571, ../sass/sass_style.scss */
#secondary ::-webkit-input-placeholder {
  color: white;
}
/* line 1575, ../sass/sass_style.scss */
#secondary :-moz-placeholder {
  /* Firefox 18- */
  color: white;
}
/* line 1579, ../sass/sass_style.scss */
#secondary ::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
}
/* line 1583, ../sass/sass_style.scss */
#secondary :-ms-input-placeholder {
  color: white;
}
/* line 1586, ../sass/sass_style.scss */
#secondary .chosen-container {
  max-width: 90%;
}
/* line 1589, ../sass/sass_style.scss */
#secondary .chosen-container-single .chosen-single {
  border: none;
}
/* line 1592, ../sass/sass_style.scss */
#secondary .chosen-container .chosen-results li.active-result.highlighted {
  background-color: #6ED2F0 !important;
}

/* Pagination
****************************************************/
/* line 1603, ../sass/sass_style.scss */
.navigation {
  margin-top: 42px;
  margin-top: 3rem;
  margin-bottom: 70px;
  margin-bottom: 5rem;
}
/* line 1608, ../sass/sass_style.scss */
.navigation li {
  display: inline;
}
/* line 1611, ../sass/sass_style.scss */
.navigation li a, .navigation li a:hover, .navigation li.active a, .navigation li.disabled {
  color: #333;
  text-decoration: none;
  background-color: #FFF;
  border-radius: 10px;
  cursor: pointer;
  padding: 12px;
  padding: 0.75rem;
  box-shadow: 1px 1px 1px #B6B6B6;
}
/* line 1621, ../sass/sass_style.scss */
.navigation li a:hover, .navigation li.active a {
  background-color: #333;
  color: #FFF;
}

/*
	= Home
*******************************************************************************************/
/* line 1632, ../sass/sass_style.scss */
.scroll-down {
  text-align: center;
  position: relative;
  margin-top: -100px;
  z-index: 999;
}
/* line 1637, ../sass/sass_style.scss */
.scroll-down a {
  color: #00647D;
  font-style: italic;
  font-family: "Merriweather", sans-serif;
}

/* line 1643, ../sass/sass_style.scss */
.mainpage .maincontent {
  background-color: #FFF;
}

/* line 1646, ../sass/sass_style.scss */
a.learnmore {
  color: #FFF;
  background-color: #333;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  margin-top: 20px;
}

/* line 1654, ../sass/sass_style.scss */
.flex-control-paging li a {
  text-indent: 0;
  background-color: transparent;
  border-radius: 0;
  width: auto;
  height: auto;
}

/* line 1661, ../sass/sass_style.scss */
.headline {
  left: 50%;
  margin: 80px auto 70px auto;
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 20px;
  color: #00647D;
  text-align: center;
  text-transform: uppercase;
}
/* line 1670, ../sass/sass_style.scss */
.headline a {
  color: #00647D;
}

/* line 1674, ../sass/sass_style.scss */
.section_name_bar {
  position: relative;
  font-size: 15px;
  margin: 10px;
  background-color: #00647D;
  color: #00647D;
  top: -2px;
}

/* line 1682, ../sass/sass_style.scss */
.fix {
  position: fixed;
  top: 0px;
  z-index: 9999;
  width: 100%;
  background-color: #FFF;
}

/* line 1689, ../sass/sass_style.scss */
.fix2 {
  position: fixed;
  top: 90px;
  z-index: 9999;
  width: 100%;
}

/* Our work */
/* line 1698, ../sass/sass_style.scss */
.our-work {
  /* EWS image fix */
}
/* line 1699, ../sass/sass_style.scss */
.our-work .subpage {
  position: relative;
  margin-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
}
/* line 1704, ../sass/sass_style.scss */
.our-work .subpage img {
  /*filter: gray;*/
  /* IE6-9 */
  /*filter: grayscale(1);*/
  /* Firefox 35+ */
  /*-webkit-filter: grayscale(1);*/
  /* Google Chrome, Safari 6+ & Opera 15+ */
  /*opacity: 0.9;*/
}
/* line 1711, ../sass/sass_style.scss */
.our-work .subpage .subpage-caption {
  position: absolute;
  bottom: 30px !important;
  left: 6%;
  margin-right: 6%;
  color: #00F087;
  padding: 10px;
  height: 60px;
  overflow: visible !important;
  -webkit-transition: height 1s;
  /* For Safari 3.1 to 6.0 */
  transition: height 1s;
}
/* line 1722, ../sass/sass_style.scss */
.our-work .subpage .subpage-caption h3 {
  margin: 0;
  padding: 10px 5px;
  background-color: #00F087;
  color: #FFF;
  font-size: 27px;
  display: block;
}
/* line 1731, ../sass/sass_style.scss */
.our-work .subpage .subpage-caption .subtitle {
  margin-top: 10px;
  background-color: #FFF;
  color: #00647D;
  padding: 5px 5px;
  font-weight: bold;
  display: none !important;
}
/* line 1740, ../sass/sass_style.scss */
.our-work .subpage:hover .subpage-caption {
  bottom: 30px;
  height: 120px;
}
/* line 1746, ../sass/sass_style.scss */
.our-work .subpage:hover img {
  filter: none;
  -webkit-filter: none;
  opacity: 1;
}
/* line 1754, ../sass/sass_style.scss */
.our-work #subpage-2609, .our-work #subpage-3170 {
  /* What's New Page */
}
/* line 1755, ../sass/sass_style.scss */
.our-work #subpage-2609 .subpage-caption h3, .our-work #subpage-3170 .subpage-caption h3 {
  color: #00F087;
  background-color: #FFF;
}
/* line 1761, ../sass/sass_style.scss */
.our-work #subpage-2421, .our-work #subpage-3211, .our-work #subpage-4240 {
  background-color: #F8FDFE;
  height: 263px;
}
/* line 1764, ../sass/sass_style.scss */
.our-work #subpage-2421 img, .our-work #subpage-3211 img, .our-work #subpage-4240 img {
  padding-top: 35px;
}
/* line 1768, ../sass/sass_style.scss */
.our-work #subpage-4240 {
  height: 253px;
}

/* end of our-work */
/* line 1775, ../sass/sass_style.scss */
.ews-title {
  position: relative;
}
/* line 1777, ../sass/sass_style.scss */
.ews-title h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: right;
  font-size: 34px;
  color: #FFF;
  background-color: #000;
  display: block;
  width: 100%;
  margin-bottom: 0;
  padding: 5%;
  text-transform: uppercase;
}

/* line 1793, ../sass/sass_style.scss */
.ews .image {
  background-color: #F8FDFE;
}
/* line 1796, ../sass/sass_style.scss */
.ews .home-blurb {
  text-transform: uppercase;
  color: #000;
  font-size: 20px;
  text-align: right;
  font-family: "Roboto Condensed", sans-serif !important;
  margin-right: -15px;
  font-weight: 700;
}

/* News Section */
/* line 1808, ../sass/sass_style.scss */
.bg-grey {
  background-color: #e9e3e3;
  padding-bottom: 50px;
  margin-top: 50px;
}
/* line 1812, ../sass/sass_style.scss */
.bg-grey .mainpage .maincontent {
  background-color: #e9e3e3;
}
/* line 1815, ../sass/sass_style.scss */
.bg-grey .date {
  font-family: "Merriweather", sans-serif;
  background-color: #6ED2F0;
  color: #FFF;
  padding: 5px;
  font-style: italic;
  font-weight: 300;
}
/* line 1818, ../sass/sass_style.scss */
.bg-grey h4 {
  color: #FFF;
  background-color: #00647D;
  padding: 10px;
  font-size: 32px;
  font-weight: 500;
  margin-top: 15px;
}
/* line 1825, ../sass/sass_style.scss */
.bg-grey h4 a {
  color: #FFF;
}

/* resources Section */
/* line 1833, ../sass/sass_style.scss */
.resources_box {
  background-color: #00F087;
  padding: 20px;
  margin-bottom: 25px;
}
/* line 1837, ../sass/sass_style.scss */
.resources_box h4, .resources_box h3 {
  color: #FFF;
  font-size: 30px !important;
  display: block;
  text-align: center;
  display: block;
  background-color: transparent !important;
}
/* line 1844, ../sass/sass_style.scss */
.resources_box h4 a, .resources_box h3 a {
  color: #FFF;
  display: block;
}
/* line 1850, ../sass/sass_style.scss */
.resources_box .hvr-fade {
  display: block !important;
}

/* Take Action  & Blog */
/* line 1854, ../sass/sass_style.scss */
.action-blog {
  padding-bottom: 50px;
}

/* line 1858, ../sass/sass_style.scss */
.line {
  width: 100%;
  height: 10px;
  margin: 0 0 30px 0px;
  background-color: #00647D;
}

/* line 1865, ../sass/sass_style.scss */
div.take-action h4 {
  font-size: 55px;
  font-weight: 700;
  color: #00647D;
  text-align: center;
  margin: 20px 0  0 5px;
}
/* line 1872, ../sass/sass_style.scss */
div.take-action .exc {
  color: #FFF;
  font-family: "Merriweather", sans-serif;
  padding: 5%;
  line-height: 20px;
}
/* line 1877, ../sass/sass_style.scss */
div.take-action .exc span {
  font-weight: bold;
  font-size: 20px;
}
/* line 1882, ../sass/sass_style.scss */
div.take-action .action-image {
  width: 50%;
}
/* line 1885, ../sass/sass_style.scss */
div.take-action .action-content {
  background-color: #00F087;
  width: 50%;
  height: 262px;
}

/* line 1892, ../sass/sass_style.scss */
div.latest-blog > p {
  font-family: "Merriweather", sans-serif;
  background-color: #6ED2F0;
  color: #FFF;
  padding: 5px;
  font-style: italic;
  font-weight: 300;
  display: inline;
}
/* line 1896, ../sass/sass_style.scss */
div.latest-blog h4 {
  color: #FFF;
  font-size: 25px;
  padding: 10px;
  background-color: #00F087;
  margin: 10px 15px;
}
/* line 1904, ../sass/sass_style.scss */
div.latest-blog span.more {
  color: #00F087;
}
/* line 1907, ../sass/sass_style.scss */
div.latest-blog .latestblog-content {
  width: 50%;
}
/* line 1909, ../sass/sass_style.scss */
div.latest-blog .latestblog-content > p.section-title {
  background-color: #00647D;
  padding: 0 10px;
  margin: 0 15px;
}
/* line 1913, ../sass/sass_style.scss */
div.latest-blog .latestblog-content > p.section-title a {
  font-family: "Merriweather", sans-serif;
  font-style: italic;
  color: #fff;
}
/* line 1918, ../sass/sass_style.scss */
div.latest-blog .latestblog-content > p.section-title span {
  font-weight: bold;
}
/* line 1922, ../sass/sass_style.scss */
div.latest-blog .latestblog-content > p.excerpt {
  padding: 10px;
  margin: 0 15px;
  line-height: 20px;
}
/* line 1928, ../sass/sass_style.scss */
div.latest-blog .latestblog-image {
  width: 50%;
}

/*
	=End of Home
*/
/*  MOOA's styles*/
/* line 1940, ../sass/sass_style.scss */
nav a:link {
  text-decoration: none;
  color: #002846;
}

/* line 1945, ../sass/sass_style.scss */
nav a:visited {
  text-decoration: none;
}

/* line 1949, ../sass/sass_style.scss */
nav a:hover {
  text-decoration: none;
}

/* line 1953, ../sass/sass_style.scss */
nav a:active {
  text-decoration: none;
}

/* line 1957, ../sass/sass_style.scss */
a:link {
  text-decoration: none;
}

/* line 1961, ../sass/sass_style.scss */
a:visited {
  text-decoration: none;
}

/* line 1965, ../sass/sass_style.scss */
a:hover {
  text-decoration: none;
}

/* line 1969, ../sass/sass_style.scss */
a:active {
  text-decoration: none;
}

/* line 1973, ../sass/sass_style.scss */
.text a:link {
  text-decoration: none;
  color: #eb008b;
  font-weight: 700;
}

/* line 1979, ../sass/sass_style.scss */
.text a:visited {
  text-decoration: none;
  color: #eb008b;
  font-weight: 700;
}

/* line 1985, ../sass/sass_style.scss */
.text a:hover {
  text-decoration: none;
  color: #00adee;
  font-weight: 700;
}

/* line 1991, ../sass/sass_style.scss */
.text a:active {
  text-decoration: none;
  color: #00adee;
  font-weight: 700;
}

/* line 1997, ../sass/sass_style.scss */
.icon a:link {
  text-decoration: none;
  color: #eb008b;
}

/* line 2002, ../sass/sass_style.scss */
.icon a:visited {
  text-decoration: none;
  color: #eb008b;
}

/* line 2007, ../sass/sass_style.scss */
.icon a:hover {
  text-decoration: none;
  color: #00adee;
}

/* line 2012, ../sass/sass_style.scss */
.icon a:active {
  text-decoration: none;
  color: #00adee;
}

/* line 2017, ../sass/sass_style.scss */
.highlight {
  background-color: #00adee;
  color: #FFF;
}

/* line 2022, ../sass/sass_style.scss */
.highlight_cover {
  background-color: #FFF;
}

/* line 2026, ../sass/sass_style.scss */
.highlight_magenta {
  background-color: #eb008b;
  color: #FFF;
}

/* line 2031, ../sass/sass_style.scss */
.anchor {
  display: block;
  position: relative;
  top: -190px;
  visibility: hidden;
}

/* line 2035, ../sass/sass_style.scss */
.text {
  position: relative;
  top: 160px;
  width: 770px;
  margin: 0 auto 270px auto;
}

/* line 2042, ../sass/sass_style.scss */
.text h1 {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  font-size: 25px;
  color: #00adee;
  text-align: left;
  text-transform: uppercase;
  margin-top: 42px;
}

/* line 2052, ../sass/sass_style.scss */
.text h2 {
  font-family: 'Merriweather';
  font-weight: 900;
  font-size: 18px;
  color: #000;
  text-align: left;
  line-height: 0%;
  margin-top: 40px;
}

/* line 2062, ../sass/sass_style.scss */
.text p {
  font-family: 'Merriweather';
  font-weight: 300;
  font-size: 18px;
  color: #000;
  text-align: left;
  line-height: 170%;
}

/* line 2071, ../sass/sass_style.scss */
.text li {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 150%;
  font-size: 18px;
  line-height: 170%;
}

/* line 2079, ../sass/sass_style.scss */
i {
  font-family: 'Merriweather';
}

/* line 2085, ../sass/sass_style.scss */
.index_header {
  position: relative;
  width: 100%;
  /*height: 100vh;*/
  text-align: center;
  background-position: top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-blend-mode: screen;
  background-color: #002846;
}

/* line 2098, ../sass/sass_style.scss */
.cover_image {
  background-color: rgba(0, 40, 70, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 2110, ../sass/sass_style.scss */
.index_header p {
  font-family: 'Merriweather';
  color: #FFF;
  font-size: 18px;
  font-weight: 300;
  line-height: 170%;
  margin-bottom: 107px;
  z-index: 0;
}

/*
	= Media Queries
*******************************************************************************************/
/* media queries for font sizes */
@media (min-width: 768px) {
  /* Tablet Portrait & Beyond */
  /* line 2127, ../sass/sass_style.scss */
  #topright {
    float: right;
    padding-top: 15px;
  }
  /* line 2130, ../sass/sass_style.scss */
  #topright #lang_sel_list li a {
    padding: 5px !important;
  }
  /* line 2133, ../sass/sass_style.scss */
  #topright #lang_sel_list li {
    margin-right: 5px !important;
  }

  /* line 2137, ../sass/sass_style.scss */
  ul.slimmenu {
    display: inline-block;
    text-align: right;
  }
  /* line 2141, ../sass/sass_style.scss */
  ul.slimmenu li a {
    padding: 8px 8px;
  }
  /* line 2144, ../sass/sass_style.scss */
  ul.slimmenu li > ul {
    left: -40px;
    text-align: left;
  }
  /* line 2147, ../sass/sass_style.scss */
  ul.slimmenu li > ul > li ul {
    left: 82%;
  }
  /* line 2151, ../sass/sass_style.scss */
  ul.slimmenu li ul.sub-menu {
    width: 260px;
  }
  /* line 2153, ../sass/sass_style.scss */
  ul.slimmenu li ul.sub-menu li a {
    width: 220px;
  }
  /* line 2157, ../sass/sass_style.scss */
  ul.slimmenu li .sub-collapser {
    display: none;
  }

  /* line 2162, ../sass/sass_style.scss */
  .resources_box {
    height: 200px;
    width: 100%;
  }

  /* line 2167, ../sass/sass_style.scss */
  .page-id-2391 #secondary, .page-id-2391 #right-content, .page-id-2401 #secondary, .page-id-2401 #right-content, .page-id-2403 #secondary, .page-id-2403 #right-content, .page-id-2405 #secondary, .page-id-2405 #right-content, .page-id-2436 #secondary, .page-id-2436 #right-content, .page-id-3743 #secondary, .page-id-3743 #right-content, .page-id-3753 #secondary, .page-id-3753 #right-content, .page-id-3757 #secondary, .page-id-3757 #right-content, .page-id-4218 #secondary, .page-id-4218 #right-content, .page-id-4222 #secondary, .page-id-4222 #right-content, .page-id-4220 #secondary, .page-id-4220 #right-content, .page-id-4224 #secondary, .page-id-4224 #right-content, .page-id-4650 #secondary, .page-id-4650 #right-content, .postid-5176 #secondary, .postid-5176 #right-content, .postid-6830 #secondary, .postid-6830 #right-content, .postid-6832 #secondary, .postid-6832 #right-content {
    float: right;
  }

  /* Tools & Guides Page */
  /* line 2173, ../sass/sass_style.scss */
  .postid-5176 .col-sm-9, .postid-6830 .col-sm-9, .postid-6832 .col-sm-9 {
    float: right;
  }
  /* line 2176, ../sass/sass_style.scss */
  .postid-5176 .other-resources, .postid-6830 .other-resources, .postid-6832 .other-resources {
    display: none !important;
  }

  /* line 2180, ../sass/sass_style.scss */
  .top-space {
    height: 20px;
  }

  /*
  = our members */
  /* line 2186, ../sass/sass_style.scss */
  .page-id-6125 .searchandfilter ul li, .page-id-7820 .searchandfilter ul li, .page-id-7824 .searchandfilter ul li {
    float: left;
    padding-right: 2px;
    width: 25%;
  }
  /* line 2190, ../sass/sass_style.scss */
  .page-id-6125 .searchandfilter ul li li, .page-id-7820 .searchandfilter ul li li, .page-id-7824 .searchandfilter ul li li {
    float: none;
    width: 100%;
  }
  /* line 2196, ../sass/sass_style.scss */
  .page-id-6125 #filterby, .page-id-7820 #filterby, .page-id-7824 #filterby {
    display: none;
  }
  /* line 2199, ../sass/sass_style.scss */
  .page-id-6125 .acf-map, .page-id-7820 .acf-map, .page-id-7824 .acf-map {
    position: absolute;
    top: 100px;
  }
  /* line 2203, ../sass/sass_style.scss */
  .page-id-6125 .green-bg, .page-id-7820 .green-bg, .page-id-7824 .green-bg {
    margin-top: 430px;
  }

  /* End of Our Member Map Page */
}
@media (min-width: 992px) {
  /* Tablet Landscape */
  /* line 2216, ../sass/sass_style.scss */
  .bg-grey .news-home-wrapper {
    position: relative;
    min-height: 505px;
  }
  /* line 2220, ../sass/sass_style.scss */
  .bg-grey .news-content-home {
    position: absolute;
    bottom: 0;
  }
  /* line 2223, ../sass/sass_style.scss */
  .bg-grey .news-content-home p {
    line-height: 25px;
  }

  /* line 2228, ../sass/sass_style.scss */
  .bg-green {
    padding-top: 90px;
  }
}
@media (min-width: 700px) {
  /* line 2233, ../sass/sass_style.scss */
  .container-normal {
    margin-top: 90px;
    /* making space for the fixed menu */
  }
}
/* ipad */
@media (min-width: 700px) and (max-width: 1199px) {
  /* line 2240, ../sass/sass_style.scss */
  .bg-grey .news-home-wrapper {
    min-height: 600px;
  }

  /* line 2244, ../sass/sass_style.scss */
  div.take-action .action-content {
    height: 216px;
  }
  /* line 2247, ../sass/sass_style.scss */
  div.take-action h4 {
    font-size: 38px;
  }

  /* line 2251, ../sass/sass_style.scss */
  div.latest-blog h4 {
    font-size: 19px;
    margin: 5px 15px;
  }

  /* line 2255, ../sass/sass_style.scss */
  .our-work .subpage .subpage-caption h3 {
    font-size: 19px;
  }

  /* line 2258, ../sass/sass_style.scss */
  .resources_box h4 {
    font-size: 31px;
  }
}
@media (min-width: 1200px) {
  /* Desktop */
  /* line 2263, ../sass/sass_style.scss */
  .news-home-wrapper {
    min-height: 505px;
  }

  /* line 2269, ../sass/sass_style.scss */
  .cover_text {
    left: 5%;
  }
}
@media (min-width: 1800px) {
  /* line 2276, ../sass/sass_style.scss */
  .cover_text {
    left: 20%;
  }
}
/* Smallest Views */
@media (max-width: 767px) {
  /* line 2284, ../sass/sass_style.scss */
  .mission {
    font-size: 7vw;
  }

  /* line 2287, ../sass/sass_style.scss */
  .cover_text {
    bottom: 15px;
  }

  /* line 2290, ../sass/sass_style.scss */
  .image_story {
    top: -85px;
    bottom: auto;
  }

  /* line 2294, ../sass/sass_style.scss */
  #story-show {
    padding: 0px !important;
    font-size: 20px;
  }

  /* line 2298, ../sass/sass_style.scss */
  .image_story .story p {
    font-size: 10px;
  }

  /* line 2301, ../sass/sass_style.scss */
  .home .logo {
    display: none;
  }

  /* line 2304, ../sass/sass_style.scss */
  .brand .col-md-7 {
    float: right;
  }

  /* line 2307, ../sass/sass_style.scss */
  .scroll-down {
    margin-top: 30px;
  }

  /* line 2310, ../sass/sass_style.scss */
  .logo-phone {
    text-align: center;
    margin-top: 15px;
  }

  /* line 2314, ../sass/sass_style.scss */
  .headline {
    font-size: 15px;
  }

  /* line 2317, ../sass/sass_style.scss */
  .bg-grey h4, .resources_box h4 {
    font-size: 23px;
  }

  /* line 2320, ../sass/sass_style.scss */
  .resources_box {
    width: 100%;
    margin-top: 15px;
  }

  /* line 2324, ../sass/sass_style.scss */
  div.take-action .action-image {
    width: 100%;
  }
  /* line 2325, ../sass/sass_style.scss */
  div.take-action .action-imagepull-left {
    float: none !important;
  }
  /* line 2329, ../sass/sass_style.scss */
  div.take-action .action-image img {
    display: block;
    margin: 0 auto;
  }

  /* line 2334, ../sass/sass_style.scss */
  div.take-action .action-content {
    width: 100%;
    display: block;
    height: auto !important;
  }
  /* line 2338, ../sass/sass_style.scss */
  div.take-action .action-content h4 {
    font-size: 40px;
  }

  /* line 2342, ../sass/sass_style.scss */
  div.latest-blog .latestblog-content, div.latest-blog .latestblog-image {
    width: 100%;
  }

  /* line 2345, ../sass/sass_style.scss */
  div.latest-blog .latestblog-image img {
    margin: 0 auto;
    display: block;
  }

  /* line 2349, ../sass/sass_style.scss */
  .bg_blue #footer p.exec {
    display: none;
  }

  /* line 2352, ../sass/sass_style.scss */
  #menu-footer-menu {
    padding-left: 0;
  }

  /* line 2355, ../sass/sass_style.scss */
  #menu-footer-menu li, #text-15 .textwidget {
    text-align: center;
  }

  /* line 2359, ../sass/sass_style.scss */
  .action-blog .pull-left {
    float: none !important;
  }

  /* line 2363, ../sass/sass_style.scss */
  .our-work .subpage .subpage-caption .subtitle {
    display: none;
  }

  /* line 2366, ../sass/sass_style.scss */
  .our-work .subpage .subpage-caption h3 {
    font-size: 20px;
  }

  /* line 2369, ../sass/sass_style.scss */
  #topright {
    float: right;
    margin-right: 15px;
  }

  /* line 2373, ../sass/sass_style.scss */
  #lang_sel_list {
    padding-right: 10px;
    padding-top: 5px;
  }

  /* line 2377, ../sass/sass_style.scss */
  #topmenu .form .search-field, #topmenu .form .fa-times {
    font-size: 25px;
  }

  /* line 2381, ../sass/sass_style.scss */
  .fix2.submenu ul li {
    padding: 0 1%;
  }
  /* line 2383, ../sass/sass_style.scss */
  .fix2.submenu ul li a {
    font-size: 12px;
  }

  /* line 2387, ../sass/sass_style.scss */
  .ews-page .maincontent.lower .page-title {
    font-size: 25px !important;
  }

  /*  EWS Updates */
  /* line 2392, ../sass/sass_style.scss */
  .page-id-3854 #right-content, .page-id-3854 #sidebar, .page-id-3871 #right-content, .page-id-3871 #sidebar {
    float: none;
  }

  /* line 2399, ../sass/sass_style.scss */
  .ourwork-top .page-title {
    font-size: 20px !important;
  }

  /* line 2403, ../sass/sass_style.scss */
  .maincontent.lower .slider-ourwork-child .flex-direction-nav {
    bottom: -25px;
    right: auto;
    left: -25px;
  }

  /* line 2408, ../sass/sass_style.scss */
  .bg-green .subtitle {
    font-size: 18px;
    margin: 15px 0;
  }

  /* line 2412, ../sass/sass_style.scss */
  .scroll-down {
    display: none;
  }
}
/* All views from phone until tablet on portrait . Stacking */
@media (max-width: 769px) {
  /* line 2418, ../sass/sass_style.scss */
  .container > .navbar-header, .navbar-toggle {
    background-color: #00647D;
  }
}
@media (min-width: 768px) and (max-width: 980px) {
  /* line 2427, ../sass/sass_style.scss */
  #story-show, .plus-link {
    padding: 15px !important;
  }

  /* line 2430, ../sass/sass_style.scss */
  .our-work #subpage-2421 {
    height: 164px;
  }

  /* line 2433, ../sass/sass_style.scss */
  .our-work .subpage .subpage-caption h3 {
    font-size: 18px;
  }

  /* line 2436, ../sass/sass_style.scss */
  .bg-grey h4 {
    font-size: 23px;
  }

  /* line 2439, ../sass/sass_style.scss */
  .resources_box h4 {
    font-size: 25px;
  }

  /* line 2442, ../sass/sass_style.scss */
  div.take-action h4 {
    font-size: 25px;
  }

  /* line 2445, ../sass/sass_style.scss */
  div.take-action .exc {
    font-size: 13px;
    line-height: 15px;
  }

  /* line 2449, ../sass/sass_style.scss */
  div.latest-blog .latestblog-content > p.excerpt {
    display: none;
  }

  /* line 2452, ../sass/sass_style.scss */
  div.latest-blog .latestblog-content > p.section-title a {
    font-size: 11px;
  }

  /* line 2455, ../sass/sass_style.scss */
  .our-work #subpage-2426 .subpage-caption {
    height: 75px;
  }

  /* line 2458, ../sass/sass_style.scss */
  .our-work .subpage .subpage-caption {
    height: 59px;
  }

  /* line 2461, ../sass/sass_style.scss */
  .resources_box h4 {
    font-size: 3vw;
  }

  /* line 2464, ../sass/sass_style.scss */
  .bg-green {
    padding-top: 125px;
  }

  /* line 2467, ../sass/sass_style.scss */
  .acf-map {
    width: 96% !important;
  }

  /* line 2470, ../sass/sass_style.scss */
  #filterby form > ul li li {
    border-bottom: none;
  }
}
@media (min-width: 1200px) {
  /* Title for 2 lines*/
  /* line 2480, ../sass/sass_style.scss */
  #subpage-3119 .subpage-caption, #subpage-3225 .subpage-caption, #subpage-3211 .subpage-caption, #subpage-4231 .subpage-caption, #subpage-4234 .subpage-caption, #subpage-2609 .subpage-caption, #subpage-6271 .subpage-caption, #subpage-3214 .subpage-caption, #subpage-6274 .subpage-caption, #subpage-4238 .subpage-caption, #subpage-2426 .subpage-caption {
    /* height: 90px; */
    -webkit-transition: height 1s;
    transition: height 1s;
  }
  /* line 2487, ../sass/sass_style.scss */
  #subpage-3119:hover .subpage-caption, #subpage-3225:hover .subpage-caption, #subpage-3211:hover .subpage-caption, #subpage-4231:hover .subpage-caption, #subpage-4234:hover .subpage-caption, #subpage-2609:hover .subpage-caption, #subpage-6271:hover .subpage-caption, #subpage-3214:hover .subpage-caption, #subpage-6274:hover .subpage-caption, #subpage-4238:hover .subpage-caption, #subpage-2426:hover .subpage-caption {
    bottom: 50px;
    height: 150px;
  }

  /* Title for 3 lines*/
  /* line 2497, ../sass/sass_style.scss */
  #subpage-4236 .subpage-caption {
    height: 110px;
    -webkit-transition: height 1s;
    transition: height 1s;
  }
  /* line 2504, ../sass/sass_style.scss */
  #subpage-4236:hover .subpage-caption {
    bottom: 50px;
    height: 175px;
  }

  /* Title for 3 lines subtitle and 2 in title */
  /* line 2513, ../sass/sass_style.scss */
  #subpage-3149 .subpage-caption, #subpage-3232 .subpage-caption {
    /* height: 90px; */
    -webkit-transition: height 1s;
    transition: height 1s;
  }
  /* line 2520, ../sass/sass_style.scss */
  #subpage-3149:hover .subpage-caption, #subpage-3232:hover .subpage-caption {
    bottom: 65px;
    height: 165px;
  }

  /* Title for 3 lines subtitle and 1 in title */
  /* line 2529, ../sass/sass_style.scss */
  #subpage-4230 .subpage-caption {
    height: 60px;
    -webkit-transition: height 1s;
    transition: height 1s;
  }
  /* line 2536, ../sass/sass_style.scss */
  #subpage-4230:hover .subpage-caption {
    bottom: 10px;
    height: 160px;
  }

  /*
  = our members */
  /* line 2546, ../sass/sass_style.scss */
  .page-id-6125 .searchandfilter ul li, .page-id-7820 .searchandfilter ul li, .page-id-7824 .searchandfilter ul li {
    float: left;
    padding-right: 15px;
  }
  /* line 2549, ../sass/sass_style.scss */
  .page-id-6125 .searchandfilter ul li li, .page-id-7820 .searchandfilter ul li li, .page-id-7824 .searchandfilter ul li li {
    float: none;
    padding: 0;
  }

  /* line 2556, ../sass/sass_style.scss */
  .acf-map {
    width: 97% !important;
  }

  /* line 2559, ../sass/sass_style.scss */
  #filterby form > ul li li {
    border-bottom: none;
  }

  /* End of Our Member Map Page */
}
