/* version 1.0 */

/* 
  css reminders 

  @font-face {
    font-family: 'San Francisco';
    font-style: normal;
    font-weight: 400;
    src: url('https://s3.amazonaws.com/fed40.com/css/san-francisco-regular.ttf') format('ttf');
  }  


  site font reference
    font-family: 'Montserrat', sans-serif;
        available: 400, 500, 700, 800
    font-family: 'Headey';
        available: 400


  title:
    color: #2788e0;
    font-size: 56px;    
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;

  p:
    color: #424242;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;


  background gradient reference
    background-color: #eee;
    background: linear-gradient(180deg, #F9F0EB, #f7e3d9);
    background: linear-gradient(to bottom, #FFFFFF, #F2F2F2);
    background: linear-gradient(140deg, #375192, #352564);

  content container
    box-shadow: 1px 1px 4px rgba(0,0,0,0.065);
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.15);
    border-radius: 3px;

  transition
    transition: all 320ms ease-in-out;
*/

/* font families */
@font-face {
  font-family: "Headey";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/wp-content/themes/fce/assets/fonts/headey-webfont.woff2") format("woff2");
}

/* site element styles */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0;
  -webkit-font-smoothing: antialiased;
  color: #253763;
}

/* clear */
.c:after,
.c:before {
  content: "";
  display: table;
}

.c:after {
  clear: both;
}

a,
p,
i,
img,
input[type="submit"] {
  transition: all 320ms ease-in-out;
}

h1,
h2,
h3,
h4,
p {
  margin: 0px;
  padding: 0px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

h1 {
  font-size: 38px;
}

h2,
h3,
h4 {
  font-size: 32px;
}

p {
  font-size: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

/* site colors */
:root {
  --blue-light: #2496d1;
  --blue-dark: #253763;
  --gray-light: #f2f2f4;
  --gray-dark: #edeef2;
  --green: #62b146;
  --white: #fff;
}

/* components */

.s-cont {
  margin: 0px;
  padding: 0px;
}

.s {
  width: 100%;
  max-width: 1400px;
  margin: 0px auto;
  padding: 0px 30px;
}

.button {
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}

/* modifiers */
.flex {
  display: flex;
}

.blue-light {
  background-color: var(--blue-light);
  color: var(--white);
}

.blue-light-border {
  border: 2px solid var(--blue-light);
  background-color: var(--white);
  color: var(--blue-light);
}

.blue-light-border:hover {
  background-color: var(--blue-light);
  color: var(--white);
}

.blue-dark {
  background-color: var(--blue-dark);
  color: var(--white);
}

.blue-dark-border {
  border: 2px solid var(--blue-dark);
  background-color: var(--white);
  color: var(--blue-dark);
}

.blue-dark-border:hover {
  background-color: var(--blue-dark);
  color: var(--white);
}

.green {
  background-color: var(--green);
  color: var(--white);
}

.green-border {
  border: 1px solid var(--green);
  background-color: var(--white);
  color: var(--green);
}

.green-border:hover {
  background-color: var(--green);
  color: var(--white);
}

/* header */

.nav {
  position: fixed;
  z-index: 7;
  background-color: #fff;
  width: 100%;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}

.desktop-nav {
  width: 100%;
  max-width: 1400px;
  margin: 0px auto 0px;
  padding: 0px 30px;
}

.desktop-nav-l {
  display: flex;
  float: left;
  align-items: center;
  height: 70px;
}

.desktop-nav-l-a {
  display: inline-block;
  padding: 0px 0px;
  cursor: pointer;  
}

.desktop-nav-img {
  width: 200px;
}

.desktop-nav-r {
  display: flex;
  float: right;
  align-items: center;
  height: 70px;
}

/* header - dropdown level 1 */
ul.dropdown { 
  position: relative;
  float: left;
}

ul.dropdown li { 
  float: left;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

ul.dropdown a:hover {
  
}

ul.dropdown a:active {
  
}

ul.dropdown li a {
  display: block;
  border-bottom: 4px solid var(--white);
  padding: 26px 12px 22px;
  cursor: pointer;
  transition: all 0ms ease-in-out;
}

ul.dropdown li:hover a {
  border-bottom: 4px solid var(--blue-light);
}

ul.dropdown li a .fas {
  margin: 0px 0px 0px 4px;
}

ul.dropdown li:last-child a {
  
}

ul.dropdown li.hover,
ul.dropdown li:hover {
  position: relative;
}

ul.dropdown li.hover a {
  
}

/* header - dropdown level 2 */
ul.dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.08);
  visibility: hidden;
}

ul.dropdown ul li {
  float: none;
  background-color: #fff;
  padding: 0px 14px;
}
									  
ul.dropdown ul li a {
  display: inline-block;
  border-bottom: 1px solid var(--gray-light) !important;
  width: 100%;
  padding: 14px 0px;
  color: var(--blue-dark); 
  font-size: 11px;
  font-weight: 500;
}

ul.dropdown ul li:last-child a {
  border-bottom: 0px solid var(--gray-light) !important;
}

ul.dropdown ul li a:hover {
  color: var(--blue-light);
} 

/* header - dropdown level 3 
ul.dropdown ul ul {
  left: 100%;
  top: 0;
} 

ul.dropdown li:hover > ul {
  visibility: visible;
}
*/

/* header - dropdown-donate level 1 */
ul.dropdown-donate { 
  position: relative;
  float: left;
}

ul.dropdown-donate li { 
  float: left;
}

ul.dropdown-donate a:hover {
  
}

ul.dropdown-donate a:active {
  
}

ul.dropdown-donate li a {
  display: block;
  cursor: pointer;
  transition: all 0ms ease-in-out;
}

ul.dropdown-donate li:hover a {
  
}

ul.dropdown-donate li:last-child a {
  
}

ul.dropdown-donate li.hover,
ul.dropdown-donate li:hover {
  position: relative;
}

ul.dropdown-donate li.hover a {
  
}

/* header - dropdown-donate level 2 */
ul.dropdown-donate ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 140px;
  padding: 10px 0px 0px;
  visibility: hidden;
}

ul.dropdown-donate ul li {
  float: none;
}

ul.dropdown-donate ul li:first-of-type {
  padding: 0px 0px 10px;
}
									  
ul.dropdown-donate ul li a {
  display: flex; 
  justify-content: center;
  align-items: center;
  height: 42px;  
  padding: 0px;
  font-size: 12px;
  letter-spacing: 0px;
}

ul.dropdown-donate ul li:last-child a {
  
}

ul.dropdown-donate ul li a:hover {
  
} 

.desktop-nav-r-a-1 {
  display: inline-block;
  width: 140px;
  margin: 0px 14px;
}

.desktop-nav-r-a-1:hover {
  
}

.desktop-nav-r-a-2 {
  display: inline-block;
  width: 140px;
  margin: 0px;
}

.desktop-nav-r-a-2:hover {
  
}

.desktop-nav-r-a-3 {
  margin: 0px 0px 0px 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-align: center;
  text-transform: uppercase;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
}

.desktop-nav-r-a-3:hover {
  
}

.desktop-nav-r-a-3 span {
  padding: 0px 10px 0px 0px;
  font-size: 30px;
}

.desktop-nav-r-a-4 {
  display: inline-block;
  width: 140px;
  margin: 0px;
}

.desktop-nav-r-a-4:hover {
  
}

.mobile-nav {
  display: none;
  width: 100%;
  margin: 0px 0px 0px;
  padding: 0px 30px;
}

.mobile-nav-l {
  float: left;
  display: flex;
  align-items: center;
  height: 70px;
}

.mobile-nav-l-a {
  display: inline-block;
  padding: 0px 0px;
  cursor: pointer;
}

.mobile-nav-l-img {
  width: 20px;
}

.mobile-nav-r {
  display: flex;
  float: right;
  align-items: center;
  height: 70px;
}

.mobile-nav-r-a {
  margin: 0px;
  padding: 8px 10px;
  font-size: 10px;
}

.mobile-middle-img-a {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0px;
  left: 70px;
  width: 140px;
  margin: 0px auto 0px;
  z-index: 10;
  height: 70px;
    
}

.mobile-middle-img {
  width: 170px;
}

.mobile-drawer-cont {
  position: fixed;
  background-color: #fff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  width: 280px;
  height: 100vh;
  padding: 80px 30px 30px;
  z-index: 6;
  transform: translateX(-280px);
  transition: all 400ms ease-in-out;
}

.mobile-drawer-cont-on {
  transform: translateX(0px);
}

.mobile-drawer {
  position: relative;
  height: 100%;
  padding: 20px 0px;
  overflow-y: scroll;
}

.mobile-drawer-account {
  display: block;
  border-bottom: 1px solid var(--gray-light) !important;
  margin: 0px 0px 0px;
  padding: 20px 0px;
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.mobile-drawer-account span {
  margin: 0px 2px 0px 0px;
}

.mobile-drawer-a {
  display: block;
  border-bottom: 1px solid var(--gray-light) !important;
  margin: 0px 0px 0px;
  padding: 20px 0px;
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.mobile-drawer-a-1 {
  display: block;
  width: 180px;  
  margin: 30px auto 20px;
  padding: 10px 14px;
  font-size: 14px; 
}

.mobile-drawer-a-2 {
  display: block;
  width: 180px;  
  margin: 0px auto;
  padding: 10px 14px;
  font-size: 14px; 
}

.mobile-accordion {
  display: block;
  border-bottom: 1px solid var(--gray-light) !important;
  margin: 0px 0px 0px;
  padding: 20px 0px;
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.mobile-accordion-active {
  margin: 0px;
}

.mobile-accordion .fas {
  margin: 0px 0px 0px 4px;
}

.mobile-panel {
  background-color: var(--white);
  max-height: 0px;
  margin: 0px;
  padding: 0px 0px 0px 14px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.mobile-panel a {
  display: block;
  border-bottom: 1px solid var(--gray-light) !important;
  margin: 0px 0px 0px;
  padding: 20px 0px;
  color: var(--blue-light);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.mobile-drawer-b {
  display: none;
  position: absolute;
  right: 0px;
  bottom: 40px;
  left: 0px;
}

.mobile-drawer-s {
  margin: 0px 0px 0px;
}

.mobile-drawer-s-a {
  display: inline-block;
  border: 1px solid #334258;
  background-color: #334258;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  margin: 0px 10px 0px 0px;
  padding: 7px 5px;
}

.mobile-drawer-s-a:last-child {
  margin: 0px;
}

.mobile-drawer-s-a span {
  color: #fff;
  font-size: 30px;
}

.mobile-drawer-b-d {
  display: inline-block;
  margin: 20px 0px 0px;
  display: none;
}

.mobile-drawer-b-img {
  margin: 0px;
}

.mobile-dark {
  position: fixed;
  background-color: #25376369;
  width: 100%;
  height: 100vh;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease-in-out;
}

.mobile-dark-on {
  opacity: 1;
  visibility: visible;
}

/* footer */
.footer-cont {
  background-color: var(--blue-dark);
  width: 100%;
  color: var(--white);
}

.footer {
  width: 100%;
}

.footer-top {
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin: 0px auto 0px;
  padding: 50px 30px 50px;
}

.footer-top-mobile {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  margin: 0px auto 0px;
  padding: 50px 30px 50px;
}

.footer-1 {
  width: 260px;
  margin: 0px;
}

.footer-2 {
  width: 260px;
  margin: 0px;
}

.footer-3 {
  width: 260px;
  margin: 0px;
}

.footer-4 {
  width: 310px;
  margin: 0px;
}

.footer-email-mobile {
  width: 100%;
  margin: 0px auto 50px;
}

.footer-1-mobile {
  width: 60%;
  margin: 0px;
}

.footer-2-mobile {
  width: 40%;
  margin: 0px 0px 30px;
}

.footer-3-mobile {
  width: 60%;
  margin: 0px;
}

.footer-4-mobile {
  width: 40%;
  margin: 0px;
}

.footer-social-mobile {
  width: 100%;
  margin: 0px auto 0px;
  text-align: center;
}

.footer-title {
  margin: 0px 0px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-title-2 {
  margin: 14px 0px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-links {
  margin: 0px;
}

.footer-link {
  padding: 0px 0px 10px;
}

.footer-p {
  font-size: 13px;
  line-height: 22px;
}

.footer-a {
  font-size: 13px;
}

.footer-a:hover {
  color: #ccc;
}

.footer-social {
  margin: 12px 0px 0px;
}

.footer-social-a {
  display: inline-block;
  margin: 0px 10px 0px 0px;
}

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

.footer-social-a .fab {
  font-size: 22px;
}

.footer-social-a-mobile {
  display: inline-block;
  margin: 40px 18px 0px 0px;
}

.footer-social-a-mobile:last-of-type {
  margin: 0px 0px 0px 0px;
}

.footer-social-a-mobile:hover {
  color: #ccc;
}

.footer-social-a-mobile .fab {
  font-size: 36px;
}

.footer-subscribe {
  margin: 14px 0px 0px;
}

.footer-subscribe-input {
  float: left;
  border: 2px solid var(--blue-light);
  border-radius: 4px 0px 0px 4px;
  background-color: var(--blue-dark);
  padding: 10px 10px;
  color: var(--white);
  font-size: 14px;
}

.footer-subscribe-input::placeholder {
  color: var(--white);
}

.footer-subscribe-input:focus {
  outline: none;
}

.footer-subscribe-button {
  background-color: var(--blue-light);
  border-radius: 0px 4px 4px 0px;
  border-style: none;
  padding: 12px 14px;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  -webkit-appearance: none;
}

.footer-img { 
  margin: -10px 0px 10px;
  width: 166px;
}

.footer-img-mobile {
  display: block;
  margin: 20px auto 0px;
  width: 220px;
}

.footer-bottom {
  border-top: 2px solid var(--white);
  margin: 0px;
  padding: 36px 0px;
}

.footer-bottom-p {
  max-width: 1400px;
  margin: 0px auto 0px;
  padding: 0px 30px;
  font-size: 13px;
  line-height: 23px;
  text-align: center;
}

#give-recaptcha-element div {
  margin: 0px auto 30px;
}

/* desktop */
@media only screen and (max-width: 1160px) {
}

/* tablet */
@media only screen and (max-width: 1023px) {
}

/* switch to mobile nav */
@media only screen and (max-width:1065px) {
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .footer-top {
    display: none;
  }
  
  .footer-top-mobile {
    display: flex;
  }
  
}

/* mobile */
@media only screen and (max-width: 767px) {
}

/* mobile scroll */
@media only screen and (max-height:600px) {
  
  .mobile-drawer {
    overflow: scroll;
  }
  
}
