@charset "UTF-8";
/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */ }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/* Preload images */
body:after {
  content: url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png);
  display: none; }

body.lb-disable-scrolling {
  overflow: hidden; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal; }

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white; }

.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white; }

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }

.lb-container > .nav {
  left: 0; }

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ccc; }

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em; }

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em; }

.lb-data .lb-caption a {
  color: #4ae; }

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999; }

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

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

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  box-sizing: border-box; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.wpcf7 br {
  display: none; }

input,
label,
select,
button,
textarea {
  background: none;
  border: 0;
  display: inline-block;
  line-height: 2;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  white-space: normal; }

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0; }

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px; }

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none; }

/* Buttons
-----------------------------------------------*/
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto; }

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none; }

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto; }

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
html {
  overflow-x: hidden; }

body {
  color: #000000;
  font-family: "Open Sans", sans-serif;
  line-height: 26px;
  min-width: 320px;
  overflow-x: hidden; }

.loop a {
  color: #3e3e3e!important;
  text-decoration: none!important; }
.loop a:hover {
  color: #a20000!important;
  text-decoration: none!important; }

.clearfix:after {
  content: "";
  display: table;
  clear: both; }

.nowrap {
  white-space: nowrap; }

.section-padding {
  padding: 26px 0; }

@media (min-width: 640px) {
  .section-padding {
    padding: 52px 0; } }

@media (min-width: 1024px) {
  .section-padding {
    padding: 30px 0; } }

.section-padding-small {
  padding: 26px 0; }

pre {
  background: #eee;
  color: #000;
  font-family: Courier;
  font-weight: 400;
  font-size: 14px;
  padding: 10px; }

.container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto; }

.container:after {
  content: " ";
  display: block;
  clear: both; }

@media (min-width: 640px) {
  .container {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto; }
  .container:after {
    content: " ";
    display: block;
    clear: both; } }
@media (max-width: 1024px) {
  .widget-lat {
    display:none;
  }
}
@media (min-width: 1024px) {
  .widget-lat {
    width: 200px;
    position: fixed;
    z-index: 0;
    top: 150px;
    left: 10px;
    /* background: #eee; */
    overflow-x: hidden;
    padding: 8px 0;
  }
  .posts-single-sb {
    margin-left: 230px;
  }
  .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto; }
  .container:after {
    content: " ";
    display: block;
    clear: both; } }

@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto; }
  .container:after {
    content: " ";
    display: block;
    clear: both; } }

@font-face {
  font-family: "icons";
  src: url("../fonts/icons/icons.eot");
  src: url("../fonts/icons/icons.eot?#iefix") format("eot"), url("../fonts/icons/icons.woff") format("woff"), url("../fonts/icons/icons.ttf") format("truetype"), url("../fonts/icons/icons.svg#icons") format("svg"); }

.icon-arrow-left:before, .icon-arrow-right:before, .icon-clock:before, .icon-facebook-circle:before, .icon-facebook:before, .icon-follow:before, .icon-instagram:before, .icon-library:before, .icon-like:before, .icon-linkedin-circle:before, .icon-location:before, .icon-menu:before, .icon-more:before, .icon-reply:before, .icon-search:before, .icon-twitter-circle:before, .icon-twitter:before, .icon-user:before, .icon-youtube-circle:before {
  font-family: "icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none; }

.icon-arrow-left:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-arrow-right:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-clock:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-facebook-circle:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-facebook:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-follow:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-instagram:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-library:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-like:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-linkedin-circle:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-location:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-menu:before {
  content: "";
  display: block;
  vertical-align: middle; }

  .icon-search:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-more:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-reply:before {
  content: "";
  display: block;
  vertical-align: middle; }


.icon-twitter-circle:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-twitter:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-user:before {
  content: "";
  display: block;
  vertical-align: middle; }

.icon-youtube-circle:before {
  content: "";
  display: block;
  vertical-align: middle; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.button,
.tribe-events-button {
  border: 1px solid #fff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: inline-block;
  height: 39px;
  font-size: 14px;
  font-weight: 700;
  line-height: 37px;
  padding: 0 10px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap; }

.button-white-transparent {
  background: none;
  border: 1px solid #fff; }

.button-white-transparent:hover {
  background: rgba(255, 255, 255, 0.1); }

.button-grey {
  background: #565656;
  border: 1px solid #565656;
  color: #fff; }

.button-grey:hover {
  background: #3d3d3d; }

.button-green {
  background: #c90000;
  border: 1px solid #c90000;
  color: #fff; }

.button-green:hover {
  background: #fff;
  border-color: #c90000;
  color: #e6e6e6;
  text-decoration: none!important }

a.tribe-events-button {
  background: #565656 !important;
  border-radius: 0 !important;
  border: 1px solid #565656 !important;
  color: #fff !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  line-height: 37px !important;
  margin-top: 26px !important;
  padding: 0 10px !important; }

a.tribe-events-button:hover {
  background: #3d3d3d !important; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
input,
textarea {
  font-family: inherit; }

input:focus,
textarea:focus {
  border-color: #c90000;
  box-shadow: 0px 0px 3px 0px #c90000; }

  input.valid, input[aria-invalid="false"], input:valid,
  textarea.valid,
  textarea[aria-invalid="false"],
  textarea:valid {
      border-color: rgb(26, 26, 26) !important;
      box-shadow: 0px 0px 3px 0px rgb(138, 114, 114) !important;
      }

input.error, input.wpcf7-not-valid, input[aria-invalid="true"],
textarea.error,
textarea.wpcf7-not-valid,
textarea[aria-invalid="true"] {
  border-color: #F46847 !important;
  box-shadow: 0px 0px 3px 0px #F46847 !important; }

.wpcf7-form {
  position: relative; }

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 13px; }

.wpcf7-form .wpcf7-not-valid-tip {
  display: none !important; }

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  border: 1px solid #c90000;
  color: inherit;
  display: block;
  font-size: 12px;
  font-family: inherit;
  height: 26px;
  line-height: 26px;
  padding: 0 10px;
  width: 100%; }

.wpcf7-form input[type="text"]::-webkit-input-placeholder,
.wpcf7-form input[type="email"]::-webkit-input-placeholder,
.wpcf7-form input[type="tel"]::-webkit-input-placeholder,
.wpcf7-form textarea::-webkit-input-placeholder,
.wpcf7-form select::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-style: italic; }

.wpcf7-form input[type="text"]::-moz-placeholder,
.wpcf7-form input[type="email"]::-moz-placeholder,
.wpcf7-form input[type="tel"]::-moz-placeholder,
.wpcf7-form textarea::-moz-placeholder,
.wpcf7-form select::-moz-placeholder {
  /* Firefox 19+ */
  font-style: italic; }

.wpcf7-form input[type="text"]:-ms-input-placeholder,
.wpcf7-form input[type="email"]:-ms-input-placeholder,
.wpcf7-form input[type="tel"]:-ms-input-placeholder,
.wpcf7-form textarea:-ms-input-placeholder,
.wpcf7-form select:-ms-input-placeholder {
  /* IE 10+ */
  font-style: italic; }

.wpcf7-form input[type="text"]:-moz-placeholder,
.wpcf7-form input[type="email"]:-moz-placeholder,
.wpcf7-form input[type="tel"]:-moz-placeholder,
.wpcf7-form textarea:-moz-placeholder,
.wpcf7-form select:-moz-placeholder {
  /* Firefox 18- */
  font-style: italic; }

.wpcf7-form textarea {
  height: 156px; }

.wpcf7-form .wpcf7-submit {
  display: block;
  width: 100%; }

.wpcf7-form .ajax-loader {
  bottom: 10px;
  right: 10px;
  position: absolute; }

.wpcf7-form .wpcf7-response-output {
  border-width: 1px;
  font-size: 12px;
  line-height: 19.5px;
  margin: 26px 0 0 0;
  padding: 10px; }

@media (min-width: 1024px) {
  .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 26px; }
  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form textarea,
  .wpcf7-form select {
    font-size: 14px;
    height: 39px;
    line-height: 39px;
    padding: 0 16px; }
  .wpcf7-form textarea {
    height: 156px; }
  .wpcf7-form .ajax-loader {
    bottom: 10px;
    right: 10px; }
  .wpcf7-form .wpcf7-response-output {
    border-width: 1px;
    font-size: 14px;
    line-height: 19.5px;
    margin: 26px 0 0 0;
    padding: 10px; } }

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea,
.mc4wp-form input[type="text"],
.mc4wp-form input[type="email"],
.mc4wp-form input[type="tel"],
.mc4wp-form textarea {
  border: 1px solid #c90000;
  display: block;
  font-size: 12px;
  height: 26px;
  line-height: 13px;
  padding: 6.5px 10px;
  width: 100%; }

.form input[type="text"]::-webkit-input-placeholder,
.form input[type="email"]::-webkit-input-placeholder,
.form input[type="tel"]::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder,
.mc4wp-form input[type="text"]::-webkit-input-placeholder,
.mc4wp-form input[type="email"]::-webkit-input-placeholder,
.mc4wp-form input[type="tel"]::-webkit-input-placeholder,
.mc4wp-form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-style: italic; }

.form input[type="text"]::-moz-placeholder,
.form input[type="email"]::-moz-placeholder,
.form input[type="tel"]::-moz-placeholder,
.form textarea::-moz-placeholder,
.mc4wp-form input[type="text"]::-moz-placeholder,
.mc4wp-form input[type="email"]::-moz-placeholder,
.mc4wp-form input[type="tel"]::-moz-placeholder,
.mc4wp-form textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-style: italic; }

.form input[type="text"]:-ms-input-placeholder,
.form input[type="email"]:-ms-input-placeholder,
.form input[type="tel"]:-ms-input-placeholder,
.form textarea:-ms-input-placeholder,
.mc4wp-form input[type="text"]:-ms-input-placeholder,
.mc4wp-form input[type="email"]:-ms-input-placeholder,
.mc4wp-form input[type="tel"]:-ms-input-placeholder,
.mc4wp-form textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-style: italic; }

.form input[type="text"]:-moz-placeholder,
.form input[type="email"]:-moz-placeholder,
.form input[type="tel"]:-moz-placeholder,
.form textarea:-moz-placeholder,
.mc4wp-form input[type="text"]:-moz-placeholder,
.mc4wp-form input[type="email"]:-moz-placeholder,
.mc4wp-form input[type="tel"]:-moz-placeholder,
.mc4wp-form textarea:-moz-placeholder {
  /* Firefox 18- */
  font-style: italic; }

.form textarea,
.mc4wp-form textarea {
  height: 156px; }

.form .row,
.mc4wp-form .row {
  margin-bottom: 26px; }

@media (min-width: 1024px) {
  .form input[type="text"],
  .form input[type="email"],
  .form input[type="tel"],
  .form textarea,
  .mc4wp-form input[type="text"],
  .mc4wp-form input[type="email"],
  .mc4wp-form input[type="tel"],
  .mc4wp-form textarea {
    font-size: 14px;
    height: 39px;
    padding: 13px 16px; }
  .form textarea,
  .mc4wp-form textarea {
    height: 156px; } }

.mc4wp-form input[type="text"],
.mc4wp-form input[type="email"],
.mc4wp-form input[type="tel"],
.mc4wp-form textarea {
  border-color: #fff;
  color: #fff; }

.mc4wp-form .row-submit {
  text-align: center; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.pagination ul {
  text-align: center; }

.pagination ul li {
  display: inline-block; }

.pagination ul li a,
.pagination ul li span {
  border: 1px solid #929294;
  border-radius: 50%;
  font-size: 12px;
  display: block;
  height: 36px;
  line-height: 34px;
  text-align: center;
  width: 36px; }

  .pagination ul li a {
    cursor: pointer;
    text-decoration: none;
    color: gray;}
  

.pagination ul li a:hover,
.pagination ul li span {
  background: #c90000;
  color: #fff;
  font-weight: 700; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
ul.slick-dots {
  text-align: center; }

ul.slick-dots li {
  display: inline-block;
  margin: 0 4px; }

ul.slick-dots li button {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 8px;
  width: 8px; }

ul.slick-dots li.slick-active button {
  background: #c90000; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.arrow {
  background: #fff;
  border-radius: 50%;
  color: #c90000;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  height: 39px;
  line-height: 39px;
  text-align: center;
  width: 39px; }

.arrow:hover {
  opacity: 0.7; }

.arrow.disabled {
  cursor: default;
  opacity: 0.2; }

.arrow.green {
  background: #c90000;
  color: #fff; }

.arrow.prev span::before {
  display: block;
  margin-left: -3px; }

.arrow.next span::before {
  display: block;
  margin-right: -3px; }

.arrow.small {
  font-size: 8px;
  height: 26px;
  line-height: 26px;
  width: 26px; }

.arrow.prev.small span::before {
  display: block;
  margin-left: -1px; }

.arrow.next.small span::before {
  display: block;
  margin-right: -1px; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.title-1 {
  background: #c90000;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 13px;
  padding: 7.02px 10px 5.98px 10px;
  text-align: center; }

@media (min-width: 640px) {
  .title-1 {
    font-size: 16px; } }

@media (min-width: 1024px) {
  .title-1 {
    font-size: 20px;
    line-height: 26px; } }

.title-1.white {
  background: #fff;
  color: #c90000; }

.title-wrapper .title-1 {
  width: 66.10169%;
  float: left;
  margin-right: 1.69492%;
  margin-left: 16.94915%;
  margin-right: 16.94915%;
  margin-bottom: 26px; }
#links {
  margin-bottom: 10px; }

@media (min-width: 640px) {
  .title-wrapper .title-1 {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 25.42373%;
    margin-right: 25.42373%; } 
  }

@media (min-width: 1024px) {
  .title-wrapper .title-1 {
    width: 32.20339%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 33.89831%;
    margin-right: 33.89831%;
    margin-bottom: 39px; } 
    #links {
      margin-bottom: 10px; }
  }

.title-2 {
  border: 1px solid #fff;
  display: block;
  height: 26px;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  text-align: center; }

@media (min-width: 640px) {
  .title-2 {
    font-size: 16px; } }

.title-3 {
  color: #c90000;
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
  position: relative; }

.title-3:after {
  background: #c90000;
  bottom: -10px;
  content: " ";
  display: inline-block;
  left: 50%;
  margin-left: -20px;
  position: absolute;
  height: 1px;
  width: 40px; }

.title-wrapper .title-3 {
  margin-bottom: 26px;
  text-align: center; }

@media (min-width: 640px) {
  .title-3 {
    font-size: 16px; }
  .title-wrapper .title-3 {
    margin-bottom: 39px; } }

@media (min-width: 1024px) {
  .title-3 {
    font-size: 20px; }
  .title-wrapper .title-3 {
    margin-bottom: 52px; } }

.title-wrapper .title-4 {
  color: #c90000;
  font-size: 36px!important;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 26px;
  text-align: center; }

@media (min-width: 1024px) {
  .title-wrapper .title-4 {
    font-size: 16px; } }

.title-5 {
  color: #c90000;
  font-size: 18px;
  font-weight: 700; }

.title-6 {
  font-size: 18px;
  font-weight: 300; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.text-content h1 {
  background: #c90000;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 26px;
  padding: 0 10px;
  position: relative;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase; }

@media (min-width: 640px) {
  .text-content h1 {
    font-size: 16px; } }

@media (min-width: 1024px) {
  .text-content h1 {
    font-size: 20px;
    line-height: 39px; } }

.text-content h2 {
  color: #c90000;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 13px; }

@media (min-width: 640px) {
  .text-content h2 {
    font-size: 30px;
    line-height: 39px; } }

.text-content h3 {
  color: #c90000;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 13px; }

@media (min-width: 640px) {
  .text-content h3 {
    font-size: 20px; } }

.text-content h4 {
  color: #929294;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 13px; }

@media (min-width: 640px) {
  .text-content h4 {
    font-size: 18px; } }

.text-content p {
  font-size: 12px;
  font-weight: 300;
  line-height: 19.5px;
  margin-bottom: 26px; }

@media (min-width: 640px) {
  .text-content p {
    font-size: 16px;
    line-height: 26px; } }

.text-content b, .text-content strong {
  font-weight: 700; }

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

.text-content a {
  color: #c90000;
  font-weight: 700; }

.text-content a:hover {
  color: #6e8c3c; }

.text-content blockquote {
  background: #F3F3F3;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 26px;
  padding: 13px; }

.text-content blockquote p {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0; }

.text-content del {
  text-decoration: line-through; }

.text-content hr {
  border: 0;
  border-top: 1px solid #929294;
  margin-bottom: 26px; }

.text-content ul, .text-content ol {
  font-size: 14px;
  margin-bottom: 26px;
  padding-left: 19.5px; }

@media (min-width: 1024px) {
  .text-content ul, .text-content ol {
    font-size: 16px; } }

.text-content ul {
  list-style: disc; }

.text-content ul ul {
  margin-bottom: 0;
  list-style: circle; }

.text-content ol {
  list-style: decimal; }

.text-content ol ol {
  margin-bottom: 0; }

.text-content .date {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 26px; }

@media (min-width: 640px) {
  .text-content .date {
    font-size: 16px; } }

.text-content table {
  margin-bottom: 26px; }

.text-content table td {
  border: 1px solid #fff; }

.text-content table thead td {
  color: #fff;
  font-weight: 700;
  padding: 6.5px 26px;
  text-align: center; }

.text-content table thead td:nth-child(odd) {
  background: #80B53A; }

.text-content table thead td:nth-child(even) {
  background: #73A535; }

.text-content table tbody tr td {
  padding: 13px 26px; }

.text-content table tbody tr:nth-child(odd) td {
  background: #F2F2F2; }

.text-content table tbody tr:nth-child(even) td {
  background: #DDDDDD; }

.text-content table p {
  margin-bottom: 0; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.logo h1,
.logo-min h1 {
  display: inline-block;
  height: inherit;
  width: auto; }

.logo h1 a,
.logo h1 a img, 
.logo-min h1 a,
.logo-min h1 a img {
  display: block;
  height: inherit;
  width: auto; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.menu-button a {
  outline-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  color: #c90000;
  display: inline-block;
  font-size: 12px;
  line-height: 26px; }

.menu-button a:hover {
  color: #8AB04B; }

.menu-button a.active {
  color: #929294; }

.menu-button a span {
  display: block; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.search-button a {
  color: #c90000;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  outline-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent; }

.search-button a:hover {
  color: #8AB04B; }

.search-button a.active {
  color: #929294; }

.search-button a span {
  display: block; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
@media (max-width: 1219px) {
  .main-menu {
    background: #fff;
    border-bottom: 2px solid #c90000;
    display: none;
    left: 0;
    position: absolute;
    top: 52px;
    min-width: 320px;
    overflow: hidden;
    width: 100%; }
  .main-menu ul {
    border-top: 1px solid #d9d9d9;
    display: block; }
  .main-menu li {
    display: block;
    position: relative; }
  .main-menu a.link {
    border-top: 1px solid #d9d9d9;
    display: block;
    font-size: 14px;
    line-height: 26px;
    padding: 6.5px 5%; }
  .main-menu li:first-child a.link {
    border: 0; }
  .main-menu ul li ul li a.link {
    background: #f2f2f2; }
  .main-menu ul li ul li ul li a.link {
    background: #e6e6e6; }
  .main-menu ul li.has-child > a.link {
    padding-right: calc( 5% + 39px); }
  .main-menu a.more {
    background: #c90000;
    color: #fff;
    height: 40px;
    line-height: 39px;
    font-weight: 700;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 39px; }
  .main-menu ul li ul {
    display: none; }
  /* .f-menu {
    background: #fff;
    border-bottom: 2px solid #c90000;
    display: none;
    left: 0;
    position: absolute;
    top: 52px;
    min-width: 320px;
    overflow: hidden;
    width: 100%; }
  .f-menu ul {
    border-top: 1px solid #d9d9d9;
    display: block; }
  .f-menu li {
    display: block;
    position: relative; }
  .f-menu a.link {
    border-top: 1px solid #d9d9d9;
    display: block;
    font-size: 14px;
    line-height: 26px;
    padding: 6.5px 5%; }
  .f-menu li:first-child a.link {
    border: 0; }
  .f-menu ul li ul li a.link {
    background: #f2f2f2; }
  .f-menu ul li ul li ul li a.link {
    background: #e6e6e6; }
  .f-menu ul li.has-child > a.link {
    padding-right: calc( 5% + 39px); }
  .f-menu a.more {
    background: #c90000;
    color: #fff;
    height: 40px;
    line-height: 39px;
    font-weight: 700;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 39px; }
  .f-menu ul li ul {
    display: none; } */
   }

@media (min-width: 1220px) {
  .main-menu {
    display: block !important;
    font-size: 13px;
    height: auto !important;
    padding: 0 !important; }
  .main-menu > ul > li {
    float: left;
    position: relative; }
  .main-menu a.more {
    display: none !important; }
  .main-menu ul li a {
    display: block;
    line-height: 32.5px;
    padding: 0 10px;
    white-space: nowrap; }
  .main-menu ul li a:hover {
    background: #c90000;
    color: #fff; }
  .main-menu > ul > li > ul,
  .main-menu > ul > li > ul > li > ul {
    display: none !important; }
  .main-menu > ul > li > a {
    color: #929294;
    display: block;
    line-height: 32.5px;
    padding: 0 10px;
    position: relative; 
    text-decoration: none;}
  .main-menu > ul > li > a:hover {
    background: #c90000 !important;
    border: 0 !important; }
  .main-menu > ul > li > ul > li {
    position: relative; }
  .main-menu > ul > li:hover {
    background: #e6e6e6; }
  .main-menu > ul > li:hover > ul {
    background: #f2f2f2;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    display: block !important;
    left: 0;
    position: absolute;
    min-width: 100%;
    top: 100%; }
  .main-menu > ul > li:hover > ul > li:hover {
    background: #e6e6e6; }
  .main-menu > ul > li:hover > ul > li:hover > ul {
    background: #e6e6e6;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    display: block !important;
    left: 100%;
    position: absolute;
    top: 0; } 
  
  }
 
  .i-menu {
    display: block !important;
    font-size: 13px;
    height: auto !important;
    padding: 0 !important;
    text-align: center; 
    }
  .i-menu > ul > li {
    /* float: left; */
    position: relative;
    display: inline; }
   .i-menu a.more {
    display: none !important; }
  .i-menu ul li a {
    display: block;
    line-height: 32.5px;
    padding: 0 10px;
    white-space: nowrap;
    color: #000;
    text-decoration: none!important; }
  .i-menu ul li a:hover {
    background: #6d6d6d;
    color: #fff; }
  .i-menu > ul > li > ul,
  .i-menu > ul > li > ul > li > ul {
    display: none !important; }
  .i-menu > ul > li > a {
    color: #fff;
    display: inline-block;
    line-height: 32.5px;
    padding: 0 10px;
    position: relative;
    text-decoration: none!important; }
  .i-menu > ul > li > a:hover {
    background: #ffffff !important;
    color: #000 !important;
    border: 0 !important; 
    text-decoration: none!important;}
  .i-menu > ul > li > ul > li {
    position: relative; }
  .i-menu > ul > li:hover {
    background: #7b7b7b;
     }
  .i-menu > ul > li:hover > ul {
    background: #f2f2f2;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    display: block !important;
    left: 0;
    position: absolute;
    min-width: 100%;
    top: 100%; }
  .i-menu > ul > li:hover > ul > li:hover {
    background: #e6e6e6; }
  .i-menu > ul > li:hover > ul > li:hover > ul {
    background: #e6e6e6;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    display: block !important;
    left: 100%;
    position: absolute;
    top: 0; }
  .f-menu {
    display: block !important;
    font-size: 13px;
    height: auto !important;
    padding: 0 !important; }
  .f-menu > ul > li {
    float: left;
    position: relative; }
  .f-menu a.more {
    display: none !important; }
  .f-menu ul li a {
    display: block;
    line-height: 32.5px;
    padding: 0 10px;
    white-space: nowrap;
    color: #000;
    text-decoration: none!important; }
  .f-menu ul li a:hover {
    background: #6d6d6d;
    color: #fff; }
  .f-menu > ul > li > ul,
  .f-menu > ul > li > ul > li > ul {
    display: none !important; }
  .f-menu > ul > li > a {
    color: #fff;
    display: block;
    line-height: 32.5px;
    padding: 0 10px;
    position: relative;
    text-decoration: none!important; }
  .f-menu > ul > li > a:hover {
    background: #ffffff !important;
    color: #000 !important;
    border: 0 !important; 
    text-decoration: none!important;}
  .f-menu > ul > li > ul > li {
    position: relative; }
  .f-menu > ul > li:hover {
    background: #7b7b7b;
     }
  .f-menu > ul > li:hover > ul {
    background: #f2f2f2;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    display: block !important;
    left: 0;
    position: absolute;
    min-width: 100%;
    top: 100%; }
  .f-menu > ul > li:hover > ul > li:hover {
    background: #e6e6e6; }
  .f-menu > ul > li:hover > ul > li:hover > ul {
    background: #e6e6e6;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    display: block !important;
    left: 100%;
    position: absolute;
    top: 0; } 

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.search-form input[type="submit"] {
  display: none; }

@media (max-width: 1023px) {
  .search-form {
    background: #F3F3F3;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    display: none;
    padding: 13px;
    position: absolute;
    right: 0;
    top: 53px; }
  .search-form input[type="search"] {
    background: #fff;
    border: 1px solid #c90000;
    color: #929294;
    font-size: 12px;
    height: 26px;
    line-height: 24px;
    padding: 0 5px; }
  .search-form span.icon {
    display: none; } }

@media (min-width: 1024px) {
  .search-form {
    background: red;
    display: none;
    opacity: 1 !important;
    position: relative; }
  .search-form input[type="search"] {
    background: #fff;
    border: 1px solid #c90000;
    color: #929294;
    display: block;
    font-size: 12px;
    height: 26px;
    line-height: 24px;
    padding: 0 5px 0 25px;
    width: 100%; }
  .search-form span.icon {
    color: #c90000;
    font-size: 12px;
    left: 8px;
    line-height: 26px;
    position: absolute;
    top: 0; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.social-links ul {
  display: inline-block; }

.social-links ul li {
  display: block;
  float: left;
  margin-right: 4px; }

.social-links ul li a {
  display: block;
  font-size: 26px;
  line-height: 26px;
  text-decoration: none !important;
  color: #fff;
 }

.social-links ul li a:hover {
  opacity: 0.7; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.featured-events-item {
  background: #858585;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center; }

.featured-events-item .date {
  border: 1px solid #fff;
  clear: both;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 13px;
  padding: 0 10px; }

.featured-events-item .name {
  font-size: 12px;
  line-height: 13px;
  margin-bottom: 13px; }

.featured-events-item .data {
  display: block;
  line-height: 19.5px;
  text-align: left; }

.featured-events-item .data span.icon {
  display: inline-block;
  font-size: 12px;
  margin-right: 6px;
  text-align: center;
  width: 16px; }

.featured-events-item .data span.text {
  font-size: 12px;
  vertical-align: middle; }

@media (min-width: 1024px) {
  .featured-events-item {
    padding: 26px; }
  .featured-events-item .date {
    font-size: 18px;
    margin-bottom: 26px; }
  .featured-events-item .name {
    font-size: 18px;
    line-height: 19.5px;
    margin-bottom: 26px; }
  .featured-events-item .data {
    line-height: 26px; }
  .featured-events-item .data span.icon {
    font-size: 16px;
    position: relative;
    top: 5px; }
  .featured-events-item .data span.text {
    font-size: 13px; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.post-item {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  display: block;
  position: relative; }

.post-item img {
  display: block;
  height: auto;
  width: 100%; }

.post-item .title {
  background: #c90000;
  bottom: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 19.5px;
  padding: 10px;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1; }

.post-item .mask {
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.5s;
  width: 100%;
  z-index: 2; }

.post-item:hover .mask {
  opacity: 1; }

.post-item .mask span {
  font-size: 39px; }

@media (min-width: 1024px) {
  .post-item .title {
    font-size: 14px; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.careers-item {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  display: block;
  overflow: hidden;
  position: relative; }

.careers-item img {
  display: block;
  height: auto;
  transition: transform 0.5s;
  width: 100%; }

.careers-item .title {
  background: rgba(33, 25, 21, 0.7);
  bottom: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 19.5px;
  padding: 10px;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1; }

.careers-item .mask {
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2; }

.careers-item:hover img {
  transform: scale(1.1); }

@media (min-width: 1024px) {
  .careers-item .title {
    font-size: 14px; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.careers-item-2 {
  display: block;
  overflow: hidden;
  position: relative; }

.careers-item-2 img {
  display: block;
  height: auto;
  transition: transform 0.5s;
  width: 100%; }

.careers-item-2:hover img {
  transform: scale(1.1); }

.careers-item-2 .background-mask {
  opacity: 0.8;
  transition: opacity 0.5s; }

.careers-item-2:hover .background-mask {
  opacity: 0.6; }

.careers-item-2 .background-mask,
.careers-item-2 .mask {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  padding: 20px;
  position: absolute;
  top: 0;
  width: 100%; }

/*

.group:nth-child(3n+1) .careers-item-2:nth-child(2n+1) .mask
{
	background:rgba(141, 198, 64, 0.8);
}

.group:nth-child(3n+1) .careers-item-2:nth-child(2n+2) .mask
{
	background:rgba(1, 128, 183, 0.8);
}

.group:nth-child(3n+2) .careers-item-2:nth-child(2n+1) .mask
{
	background:rgba(255, 203, 6, 0.8);
}

.group:nth-child(3n+2) .careers-item-2:nth-child(2n+2) .mask
{
	background:rgba(237, 30, 35, 0.8);
}

.group:nth-child(3n+3) .careers-item-2:nth-child(2n+1) .mask
{
	background:rgba(88, 46, 145, 0.8);
}

.group:nth-child(3n+3) .careers-item-2:nth-child(2n+2) .mask
{
	background:rgba(245, 130, 33, 0.8);
}

*/
.careers-item-2 .mask .name {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 19.5px;
  text-align: center;
  text-transform: uppercase; }

@media (min-width: 640px) {
  .careers-item-2 .mask .name {
    font-size: 16px; } }

@media (min-width: 1024px) {
  .careers-item-2 .mask .name {
    font-size: 18px;
    line-height: 26px; } }

@media (min-width: 1440px) {
  .careers-item-2 .mask .name {
    font-size: 22px; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.tabs {
  margin-bottom: 26px; }

.tabs .tab-labels,
.menu-line ul {
  display: flex; }

.tabs .tab-label,
.menu-line ul li {
  background: #c90000;
  border: 1px solid #fff;
  border-collapse: collapse;
  color: #fff;
  display: block;
  flex-grow: 1;
  font-size: 11px;
  font-weight: 700;
  height: 26px;
  line-height: 24px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  z-index: 2; }

.tabs .tab-label:hover,
.menu-line ul li:hover {
  background: #435c1f; }

.tabs .tab-label.active,
.menu-line ul li.active {
  background: #fff !important;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  border-color: #c90000;
  color: #858585;
  transform: scale(1.05);
  z-index: 3; }

.tabs .tab-content {
  display: none; }

.tabs .tab-content.active {
  display: block; }

@media (min-width: 1024px) {
  .tabs .tab-label,
  .menu-line ul li {
    font-size: 14px;
    height: 39px;
    line-height: 37px; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.careers-tabs .tab-labels {
  flex-direction: row;
  flex-wrap: nowrap; }

.careers-tabs .tab-labels .tab-label:nth-child(1) {
  background: #94C14C; }

.careers-tabs .tab-labels .tab-label:nth-child(2) {
  background: #80B53A; }

.careers-tabs .tab-labels .tab-label:nth-child(3) {
  background: #73A535; }

.careers-tabs .tab-labels .tab-label:nth-child(4) {
  background: #66952F; }

.careers-tabs .tab-labels .tab-label:nth-child(5) {
  background: #598528; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.academy-tabs .tab-labels {
  flex-direction: column;
  flex-wrap: nowrap; }

@media (min-width: 640px) {
  .academy-tabs .tab-labels {
    flex-direction: row;
    flex-wrap: wrap; }
  .academy-tabs .tab-labels .tab-label {
    flex-basis: 50%;
    width: 50%; } }

@media (min-width: 1024px) {
  .academy-tabs .tab-labels .tab-label {
    flex-basis: 25%;
    width: 25%; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.contact-banner-map .map {
  height: 260px;
  width: 100%; }

.contact-banner-map .tabs {
  display: flex;
  flex-direction: column;
  margin-bottom: 0; }

.contact-banner-map .tabs .tab-label a {
  display: block; }

@media (min-width: 640px) {
  .contact-banner-map .tabs {
    flex-direction: row;
    flex-wrap: wrap; }
  .contact-banner-map .tabs .tab-label {
    flex-basis: 50%; }
  .contact-banner-map .tabs .tab-label:first-child {
    flex-basis: 100%; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.comments-item {
  display: block; }

.comments-item-wrapper {
  background: #fff;
  display: block;
  padding: 10px; }

.comments-item-wrapper:after {
  content: "";
  display: table;
  clear: both; }

@media (min-width: 640px) {
  .comments-item-wrapper {
    padding: 26px; } }

.comments-item-wrapper .name {
  font-size: 16px;
  font-weight: 700; }

@media (min-width: 640px) {
  .comments-item-wrapper .name {
    font-size: 18px; } }

.comments-item-wrapper .date,
.comments-item-wrapper .response {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  line-height: 13px;
  margin-bottom: 13px; }

@media (min-width: 640px) {
  .comments-item-wrapper .date,
  .comments-item-wrapper .response {
    font-size: 14px; } }

.comments-item-wrapper .response {
  color: #c90000;
  font-style: italic; }

.comments-item-wrapper .content {
  font-size: 12px;
  font-weight: 300; }

.comments-item-wrapper .reply {
  float: right;
  opacity: 0.5;
  transition: 0.2s all; }

.comments-item-wrapper .reply:hover {
  color: #c90000;
  opacity: 1;
  transform: rotate(12deg); }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.posts-item {
  background: #fff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  display: block; }

.posts-item .featured-image {
  display: block;
  overflow: hidden; }

.posts-item .featured-image img {
  display: block;
  height: auto;
  transition: 0.3s transform;
  width: 100%; }

.posts-item .featured-image:hover img {
  transform: scale(1.05); }

.posts-item .middle {
  border-bottom: 2px solid #F3F3F3;
  padding: 13px; }

.posts-item .title {
  color: #929294;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.5px;
  margin-bottom: 19.5px;
  position: relative; }

.posts-item .title:hover {
  color: #c90000; }

.posts-item .title:after {
  background: #c90000;
  bottom: -8px;
  height: 4px;
  content: ' ';
  display: block;
  position: absolute;
  width: 24px; }

.posts-item .excerpt {
  font-weight: 300;
  font-size: 14px; }

.posts-item .bottom {
  padding: 13px; }

.posts-item .bottom:after {
  content: "";
  display: table;
  clear: both; }

.posts-item .date {
  font-size: 12px;
  font-weight: 300;
  line-height: 26px;
  float: right;
  text-align: right;
  width: 50%; }

.posts-item .terms-first {
  font-size: 12px;
  font-weight: 300;
  line-height: 26px;
  float: left;
  text-align: left;
  width: 50%; }

.posts-item .terms-first a:hover {
  color: #c90000; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.posts-item-large,
.posts-item-medium {
  border-bottom: 4px solid rgba(43, 43, 43, 0.8);
  display: block;
  position: relative; }

.posts-item-medium {
  border-bottom-color: #c90000; }

.posts-item-large img,
.posts-item-medium img,
.posts-item-large picture,
.posts-item-medium picture {
  display: block;
  height: auto;
  width: 100%; }

.posts-item-large .mask,
.posts-item-medium .mask {
  background: rgba(123, 168, 57, 0.9);
  bottom: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  transition: 0.5s opacity;
  width: 100%; }

@media (min-width: 1024px) {
  .posts-item-large .mask,
  .posts-item-medium .mask {
    padding: 19.5px; } }

.posts-item-large .mask .title,
.posts-item-medium .mask .title {
  color: #fff;
  font-size: 14px;
  font-weight: 700; }

@media (min-width: 1024px) {
  .posts-item-large .mask .title,
  .posts-item-medium .mask .title {
    font-size: 18px; } }

.posts-item-large:hover .mask,
.posts-item-medium:hover .mask {
  opacity: 0.2; }

.posts-item-medium .mask {
  background: rgba(43, 43, 43, 0.8); }

@media (min-width: 1024px) {
  .posts-item-medium .mask .title {
    font-size: 18px; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.menu-line {
  margin-bottom: 26px; }

.menu-line ul {
  display: flex;
  flex-wrap: wrap; }

.menu-line ul li a {
  display: block;
  height: inherit; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.menu-circular ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }

.menu-circular ul li {
  display: block;
  margin: 0 13px 52px 13px;
  text-align: center; }

.menu-circular ul li a.image {
  background: #c90000;
  border-radius: 50%;
  display: inline-block;
  height: 200px;
  margin-bottom: 13px;
  overflow: hidden;
  width: 200px; }

.menu-circular ul li a.image img {
  display: block;
  height: inherit;
  transition: 0.3s opacity;
  width: inherit; }

.menu-circular ul li a.image:hover img {
  opacity: 0.5; }

.menu-circular ul li a.text {
  color: #c90000;
  display: block;
  font-weight: 700;
  text-align: center; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.people {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }

.people .person {
  background: #F3F3F3;
  display: flex;
  margin-left: 26px;
  margin-right: 26px;
  margin-bottom: 52px; }

@media (max-width: 639px) {
  .people .person {
    flex-direction: column; } }

.people .person .left-wrapper {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  width: 200px; }

.people .person .photo {
  height: 200px;
  width: 200px; }

.people .person .photo img {
  display: block;
  height: inherit;
  width: inherit; }

.people .person .text {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  height: 120px;
  justify-content: center; 
  text-align:center;		

}

.people .person .text span {
  line-height: 19.5px; }

.people .person .text .name {
  color: #c90000;
  font-weight: 700; }

.people .person .description {
  padding: 13px;
  width: 200px; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.speed-links {
  height: 26px;
  text-align: right; }

.speed-links ul {
  display: inline-block; }

.speed-links ul li {
  display: block;
  float: left;
  margin-left: 19px; }

.speed-links ul li a {
  color: #c90000;
  display: block; }

.speed-links ul li a:hover {
  color: #929294; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.header {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  height: 52px;
  position: relative;
  z-index: 2; }


.header .menu-button {
  width: 15.25424%;
  float: left;
  /* margin-right: 1.69492%; */
  margin-top: 13px;
  text-align: left; }

  .header .logo-min {
    width: 66.10169%;
    float: left;
    margin-right: 1.69492%;
    height: 50px;
    margin-top: 1px;
    text-align: center;
}

.header .search-button {
  width: 15.25424%;
  float: right;
  margin-right: 0;
  margin-top: 13px;
  text-align: right; }

.header .speed-links {
  display: none; }

@media (max-width: 1219px) {
.preheader {
  display: none; }
}

@media (min-width: 640px) {
 
  .header .menu-button {
    width: 23.72881%;
    float: left;
    margin-right: 1.69492%;
    text-align: left; }
  .header .logo-min {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%; }
  .header .speed-links {
    width: 15.25424%;
    float: left;
    margin-right: 1.69492%;
    display: block;
    margin-top: 13px; }
  .header .search-button {
    width: 6.77966%;
    float: right;
    margin-right: 0; } }

@media (min-width: 1220px) {
  .preheader {
    /* box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2); */
    height: 85px;
    position: relative;
    z-index: 2;
    background-color: #c90000; }
    .preheader .logo {
      width: 50%;
      float: left;
      margin-right: auto;
      height: 84px;
      /* margin-top: 1px; */
      text-align: center;}
      .preheader .search-form {
        width: 50%;
        float: right;
        margin-right: 0;
        display: block !important;
        margin-top: 30px; }

  .header {
    height: 42px; }
  .header .search-form {
    display: none;
  }
  .header .menu-button {
    display: none; }
  .header .logo {
    width: 15.25424%;
    float: left;
    margin-right: 1.69492%;
    height: 39px;
    margin-top: 19.5px;
    text-align: left; }
  .header .logo-min {
    display: none;}
.header .main-menu {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%;
      margin-top: 6px !important;
  }
.footer .f-menu {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%;
      /* margin-top: 6px !important; */
  }
  .header .speed-links {
    width: 15.25424%;
    float: left;
    margin-right: 1.69492%;
    margin-top: 26px; }
  .header .search-button {
    display: none; }
 }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.footer {
  color: #fff; }

.footer .row-1 {
  background: #9E9E9F;
  padding: 26px 0; }

.footer .row-1 .logo {
  width: 40.67797%;
  float: left;
  margin-right: 1.69492%;
  height: 26px; }

.footer .row-1 .links {
  width: 57.62712%;
  float: right;
  margin-right: 0;
  margin-bottom: 13px; }

.footer .row-1 .links ul {
  display: inline-block; }

.footer .row-1 .links ul li {
  display: block;
  line-height: 13px; }

.footer .row-1 .links ul li a {
  display: block;
  font-size: 10px;
  font-weight: 700;
  line-height: inherit; }

.footer .row-1 .links ul li a:hover {
  opacity: 0.8; }

.footer .row-1 .links .data {
  font-size: 12px;
  line-height: 19.5px;
  margin-bottom: 13px;
  margin-top: 13px; }

.footer .row-1 .social-links {
  width: 57.62712%;
  float: right;
  margin-right: 0;
  margin-left: 42.37288%;
  margin-right: 0%; }

.footer .row-2 {
  background: #858585;
  padding: 13px 0; }

.footer .row-2 .copyright {
  font-size: 10px;
  line-height: 13px;
  text-align: center; }
.footer .row-0 {
  background: #858585;
  padding: 5px 0; }
.medio .row-0 {
  background: #858585;
  /* padding: 5px 0;  */
  }

.footer .row-0 .copyright {
  font-size: 10px;
  line-height: 13px;
  text-align: center; }

@media (min-width: 640px) {
  .footer .row-1 .logo {
    width: 23.72881%;
    float: left;
    margin-right: 1.69492%; }
  .footer .row-1 .links {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%;
    margin-bottom: 0;
    margin-top: 6.5px;
    text-align: center; }
  .footer .row-1 .links ul li {
    border-left: 2px solid #fff;
    float: left; }
  .footer .row-1 .links ul li:first-child {
    border-left: 0; }
  .footer .row-1 .links ul li a {
    padding: 0 8px; }
  .footer .row-1 .social-links {
    width: 23.72881%;
    float: right;
    margin-right: 0;
    margin-left: 0%;
    margin-right: 0%;
    text-align: right; } }

@media (min-width: 1024px) {
  .footer .row-1 {
    padding: 52px 0; }
  .footer .row-1 .logo {
    width: 23.72881%;
    float: left;
    margin-right: 1.69492%;
    height: 39px; }
  .footer .row-1 .links {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%; }
  .footer .row-1 .links ul li a {
    font-size: 14px;
    padding: 0 10px; }
  .footer .row-1 .social-links {
    width: 23.72881%;
    float: right;
    margin-right: 0; }
  .footer .row-1 .social-links ul li a {
    line-height: 39px; }
  .footer .row-1 .links .data {
    font-size: 14px;
    margin-bottom: 0; } }

@media (min-width: 1440px) {
  .footer .row-1 .logo {
    width: 23.72881%;
    float: left;
    margin-right: 1.69492%; }
  .footer .row-1 .links {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%; }
  .footer .row-1 .social-links {
    width: 23.72881%;
    float: right;
    margin-right: 0; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.home-cover .slider {
  height: 234px;
  overflow: hidden; }

.home-cover .slider .slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 312px;
  height: 234px; }

.home-cover .slider .slide .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 234px;
  justify-content: center; }

.home-cover .slider .slide .wrapper {
  width: 40.67797%;
  float: left;
  margin-right: 1.69492%;
  margin-left: 8.47458%;
  margin-right: 50.84746%; }

.home-cover .slider .slide .wrapper p {
  color: #fff;
  line-height: 13px;
  font-size: 12px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004); }

.home-cover .slider .slide .wrapper p.quote {
  font-weight: 700; }

.home-cover .slider .slide .wrapper p.name {
  margin-top: 6.5px;
  padding-right: 5%;
  text-align: right; }

.home-cover .slider .slick-dots {
  bottom: 26px;
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.home-cover .slider-arrows {
  display: none; }

@media (min-width: 640px) {
  .home-cover .slider {
    height: 468px; }
  .home-cover .slider .slide {
    background-size: auto 468px;
    height: 468px; }
  .home-cover .slider .slide .wrapper p {
    line-height: 26px;
    font-size: 20px; }
  .home-cover .slider .slide .container {
    height: 468px; }
  .home-cover .slider .slide .wrapper p.name {
    margin-top: 26px; }
  .home-cover .slider-arrows {
    display: block;
    position: absolute;
    top: 260px;
    margin-left: 2%;
    width: 96%; }
  .home-cover .slider-arrows .prev {
    float: left; }
  .home-cover .slider-arrows .next {
    float: right; } }

@media (min-width: 1024px) {
  .home-cover .slider {
    height: 520px; }
  .home-cover .slider .slide {
    background-size: auto 624px;
    height: 520px; }
  .home-cover .slider .slide .wrapper p {
    line-height: 32.5px;
    font-size: 24px; }
  .home-cover .slider .slide .wrapper {
    width: 40.67797%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 0%;
    margin-right: 59.32203%; }
  .home-cover .slider .slide .container {
    height: 520px; }
  .home-cover .slider-arrows {
    top: 312px; } }

@media (min-width: 1440px) {
  .home-cover .slider {
    height: 624px; }
  .home-cover .slider .slide {
    height: 624px; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.carousel-links {
  background: #8AB04B; }

.carousel-links .link {
  background: #8AB04B;
  border-left: 1px solid #95c450;
  color: #fff;
  display: block;
  height: 104px;
  transition: background 0.6s;
  width: 240px;
  outline-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent; }

.carousel-links .link.slick-current,
.carousel-links .active.center .link {
  background: #c90000;}

.carousel-links .link a {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: inherit;
  justify-content: center;
  padding: 0 26px;
  width: inherit; }

.carousel-links .link a span {
  font-weight: 600;
  line-height: 19.5px;
  text-align: center; }

@media (min-width: 640px) {
  .carousel-links .link {
    height: 156px; }
  .carousel-links .link a span {
    font-size: 20px;
    line-height: 26px; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.featured-events * {
  outline-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent; }

.featured-events {
  background: #565656;
  color: #fff; }

.featured-events .months-title {
  margin-bottom: 26px; }

.featured-events .months-title:after {
  content: "";
  display: table;
  clear: both; }

.featured-events .months-title .arrow-wrapper-prev {
  width: 15.25424%;
  float: left;
  margin-right: 1.69492%;
  text-align: center; }

.featured-events .months-title .carousel {
  width: 66.10169%;
  float: left;
  margin-right: 1.69492%; }

.featured-events .months-title .arrow-wrapper-next {
  width: 15.25424%;
  float: right;
  margin-right: 0;
  text-align: center; }

.featured-events .months-carousel {
  width: 100%; }

.featured-events .months-carousel:after {
  content: "";
  display: table;
  clear: both; }

.featured-events .months-carousel .featured-events-item {
  width: 66.10169%;
  float: left;
  margin-right: 1.69492%;
  margin-left: 16.94915%;
  margin-right: 16.94915%;
  margin-bottom: 26px; }

.featured-events .no-events {
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 26px;
  text-align: center; }

.featured-events .button-wrapper {
  text-align: center; }

@media (min-width: 640px) {
  .featured-events .months-title .arrow-wrapper-prev {
    width: 15.25424%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 16.94915%;
    text-align: right; }
  .featured-events .months-title .carousel {
    width: 32.20339%;
    float: left;
    margin-right: 1.69492%; }
  .featured-events .months-title .arrow-wrapper-next {
    width: 15.25424%;
    float: left;
    margin-right: 1.69492%;
    text-align: left; }
  .featured-events .months-carousel .featured-events-item {
    margin-left: 0%;
    margin-right: 0%;
    width: 32.20339%;
    float: left; }
  .featured-events .months-carousel .featured-events-item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .featured-events .months-carousel .featured-events-item:nth-child(3n + 2) {
    margin-left: 33.89831%;
    margin-right: -100%;
    clear: none; }
  .featured-events .months-carousel .featured-events-item:nth-child(3n + 3) {
    margin-left: 67.79661%;
    margin-right: -100%;
    clear: none; }
  .featured-events .months-carousel .slick-slide {
    margin: 0 10px; }
  .featured-events .months-carousel .slick-list {
    margin: 0 -10px; } }

@media (min-width: 1024px) {
  .featured-events {
    background-image: url(../images/featured-events-l.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
  .featured-events .months-title .arrow-wrapper-prev {
    width: 15.25424%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 25.42373%; }
  .featured-events .months-title .carousel {
    width: 15.25424%;
    float: left;
    margin-right: 1.69492%; }
  .featured-events .months-title .arrow-wrapper-next {
    width: 15.25424%;
    float: left;
    margin-right: 1.69492%; }
  .featured-events .months-carousel {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%;
    margin-right: 8.47458%; }
  .featured-events .months-carousel .featured-events-item {
    width: 31.97245%;
    float: left; }
  .featured-events .months-carousel .featured-events-item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .featured-events .months-carousel .featured-events-item:nth-child(3n + 2) {
    margin-left: 34.01327%;
    margin-right: -100%;
    clear: none; }
  .featured-events .months-carousel .featured-events-item:nth-child(3n + 3) {
    margin-left: 68.02653%;
    margin-right: -100%;
    clear: none; } }

@media (min-width: 1024px) {
  .featured-events {
    background-image: url(../images/featured-events-xl.jpg); }
  .featured-events .months-title .arrow-wrapper-prev {
    width: 15.25424%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 25.42373%; }
  .featured-events .months-title .carousel {
    width: 15.25424%;
    float: left;
    margin-right: 1.69492%; }
  .featured-events .months-title .arrow-wrapper-next {
    width: 15.25424%;
    float: left;
    margin-right: 1.69492%; }
  .featured-events .months-carousel {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%;
    margin-right: 8.47458%; }
  .featured-events .months-carousel .featured-events-item {
    width: 31.97245%;
    float: left; }
  .featured-events .months-carousel .featured-events-item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .featured-events .months-carousel .featured-events-item:nth-child(3n + 2) {
    margin-left: 34.01327%;
    margin-right: -100%;
    clear: none; }
  .featured-events .months-carousel .featured-events-item:nth-child(3n + 3) {
    margin-left: 68.02653%;
    margin-right: -100%;
    clear: none; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.social-history {
  color: #fff; }

.social-history:after {
  content: "";
  display: table;
  clear: both; }

.social-history .facebook,
.social-history .twitter,
.social-history .instagram {
  align-items: center;
  background: #314A7E;
  display: flex;
  flex-direction: column;
  height: 800px;
  justify-content: center;
  overflow: hidden;
  padding: 26px 0;
  text-align: center; }

.social-history .twitter {
  background: #3399BF;
  background: #48A3C6; }

.social-history .instagram {
  background: #cd486b;
  padding: 26px 0; }

.social-history .big-icon {
  margin-bottom: 26px;
  font-size: 26px;
  text-align: center; }

.social-history .row {
  width: 83.05085%; }

.social-history .count {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  margin-top: 26px;
  text-align: center; }

@media (min-width: 640px) {
  .social-history .facebook,
  .social-history .twitter {
    float: left;
    width: 50%; }
  .social-history .instagram {
    clear: both;
    float: none;
    width: 100%; } }

@media (min-width: 1024px) {
  .social-history {
    display: flex;
    flex-direction: row; }
  .social-history .facebook,
  .social-history .twitter,
  .social-history .instagram {
    align-items: center;
    flex-grow: 1;
    height: 800px;
    justify-content: flex-start;
    padding-top: 52px;
    width: 33%; }
  .social-history .row {
    width: 320px; }
  .social-history .big-icon {
    font-size: 39px; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.featured-carousel .carousel-wrapper {
  clear: both;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  position: relative; }

.featured-carousel .carousel-wrapper:after {
  content: "";
  display: table;
  clear: both; }

.featured-carousel .arrow-wrapper-prev {
  width: 15.25424%;
  float: left;
  margin-right: 1.69492%; }

.featured-carousel .carousel {
  width: 66.10169%;
  float: left;
  margin-right: 1.69492%; }

.featured-carousel .arrow-wrapper-next {
  width: 15.25424%;
  float: right;
  margin-right: 0; }

.featured-carousel .arrow-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 10%;
  text-align: center; }

@media (min-width: 640px) {
  .featured-carousel .arrow-wrapper-prev {
    width: 6.77966%;
    float: left;
    margin-right: 1.69492%; }
  .featured-carousel .carousel {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%; }
  .featured-carousel .arrow-wrapper-next {
    width: 6.77966%;
    float: right;
    margin-right: 0; }
  .featured-carousel .slick-slide {
    margin: 0 10px; }
  .featured-carousel .slick-list {
    margin: 0 -10px; } }

@media (min-width: 1024px) {
  .featured-carousel .arrow-wrapper {
    margin-top: 78px;
    position: absolute;
    z-index: 10; }
  .featured-carousel .arrow-wrapper-prev {
    width: 6.77966%;
    float: left;
    margin-right: 1.69492%;
    left: 0; }
  .featured-carousel .carousel {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
  .featured-carousel .arrow-wrapper-next {
    width: 6.77966%;
    float: right;
    margin-right: 0;
    right: 0; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.home-academy {
  background: #F3F3F3; }

.home-academy .tabs {
  clear: both;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }

.home-academy .tabs .tab-labels {
  margin-left: 16.94915%;
  width: 66.10169%;
  float: left;
  margin-right: 1.69492%;
  margin-right: 16.94915%;
  margin-bottom: 26px; }

.home-academy .tabs .tab-contents {
  clear: both;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }

.home-academy .tab-content {
  display: none; }

.home-academy .tab-content.active {
  display: block; }

.home-academy .tab-content .careers-item-2 {
  width: 66.10169%;
  float: left;
  margin-right: 1.69492%;
  margin-left: 16.94915%;
  margin-bottom: 26px; }

.home-academy .tab-content .arrow-wrapper-prev {
  left: 0;
  margin-top: 17%;
  position: absolute;
  width: 15.25424%;
  text-align: center;
  top: 0;
  z-index: 3; }

.home-academy .tab-content .arrow-wrapper-next {
  margin-top: 17%;
  position: absolute;
  right: 0;
  width: 15.25424%;
  text-align: center;
  top: 0;
  z-index: 9999; }

@media (min-width: 640px) {
  .home-academy .tabs .tab-labels {
    margin-left: 8.47458%;
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-right: 8.47458%; }
  .home-academy .tab-content .careers-item-2 {
    margin-left: 0%;
    margin-right: 0%;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
  .home-academy .slick-slide {
    margin: 0 13px; }
  .home-academy .slick-list {
    margin-left: calc(8.47458% - 13px + 2px) !important;
    width: calc(87%) !important; }
  .home-academy .tab-content .arrow-wrapper-prev {
    margin-top: 9%;
    width: 6.77966%; }
  .home-academy .tab-content .arrow-wrapper-next {
    margin-top: 9%;
    width: 6.77966%; } }

@media (min-width: 1024px) {
  .home-academy .tabs .tab-labels {
    margin-left: 0%;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    margin-right: 0%; }
  .home-academy .slick-slide {
    margin: 0 13px; }
  .home-academy .slick-list {
    margin-left: 0 !important;
    width: 100% !important; }
  .home-academy .tab-content {
    margin-left: -10px;
    position: relative;
    width: calc(100% + 20px); }
  .home-academy .tab-content .arrow-wrapper-prev {
    left: -10%;
    position: absolute;
    top: -5%;
    width: 6.77966%; }
  .home-academy .tab-content .arrow-wrapper-next {
    position: absolute;
    right: -10%;
    top: -5%;
    width: 6.77966%; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.home-youtube .videos .video {
  background: #fff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 26px; }

@media (max-width: 639px) {
  .home-youtube .videos .video {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%;
    margin-right: 8.47458%;
    display: none; }
  .home-youtube .videos .video:nth-child(1) {
    display: block; } }

.home-youtube .videos .video iframe {
  display: block;
  height: 156px;
  width: 100%; }

.home-youtube .videos .video .title {
  color: #929294;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.5px;
  padding: 19.5px; }

.home-youtube .button-wrapper {
  display: block;
  clear: both;
  text-align: center; }

@media (min-width: 640px) and (max-width: 1023px) {
  .home-youtube .videos .video:nth-child(1) {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 0%;
    margin-right: 0%; }
  .home-youtube .videos .video:nth-child(2) {
    width: 49.15254%;
    float: right;
    margin-right: 0;
    margin-left: 0%;
    margin-right: 0%; }
  .home-youtube .videos .video:nth-child(3) {
    display: none; } }

@media (min-width: 1024px) {
  .home-youtube .videos .video {
    width: 32.20339%;
    float: left; }
  .home-youtube .videos .video:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .home-youtube .videos .video:nth-child(3n + 2) {
    margin-left: 33.89831%;
    margin-right: -100%;
    clear: none; }
  .home-youtube .videos .video:nth-child(3n + 3) {
    margin-left: 67.79661%;
    margin-right: -100%;
    clear: none; }
  .home-youtube .videos .video iframe {
    height: 208px; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.contact-banner {
  background: #F3F3F3; }

.contact-banner .contact-banner-map,
.contact-banner .contact-banner-form {
  width: 83.05085%;
  float: left;
  margin-right: 1.69492%;
  margin-left: 8.47458%; }

.contact-banner .contact-banner-map .map {
  height: 260px; }

.contact-banner .contact-banner-form {
  margin-top: 26px; }

@media (min-width: 640px) {
  .contact-banner .contact-banner-map,
  .contact-banner .contact-banner-form {
    width: 66.10169%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 16.94915%; } }

@media (min-width: 1024px) {
  .contact-banner .contact-banner-map {
    margin-left: 0%;
    margin-right: 0%;
    width: 44.91525%;
    float: left;
    margin-right: 1.69492%; }
  .contact-banner .contact-banner-map .map {
    height: 312px; }
  .contact-banner .contact-banner-form {
    margin-left: 0%;
    margin-right: 0%;
    width: 44.91525%;
    float: right;
    margin-right: 0;
    margin-top: 0; } }

@media (min-width: 1440px) {
  .contact-banner .contact-banner-map {
    width: 44.91525%;
    float: left;
    margin-right: 1.69492%; }
  .contact-banner .contact-banner-form {
    width: 44.91525%;
    float: left;
    margin-right: 1.69492%; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.careers-description .description {
  width: 83.05085%;
  float: left;
  margin-right: 1.69492%;
  margin-left: 8.47458%;
  font-size: 12px;
  font-weight: 300;
  line-height: 19.5px; }

@media (min-width: 640px) {
  .careers-description .description {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%;
    font-size: 14px; } }

@media (min-width: 1024px) {
  .careers-description .description {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%;
    font-size: 18px;
    line-height: 26px; } }

@media (min-width: 1440px) {
  .careers-description .description {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.careers-data .data {
  clear: both;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  background: #8AB04B;
  color: #fff;
  text-align: center; }

.careers-data .data:after {
  content: "";
  display: table;
  clear: both; }

.careers-data .data .data-item {
  font-size: 12px;
  line-height: 19.5px;
  padding: 6.5px 13px; }

.careers-data .data .data-item:nth-child(odd) {
  background: #c90000; }

.careers-data .data .data-item .label {
  text-transform: uppercase; }

.careers-data .data .data-item .value {
  font-weight: 700; }

.careers-data .data .facultad,
.careers-data .data .duracion {
  background: #c90000; }

@media (min-width: 640px) {
  .careers-data .data {
    display: flex;
    flex-justify: space-betwenn; }
  .careers-data .data .data-item {
    flex-grow: 1;
    padding: 13px; }
  .careers-data .data .label {
    margin-bottom: 6.5px; } }

@media (min-width: 1024px) {
  .careers-data .data .data-item {
    font-size: 14px; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.careers-links .link {
  width: 66.10169%;
  float: left;
  margin-right: 1.69492%;
  margin-left: 16.94915%;
  margin-bottom: 13px; }

.careers-links .link a {
  width: 100%; }

@media (min-width: 640px) and (max-width: 1023px) {
  .careers-links .link {
    width: 32.20339%;
    float: left;
    margin-bottom: 0; }
  .careers-links .link:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .careers-links .link:nth-child(3n + 2) {
    margin-left: 33.89831%;
    margin-right: -100%;
    clear: none; }
  .careers-links .link:nth-child(3n + 3) {
    margin-left: 67.79661%;
    margin-right: -100%;
    clear: none; } }

@media (min-width: 1024px) and (max-width: 1439px) {
  .careers-links .link {
    width: 32.20339%;
    float: left;
    margin-bottom: 0; }
  .careers-links .link:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .careers-links .link:nth-child(3n + 2) {
    margin-left: 33.89831%;
    margin-right: -100%;
    clear: none; }
  .careers-links .link:nth-child(3n + 3) {
    margin-left: 67.79661%;
    margin-right: -100%;
    clear: none; } }

@media (min-width: 1440px) {
  .careers-links .link {
    width: 32.20339%;
    float: left;
    margin-bottom: 0; }
  .careers-links .link:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .careers-links .link:nth-child(3n + 2) {
    margin-left: 33.89831%;
    margin-right: -100%;
    clear: none; }
  .careers-links .link:nth-child(3n + 3) {
    margin-left: 67.79661%;
    margin-right: -100%;
    clear: none; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.careers-information .materias {
  background: #F2F2F2;
  padding-top: 13px; }

.careers-information .materias .materia {
  display: block;
  font-size: 12px;
  padding: 0 10px; }

.careers-information .materias a.materia .icon {
  float: right; }

.careers-information .materias a.materia:hover {
  background: #E5E5E5; }

@media (min-width: 640px) {
  .careers-information .materias {
    column-count: 2;
    padding-bottom: 13px;
    padding-top: 26px; }
  .careers-information .materias .materia {
    font-size: 14px;
    padding: 0 20px; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.posts-single .main-image, 
.posts-single-sb .main-image {
  position: relative; }

.posts-single .main-image a,
.posts-single-sb .main-image a {
  background: #fff;
  bottom: 13px;
  position: absolute;
  right: 13px; }

@media (min-width: 640px) {
  .posts-single .main-image a,
  .posts-single-sb .main-image a {
    bottom: 26px;
    right: 26px; } }

.posts-single .featured-image,
.posts-single-sb .featured-image {
  display: block;
  margin-bottom: 26px; }

.posts-single .featured-image img,
.posts-single-sb .featured-image img {
  /* display: block;
  height: auto;
  width: 100%;  */
  height: 300px;
  /* width: 100%; */
  object-fit: cover; 
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

.posts-single .tax,
.posts-single .share,
.posts-single-sb .tax,
.posts-single-sb .share {
  border-bottom: 1px solid #929294;
  font-size: 12px;
  line-height: 26px;
  padding: 6.5px 0; }

.posts-single .tax .term:before,
.posts-single-sb .tax .term:before {
  content: ', '; }

.posts-single .tax .term:first-child:before,
.posts-single-sb .tax .term:first-child:before {
  content: ''; }

.posts-single .tax a.term,
.posts-single-sb .tax a.term {
  color: #858585; }

.posts-single .tax a.term:hover,
.posts-single-sb .tax a.term:hover {
  color: #c90000; }

.posts-single .tax a.term:before,
.posts-single-sb .tax a.term:before {
  content: ', '; }

.posts-single .tax a.term:first-child:before,
.posts-single-sb .tax a.term:first-child:before {
  content: ''; }

.posts-single .share a,
.posts-single-sb .share a {
  color: #929294;
  display: inline-block;
  font-size: 20px;
  position: relative;
  top: 5px; }

.posts-single .share a:hover,
.posts-single-sb .share a:hover {
  color: #c90000; }

@media (min-width: 640px) {
  .posts-single .tax,
  .posts-single .share,
  .posts-single-sb .tax,
  .posts-single-sb .share {
    font-size: 14px;
    padding: 13px 0; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.posts-archive-loop {
  background: #F3F3F3; }

.posts-archive-loop .loop:after,
.posts-archive-loop .loop .loop-featured:after,
.posts-archive-loop .loop .loop-default:after {
  content: "";
  display: table;
  clear: both; }

.posts-archive-loop .title-wrapper,
.posts-archive-loop .pagination {
  clear: both;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }

.posts-archive-loop .pi {
  margin-bottom: 26px; }

@media (max-width: 639px) {
  .posts-archive-loop .loop-default {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%; } }

@media (min-width: 640px) and (max-width: 1023px) {
  .posts-archive-loop .loop-featured .pi:nth-child(1) {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%; }
  .posts-archive-loop .loop-featured .pi:nth-child(2) {
    width: 40.67797%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%; }
  .posts-archive-loop .loop-featured .pi:nth-child(3) {
    width: 40.67797%;
    float: left;
    margin-right: 1.69492%; }
  .posts-archive-loop .loop-default {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%; }
  .posts-archive-loop .loop-default .pi {
    width: 48.97959%;
    float: left; }
  .posts-archive-loop .loop-default .pi:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .posts-archive-loop .loop-default .pi:nth-child(2n + 2) {
    margin-left: 51.02041%;
    margin-right: -100%;
    clear: none; } }

@media (min-width: 1024px) and (max-width: 1439px) {
  .posts-archive-loop .loop-featured .pi:nth-child(1) {
    width: 57.62712%;
    float: left;
    margin-right: 1.69492%;
    height: 390px;
    overflow: hidden; }
  .posts-archive-loop .loop-featured .pi:nth-child(2) {
    width: 40.67797%;
    float: right;
    margin-right: 0;
    height: 182px;
    overflow: hidden; }
  .posts-archive-loop .loop-featured .pi:nth-child(3) {
    width: 40.67797%;
    float: right;
    margin-right: 0;
    height: 182px;
    overflow: hidden; }
  .posts-archive-loop .loop-default {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%; }
  .posts-archive-loop .loop-default .pi {
    width: 32.20339%;
    float: left; }
  .posts-archive-loop .loop-default .pi:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .posts-archive-loop .loop-default .pi:nth-child(3n + 2) {
    margin-left: 33.89831%;
    margin-right: -100%;
    clear: none; }
  .posts-archive-loop .loop-default .pi:nth-child(3n + 3) {
    margin-left: 67.79661%;
    margin-right: -100%;
    clear: none; } }

@media (min-width: 1440px) {
  .posts-archive-loop .loop-featured .pi:nth-child(1) {
    width: 57.62712%;
    float: left;
    margin-right: 1.69492%;
    height: 546px;
    overflow: hidden; }
  .posts-archive-loop .loop-featured .pi:nth-child(2) {
    width: 40.67797%;
    float: right;
    margin-right: 0;
    height: 260px;
    overflow: hidden; }
  .posts-archive-loop .loop-featured .pi:nth-child(3) {
    width: 40.67797%;
    float: right;
    margin-right: 0;
    height: 260px;
    overflow: hidden; }
  .posts-archive-loop .loop-default {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%; }
  .posts-archive-loop .loop-default .pi {
    width: 32.20339%;
    float: left; }
  .posts-archive-loop .loop-default .pi:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .posts-archive-loop .loop-default .pi:nth-child(3n + 2) {
    margin-left: 33.89831%;
    margin-right: -100%;
    clear: none; }
  .posts-archive-loop .loop-default .pi:nth-child(3n + 3) {
    margin-left: 67.79661%;
    margin-right: -100%;
    clear: none; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.posts-last .loop .posts-item {
  width: 83.05085%;
  float: left;
  margin-right: 1.69492%;
  margin-left: 8.47458%;
  margin-bottom: 26px; }

.posts-last .button-wrapper {
  clear: both;
  width: 100%;
  float: none;
  margin-left: 0;
  margin-right: 0;
  text-align: center; }

@media (min-width: 640px) and (max-width: 1023px) {
  .posts-last .loop .posts-item {
    margin-left: 0%;
    width: 49.15254%;
    float: left; }
  .posts-last .loop .posts-item:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .posts-last .loop .posts-item:nth-child(2n + 2) {
    margin-left: 50.84746%;
    margin-right: -100%;
    clear: none; } }

@media (min-width: 1024px) and (max-width: 1439px) {
  .posts-last .loop .posts-item {
    width: 32.20339%;
    float: left; }
  .posts-last .loop .posts-item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .posts-last .loop .posts-item:nth-child(3n + 2) {
    margin-left: 33.89831%;
    margin-right: -100%;
    clear: none; }
  .posts-last .loop .posts-item:nth-child(3n + 3) {
    margin-left: 67.79661%;
    margin-right: -100%;
    clear: none; } }

@media (min-width: 1440px) {
  .posts-last .loop .posts-item {
    width: 32.20339%;
    float: left; }
  .posts-last .loop .posts-item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .posts-last .loop .posts-item:nth-child(3n + 2) {
    margin-left: 33.89831%;
    margin-right: -100%;
    clear: none; }
  .posts-last .loop .posts-item:nth-child(3n + 3) {
    margin-left: 67.79661%;
    margin-right: -100%;
    clear: none; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.posts-related {
  background: #F3F3F3;
  position: relative; }

.posts-related:before {
  background: #c90000;
  height: 1px;
  content: " ";
  display: block;
  left: 50%;
  margin-left: -150px;
  position: absolute;
  top: 0;
  width: 300px; }

.posts-related .title {
  margin-bottom: 26px; }

.posts-related .posts-item {
  margin-bottom: 26px; }

@media (min-width: 640px) and (max-width: 1023px) {
  .posts-related .posts-item {
    width: 49.15254%;
    float: left; }
  .posts-related .posts-item:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .posts-related .posts-item:nth-child(2n + 2) {
    margin-left: 50.84746%;
    margin-right: -100%;
    clear: none; } }

@media (min-width: 1024px) {
  .posts-related .posts-item {
    width: 32.20339%;
    float: left; }
  .posts-related .posts-item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .posts-related .posts-item:nth-child(3n + 2) {
    margin-left: 33.89831%;
    margin-right: -100%;
    clear: none; }
  .posts-related .posts-item:nth-child(3n + 3) {
    margin-left: 67.79661%;
    margin-right: -100%;
    clear: none; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.careers-category .careers-item {
  width: 66.10169%;
  float: left;
  margin-right: 1.69492%;
  margin-left: 16.94915%;
  margin-bottom: 26px; }

@media (min-width: 640px) and (max-width: 1023px) {
  .careers-category .careers-item {
    width: 49.15254%;
    float: left; }
  .careers-category .careers-item:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .careers-category .careers-item:nth-child(2n + 2) {
    margin-left: 50.84746%;
    margin-right: -100%;
    clear: none; } }

@media (min-width: 1024px) and (max-width: 1439px) {
  .careers-category .careers-item {
    width: 32.20339%;
    float: left; }
  .careers-category .careers-item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .careers-category .careers-item:nth-child(3n + 2) {
    margin-left: 33.89831%;
    margin-right: -100%;
    clear: none; }
  .careers-category .careers-item:nth-child(3n + 3) {
    margin-left: 67.79661%;
    margin-right: -100%;
    clear: none; } }

@media (min-width: 1440px) {
  .careers-category .careers-item {
    width: 23.72881%;
    float: left; }
  .careers-category .careers-item:nth-child(4n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .careers-category .careers-item:nth-child(4n + 2) {
    margin-left: 25.42373%;
    margin-right: -100%;
    clear: none; }
  .careers-category .careers-item:nth-child(4n + 3) {
    margin-left: 50.84746%;
    margin-right: -100%;
    clear: none; }
  .careers-category .careers-item:nth-child(4n + 4) {
    margin-left: 76.27119%;
    margin-right: -100%;
    clear: none; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.comments {
  background: #F3F3F3; }

.comments .title {
  margin-bottom: 26px; }

.comments ul.comments-list li {
  margin-bottom: 26px; }

.comments ul.comments-list li ul {
  margin-left: 26px;
  margin-top: 26px; }

@media (min-width: 640px) {
  .comments ul.comments-list li ul {
    margin-left: 52px; } }

.comments .comments-to-moderate {
  background: #acd176;
  border: 1px solid #c90000;
  color: #fff;
  font-size: 14px;
  margin-bottom: 26px;
  padding: 6.5px 26px;
  text-align: center; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.pages-cover {
  background-position: center;
  background-size: auto 286px;
  color: #fff;
  height: 286px; }

.pages-cover .container {
  align-items: flex-start;
  display: flex;
  height: inherit;
  flex-direction: column;
  justify-content: center; }

.pages-cover .text-wrapper {
  width: 100%; }

.pages-cover .title {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
  position: relative; }

.pages-cover .title:after {
  background: #c90000;
  bottom: -5px;
  content: " ";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 20px; }

.pages-cover .term {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 26px; }

@media (min-width: 640px) {
  .pages-cover {
    background-size: auto 364px;
    height: 364px; }
  .pages-cover .title {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%;
    font-size: 32px;
    line-height: 39px; }
  .pages-cover .title:after {
    bottom: -6px;
    height: 2px; }
  .pages-cover .term {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%;
    font-size: 18px;
    line-height: 39px; } }

@media (min-width: 1024px) {
  .pages-cover {
    background-size: auto 416px;
    height: 416px; }
  .pages-cover .title,
  .pages-cover .term {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%; } }

@media (min-width: 1440px) {
  .pages-cover .title,
  .pages-cover .term {
    width: 83.05085%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%; }
  .pages-cover .title {
    font-size: 40px;
    line-height: 52px; }
  .pages-cover .term {
    font-size: 20px;
    line-height: 52px; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.subscription-form {
  /* background-image: url(../images/subscription-form.jpg); */
  background-image: url(/wp-content/uploads/sites/5/2019/11/Newsletter_3-01.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1920px auto;
  padding: 39px 0 26px 0; }

.subscription-form .title-5 {
  color: #c90000!important;
  margin-bottom: 26px;
  text-align: center;
  font-size: 36px!important;
}

.subscription-form .mc4wp-alert {
  color: #fff;
  display: block;
  font-size: 12px;
  margin: 0;
  padding: 0;
  text-align: center; }

@media (min-width: 640px) {
  .subscription-form .mc4wp-form {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 25.42373%;
    margin-right: 25.42373%; } }

@media (min-width: 1024px) {
  .subscription-form .mc4wp-form {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 25.42373%;
    margin-right: 25.42373%; } }

@media (min-width: 1440px) {
  .subscription-form .mc4wp-form {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 25.42373%;
    margin-right: 25.42373%; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.search-results .title-5 {
  margin-bottom: 26px; }

.search-results .pagination {
  clear: both;
  margin-top: 26px; }

.search-results .search-result-item {
  border-bottom: 1px solid #929294;
  padding: 6.5px 0; }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.contact-form {
  background: #F3F3F3; }

@media (min-width: 640px) {
  .contact-form .wpcf7 {
    width: 66.10169%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 16.94915%;
    margin-right: 16.94915%; } }

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
.careers-single .careers-data {
  margin-bottom: 26px; }

.careers-single .careers-links {
  margin-bottom: 13px; }

.careers-single .careers-information {
  margin-bottom: 52px; }

@media (min-width: 640px) {
  .careers-single .careers-links {
    margin-bottom: 26px; } }

.btn-primary {
      color: #fff;
      background-color: #a20000!important;
      border-color: #3d3d3d;
  }
