@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
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap');
:root{
	--font-prim: "Montserrat", sans-serif;
	--color-prim: #c90000;
	--colorprim-hover: #810000;
	--color-gray: #858585;
  --color-darkgray:#6b6b6b;
  --color-golden: #c7b874;
  --color-light: #fff;
  --color-dark: #212529;
	
}

/* 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 {

  
  color: #000000;
  font-family: var(--font-prim) !important;/*"Open Sans", sans-serif;*/
  line-height: 26px;
  min-width: 320px;
  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
.sp-pc-post-meta 
time, .sp-pc-post-meta i, .date{
  color: var(--color-gray);
}
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;
}


.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;
}
.home-carousel-container{
  margin-top:1em;
  background-color:#f3f3f3;
  padding: 1em;
}

/*ad banners*/
.Ad-topwidget-container{
  margin: 1em auto;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
}
.dangd-widget{
	z-index: 50 !important;
}

@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; }
*/

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon/icomoon.eot?h0nmsm");
  src: url("../fonts/icomoon/icomoon.eot?h0nmsm#iefix")
      format("embedded-opentype"),
    url("../fonts/icomoon/icomoon.ttf?h0nmsm") format("truetype"),
    url("../fonts/icomoon/icomoon.woff?h0nmsm") format("woff"),
    url("../fonts/icomoon/icomoon.svg?h0nmsm#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  /* line-height: 1; */

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-youtube-circle:before {
  content: "\62";
  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 #e0e0e0;*/
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex; /*inline-block;*/
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  font-size: 14px;
  font-weight: 700;
  line-height: 37px;
  /*padding: 0 10px;*/
  text-align: center;
  white-space: nowrap;
}

.button-white-transparent {
  background: none;
  border: 1px solid var(--color-light);
}

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

.button-grey {
  background: #565656;
  border: 1px solid #565656;
  color: var(--color-light);
}

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

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

.button-green:hover {
  background: var(--color-light);
  border-color: var(--color-prim);
  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;
}

.dangdai-button {
  display: block;
  font-size: inherit;
  font-family: inherit;
  max-width: 200px;
  min-height: 20px;
 
  text-align: center;
  cursor: pointer;
  border-width: 1px;
  color: var(--color-prim);
  border: solid 1px var(--color-prim);
  font-weight: bold;
  -webkit-box-shadow: 3px 4px 0px 0px var(--color-prim);
  box-shadow: 3px 4px 0px 0px var(--color-prim);
  background-color: transparent;
}

.dangdai-button:hover {
  color: var(--colorprim-hover);
  border: solid 1px var(--colorprim-hover);
  -webkit-box-shadow: 3px 4px 0px 0px var(--colorprim-hover);
  box-shadow: 3px 4px 0px 0px var(--colorprim-hover);
  text-decoration: none;
  scale: 1.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
*/
input,
textarea {
  font-family: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--color-prim);
  box-shadow: 0px 0px 3px 0px var(--color-prim);
}

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 var(--color-prim);
  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 var(--color-prim);
  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: var(--color-light);
  color: var(--color-light);
}

.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: var(--color-prim);
  color: var(--color-light);
  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: var(--color-light);
  border: 1px solid var(--color-light);
  border-radius: 50%;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 8px;
  width: 8px;
}

ul.slick-dots li.slick-active button {
  background: var(--color-prim);
}

/*
* 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: var(--color-light);
  border-radius: 50%;
  color: var(--color-prim);
  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: var(--color-prim);
  color: var(--color-light);
}

.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: var(--color-golden);
  color: var(--color-light);
  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: var(--color-light);
  color: var(--color-prim);
}
.section-title{
  text-align:center;
  margin-bottom:2em;
}
.posts-archive-loop .section-title{
  font-size: 36px;
}
.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;
}

a.more-link, a.read-more, a.reply{
	color: var(--color-prim) !important;
	text-decoration: none;
}
a.more-link:hover, a.read-more:hover, a.reply:hover{
	color: var(--colorprim-hover);
  
}


@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 var(--color-light);
  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: var(--color-prim);
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
  position: relative;
}

.title-3:after {
  background: var(--color-prim);
  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: var(--color-prim);
  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: var(--color-prim);
  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: var(--color-golden);
  color: var(--color-light);
  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: var(--color-prim);
  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: var(--color-prim);
  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: 15px;
  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: var(--color-prim);
  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 var(--color-light);
}

.text-content table thead td {
  color: var(--color-light);
  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: var(--color-prim);
  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: var(--color-prim);
  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: var(--color-light);
    border-bottom: 2px solid var(--color-prim);
    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%;
	color: var(--color-prim);
	text-decoration: none;
  }
  .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: var(--color-prim);
    color: var(--color-light);
    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: var(--color-light);
    border-bottom: 2px solid var(--color-prim);
    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: var(--color-prim);
    color: var(--color-light);
    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: var(--color-prim);
    color: var(--color-light);
  }
  .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: var(--color-prim) !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: var(--color-light);
}
.i-menu > ul > li > ul,
.i-menu > ul > li > ul > li > ul {
  display: none !important;
}
.i-menu > ul > li > a {
  color: var(--color-light);
  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: var(--color-light);
}
.f-menu > ul > li > ul,
.f-menu > ul > li > ul > li > ul {
  display: none !important;
}
.f-menu > ul > li > a {
  color: var(--color-light);
  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: var(--color-light);
    border: 1px solid var(--color-prim);
    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: var(--color-light);
    border: 1px solid var(--color-prim);
    color: #929294;
    display: block;
    font-size: 12px;
    height: 26px;
    line-height: 24px;
    padding: 0 5px 0 25px;
    width: 100%;
  }
  .search-form span.icon {
    color: var(--color-prim);
    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: var(--color-light);
}

.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: var(--color-gray);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
}

.featured-events-item .date {
  border: 1px solid var(--color-light);
  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: var(--color-prim);
  bottom: 0;
  color: var(--color-light);
  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: var(--color-light);
  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;
}

.posts-item-fp-title{
  margin-top: 15px;
  font-weight: 500;
  font-size: 16px;
  overflow: hidden;
}

.latest-container{
			
			margin: 0 auto;
			max-width: 1200px;
			width: 100%;
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
			gap: 1em;
			padding: 0em 0.5em;
		}
		.latest-cat-section{
			
			width: 100%;
		}
		.post-box{
			margin: 1em 0;
			display: flex;
			flex-direction: row;
			flex-wrap: nowrap;
			align-items: center;
			justify-content:flex-start;
			gap: 1em;
		}
		.post-box:hover{
			border-left: solid 4px var(--color-golden);
		}
		
		.latest-cat-section a{
			color: var(--color-dark);
			text-decoration: none;
		}
				.latest-cat-section a:hover{
			color: var(--colorprim-hover);
			text-decoration: none;
		}
@media (min-width: 1024px) {
  .post-item .title {
    font-size: 14px;
  }
  .posts-item-fp-title{
  font-size: 18px;
  
}
.latest-container{
			padding: 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
*/
.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: var(--color-light);
  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: var(--color-light);
  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: var(--color-light);
  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: var(--color-prim);
  border: 1px solid var(--color-light);
  border-collapse: collapse;
  color: var(--color-light);
  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: var(--color-prim);
  color: var(--color-gray);
  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: var(--color-light);
  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: var(--color-prim);
  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: var(--color-prim);
  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: var(--color-light);
  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: var(--color-prim);
}

.posts-item .title:after {
  background: var(--color-prim);
  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%;
  color: var(--color-gray);
}

.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: var(--color-prim);
}

/*
* 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: var(--color-prim);
}

.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: var(--color-light);
  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: var(--color-prim);
  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: var(--color-prim);
  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: var(--color-prim);
  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: var(--color-prim);
  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: var(--color-prim);
  }
  .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: var(--color-light);
}

.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: var(--color-gray);
  padding: 13px 0;
}

.footer .row-2 .copyright {
  font-size: 10px;
  line-height: 13px;
  text-align: center;
}
.footer .row-0 {
  background: var(--color-gray);
  padding: 5px 0;
}
.medio .row-0 {
  background: var(--color-gray);
  /* 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 var(--color-light);
    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: var(--color-light);
  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: var(--color-light);
  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: var(--color-prim);
}

.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: var(--color-light);
}

.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: var(--color-light);
}

.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: var(--color-light);
  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: var(--color-light);
  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: var(--color-prim);
}

.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: var(--color-prim);
}

@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: var(--color-light);
  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;
  height: 350px;
  
}

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

.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: var(--color-gray);
}

.posts-single .tax a.term:hover,
.posts-single-sb .tax a.term:hover {
  color: var(--color-prim);
}

.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: var(--color-prim);
}

@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;
  border-bottom: solid 2px var(--color-golden);
}

@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: var(--color-prim);
  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 var(--color-prim);
  color: var(--color-light);
  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: var(--color-light);
  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: var(--color-prim);
  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: var(--color-prim) !important;
  margin-bottom: 26px;
  text-align: center;
  font-size: 36px !important;
}

.subscription-form .mc4wp-alert {
  color: var(--color-light);
  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: var(--color-light);
  background-color: #a20000 !important;
  border-color: #3d3d3d;
}
