@media (max-width: 767px) {
  html {
    font-size: 8px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 9px;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 10px;
  }
}
html, body {
  min-height: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font: 600 18px neue-kabel, Arial, sans-serif;
  background: #fff url(images/background.jpg) center center/cover fixed no-repeat;
  padding: 0 20px;
  z-index: 0;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 767px) {
  body {
    background: none;
  }

  body:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(images/background.jpg) center center/cover no-repeat;
    z-index: -2;
  }
}
img {
  max-width: 100%;
}

a, button {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  cursor: pointer;
}

sup {
  line-height: 1em;
  vertical-align: super;
  display: inline-block;
  position: static;
}

input {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

iframe {
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

*::-moz-selection {
  color: #fff;
  background-color: #a92a23;
}
*::-moz-selection * {
  color: #fff;
}
*::selection {
  color: #fff;
  background-color: #a92a23;
}
*::selection * {
  color: #fff;
}

.container, .container-fluid {
  max-width: 960px;
  width: 100% !important;
}

#box {
  max-width: 800px;
  margin: auto;
  -moz-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.35);
}

h1 {
  font: italic 800 2.65rem neue-kabel, Arial, sans-serif;
  color: white;
  text-align: center;
  padding: 2rem 15px;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2I0MmYyNyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzkyMjIxYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b42f27), color-stop(100%, #92221c));
  background-image: -moz-linear-gradient(top, #b42f27, #92221c);
  background-image: -webkit-linear-gradient(top, #b42f27, #92221c);
  background-image: linear-gradient(to bottom, #b42f27, #92221c);
}
h1 span {
  display: inline-block;
  height: 1em;
  width: 1em;
  background: url(images/star.svg) center center/contain no-repeat;
  margin-left: 1rem;
  text-indent: -9999px;
  vertical-align: baseline;
}

#info {
  background: #7b1913;
  position: relative;
  z-index: 0;
  color: white;
  padding: 4rem 2.5rem;
}
#info:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  background: url(images/star2.svg) center bottom/45.2rem no-repeat;
}
#info ul {
  margin: 0;
  list-style: none;
  text-align: center;
  padding: 0;
}
#info ul li {
  position: relative;
}
#info ul li:not(:last-child) {
  margin-bottom: .7em;
}
#info ul li span {
  display: inline-block;
  position: relative;
  padding: 0 40px;
}
#info ul li span:before {
  content: '';
  background: url(images/star.svg) center center/contain no-repeat;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
}
#info ul li span:after {
  content: '';
  background: url(images/star.svg) center center/contain no-repeat;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
}

#meet {
  background: #19478f;
  text-align: center;
  display: -webkit-flex;
  display: flex;
}
#meet img {
  display: inline-block;
}
#meet blockquote {
  margin: 0;
  padding: 0;
  padding: 30px 4rem;
  color: white;
  font-style: italic;
  font-size: 2.5rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-shadow:1px 1px 3px rgba(0,0,0,.3);
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzEyMzU2YyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzBlMjg1MiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #12356c), color-stop(100%, #0e2852));
  background-image: -moz-linear-gradient(top, #12356c, #0e2852);
  background-image: -webkit-linear-gradient(top, #12356c, #0e2852);
  background-image: linear-gradient(to bottom, #12356c, #0e2852);
}
#meet blockquote cite {
  display: block;
  font-size: .6em;
  margin-top: 1em;
}
#meet blockquote p {
  margin-bottom: 0;
  position: relative;
  z-index: 0;
}
#meet blockquote p:before {
  content: '';
  z-index: -2;
  display: inline-block;
  position: absolute;
  top: -20px;
  left: -20px;
  width: 75px;
  height: 50px;
  background: url(images/leftquote.svg) center center/contain no-repeat;
}

#keepup {
  background: white;
  text-align: center;
  padding: 4rem 3rem;
}
#keepup #donate {
  display: inline-block;
  padding: 20px 30px;
  font-size: 30px;
  line-height: 1em;
  color: white;
  background: #b91813;
  font-weight: 800;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  -moz-transition: background 0.5s, color 0.5s;
  -o-transition: background 0.5s, color 0.5s;
  -webkit-transition: background 0.5s, color 0.5s;
  transition: background 0.5s, color 0.5s;
}
#keepup #donate i, #keepup #sign i {
  margin-right: 10px;
  color: #f4d448;
  -moz-transition: background 0.5s, color 0.5s;
  -o-transition: background 0.5s, color 0.5s;
  -webkit-transition: background 0.5s, color 0.5s;
  transition: background 0.5s, color 0.5s;
}
#keepup #sign i{color:#a8d8ff;}
#keepup #donate:hover, #keepup #donate:focus {
  background: #0073cf;
  text-decoration: none;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
body #keepup a#sign {
    display: inline-block;
    padding: 13px 25px;
    font-size: 2.2rem;
    line-height: 1em;
    color: white;
    background: #0073cf;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    -moz-transition: background 0.5s, color 0.5s;
    -o-transition: background 0.5s, color 0.5s;
    -webkit-transition: background 0.5s, color 0.5s;
    transition: background 0.5s, color 0.5s;
    transition-property: background, color;
    transition-duration: 0.5s, 0.5s;
    transition-timing-function: ease, ease;
    transition-delay: 0s, 0s;
    width: inherit;
    height: inherit;
    border-radius: 0;
}
body #keepup a#sign:hover, body #keepup a#sign:focus {
  background: #12356c;
  text-decoration: none;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
#keepup > a:not(#donate) {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  margin: 5px;
  font-size: 22px;
  text-align: center;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  -moz-transition: background 0.3s, color 0.3s;
  -o-transition: background 0.3s, color 0.3s;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
#keepup a:not(#donate):before{text-shadow:1px 1px 3px rgba(0,0,0,.3);}
#keepup a.fa-facebook-f {
  background-color: #3a589b;
}
#keepup a.fa-twitter {
  background-color: #598dca;
}
#keepup a.fa-instagram{
  background-color:#dd2a7b;
  position: relative;
  z-index: 0;
  display: inline-block;
}
#keepup a.fa-instagram:after{
  content:'';
  border-radius: 50px;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition:opacity 0.3s;
  z-index: -2;
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}
#keepup a.fa-instagram:hover:after, #keepup a.fa-instagram:focus:after{opacity:0;}
#keepup a:not(#donate):hover, #keepup a:not(#donate):focus {
  text-decoration: none;
  color: #002868;
  background: transparent;
}
#keepup h2 {
  color: #a92a23;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: .7em;
}
#keepup-off form {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
#keepup-off form input, #keepup-off form button {
  display: inline-block;
  padding: 12px 20px;
  font-size: 22px;
  height: auto;
  border: none;
  margin: 8px;
  -webkit-flex: 1;
  flex: 1;
}
#keepup-off form input {
  background: #f7f7f7;
  color: #a92a23;
  -moz-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1) inset;
  -webkit-box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1) inset;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1) inset;
}
#keepup-off form input:-moz-placeholder {
  color: #a92a23;
  opacity: .5;
}
#keepup-off form input::-moz-placeholder {
  color: #a92a23;
  opacity: .5;
}
#keepup-off form input:-ms-input-placeholder {
  color: #a92a23;
  opacity: .5;
}
#keepup-off form input::-webkit-input-placeholder {
  color: #a92a23;
  opacity: .5;
}
#keepup form button {
  font: 600 18px neue-kabel, Arial, sans-serif;
  background: #008b14;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  /*width: 160px;*/
  white-space: nowrap;
  -moz-transition: background 0.5s, color 0.5s;
  -o-transition: background 0.5s, color 0.5s;
  -webkit-transition: background 0.5s, color 0.5s;
  transition: background 0.5s, color 0.5s;
}
#keepup form button:hover, #keepup form button:focus {
  background: #b91813;
}
.ctct-form-field {
  width: 32%;
  display: inline-block;
}
footer {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2I0MmYyNyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzkyMjIxYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b42f27), color-stop(100%, #92221c));
  background-image: -moz-linear-gradient(top, #b42f27, #92221c);
  background-image: -webkit-linear-gradient(top, #b42f27, #92221c);
  background-image: linear-gradient(to bottom, #b42f27, #92221c);
  text-align: center;
  padding: 3rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
footer h2 {
  font-size: 3rem;
  margin-bottom: 1em;
}
footer h2 strong {
  display: block;
}
footer p {
  font-size: 12px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  h1 span{
    display: block;
    background:none;
    height:10px;
  }
  #meet {
    display: block;
  }
  #meet blockquote {
    display: block;
  }

  #keepup form {
    display: block;
  }
  #keepup form input, #keepup form button {
    display: block;
    width: 100%;
  }
  #keepup form input {
    margin-bottom: 10px;
  }
  #keepup form input, #keepup form button{margin:0 0 10px 0;}
  .ctct-form-field {
    width: 100%;
    display: block;
  }
}
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.stars li {
  margin-bottom: 1em;
}
.stars .far{
  color: #f4d448;
}
.stars strong{
  color: #0e2852;
}