/* ===================================== https://demos.scotch.io/visual-guide-to-css3-flexbox-flexbox-playground/demos ===================================== */
/*
 Flexbox grid @mixin
 EXAMPLE
 .flexbox {
 @include boxGrid(5, 4%);
 > div {
 margin-bottom: .4em;
 background: #333;
 padding: .8em;
 color: #fff;
 }
 }
 */
/* Usage
 @include add-font('FontName', 'fontfilename', 400);
 @media screen and (-webkit-min-device-pixel-ratio:0) {
 @include add-svg-font('FontName', 'fontfilename', 400);
 }
 */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 1px;
  padding: 0;
  margin: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block;
}
audio, canvas, video, progress {
  vertical-align: baseline;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]), [hidden], template {
  display: none;
  height: 0;
}
mark {
  background: none;
  color: inherit;
}
sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.5em;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
input[type='text'], input[type='number'], input[type='email'], input[type='password'], input[type='color'], input[type='url'], input[type='image'], input[type='tel'], input[type='submit'], input[type='file'], input[type='range'], input[type='reset'], input[type='button'], input[type='search'], button, textarea {
  -webkit-appearance: none;
  outline: 0 none;
}
strong {
  font-weight: 700;
}
input[type="submit"], button {
  cursor: pointer;
}
textarea, button, a, input {
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
[data-aload] {
  background-image: none !important;
}
svg:not(:root) {
  overflow: hidden;
}
.hidden {
  height: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 0;
  border: 0;
  -webkit-appearance: none;
}
.fullframe {
  height: 0;
  margin: 0 0 20px;
  overflow: hidden;
  padding-bottom: 56.5%;
  position: relative;
  z-index: 0;
}
.fullframe > iframe, .fullframe > object, .fullframe > embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
p {
  padding-bottom: 0.7407407407rem;
}
ul, ol {
  list-style: none;
}
.clear {
  clear: both;
}
.cfx:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .cfx {
  display: block;
}
* html .cfx {
  height: 1%;
}
::-moz-selection {
  color: #fff;
  background: #3598c6;
}
::selection {
  color: #fff;
  background: #3598c6;
}
:focus {
  outline: none;
}
::-moz-focus-inner {
  border: 0;
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.flex_start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
/*
 Custom Hamburger
 */
.nav-icon {
  -webkit-transition: all 0.5s ease-in-out;
  -khtml-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  position: relative;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: none;
  appearance: none;
  box-shadow: none;
  cursor: pointer;
  outline: none;
  border: none;
  background: #3598c6;
}
.nav-icon i {
  top: 11.5px;
  -webkit-transition: all 0.25s ease-in-out;
  -khtml-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  height: 1px;
  background: #fff;
  position: absolute;
  right: 8px;
  left: 8px;
  display: block;
  opacity: 1;
}
.nav-icon i:nth-child(2) {
  top: 19.5px;
}
.nav-icon i:nth-child(3) {
  top: 27.5px;
}
.nav-icon.is-active {
  background: #e8222d;
}
.nav-icon.is-active i {
  left: 10px;
  right: 10px;
}
.nav-icon.is-active i:nth-child(1) {
  -webkit-transform: rotate(135deg);
  -khtml-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 19.5px;
}
.nav-icon.is-active i:nth-child(2) {
  -webkit-transform: translate3d(-100%, 0, 0);
  -khtml-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
}
.nav-icon.is-active i:nth-child(3) {
  -webkit-transform: rotate(-135deg);
  -khtml-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: 19.5px;
}
.sweet-overlay {
  background: rgba(0, 0, 0, .4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 1000;
}
.sweet-alert {
  background-color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-radius: 5px;
  box-sizing: border-box;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-top: -200px;
  max-height: 90%;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  z-index: 2000;
}
.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 60px;
  display: block;
}
.sweet-alert p {
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}
.sweet-alert hr {
  height: 10px;
  color: transparent;
  border: 0;
}
.sweet-alert button {
  color: #fff;
  border: 0;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 0 5px;
  cursor: pointer;
}
.sweet-alert button:focus {
  outline: none;
}
.sweet-alert button.cancel[disabled] {
  opacity: 0.4;
}
.sweet-alert button.confirm[disabled] {
  border: 4px solid transparent;
  border-color: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0 30px;
  vertical-align: middle;
  background-color: transparent !important;
  color: transparent;
  cursor: default;
  border-radius: 100%;
  animation: rotate-loading 1.5s linear 0s infinite normal;
}
.sweet-alert button::-moz-focus-inner {
  border: 0;
}
.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important;
}
.sweet-alert .icon {
  width: 80px;
  height: 80px;
  border: 4px solid #808080;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}
.sweet-alert .icon.error {
  border-color: #f27474;
}
.sweet-alert .icon.error .x-mark {
  position: relative;
  display: block;
}
.sweet-alert .icon.error .line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #f27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}
.sweet-alert .icon.error .line.left {
  transform: rotate(45deg);
  left: 17px;
}
.sweet-alert .icon.error .line.right {
  transform: rotate(-45deg);
  right: 16px;
}
.sweet-alert .icon.warning {
  border-color: #f8bb86;
}
.sweet-alert .icon.warning .body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #f8bb86;
}
.sweet-alert .icon.warning .dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #f8bb86;
}
.sweet-alert .icon.info {
  border-color: #c9dae1;
}
.sweet-alert .icon.info::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #c9dae1;
}
.sweet-alert .icon.info::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #c9dae1;
}
.sweet-alert .icon.success {
  border-color: #a5dc86;
}
.sweet-alert .icon.success::before, .sweet-alert .icon.success::after {
  content: '';
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: #fff;
  transform: rotate(45deg);
}
.sweet-alert .icon.success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  transform: rotate(-45deg);
  transform-origin: 60px 60px;
}
.sweet-alert .icon.success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  transform: rotate(-45deg);
  transform-origin: 0 60px;
}
.sweet-alert .icon.success .placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, .2);
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}
.sweet-alert .icon.success .fix {
  width: 5px;
  height: 90px;
  background-color: #fff;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  transform: rotate(-45deg);
}
.sweet-alert .icon.success .line {
  height: 5px;
  background-color: #a5dc86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}
.sweet-alert .icon.success .line.tip {
  width: 25px;
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
}
.sweet-alert .icon.success .line.long {
  width: 47px;
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
}
.sweet-alert .icon.custom {
  background-size: contain;
  border-radius: 0;
  border: 0;
  background-position: center center;
  background-repeat: no-repeat;
}
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
.show-sweet-alert {
  animation: showSweetAlert 0.3s;
}
.show-sweet-alert.no-animation {
  animation: none;
}
.hide-sweet-alert {
  animation: hideSweetAlert 0.2s;
}
.hide-sweet-alert.no-animation {
  animation: none;
}
@keyframes animate-success-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animate-success-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
.animate-success-tip {
  animation: animate-success-tip 0.75s;
}
.animate-success-long {
  animation: animate-success-long 0.75s;
}
.icon.success.animate::after {
  animation: rotatePlaceholder 4.25s ease-in;
}
@keyframes animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
.animate-error-icon {
  animation: animate-error-icon 0.5s;
}
@keyframes animate-x-mark {
  0% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
.animate-x-mark {
  animation: animate-x-mark 0.5s;
}
@keyframes pulse-warning {
  0% {
    border-color: #f8d486;
  }
  100% {
    border-color: #f8bb86;
  }
}
.pulse-warning {
  animation: pulse-warning 0.75s infinite alternate;
}
@keyframes pulse-warning-ins {
  0% {
    background-color: #f8d486;
  }
  100% {
    background-color: #f8bb86;
  }
}
.pulse-warning-ins {
  animation: pulse-warning-ins 0.75s infinite alternate;
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes deniedsmile {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
@-webkit-keyframes deniedemoji {
  0% {
    -webkit-transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg);
  }
}
@-moz-keyframes deniedsmile {
  0% {
    -moz-transform: scale(1);
  }
  10%, 20% {
    -moz-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -moz-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -moz-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -moz-transform: scale(1) rotate(0deg);
  }
}
@-ms-keyframes deniedsmile {
  0% {
    -ms-transform: scale(1);
  }
  10%, 20% {
    -ms-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -ms-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -ms-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -ms-transform: scale(1) rotate(0deg);
  }
}
@-o-keyframes deniedsmile {
  0% {
    -o-transform: scale(1);
  }
  10%, 20% {
    -o-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -o-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -o-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -o-transform: scale(1) rotate(0deg);
  }
}
#is-ie-denied {
  background: #f2eee5;
  position: fixed;
  overflow: auto;
  z-index: 8080;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
#is-ie-denied #is-ie2-10 {
  margin: -180px 0 0 -300px;
  text-align: center;
  position: absolute;
  font-family: 'Chaparral Pro', 'Arial', sans-serif;
  font-weight: 300;
  height: 360px;
  width: 600px;
  left: 50%;
  top: 50%;
}
#is-ie-denied #is-ie2-10 h1 {
  color: #323232;
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  margin-top: 32px;
}
#is-ie-denied #is-ie2-10 span {
  -ms-animation: 0.7s ease-in-out 0s normal none 1 running deniedsmile;
  -o-animation: 0.7s ease-in-out 0s normal none 1 running deniedsmile;
  -webkit-animation: 0.7s ease-in-out 0s normal none 1 running deniedsmile;
  -moz-animation: 0.7s ease-in-out 0s normal none 1 running deniedsmile;
  animation: 0.7s ease-in-out 0s normal none 1 running deniedsmile;
  color: #f66;
  display: inline-block;
  font-family: 'monospace';
  font-size: 60px;
  -ms-transform-origin: 50% 100% 0;
  -o-transform-origin: 50% 100% 0;
  -webkit-transform-origin: 50% 100% 0;
  -moz-transform-origin: 50% 100% 0;
  transform-origin: 50% 100% 0;
}
#is-ie-denied #is-ie2-10 p {
  color: #555;
  font-size: 19px;
  line-height: 24px;
  margin-top: 24px;
}
#is-ie-denied #is-ie2-10 p a {
  color: #f66;
  text-decoration: underline;
}
#is-ie-denied #is-ie2-10 p a:hover {
  color: #000;
  text-decoration: none;
}
html {
  font: 400 27px/1.4 'Chaparral Pro', 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  background: #f5f5f5;
}
html > body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: opacity 1s ease;
  -khtml-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
  position: relative;
  max-width: 1920px;
  background: #fff;
  min-height: 100vh;
  color: #545554;
  margin: 0 auto;
  opacity: 1;
}
#wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
}
a {
  outline: 0 none;
  color: #3598c6;
}
a:hover {
  text-decoration: none;
}
a > img {
  border: 0;
}
.alignleft, .al {
  float: left;
}
.alignright, .ar {
  float: right;
}
.aligncenter, .wpa_slideshow img, .ac {
  margin-left: auto;
  margin-right: auto;
}
img.aligncenter, .wpa_slideshow img, img.ac {
  display: block;
}
.googlemap {
  margin-bottom: 20px;
}
.googlemap img {
  max-width: none;
}
hr {
  background: #e1e1e1;
  border: 0 none;
  display: block;
  margin: 20px 0;
  height: 1px;
  clear: both;
}
.row {
  position: relative;
  width: 1170px;
  margin: 0 auto;
  max-width: 96%;
  z-index: 0;
}
.wpcf7 {
  position: relative;
}
.wpcf7 .screen-reader-response {
  display: none !important;
}
.wpcf7 .wpcf7-not-valid-tip {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: auto;
  font: 400 12px/45px 'Chaparral Pro', 'Arial', sans-serif;
  text-align: center;
  background: #eee;
  color: #ff5f5f;
}
.wpcf7 .wpcf7-response-output {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  bottom: auto;
  font: 400 12px/20px 'Chaparral Pro', 'Arial', sans-serif;
  text-align: center;
  background: #fff;
  margin: 20px 0;
  display: none;
  padding: 2%;
}
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  background: #ff5f5f;
  color: #fff;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #1091ae;
  color: #fff;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #16a085;
  color: #fff;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block !important;
  position: relative;
}
.wpcf7 .ajax-loader {
  background: #fff;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  margin: 0 -20px 0 10px;
  padding: 5px;
  vertical-align: middle;
}
.wpcf7 input[type="text"], .wpcf7 input[type="number"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 input[type="password"], .wpcf7 textarea {
  border: 1px solid #ececec;
  text-transform: uppercase;
  margin: 0 auto 0.9259259259rem;
  font: 400 12px 'Futura PT', 'Arial', sans-serif;
  padding: 0 15px;
  display: block;
  height: 45px;
  width: 100%;
}
.wpcf7 input[type="text"]:focus, .wpcf7 input[type="number"]:focus, .wpcf7 input[type="email"]:focus, .wpcf7 input[type="tel"]:focus, .wpcf7 input[type="password"]:focus, .wpcf7 textarea:focus {
  -webkit-box-shadow: 0 0 0 3px #e8222d inset;
  -khtml-box-shadow: 0 0 0 3px #e8222d inset;
  -moz-box-shadow: 0 0 0 3px #e8222d inset;
  -ms-box-shadow: 0 0 0 3px #e8222d inset;
  -o-box-shadow: 0 0 0 3px #e8222d inset;
  box-shadow: 0 0 0 3px #e8222d inset;
  border-color: #e8222d;
}
.wpcf7 textarea {
  line-height: 20px;
  height: 8.8888888889rem;
  overflow: auto;
  padding: 15px;
  resize: none;
}
.wpcf7 .selbel_w {
  margin-bottom: 0.9259259259rem;
  line-height: 45px;
  height: 45px;
}
.wpcf7 .selbel_w select + span {
  border: 1px solid #ececec;
  padding: 0 15px;
}
.wpcf7 .selbel_w select + span:after {
  right: 20px;
}
.socialist {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 410px;
}
.socialist mark {
  font-style: italic;
  font-size: 16px;
  color: #141414;
  white-space: nowrap;
}
.socialist a {
  text-decoration: none;
  margin-left: 14px;
  font-size: 20px;
}
.socialist li {
  list-style: none;
}
.socialist li a {
  background: #f69826;
  padding: 0 14.5px;
  color: #fff;
  font: 400 18px/38px 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
}
.socialist li a:hover {
  background: #e8222d;
  color: #fff;
}
#menu-primary .donate{
  display: none;
}
.socialist a:hover {
  color: #f69826;
}
.button, #submit {
  font: italic 400 20px/24px 'Chaparral Pro', 'Arial', sans-serif;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 3px solid #e8222d;
  text-decoration: none;
  padding: 0 2.037037037rem;
  background: none;
  color: #141414;
  height: 65px;
}
.button:hover, #submit:hover {
  background: #e8222d;
  color: #fff;
}
.button.orange, #submit.orange {
  text-transform: uppercase;
  font: 700 14px 'Futura PT', 'Arial', sans-serif;
  background: #f69826;
  color: #fff;
  height: 50px;
  border: 0;
}
.button.orange:hover, #submit.orange:hover {
  background: #fff;
  color: #f69826;
}
.button *, #submit * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
header {
  position: relative;
  background: #fff;
  z-index: 99;
}
header:after {
  content: '';
  position: absolute;
  top: 56px;
  left: -1000px;
  right: -1000px;
  background: #fff;
  z-index: -1;
  height: 100px;
}
header .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1640px;
}
header .top_head {
  font: italic 400 16px/24px 'Chaparral Pro', 'Arial', sans-serif;
  background: #efefef;
  padding: 16px 0;
  position: relative;
}
header .top_head:after {
  content: '';
  position: absolute;
  top: 0;
  left: -1000px;
  right: -1000px;
  background: #efefef;
  z-index: -1;
  height: 56px;
}
header .top_head .row > ul li {
  display: inline-block;
  vertical-align: top;
  margin-left: 14px;
}
header .top_head .row > ul li a {
  text-decoration: none;
  color: #141414;
}
header .top_head .row > ul li a i {
  margin: 0 2px 0 6px;
  color: #3598c6;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .top_head .row > ul li a i:hover {
  color: #f69826;
}
header .top_head .row > ul li a:hover {
  color: #f69826;
}
header .main_head {
  padding: 20px 0 23px;
}
header .main_head .logo {
  width: 278px;
}
header .main_head .logo img {
  width: 100%;
}
header .main_head nav {
  margin: -18px 2px 0 0;
}
header .main_head nav li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-left: 30px;
}
header .main_head nav li a {
  font: 400 18px/38px 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  color: #545554;
  z-index: 3;
}
header .main_head nav li a:before {
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  background: #e8222d;
  bottom: -15px;
  height: 5px;
  content: '';
  z-index: 0;
  right: 0;
  width: 0;
}
header .main_head nav li a:hover:before {
  right: auto;
  width: 100%;
  left: 0;
}
header .main_head nav li.donate a {
  background: #f69826;
  padding: 0 14.5px;
  color: #fff;
}
header .main_head nav li.donate a:hover {
  background: #e8222d;
}
header .main_head nav li.donate a:after, header .main_head nav li.donate a:before {
  display: none;
}
header .main_head nav li.menu-item-has-children > a:after {
  font-family: 'ElegantIcons';
  text-transform: none;
  content: "\33";
  line-height: 1;
}
header .main_head nav li > ul {
  -webkit-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .05);
  -khtml-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .05);
  -moz-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .05);
  -ms-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .05);
  -o-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .05);
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .05);
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #efefef;
  position: absolute;
  visibility: hidden;
  width: 320px;
  z-index: 3;
  opacity: 0;
  left: 50%;
  top: 160%;
}
header .main_head nav li > ul:before {
  position: absolute;
  height: 40px;
  content: '';
  top: -20px;
  right: 0;
  left: 0;
}
header .main_head nav li > ul li {
  border-top: 1px solid #ddd;
  display: block;
  padding: 0;
  margin: 0;
}
header .main_head nav li > ul li:first-child {
  border: 0;
}
header .main_head nav li > ul li a {
  font-size: 14px;
  padding: 0 14px;
  display: block;
  margin: 0;
}
header .main_head nav li > ul li a:after, header .main_head nav li > ul li a:before {
  display: none;
}
header .main_head nav li > ul li a:hover {
  background: #f69826;
  color: #fff;
}
header .main_head nav li > ul li > ul {
  -webkit-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .05);
  -khtml-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .05);
  -moz-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .05);
  -ms-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .05);
  -o-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .05);
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .05);
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #efefef;
  position: absolute;
  visibility: hidden;
  width: 320px;
  z-index: 3;
  opacity: 0;
  left: 150%;
  top: 160%;
}
header .main_head nav li > ul li > ul:before {
  position: absolute;
  height: 40px;
  content: '';
  top: -20px;
  right: 0;
  left: 0;
}
header .main_head nav li > ul li > ul li {
  border-top: 1px solid #ddd;
  display: block;
  padding: 0;
  margin: 0;
}
header .main_head nav li > ul li > ul li:first-child {
  border: 0;
}
header .main_head nav li > ul li > ul li a {
  font-size: 14px;
  padding: 0 14px;
  display: block;
  margin: 0;
}
header .main_head nav li > ul li > ul li a:after, header .main_head nav li > ul li > ul li a:before {
  display: none;
}
header .main_head nav li > ul li > ul li a:hover {
  background: #f69826;
  color: #fff;
}
header .main_head nav li > ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 0%;
}
header .main_head nav li:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
header .nav-icon {
  position: absolute;
  display: none;
  z-index: 10;
  right: 20px;
  top: 20px;
}
#screen {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
}
#screen video {
  position: fixed;
  max-width: 1920px;
  margin: 0 auto;
  height: auto;
  z-index: -99;
  width: 100%;
  right: 0;
  left: 0;
  top: 0;
}
#screen h1 {
  -webkit-transform: translate(0, -50%);
  -khtml-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font: 700 4.4444444444rem/102px 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  color: #fff;
  top: 58.4%;
  right: 0;
  left: 0;
}
#screen .lm {
  -webkit-transform: translate(-50%, 50%);
  -khtml-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -o-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  text-align: center;
  background: #fff;
  height: 170px;
  width: 170px;
  left: 50%;
  bottom: 0;
}
#screen .lm span {
  font: italic 400 0.8518518519rem 'Chaparral Pro', 'Arial', sans-serif;
  position: absolute;
  cursor: pointer;
  color: #141414;
  top: 30px;
  right: 0;
  left: 0;
}
#screen .lm i {
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  font-size: 22px;
  color: #e8222d;
  left: 50%;
  top: 40%;
}
#screen + * {
  background: #fff;
  margin-top: 100vh;
}
.title-icon {
  text-align: center;
  margin: 30px auto;
  display: block;
  width: 300px;
}
.title-icon:before, .title-icon:after {
  display: inline-block;
  background: #f69826;
  vertical-align: top;
  margin: 17px 40px;
  content: '';
  width: 58px;
  height: 2px;
}
.title-icon span {
  display: inline-block;
  vertical-align: top;
}
.title-icon span:before, .title-icon span:after {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #939499;
  display: inline-block;
  vertical-align: top;
  margin: 0 -30px;
  height: 34px;
  width: 34px;
  content: '';
}
.title-icon.ti-white span:before, .title-icon.ti-white span:after {
  border-color: #fff;
}
#stories {
  padding: 2.7777777778rem 0 1.8518518519rem;
  text-align: center;
}
#results {
  padding: 2.7777777778rem 0 1.8518518519rem;
  font: 400 23px/37px 'Chaparral Pro', 'Arial', sans-serif;
  background: #3598c6;
  color: #fff;
}
#results h2 {
  text-align: center;
  color: #fff;
}
#results h3 {
  margin: 0;
}
#results .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1350px;
}
#results .row > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
#results .row .res_logo figure {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  background: #fff;
  display: block;
  height: 245px;
  width: 245px;
}
#results .row .res_logo figure > img {
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  max-width: 65%;
  left: 50%;
  top: 50%;
}
#results .row .first_block {
  -webkit-flex-basis: 44.4444444444%;
  -moz-flex-basis: 44.4444444444%;
  -ms-flex-preferred-size: 44.4444444444%;
  flex-basis: 44.4444444444%;
  padding-left: 3.3333333333rem;
  padding-bottom: 30px;
  position: relative;
  padding-top: 30px;
}
#results .row .first_block:before {
  background: url(../images/quote.svg) no-repeat;
  -webkit-background-size: cover;
  -khtml-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  height: 1.4074074074rem;
  width: 1.8888888889rem;
  left: 1.2222222222rem;
  top: 1.2222222222rem;
  content: '';
}
#results .row .second_block {
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-flex-basis: 49.5726495726%;
  -moz-flex-basis: 49.5726495726%;
  -ms-flex-preferred-size: 49.5726495726%;
  flex-basis: 49.5726495726%;
  padding-left: 4.8148148148rem;
  position: relative;
}
#results .row .second_block:before {
  background: #f69826;
  position: absolute;
  left: 2.2222222222rem;
  content: '';
  width: 1px;
  bottom: 0;
  top: 0;
}
#mission {
  position: relative;
  background: #fff;
  z-index: 1;
}
#mission .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 2.7777777778rem 0 1.8518518519rem;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
#mission .row aside {
  -webkit-flex-basis: 42.735042735%;
  -moz-flex-basis: 42.735042735%;
  -ms-flex-preferred-size: 42.735042735%;
  flex-basis: 42.735042735%;
  font: 400 1.5185185185rem/1.1 'Chaparral Pro', 'Arial', sans-serif;
  padding: 0 1.4814814815rem 0 2.5925925926rem;
}
#mission .row article {
  -webkit-flex-basis: 57.264957265%;
  -moz-flex-basis: 57.264957265%;
  -ms-flex-preferred-size: 57.264957265%;
  flex-basis: 57.264957265%;
  font: 400 23px/37px 'Chaparral Pro', 'Arial', sans-serif;
  padding: 0 1.4814814815rem;
}
#latest {
  padding: 2.7777777778rem 0 0;
  background: #fff;
}
#latest h2 {
  text-align: center;
}
#latest .la-grid {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #efefef;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
#latest .la-grid > article {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font: 400 18px/30px 'Chaparral Pro', 'Arial', sans-serif;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 50%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  color: #545554;
}
#latest .la-grid > article > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 50%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}
#latest .la-grid > article.la-reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
#latest .la-grid > article.la-reverse > div:before {
  content: '';
  display: inline-block;
  width: 0px;
  height: 0px;
  border-right: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 25px solid #efefef;
  right: -25px;
  left: auto;
}
#latest .la-grid > article .la-img-link {
  background: #f69826;
  display: block;
  text-align: center;
}
#latest .la-grid > article .la-img-link img {
  -webkit-box-shadow: 0 0 #000;
  -khtml-box-shadow: 0 0 #000;
  -moz-box-shadow: 0 0 #000;
  -ms-box-shadow: 0 0 #000;
  -o-box-shadow: 0 0 #000;
  box-shadow: 0 0 #000;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 0;
}
#latest .la-grid > article .la-img-link:hover img {
  opacity: 0.5;
}
#latest .la-grid > article > div {
  position: relative;
  padding: 0 1.4814814815rem;
}
#latest .la-grid > article > div:before {
  content: '';
  display: inline-block;
  width: 0px;
  height: 0px;
  border-left: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-right: 25px solid #efefef;
  margin-top: -12.5px;
  position: absolute;
  content: '';
  left: -25px;
  top: 50%;
}
#latest .la-grid > article > div .cats {
  font: 400 14px/20px 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  display: block;
}
#latest .la-grid > article > div .cats a {
  text-decoration: none;
  color: #f69826;
}
#latest .la-grid > article > div .cats a:hover {
  text-decoration: underline;
  color: #141414;
}
#latest .la-grid > article > div .la-link {
  font: 700 24px/26px 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  margin: 10px 0 20px;
  display: block;
  color: #e8222d;
}
#latest .la-grid > article > div .la-link:hover {
  color: #3598c6;
}
#latest .la-grid > article > div .la-read {
  text-decoration: none;
  font-style: italic;
  font-size: 18px;
  color: #141414;
}
#latest .la-grid > article > div .la-read i {
  display: inline-block;
  vertical-align: middle;
}
#latest .la-grid > article > div .la-read:hover {
  color: #3598c6;
}
#slider {
  position: relative;
  background: #141414;
  z-index: 1;
}
.slide-nav {
  border: 3px solid rgba(255, 255, 255, .5);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  position: absolute;
  margin-top: -25px;
  cursor: pointer;
  font-size: 30px;
  height: 50px;
  color: #fff;
  width: 50px;
  z-index: 1;
  top: 50%;
}
.slide-nav i {
  display: inline-block;
  margin: -2px 0 0 -2px;
}
.slide-nav.slide-prev {
  left: 50px;
}
.slide-nav.slide-next {
  right: 50px;
}
.slide-nav:hover {
  border-color: rgba(246, 152, 38, .5);
  background: #f69826;
}
.content {
  padding: 1.4814814815rem 0 0.7407407407rem;
  position: relative;
  z-index: 1;
}
.content h1 {
  font: 700 48px/1.2 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.7407407407rem;
  color: #e8222d;
}
.content h2 {
  font: 700 18px/24px 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.7407407407rem;
  color: #545554;
}
.content h3 {
  font: 700 20px/24px 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.7407407407rem;
  color: #e8222d;
}
.content article img {
  margin-bottom: 0.75em;
}
.content article img.alignright {
  margin-left: 1.5em;
}
.content article img.alignleft {
  margin-right: 1.5em;
}
.content article img.alignnone {
  display: inline-block;
  vertical-align: baseline;
  margin: 0;
}
.content article .wp-video {
  margin-bottom: 0.75em;
  width: auto !important;
}
.content article .wp-video .mejs-video {
  width: auto !important;
  height: auto !important;
}
.blog-meta {
  -webkit-box-shadow: 0 1px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 1px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px rgba(0, 0, 0, 0.1);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 15px 0;
  z-index: 999;
}
#bloggrid {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1600px;
  padding-top: 120px;
}
#bloggrid article {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -moz-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}
#bloggrid article > .widget-title {
  margin-bottom: 1.8518518519rem;
}
#bloggrid article .blog_posts {
  padding-bottom: 1.2222222222rem;
}
#bloggrid article .blogpost {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 93px;
}
#bloggrid article .blogpost .thumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 40.678%;
  background: #3598c6;
}
#bloggrid article .blogpost .thumb.for_video {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
}
#bloggrid article .blogpost .thumb video {
  width: 100%;
}
#bloggrid article .blogpost .thumb .video_wrap {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
}
#bloggrid article .blogpost .thumb .video_wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#bloggrid article .blogpost .thumb .video_wrap.active:before {
  z-index: 1;
}
#bloggrid article .blogpost .thumb .play_pause {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: 3.2592592593rem;
  height: 3.2592592593rem;
  border: 4px solid #e8222d;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#bloggrid article .blogpost .thumb .play_pause.active {
  opacity: 0;
}
#bloggrid article .blogpost .thumb .play_pause.active:before {
  z-index: 0;
}
#bloggrid article .blogpost .thumb .play_pause:after {
  content: '';
  content: '';
  display: inline-block;
  width: 0px;
  height: 0px;
  border-right: 0;
  border-top: 0.7407407407rem solid transparent;
  border-bottom: 0.7407407407rem solid transparent;
  border-left: 0.7407407407rem solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#bloggrid article .blogpost .thumb .play_pause:hover {
  border-color: #fff;
}
#bloggrid article .blogpost .thumb .play_pause:hover:after {
  border-left: 0.7407407407rem solid #e8222d;
}
#bloggrid article .blogpost .thumb img {
  -webkit-box-shadow: 0 0 #000;
  -khtml-box-shadow: 0 0 #000;
  -moz-box-shadow: 0 0 #000;
  -ms-box-shadow: 0 0 #000;
  -o-box-shadow: 0 0 #000;
  box-shadow: 0 0 #000;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin: 0;
}
#bloggrid article .blogpost .thumb:hover img {
  opacity: 0.5;
}
#bloggrid article .blogpost .desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -moz-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  background: #efefef;
  position: relative;
  padding: 1.3703703704rem 1.8518518519rem;
}
#bloggrid article .blogpost .desc:before {
  content: '';
  display: inline-block;
  width: 0px;
  height: 0px;
  border-left: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-right: 25px solid #efefef;
  margin-top: -12.5px;
  position: absolute;
  content: '';
  left: -25px;
  top: 50%;
}
#bloggrid article .blogpost .desc .cats {
  font: 400 14px/1.43 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  display: block;
}
#bloggrid article .blogpost .desc .cats a {
  text-decoration: none;
  color: #f69826;
}
#bloggrid article .blogpost .desc .cats a:hover {
  color: #141414;
}
#bloggrid article .blogpost .desc h2 {
  margin-bottom: 9px;
}
#bloggrid article .blogpost .desc .button {
  font-size: 17px;
  height: 44px;
  padding: 0 1.2962962963rem;
  margin-top: 0.6666666667rem;
}
#bloggrid article .blogpost .excerpt {
  font-size: 16px;
  line-height: 1.56;
}
#bloggrid article video {
  width: 100%;
}
#bloggrid article time {
  position: absolute;
  right: 0;
  top: 0;
  background: #3598c6;
  font: 400 19px/1 'Futura PT', 'Arial', sans-serif;
  color: #fff;
  width: 58px;
  text-align: center;
  text-transform: uppercase;
  padding: 8px 8px 6px;
}
#bloggrid article .blogtitle {
  font: 700 24px/1.1 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  margin: 3px 0 0;
  display: block;
  color: #e8222d;
}
#bloggrid article .blogtitle:hover {
  color: #3598c6;
}
#bloggrid article .details {
  margin-bottom: 1.1111111111rem;
}
#bloggrid article .details > div {
  font: 400 12px/1.43 'Futura PT', 'Arial', sans-serif;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
#bloggrid article .details i {
  font-size: 16px;
  margin-right: 10px;
  vertical-align: -1px;
}
#bloggrid article .details .comments i {
  font-size: 17px;
  vertical-align: -2px;
}
#bloggrid article .details .views img {
  margin: 0;
  padding-right: 7px;
  vertical-align: -2px;
}
#bloggrid article .details .tagslist a {
  color: #6f6f6f;
  text-decoration: none;
  text-transform: uppercase;
}
#bloggrid article .details .tagslist a:hover {
  color: #3598c6;
}
#bloggrid article .author {
  font-size: 14px;
}
#bloggrid article .author a {
  color: #3598c6;
  text-decoration: none;
}
#bloggrid article .author a:hover {
  color: #f69826;
}
#bloggrid article .single_post .for_img {
  margin-bottom: 1.1481481481rem;
  text-align: center;
}
#bloggrid article .single_post video {
  max-height: 500px;
  margin-bottom: 18px;
}
#bloggrid article .single_post .info {
  font: 400 18px/1.39 'Chaparral Pro', 'Arial', sans-serif;
  margin-bottom: 1.4814814815rem;
}
#bloggrid article .single_post .info h3 {
  font: 400 20px/1.5 'Futura PT', 'Arial', sans-serif;
  color: #f69826;
  letter-spacing: 0.5px;
  margin-bottom: 1.1111111111rem;
}
#bloggrid article .single_post .info blockquote {
  font: italic 400 0.962962963rem/1.3 'Chaparral Pro', 'Arial', sans-serif;
  color: #272727;
  background: #f3f3f3;
  text-align: center;
  padding: 1.8518518519rem 4% 1.7037037037rem;
  margin: 7px 0 1.6296296296rem;
}
#bloggrid article .single_post .info blockquote p {
  padding-bottom: 0;
}
#bloggrid article .single_post .shares {
  font-size: 0;
  text-align: right;
  margin: 1.8518518519rem -5px 1.6296296296rem 0;
}
#bloggrid article .single_post .shares a {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  color: #fff;
  width: 37px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  margin: 0 5px;
  border-radius: 50%;
  text-decoration: none;
  position: relative;
}
#bloggrid article .single_post .shares a:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border: 2px solid;
  border-radius: 50%;
}
#bloggrid article .single_post .shares a:hover {
  background: transparent !important;
}
#bloggrid article .single_post .shares a.social_facebook {
  background: #3b5997;
}
#bloggrid article .single_post .shares a.social_facebook:after {
  border-color: #3b5997;
}
#bloggrid article .single_post .shares a.social_facebook:hover {
  color: #3b5997;
}
#bloggrid article .single_post .shares a.social_googleplus {
  background: #df4c3c;
}
#bloggrid article .single_post .shares a.social_googleplus:after {
  border-color: #df4c3c;
}
#bloggrid article .single_post .shares a.social_googleplus:hover {
  color: #df4c3c;
}
#bloggrid article .single_post .shares a.social_twitter {
  background: #2fc2ee;
}
#bloggrid article .single_post .shares a.social_twitter:after {
  border-color: #2fc2ee;
}
#bloggrid article .single_post .shares a.social_twitter:hover {
  color: #2fc2ee;
}
#bloggrid article .single_post .shares a.social_pinterest {
  background: #e02329;
}
#bloggrid article .single_post .shares a.social_pinterest:after {
  border-color: #e02329;
}
#bloggrid article .single_post .shares a.social_pinterest:hover {
  color: #e02329;
}
#bloggrid article .single_post .post_navigation {
  padding: 4px 0 7px;
  border-top: 1px solid #acacac;
  border-bottom: 1px solid #acacac;
  margin-bottom: 3.1481481481rem;
}
#bloggrid article .single_post .post_navigation a {
  font: italic 400 16px/1.87 'Chaparral Pro', 'Arial', sans-serif;
  color: #545554;
  text-decoration: none;
}
#bloggrid article .single_post .post_navigation a:hover span {
  color: #e8222d;
}
#bloggrid article .single_post .post_navigation span {
  display: inline-block;
  font-style: normal;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#bloggrid article .single_post .post_navigation span.to_rotate {
  -webkit-transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg);
  -khtml-transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg);
  -moz-transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg);
  -ms-transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg);
  -o-transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg);
  transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg);
}
#bloggrid article .single_desc {
  position: relative;
}
#bloggrid article .single_desc .blogtitle {
  margin-bottom: 0.4074074074rem;
}
#bloggrid article .single_desc .blogtitle:hover {
  color: #e8222d;
}
#bloggrid article .single_desc .author {
  margin-bottom: 0.7037037037rem;
}
#bloggrid article .single_desc .details {
  border-top: 1px solid #acacac;
  border-bottom: 1px solid #acacac;
}
#bloggrid article .single_desc .details > div {
  font-size: 15px;
}
#bloggrid article .single_desc time {
  top: auto;
  bottom: 39px;
}
#bloggrid article .wp-pagenavi {
  text-align: center;
  padding-top: 2.4444444444rem;
  margin-bottom: 90px;
  border-top: 1px solid #acacac;
}
#bloggrid article .wp-pagenavi > * {
  display: inline-block;
  font: 400 18px/36px 'Futura PT', 'Arial', sans-serif;
  color: #acacac;
  background: transparent;
  border: 3px solid #acacac;
  padding: 0 13px;
  margin: 0 5px;
  text-align: center;
  text-decoration: none;
}
#bloggrid article .wp-pagenavi a:hover {
  background: #e8222d;
  border-color: #e8222d;
  color: #fff;
}
#bloggrid article .wp-pagenavi .current {
  background: #e8222d;
  border-color: #e8222d;
  color: #fff;
  cursor: default;
}
#bloggrid article .wp-pagenavi .extend {
  display: none;
}
#bloggrid aside {
  width: 330px;
  margin-left: 90px;
}
#bloggrid aside .up__events {
  padding-left: 37px;
}
#bloggrid aside .up__events > div > div .up_link {
  color: #4d4d4d;
}
#bloggrid aside .up__events > div > div .tribe-event-categories li a {
  color: #000;
}
#bloggrid .widget_inner {
  margin-right: 2.1481481481rem;
  text-align: center;
}
#bloggrid .widget_inner > img {
  border-radius: 50%;
  border: 5px solid #acacac;
}
#bloggrid .author_name {
  text-align: right;
}
#bloggrid .author_name a {
  font: 400 14px/1 'Futura PT', 'Arial', sans-serif;
  color: #e8222d;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
#bloggrid .author_name a:hover {
  color: #3598c6;
}
#bloggrid .author_name span {
  display: block;
  font: italic 400 14px/1 'Chaparral Pro', 'Arial', sans-serif;
  margin-top: -4px;
}
#bloggrid .author_desc {
  font: italic 400 18px/1.333 'Chaparral Pro', 'Arial', sans-serif;
  border-top: 1px solid #acacac;
  padding: 0.6296296296rem 15px 0.7037037037rem;
}
#bloggrid .author_some {
  font-size: 0;
}
#bloggrid .author_some a {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  color: #141414;
  width: 29px;
  height: 29px;
  line-height: 29px;
  border: 1px solid #ececec;
  text-align: center;
  margin: 0 5px;
  border-radius: 50%;
  text-decoration: none;
}
#bloggrid .author_some a.social_facebook:hover {
  color: #3b5997;
  border-color: #3b5997;
}
#bloggrid .author_some a.social_twitter:hover {
  color: #2fc2ee;
  border-color: #2fc2ee;
}
#bloggrid .author_some a.social_pinterest:hover {
  color: #e02329;
  border-color: #e02329;
}
#bloggrid .widget {
  margin-bottom: 1.8518518519rem;
}
#bloggrid .widget .author_name {
  text-align: center;
  margin-bottom: 1.1481481481rem;
}
#bloggrid .widget-title {
  background: url(../images/circles.svg) no-repeat 0 45%;
  -webkit-background-size: 32px auto;
  -khtml-background-size: 32px auto;
  -moz-background-size: 32px auto;
  -ms-background-size: 32px auto;
  -o-background-size: 32px auto;
  background-size: 32px auto;
  border-bottom: 1px solid #acacac;
  padding: 10px 0 10px 45px;
  text-transform: uppercase;
  font: 700 22px 'Futura PT', 'Arial', sans-serif;
  display: block;
  margin-bottom: 1.2962962963rem;
}
#bloggrid .widget_search {
  margin-bottom: 26px;
}
#bloggrid .widget_search .search_box form button {
  top: 2px;
  right: 2px;
  height: 46px;
}
#bloggrid .widget_search .search_box form button:before {
  height: 9px;
  width: 9px;
  left: 16px;
  top: 16px;
}
#bloggrid .widget_search .search_box form button:after {
  width: 6px;
  left: 26px;
  top: 28px;
}
#bloggrid .widget_search .search_box form input[type="text"] {
  border-width: 2px;
  padding-left: 20px;
}
#bloggrid .widget_search .search_box form input[type="text"]::-webkit-input-placeholder {
  color: #545554;
  opacity: 1;
}
#bloggrid .widget_search .search_box form input[type="text"]:-moz-placeholder {
  color: #545554;
  opacity: 1;
}
#bloggrid .widget_search .search_box form input[type="text"]::-moz-placeholder {
  color: #545554;
  opacity: 1;
}
#bloggrid .widget_search .search_box form input[type="text"]:-ms-input-placeholder {
  color: #545554;
  opacity: 1;
}
#bloggrid .widget_archive {
  margin-bottom: 1.4074074074rem;
}
#bloggrid .widget_archive .widget-title {
  margin-bottom: 0.7407407407rem;
}
#bloggrid .widget_archive ul {
  padding-left: 42px;
}
#bloggrid .widget_archive li {
  font: 400 15px/3.2 'Futura PT', 'Arial', sans-serif;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
#bloggrid .widget_archive a {
  color: #6f6f6f;
  text-decoration: none;
}
#bloggrid .widget_archive a:hover {
  color: #3598c6;
}
#bloggrid .see_more span {
  font-family: 'Chaparral Pro', 'Arial', sans-serif;
  font-style: italic;
  color: #e8222d;
  text-transform: none;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#bloggrid .see_more span:hover {
  color: #3598c6;
}
#bloggrid .to_hide {
  display: none;
}
#bloggrid .widget_tag_cloud .widget-title {
  margin-bottom: 0.9259259259rem;
}
#bloggrid .tagcloud {
  font-size: 0;
}
#bloggrid .tagcloud a {
  display: inline-block;
  font: italic 400 15px/1.4 'Chaparral Pro', 'Arial', sans-serif !important;
  color: #fff;
  background: #f69826;
  border: 2px solid #f2b66c;
  margin: 0 7px 7px 0;
  padding: 11px 8px 7px;
  text-decoration: none;
}
#bloggrid .tagcloud a:hover {
  background: #fff;
  color: #f69826;
}
#bloggrid .latest_articles {
  padding-left: 1.3703703704rem;
}
#bloggrid .latest_articles .flex {
  margin-bottom: 10px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
#bloggrid .latest_articles img {
  border: 2px solid #acacac;
  margin-right: 0.9259259259rem;
  width: 75px;
}
#bloggrid .latest_articles .info {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -moz-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}
#bloggrid .latest_articles .info h5 {
  font: 400 18px/1.1 'Futura PT', 'Arial', sans-serif;
  padding-bottom: 5px;
}
#bloggrid .latest_articles .info h5 a {
  color: #545554;
  text-decoration: none;
}
#bloggrid .latest_articles .info h5 a:hover {
  color: #3598c6;
}
#bloggrid .latest_articles .info span {
  display: block;
  font: italic 400 16px/1.1 'Chaparral Pro', 'Arial', sans-serif;
}
#bloggrid .latest_articles .info span a {
  color: #000;
  text-decoration: none;
}
#bloggrid .latest_articles .info span a:hover {
  color: #3598c6;
}
.intro_blog {
  min-height: 315px;
  padding: 2%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-background-size: cover;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.intro_blog > * {
  margin: auto;
}
.intro_blog h1 {
  font: 700 100px/1 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
}
.intro_blog h2 {
  font: 700 1.7777777778rem/1.25 'Futura PT', 'Arial', sans-serif;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding-bottom: 0.5555555556rem;
}
.intro_blog h3 {
  font: italic 400 0.8888888889rem/1.4 'Chaparral Pro', 'Arial', sans-serif;
  letter-spacing: 0.3px;
}
.intro_blog h3 span {
  padding: 0 1.1111111111rem;
}
.intro_blog a {
  color: #fff;
  text-decoration: none;
}
.intro_blog a:hover {
  color: #f69826;
}
.single-post .intro_blog {
  background-color: #3598c6;
}
#form_com_new {
  margin-bottom: 2.5925925926rem;
}
#form_com_new h4 {
  font: 400 22px/1.5 'Futura PT', 'Arial', sans-serif;
  color: #f69826;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 0 0.7407407407rem;
}
#form_com_new p {
  font-size: 18px;
}
#form_com_new .form_com_line .for_input {
  -webkit-flex-basis: 48%;
  -moz-flex-basis: 48%;
  -ms-flex-preferred-size: 48%;
  flex-basis: 48%;
}
#form_com_new input:not([type="submit"]), #form_com_new textarea {
  border: 1px solid #ececec;
  text-transform: uppercase;
  margin: 0 auto 0.9259259259rem;
  font: 400 12px 'Futura PT', 'Arial', sans-serif;
  padding: 0 15px;
  display: block;
  height: 45px;
  width: 100%;
}
#form_com_new input:not([type="submit"]):focus, #form_com_new textarea:focus {
  -webkit-box-shadow: 0 0 0 1px #e8222d inset;
  -khtml-box-shadow: 0 0 0 1px #e8222d inset;
  -moz-box-shadow: 0 0 0 1px #e8222d inset;
  -ms-box-shadow: 0 0 0 1px #e8222d inset;
  -o-box-shadow: 0 0 0 1px #e8222d inset;
  box-shadow: 0 0 0 1px #e8222d inset;
  border-color: #e8222d;
}
#form_com_new textarea {
  resize: none;
  overflow: auto;
  height: 5.5555555556rem;
  padding: 10px 15px;
  line-height: 18px;
}
#form_com_new .for_button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
#form_com_new .button {
  margin-left: auto;
  padding: 0 1.2962962963rem;
  height: 2.037037037rem;
}
#comments {
  font: 400 22px/1.5 'Futura PT', 'Arial', sans-serif;
  color: #f69826;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 0 0.7407407407rem;
}
.commentlist {
  padding-bottom: 1.1111111111rem;
}
.commentlist .comment-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.commentlist .comment-body > * {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.commentlist .comment-body > p {
  font: 400 16px/1.4 'Chaparral Pro', 'Arial', sans-serif;
  padding: 1.1111111111rem 0 0.3703703704rem;
}
.commentlist .comment {
  background: #f7f7f7;
  padding: 0.9259259259rem 2.2% 0;
  margin-bottom: 0.5555555556rem;
}
.commentlist .children .comment {
  padding: 0.5555555556rem 0 0 4.4%;
}
.commentlist .comment-author {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.commentlist .comment-author > img {
  margin: 0 10px 0 0;
}
.commentlist .comment-meta {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.commentlist cite, .commentlist cite a {
  display: inline-block;
  font: 700 15px/1.5 'Futura PT', 'Arial', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.commentlist .says {
  display: none;
}
.commentlist .reply {
  margin-bottom: 10px;
}
.commentlist a {
  display: inline-block;
  font: 400 14px/1.5 'Chaparral Pro', 'Arial', sans-serif;
  color: #3598c6;
  text-decoration: none;
}
.commentlist a:hover {
  color: #e8222d;
}
.remodal {
  color: #545554;
  width: 550px;
  max-width: 100%;
  padding: 1.2962962963rem 1.4814814815rem;
}
.for_subscribe {
  font-size: 18px;
}
.for_subscribe .icon_close_alt2 {
  position: absolute;
  right: 13px;
  top: 13px;
  font-size: 32px;
  color: #f69826;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.for_subscribe .icon_close_alt2:hover {
  color: #e8222d;
}
.for_subscribe h2 {
  font: 700 1.4074074074rem/1 'Futura PT', 'Arial', sans-serif;
  color: #e8222d;
  text-transform: uppercase;
  padding-bottom: 1.4074074074rem;
}
.for_subscribe p {
  padding-bottom: 10px;
}
.for_subscribe i, .for_subscribe em {
  font-size: 14px;
}
.for_subscribe .wpcf7 {
  text-align: left;
  margin-top: 12px;
}
.for_subscribe .wpcf7 button.button {
  width: 100%;
  height: 50px;
}
.for_subscribe .wpcf7 input[type="text"], .for_subscribe .wpcf7 input[type="number"], .for_subscribe .wpcf7 input[type="email"], .for_subscribe .wpcf7 input[type="tel"], .for_subscribe .wpcf7 input[type="password"] {
  margin: 0 auto 15px;
}
.for_subscribe label {
  display: block;
  font: 400 10px/1.1 'Futura PT', 'Arial', sans-serif;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.for_subscribe label sup {
  color: #e8222d;
  position: relative;
  top: -1px;
}
.for_subscribe .inputs_wrap1, .for_subscribe .inputs_wrap2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.for_subscribe .inputs_wrap1 > div:first-child {
  -webkit-flex-basis: 40.34%;
  -moz-flex-basis: 40.34%;
  -ms-flex-preferred-size: 40.34%;
  flex-basis: 40.34%;
}
.for_subscribe .inputs_wrap1 > div:last-child {
  -webkit-flex-basis: 56.65%;
  -moz-flex-basis: 56.65%;
  -ms-flex-preferred-size: 56.65%;
  flex-basis: 56.65%;
}
.for_subscribe .inputs_wrap2 {
  margin-bottom: 10px;
}
.for_subscribe .inputs_wrap2 > div:first-child {
  -webkit-flex-basis: 50.21%;
  -moz-flex-basis: 50.21%;
  -ms-flex-preferred-size: 50.21%;
  flex-basis: 50.21%;
}
.for_subscribe .inputs_wrap2 > div:last-child {
  -webkit-flex-basis: 46.65%;
  -moz-flex-basis: 46.65%;
  -ms-flex-preferred-size: 46.65%;
  flex-basis: 46.65%;
}
.for_subscribe .for_checks {
  margin: 3px 0 17px;
}
.for_subscribe .label {
  font-size: 14px;
  cursor: pointer;
  padding-left: 28px;
  margin-bottom: 10px;
  position: relative;
}
.for_subscribe .label:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 2px solid #ececec;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.for_subscribe .label:after {
  content: '\2713';
  position: absolute;
  top: 3px;
  left: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #f69826;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.for_subscribe .label.active:after {
  opacity: 1;
}
.for_subscribe .label.active:before {
  border-color: #f69826;
}
.for_subscribe .label strong {
  font: 700 14px/1.15 'Futura PT', 'Arial', sans-serif;
  color: #f69826;
  text-transform: uppercase;
}
.for_subscribe .label i {
  color: #3598c6;
}
.for_subscribe [class*="checkbox"] label {
  display: none;
}
.for_mc {
  font-size: 18px;
}
.for_mc .icon_close_alt2 {
  position: absolute;
  right: 13px;
  top: 13px;
  font-size: 32px;
  color: #f69826;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.for_mc .icon_close_alt2:hover {
  color: #e8222d;
}
.for_mc h2 {
  font: 700 1.4074074074rem/1 'Futura PT', 'Arial', sans-serif;
  color: #e8222d;
  text-transform: uppercase;
  padding-bottom: 1.4074074074rem;
}
.for_mc p {
  padding-bottom: 10px;
}
.for_mc i, .for_mc em {
  font-size: 14px;
}
.for_mc label {
  display: block;
  font: 400 10px/1.1 'Futura PT', 'Arial', sans-serif;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.for_mc label sup {
  color: #e8222d;
  position: relative;
  top: -1px;
}
.for_mc input + label {
  margin-left: 10px;
  position: relative;
  top: -3px;
}
.search_box {
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  z-index: 99;
  margin: 0;
}
.search_box form input[type="text"] {
  font: italic 400 15px 'Chaparral Pro', 'Arial', sans-serif;
  border: 1px solid #acacac;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  padding: 0 30px 0 10px;
  background: #fff;
  display: block;
  height: 50px;
  width: 100%;
  margin: 0;
  color: #333;
}
.search_box form input[type="text"]:focus {
  border-color: #000;
}
.search_box form button {
  position: absolute;
  background: #fff;
  cursor: pointer;
  height: 48px;
  width: 48px;
  right: 1px;
  padding: 0;
  border: 0;
  top: 1px;
}
.search_box form button[disabled] {
  cursor: pointer;
}
.search_box form button:before {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #3598c6;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  height: 13px;
  width: 13px;
  content: "";
  left: 14px;
  top: 14px;
}
.search_box form button:after {
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  background: #3598c6;
  content: "";
  height: 2px;
  width: 10px;
  left: 27px;
  top: 30px;
}
.search_box form button:hover {
  -webkit-box-shadow: none;
  -khtml-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.search_box form button:hover:before {
  border-color: #f69826;
}
.search_box form button:hover:after {
  background: #f69826;
}
.search_box form img {
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  background: #fff;
  display: none;
  padding: 7px;
  z-index: 99;
  width: 50px;
  right: 1px;
  top: 1px;
}
.search_box form .close {
  font: 400 14px/30px "Verdana", sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: center;
  position: absolute;
  background: #3598c6;
  cursor: pointer;
  display: none;
  height: 50px;
  width: 50px;
  z-index: 32;
  right: 1px;
  top: 1px;
}
.search_box form .close:hover {
  color: #e8222d;
}
.search_box .search_result {
  position: absolute !important;
  font: 400 14px/20px 'Chaparral Pro', 'Arial', sans-serif;
  left: 0;
  max-height: 240px;
  overflow: auto;
  right: 0;
  top: 100%;
  z-index: -1;
}
.search_box .search_result .showsearch {
  padding: 7px 0 0;
  margin: -7px 0 0;
  background: #fff;
}
.search_box .search_result .showsearch:empty {
  display: none;
}
.search_box .search_result mark {
  text-align: center;
  color: #707070;
  display: block;
  padding: 10px;
}
.search_box .search_result p {
  border-top: 1px solid #e1e1e1;
  text-align: left;
  padding: 0;
}
.search_box .search_result p:first-child {
  border-top: 0;
}
.search_box .search_result p a {
  padding: 5px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #333;
}
.search_box .search_result p a img {
  width: 40px;
  display: block;
  margin: 0 10px 0 0;
}
.search_box .search_result p a span {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0;
  -moz-box-flex: 1;
  -moz-flex: 1 0 0;
  -ms-flex: 1 0 0;
  flex: 1 0 0;
}
.search_box .search_result p a:hover {
  color: #707070;
}
.last_tweets {
  max-width: 240px;
}
.last_tweets li {
  font: 400 17px/24px 'Chaparral Pro', 'Arial', sans-serif;
  color: #141414;
}
.last_tweets li a {
  text-decoration: none;
  font-style: italic;
  color: #fff;
}
.last_tweets li a:hover {
  text-decoration: underline;
}
.last_tweets li cite {
  margin: 0.7407407407rem 0;
  display: block;
}
.last_tweets li cite a {
  text-decoration: none !important;
  font: 400 12px/20px 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f69826;
}
.last_tweets li cite a i {
  margin-right: 10px;
  font-size: 12px;
  color: #fff;
}
.last_tweets li cite a:hover {
  color: #fff;
}
footer {
  padding: 60px 0 0;
  position: relative;
  background: #3598c6;
  color: #fff;
  z-index: 1;
}
footer:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -1000px;
  right: -1000px;
  background: #3598c6;
  z-index: -1;
  height: 474px;
}
footer .foo-bar {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  color: #141414;
}
footer .foo-bar > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 25%;
  -moz-box-flex: 1;
  -moz-flex: 1 0 25%;
  -ms-flex: 1 0 25%;
  flex: 1 0 25%;
  padding: 0 2%;
}
footer .foo-bar > div.widget_nav_menu {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 15%;
  -moz-box-flex: 1;
  -moz-flex: 1 0 15%;
  -ms-flex: 1 0 15%;
  flex: 1 0 15%;
}
footer .foo-bar > div:first-child {
  padding-left: 0;
}
footer .foo-bar > div:last-child {
  padding-right: 0;
}
footer .foo-bar > div .widget-title {
  font: 700 14px/24px 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}
footer .foo-bar > div .widget-title:after {
  margin: 3px 0 28px;
  background: #e8222d;
  display: block;
  width: 20px;
  height: 4px;
  content: '';
}
footer .foo-bar > div .textwidget p a {
  font: 400 20px/24px 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #141414;
}
footer .foo-bar > div .textwidget p a:hover {
  color: #e8222d;
}
footer .foo-bar .menu li {
  padding-bottom: 20px;
}
footer .foo-bar .menu li a {
  font: 400 20px/24px 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #141414;
}
footer .foo-bar .menu li a i {
  display: none;
}
footer .foo-bar .menu li a:hover {
  color: #e8222d;
}
footer .copyright {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  font: italic 400 11px/20px 'Chaparral Pro', 'Arial', sans-serif;
  padding: 30px 0 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
footer .copyright .socialist mark {
  color: #fff;
}
footer .copyright .socialist a {
  color: #f69826;
}
footer .copyright .socialist a:hover {
  color: #141414;
}
footer .copyright p {
  text-transform: uppercase;
  padding: 0;
}
.up__events > div {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.up__events > div > a {
  -webkit-flex-basis: 95px;
  -moz-flex-basis: 95px;
  -ms-flex-preferred-size: 95px;
  flex-basis: 95px;
}
.up__events > div > a:hover time {
  color: #f69826;
}
.up__events > div > a:hover time:before {
  opacity: 0;
}
.up__events > div time {
  display: block;
  font: 400 27px/24px 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  color: #fff;
  border: 2px solid #f69826;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.up__events > div time:before {
  padding-bottom: 100%;
  background: #f69826;
  display: block;
  content: '';
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.up__events > div time span {
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}
.up__events > div > div {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding-left: 27px;
}
.up__events > div > div .up_link {
  font: 400 19px/22px 'Futura PT', 'Arial', sans-serif;
  display: block;
  color: #fff;
  text-decoration: none;
}
.up__events > div > div .up_link:hover {
  text-decoration: underline;
}
.up__events > div > div .up_link + div {
  display: none;
}
.up__events > div > div .tribe-event-categories {
  font: italic 400 16px/20px 'Chaparral Pro', 'Arial', sans-serif;
}
.up__events > div > div .tribe-event-categories li {
  display: inline-block;
  vertical-align: top;
}
.up__events > div > div .tribe-event-categories li + li:before {
  display: inline-block;
  vertical-align: top;
  margin: 0 2px;
  content: '/';
}
.up__events > div > div .tribe-event-categories li a {
  text-decoration: none;
  color: #141414;
}
.up__events > div > div .tribe-event-categories li a:hover {
  text-decoration: underline;
}
.selbel_w {
  font: 400 15px/25px 'Futura PT', 'Arial', sans-serif;
  margin-bottom: 20px;
  position: relative;
  display: block;
  height: 25px;
  width: 100%;
}
.selbel_w select {
  -webkit-appearance: menulist-button;
  position: relative;
  cursor: pointer;
  display: block;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0;
}
.selbel_w select + span {
  border-bottom: 1px solid #545554;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #545554;
  padding: 0;
}
.selbel_w select + span:after {
  content: '';
  display: inline-block;
  width: 0px;
  height: 0px;
  border-bottom: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #3598c6;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  content: '';
  right: 0;
  top: 50%;
}
.selbel_w select + span.err {
  border-color: #ef4036;
}
.selbel_w select option {
  padding: 5px;
}
.wpa_slideshow {
  position: relative;
  margin-bottom: 20px;
}
.wpa_slideshow .swiper-pagination-bullet-active {
  background: #f69826;
}
.wpa_slideshow .swiper-button-prev, .wpa_slideshow .swiper-button-next {
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: center;
  background: none;
  color: #fff;
  height: 40px;
  width: 40px;
}
.wpa_slideshow .swiper-button-prev::before, .wpa_slideshow .swiper-button-next::before {
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 0.05em solid #fff;
  border-top: 0.05em solid #fff;
  display: inline-block;
  position: relative;
  height: 1.5em;
  margin: 0 5px;
  width: 1.5em;
  content: "";
  top: 6pt;
}
.wpa_slideshow .swiper-button-prev:before {
  -webkit-transform: rotate(-135deg);
  -khtml-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.wpa_slideshow .swiper-button-disabled {
  visibility: hidden;
  opacity: 0;
}
.wpa_slideshow img {
  margin-bottom: 0 !important;
}
.tpl-contact .content {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.tpl-contact .content article {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.tpl-contact .content .contact-info {
  font: italic 400 16px/20px 'Chaparral Pro', 'Arial', sans-serif;
  -webkit-flex-basis: 400px;
  -moz-flex-basis: 400px;
  -ms-flex-preferred-size: 400px;
  flex-basis: 400px;
  color: #272727;
}
.tpl-contact .content .contact-info > div {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.tpl-contact .content .contact-info > div p {
  padding: 0;
}
.tpl-contact .content .contact-info > div > div {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.tpl-contact .content .contact-info > div > div.cf-icon {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-flex-basis: 95px;
  -moz-flex-basis: 95px;
  -ms-flex-preferred-size: 95px;
  flex-basis: 95px;
  background: #acacac;
  margin-right: 20px;
  position: relative;
}
.tpl-contact .content .contact-info > div > div.cf-icon:before {
  padding-bottom: 100%;
  display: block;
  content: '';
}
.tpl-contact .content .contact-info > div > div.cf-icon img {
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  min-height: 50%;
  max-width: 50%;
  height: auto;
  width: auto;
  left: 50%;
  top: 50%;
}
.tpl-contact .getintouch {
  background: url(../images/get-in-touch.jpg) no-repeat 50% 50%;
  -webkit-background-size: cover;
  -khtml-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  font: italic 400 24px 'Chaparral Pro', 'Arial', sans-serif;
  text-align: center;
  color: #fff;
}
.tpl-contact .getintouch h2 {
  text-transform: uppercase;
  font: 700 48px 'Futura PT', 'Arial', sans-serif;
  padding-bottom: 25px;
}
.tpl-contact .getintouch .button {
  color: #fff;
}
.tpl-contact .getintouch .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 3.1481481481rem 0;
}
.tpl-contact .getintouch .row > div {
  border-right: 3px solid #fff;
  border-left: 3px solid #fff;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 40px 0;
}
.tpl-contact .getintouch .row > div:first-child {
  border-left: 0;
}
.tpl-contact .getintouch .row > div:last-child {
  border-right: 0;
}
#cc-map {
  margin: 0;
}
.chat_message {
  font: 700 30px/1 'Futura PT', 'Arial', sans-serif;
  background: #e8222d;
  color: #fff;
}
.chat_message article {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}
.chat_message article i {
  vertical-align: middle;
  display: inline-block;
}
.chat_message article p {
  padding: 0;
}
.tpl-about h2, .tpl-resources h2, .tpl-services h2 {
  font: 700 1.1851851852rem/1.333 'Futura PT', 'Arial', sans-serif;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  text-align: center;
}
.tpl-about h4, .tpl-resources h4, .tpl-services h4 {
  font: 700 18px/1.4 'Futura PT', 'Arial', sans-serif;
  color: #e8222d;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.intro {
  min-height: 595px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-background-size: cover;
  background-size: cover;
}
h1.underline {
  margin: auto;
  font: 700 120px/1 'Futura PT', 'Arial', sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 12px;
  position: relative;
}
h1.underline:after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: -40px;
  width: 313px;
  height: 14px;
  background: #3598c6;
}
.mission {
  padding: 1.8518518519rem 0 0.7407407407rem;
}
.mission .left {
  -webkit-flex-basis: 31.6%;
  -moz-flex-basis: 31.6%;
  -ms-flex-preferred-size: 31.6%;
  flex-basis: 31.6%;
  font-size: 1.5185185185rem;
  line-height: 1.1;
}
.mission .left img {
  margin-top: 30px;
}
.mission .right {
  -webkit-flex-basis: 63.3%;
  -moz-flex-basis: 63.3%;
  -ms-flex-preferred-size: 63.3%;
  flex-basis: 63.3%;
  font-size: 0.8518518519rem;
  line-height: 1.6;
  padding-top: 0.6666666667rem;
}
.staff {
  padding-top: 2.2222222222rem;
}
.staff_members {
  font-size: 0;
  margin: 2.7777777778rem 0 1.4814814815rem;
}
.staff_members .member {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  position: relative;
  z-index: 0;
}
.staff_members .member:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 15px solid #3598c6;
  z-index: 0;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
.staff_members .member .info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(254, 254, 254, 0.9);
  padding: 30px;
  margin: 40px;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
.staff_members .member .info:after {
  content: '';
  display: inline-block;
  width: 0px;
  height: 0px;
  border-bottom: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid rgba(254, 254, 254, 0.9);
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: 100%;
}
.staff_members .member .top {
  margin-bottom: 1rem;
}
.staff_members .member h5 {
  font: 700 16px/1.6 'Futura PT', 'Arial', sans-serif;
  color: #e8222d;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.staff_members .member h6 {
  font: italic 400 16px/1.6 'Chaparral Pro', 'Arial', sans-serif;
}
.staff_members .member .social_linkedin {
  font-size: 28px;
  color: #f69826;
  text-decoration: none;
}
.staff_members .member .social_linkedin:hover {
  color: #3598c6;
}
.staff_members .member .desc {
  font-size: 16px;
  overflow: hidden;
  overflow-y: auto;
  height: 79%;
}
.staff_members .member .desc p {
  padding-bottom: 0;
}
.staff_members .member:hover:after, .staff_members .member:hover .info {
  opacity: 1;
}
.staff_members .member.active:after, .staff_members .member.active .info {
  opacity: 1;
}
.staff_members .mCSB_inside > .mCSB_container {
  margin-right: 12px;
}
.staff_members .mCSB_scrollTools {
  width: 11px;
  right: -1px;
}
.board {
  padding-top: 2.2222222222rem;
}
.board.row {
  width: 1770px;
}
.board_members {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-flow: wrap;
  -moz-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -0.8%;
  width: 101.6%;
  margin-top: 2.3333333333rem;
  margin-bottom: 1.8518518519rem;
}
.board_members > * {
  width: 15.0666666667%;
  margin: 0 0.8% 0.9333333333em;
}
.board_members .member {
  position: relative;
}
.board_members .member > .info {
  display: none;
}
.board_members .member .for_thumb {
  position: relative;
  z-index: 0;
  background: #eee;
  padding-bottom: 100%;
}
.board_members .member .for_thumb:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 5px solid #3598c6;
  z-index: 0;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
.board_members .member .for_thumb .info {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
  padding: 0 3%;
  z-index: 0;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 1;
}
.board_members .member .desc {
  font-size: 15px;
  line-height: 1.3;
  overflow: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(254, 254, 254, 0.9);
  padding: 24px 15px 24px 24px;
  margin: 5px;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
.board_members .member .desc p {
  padding-bottom: 0;
}
.board_members .member h4 {
  margin-bottom: 2px;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.board_members .member h6 {
  font: italic 400 16px/1.6 'Chaparral Pro', 'Arial', sans-serif;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.board_members .member:hover .for_thumb:after, .board_members .member:hover .desc {
  opacity: 1;
}
.board_members .member:hover .for_thumb > .info {
  opacity: 0;
}
.board_members .mCSB_inside > .mCSB_container {
  margin-right: 8px;
}
.board_members .mCSB_scrollTools {
  width: 11px;
  right: -2px;
}
.advisory {
  padding-top: 1.8518518519rem;
}
.advisory_board {
  margin-bottom: 1.8518518519rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.advisory_board .item {
  -webkit-flex-basis: 48%;
  -moz-flex-basis: 48%;
  -ms-flex-preferred-size: 48%;
  flex-basis: 48%;
  margin-bottom: 0.9259259259rem;
}
.alumni {
  background: #3598c6;
  padding: 2.4074074074rem 0 1.6666666667rem;
  position: relative;
}
.alumni > .left {
  -webkit-flex-basis: 21%;
  -moz-flex-basis: 21%;
  -ms-flex-preferred-size: 21%;
  flex-basis: 21%;
  margin: 0 3.3% 0 9.5%;
  color: #fff;
}
.alumni > .left h2 {
  text-align: left;
  color: #e8222d;
  padding: 0 0 20px;
}
.alumni > .left .info {
  font: 400 19px/1.1 'Chaparral Pro', 'Arial', sans-serif;
  height: 460px;
}
.alumni_swiper {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -moz-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  padding-bottom: 2.4074074074rem;
}
.alumni_swiper .swiper-slide {
  width: 430px;
}
.alumni_swiper .swiper-slide .for_img {
  position: relative;
}
.alumni_swiper .swiper-slide .for_img .lm {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fefefe;
  border: 9px solid #f69826;
  cursor: pointer;
  -webkit-transition: all 0.35s ease;
  -khtml-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
  z-index: 0;
}
.alumni_swiper .swiper-slide .for_img .lm small {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  font: 700 1.3333333333rem/1.1 'Futura PT', 'Arial', sans-serif;
  color: #f69826;
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
}
.alumni_swiper .swiper-slide .for_img:hover .lm {
  opacity: 1;
}
.alumni_swiper .swiper-slide .info {
  background: #fff;
  padding: 25px 13% 0 9.3%;
  font: 400 14px/1.7 'Chaparral Pro', 'Arial', sans-serif;
  letter-spacing: 0.25px;
  min-height: 162px;
}
.alumni_swiper .swiper-slide .info h4 {
  letter-spacing: 0.0740740741rem;
  padding-bottom: 0.8148148148rem;
}
.alumni_swiper .swiper-scrollbar {
  left: 0;
  bottom: 0;
  height: 8px;
  width: 900px;
  max-width: 90%;
  border-radius: 4px;
  background: #535353;
}
.alumni_swiper .swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 4px;
  background: #fff;
}
.popup_alumni {
  background: #fff;
  padding: 2.2222222222rem 3.13% 1.2962962963rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s ease;
  -khtml-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  z-index: -1;
}
.popup_alumni.active {
  opacity: 1;
  visibility: visible;
  z-index: 55;
}
.popup_alumni .icon_close_alt2 {
  position: absolute;
  right: 17px;
  top: 17px;
  font-size: 33px;
  color: #f69826;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.popup_alumni .icon_close_alt2:hover {
  color: #e8222d;
}
.alumnus .left {
  -webkit-flex-basis: 43.583%;
  -moz-flex-basis: 43.583%;
  -ms-flex-preferred-size: 43.583%;
  flex-basis: 43.583%;
  margin-right: 5.23%;
}
.alumnus .right {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -moz-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}
.alumnus .right span {
  font: 700 18px/1.1 'Futura PT', 'Arial', sans-serif;
  color: #3598c6;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.alumnus .right h3 {
  font: 700 1.7777777778rem/1 'Futura PT', 'Arial', sans-serif;
  color: #e8222d;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 0.8888888889rem;
}
.alumnus .right p {
  font-size: 18px;
}
.articles_alumni {
  margin-top: 1.4074074074rem;
  padding-top: 0.8888888889rem;
  border-top: 1px solid #c1c6cc;
}
.articles_alumni h2 {
  font-size: 24px;
}
.articles_alumni .title-icon {
  margin: 10px auto 1.5925925926rem;
}
.articles_alumni .articles {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  text-align: center;
}
.articles_alumni .articles h6 {
  font: 700 13px/1.1 'Futura PT', 'Arial', sans-serif;
  color: #3598c6;
  text-transform: uppercase;
  padding-bottom: 7px;
}
.articles_alumni .articles h5 {
  font: 400 19px/1.1 'Chaparral Pro', 'Arial', sans-serif;
  padding-bottom: 0.7777777778rem;
}
.articles_alumni .articles a {
  font: 700 19px/1.1 'Futura PT', 'Arial', sans-serif;
  color: #e8222d;
  text-transform: uppercase;
}
.articles_alumni .article {
  margin: 0 15px 0.9259259259rem;
}
.shadow_alumni {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(84, 85, 84, 0.7);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s ease;
  -khtml-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  z-index: -1;
}
.shadow_alumni.active {
  opacity: 1;
  visibility: visible;
  z-index: 52;
}
.want_to_work {
  background: #e8222d;
  padding: 1.1111111111rem 0;
  text-align: center;
  color: #fff;
}
.want_to_work h2 {
  font-size: 35px;
}
.want_to_work p {
  font-size: 24px;
}
.want_to_work .button {
  letter-spacing: 0.0740740741rem;
}
.financials {
  padding: 2.2222222222rem 0 1.8518518519rem;
}
.awards {
  padding: 2.037037037rem 0 2.2222222222rem;
  background: #efefef;
  text-align: center;
  position: relative;
}
.awards .row {
  width: 1460px;
}
.awards h3 {
  font: 700 20px/1.1 'Futura PT', 'Arial', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.awards .title-icon {
  margin: 18px auto 1.9259259259rem;
}
.awards .title-icon:after, .awards .title-icon:before {
  background: #b8b8b8;
}
.awards .title-icon span:after, .awards .title-icon span:before {
  border-color: #acacac;
}
.awards .awards_swiper img {
  width: 365px;
  margin-bottom: 18px;
}
.awards .awards_swiper h4 {
  margin-bottom: 5px;
}
.awards .custom_next, .awards .custom_prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 53px;
  height: 53px;
  border: 3px solid #a1a2a1;
  line-height: 46px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.awards .custom_next:hover, .awards .custom_prev:hover {
  border-color: #545554;
}
.awards .custom_next {
  right: 50px;
}
.awards .custom_prev {
  left: 50px;
}
.supporters {
  padding: 1.2962962963rem 0 1.6666666667rem;
  text-align: center;
}
.supporters .row {
  width: 1384px;
}
.supporters .title-icon {
  margin: 18px auto 2.2962962963rem;
}
.supporters h3 {
  font: 700 20px/1.1 'Futura PT', 'Arial', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.supporters img {
  margin: 0 1% 1.4814814815rem;
}
.supporters .sup p {
  font: 700 13px/1.6 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
}
.request_permissions {
  background: #e8222d;
  padding: 25px 0;
  text-align: center;
  color: #fff;
}
.request_permissions .button {
  width: 830px;
  max-width: 100%;
  letter-spacing: 0.1111111111rem;
}
.request_permissions p {
  font-size: 21px;
}
.request_permissions p a {
  color: #fff;
}
.stories_matter.row {
  width: 1010px;
  text-align: center;
  padding: 2.6666666667rem 0 1.7037037037rem;
}
.stories_matter.row .title-icon {
  margin: 20px auto 1.2962962963rem;
}
.our_programs {
  padding: 2.7777777778rem 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
.our_programs .title-icon {
  margin: 18px auto 0;
}
.programs {
  text-align: center;
}
.program {
  display: inline-block;
  vertical-align: top;
  width: 210px;
  margin: 0 7.5% 1.962962963rem;
  text-align: left;
}
.program h4 {
  padding-bottom: 6px;
}
.program a {
  text-decoration: none;
  position: relative;
}
.program a:before {
  content: '\3d';
  font-family: 'ElegantIcons';
  position: absolute;
  left: -90px;
  top: 0;
  font-size: 1.7407407407rem;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.program a:hover:before {
  -webkit-transform: translateX(12px);
  -khtml-transform: translateX(12px);
  -moz-transform: translateX(12px);
  -ms-transform: translateX(12px);
  -o-transform: translateX(12px);
  transform: translateX(12px);
}
.program a i {
  font-style: normal;
  display: block;
}
.program p {
  font: 400 18px/1.333 'Chaparral Pro', 'Arial', sans-serif;
}
.curriculum .item {
  padding: 0.7777777778rem 0 0;
}
.curriculum .goleft {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -moz-order: -1;
  -ms-flex-order: -1;
  order: -1;
}
.curriculum .goright {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -moz-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
.curriculum .normal {
  color: #fff;
  padding-bottom: 0.7407407407rem;
}
.curriculum .normal .toexpand {
  display: inline-block;
  font: 400 0.8888888889rem/1.1 'Futura PT', 'Arial', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
}
.curriculum .normal .toexpand:after, .curriculum .normal .toexpand:before {
  font-family: 'ElegantIcons';
  font-size: 2.4074074074rem;
  display: inline-block;
  vertical-align: -0.6666666667rem;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.curriculum .normal .toexpand:after {
  content: '\3b';
  margin-left: 9px;
}
.curriculum .normal .toexpand i {
  font-size: 0.8888888889rem;
  font-style: normal;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 1;
}
.curriculum .normal .toexpand small {
  font-size: 0;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
}
.curriculum .normal .toexpand.active:after, .curriculum .normal .toexpand.active:before {
  -webkit-transform: rotateX(180deg);
  -khtml-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  vertical-align: -0.8518518519rem;
}
.curriculum .normal .toexpand.active i {
  opacity: 0;
  font-size: 0;
}
.curriculum .normal .toexpand.active small {
  opacity: 1;
  font-size: 0.8888888889rem;
}
.curriculum .normal.goleft .toexpand:after {
  content: none;
  margin-left: 0;
}
.curriculum .normal.goleft .toexpand:before {
  content: '\3b';
  margin-right: 9px;
}
.curriculum .normal .left {
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 1;
}
.curriculum .normal .left.active {
  opacity: 0;
}
.curriculum .normal .left.active h5, .curriculum .normal .left.active h3 {
  font-size: 0;
}
.curriculum .expand {
  display: none;
  color: #fff;
  padding: 0.3703703704rem 0 0.8148148148rem;
}
.curriculum .expand .left {
  -webkit-flex-basis: 34.2%;
  -moz-flex-basis: 34.2%;
  -ms-flex-preferred-size: 34.2%;
  flex-basis: 34.2%;
  margin-bottom: 1.1111111111rem;
}
.curriculum .expand .right {
  -webkit-flex-basis: 51.3%;
  -moz-flex-basis: 51.3%;
  -ms-flex-preferred-size: 51.3%;
  flex-basis: 51.3%;
  margin-bottom: 1.1111111111rem;
}
.curriculum .expand .right.goright {
  text-align: right;
}
.curriculum .expand .info {
  font-size: 18px;
  color: #000;
  margin-top: 1.8518518519rem;
}
.curriculum .expand .info .button {
  color: #fff;
  margin-top: 0.6666666667rem;
}
.curriculum .expand .info .button:hover {
  color: #000;
}
.curriculum .normal.goleft .left, .curriculum .expand.goleft .left {
  text-align: right;
}
.curriculum h5 {
  font: 400 0.8888888889rem/1.1 'Futura PT', 'Arial', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.curriculum h3 {
  font: 700 1.7037037037rem/1.1 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -khtml-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.anthology {
  color: #fff;
  padding: 160px 0 120px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  text-align: center;
}
.anthology .row {
  padding: 0 6%;
}
.anthology .title-icon {
  margin: 20px auto 1.2962962963rem;
}
.anthology .title-icon span:after, .anthology .title-icon span:before {
  border-color: #fff;
}
.feat {
  padding: 0.8518518519rem 0 0;
}
.feat .normal .toexpand {
  color: #545554;
}
.feat .expand {
  padding: 2.4074074074rem 0 3.1481481481rem;
}
.feat .expand .left {
  -webkit-flex-basis: 51.3%;
  -moz-flex-basis: 51.3%;
  -ms-flex-preferred-size: 51.3%;
  flex-basis: 51.3%;
}
.feat .expand .right {
  -webkit-flex-basis: 34.2%;
  -moz-flex-basis: 34.2%;
  -ms-flex-preferred-size: 34.2%;
  flex-basis: 34.2%;
  text-align: center;
}
.feat .expand .info {
  font-size: 1rem;
  color: #545554;
  margin-top: 1.3703703704rem;
}
.feat .expand .info .button {
  color: #000;
  margin-top: 2.037037037rem;
}
.feat .expand .info .button:hover {
  color: #fff;
}
.feat h5 {
  font: 700 18px/1.3 'Futura PT', 'Arial', sans-serif;
  color: #f69826;
}
.feat h3 {
  font-size: 1.7777777778rem;
  color: #e8222d;
  letter-spacing: 0.5px;
}
.magazine {
  padding: 117px 0 2.4444444444rem;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  text-align: center;
}
.magazine .row {
  padding: 0 6%;
}
.magazine .title-icon {
  margin: 20px auto 1.2962962963rem;
}
.magazine .title-icon:after, .magazine .title-icon:before {
  background: #3598c6;
}
.magazine .title-icon span:after, .magazine .title-icon span:before {
  border-color: #545554;
}
.feat_magazine {
  background: #c1c1c1;
}
.feat_magazine h5 {
  color: #3598c6;
}
.colored_cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.colored_cols .col {
  -webkit-flex-basis: 33.3333%;
  -moz-flex-basis: 33.3333%;
  -ms-flex-preferred-size: 33.3333%;
  flex-basis: 33.3333%;
  padding: 2.2222222222rem 2.6%;
  font-size: 0.8518518519rem;
  color: #fff;
  text-align: center;
}
.colored_cols .col[style="background-color: #e8222d"] .button:hover {
  color: #e8222d;
  background: #fff;
  border-color: #fff;
}
.colored_cols img {
  margin-bottom: 1.3703703704rem;
}
.colored_cols .button {
  color: #fff;
  border-color: #fff;
  margin-top: 0.8518518519rem;
  padding: 0 1.1111111111rem;
  font-size: 18px;
}
.colored_cols .button:hover {
  border-color: #e8222d;
}
.colored_cols .button em {
  font-style: normal;
  display: inline-block;
  margin-top: 4px;
}
.subscribe {
  background: #efefef;
  padding: 1.8518518519rem 0;
}
.subscribe h3 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -moz-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  font: 700 1.037037037rem/1.1 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
}
.subscribe .selbel_w {
  -webkit-flex-basis: 293px;
  -moz-flex-basis: 293px;
  -ms-flex-preferred-size: 293px;
  flex-basis: 293px;
  background: #fff;
  margin-bottom: 0;
  height: 50px;
  font: 400 12px/50px 'Futura PT', 'Arial', sans-serif;
  text-transform: uppercase;
}
.subscribe .selbel_w select + span {
  padding: 0 8px;
  border-bottom: none;
}
.subscribe .selbel_w select + span:after {
  content: none;
}
.subscribe .selbel_w select + span:before {
  content: '\33';
  font-family: 'ElegantIcons';
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 2px;
  font-size: 30px;
  margin-top: -2px;
}
.subscribe .button {
  -webkit-flex-basis: 170px;
  -moz-flex-basis: 170px;
  -ms-flex-preferred-size: 170px;
  flex-basis: 170px;
  padding: 0 20px;
  letter-spacing: 0.1111111111rem;
  margin-left: 30px;
}
.prof_development {
  padding: 2.5925925926rem 0 1.7037037037rem;
  text-align: center;
}
.prof_development .row {
  padding: 0 6%;
}
.prof_development .title-icon {
  margin: 18px auto 1.4814814815rem;
}
.teen_writing {
  color: #fff;
  padding: 2.5185185185rem 0 1.037037037rem;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  text-align: center;
}
.teen_writing .row {
  padding: 0 5%;
}
.teen_writing .title-icon {
  margin: 20px auto 2.1481481481rem;
}
.teen_writing .title-icon span:after, .teen_writing .title-icon span:before {
  border-color: #fff;
}
.tpl-services .awards, .tpl-results .awards {
  background: #e8222d;
  color: #fff;
}
.tpl-services .awards h4, .tpl-results .awards h4 {
  color: #f69826;
}
.tpl-services .awards .title-icon:after, .tpl-results .awards .title-icon:after, .tpl-services .awards .title-icon:before, .tpl-results .awards .title-icon:before {
  background: #f69826;
}
.tpl-services .awards .title-icon span:after, .tpl-results .awards .title-icon span:after, .tpl-services .awards .title-icon span:before, .tpl-results .awards .title-icon span:before {
  border-color: #fff;
}
.tpl-services .awards .custom_next, .tpl-results .awards .custom_next, .tpl-services .awards .custom_prev, .tpl-results .awards .custom_prev {
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.5);
}
.tpl-services .awards .custom_next:hover, .tpl-results .awards .custom_next:hover, .tpl-services .awards .custom_prev:hover, .tpl-results .awards .custom_prev:hover {
  border-color: #fff;
}
.tpl-services h1.underline, .tpl-results h1.underline {
  margin: auto;
  font: 700 80px 'Futura PT', 'Arial', sans-serif;
}
.future_services {
  display: none;
  padding: 2.1111111111rem 0 0;
}
.future_services .title-icon {
  margin: 18px auto 1.2962962963rem;
}
.teen_writing a {
  color: #fff;
}
.services {
  font-size: 0;
  margin: 0 -1.25%;
  text-align: center;
}
.service {
  display: inline-block;
  vertical-align: top;
  width: 30.8%;
  max-width: 100%;
  padding: 1rem 5.15% 0.962962963rem 8.55%;
  margin: 0 1.25% 0.5555555556rem;
  text-align: left;
  border-bottom: 1px solid #ededed;
}
.service:last-child, .service:nth-last-child(2), .service:nth-last-child(3) {
  border-bottom: 0;
}
.service h4 {
  padding-bottom: 0.4814814815rem;
  position: relative;
}
.service h4 i {
  position: absolute;
  top: 0;
  left: -85px;
  font-size: 1.5925925926rem;
  line-height: 1;
  color: #3598c6;
}
.service h4 a {
  font: 400 18px/1.1 'Futura PT', 'Arial', sans-serif;
  color: #e8222d;
  text-decoration: none;
}
.service h4 a:hover {
  color: #3598c6;
}
.service p {
  font: 400 18px/1.333 'Chaparral Pro', 'Arial', sans-serif;
}
.testimonials {
  background: #efefef;
  padding: 2rem 0 1.6296296296rem;
}
.testimonials .row {
  width: 970px;
}
.testimonials .title-icon {
  margin: 20px auto 1.6296296296rem;
}
.testimonials h2 {
  text-align: center;
  text-transform: uppercase;
}
.testi_thumbs {
  width: 490px;
  max-width: 100%;
}
.testi_thumbs .swiper-slide-active .testi_img {
  opacity: 1;
}
.testi_thumbs .swiper-slide-active .testi_img:after {
  opacity: 1;
}
.testi_img {
  border-radius: 50%;
  width: 143px;
  height: 143px;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 1.2962962963rem;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -khtml-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -moz-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -ms-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -o-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  opacity: 0.5;
  position: relative;
}
.testi_img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 6px solid #e8222d;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 50%;
  opacity: 0;
}
.testi_img:hover {
  opacity: 1;
}
.testi_img:hover:after {
  opacity: 1;
}
.testi_img img {
  -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -khtml-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -moz-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -ms-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  -o-box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
.testi_swiper {
  text-align: center;
  padding-bottom: 1.6296296296rem;
}
.testi_swiper .testi_img {
  display: none;
}
.testi_swiper .info {
  font-size: 0.8888888889rem;
  padding-bottom: 4px;
  margin-bottom: 1.0740740741rem;
  position: relative;
}
.testi_swiper .info:after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: 0;
  width: 9.2592592593rem;
  height: 2px;
  background: #f69826;
}
.testi_swiper h5 {
  font: 400 0.8333333333rem/1.1 'Futura PT', 'Arial', sans-serif;
  color: #e8222d;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-bottom: 0.5925925926rem;
}
.testi_swiper h6 {
  font: italic 400 0.7037037037rem/1.1 'Chaparral Pro', 'Arial', sans-serif;
  letter-spacing: 0.5px;
}
.testi_swiper .swiper-pagination {
  bottom: -12px;
}
.testi_swiper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 0 7px !important;
  background: #acacac;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.testi_swiper .swiper-pagination-bullet:hover, .testi_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #f69826;
}
.tpl-donate .donate-page {
  width: 900px;
  max-width: 100%;
  margin: 0 auto 3.7037037037rem;
  background: #efefef;
  padding: 1.1111111111rem;
}
.tpl-donate h4 {
  font: 900 15px/1.1 'Futura PT', 'Arial', sans-serif;
  color: #3598c6;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.7037037037rem 0 0.6296296296rem;
  margin-bottom: 0.4814814815rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.tpl-donate label {
  font: 900 13px/1.1 'Futura PT', 'Arial', sans-serif;
  color: #141414;
  letter-spacing: 1px;
  text-transform: uppercase;
  vertical-align: middle;
  cursor: pointer;
}
.tpl-donate input[type="radio"] {
  cursor: pointer;
  vertical-align: middle;
}
.tpl-donate section {
  padding-bottom: 0.8518518519rem;
}
.tpl-donate section > div {
  line-height: 1;
}
.tpl-donate form.donate-form {
  text-align: center;
}
.tpl-donate .button {
  width: 100%;
  background: #e8222d;
  font: 900 15px/1.9259259259rem 'Futura PT', 'Arial', sans-serif;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  height: auto;
}
.tpl-donate .button:hover {
  background-color: transparent;
  color: #141414;
}
.tpl-donate .ddonation-var {
  display: inline-block;
  width: 24%;
  position: relative;
}
.tpl-donate .ddonation-var:first-of-type {
  margin-bottom: 10px;
}
.tpl-donate .ddonation-var [name="donation_self"] {
  position: absolute;
  left: 63px;
  bottom: 2px;
  width: 85px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #acacac;
  font: 700 11px 'Chaparral Pro', 'Arial', sans-serif;
  color: #141414;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tpl-donate .ddonation-var [name="donation_self"]:focus {
  border-color: #e8222d;
}
.tpl-donate .error {
  font: 400 16px/1.3 'Chaparral Pro', 'Arial', sans-serif;
  color: #e8222d;
}
.tpl-donate .donate_top {
  background-color: #3598c6;
  background-position: 50% 0;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 3.037037037rem 0 1.8518518519rem;
  margin-bottom: 1.6666666667rem;
  position: relative;
  z-index: 0;
}
.tpl-donate .donate_top:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(53, 152, 198, 0.35);
}
.tpl-donate .donate_top h1 {
  font: 900 2.2222222222rem/1 'Futura PT', 'Arial', sans-serif;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 0.7777777778rem;
}
.tpl-donate .donate_top p {
  font: italic 400 0.8888888889rem/1.1 'Chaparral Pro', 'Arial', sans-serif;
}
.tpl-donate .donation_policy {
  text-align: center;
  margin-bottom: 3.7037037037rem;
}
.tpl-donate .donation_policy h3 {
  font: 900 14px/1.4 'Futura PT', 'Arial', sans-serif;
  color: #3598c6;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tpl-donate .donation_policy p {
  font: 400 14px/1.3 'Chaparral Pro', 'Arial', sans-serif;
  color: #141414;
}
h4.for_donnation_aim {
  border-bottom: none;
  margin-bottom: 0;
}
h4.for_donnation_aim + span {
  position: relative;
}
h4.for_donnation_aim + span:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 1px;
  background: #fff;
}
.tpl-boardportal #bloggrid {
  padding-top: 20px;
}
#ajaxlogin {
  margin: 0 auto;
  width: 300px;
}
#ajaxlogin .error {
  font-size: 17px;
  color: #f00;
}
#ajaxlogin input {
  border: 1px solid #ccc;
  padding: 5px;
  display: block;
  margin: 5px auto;
  width: 100%;
}
#ajaxlogin input[type=submit] {
  background: #e8222d;
  font: 900 15px/1.1111111111rem 'Futura PT', 'Arial', sans-serif;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  height: auto;
  border: 3px solid #e8222d;
}
#ajaxlogin input[type=submit]:hover {
  background-color: transparent;
  color: #141414;
}
.tpl-results .p50 {
  padding: 50px 0;
}
.tpl-results .p50 table {
  width: 100%;
}
.tpl-results .p50 table td {
  width: 32%;
}
.teen_writing.magazine h2 {
  color: #545554;
}
.teen_writing.magazine p {
  color: #545554;
}
