/* GLOBAL SETUP  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* CORNERS 
////////////////////////////////////////////////////////// */
/* TRANSITIONS  
////////////////////////////////////////////////////////// */
.fade-no {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
/* SHORTCUTS 
 ////////////////////////////////////////////////////////// */
/* FLEXBOX  ////////////////////////////////////////////////////////// */
.flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.display-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row | ltr;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .display-flex {
    display: block;
  }
}
.flex-item {
  -webkit-box-flex: 0 auto;
  -moz-box-flex: 0 auto;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}
@media screen and (max-width: 767px) {
  .flex-item {
    display: block;
  }
}
.ie10 .display-flex {
  display: inline-block;
  text-align: center;
}
.ie10 .flex-item {
  display: inline-block;
  padding: 0 30px;
  margin: 0 auto;
}
.ie9 .display-flex {
  display: inline-block;
  text-align: center;
}
.ie9 .flex-item {
  display: inline-block;
  padding: 0 30px;
  margin: 0 auto;
}
/* TEXT STYLES 
////////////////////////////////////////////////////////// */
.brandon {
  font-family: "brandon-grotesque", sans-serif;
}
.brandonT {
  font-family: 'BrandonT', sans-serif;
}
.brandonTI {
  font-family: 'BrandonTI', sans-serif;
}
.brandonTB {
  font-family: 'BrandonTB', sans-serif;
}
.bodyfont {
  font-family: 'BrandonT', sans-serif;
  font-weight: 400;
}
.headerfont {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
}
.buttonfont {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
}
.light {
  font-weight: 300;
}
.normal {
  font-weight: 400;
}
.bold {
  font-weight: 700;
}
.black {
  font-weight: 900;
}
body {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
}
input,
button,
select,
textarea {
  font-family: 'BrandonTB', sans-serif;
}
h1,
h2,
h4,
h5,
h6 {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-weight: 900;
}
p {
  font-family: 'BrandonT', sans-serif;
  font-weight: 400;
}
p strong {
  font-family: 'BrandonTB', sans-serif;
}
p .italic,
p em {
  font-family: 'BrandonTI', sans-serif;
  font-style: italic;
}
.content p {
  font-family: 'BrandonT', sans-serif;
  font-weight: 400;
}
blockquote {
  font-weight: 900;
}
.upper {
  text-transform: uppercase;
}
.noupper {
  text-transform: lowercase;
}
.nodeco {
  text-decoration: none;
}
/* SITE PADDING - sets container padding and column pads 
////////////////////////////////////////////////////////// */
.container {
  padding: 0;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
/* SITE STRUCTURE & CUSTOMIZATIONS  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
/* BODY/GLOBAL 
//////////////////////////////////////////////////////////////////  */
/* body background and text */
body {
  background-color: #FFF;
  color: #47545e;
  font-size: 16px;
  letter-spacing: 0.02em;
  position: relative;
}
/* links */
a {
  color: #00a6cf;
  text-decoration: none;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
a:focus,
a:active,
a:hover {
  color: #fddf41;
  -webkit-transition: all 0.125s linear;
  -moz-transition: all 0.125s linear;
  transition: all 0.125s linear;
  text-decoration: none;
}
a:focus img,
a:active img,
a:hover img {
  opacity: 1;
}
.btn {
  background: none;
  font-size: 0.8em;
  padding: 0.75em 3em;
  text-transform: uppercase;
  color: #00a6cf;
  border: 1px solid #00a6cf;
  *border: 0;
  box-shadow: none;
  text-shadow: none;
  height: auto;
  width: auto;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.btn:hover,
.btn:focus {
  background: none;
  color: #00a6cf;
  border: 1px solid #03cdff;
  -webkit-transition: all 0.125s linear;
  -moz-transition: all 0.125s linear;
  transition: all 0.125s linear;
}
.btn.btn--cyan {
  border-color: #00a6cf;
  background: #00a6cf;
  color: #FFF;
}
/* header */
header {
  background: #FFF;
  color: #353535;
}
/* content */
.content {
  background: #FFF;
  color: #47545e;
}
/* footer */
footer {
  background: #00a6cf;
  color: #FFF;
}
.container {
  background: none;
}
.container.wide {
  max-width: none;
  width: 100%;
}
.alignL {
  text-align: left;
}
.alignR {
  text-align: right;
}
.alignC {
  text-align: center;
}
.ie8 img {
  max-width: none;
  width: 100%;
}
.show {
  display: inline-block !important;
}
.table {
  display: table;
  margin: 0;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
}
.display-0 {
  display: none;
}
.bgprops {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
h1,
h2,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  line-height: 1em;
  font-family: "brandon-grotesque", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h1 {
  font-size: 2em;
}
.inside.page-home .mega {
  display: none;
}
.inside.page-home .hero:first-of-type {
  margin-top: 0;
}
/* HEADER 
H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H H       */
#snipe {
  background: #47545e;
  padding: 15px 0 11px;
  font-size: 16px;
  text-transform: uppercase;
  text-align: right;
  color: #FFF;
}
#snipe .left a {
  color: #fddf41;
}
#snipe .left a:hover {
  text-decoration: none;
  color: #00a6cf;
}
#snipe .visible-800 {
  display: none;
}
#snipe .visible-960 {
  display: none;
}
#snipe ul {
  margin: 0;
  padding: 0;
}
#snipe ul li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-left: 10px;
}
#snipe ul li a {
  color: #FFF;
}
#snipe ul li a:hover {
  text-decoration: none;
  color: #00a6cf;
}
#snipe ul li .fa {
  font-size: 1.4em;
}
#snipe .btn {
  font-size: 1.1em;
  padding: 5px 79px;
  font-weight: 700;
  margin-top: 5px;
}
#snipe .btn:hover,
#snipe .btn:focus {
  background: #00a6cf;
  border-color: #00a6cf;
  color: white;
}
@media screen and (max-width: 1080px) {
  #snipe {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  #snipe {
    font-size: 14px;
  }
  #snipe .visible-960 {
    display: block;
  }
}
@media screen and (max-width: 860px) {
  #snipe .visible-800 {
    display: block;
  }
  #snipe ul li .fa {
    font-size: 1.8em;
  }
  #snipe ul {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  #snipe .container {
    padding: 0 15px;
  }
}
@media screen and (max-width: 660px) {
  #snipe .left,
  #snipe .right {
    display: block;
    float: none;
  }
  #snipe .visible-xs {
    text-align: center;
  }
  #snipe ul {
    margin-top: 15px;
  }
}
@media screen and (max-width: 660px) {
  #snipe .left,
  #snipe .right {
    text-align: center;
  }
}
header {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
  padding: 40px 0 0;
  height: auto;
  color: #47545e;
  /* Mobile Button - - - - -  */
}
header.navbar {
  margin: 0;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  width: 100%;
  min-height: 165px;
}
header a.logo {
  float: left;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
@media screen and (max-width: 767px) {
  header a.logo {
    margin-left: 30px;
  }
}
header a.logo img {
  width: 158px;
  height: auto;
  margin-bottom: 40px;
}
header .navbar-toggle {
  background: none;
  position: relative;
  width: 30px;
  height: 25px;
  outline: none !important;
  cursor: pointer;
  border: 0;
  margin-top: 3px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
header .navbar-toggle:focus {
  outline: none !important;
}
header .navbar-toggle .icon-bar {
  width: 30px;
  height: 4px;
  margin: 0 !important;
  position: absolute;
  background: #00a6cf;
  left: 0;
  -webkit-transition: all 0.05s linear;
  -moz-transition: all 0.05s linear;
  transition: all 0.05s linear;
}
header .navbar-toggle .icon-bar:nth-child(2) {
  top: 0;
  opacity: 0;
}
header .navbar-toggle .icon-bar:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
header .navbar-toggle .icon-bar:nth-child(4) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
header .navbar-toggle .icon-bar:nth-child(5) {
  top: 18px;
  opacity: 0;
}
header .navbar-toggle.collapsed .icon-bar {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
header .navbar-toggle.collapsed .icon-bar:nth-child(2) {
  opacity: 1;
}
header .navbar-toggle.collapsed .icon-bar:nth-child(3) {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}
header .navbar-toggle.collapsed .icon-bar:nth-child(4) {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}
header .navbar-toggle.collapsed .icon-bar:nth-child(5) {
  opacity: 1;
}
header .navbar-toggle:hover {
  border: 0;
}
header .container nav.navbar-collapse {
  -webkit-font-smoothing: subpixel-antialiased;
  padding-left: 0;
  padding-right: 0px;
  text-align: right;
  float: right;
}
header .container nav ul.nav {
  text-align: center;
}
header .container nav .nav-pills > li {
  float: none;
  display: inline-block;
  text-align: center;
  margin: 27px 0 0;
  vertical-align: bottom;
}
header .container nav ul.nav.nav-pills {
  text-align: right;
  width: 100%;
}
header .container nav ul.nav.nav-pills > li > a {
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
  background: none;
  /*main nav bg color*/
  color: #47545e;
  /* main nav text color*/
  text-shadow: none;
  padding: 5px 10px;
  letter-spacing: 0.08em;
  margin: 0 5px 15px;
  font-size: 17px;
  font-weight: 900;
  display: inline-block;
  vertical-align: center;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-transform: uppercase;
  border: 1px solid #FFF;
  position: relative;
}
header .container nav ul.nav.nav-pills > li > a .caret {
  display: none;
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  header .container nav ul.nav.nav-pills > li > a {
    margin: 0 1px 15px;
    font-size: 11px;
  }
}
header .container nav ul.nav.nav-pills > li > a.donate {
  color: #b34440;
}
header .container nav ul.nav.nav-pills > li > a:after {
  content: "";
  display: block;
  width: 1px;
  height: 0px;
  background-color: #00a6cf;
  position: absolute;
  left: 50%;
  top: 30px;
  -webkit-transition: height 0.125s linear;
  -moz-transition: height 0.125s linear;
  transition: height 0.125s linear;
}
header .container nav ul.nav.nav-pills > li:hover > a,
header .container nav ul.nav.nav-pills > li:focus > a,
header .container nav ul.nav.nav-pills > li.active > a,
header .container nav ul.nav.nav-pills > li.current_page_parent > a,
header .container nav ul.nav.nav-pills > li.current-page-ancestor > a,
header .container nav ul.nav.nav-pills > li.show > a,
header .container nav ul.nav.nav-pills > li:active > a,
header .container nav ul.nav.nav-pills > li.active:hover > a,
header .container nav ul.nav.nav-pills > li.active:focus > a {
  -webkit-transition: all 0.125s linear;
  -moz-transition: all 0.125s linear;
  transition: all 0.125s linear;
  background: none;
  /*main nav bg hover*/
  color: #00a6cf;
  /*main nav text hover*/
  box-shadow: none;
  border: 1px solid #00a6cf;
}
@media screen and (max-width: 767px) {
  header .container nav ul.nav.nav-pills > li:hover > a,
  header .container nav ul.nav.nav-pills > li:focus > a,
  header .container nav ul.nav.nav-pills > li.active > a,
  header .container nav ul.nav.nav-pills > li.current_page_parent > a,
  header .container nav ul.nav.nav-pills > li.current-page-ancestor > a,
  header .container nav ul.nav.nav-pills > li.show > a,
  header .container nav ul.nav.nav-pills > li:active > a,
  header .container nav ul.nav.nav-pills > li.active:hover > a,
  header .container nav ul.nav.nav-pills > li.active:focus > a {
    border: none;
  }
}
header .container nav ul.nav.nav-pills > li.menu-item-32 a {
  color: #00a6cf;
}
header .container nav ul.nav.nav-pills > li.menu-item-32 a:hover {
  color: #00a6cf;
  /*main nav text hover*/
}
header .container nav ul.menu-type-main > li.has-children ul,
header .container nav ul.menu-type-main > li.has-children ul.menu-level-1 li {
  display: none;
}
header .container nav ul.menu-type-main > li.has-children.show ul,
header .container nav ul.menu-type-main > li.has-children.show ul.menu-level-1 li {
  display: block;
}
header .container nav ul.menu-type-main > li.has-children {
  position: relative;
}
header .container nav ul.menu-type-main > li.has-children.show > a {
  background: none;
  /*main nav background hover - typically the same as above */
  color: #00a6cf;
  /*main nav link hover - typically the same as above */
}
header .container nav ul.menu-type-main > li.has-children.show > a:after,
header .container nav ul.menu-type-main > li.has-children.show > a.active:after {
  content: "";
  height: 72px;
  -webkit-transition: height 0.125s linear;
  -moz-transition: height 0.125s linear;
  transition: height 0.125s linear;
}
header .container nav ul.menu-type-main > li.active a:after,
header .container nav ul.menu-type-main > li.current_page_parent a:after,
header .container nav ul.menu-type-main > li.current-page-ancestor a:after {
  content: "";
  height: 72px;
  -webkit-transition: height 0.125s linear;
  -moz-transition: height 0.125s linear;
  transition: height 0.125s linear;
}
.mega {
  display: none;
  position: relative;
  width: 100%;
  padding: 25px;
  text-align: center;
  background: #00a6cf;
  /*subnav background*/
  font-size: 20px;
  /*.post-template & {
		h4 {
			text-align: center;
		    font-size: 0.6em;
		    padding: 0 30px;
		    line-height: 2.2em;
		}
	}*/
}
.mega.show {
  display: block;
}
.mega.active {
  display: block;
}
.mega h4,
.mega ul {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  color: #FFF;
  letter-spacing: 0.12em;
}
.mega h4 {
  text-align: right;
  -webkit-transition: all 0.125s linear;
  -moz-transition: all 0.125s linear;
  transition: all 0.125s linear;
}
.mega h4 > a {
  color: #FFF;
  font-size: 1.5em;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.12em;
  font-weight: 900;
}
.mega h4 > a:hover,
.mega h4 > a:focus,
.mega h4 > a.active {
  color: #fddf41;
}
.single-post .mega h4 > a {
  font-size: 1em;
  text-align: center;
  padding: 0 10%;
}
.mega ul#menu-main-menu-2 {
  padding-left: 0;
}
.mega ul#menu-main-menu-2 > li > a {
  display: none;
}
.mega ul.sub-menu {
  padding: 5px 0 5px 30px;
  text-align: left;
  border-left: 1px solid #FFF;
  margin-left: 30px;
}
.mega ul.sub-menu li.menu-item ul {
  display: none;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .mega h4,
  .mega ul {
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    text-align: center;
    line-height: 1.5em;
  }
  .mega ul {
    margin-top: 15px;
  }
  .mega ul.sub-menu {
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .mega ul.sub-menu li.menu-item.current_page_item ul {
    display: block;
    opacity: 1;
    filter: g0l(opacity=100);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    height: auto;
    padding: 0px 0 10px;
  }
  .mega ul.sub-menu li.menu-item.current_page_item ul li {
    -webkit-transition: all 0.125s linear;
    -moz-transition: all 0.125s linear;
    transition: all 0.125s linear;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    filter: g0l(opacity=100);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .mega ul.sub-menu li.menu-item.current_page_item ul li:nth-child(even) {
    -webkit-transition-delay: 0.05s;
    -moz-transition-delay: 0.05s;
    transition-delay: 0.05s;
  }
  .mega ul.sub-menu li.menu-item.current_page_item ul li:nth-child(odd) {
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
}
.mega li {
  line-height: 1em;
  margin: 0;
  display: block;
}
.mega li.current-menu-item > a,
.mega li.current-menu-parent > a {
  text-decoration: none;
  color: #fddf41;
  /*subnav text hover*/
}
.mega li a {
  color: #FFF;
  /*subnav text */
  text-transform: uppercase;
  font-size: 0.7em;
}
.mega li a:hover,
.mega li a.active {
  text-decoration: none;
  color: #fddf41;
  /*subnav text hover*/
}
@media screen and (max-width: 767px) {
  .mega li a {
    line-height: 1em;
    padding-bottom: 10px;
    display: block;
  }
  .mega li ul.menu-level-2.active {
    display: block;
    opacity: 1;
    filter: g0l(opacity=100);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    height: auto;
    padding: 0px 0 10px;
  }
  .mega li ul.menu-level-2.active li {
    -webkit-transition: all 0.125s linear;
    -moz-transition: all 0.125s linear;
    transition: all 0.125s linear;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    filter: g0l(opacity=100);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .mega li ul.menu-level-2.active li:nth-child(even) {
    -webkit-transition-delay: 0.05s;
    -moz-transition-delay: 0.05s;
    transition-delay: 0.05s;
  }
  .mega li ul.menu-level-2.active li:nth-child(odd) {
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
}
@media screen and (max-width: 767px) {
  .mega ul.menu-level-1 .sub-menu li:last-of-type a {
    padding-bottom: 0;
  }
}
.mega .menu-level-2,
.mega ul.sub-menu li.menu-item ul {
  -webkit-transition: all 0.125s linear;
  -moz-transition: all 0.125s linear;
  transition: all 0.125s linear;
  display: none;
  opacity: 0;
  filter: g0l(opacity=0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 0;
  font-size: 0.8em;
  border: 0;
  margin: 0;
  padding: 0px;
  position: relative;
  /*
		&.active {
			.opacity(1);
			height:auto;
			padding: 0px 0 10px;
			
			li {
				.opacity(1);
				.translate(0px);
			}
		}
*/
}
.mega .menu-level-2 strong,
.mega ul.sub-menu li.menu-item ul strong {
  display: none;
}
.mega .menu-level-2 li,
.mega ul.sub-menu li.menu-item ul li {
  opacity: 0;
  filter: g0l(opacity=0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px);
  line-height: 1em;
}
.mega .menu-level-2 li a,
.mega ul.sub-menu li.menu-item ul li a {
  color: #47545e;
}
.mega .menu-level-2 li a:hover,
.mega ul.sub-menu li.menu-item ul li a:hover,
.mega .menu-level-2 li a.active,
.mega ul.sub-menu li.menu-item ul li a.active {
  color: #fddf41;
}
.mega #closeM {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 1.5em;
  color: #FFF;
}
.mega.active #closeM {
  display: none;
}
.inside .mega {
  display: block;
}
.events-template.inside .mega-menu,
.jobs-template.inside .mega-menu,
.post-template-single.inside .mega-menu,
.page-events-archive.inside .mega-menu,
.page-thank-you .mega-menu,
.page-privacy-policy .mega-menu,
.page-news-archive .mega-menu {
  display: none;
}
#menu-main-menu-3.visible-xs {
  display: none !important;
}
header .container nav ul.nav.nav-pills > li > a {
  padding: 5px 6px;
  margin: 0 3px 15px;
}
header .container nav ul.nav.nav-pills > li.menu-item-236 a {
  color: #00a6cf;
}
@media screen and (max-width: 1130px) and (min-width: 1019px) {
  header .container nav ul.nav.nav-pills > li > a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1018px) and (min-width: 993px) {
  header .container nav ul.nav.nav-pills > li > a {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) and (min-width: 840px) {
  header .container nav ul.nav.nav-pills > li > a {
    padding: 5px 4px;
    margin: 0 1px 15px;
    letter-spacing: 0.08em;
    font-size: 12px;
  }
}
@media screen and (max-width: 839px) and (min-width: 768px) {
  header .container nav ul.nav.nav-pills > li > a {
    padding: 5px 4px;
    margin: 0 1px 15px;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) {
  header .container nav.navbar-collapse {
    width: 100%;
    margin: 20px 0 0;
    background: #47545e;
  }
  header .navbar-toggle {
    position: absolute;
    top: 70px;
    right: 30px;
    margin-right: 0px;
    padding: 0;
    border: 0;
  }
  header .container nav ul.nav {
    background: #47545e;
    margin: 0;
    padding: 20px 0;
    float: none;
  }
  header .container nav ul.nav.nav-pills > li,
  header .container nav ul.nav.nav-pills > li.contact {
    float: none;
    display: block;
    width: 100%;
    margin: 0;
  }
  header .container nav ul.nav.nav-pills > li > a,
  header .container nav ul.nav.nav-pills > li.contact > a {
    text-align: center;
    background: none;
    /*main nav bg color*/
    color: #eee;
    /* main nav text color*/
    text-shadow: none;
    display: block;
    width: 100%;
    padding: 0px 0;
    margin: 20px auto;
    width: 90%;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: none;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    transition: all 0.25s linear;
  }
  header .container nav ul.nav.nav-pills > li > a:after,
  header .container nav ul.nav.nav-pills > li.contact > a:after {
    display: none !important;
  }
  header .container nav ul.nav.nav-pills > li > a.donate,
  header .container nav ul.nav.nav-pills > li.contact > a.donate {
    color: #00a6cf;
  }
  header .container nav ul.nav.nav-pills > li:hover > a,
  header .container nav ul.nav.nav-pills > li.contact:hover > a,
  header .container nav ul.nav.nav-pills > li:focus > a,
  header .container nav ul.nav.nav-pills > li.contact:focus > a,
  header .container nav ul.nav.nav-pills > li.active > a,
  header .container nav ul.nav.nav-pills > li.contact.active > a,
  header .container nav ul.nav.nav-pills > li:active > a,
  header .container nav ul.nav.nav-pills > li.contact:active > a,
  header .container nav ul.nav.nav-pills > li.active:hover > a,
  header .container nav ul.nav.nav-pills > li.contact.active:hover > a,
  header .container nav ul.nav.nav-pills > li.active:focus > a,
  header .container nav ul.nav.nav-pills > li.contact.active:focus > a {
    -webkit-transition: all 0.125s linear;
    -moz-transition: all 0.125s linear;
    transition: all 0.125s linear;
    background: none;
    /*main nav bg hover*/
    color: #fddf41;
    /*main nav text hover*/
    box-shadow: none;
    border: none;
  }
  header .container nav.navbar-collapse.in ul.nav.nav-pills > li {
    opacity: 1;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    transition: all 0.1s linear;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  header .container nav.navbar-collapse.in ul.nav.nav-pills > li:nth-child(1) {
    -webkit-transition-delay: 0.05s;
    -moz-transition-delay: 0.05s;
    transition-delay: 0.05s;
  }
  header .container nav.navbar-collapse.in ul.nav.nav-pills > li:nth-child(2) {
    -webkit-transition-delay: 0.075s;
    -moz-transition-delay: 0.075s;
    transition-delay: 0.075s;
  }
  header .container nav.navbar-collapse.in ul.nav.nav-pills > li:nth-child(3) {
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  header .container nav.navbar-collapse.in ul.nav.nav-pills > li:nth-child(4) {
    -webkit-transition-delay: 0.125s;
    -moz-transition-delay: 0.125s;
    transition-delay: 0.125s;
  }
  header .container nav.navbar-collapse.in ul.nav.nav-pills > li:nth-child(5) {
    -webkit-transition-delay: 0.15s;
    -moz-transition-delay: 0.15s;
    transition-delay: 0.15s;
  }
  header .container nav.navbar-collapse.in ul.nav.nav-pills > li:nth-child(6) {
    -webkit-transition-delay: 0.175s;
    -moz-transition-delay: 0.175s;
    transition-delay: 0.175s;
  }
  header .container nav.navbar-collapse.in ul.nav.nav-pills > li:nth-child(7) {
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  header .container nav ul.menu-type-main > li.has-children {
    position: relative;
  }
  header .container nav ul.menu-type-main > li.has-children.show > a {
    background: #00a6cf;
    /*main nav background hover - typically the same as above */
    color: #47545e;
    /*main nav link hover - typically the same as above */
  }
  header .container nav ul.menu-type-main > li.has-children ul.menu-level-1 {
    display: none;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    z-index: 101;
    padding: 15px 15px 5px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  header .container nav ul.menu-type-main > li.has-children ul.menu-level-1 li {
    line-height: 1em;
    margin: 0 0 10px;
    display: block;
    width: 100%;
  }
  header .container nav ul.menu-type-main > li.has-children ul.menu-level-1 li a {
    color: #47545e;
    /*subnav text */
    background: #ddd;
    /*subnav background*/
  }
  header .container nav ul.menu-type-main > li.has-children ul.menu-level-1 li a:hover {
    color: #00a6cf;
    /*subnav text hover*/
  }
  header .container nav ul.menu-type-main > li.has-children ul.menu-level-1 li.up-arrow {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header.navbar {
    padding: 30px 0 0;
    min-height: 145px;
  }
  header .container {
    padding: 0 !important;
  }
  header .container nav.navbar-collapse {
    margin: 0px 0 0;
  }
  header .navbar-toggle {
    top: 60px;
  }
}
/* EMAIL GRAB MODAL 
ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss      */
#email-grab-modal .modal-header {
  background-image: url(../images/Survivors-Celebrate-Freedom.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 200px;
}
#email-grab-modal .modal-body {
  text-align: center;
}
#email-grab-modal .modal-body h1 {
  margin: 0.5em 0;
}
#email-grab-modal .modal-body p {
  margin-bottom: 0;
  padding-bottom: 0;
}
#email-grab-modal .modal-footer {
  padding: 0;
  border-top: none;
}
#email-grab-modal a.dismiss {
  padding: 5px 10px 10px;
  cursor: pointer;
  display: block;
}
#email-grab-modal #thank-you-free-odd {
  display: none !important;
}
.modal-content {
  width: 100%;
}
.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 50%;
  height: 630px;
  margin-top: -315px;
}
/*REPORT TIP	 
ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss      */
@media (min-width: 768px) {
  #tipModal .modal-dialog {
    width: 660px;
  }
}
a.tip-modal {
  cursor: pointer;
}
/* SLIDESHOWS 
ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss      */
.hero {
  position: relative;
  width: 100%;
  font-size: 14px;
  /*
	&.first {
		-webkit-filter: brightness(60%) ;
		filter: brightness(60%) ;
	}
*/
}
.hero .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.hero video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.hero small a {
  color: #47545e;
}
@media screen and (max-width: 767px) {
  .hero small a {
    color: white;
  }
}
@media screen and (max-width: 1199px) {
}
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 767px) {
  .hero.container.thirds {
    padding: 15px;
  }
}
.hero .col,
.hero .hero_image,
.hero .hero_image ul li {
  height: 50vw;
  padding-top: 0px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .hero .col,
  .hero .hero_image,
  .hero .hero_image ul li {
    height: 74vw;
  }
}
@media screen and (max-width: 767px) {
  .hero .col,
  .hero .hero_image,
  .hero .hero_image ul li {
    height: 120vw;
  }
}
@media screen and (max-width: 650px) {
  .hero .col,
  .hero .hero_image,
  .hero .hero_image ul li {
    height: 140vw;
  }
}
@media screen and (max-width: 580px) {
  .hero .col,
  .hero .hero_image,
  .hero .hero_image ul li {
    height: 140vw;
  }
}
@media screen and (max-width: 400px) {
  .hero .col,
  .hero .hero_image,
  .hero .hero_image ul li {
    height: 175vw;
  }
}
@media screen and (max-width: 767px) {
  .hero.last .col,
  .hero.last .hero_image,
  .hero.last .hero_image ul li {
    height: 50vw;
  }
}
.hero .hero_image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  background-color: #596772;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.hero .hero_image ul {
  width: 100%;
}
.hero .hero_image li {
  width: 100%;
  display: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .hero .hero_image {
    background-position: 58% center;
  }
}
.hero .hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(71, 85, 95, 0);
}
@media screen and (max-width: 767px) {
  .hero .hero_overlay {
    background: rgba(71, 85, 95, 0.4);
  }
}
.hero .col {
  position: relative;
  z-index: 2;
}
.hero article {
  width: 50%;
  float: left;
}
@media screen and (max-width: 580px) {
  .hero article {
    width: 70%;
    padding-bottom: 10%;
  }
  .hero .table-cell {
    vertical-align: bottom;
  }
}
.hero h1 {
  font-size: 2.2vw;
  color: #47545e;
  font-weight: 300;
}
.hero h1 strong {
  font-weight: 700;
}
.hero h1.blue {
  color: #47545e;
}
@media screen and (min-width: 1580px) {
  .hero h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 992px) {
  .hero h1 {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 767px) {
  .hero h1 {
    color: white;
  }
}
@media screen and (max-width: 580px) {
  .hero h1 {
    font-size: 22px;
  }
}
.hero .btn {
  border-color: #fddf41;
  background: #fddf41;
  color: #47545e;
  font-size: 1em;
  padding: 1em 2.5em;
  width: 300px;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .hero .btn {
    font-size: 0.9em;
    padding: 0.75em 2em;
    margin: 15px 5px 0;
  }
}
@media screen and (max-width: 992px) {
  .hero .btn {
    font-size: 1.1em;
    padding: 0.95em 2.5em;
    margin: 5px 5px 0;
  }
}
@media screen and (max-width: 580px) {
  .hero .btn {
    font-size: 0.9em;
    padding: 0.75em 1.5em;
    margin: 5px 3px 0;
  }
}
.hero .btn.btn--cyan {
  border-color: #00a6cf;
  background: #00a6cf;
  color: #FFF;
}
.hero .col.one_third {
  height: 23vw;
  max-height: 375px;
  margin-top: 15px;
  padding: 15px 30px;
  font-size: 0.85em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.hero .col.one_third h2 {
  margin-top: 15px;
}
.hero .col.one_third.last h2 {
  color: #FFF;
}
@media screen and (max-width: 992px) {
  .hero .col.one_third {
    padding: 15px;
  }
}
@media screen and (max-width: 767px) {
  .hero .col.one_third {
    height: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .hero .visible-xs {
    display: inline-block !important;
  }
}
.inside .hero:first-of-type,
.page-id-172 .hero:first-of-type {
  margin-top: 3.5vw;
}
.inside .hero .block,
.page-id-172 .hero .block {
  background-color: #fddf41;
}
.inside .hero .col,
.page-id-172 .hero .col {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 40vw;
}
@media screen and (max-width: 992px) {
  .inside .hero .col,
  .page-id-172 .hero .col {
    height: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .inside .hero .col.block,
  .page-id-172 .hero .col.block {
    height: auto;
  }
  .inside .hero .col.blocktext,
  .page-id-172 .hero .col.blocktext {
    height: auto;
    padding: 40px 0;
  }
}
.inside .hero .col blockquote,
.page-id-172 .hero .col blockquote {
  padding: 0 30px;
  margin: 0;
  border: 0;
  color: #47545e;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .inside .hero .col blockquote,
  .page-id-172 .hero .col blockquote {
    font-size: 1.25em;
  }
}
.inside .hero .col blockquote small,
.page-id-172 .hero .col blockquote small {
  color: #353535;
  font-size: 0.7em;
  margin-top: 10px;
}
.inside .hero .col blockquote small:before,
.page-id-172 .hero .col blockquote small:before {
  display: none;
}
.inside .hero.hero-2 .block,
.page-id-172 .hero.hero-2 .block {
  background-color: #00a6cf;
}
.inside .hero.hero-2 .col blockquote,
.page-id-172 .hero.hero-2 .col blockquote {
  color: #FFF;
}
.inside .hero.links,
.page-id-172 .hero.links {
  background: none;
  margin: 0px auto 70px;
  margin: 0 auto 5vw;
}
@media screen and (max-width: 767px) {
  .inside .hero.links,
  .page-id-172 .hero.links {
    margin: 0px auto 50px;
  }
}
.inside .hero .col.one_third,
.page-id-172 .hero .col.one_third {
  height: 20vw;
  max-height: 275px;
  margin: 0;
  background: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .inside .hero .col.one_third,
  .page-id-172 .hero .col.one_third {
    margin-bottom: 15px;
    height: 40vw;
    max-height: 275px;
  }
}
.inside .hero .col.one_third a.table-cell,
.page-id-172 .hero .col.one_third a.table-cell {
  cursor: pointer;
  width: 100%;
  background: #00a6cf;
  padding: 30px;
  color: #FFF;
}
.inside .hero .col.one_third a.table-cell:hover,
.page-id-172 .hero .col.one_third a.table-cell:hover,
.inside .hero .col.one_third a.table-cell:focus,
.page-id-172 .hero .col.one_third a.table-cell:focus {
  background: #03cdff;
}
.inside .hero .col.one_third.first a,
.page-id-172 .hero .col.one_third.first a {
  color: #fddf41;
  background: #47545e;
}
.inside .hero .col.one_third.first a:hover,
.page-id-172 .hero .col.one_third.first a:hover,
.inside .hero .col.one_third.first a:focus,
.page-id-172 .hero .col.one_third.first a:focus {
  background: #52616d;
}
.inside .hero .col.one_third.last a,
.page-id-172 .hero .col.one_third.last a {
  color: #47545e;
  background: #fddf41;
}
.inside .hero .col.one_third.last a:hover,
.page-id-172 .hero .col.one_third.last a:hover,
.inside .hero .col.one_third.last a:focus,
.page-id-172 .hero .col.one_third.last a:focus {
  background: #feec8d;
}
.inside .hero.bottom-links,
.page-id-172 .hero.bottom-links {
  background: 0;
}
@media screen and (max-width: 767px) {
  .inside .hero,
  .page-id-172 .hero {
    width: calc(100% - 60px);
  }
  .inside .hero:first-of-type,
  .page-id-172 .hero:first-of-type {
    margin-top: 30px;
  }
}
/*  HOME 
HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH      */
.page-home .inside {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .page-home .inside {
    margin-top: 15px;
  }
}
.page-home iframe {
  margin: 0 0 60px;
}
@media screen and (max-width: 640px) {
  .page-home iframe {
    width: 100% !important;
    height: 60vw !important;
  }
}
.page-home .mission p {
  margin: 30px 0 0;
}
.page-home .content.dark {
  background: #52616d;
}
.page-home .content.dark h2 {
  color: #fddf41;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
}
.page-home .content.dark h4 {
  color: #FFF;
}
.page-home .content.dark .btn {
  font-weight: 700;
}
.page-home .content.dark .box {
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
  background: #47545e;
  padding: 30px;
  display: table;
  float: left;
  width: 48%;
  height: 21vw;
  margin: 0 1%;
  font-size: 15px;
}
@media screen and (min-width: 1800px) {
  .page-home .content.dark .box {
    width: 46%;
    margin: 0 2%;
    font-size: 18px;
    height: 250px;
  }
}
@media screen and (max-width: 1199px) {
  .page-home .content.dark .box {
    font-size: 1.2vw;
    height: 26vw;
  }
}
@media screen and (max-width: 800px) {
  .page-home .content.dark .box {
    font-size: 18px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    float: none;
    width: 80%;
  }
  .page-home .content.dark .box .table-cell {
    display: block;
  }
}
@media screen and (max-width: 580px) {
  .page-home .content.dark .box {
    width: 100%;
  }
}
.page-home .content.dark .box h3 {
  color: #FFF;
  margin: 0 auto 15px;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.page-home .content.dark .box h4 {
  color: #fddf41;
  margin: 0;
}
.page-home .content.dark .box:hover,
.page-home .content.dark .box:focus {
  -webkit-transition: all 0.125s linear;
  -moz-transition: all 0.125s linear;
  transition: all 0.125s linear;
  background: #00a6cf;
}
.page-home .content.dark .box:hover h3,
.page-home .content.dark .box:focus h3 {
  color: #FFF;
  -webkit-transition: all 0.125s linear;
  -moz-transition: all 0.125s linear;
  transition: all 0.125s linear;
}
.page-home .content.dark .box:hover h4,
.page-home .content.dark .box:focus h4 {
  color: #fddf41;
}
.page-home .content h2 {
  font-size: 1.8vw;
  line-height: 1.4em;
  max-width: 68vw;
  margin: 0 auto 50px;
  font-weight: 300;
}
.page-home .content h2 strong {
  font-weight: 700;
}
@media screen and (min-width: 1580px) {
  .page-home .content h2 {
    font-size: 28px;
    max-width: 990px;
  }
}
@media screen and (max-width: 992px) {
  .page-home .content h2 {
    font-size: 2.85vw;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 800px) {
  .page-home .content h2 {
    font-size: 20px;
  }
}
.page-home .content.gray {
  background: #919191;
  color: #FFF;
}
.page-home .content.gray a {
  color: #FFF;
}
.page-home .content.gray a:hover {
  color: #00bae9;
}
.page-home .content.yellow {
  background: #fde35a;
  color: #47545e;
}
.page-home .content.yellow a {
  color: #47545e;
}
.page-home .content.yellow a:hover {
  color: #FFF;
}
.page-home .content.cyan {
  background: #00bae9;
  color: #47545e;
}
.page-home .content.cyan a {
  color: #47545e;
}
.page-home .content.cyan a:hover {
  color: #52616d;
}
.page-home .content.stripe {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: auto;
  padding: 100px 10%;
  font-size: 30px;
  text-align: center;
}
.page-home .content.stripe.gala {
  background-image: url();
}
/*  ICONS 
HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH      */
#stats {
  background-color: #69e1ff;
}
.stat {
  position: relative;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 30px;
  font-size: 18px;
}
@media screen and (max-width: 992px) {
  .stat {
    font-size: 18px;
  }
}
.stat h3 {
  position: relative;
  display: block;
  border: 0;
  width: 100%;
  text-align: center;
  padding: 0;
  font-size: 3.5em;
  color: #FFF;
  font-weight: 700;
  margin: 0 0 0.125em;
}
.stat h3 small {
  display: block;
  font-size: 0.3em;
  line-height: 1.1em;
  text-transform: uppercase;
}
.stat h3 small:first-of-type {
  font-weight: 700;
  margin: 0;
}
.stat h3 small:last-of-type {
  color: #47545e;
}
.stat img {
  max-width: 2.7em;
  margin: 0 auto 0px;
}
/*  CLIENTS 
HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH      */
#clients,
#clients li {
  margin-top: 15px;
  font-weight: 400;
  font-size: 14px;
}
#clients .slick-dots {
  display: none;
}
/*  GRID 
HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH      */
#grid {
  padding: 0;
}
@media screen and (max-width: 767px) {
  #grid .container {
    background: #f3f5f7;
  }
  #grid .container article,
  #grid .container article.alt {
    background: none;
  }
}
#grid article {
  height: 30vw;
  background: #FFF;
  display: table;
  margin: 0;
}
@media screen and (max-width: 992px) {
  #grid article {
    height: 50vw;
  }
}
@media screen and (max-width: 767px) {
  #grid article {
    width: 100%;
    height: auto;
  }
}
#grid article .title {
  display: table-cell;
  vertical-align: middle;
}
#grid article.image {
  background-color: #353535;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #grid article.image {
    height: 50vw;
    width: 90%;
    margin: 30px 5% 0;
  }
}
#grid article.copy.g2l {
  padding-left: 5% !important;
}
#grid article.copy.g2r {
  padding-right: 5% !important;
}
@media screen and (max-width: 767px) {
  #grid article.copy {
    padding: 30px 0;
  }
}
#grid article.alt {
  background: #ddd;
}
#grid article h2 {
  padding: 15px;
  font-size: 3.2vw;
  line-height: 1em;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  color: #FFF;
  margin: 0 auto;
  width: 60%;
}
@media screen and (max-width: 767px) {
  #grid article h2 {
    font-size: 30px;
  }
}
#grid article h3 {
  color: #353535;
  margin-top: 0;
  padding-top: 0;
}
#grid article p {
  color: #47545e;
}
#grid article .btn {
  background: #00a6cf;
  border-color: #00a6cf;
  color: #FFF;
  text-transform: uppercase;
}
/* SECTIONS 
==============================================================================================================================================================================================================================================================================================================================================================================================================================================================================      */
section {
  background-color: #FFF;
}
section h1,
section h2,
section h3 {
  color: #47545e;
  font-weight: 700;
  line-height: 1.1em;
  font-size: 3em;
}
section h1 {
  margin-bottom: 30px;
  font-size: 3em;
}
@media screen and (max-width: 767px) {
  section h1 {
    font-size: 2.75em;
  }
}
section h1:not(:first-of-type) {
  clear: both;
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  section h1:not(:first-of-type) {
    margin-top: 80px;
  }
}
section h2,
section h3 {
  font-size: 2.25em;
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  section h2,
  section h3 {
    font-size: 1.65em;
  }
}
section h3 {
  margin-bottom: 15px;
}
section h3.divider {
  margin-top: 0px;
  margin-bottom: 25px;
  color: #00a6cf;
  font-size: 2.75em;
}
section p {
  font-size: 1.15em;
  line-height: 1.75em;
  margin-bottom: 1.85em;
}
@media screen and (max-width: 767px) {
  section p {
    line-height: 1.5em;
  }
}
section p a {
  word-wrap: break-word;
  line-height: 1em;
}
section p.caption {
  font-size: 0.8em;
  font-style: italic;
  line-height: 1.5em;
  color: gray;
}
section .btn {
  margin: 15px 15px 0;
  color: #00a6cf;
  border-color: #00a6cf;
  display: inline-block;
}
section .btn:hover,
section .btn:focus {
  background-color: #03cdff;
  color: #FFF;
  border-color: #03cdff;
}
section .btn.two-lines {
  line-height: 0.8em;
}
section.content {
  padding: 5% 0;
}
section.content.alt {
  background-color: #f3f5f7;
  padding: 5% 10%;
}
section.content.dark {
  background-color: #47545e;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  section.content,
  section.content.alt {
    padding: 80px 30px;
  }
}
section .policy-archive {
  display: inline-block;
  background: #47545e;
  width: 48%;
  margin: 0 1% 2% 0;
  padding: 30px;
  min-height: 400px;
  vertical-align: top;
}
@media screen and (max-width: 600px) {
  section .policy-archive {
    display: block;
    width: 100%;
    margin: 0 0 2% 0;
    padding: 30px;
    min-height: auto;
  }
}
section .policy-archive h3 {
  color: white;
  font-size: 1.75em;
}
section .policy-archive a {
  position: relative;
  display: inline-block;
  color: #fddf41;
  margin-bottom: 10px;
}
section .policy-archive a i {
  position: absolute;
}
section .policy-archive a span {
  display: inline-block;
  padding-left: 20px;
  line-height: 1em;
}
section .policy-archive.enacted {
  width: 100%;
  margin-right: 0;
  min-height: auto;
}
section .policy-archive.enacted a {
  width: 48%;
  margin: 0 1% 10px 0;
}
@media screen and (max-width: 600px) {
  section .policy-archive.enacted a {
    width: 100%;
    margin: 0 0 10px;
  }
}
.signup {
  text-align: center;
}
.signup h4,
.signup a.btn {
  display: inline-block;
  vertical-align: middle;
  margin: 7.5px 15px;
}
.signup a.btn,
.inside .signup a.btn {
  background-color: #fddf41;
  color: #47545e;
  border: 0;
  margin: 7.5px 15px;
  font-size: 0.8em;
  max-width: none;
  display: inline-block;
  padding: 0.75em 3em 0.65em;
}
.signup a.btn:hover,
.inside .signup a.btn:hover,
.signup a.btn:focus,
.inside .signup a.btn:focus {
  background-color: #03cdff;
  color: #FFF;
  border: 0;
}
/*  CONTENT INSIDE
HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH      */
.container.aside {
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .container.aside {
    padding-left: 30px !important;
  }
}
@media screen and (min-width: 768px) {
  .container.aside .col-sm-10.col-md-push-1 {
    left: 16.66666667%;
  }
}
@media screen and (min-width: 993px) {
  .container.aside .col-sm-10.col-md-push-1 {
    left: 25%;
  }
}
aside.col-sm-2 {
  position: absolute;
  top: 0;
}
aside.col-sm-2.scrolling {
  position: fixed;
  top: 30px;
  -webkit-transition: all 0.125s linear;
  -moz-transition: all 0.125s linear;
  transition: all 0.125s linear;
}
.scrolling-end {
  bottom: 40px;
}
aside nav ul,
aside nav li {
  list-style: none;
  margin: 1em 0 1em;
  padding: 0;
}
aside nav li a {
  display: block;
  text-transform: uppercase;
  color: #47545e;
  line-height: 1em;
}
aside nav li a:hover,
aside nav li a:focus,
aside nav li a.active:hover {
  color: #00a6cf;
}
aside nav li a.active {
  color: #00a6cf;
}
aside nav li strong {
  font-size: 1.4em;
  text-transform: uppercase;
}
aside nav ul.archive-sub-menu {
  margin: 1em 0 0 1em;
}
@media screen and (max-width: 1199px) {
  aside nav ul li {
    margin: 0 0 0.85em;
  }
  aside nav ul li a {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 992px) {
  aside nav ul li {
    margin: 0 0 0.75em;
  }
  aside nav ul li a {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 767px) {
  aside {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-human-trafficking .content {
    padding: 30px;
  }
}
.page-identifying-survivors aside nav ul li a {
  color: #b34440;
  font-size: 1em;
  line-height: 1.2em;
  padding-right: 30px;
}
@media screen and (min-width: 993px) {
  .page-identifying-survivors aside nav ul li a {
    font-size: 1.25em;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 767px) {
  .page-identifying-survivors aside {
    display: block;
  }
}
.circle-stats img {
  width: 70%;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
  border: 3px solid #00a6cf;
}
.circle-stats h4 {
  font-size: 2em;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .circle-stats h4 {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .circle-stats h4 {
    font-size: 1em;
  }
}
.circle-stats .col {
  text-align: center;
}
.circle-stats ul,
.circle-stats li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .circle-stats ul {
    margin-bottom: 50px;
  }
}
.circle-stats li {
  background: #00a6cf;
  color: #FFF;
  margin-bottom: 1px;
  padding: 10px 30px;
}
.inside .content article,
.page-id-172 .content article {
  border-bottom: 1px solid #ccc;
  padding-bottom: 45px;
  margin-bottom: 75px;
}
.inside .content article:first-of-type,
.page-id-172 .content article:first-of-type,
.inside .content article.first,
.page-id-172 .content article.first {
  margin-top: 45px;
  border-top: 1px solid #ccc;
  padding-top: 45px;
}
.inside .content article:last-child,
.page-id-172 .content article:last-child {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .inside .content article,
  .page-id-172 .content article {
    padding-bottom: 25px;
    margin-bottom: 55px;
  }
  .inside .content article:first-of-type,
  .page-id-172 .content article:first-of-type {
    margin-top: 40px;
  }
}
.inside .content article ul,
.page-id-172 .content article ul,
.inside .content article ol,
.page-id-172 .content article ol {
  padding-left: 20px;
  margin-bottom: 30px;
}
.inside .content article ul.slides,
.page-id-172 .content article ul.slides {
  padding-left: 0;
  margin-bottom: 0;
}
.inside .content article ul.flex-direction-nav,
.page-id-172 .content article ul.flex-direction-nav {
  margin-bottom: 0;
}
.inside .content article ol.flex-control-nav,
.page-id-172 .content article ol.flex-control-nav {
  display: none;
}
.inside .content article#board .borad-of-directors ul,
.page-id-172 .content article#board .borad-of-directors ul {
  column-count: 2;
}
.inside .content article#board .borad-of-directors ul li,
.page-id-172 .content article#board .borad-of-directors ul li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
@media (max-width: 767.98px) {
  .inside .content article#board .borad-of-directors ul,
  .page-id-172 .content article#board .borad-of-directors ul {
    column-count: 1;
  }
}
.inside .content article#board ul li,
.page-id-172 .content article#board ul li {
  text-align: center;
  font-family: 'BrandonT', sans-serif;
  font-size: 1.15em;
  font-weight: 300;
  line-height: 1.15em;
  list-style: none;
  padding: 0 0 1.5em;
}
.inside .content article#board ul li small,
.page-id-172 .content article#board ul li small {
  color: #00a6cf;
  font-weight: 700;
}
.inside .content article#leadership .leadership-team ul,
.page-id-172 .content article#leadership .leadership-team ul {
  column-count: 2;
}
.inside .content article#leadership .leadership-team ul li,
.page-id-172 .content article#leadership .leadership-team ul li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
@media (max-width: 767.98px) {
  .inside .content article#leadership .leadership-team ul,
  .page-id-172 .content article#leadership .leadership-team ul {
    column-count: 1;
  }
}
.inside .content article#leadership ul li,
.page-id-172 .content article#leadership ul li {
  text-align: center;
  font-family: 'BrandonT', sans-serif;
  font-size: 1.15em;
  font-weight: 300;
  line-height: 1.15em;
  list-style: none;
  padding: 0 0 1.5em;
}
.inside .content article#leadership ul li small,
.page-id-172 .content article#leadership ul li small {
  font-weight: 700;
}
.inside .content article#administration .admin-team ul,
.page-id-172 .content article#administration .admin-team ul,
.inside .content article#legal-services .admin-team ul,
.page-id-172 .content article#legal-services .admin-team ul,
.inside .content article#empowerment-services .admin-team ul,
.page-id-172 .content article#empowerment-services .admin-team ul,
.inside .content article#administration .legal-team ul,
.page-id-172 .content article#administration .legal-team ul,
.inside .content article#legal-services .legal-team ul,
.page-id-172 .content article#legal-services .legal-team ul,
.inside .content article#empowerment-services .legal-team ul,
.page-id-172 .content article#empowerment-services .legal-team ul,
.inside .content article#administration .empowerment-team ul,
.page-id-172 .content article#administration .empowerment-team ul,
.inside .content article#legal-services .empowerment-team ul,
.page-id-172 .content article#legal-services .empowerment-team ul,
.inside .content article#empowerment-services .empowerment-team ul,
.page-id-172 .content article#empowerment-services .empowerment-team ul {
  column-count: 2;
}
.inside .content article#administration .admin-team ul li,
.page-id-172 .content article#administration .admin-team ul li,
.inside .content article#legal-services .admin-team ul li,
.page-id-172 .content article#legal-services .admin-team ul li,
.inside .content article#empowerment-services .admin-team ul li,
.page-id-172 .content article#empowerment-services .admin-team ul li,
.inside .content article#administration .legal-team ul li,
.page-id-172 .content article#administration .legal-team ul li,
.inside .content article#legal-services .legal-team ul li,
.page-id-172 .content article#legal-services .legal-team ul li,
.inside .content article#empowerment-services .legal-team ul li,
.page-id-172 .content article#empowerment-services .legal-team ul li,
.inside .content article#administration .empowerment-team ul li,
.page-id-172 .content article#administration .empowerment-team ul li,
.inside .content article#legal-services .empowerment-team ul li,
.page-id-172 .content article#legal-services .empowerment-team ul li,
.inside .content article#empowerment-services .empowerment-team ul li,
.page-id-172 .content article#empowerment-services .empowerment-team ul li {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
@media (max-width: 767.98px) {
  .inside .content article#administration .admin-team ul,
  .page-id-172 .content article#administration .admin-team ul,
  .inside .content article#legal-services .admin-team ul,
  .page-id-172 .content article#legal-services .admin-team ul,
  .inside .content article#empowerment-services .admin-team ul,
  .page-id-172 .content article#empowerment-services .admin-team ul,
  .inside .content article#administration .legal-team ul,
  .page-id-172 .content article#administration .legal-team ul,
  .inside .content article#legal-services .legal-team ul,
  .page-id-172 .content article#legal-services .legal-team ul,
  .inside .content article#empowerment-services .legal-team ul,
  .page-id-172 .content article#empowerment-services .legal-team ul,
  .inside .content article#administration .empowerment-team ul,
  .page-id-172 .content article#administration .empowerment-team ul,
  .inside .content article#legal-services .empowerment-team ul,
  .page-id-172 .content article#legal-services .empowerment-team ul,
  .inside .content article#empowerment-services .empowerment-team ul,
  .page-id-172 .content article#empowerment-services .empowerment-team ul {
    column-count: 1;
  }
}
.inside .content article#administration ul li,
.page-id-172 .content article#administration ul li,
.inside .content article#legal-services ul li,
.page-id-172 .content article#legal-services ul li,
.inside .content article#empowerment-services ul li,
.page-id-172 .content article#empowerment-services ul li {
  text-align: center;
  font-family: 'BrandonT', sans-serif;
  font-size: 1.15em;
  font-weight: 300;
  line-height: 1.15em;
  list-style: none;
  padding: 0 0 1.5em;
}
.inside .content article#administration ul li small,
.page-id-172 .content article#administration ul li small,
.inside .content article#legal-services ul li small,
.page-id-172 .content article#legal-services ul li small,
.inside .content article#empowerment-services ul li small,
.page-id-172 .content article#empowerment-services ul li small {
  font-weight: 700;
}
.inside .content article#impact-reports i.fa,
.page-id-172 .content article#impact-reports i.fa {
  margin-bottom: 15px;
}
.inside .content article#reports p,
.page-id-172 .content article#reports p,
.inside .content article #additional p,
.page-id-172 .content article #additional p,
.inside .content article #legal-resources p,
.page-id-172 .content article #legal-resources p {
  font-size: 16px;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.25em;
}
.inside .content article#reports p em,
.page-id-172 .content article#reports p em,
.inside .content article #additional p em,
.page-id-172 .content article #additional p em,
.inside .content article #legal-resources p em,
.page-id-172 .content article #legal-resources p em {
  font-family: "brandon-grotesque", sans-serif;
}
.inside .content article blockquote,
.page-id-172 .content article blockquote {
  color: #b34440;
  border-left: 0;
  padding-left: 0;
}
.inside .content article h3.post-title a,
.page-id-172 .content article h3.post-title a {
  color: #47545e;
}
.inside .content article h3.post-title a:hover,
.page-id-172 .content article h3.post-title a:hover {
  color: #00a6cf;
}
.inside .content article:not(#financial-statements) ul li,
.page-id-172 .content article:not(#financial-statements) ul li {
  line-height: 1.2em;
  margin-bottom: 1.125em;
}
.inside .content .article-body figure,
.page-id-172 .content .article-body figure {
  width: 100% !important;
}
.inside .content .article-body ul,
.page-id-172 .content .article-body ul,
.inside .content ul.list,
.page-id-172 .content ul.list {
  margin-bottom: 30px;
}
.inside .content .article-body ul li,
.page-id-172 .content .article-body ul li,
.inside .content ul.list li,
.page-id-172 .content ul.list li {
  line-height: 1.2em;
  margin-bottom: 1.125em;
}
.inside .content ul.list,
.page-id-172 .content ul.list {
  font-size: 1.1em;
  font-weight: 700;
}
.inside .content .team-member,
.page-id-172 .content .team-member {
  text-align: center;
  margin-bottom: 50px;
  font-family: 'BrandonT', sans-serif;
  font-size: 1.15em;
  font-weight: 300;
  line-height: 1.15em;
}
.inside .content #leadership .flexslider,
.page-id-172 .content #leadership .flexslider,
.inside .content #administration .flexslider,
.page-id-172 .content #administration .flexslider,
.inside .content #legal-services .flexslider,
.page-id-172 .content #legal-services .flexslider,
.inside .content #empowerment-services .flexslider,
.page-id-172 .content #empowerment-services .flexslider {
  margin-bottom: 10px;
}
.inside .content #leadership .team-member,
.page-id-172 .content #leadership .team-member,
.inside .content #administration .team-member,
.page-id-172 .content #administration .team-member,
.inside .content #legal-services .team-member,
.page-id-172 .content #legal-services .team-member,
.inside .content #empowerment-services .team-member,
.page-id-172 .content #empowerment-services .team-member {
  text-align: center;
  margin-bottom: 50px;
}
.inside .content #leadership .team-member a,
.page-id-172 .content #leadership .team-member a,
.inside .content #administration .team-member a,
.page-id-172 .content #administration .team-member a,
.inside .content #legal-services .team-member a,
.page-id-172 .content #legal-services .team-member a,
.inside .content #empowerment-services .team-member a,
.page-id-172 .content #empowerment-services .team-member a {
  display: block;
}
.inside .content #leadership .team-member p,
.page-id-172 .content #leadership .team-member p,
.inside .content #administration .team-member p,
.page-id-172 .content #administration .team-member p,
.inside .content #legal-services .team-member p,
.page-id-172 .content #legal-services .team-member p,
.inside .content #empowerment-services .team-member p,
.page-id-172 .content #empowerment-services .team-member p {
  line-height: 1.15em;
  margin-top: 1em;
}
.inside .content #leadership .team-member img.img-circle,
.page-id-172 .content #leadership .team-member img.img-circle,
.inside .content #administration .team-member img.img-circle,
.page-id-172 .content #administration .team-member img.img-circle,
.inside .content #legal-services .team-member img.img-circle,
.page-id-172 .content #legal-services .team-member img.img-circle,
.inside .content #empowerment-services .team-member img.img-circle,
.page-id-172 .content #empowerment-services .team-member img.img-circle {
  width: 90%;
  margin-bottom: 15px;
}
@media screen and (max-width: 500px) {
  .inside .content #leadership .team-member,
  .page-id-172 .content #leadership .team-member,
  .inside .content #administration .team-member,
  .page-id-172 .content #administration .team-member,
  .inside .content #legal-services .team-member,
  .page-id-172 .content #legal-services .team-member,
  .inside .content #empowerment-services .team-member,
  .page-id-172 .content #empowerment-services .team-member {
    width: 100%;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
.inside .content .flex-tiles,
.page-id-172 .content .flex-tiles {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
}
.inside .content .flex-tiles .team-member,
.page-id-172 .content .flex-tiles .team-member {
  align-self: center;
}
.inside .content .btn,
.page-id-172 .content .btn {
  margin: 15px auto 0;
  color: #FFF;
  border: 0;
  font-size: 0.85em;
  font-family: 'BrandonTB', sans-serif;
  background-color: #00a6cf;
  display: block;
  max-width: 450px;
  padding: 15px 15px 12px;
}
.inside .content .btn:hover,
.page-id-172 .content .btn:hover,
.inside .content .btn:focus,
.page-id-172 .content .btn:focus {
  background-color: #03cdff;
  color: #FFF;
  border: 0;
}
.inside .content .btn.ib,
.page-id-172 .content .btn.ib {
  display: inline-block;
  vertical-align: top;
  margin-top: 5px;
  margin-right: 3px;
}
@media screen and (max-width: 767px) {
  .inside .content .btn.ib,
  .page-id-172 .content .btn.ib {
    display: block;
    margin-right: auto;
    margin-left: 0;
    font-size: 0.75em;
  }
}
.inside .content .btn.ib.lg,
.page-id-172 .content .btn.ib.lg {
  max-width: none;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .inside .content .btn,
  .page-id-172 .content .btn {
    margin-bottom: 6px;
  }
}
iframe {
  margin: 60px 0;
}
@media screen and (max-width: 800px) {
  iframe {
    margin: 20px 0 60px;
  }
}
iframe#video {
  width: 100% !important;
  height: 40vw !important;
}
.profile {
  background: #eee;
}
.profile h2 {
  font-family: 'BrandonTB', sans-serif;
  margin-bottom: 1em;
}
.profile h4 {
  color: #00a6cf;
}
@media screen and (max-width: 767px) {
  .profile img {
    margin-top: 30px;
  }
}
#impact-reports i {
  margin-bottom: 30px;
}
#impact-reports p {
  line-height: 1em;
}
#financial-statements {
  text-align: center;
}
#financial-statements p {
  margin-bottom: 0px;
}
#financial-statements ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  font-size: 1.15em;
}
.fbshare {
  clear: both;
  text-align: center;
  margin-top: 50px;
}
.fbshare iframe {
  height: 100px !important;
  width: 100% !important;
  margin: 0 auto;
}
/*  PHOTOS
/////////////////////////////////////////////////////////  */
.flexslider {
  background: none;
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin: 0 0 60px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.flexslider img {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.slideshow.displaystyle-module .slideshow-image:hover a {
  float: none;
  margin: 5px 0 0 0px !important;
  display: inline-block !important;
}
/*  ARTICLES
/////////////////////////////////////////////////////////  */
.page-news article {
  clear: both;
}
.article-image {
  width: 40%;
  padding-right: 30px;
  margin-right: 30px;
  margin-bottom: 15px;
  border-right: 1px solid #ddd;
}
@media screen and (max-width: 580px) {
  .article-image {
    padding: 0px;
    margin: 0 0 30px;
    border: 0;
  }
}
.article-summary {
  width: 100%;
}
.article-summary.with-image {
  width: 60%;
}
.article-image,
.article-summary.with-image {
  float: left;
}
@media screen and (max-width: 580px) {
  .article-image,
  .article-summary.with-image {
    float: none;
    width: 100%;
  }
}
.event-img {
  width: 400px;
  float: left;
  padding: 5px 38px 38px 0;
}
@media screen and (max-width: 580px) {
  .event-img {
    float: none;
    width: 100%;
    padding: 0 0 1.85em 0;
  }
}
.pagination-div {
  text-align: center;
}
.pagination-div .pagination {
  text-align: center;
  justify-content: center;
  margin-bottom: 40px;
}
.pagination-div .pagination .nav-links > * {
  display: inline-block;
  padding: 5px 14px;
  margin-right: 1px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.7;
  background-color: #fff;
  color: #00a6cf;
  border: solid 2px #00a6cf;
}
.pagination-div .pagination .nav-links > *:hover,
.pagination-div .pagination .nav-links > *.current,
.pagination-div .pagination .nav-links > *.dots {
  background-color: #00a6cf;
  color: #fff;
}
/*  FOOTER
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF      */
/* Footer 

footer {
	background:@cyan;
	color:@white;
	padding:20px 0;
	font-size: 12px;
	.alignC;	
	
	a {color:@white;}
	a:hover {.nodeco; color:@md-gray;}
	
	.copyright, .social {
		margin:0 5px;
		padding:0;
	}
	.copyright {
		display: inline-block;
		.upper;
		ul {
			margin:0;
			padding:0;
			li {
				list-style: none;
				display: inline-block;
				padding:0 5px;
				text-align: center;
				a {color:@lt-text;}
				a:hover {.nodeco; color:@white;}
			}
		}
		p {
			text-transform: none; 
			margin-top:10px; 
			color:@text;
			a {
				color:@yellow;
			}
		}
		@media screen and (max-width:767px) {
			font-size: .8em;
			float:none;
			text-align: center;
		}
	}
	.social {
		display: inline-block;
		.fa {font-size: 22px;}
		a {margin:10px 5px 0;}
		@media screen and (max-width:767px) {
			float:none;
			.fa {font-size: 30px;}
		}
	}
	
}


@media screen and (max-width: 767px) {
	footer {
		.copyright {
			ul {
				li {
					display:block; 
					padding: 0;
					&.divider {display:none;}
				}
				
			}
		}
		.email {margin: 20px 80px 20px;}
		
	}
	
}


*/
#top {
  position: fixed;
  bottom: 0;
  right: 30px;
  padding: 0 25px;
  font-size: 2em;
  background: #00a6cf;
  color: #FFF;
  z-index: 99;
  line-height: 0;
}
/* SPECIAL EVENT */
.page-22nd-annual-from-slavery-to-freedom-gala aside {
  display: none;
}
.page-22nd-annual-from-slavery-to-freedom-gala .col-sm-9 {
  float: none;
  margin: 0 auto;
  left: 0;
}
.page-22nd-annual-from-slavery-to-freedom-gala .article-image {
  display: none;
}
.page-22nd-annual-from-slavery-to-freedom-gala section h2,
.page-22nd-annual-from-slavery-to-freedom-gala h3,
.page-22nd-annual-from-slavery-to-freedom-gala h4 {
  font-weight: 800;
  color: #00a6cf;
  text-align: center;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
.page-22nd-annual-from-slavery-to-freedom-gala section h2 {
  margin-top: 2em;
}
.page-22nd-annual-from-slavery-to-freedom-gala .event-info {
  text-align: center;
  margin-top: -2em;
  margin-bottom: 2em;
}
.page-22nd-annual-from-slavery-to-freedom-gala .alignleft {
  float: left;
  margin-right: 30px;
}
@media (max-width: 575px) {
  .page-22nd-annual-from-slavery-to-freedom-gala .alignleft {
    float: none;
    width: 100%;
    margin: 0 0 30px;
  }
}
.page-22nd-annual-from-slavery-to-freedom-gala .content .btn {
  margin-top: 3em;
  margin-bottom: 1em;
}
.page-22nd-annual-from-slavery-to-freedom-gala .content .article-body h4 {
  padding-top: 2.8em;
  border-top: 1px solid #ddd;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1.2em;
  color: black;
}
.page-22nd-annual-from-slavery-to-freedom-gala .content .article-body h4 + ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.page-22nd-annual-from-slavery-to-freedom-gala .content .article-body h4 + ul li {
  line-height: 1em;
  margin-bottom: 0.825em;
  font-size: 1.2em;
}
/*COVID PAGE*/
.inside .content.covid .btn.ib {
  background: #e55846;
}
.inside .content.covid .btn.ib:hover {
  background: #e24430;
}
.inside .hero.covid-banner .col {
  background-size: contain;
  height: 19vw;
}
/*COVID ACCORDIAN*/
/* Accordion styles */
.covid input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.covid label {
  margin-bottom: 0;
}
.covid label span {
  padding-right: 20px;
}
.covid .tabs {
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
  margin-bottom: 50px;
}
.covid .tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.covid .tab-label {
  display: flex;
  justify-content: center;
  padding: 2em;
  background: #47545e;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  /* Icon */
}
.covid .tab-label:hover {
  background: #3c474f;
}
.covid .tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.covid .tab.tab-2 .tab-label {
  background: #fde35a;
  color: #47545e;
}
.covid .tab.tab-2 .tab-label:hover {
  background: #fddf41;
}
.covid .tab.tab-3 .tab-label {
  background: #00bae9;
}
.covid .tab.tab-3 .tab-label:hover {
  background: #00a6d0;
}
.covid .tab.tab-4 .tab-label {
  background: #fff;
  color: #47545e;
}
.covid .tab.tab-4 .tab-label:hover {
  background: #f2f2f2;
}
.covid .tab.tab-5 .tab-label {
  background: #e55846;
}
.covid .tab.tab-5 .tab-label:hover {
  background: #e24430;
}
.covid .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #47545e;
  background: white;
  transition: all 0.35s;
  display: none;
}
.covid .tab-content p:last-of-type {
  margin-bottom: 0;
}
.covid .tab-content ul li {
  font-size: 1.15em;
  line-height: 1.75em;
}
.covid .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #47545e;
  cursor: pointer;
}
.covid .tab-close:hover {
  background: #3c474f;
}
.covid input:checked + .tab-label {
  background: #3c474f;
}
.covid input:checked + .tab-label::after {
  transform: rotate(90deg);
}
.covid input:checked ~ .tab-content {
  max-height: max-content;
  padding: 2em 1em;
  display: block;
}
@media (max-width: 767.98px) {
  section.content.covid,
  section#donor-logos {
    padding: 40px 30px;
  }
}
#donor-slideshow .slideshow {
  max-width: 500px;
  margin: 0 auto;
}
#donor-slideshow ul.donorslides {
  margin: 0 auto;
  padding: 0;
}
#donor-slideshow ul.donorslides li img {
  margin: 0 auto;
}
#donor-logos .flex-direction-nav a {
  height: 50px;
}
#donor-logos .flexslider:hover .flex-direction-nav .flex-prev {
  left: -50px;
}
#donor-logos .flexslider:hover .flex-direction-nav .flex-next {
  right: -50px;
}
#donor-logos .flex-direction-nav a::before {
  color: #e3e3e3;
}
@media (max-width: 860px) {
  #donor-logos .flexslider .flex-direction-nav .flex-prev {
    left: -20px;
  }
  #donor-logos .flexslider .flex-direction-nav .flex-next {
    right: -20px;
  }
  #donor-logos .flexslider:hover .flex-direction-nav .flex-prev {
    left: -20px;
  }
  #donor-logos .flexslider:hover .flex-direction-nav .flex-next {
    right: -20px;
  }
  #donor-logos .flex-direction-nav a::before {
    font-size: 30px;
  }
}
/*Twitter List*/
.timeline-Widget .timeline-InformationCircle-widgetParent {
  display: none;
}
.timeline-Widget .timeline-Body {
  border: none;
}
.timeline-Widget .timeline-Tweet-media {
  display: none;
}
.timeline-Widget .timeline-Footer {
  display: none;
}
/* HOMEPAGE VIDEO POPUP */
.hero.videobg {
  background: #000;
}
.hero.videobg h1 {
  color: #fff;
}
.hero.videobg .video-btn {
  position: absolute;
  bottom: 80px;
  right: 50px;
  font-size: 3.5em;
}
.hero.videobg .video-btn.mobile {
  display: none;
}
@media (max-width: 580.98px) {
  .hero.videobg .video-btn {
    right: unset;
    left: 20px;
    bottom: 20px;
  }
  .hero.videobg .video-btn.mobile {
    display: none;
    position: relative;
    bottom: unset;
    right: unset;
    margin-top: 30px;
  }
}
@media (max-width: 580.98px) {
  .hero.videobg article {
    padding-bottom: 125px;
  }
}
.hero.videobg a#watch_film {
  color: #fddf41;
}
.hero.videobg a#watch_film:hover {
  color: #00a6cf;
}
.hero video#bgVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0.5;
}
#video-overlay {
  max-width: 1000px;
}
/* MEDIA QUERIES  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */
/* Everything above breakdance - sm and up */
@media (min-width: 768px) {
  .g2l {
    padding-left: 30px !important;
  }
  .g2r {
    padding-right: 30px !important;
  }
  .g0l {
    padding-left: 0 !important;
  }
  .g0r {
    padding-right: 0 !important;
  }
  .gHl {
    padding-left: 7.5px !important;
  }
  .gHr {
    padding-right: 7.5px !important;
  }
  .gPl {
    padding-left: 5% !important;
  }
  .gPr {
    padding-right: 5% !important;
  }
}
/* end media query*/
/* Large devices (large desktops, 1200px and up - screen-lg) */
@media (min-width: 1441px) {
  /* sets large screen container width */
  .container {
    max-width: 1440px;
    width: 93%;
    padding: 0;
  }
  .g2l-lg {
    padding-left: 30px !important;
  }
  .g2r-lg {
    padding-right: 30px !important;
  }
  .g0l-lg {
    padding-left: 0 !important;
  }
  .g0r-lg {
    padding-right: 0 !important;
  }
  .margin-bottom.visible-lg {
    margin-bottom: 30px !important;
  }
}
/* end media query*/
/* Medium to Large */
@media (max-width: 1440px) and (min-width: 768px) {
  .container {
    max-width: 1440px;
    width: 93%;
    padding: 0;
  }
  .g2l-md {
    padding-left: 30px !important;
  }
  .g2r-md {
    padding-right: 30px !important;
  }
  .g0l-md {
    padding-left: 0 !important;
  }
  .g0r-md {
    padding-right: 0 !important;
  }
  .margin-bottom.visible-md {
    margin-bottom: 30px !important;
  }
}
/* end media query*/
/* breakdance query - xs/sm*/
@media only screen and (max-width: 767px) {
  /* resets container and column padding */
  .col-xs-1,
  .col-xs-2,
  .col-xs-3,
  .col-xs-4,
  .col-xs-5,
  .col-xs-6,
  .col-xs-7,
  .col-xs-8,
  .col-xs-9,
  .col-xs-10,
  .col-xs-11,
  .col-xs-12,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  /* card class makes container 100% width and eliminates body bg */
  .container.card {
    max-width: 100%;
    width: auto;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .container.card .content {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  /* resets 2x and 0 gutter padding padding to 15px  */
  .g2l,
  .g0l {
    padding-left: 15px !important;
  }
  .g2r,
  .g0r {
    padding-right: 15px !important;
  }
  .gHl {
    padding-left: 15px !important;
  }
  .gHr {
    padding-right: 15px !important;
  }
  /* You really want the custom padding classes still? */
  .g2l-xs {
    padding-left: 30px !important;
  }
  .g2r-xs {
    padding-right: 30px !important;
  }
  .g0l-xs {
    padding-left: 0 !important;
  }
  .g0r-xs {
    padding-right: 0 !important;
  }
  .gHl-xs {
    padding-left: 7.5px !important;
  }
  .gHr-xs {
    padding-right: 7.5px !important;
  }
  span.visible-xs {
    display: inline !important;
  }
  .right {
    float: none;
    display: block;
  }
  /* end media query*/
}
/* Landscape phones and down */
/* Vertical phones and down */
@media (max-width: 480px) {
  /* end media query*/
}
.modal-content .modal-header {
  display: none;
}
.modal-content .dismiss {
  position: absolute;
  top: -21px;
  right: 0;
  color: white;
}
.modal-content .modal-footer {
  padding: 0;
}
.modal-content .modal-body {
  padding: 0;
}
#socials ul {
  margin: 0;
  padding: 0;
}
#socials ul li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 35px;
}
#socials ul li a:hover {
  text-decoration: none;
}
#socials ul li .fa {
  font-size: 1.4em;
}
.embedpress-inner-iframe {
  display: block !important;
}
.embedpress-embed-document-pdf {
  width: 100% !important;
  height: 130vw !important;
  min-height: 400px;
  max-height: 1400px;
}
.page-id-918 h1:first-of-type,
.page-id-918 #topbanner {
  display: none;
}
.page-id-918.inside .content article:first-of-type {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}
