@charset "UTF-8";
@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family="Albert Sans":ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://use.typekit.net/cjf4jnh.css');

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

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

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

html {
    scroll-behavior: smooth;
}

body,
html {
  height: 100%;
}

h1 {
  font-size: 60px;
  margin: 0;
}

h2 {
  font-size: 35px;
  margin: 0;
}

h3 {
  font-size: 28px;
  margin: 0;
}

h4 {
  font-size: 22px;
  margin: 0;
}

h5 {
  font-size: 14px;
  margin: 0;
}

h6 {
  font-size: 12px;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
  display: block;
}

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

ul {
  margin: 0;
  list-style: none;
}

blockquote {
  padding: 10px 20px;
  margin: 17px 0;
  border-left: 5px solid #dee5e7;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
  max-width: 100%;
  width:100%;
  font-family: "Albert Sans";
  white-space: nowrap;
  text-transform: uppercase;
}

thead th {
	font-weight:800;
}

body {
  font-family: "Albert Sans", sans-serif;
  background-color: #fff;
  color: #54595f;
  width: 100%;
  margin: 0 auto;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 1px;
}

hr.black-full {
  width:100%;
  margin-left: 0;
  border: 1px solid #000;
}

hr.gray-full {
  width:100%;
  margin-left: 0;
  border: 1px solid #cacaca;
}

hr.white {
  width:150px;
  margin-left: 0;
  border: 2px solid var(--text-color);
}

hr.white-full {
  width:100%;
  margin-left: 0;
  border: 1px solid var(--text-color);
}



/*---------------------- menu bar -----------------------*/


.dropdown {
  overflow: hidden;
}

.dropdown-content {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  height: 0px;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  -webkit-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}

.dropdown-content a {
  float: none;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #2e4a22;
  color:#fff!important;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  height: 300px;
}

.dropdown-mobile {
  overflow: hidden;
}

.dropdown-content-mobile {
  opacity: 0;
  height: 0px;
  min-width: 160px;
  z-index: 1;
  -webkit-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}

.dropdown-content-mobile a {
  padding: 15px 0;
  text-decoration: none;
  display: block;
  text-align: right;
}

.dropdown-mobile:hover .dropdown-content-mobile {
  opacity: 1;
  height: 311px;
}

.fa-angle-right {
  font-size: 14px;
  color: #fff;
}

.fa-angle-right:hover {
  color: #2e4a22;
}

.fa-bars {
  font-size: 30px;
  cursor: pointer;
  color: #2e4a22;
}

.fa-clock {
  font-size: 27px;
  color: #7BAC41;    
}

.fa-envelope {
  font-size: 27px;
  color: #7BAC41;    
}

.fa-envelope.white {
  font-size: 27px;
  color: #fff;    
}

.fa-location-dot {
  font-size: 27px;
  color: #7BAC41;
}

.fa-phone {
  font-size: 27px;
  color: #7BAC41;    
}

.fa-phone.white {
  font-size: 27px;
  color: #fff;    
}

.fa-plus {
  position: absolute;
  bottom: 20px;
  margin: 0 auto;
}

.fa-times {
  font-size: 1.7rem;
  margin-top: 2px;
  cursor: pointer;
  -webkit-transition: 200ms all ease-in-out;
  transition: 200ms all ease-in-out;
}

.fa-facebook-f {
  font-size: 24px;
  color: #2e4a22;
}

.fa-instagram {
  font-size: 24px;
  color: #2e4a22;
}

.fa-linkedin-in {
  font-size: 24px;
  color: #2e4a22;
}

.fa-x-twitter {
  font-size: 24px;
  color: #2e4a22;
}

.fa-youtube {
  font-size: 24px;
  color: #2e4a22;
}

.fab:hover {
  color: #f6be46;
  -webkit-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}

.header-btn {
  background-color: #2e4a22;
  border: 1px solid #2e4a22 !important;
  display: inline-block;
  color: #fff;
  font-size:14px;
  width: fit-content;
  text-align: center;
  text-transform: uppercase;
  padding: 8px 30px 6px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}

.header-btn:hover {
  background-color: #e78780;
  border: 1px solid #e78780 !important;
  color: #fff;
}

.header-menu {
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 1111;
  width: 100%;
  display: block;
  -webkit-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}

.header-menu img {
  width: 90px;
  -webkit-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}

.header-mobile {
  display: none;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width:900px;
}

.header-nav a {
  color: #2e4a22;
  font-weight:400;
  position: relative;
  -webkit-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}

.header-nav a:hover {
  color: #2e4a22;
}

#home .home,
#about .about,
#womens .womens,
#medical .medical,
#contact .contact,
#donate .donate,
#volunteer .volunteer {
  color: #e78780;
}

.header-scroll {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1111;
  width: 100%;
  display: block;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}

.header-scroll + .main-container-scroll {
  margin-top: 92px;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 11;
  box-sizing: border-box;
}

hr.black {
  width:75%;
  margin: 5px auto;
  border: 1px solid #000;
}

hr.black-full {
  width:100%;
  margin-left: 0;
  border: 1px solid #000;
}

hr.red-about {
  width:97.5%;
  margin: 0;
  border: 5px solid #f32f39;
}

hr.white {
  width:150px;
  margin-left: 0;
  border: 2px solid #fff;
}

hr.white-full {
  width:100%;
  margin-left: 0;
  border: 1px solid #fff;
}

.mobile-menu {
  display: flex;
  justify-content: flex-end;
  text-align: right;
  height: 0;
  width: 100%;
  opacity: 0;
  position: fixed;
  z-index: 1111;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: -0.2s, 0s;
  -moz-transition-delay: -0.2s, 0s;
  -o-transition-delay: -0.2s, 0s;
  transition-delay: -0.2s, 0s;
  transition-property: height, opacity;
}

.mobile-menu a {
  display: flex;
  justify-content: flex-end;
  font-size: 1rem;
  font-weight: 500;
  color: #2e4a22;
  padding: 15px 0;
  text-transform: uppercase;
}

.mobile-menu .closebtn {
  position: absolute;
  top: 20px;
}

.mobile-menu a.closebtn {
  padding: 0;
}



/*---------------------- /menu bar -----------------------*/


.accordion {
  display: flex;
  align-items: center;
  background-color: transparent;
  font-family: "Albert Sans";
  color: var(--text-color);
  cursor: pointer;
  width: 100%;
  font-size: inherit;
  text-align: left;
  line-height:1.5;
  margin-left: 25px;
  padding-right: 30px;
  border: 0;
  transition: 0.4s;
  position:relative;
}

.accordion:before {
  font-family: FontAwesome;
  content: '\f107';
  font-size: 2rem;
  color: #707070;
  position: absolute;
  margin-right: 20px;
  margin-left: -30px;
}

.accordion.active:before {
  font-family: FontAwesome;
  content: '\f106';
  font-size: 2rem;
  color: #707070;
  position: absolute;
  margin-right: 20px;
  margin-left: -30px;
}

.panel {
  max-height: 0;
  overflow: hidden;
  margin-top: 20px;
  font-size: inherit;
  transition: max-height 0.2s ease-out;
  padding: 0 30px;
}

.panel {
  margin-block-end: 30px;
}

.b-arrow-left:before{
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    margin-top: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #469EF3; 
}

.b-arrow-top:before{
  position: absolute;
  top: -10px;
  left:50%;
  margin-left: -10px;
  content:"";
  display:block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #469EF3; 
}

.b-a {
  border: 3px solid;
}

.b-b {
  border-bottom: 3px solid;
}

.b-l {
  border-left: 3px solid;
}

.b-r {
  border-right: 3px solid;
}

.b-t {
  border-top: 3px solid;
}

.b-a-thick {
  border: 5px solid;
}

.b-b-thick {
  border-bottom: 5px solid;
}

.b-l-thick {
  border-left: 5px solid;
}

.b-r-thick {
  border-right: 5px solid;
}

.b-t-thick {
  border-top: 5px solid;
}

.b-a-thin {
  border: 1px solid;
}

.b-b-thin {
  border-bottom: 1px solid;
}

.b-l-thin {
  border-left: 1px solid;
}

.b-r-thin {
  border-right: 1px solid;
}

.b-t-thin {
  border-top: 1px solid;
}

.b-black {
  border-color: #000;
}

.b-green-dk {
  border-color: #2e4a22;
}

.b-green-lt {
  border-color: #7BAC41;
}

.b-gray {
  border-color: #939393;
}

.b-white {
  border-color: #fff;
}

.b-radius-xs {
  border-radius: 5px;
}

.b-radius-sm {
  border-radius: 10px;
}

.b-radius-md {
  border-radius: 15px;
}

.b-radius-lg {
  border-radius: 20px;
}

.b-radius-xl {
  border-radius: 30px;
}

.b-radius-xxl {
  border-radius: 50px;
}

.bg-black {
  background-color: #000;
}

.bg-green-dk {
  background-color: #2e4a22;
}

.bg-green-lt {
  background-color: #7BAC41;
}

.bg-gray {
  background-color: #f0f0f0;
}

.bg-white {
  background-color: #fff;
}

.bg-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 11;
  pointer-events: none;
}

.block {
  display: block;
}

.border-sides {
  border-left: 1px solid #469EF3;
  border-bottom: 1px solid #469EF3;
  border-right: 1px solid #469EF3;
  border-radius: 15px;
}

.border-gap {
  display: flex;
  flex-direction: row;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.border-gap:before {
  -webkit-border-radius: 15px 0 0 0;
  -moz-border-radius: 15px 0 0 0;
  border-radius: 15px 0 0 0;
  display: block;
  content: '';
  flex: 2 0 0;
  height: 1px;
  border-top: 1px solid #469EF3;
}

.border-gap:after {
  -webkit-border-radius: 0 15px 0 0;
  -moz-border-radius: 0 15px 0 0;
  border-radius: 0 15px 0 0;
  display: block;
  content: '';
  flex: 2 0 0;
  height: 1px;
  border-top: 1px solid #469EF3;
}

.box-shadow {    
    box-shadow: 0 3px 7px rgba(0, 41, 155, 0.1);
}

.btn-arrow::after {
    content: '\2192';
    font-size: 20px;
    padding-left: 10px;
}

.btn-mag::before {
    content: url(../images/icon_mag_heart.png);
    width:20px;
    height:21px;
    padding-right: 10px;
    -webkit-transition: 250ms all ease-in-out;
    transition: 250ms all ease-in-out;
}

.btn-mag:hover::before {
    content: url(../images/icon_mag_heart_hover.png);
}

.btn-green {
  background-color: #2e4a22;
  border: 1px solid #2e4a22 !important;
  display: inline-block;
  color: #fff;
  font-weight:400;
  width: fit-content;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 40px 10px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}

.btn-green:hover {
  background-color: #e78780;
  border: 1px solid #e78780 !important;
  color: #fff;
}

.btn-white {
  background-color: #fff;
  border: 1px solid #fff !important;
  display: inline-block;
  color: #7BAC41;
  font-weight:400;
  width: fit-content;
  text-align: center;
  text-transform: uppercase;
  padding: 8px 40px 10px;
  margin:0;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}

.btn-white:hover {
  background-color: #7BAC41;
  border: 1px solid #7BAC41 !important;
  color: #fff;
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid #fff !important;
  border-radius: 25px;
  display: inline-block;
  color: #fff;
  font-weight:400;
  width: fit-content;
  text-align: center;
  text-transform: uppercase;
  padding: 8px 40px 10px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}

.btn-outline-white:hover {
  background-color: #fff;
  color: #2e4a22;
}

.clear {
  clear: both;
}

.cover {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.cover-bottom {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    position: relative;
}

.cover-top {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
}

.cover-top-right {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    position: relative;
}

.cover-left {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;
    position: relative;
}

.cover-right {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    position: relative;
}

.cover-object {
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: top center;
    position: relative;
}

.contain {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.contain-left {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    position: relative;
}

.contain-right {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    position: relative;
}

.container {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.fit-content {
    width: fit-content;
}

.flex-align-center {
    align-items: center;
}

.flex-align-end {
    align-items: flex-end;
}

.flex-align-first {
    align-items: first baseline;
}

.flex-align-start {
    align-items: flex-start;
}

.flex-shrink {
    flex: 0 1 auto;
}

.flex-grow {
    flex: 1 1 0%;
}

.flex-grow2 {
    flex: 2 1 0%;
}

.flex-grow3 {
    flex: 3 1 0%;
}

.flex-block {
    display: flex;
}

.flex-center {
    justify-content: center;
}

.flex-center-items {
    justify-items: center;
}

.flex-column {
    flex-direction: column;
}

.flex-end {
    justify-content: flex-end;
}

.flex-flow-wrap {
    flex-flow: wrap;
}

.flex-inline {
    display: inline-flex;
}

.flex-nowrap {
    flex-wrap:nowrap;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-space-a {
    justify-content: space-around;
}

.flex-space-b {
    justify-content: space-between;
}

.flex-space-e {
    justify-content: space-evenly;
}

.flex-start {
    justify-content: flex-start;
}

.flex-stretch {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;  
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.gap-10 {
    gap:10px;
}

.gap-10-50 {
    gap:10px;
}

.gap-20 {
    gap:20px;
}

.gap-30 {
    gap:30px;
}

.gap-40 {
    gap:40px;
}

.gap-50 {
    gap:50px;
}

/*---------------------- flowplayer -----------------------*/



.header-video-container {
  overflow:hidden;
}

.header-video-container .flowplayer {
  z-index: -1;
}

.header-video-container .fp-ui {
  display: none !important;
}

.is-starting .fp-header .fp-duration {
  display: none !important;
}

.is-small .fp-play {
  width: 5em !important;
  height: 5em !important;
}

.is-tiny .fp-play {
  width: 5em !important;
  height: 5em !important;
}

.is-small.is-starting:not(.is-waiting):not(.is-seeking.is-playing) .fp-switch {
  transform: scale(1) !important;
}

.is-tiny.is-starting:not(.is-waiting):not(.is-seeking.is-playing) .fp-switch {
  transform: scale(1) !important;
}

/*---------------------- forms -----------------------*/


.mc-field-group, select {
    width:100%!important;
}
    
#mc_embed_signup #mce-success-response, #mc_embed_signup #mce-error-response {
    color: #fff!important;
}

#mc_embed_signup div.response {
    padding: 0!important;
    width: 100%!important;
    text-align:center;
}

#mc_embed_signup .foot {
    display:block!important;
}

#mc_embed_signup input[type='text'], #mc_embed_signup input[type='email'], #mc_embed_signup input[type='date'] {
    width:100%;
    box-sizing: border-box;
    font-family: "Albert Sans", sans-serif;
    border: none;
    border-radius: 5px;
    background: #F3FAFD;
    outline: none;
    font-size: 18px;
    color: #000;
    padding: 10px 20px!important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#mc_embed_signup select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #F3FAFD;
    background-image: url(../images/icon_arrow_dn.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    grid-area: select;
    border: none;
    border-radius: 5px;
    padding: 10px 20px!important;
    margin: 0;
    color: #000;
    width: 100%;
    font-family: "Albert Sans", sans-serif;
    font-size: 18px;
    cursor: pointer;
    box-sizing: border-box;
    outline: none;
}

#mc_embed_signup select::-ms-expand {
    display: none;
}

#mc_embed_signup select:invalid,
#mc_embed_signup select option[value=''] {
  color: #777;
}

#mc_embed_signup option {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #1d1d1d !important;
}

#mc_embed_signup textarea {
  font-family: "Albert Sans", sans-serif;
  font-size: 18px;
  background: #F3FAFD;
  line-height: 2;
  color: #000;
  padding: 10px 20px!important;
  max-width: 100%;
  width: 100%;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#mc_embed_signup input[type='submit'] {
  background-color: transparent;
  cursor: pointer;
  border: 0;
  font-family: "Albert Sans", sans-serif;
  font-size: 18px;
}

#mc_embed_signup input[type='checkbox'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  margin-right: 20px;
  color: #000;
  width: 25px;
  height: 25px;
  border: 0.15em solid #fff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

#mc_embed_signup input[type='checkbox']::before {
  content: ' ';
  width: 20px;
  height: 20px;
  transform: scale(0);
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  background-color: #000;
  -webkit-transition: 120ms all ease-in-out;
  transition: 120ms all ease-in-out;
}

#mc_embed_signup input[type='checkbox']:checked::before {
  transform: scale(1);
}

#mc_embed_signup input[type='checkbox']:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

#mc_embed_signup input:focus {
  outline: none;
}

::placeholder {
  color: #aaa;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #aaa;
  font-weight: 400;
}

::-ms-input-placeholder {
  color: #aaa;
  font-weight: 400;
}

::-webkit-calendar-picker-indicator {
  -webkit-appearance: none;
  color: #56b0d2;
  background: #56b0d2;
}

::-webkit-inner-spin-button {
  display: none;
}

/*---------------------- /form -----------------------*/




.header {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  position: relative;
}

.header-center {
  width: 100%;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.header-compass {
    position: absolute;
    right:20px;
    bottom:0;
    z-index:-1;
}

.hidden {
  overflow: hidden;
}

.hide {
    display: none!important;
}

.image-color {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
  -webkit-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}

.image-color:hover {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
}

.image-zoom {
  -webkit-transition: 200ms all ease-in-out;
  transition: 200ms all ease-in-out;
}

img.image-zoom {
  display: block;
}

.image-zoom:hover {
  -ms-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.inline {
  display: inline-block;
}

.keyword-tag {
    background-color: #F3FAFD;
    color: #00299B;
    border-radius:25px;
    width: fit-content;
    padding:5px;
    font-weight:600;
}

.list {
  display: inline-block;
  margin-top: 20px;
}

.list li {
  padding: 15px 0;
}

.list-bullets {
  display: inline-block;
  margin: 20px 0 0 20px;
  position: relative;
}

.list-bullets li {
  padding: 5px 0;
}

.list-bullets li::before {
  content: '•';
  font-size: 1.2em;
  line-height: 1em;
  position: absolute;
  margin: 2px 0 0 -21px;
}

ol.list-numbered {
  list-style-type: none;
  counter-reset: li;
}

.list-numbered {
  margin-top: 20px;
}

.list-numbered li {
  display: flex;
  align-items: center;
  counter-increment: li;
  list-style-type: none;
  padding: 20px 0;
  border: none;
  -webkit-transition: 250ms all ease-in-out;
  transition: 250ms all ease-in-out;
}

.list-numbered li::before {
  content: counter(li);
  color: #000;
  display: inline-block;
  margin-right: 1em;
  text-align: center;
  direction: rtl;
  font-size: 1.2rem;
}

.m-center {
  margin-left: auto;
  margin-right: auto;
}

.m-left {
  margin-left: 0 !important;
  margin-right: auto;
}

.m-right {
  margin-right: 0 !important;
  margin-left: auto;
}

.m-a-xs {
  margin: 5px;
}

.m-a-sm {
  margin: 11px;
}

.m-a-md {
  margin: 15px;
}

.m-a-lg {
  margin: 20px;
}

.m-a-xl {
  margin: 30px;
}

.m-a-xxl {
  margin: 50px;
}

.m-a-none {
  margin: 0 !important;
}

.m-b-xs {
  margin-bottom: 5px;
}

.m-b-sm {
  margin-bottom: 11px;
}

.m-b-md {
  margin-bottom: 15px;
}

.m-b-lg {
  margin-bottom: 20px;
}

.m-b-xl {
  margin-bottom: 30px;
}

.m-b-xxl {
  margin-bottom: 50px;
}

.m-b-xxxl {
  margin-bottom: 100px;
}

.m-b-n-xxl {
  margin-bottom: -50px;
}

.m-l-xs {
  margin-left: 5px;
}

.m-l-sm {
  margin-left: 11px;
}

.m-l-md {
  margin-left: 15px;
}

.m-l-lg {
  margin-left: 20px;
}

.m-l-xl {
  margin-left: 30px;
}

.m-l-xxl {
  margin-left: 50px;
}

.m-l-xxxl {
  margin-left: 100px;
}

.m-l-n-md {
  margin-left: -15px;
}

.m-l-n-lg {
  margin-left: -20px;
}

.m-l-n-xl {
  margin-left: -30px;
}

.m-l-n-xxl {
  margin-left: -50px;
}

.m-l-n-xxxl {
  margin-left: -100px;
}

.m-r-xs {
  margin-right: 5px;
}

.m-r-sm {
  margin-right: 11px;
}

.m-r-md {
  margin-right: 15px;
}

.m-r-lg {
  margin-right: 20px;
}

.m-r-xl {
  margin-right: 30px;
}

.m-r-xxl {
  margin-right: 50px;
}

.m-r-xxxl {
  margin-right: 100px;
}

.m-r-n-xxl {
  margin-right: -50px;
}

.m-t-xs {
  margin-top: 5px;
}

.m-t-sm {
  margin-top: 11px;
}

.m-t-md {
  margin-top: 15px;
}

.m-t-lg {
  margin-top: 20px;
}

.m-t-xl {
  margin-top: 30px;
}

.m-t-xxl {
  margin-top: 50px;
}

.m-t-xxxl {
  margin-top: 100px;
}

.m-t-xxxl-mobile {
  margin-top: 100px;
}

.m-t-200 {
  margin-top: 200px;
}

.m-t-n-xs {
  margin-top: -3px;
}

.m-t-n-sm {
  margin-top: -11px;
}

.m-t-n-md {
  margin-top: -15px;
}

.m-t-n-lg {
  margin-top: -20px;
}

.m-t-n-xl {
  margin-top: -30px;
}

.m-t-n-xxl {
  margin-top: -50px;
}

.m-t-n-xxxl {
  margin-top: -100px;
}

.main-container {
  width: 100%;
  min-height: 100%;
  margin-top:111px;
}

.mobile-show {
  display: none !important;
}

.mobile-show-flex {
  display: none !important;
}

.mobile-table-show {
  display: none !important;
}

.nowrap {
  white-space: nowrap;
}

.p-a-xs {
  padding: 5px;
}

.p-a-sm {
  padding: 11px;
}

.p-a-md {
  padding: 15px;
}

.p-a-lg {
  padding: 20px;
}

.p-a-xl {
  padding: 30px;
}

.p-a-xxl {
  padding: 50px;
}

.p-a-xxxl {
  padding: 100px;
}

.p-b-xs {
  padding-bottom: 5px;
}

.p-b-sm {
  padding-bottom: 11px;
}

.p-b-md {
  padding-bottom: 15px;
}

.p-b-lg {
  padding-bottom: 20px;
}

.p-b-xl {
  padding-bottom: 30px;
}

.p-b-xxl {
  padding-bottom: 50px;
}

.p-b-xxxl {
  padding-bottom: 100px;
}

.p-b-none {
  padding-bottom: 0 !important;
}

.p-l-xs {
  padding-left: 5px;
}

.p-l-sm {
  padding-left: 11px;
}

.p-l-md {
  padding-left: 15px;
}

.p-l-lg {
  padding-left: 20px;
}

.p-l-xl {
  padding-left: 30px;
}

.p-l-xxl {
  padding-left: 50px;
}

.p-l-xxxl {
  padding-left: 100px;
}

.p-r-xs {
  padding-right: 5px;
}

.p-r-sm {
  padding-right: 11px;
}

.p-r-md {
  padding-right: 15px;
}

.p-r-lg {
  padding-right: 20px;
}

.p-r-xl {
  padding-right: 30px;
}

.p-r-xxl {
  padding-right: 50px;
}

.p-r-xxxl {
  padding-right: 100px;
}

.p-t-xs {
  padding-top: 5px;
}

.p-t-sm {
  padding-top: 11px;
}

.p-t-md {
  padding-top: 15px;
}

.p-t-lg {
  padding-top: 20px;
}

.p-t-xl {
  padding-top: 30px;
}

.p-t-xxl {
  padding-top: 50px;
}

.p-t-xxxl {
  padding-top: 100px;
}

.p-h-sm {
  padding-left: 11px;
  padding-right: 11px;
}

.p-h-md {
  padding-left: 15px;
  padding-right: 15px;
}

.p-h-lg {
  padding-left: 20px;
  padding-right: 20px;
}

.p-h-xl {
  padding-left: 30px;
  padding-right: 30px;
}

.p-h-xxl {
  padding-left: 50px;
  padding-right: 50px;
}

.p-h-xxxl {
  padding-left: 100px;
  padding-right: 100px;
}

.p-v-xs {
  padding-top: 5px;
  padding-bottom: 5px;
}

.p-v-sm {
  padding-top: 11px;
  padding-bottom: 11px;
}

.p-v-md {
  padding-top: 15px;
  padding-bottom: 15px;
}

.p-v-lg {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-v-xl {
  padding-top: 30px;
  padding-bottom: 30px;
}

.p-v-xxl {
  padding-top: 50px;
  padding-bottom: 50px;
}

.p-v-xxxl {
  padding-top: 100px;
  padding-bottom: 100px;
}

.p-a-none {
  padding: 0 !important;
}

.p-t-none {
  padding-top: 0 !important;
}

.p-h-none {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.p-v-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.page-number {
    width:44px;
    height:44px;
    border:1px solid #469EF3;
    border-radius:10px;
    cursor:pointer;
    text-align:center;
    line-height: 2.7;
    -webkit-transition: 200ms all ease-in-out;
    transition: 200ms all ease-in-out;
}

.page-number:hover {
    border:1px solid #00299B;
    background-color:#00299B;
    color:#fff;
}

.page-number-active {
    background-color:#00299B;
    width:44px;
    height:44px;
    border:1px solid #00299B;
    border-radius:10px;
    cursor:pointer;
    text-align:center;
    color:#fff;
    line-height: 2.7
}

.pointer {
  cursor: pointer;
}

.pos-abs {
  position: absolute;
}

.pos-abs-center {
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	z-index:111;
}
    
.pos-arrow {
    position: absolute;
    right:-22px;
    top:50%;
    margin-top:-23px;
}

.pos-rel {
  position: relative;
}
    
.pos-scout {
    position: absolute;
    right:0;
    top:50%;
    margin-top:-154px;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.sr-only {
  font-size: 0;
  height: 1px;
  overflow: hidden;
  display: block;
}


/*---------------------- tabs -----------------------*/

.tab {
    overflow: hidden;
}

.tab button {
    background-color: #7BAC41;
    color: #fff;
    font-family: "Albert Sans", sans-serif;
    border: 1px solid #7BAC41;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    padding: 15px 25px;
    text-transform: uppercase;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.tab button:hover {
    background-color: #2e4a22;
    border: 1px solid #2e4a22;
    color: #fff;
}

.tab button.active {
    background-color: #2e4a22;
    color: #fff;
}

.tabcontent {
    display: none;
}



/*---------------------- /tabs -----------------------*/



.text-black {
  color: #000;
}

.text-green-dk {
  color: #2e4a22;
}

.text-green-lt {
  color: #7BAC41;
}

.text-gray {
  color: #939393;
}

.text-pink {
  color: #e78780;
}

.text-white {
  color: #fff;
}

.text-block {
  max-width: 500px;
}

.text-block2 {
  max-width: 300px;
}

.text-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-mont {
  font-family: "Montserrat", sans-serif;
}

.text-italic {
  font-style: italic;
}

.text-left {
  text-align: left;
}

.text-medium {
  font-weight: 400;
}

.text-right {
  text-align: right;
}

.text-shadow {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.65);
}

.text-small {
  font-size: 80%;
}

.text-spacing {
  letter-spacing: 2px;
}

.text-thin {
  font-weight: 200;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-underline {
  text-decoration: underline;
}

.text-vertical {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding: 60px 40px;
  position: relative;
}

.wrapper-np {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.wrapper-sm {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  padding: 60px 40px;
  position: relative;
}

.wrapper-sm-np {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  padding-left: 40px;
  padding-right: 40px;
}

.wrapper-xs {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  padding: 60px 40px;
  position: relative;
}

.underline {
  text-decoration: underline;
}

.vh-50 {
  height: 50vh !important;
}

.vh-75 {
  height: 75vh !important;
}

.vh-100 {
  height: 100vh !important;
}

.video-container {
  padding-left: 255px;
}

.video-container video {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  z-index: 11;
  height: 75vh;
}

.video-dimensions {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-dimensions iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper {
  padding: 30px 10px;
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.width-10 {
  width: 10%;
  box-sizing: border-box;
}

.width-14 {
  width: calc(100% / 7);
  box-sizing: border-box;
}

.width-16 {
  width: calc(100% / 6);
  box-sizing: border-box;
}

.width-20 {
  width: 20%;
  box-sizing: border-box;
}

.width-25 {
  width: 25%;
  box-sizing: border-box;
}

.width-33 {
  width: 33.333%;
  box-sizing: border-box;
}

.width-50 {
  width: 50%;
  box-sizing: border-box;
}

.width-66 {
  width: 66.666%;
  box-sizing: border-box;
}

.width-75 {
  width: 75%;
  box-sizing: border-box;
}

.width-80 {
  width: 80%;
  box-sizing: border-box;
}

.width-90 {
  width: 90%;
  box-sizing: border-box;
}

.width-100 {
  width: 100%;
  box-sizing: border-box;
}

.z-11 {
  z-index: 11;
}



/*---------------------- footer -----------------------*/



.footer-bottom {
    background-color:#2e4a22;
    width:100%;    
    border-top: 1px solid rgba(255,255,255,0.3);
}

.footer-container {
    background-color:#7BAC41;
    border-top: 1px solid rgba(255,255,255,0.3);
    width:100%;
}

.footer-form input {
    background-color: #000;
    display: block;
	border:0;
    width: 100%;
    padding: 5px;
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 300;
    margin-bottom: 10px;
    border-bottom: 1px solid #707070;
    box-sizing: border-box;
}

.footer-form input[type=submit] {
    background:url(/images/footer_btn_arrow.png) no-repeat right 65%;
}

.footer-links {
    display:flex;
    justify-content:center; 
    flex-wrap:wrap;
}

.footer-links li {
	padding:0 20px;
    border-right:1px solid rgba(255,255,255,0.3);
    line-height:.1em;
}

.footer-links li:last-child {
    border-right:0;
}

.footer-links li a {
	color:#fff;
    padding:10px;
}

.footer-social {
	display:flex;
    flex-wrap:wrap;
	align-items:center;
    padding:20px 0;
}

.footer-social li {
	padding:0 10px 10px;
}

.footer-social li:first-child {
	padding:0 10px 10px 0;
}

.footer-social a:hover {
	color:#2e4a22;
}

.footer-tabs {
    display: flex;
    flex-wrap:wrap;
	width: 100%;
	padding:20px 40px;
	box-sizing: border-box;
}

.footer-tabs .nav p {
    display:inline-block; 
    width:100%;
    padding:10px 0;
}

.footer-tabs .nav a {
    display:inline-block; 
    color:#fff;
    width:100%;
    padding:10px 0;
}

.footer-tabs .nav a:hover {
    color:#2e4a22;
}

.footer-wrapper {
	max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
	display: flex;
	box-sizing: border-box;
}

.footer-logo img {
	height:90px;
}

.footer-btn {
    display: inline-block;
    background-color: #000;
    color: #707070;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: 250ms all ease-in-out;
    transition: 250ms all ease-in-out;
}






@media only screen and (min-width: 1050px) {
    
  .mobile-menu {
    display: none;
  }    
    
}
    

@media only screen and (max-width: 1050px) {
    
    
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  .b-cancel {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
  }

  .b-l-thin {
    border-left-width: 0;
    border-top-width: 1px;
    border-top-style: solid;
    padding-top: 30px;
  }

  .fa-plus {
    right: 20px;
    bottom: 56%;
  }

  .flex-center-mobile {
    justify-content: center;
  }

  .flex-column-mobile {
    flex-direction: column;
  }

  .flex-column-reverse-mobile {
    flex-direction: column-reverse;
  }

  .flex-align-start-mobile {
    align-items: flex-start;
  }

  .flex-start-mobile {
    justify-content: flex-start;
  }

  .flex-wrap-mobile {
    flex-wrap: wrap;
  }

  .footer-nav {
    text-align: left;
  }

  .footer-nav a {
    padding: 10px 0;
  }

  .footer-social {
    margin-top: 20px;
  }

  .footer-wrapper {
    padding: 40px 30px;
  }

  .gap-10-50 {
    gap:50px;
  }

  .header {
    height: 500px;
  }

  .header-mobile {
    display: flex;
    align-items: center;
  }

  .header-container {
    margin-top:72px;
  }
    
  .header-menu img {
    width:65px;
  }

  .header-nav {
    display: none;
  }

  .header-slider-container {
    margin-top:84px;
  }

  .header-wrapper {
    padding: 5px 30px;
  }

  input[type='text'],
  input[type='email'],
  select{
    font-size:14px!important;
  }

  ::placeholder {
    font-size:14px;
  }

  .list-numbered {
    margin-left: 30px;
  }

  .m-cancel {
    margin: 0 !important;
  }

  .m-h-cancel {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .m-t-xxxl-mobile {
    margin-top: 50px;
  }
    
  .main-container {
    margin-top: 75px;
  }
    
  .mobile-hide {
    display: none !important;
  }

  .mobile-menu .closebtn {
    right: 30px;
  }

  .mobile-show {
    display: block !important;
  }

  .mobile-show-flex {
    display: flex !important;
  }

  .nav-menu {
    padding-left: 50px;
  }

  .p-cancel {
    padding: 0 !important;
  }

  .p-t-cancel {
    padding-top: 0 !important;
  }

  .p-h-cancel {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .p-v-cancel {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .p-v-mobile {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-number {
    line-height: 3;
  }

  .page-number-active {
    line-height: 3;
  }

  .pull-cancel {
    float: none;
  }

  .text-block {
    max-width: 100%;
  }

  .text-center-mobile {
    text-align: center;
  }

  .text-left-mobile {
    text-align: left;
  }

  .text-right-mobile {
    text-align: right;
  }

  .text-vertical {
    writing-mode: lr;
    transform: none;
  }

  .wrapper {
    padding: 50px 20px;
  }

  .wrapper-np {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wrapper-sm {
    padding: 50px 20px;
  }

  .wrapper-sm-np {
    padding-left: 20px;
    padding-right: 20px;
  }

  .vh-cancel {
    height: initial !important;
  }

  .video-container {
    padding-left: 0px;
  }

  .video-wrapper {
    padding: 0 50px;
  }

  .width-20 {
    width: 100%;
  }

  .width-25 {
    width: 100%;
  }
	
  .width-33 {
    width: 100%;
  }

  .width-50 {
    width: 100%;
  }

  .width-66 {
    width: 100%;
  }

  .width-75 {
    width: 100%;
  }

  .width-80 {
    width: 100%;
  }

  .no-wrap .width-20 {
    width: 20%;
  }

  .no-wrap .width-25 {
    width: 25%;
  }

  .no-wrap .width-50 {
    width: 50%;
  }

  .no-wrap .width-66 {
    width: 66.666%;
  }

  .no-wrap .width-75 {
    width: 75%;
  }

  .no-wrap .width-80 {
    width: 80%;
  }
}



@media only screen and (max-width: 640px) {
    
    
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 20px;
  }

  body {
    font-size: 14px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 12px;
  }

  h6 {
    font-size: 11px;
  }

  .header {
    height: 400px;
  }

  .wrapper {
    padding: 50px 20px;
  }
}



@media only screen and (max-width: 479px) {
	
	
	
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }
}


