@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
.input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 0.9rem;
  padding: 0.6rem;
  background: #fff;
  border: 1px solid #bbb;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  border-radius: 0;
  outline: 0;
  resize: vertical;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.input[disabled] {
  border-color: #c8c8c8;
  background-color: #f2f2f2;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: not-allowed;
}

.input:focus {
  border-color: #0c69d6;
}

.control {
  margin: 0 0 0.9rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.control__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.control__label {
  display: block;
  position: relative;
  padding-left: calc(20px + 0.6rem);
  will-change: transform;
}

.control__label::after, .control__label::before {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
}

.control__label::before {
  border-color: #bbb;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  background: #fff;
  background-size: 0;
}

.control__label::after {
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}

.control__input[type=radio] + .control__label::before {
  border-radius: 100%;
}

.control__input[type=radio] + .control__label::after {
  background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M256%2C464c114.9%2C0%2C208-93.1%2C208-208c0-114.9-93.1-208-208-208C141.1%2C48%2C48%2C141.1%2C48%2C256C48%2C370.9%2C141.1%2C464%2C256%2C464z%22/%3E%3C/svg%3E);
}

.control__input[type=checkbox] + .control__label::after {
  background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M461.6%2C109.6l-54.9-43.3c-1.7-1.4-3.8-2.4-6.2-2.4c-2.4%2C0-4.6%2C1-6.3%2C2.5L194.5%2C323c0%2C0-78.5-75.5-80.7-77.7c-2.2-2.2-5.1-5.9-9.5-5.9c-4.4%2C0-6.4%2C3.1-8.7%2C5.4c-1.7%2C1.8-29.7%2C31.2-43.5%2C45.8c-0.8%2C0.9-1.3%2C1.4-2%2C2.1c-1.2%2C1.7-2%2C3.6-2%2C5.7c0%2C2.2%2C0.8%2C4%2C2%2C5.7l2.8%2C2.6c0%2C0%2C139.3%2C133.8%2C141.6%2C136.1c2.3%2C2.3%2C5.1%2C5.2%2C9.2%2C5.2c4%2C0%2C7.3-4.3%2C9.2-6.2L462%2C121.8c1.2-1.7%2C2-3.6%2C2-5.8C464%2C113.5%2C463%2C111.4%2C461.6%2C109.6z%22/%3E%3C/svg%3E);
}

.control__input[type=checkbox][disabled] + .control__label, .control__input[type=radio][disabled] + .control__label {
  cursor: not-allowed;
}

.control__input[type=checkbox][disabled] + .control__label::before, .control__input[type=radio][disabled] + .control__label::before {
  border-color: #c8c8c8;
  background-color: #f2f2f2;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.control__input:focus + .control__label::before {
  border-color: #0c69d6;
}

.control__input:checked + .control__label::after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 0.9rem;
  padding: 0.6rem;
  width: 100%;
  background: #fff;
  background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M256%2C298.3L256%2C298.3L256%2C298.3l174.2-167.2c4.3-4.2%2C11.4-4.1%2C15.8%2C0.2l30.6%2C29.9c4.4%2C4.3%2C4.5%2C11.3%2C0.2%2C15.5L264.1%2C380.9c-2.2%2C2.2-5.2%2C3.2-8.1%2C3c-3%2C0.1-5.9-0.9-8.1-3L35.2%2C176.7c-4.3-4.2-4.2-11.2%2C0.2-15.5L66%2C131.3c4.4-4.3%2C11.5-4.4%2C15.8-0.2L256%2C298.3z%22/%3E%3C/svg%3E);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: calc(100% - 0.6rem) center;
  border: 1px solid #bbb;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  border-radius: 0;
  outline: 0;
}

.select[disabled] {
  border-color: #c8c8c8;
  background-color: #f2f2f2;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: not-allowed;
}

.select:focus {
  border-color: #0c69d6;
}

.select::-ms-expand {
  display: none;
}

.events-calendar {
  padding: 0 0 30px 0;
  position: relative;
}
.events-calendar div.calendar-header {
  background-color: #ffffff;
}
.events-calendar div.calendar-main {
  margin-right: -20px;
  margin-left: -20px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .events-calendar div.calendar-main {
    margin: 0;
    background-color: #f5f5f5;
  }
}
.events-calendar h2 {
  font-family: "Gordita";
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  color: rgb(0, 38, 125);
  letter-spacing: 1.5px;
  font-size: 30px;
  margin-bottom: 0.43em;
}
.events-calendar h2 span {
  display: block;
  font-size: 30px;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .events-calendar h2 {
    margin-bottom: 1.2em;
  }
  .events-calendar h2 span {
    display: inline;
    margin-top: 0;
    font-size: 1em;
  }
}
.events-calendar .calendar {
  font-size: 0.75em;
  display: table;
  height: auto;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  /* shared */
}
@media screen and (min-width: 768px) {
  .events-calendar .calendar {
    font-size: 0.875em;
  }
}
@media screen and (min-width: 1024px) {
  .events-calendar .calendar {
    font-size: 1em;
  }
}
.events-calendar .calendar div.calendar-row {
  width: 100%;
  display: table-row;
}
.events-calendar .calendar div.calendar-day-head,
.events-calendar .calendar div.calendar-day,
.events-calendar .calendar div.calendar-day-np {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .events-calendar .calendar div.calendar-day-head,
  .events-calendar .calendar div.calendar-day,
  .events-calendar .calendar div.calendar-day-np {
    width: 14.2857142857%;
  }
}
.events-calendar .calendar div.calendar-day {
  position: relative;
  padding-bottom: 0;
  display: none;
}
.events-calendar .calendar div.calendar-day.events-exist {
  display: block;
}
@media screen and (min-width: 768px) {
  .events-calendar .calendar div.calendar-day.events-exist {
    display: table-cell;
  }
}
@media screen and (min-width: 768px) {
  .events-calendar .calendar div.calendar-day {
    height: 11.875em;
    display: table-cell;
    box-sizing: border-box;
    padding-bottom: 2em !important;
    border: 1px solid #eeeeee;
    background-color: #FBFBFB;
    padding-bottom: 3.5em !important;
  }
}
.events-calendar .calendar div.calendar-day a {
  border-top: 2px solid rgb(212, 211, 211);
  padding: 5px 3px 3px 3px;
  color: #666666;
  display: block;
  font-size: 1.375em;
  margin-bottom: 4px;
  outline: none;
  text-align: left;
  margin-left: 60px;
  margin-right: 10px;
  line-height: normal;
}
@media (max-width: 360px) {
  .events-calendar .calendar div.calendar-day a {
    margin-left: 20px;
  }
}
.events-calendar .calendar div.calendar-day a:hover {
  text-decoration: none;
  background-color: #eeeeee;
}
@media screen and (min-width: 768px) {
  .events-calendar .calendar div.calendar-day a {
    margin-left: 2px;
    margin-right: 2px;
    font-size: 1em;
  }
}
.events-calendar .calendar div.calendar-day a.view-more {
  padding: 10px 0;
  color: #666;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  font-size: 1.375em;
  cursor: pointer;
  margin-top: 5px;
  display: block;
  border-radius: 2px;
  margin-left: 60px;
  margin-right: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .events-calendar .calendar div.calendar-day a.view-more {
    margin-left: 0;
    margin-right: 0;
    font-size: 0.9em;
    text-align: left;
    display: inline-block;
  }
}
.events-calendar .calendar div.calendar-day a.view-more i {
  font-size: 0.8em;
  display: inline-block;
  margin-right: 0.5em;
}
.events-calendar .calendar div.calendar-day a:hover, .events-calendar .calendar div.calendar-day a:link, .events-calendar .calendar div.calendar-day a:active, .events-calendar .calendar div.calendar-day a:visited {
  color: #636363;
  text-decoration: none;
  display: flex;
}
.events-calendar .calendar div.calendar-day .day {
  width: 100% !important;
  left: 0;
  color: rgb(0, 38, 125);
  background-color: rgb(212, 211, 211);
  font-size: 16px;
  margin-top: 0;
  margin-bottom: -2px;
  float: left;
  width: 50px;
  text-align: center;
  height: 23px;
}
@media screen and (min-width: 768px) {
  .events-calendar .calendar div.calendar-day .day {
    float: none;
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}
.events-calendar .calendar div.calendar-day .day .day-number {
  display: block;
  line-height: 23px;
}
.events-calendar .calendar div.calendar-day .day .day-name {
  display: none;
  font-size: 15px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .events-calendar .calendar div.calendar-day .day .day-name {
    display: none;
  }
}
.events-calendar .calendar div.calendar-day.active {
  background-color: #F3F3F3;
}
@media screen and (min-width: 768px) {
  .events-calendar .calendar div.calendar-day.today {
    background-color: #F3F3F3;
    border: 2px solid orange;
  }
}
.events-calendar .calendar div.calendar-day.today .day {
  background-color: orange;
  color: rgb(0, 38, 125);
}
@media screen and (min-width: 768px) {
  .events-calendar .calendar div.calendar-day.today .day {
    color: rgb(0, 38, 125);
  }
}
.events-calendar .calendar div.calendar-day.today a {
  background-color: #F3F3F3;
  color: #636363;
}
@media screen and (min-width: 768px) {
  .events-calendar .calendar div.calendar-day.today a {
    background-color: #F3F3F3;
  }
}
.events-calendar .calendar * html div.calendar-day {
  height: 80px;
}
.events-calendar .calendar * html div.calendar-day-np {
  height: 80px;
}
.events-calendar .calendar div.calendar-day-head {
  display: none;
}
@media screen and (min-width: 768px) {
  .events-calendar .calendar div.calendar-day-head {
    font-family: "Kollektif";
    color: rgb(0, 38, 125);
    text-align: center;
    padding: 5px;
    display: table-cell;
    font-size: 1.20625em;
    padding: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}
.events-calendar .calendar div.calendar-day-np {
  display: none;
}
@media screen and (min-width: 768px) {
  .events-calendar .calendar div.calendar-day-np {
    background: rgb(230, 230, 230);
    display: table-cell;
  }
}
.events-calendar .calendar .event-block {
  width: 33%;
  height: 300px;
  float: left;
}

.date-navigate {
  text-align: center;
  padding-bottom: 2em;
  position: absolute;
  top: 16px;
  left: -20px;
  right: -20px;
}
@media screen and (min-width: 768px) {
  .date-navigate {
    top: 0;
    left: 0;
    right: 0;
  }
}
.date-navigate a {
  font-size: 46px;
  text-align: center;
  color: #6f6f6e;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  position: absolute;
  opacity: 0.7;
}
.date-navigate a.prev {
  padding-left: 0.4em;
  left: 0;
}
.date-navigate a.next {
  padding-right: 0.4em;
  right: 0;
}
.date-navigate a:hover {
  opacity: 1;
}

.event-wrapper {
  overflow: hidden;
  padding: 30px 0;
}

.hide-events {
  display: none;
}

.event-group .day-details {
  text-transform: uppercase;
  text-align: left;
  padding: 32px 32px 0;
  border-left: 4px solid #ddd;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .event-group .day-details {
    width: 25%;
    float: left;
    text-align: right;
    border: 0;
  }
}
.event-group .day-details p {
  font-size: 24px;
  font-family: "Century Gothic W01";
  line-height: 1;
  color: #B7B7B7;
  font-weight: bold;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .event-group .day-details p {
    margin-bottom: 24px;
  }
}
.event-group .day-details p span {
  margin-left: 10px;
}
@media screen and (min-width: 1024px) {
  .event-group .day-details p span {
    display: block;
    font-size: 40px;
  }
}
.event-group .events-list {
  border-left: 4px solid #ddd;
  padding: 32px;
}
@media screen and (min-width: 1024px) {
  .event-group .events-list {
    width: 75%;
    float: left;
  }
}
.event-group .events-list .event {
  margin-bottom: 32px;
}
.event-group .events-list .event p {
  margin-bottom: 14px;
}
.event-group .events-list .event p:last-child {
  margin: 0;
}
.event-group .events-list .event:last-child {
  margin: 0;
}
.event-group.today .day-details p {
  color: rgba(31, 80, 151, 0.75);
}
.event-group.today .events-list,
.event-group.today .day-details {
  border-left: 4px solid rgba(31, 80, 151, 0.75);
  background-color: #FBFBFB;
}

.event-popup .mfp-close,
.event-popup .mfp-close:focus {
  top: 20px !important;
  right: 20px;
  font-size: 40px;
}
.event-popup .event-popup-inner {
  position: relative;
  background: #ffffff;
  width: auto;
  max-width: 60%;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .event-popup .event-popup-inner {
    max-width: 73%;
  }
}
.event-popup .event-popup-inner span {
  display: block;
}
.event-popup .event-popup-inner .popup-title {
  font-size: 32px;
  font-family: "league spartan";
  color: #5c5c5c;
  display: block;
  padding: 20px;
  background-color: #f5f5f5;
}
.event-popup .event-popup-inner .event-details {
  font-family: "gordita";
  color: #5c5c5c;
  padding: 20px;
}
.event-popup .event-popup-inner .event-details span {
  font-size: 16px;
}
.event-popup .event-popup-inner .event-details .event-title {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: "gordita";
  color: #5c5c5c;
}
.event-popup .event-popup-inner .event-details .event-description {
  margin-top: 15px;
  font-family: "gordita";
  color: #5c5c5c;
}
.event-popup .event-popup-inner .event-details a.button {
  margin-top: 15px;
}

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,
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,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

div {
  box-sizing: border-box;
}

.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.container {
  padding-right: 40px;
  padding-left: 40px;
}

.container {
  max-width: 1360px;
}

.container-fluid {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}

@media (min-width: 576px) {
  .row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 768px) {
  .row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 992px) {
  .row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 1200px) {
  .row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 20px;
  padding-left: 20px;
}

@media (min-width: 576px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12,
  .col,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg,
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 768px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12,
  .col,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg,
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12,
  .col,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg,
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 1200px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12,
  .col,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg,
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.col {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.333333%;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.666667%;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333%;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.666667%;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.333333%;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.666667%;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.333333%;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.666667%;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.pull-0 {
  right: auto;
}

.pull-1 {
  right: 8.333333%;
}

.pull-2 {
  right: 16.666667%;
}

.pull-3 {
  right: 25%;
}

.pull-4 {
  right: 33.333333%;
}

.pull-5 {
  right: 41.666667%;
}

.pull-6 {
  right: 50%;
}

.pull-7 {
  right: 58.333333%;
}

.pull-8 {
  right: 66.666667%;
}

.pull-9 {
  right: 75%;
}

.pull-10 {
  right: 83.333333%;
}

.pull-11 {
  right: 91.666667%;
}

.pull-12 {
  right: 100%;
}

.push-0 {
  left: auto;
}

.push-1 {
  left: 8.333333%;
}

.push-2 {
  left: 16.666667%;
}

.push-3 {
  left: 25%;
}

.push-4 {
  left: 33.333333%;
}

.push-5 {
  left: 41.666667%;
}

.push-6 {
  left: 50%;
}

.push-7 {
  left: 58.333333%;
}

.push-8 {
  left: 66.666667%;
}

.push-9 {
  left: 75%;
}

.push-10 {
  left: 83.333333%;
}

.push-11 {
  left: 91.666667%;
}

.push-12 {
  left: 100%;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pull-sm-0 {
    right: auto;
  }
  .pull-sm-1 {
    right: 8.333333%;
  }
  .pull-sm-2 {
    right: 16.666667%;
  }
  .pull-sm-3 {
    right: 25%;
  }
  .pull-sm-4 {
    right: 33.333333%;
  }
  .pull-sm-5 {
    right: 41.666667%;
  }
  .pull-sm-6 {
    right: 50%;
  }
  .pull-sm-7 {
    right: 58.333333%;
  }
  .pull-sm-8 {
    right: 66.666667%;
  }
  .pull-sm-9 {
    right: 75%;
  }
  .pull-sm-10 {
    right: 83.333333%;
  }
  .pull-sm-11 {
    right: 91.666667%;
  }
  .pull-sm-12 {
    right: 100%;
  }
  .push-sm-0 {
    left: auto;
  }
  .push-sm-1 {
    left: 8.333333%;
  }
  .push-sm-2 {
    left: 16.666667%;
  }
  .push-sm-3 {
    left: 25%;
  }
  .push-sm-4 {
    left: 33.333333%;
  }
  .push-sm-5 {
    left: 41.666667%;
  }
  .push-sm-6 {
    left: 50%;
  }
  .push-sm-7 {
    left: 58.333333%;
  }
  .push-sm-8 {
    left: 66.666667%;
  }
  .push-sm-9 {
    left: 75%;
  }
  .push-sm-10 {
    left: 83.333333%;
  }
  .push-sm-11 {
    left: 91.666667%;
  }
  .push-sm-12 {
    left: 100%;
  }
  .offset-sm-0 {
    margin-left: 0%;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pull-md-0 {
    right: auto;
  }
  .pull-md-1 {
    right: 8.333333%;
  }
  .pull-md-2 {
    right: 16.666667%;
  }
  .pull-md-3 {
    right: 25%;
  }
  .pull-md-4 {
    right: 33.333333%;
  }
  .pull-md-5 {
    right: 41.666667%;
  }
  .pull-md-6 {
    right: 50%;
  }
  .pull-md-7 {
    right: 58.333333%;
  }
  .pull-md-8 {
    right: 66.666667%;
  }
  .pull-md-9 {
    right: 75%;
  }
  .pull-md-10 {
    right: 83.333333%;
  }
  .pull-md-11 {
    right: 91.666667%;
  }
  .pull-md-12 {
    right: 100%;
  }
  .push-md-0 {
    left: auto;
  }
  .push-md-1 {
    left: 8.333333%;
  }
  .push-md-2 {
    left: 16.666667%;
  }
  .push-md-3 {
    left: 25%;
  }
  .push-md-4 {
    left: 33.333333%;
  }
  .push-md-5 {
    left: 41.666667%;
  }
  .push-md-6 {
    left: 50%;
  }
  .push-md-7 {
    left: 58.333333%;
  }
  .push-md-8 {
    left: 66.666667%;
  }
  .push-md-9 {
    left: 75%;
  }
  .push-md-10 {
    left: 83.333333%;
  }
  .push-md-11 {
    left: 91.666667%;
  }
  .push-md-12 {
    left: 100%;
  }
  .offset-md-0 {
    margin-left: 0%;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pull-lg-0 {
    right: auto;
  }
  .pull-lg-1 {
    right: 8.333333%;
  }
  .pull-lg-2 {
    right: 16.666667%;
  }
  .pull-lg-3 {
    right: 25%;
  }
  .pull-lg-4 {
    right: 33.333333%;
  }
  .pull-lg-5 {
    right: 41.666667%;
  }
  .pull-lg-6 {
    right: 50%;
  }
  .pull-lg-7 {
    right: 58.333333%;
  }
  .pull-lg-8 {
    right: 66.666667%;
  }
  .pull-lg-9 {
    right: 75%;
  }
  .pull-lg-10 {
    right: 83.333333%;
  }
  .pull-lg-11 {
    right: 91.666667%;
  }
  .pull-lg-12 {
    right: 100%;
  }
  .push-lg-0 {
    left: auto;
  }
  .push-lg-1 {
    left: 8.333333%;
  }
  .push-lg-2 {
    left: 16.666667%;
  }
  .push-lg-3 {
    left: 25%;
  }
  .push-lg-4 {
    left: 33.333333%;
  }
  .push-lg-5 {
    left: 41.666667%;
  }
  .push-lg-6 {
    left: 50%;
  }
  .push-lg-7 {
    left: 58.333333%;
  }
  .push-lg-8 {
    left: 66.666667%;
  }
  .push-lg-9 {
    left: 75%;
  }
  .push-lg-10 {
    left: 83.333333%;
  }
  .push-lg-11 {
    left: 91.666667%;
  }
  .push-lg-12 {
    left: 100%;
  }
  .offset-lg-0 {
    margin-left: 0%;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pull-xl-0 {
    right: auto;
  }
  .pull-xl-1 {
    right: 8.333333%;
  }
  .pull-xl-2 {
    right: 16.666667%;
  }
  .pull-xl-3 {
    right: 25%;
  }
  .pull-xl-4 {
    right: 33.333333%;
  }
  .pull-xl-5 {
    right: 41.666667%;
  }
  .pull-xl-6 {
    right: 50%;
  }
  .pull-xl-7 {
    right: 58.333333%;
  }
  .pull-xl-8 {
    right: 66.666667%;
  }
  .pull-xl-9 {
    right: 75%;
  }
  .pull-xl-10 {
    right: 83.333333%;
  }
  .pull-xl-11 {
    right: 91.666667%;
  }
  .pull-xl-12 {
    right: 100%;
  }
  .push-xl-0 {
    left: auto;
  }
  .push-xl-1 {
    left: 8.333333%;
  }
  .push-xl-2 {
    left: 16.666667%;
  }
  .push-xl-3 {
    left: 25%;
  }
  .push-xl-4 {
    left: 33.333333%;
  }
  .push-xl-5 {
    left: 41.666667%;
  }
  .push-xl-6 {
    left: 50%;
  }
  .push-xl-7 {
    left: 58.333333%;
  }
  .push-xl-8 {
    left: 66.666667%;
  }
  .push-xl-9 {
    left: 75%;
  }
  .push-xl-10 {
    left: 83.333333%;
  }
  .push-xl-11 {
    left: 91.666667%;
  }
  .push-xl-12 {
    left: 100%;
  }
  .offset-xl-0 {
    margin-left: 0%;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}


@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Black.otf");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-BlackItalic.otf");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Bold.otf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-BoldItalic.otf");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Light.otf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-LightItalic.otf");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Medium.otf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-MediumItalic.otf");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Regular.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-RegularItalic.otf");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Kollektif";
  src: url("../fonts/Kollektif-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Kollektif";
  src: url("../fonts/Kollektif-BoldItalic.ttf");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Kollektif";
  src: url("../fonts/Kollektif-Italic.ttf");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Kollektif";
  src: url("../fonts/Kollektif.ttf");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "League Spartan", sans-serif;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
}

.admin-bar header {
  top: 32px;
}

#wrapper {
  background-color: #d3ab3b;
  overflow-x: hidden;
}
@media screen and (min-width: 1140px) {
  #wrapper {
    background-color: #ffffff;
  }
}

header {
  position: absolute;
  background-image: linear-gradient(to bottom, white, white 10%, transparent);
  z-index: 100;
  width: 100%;
  height: 320px;
}
header #menubtn {
  position: absolute;
  top: 30px;
  left: 61px;
  font-size: 23px;
  text-decoration: none;
  border: none;
  background-color: #4E5970;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 200px;
  border-radius: 18px;
  height: 68px;
  color: #fff;
  z-index: 999;
}
@media (max-width: 880px) {
  header #menubtn {
    background-color: transparent;
    width: 10px;
  }
}
header #menubtn .burger-menu-desktop {
  position: absolute;
  left: 27px;
  top: 19px;
}
header #menubtn .burger-menu-desktop i {
  color: white !important;
  font-size: 28px !important;
}
@media (max-width: 880px) {
  header #menubtn .burger-menu-desktop {
    display: none;
  }
}
header #menubtn .burger-menu-mobile {
  position: absolute;
  left: -32px;
  top: 19px;
}
header #menubtn .burger-menu-mobile i {
  color: rgb(69, 72, 79) !important;
  font-size: 34px !important;
}
@media (min-width: 881px) {
  header #menubtn .burger-menu-mobile {
    display: none;
  }
}
header #menubtn .menu-text {
  font-size: 24px;
  display: block;
  position: absolute;
  right: 33px;
  top: 19px;
}
@media (max-width: 880px) {
  header #menubtn .menu-text {
    display: none;
  }
}
header #full-screen-nav {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgb(0, 88, 174);
  overflow-x: hidden;
  overflow-y: scroll;
  transition: 0.5s;
  padding-top: 60px;
}
header #full-screen-nav .header-social-container {
  position: absolute;
  right: 50px;
  top: 62px;
  width: 119px;
  display: flex;
  z-index: 9999;
}
@media (max-width: 880px) {
  header #full-screen-nav .header-social-container {
    display: none;
  }
}
header #full-screen-nav .header-social-container .contact-icon {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}
header #full-screen-nav .header-social-container .contact-icon.fb-icon img {
  width: 20px;
}
header #full-screen-nav .header-social-container .contact-icon.yt-icon img {
  width: 45px;
  margin-top: 5px;
}
header #full-screen-nav .header-logo-container {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 12px;
}
header #full-screen-nav .header-logo-container img {
  position: relative;
  width: 190px;
}
@media (max-width: 880px) {
  header #full-screen-nav .header-logo-container img {
    width: 132px;
  }
}
@media (max-width: 880px) {
  header #full-screen-nav .submenu-container {
    display: none;
  }
}
header #full-screen-nav ul {
  position: absolute;
  margin-top: 188px;
  line-height: 40px;
  width: 37%;
}
header #full-screen-nav ul.main-menu {
  left: 11%;
  border-right: 6px rgb(235, 169, 0) solid;
}
header #full-screen-nav ul.main-menu.clicked {
  opacity: 1;
  animation: fade-in 1s ease-in;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header #full-screen-nav ul.main-menu.unclicked {
  opacity: 0;
  animation: fade-out 0.2s ease-out;
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media (max-width: 880px) {
  header #full-screen-nav ul.main-menu {
    border-right: none;
    width: 80%;
  }
}
header #full-screen-nav ul.main-menu li {
  position: relative;
  margin-bottom: 28px;
  margin-top: 28px;
}
header #full-screen-nav ul.main-menu li a {
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 1400px) {
  header #full-screen-nav ul.main-menu li a {
    font-size: 50px;
  }
}
@media (max-width: 1210px) {
  header #full-screen-nav ul.main-menu li a {
    font-size: 40px;
  }
}
@media (max-width: 930px) {
  header #full-screen-nav ul.main-menu li a {
    font-size: 30px;
  }
}
header #full-screen-nav ul.main-menu li div.plus-icon {
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  display: none;
}
@media (max-width: 880px) {
  header #full-screen-nav ul.main-menu li div.plus-icon {
    display: block;
  }
}
header #full-screen-nav ul.sub-menu {
  display: none;
  right: 4%;
  line-height: 20px;
}
@media (max-width: 880px) {
  header #full-screen-nav ul.sub-menu {
    left: 46px;
    width: auto;
  }
}
header #full-screen-nav ul.sub-menu li {
  margin-bottom: 28px;
  margin-top: 28px;
}
header #full-screen-nav ul.sub-menu li a {
  font-size: 30px;
}
@media (max-width: 930px) {
  header #full-screen-nav ul.sub-menu li a {
    font-size: 20px;
  }
}
header #full-screen-nav ul li {
  list-style-type: none;
}
header #full-screen-nav ul li a {
  --web-animation: fadein undefineds undefined;
  --web-action-type: page;
  cursor: pointer;
  text-align: left;
  font-family: League Spartan;
  font-style: normal;
  color: #fff;
  letter-spacing: 4.5px;
  text-decoration: none;
}
header #full-screen-nav ul li a:hover, header #full-screen-nav ul li a:hover ~ * {
  color: rgb(235, 169, 0) !important;
}
@media (max-width: 880px) {
  header #full-screen-nav ul {
    margin-top: 100px !important;
  }
}
header #full-screen-nav .closebtn {
  position: absolute;
  top: 30px;
  left: 61px;
  font-size: 23px;
  text-decoration: none;
  background-color: #4E5970;
  width: 200px;
  border-radius: 18px;
  height: 68px;
}
@media (max-width: 880px) {
  header #full-screen-nav .closebtn {
    display: none;
  }
}
header #full-screen-nav .closebtn .close-text {
  font-size: 24px;
  display: block;
  position: absolute;
  right: 33px;
  top: 23px;
}
header #full-screen-nav .closebtn .cross {
  font-size: 70px;
  display: block;
  position: absolute;
  left: 27px;
  top: 4px;
}
header #full-screen-nav .closebtn-mobile {
  position: absolute;
  top: 30px;
  left: 0;
  font-size: 23px;
  text-decoration: none;
  background-color: transparent;
  width: 68px;
  height: 68px;
}
@media (min-width: 881px) {
  header #full-screen-nav .closebtn-mobile {
    display: none;
  }
}
header #full-screen-nav .closebtn-mobile .cross {
  font-size: 70px;
  display: block;
  position: absolute;
  left: 27px;
  top: 4px;
}
header #full-screen-nav .backbtn-mobile {
  position: absolute;
  top: 45px;
  left: 28px;
  font-size: 23px;
  text-decoration: none;
  background-color: transparent;
  width: 68px;
  height: 68px;
  display: none;
}
header a {
  color: #ffffff;
}
header .header-main {
  text-align: left;
}
@media screen and (min-width: 768px) {
  header .header-main {
    text-align: center;
  }
}
@media screen and (min-width: 1140px) {
  header .header-main {
    text-align: left;
  }
}
header .header-main .logo-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 12px;
}
header .header-main .logo-wrapper img {
  position: relative;
  width: 190px;
}
@media (max-width: 880px) {
  header .header-main .logo-wrapper img {
    width: 132px;
  }
}
header .header-main .header-social-container {
  position: absolute;
  right: 50px;
  top: 62px;
  width: 119px;
  display: flex;
  z-index: 99;
}
@media (max-width: 880px) {
  header .header-main .header-social-container {
    display: none;
  }
}
header .header-main .header-social-container .contact-icon {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}
header .header-main .header-social-container .contact-icon.fb-icon img {
  width: 20px;
}
header .header-main .header-social-container .contact-icon.yt-icon img {
  width: 45px;
  margin-top: 5px;
}
header .header-social-container {
  position: absolute;
  right: 50px;
  top: 62px;
  width: 119px;
  display: flex;
  z-index: 99;
}
@media (max-width: 880px) {
  header .header-social-container {
    display: none;
  }
}
header .header-social-container .contact-icon {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}
header .header-social-container .contact-icon.fb-icon img {
  width: 20px;
}
header .header-social-container .contact-icon.yt-icon img {
  width: 45px;
  margin-top: 5px;
}

footer .footer-top {
  background-color: rgb(68, 72, 80);
  padding: 30px 0 30px;
}
footer .footer-top .links {
  width: 240px;
  margin: auto;
}
@media (max-width: 767px) {
  footer .footer-top .contact-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    display: flex;
    align-items: center;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  footer .footer-top .contact-wrapper .contact-text {
    display: none;
  }
}
footer .footer-top .contact-wrapper .footer-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
footer .footer-top .contact-wrapper .contact-icon {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}
footer .footer-top .contact-wrapper .contact-icon span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  border: 3px solid white;
  border-radius: 50%;
}
footer .footer-top .contact-wrapper .contact-icon span img {
  width: 34px;
  height: 34px;
  margin: 14px;
}
@media (max-width: 767px) {
  footer .footer-top .contact-wrapper .contact-icon {
    display: block;
    margin-bottom: 10px;
  }
}
footer .footer-top .contact-wrapper .contact-icon.logo {
  margin-top: 30px;
}
footer .footer-top .contact-wrapper .contact-icon.logo span {
  border: none;
}
footer .footer-top .contact-wrapper .contact-icon.logo span img {
  width: 165px;
  height: 168px;
  margin: 14px;
}
footer .footer-top .contact-wrapper .contact-icon.fb-icon span {
  border: none;
}
footer .footer-top .contact-wrapper .contact-icon.fb-icon span img {
  width: 21px;
  height: 44px;
  margin: 14px;
}
footer .footer-top .contact-wrapper .contact-icon.yt-icon span {
  border: none;
}
footer .footer-top .contact-wrapper .contact-icon.yt-icon span img {
  width: 47px;
  height: 33px;
  margin: 14px;
}
footer .footer-top .contact-wrapper .contact-icon.phone-icon span img {
  width: 34px;
  height: 34px;
  margin: 15px 15px 10px 15px;
}
footer .footer-top .contact-wrapper .contact-icon.email-icon span img {
  width: 34px;
  height: 34px;
  margin: 15px 15px 10px 15px;
}
footer .footer-top .contact-wrapper h3 {
  text-align: center;
  font-family: Gordita;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  color: white;
  letter-spacing: 0.5px;
  text-transform: none;
  margin-top: 18px;
}
footer .footer-top .contact-wrapper p {
  text-align: center;
  font-family: Kollektif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  list-style-type: none;
  color: #ffffff;
  text-decoration: none;
}
footer .footer-top .logo-wrapper {
  display: block;
  margin: 0 auto;
}
footer .footer-top .logo-wrapper img {
  max-width: 150px;
  width: 100%;
}
footer .footer-top .footer-nav-column {
  text-align: center;
}
footer .footer-top .footer-nav-column ul {
  display: block;
  margin-left: 0;
}
footer .footer-top .footer-nav-column ul li {
  text-align: center;
  font-family: Kollektif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  list-style-type: none;
}
footer .footer-top .footer-nav-column ul li a {
  color: #ffffff;
  text-decoration: none;
}
footer .footer-top .footer-nav-column > ul > li {
  text-align: center;
  font-family: Gordita;
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.5px;
  margin-bottom: 23px;
}
footer .footer-base {
  font-family: Kollektif;
  padding: 20px 0;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  background-color: rgb(68, 72, 80);
}
footer .footer-base a {
  color: #fff;
  text-decoration: none;
}
footer .footer-base a:hover {
  border-bottom: 2px solid #fff;
}
footer .footer-base .copyright-notice {
  text-align: left;
  line-height: 28px;
}
@media (max-width: 767px) {
  footer .footer-base .copyright-notice {
    text-align: center;
  }
}
footer .footer-base .design-by {
  text-align: right;
}
@media (max-width: 767px) {
  footer .footer-base .design-by {
    margin-top: 20px;
    text-align: center;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 20px;
  line-height: normal;
}

p:last-child {
  margin-bottom: 0;
}

h1 {
  font-family: "League Spartan", sans-serif;
  color: #666666;
}

h2 {
  font-size: 32px;
  font-weight: bold;
  font-family: "futura-pt", sans-serif;
  text-transform: uppercase;
  color: #666666;
}

h3 {
  font-size: 28px;
  font-weight: bold;
  font-family: "futura-pt", sans-serif;
  text-transform: uppercase;
  color: #666666;
}

h4 {
  font-family: "League Spartan", sans-serif;
  color: #666666;
}

h5 {
  font-family: "League Spartan", sans-serif;
  color: #666666;
}

h6 {
  font-size: 16px;
  font-weight: bold;
  font-family: "futura-pt", sans-serif;
  text-transform: uppercase;
  color: #666666;
}

ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 20px;
}
ul:last-child {
  margin-bottom: 0;
}

ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 20px;
}
ol:last-child {
  margin-bottom: 0;
}

ul ul,
ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}

ol ol,
ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}

blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 20px 0;
  padding: 10px 10px;
  quotes: "“" "”" "‘" "’";
}

blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

blockquote p {
  display: inline;
}

.fl-heading h1,
.fl-heading h2,
.fl-heading h3,
.fl-heading h4,
.fl-heading h5 {
  margin-bottom: 0;
}

p,
li {
  font-size: 20px;
  color: #666666;
}

strong {
  font-weight: bold;
}

.swiper-container,
.swiper-services-container {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
}

.swiper-wrapper,
.swiper-services-wrapper {
  display: flex;
  margin: auto;
}

.swiper-slide,
.swiper-services-slide {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 230px;
  height: 300px;
  border-radius: 15px;
  margin-right: 40px;
  margin-bottom: 24px;
  position: relative;
  background-size: cover;
  box-shadow: 0px 0px 0px 8px rgba(0, 0, 0, 0), 8px 8px 14px rgba(0, 0, 0, 0.18);
}
@media (max-width: 500px) {
  .swiper-slide,
  .swiper-services-slide {
    width: 138px;
    height: 224px;
  }
}
.swiper-slide img,
.swiper-services-slide img {
  filter: brightness(0.5);
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: inherit;
}
.swiper-slide .vision-pillar,
.swiper-services-slide .vision-pillar {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}
.swiper-slide .vision-pillar .vision-pillar-title,
.swiper-services-slide .vision-pillar .vision-pillar-title {
  z-index: 1;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  text-transform: none !important;
}
.swiper-slide:last-child,
.swiper-services-slide:last-child {
  margin-right: 0;
}
.swiper-slide .vision-pillar-title,
.swiper-services-slide .vision-pillar-title {
  z-index: 1;
  color: white;
  margin: 0;
  text-transform: none;
  position: absolute;
  bottom: 76px;
  font-family: "Gordita";
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 33px;
}
@media (max-width: 500px) {
  .swiper-slide .vision-pillar-title,
  .swiper-services-slide .vision-pillar-title {
    font-size: 27px;
  }
}
.swiper-slide .vision-pillar-title a:link,
.swiper-slide .vision-pillar-title a:visited,
.swiper-slide .vision-pillar-title a:hover,
.swiper-slide .vision-pillar-title a:active,
.swiper-services-slide .vision-pillar-title a:link,
.swiper-services-slide .vision-pillar-title a:visited,
.swiper-services-slide .vision-pillar-title a:hover,
.swiper-services-slide .vision-pillar-title a:active {
  text-transform: none;
  color: inherit;
  text-decoration: none;
}
.swiper-slide a:link,
.swiper-services-slide a:link {
  text-decoration: none;
}
.swiper-slide a:visited,
.swiper-services-slide a:visited {
  text-decoration: none;
  color: white;
}
.swiper-slide a:hover,
.swiper-services-slide a:hover {
  text-decoration: none;
}
.swiper-slide a:active,
.swiper-services-slide a:active {
  text-decoration: none;
}

.social-links {
  text-align: right;
  padding: 40px 0 0px 0;
}
.social-links li {
  display: inline-block;
  padding: 0 6px;
}
.social-links li:last-child {
  padding-right: 0;
}
.social-links li a {
  font-size: 25px;
  color: #d3ab3b;
}
.social-links li a span {
  display: none;
}

.fl-heading-text {
  display: inline-block;
}

.fl-builder-content a.fl-button,
.fl-builder-content a.fl-button:visited {
  background-color: transparent;
  opacity: 1;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 200px;
}
.fl-builder-content a.fl-button span.fl-button-text,
.fl-builder-content a.fl-button:visited span.fl-button-text {
  color: white;
  font-size: 19px;
  font-weight: 600;
}
.fl-builder-content a.fl-button i,
.fl-builder-content a.fl-button:visited i {
  float: right;
}
.fl-builder-content a.fl-button:hover span.fl-button-text,
.fl-builder-content a.fl-button:hover i,
.fl-builder-content a.fl-button:visited:hover span.fl-button-text,
.fl-builder-content a.fl-button:visited:hover i {
  color: #ffffff;
}
.fl-builder-content .white-button a.fl-button,
.fl-builder-content .white-button a.fl-button:visited {
  background-color: transparent;
  border-radius: 0;
  border: 3px solid #ffffff;
  color: #ffffff;
  opacity: 1;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}
.fl-builder-content .white-button a.fl-button span.fl-button-text,
.fl-builder-content .white-button a.fl-button:visited span.fl-button-text {
  color: #ffffff;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 600;
}
.fl-builder-content .white-button a.fl-button i,
.fl-builder-content .white-button a.fl-button:visited i {
  float: right;
  color: #ffffff;
}
.fl-builder-content .white-button a.fl-button:hover,
.fl-builder-content .white-button a.fl-button:visited:hover {
  background-color: #ffffff;
}
.fl-builder-content .white-button a.fl-button:hover span.fl-button-text,
.fl-builder-content .white-button a.fl-button:hover i,
.fl-builder-content .white-button a.fl-button:visited:hover span.fl-button-text,
.fl-builder-content .white-button a.fl-button:visited:hover i {
  color: #333333;
}
.fl-builder-content .gold-button a.fl-button,
.fl-builder-content .gold-button a.fl-button:visited {
  background-color: transparent;
  border-radius: 0;
  border: 3px solid #d3ab3b;
  opacity: 1;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 200px;
}
.fl-builder-content .gold-button a.fl-button span.fl-button-text,
.fl-builder-content .gold-button a.fl-button:visited span.fl-button-text {
  color: #d3ab3b;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 600;
}
.fl-builder-content .gold-button a.fl-button i,
.fl-builder-content .gold-button a.fl-button:visited i {
  float: right;
  color: #d3ab3b;
}
.fl-builder-content .gold-button a.fl-button:hover span.fl-button-text,
.fl-builder-content .gold-button a.fl-button:hover i,
.fl-builder-content .gold-button a.fl-button:visited:hover span.fl-button-text,
.fl-builder-content .gold-button a.fl-button:visited:hover i {
  color: #ffffff;
}
.fl-builder-content .gold-button-solid a.fl-button,
.fl-builder-content .gold-button-solid a.fl-button:visited {
  border-radius: 0;
  border: 3px solid transparent;
  opacity: 1;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 200px;
}
.fl-builder-content .gold-button-solid a.fl-button span.fl-button-text,
.fl-builder-content .gold-button-solid a.fl-button:visited span.fl-button-text {
  color: #ffffff;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 600;
}
.fl-builder-content .gold-button-solid a.fl-button i,
.fl-builder-content .gold-button-solid a.fl-button:visited i {
  float: right;
  color: #ffffff;
}
.fl-builder-content .gold-button-solid a.fl-button:hover,
.fl-builder-content .gold-button-solid a.fl-button:visited:hover {
  background-color: transparent;
}
.fl-builder-content .dark-button a.fl-button,
.fl-builder-content .dark-button a.fl-button:visited {
  background-color: rgba(0, 0, 0, 0.2);
  border: 3px solid transparent;
  border-radius: 0;
  color: #ffffff;
  opacity: 1;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 200px;
}
.fl-builder-content .dark-button a.fl-button span.fl-button-text,
.fl-builder-content .dark-button a.fl-button:visited span.fl-button-text {
  color: #ffffff;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 600;
}
.fl-builder-content .dark-button a.fl-button i,
.fl-builder-content .dark-button a.fl-button:visited i {
  float: right;
  color: #ffffff;
}
.fl-builder-content .dark-button a.fl-button:hover span.fl-button-text,
.fl-builder-content .dark-button a.fl-button:hover i,
.fl-builder-content .dark-button a.fl-button:visited:hover span.fl-button-text,
.fl-builder-content .dark-button a.fl-button:visited:hover i {
  color: #ffffff;
}
.fl-builder-content .icon-first a.fl-button span.fl-button-text,
.fl-builder-content .icon-first a.fl-button:visited span.fl-button-text {
  float: right;
}
.fl-builder-content .icon-first a.fl-button i,
.fl-builder-content .icon-first a.fl-button:visited i {
  float: left;
}
.fl-builder-content .full-width a.fl-button,
.fl-builder-content .full-width a.fl-button:visited {
  width: 100%;
}

/* Style the accordion panel. Note: hidden by default */
.featured-events-panel {
  padding: 0 18px;
  background-color: rgba(0, 0, 0, 0.15);
  display: none;
  color: #ffffff;
  margin-bottom: 2px;
  transition: background-color 0.5s ease-in-out;
}
.featured-events-panel p {
  color: #ffffff;
}
.featured-events-panel .button-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}
.featured-events-panel .button-wrapper div {
  float: left;
}
.featured-events-panel .button-wrapper div:last-child {
  float: right;
}

.fl-callout a {
  color: inherit;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .map-wrapper {
    height: 600px;
  }
}
.map-wrapper .container,
.map-wrapper .row {
  height: 100%;
}
.map-wrapper .row {
  flex-direction: column;
  justify-content: center;
}
.map-wrapper .map-overlay {
  position: relative;
  padding: 30px 0px;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .map-wrapper .map-overlay {
    padding: 30px 100px 0px 20px;
    flex: 0 0 auto;
  }
  .map-wrapper .map-overlay:before {
    content: "";
    position: absolute;
    top: -500px;
    bottom: -500px;
    right: 0;
    width: 500%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: -1;
  }
}
.map-wrapper .map-overlay h3 {
  margin-bottom: 50px;
}
.map-wrapper .map-overlay address {
  text-transform: uppercase;
  font-size: 20px;
  color: #666666;
  margin-top: 5px;
  margin-bottom: 20px;
}
.map-wrapper .map-overlay p {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 20px;
}
.map-wrapper .map-overlay p span {
  font-size: 25px;
  font-weight: bold;
}
.map-wrapper .map {
  position: relative;
  background-color: #f9f9f9;
  height: 420px;
}
@media screen and (min-width: 1024px) {
  .map-wrapper .map {
    height: auto;
    z-index: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.full-height-slider-home {
  height: 100vh;
}
.full-height-slider-home .fl-module-content,
.full-height-slider-home .fl-content-slider,
.full-height-slider-home .bx-wrapper,
.full-height-slider-home .bx-viewport,
.full-height-slider-home .fl-content-slider-wrapper,
.full-height-slider-home .fl-slide {
  height: 100%;
}
.full-height-slider-home .fl-slide {
  align-items: center;
  justify-content: center;
}
.full-height-slider-home .fl-slide .fl-slide-content-wrap {
  margin: 0;
  width: auto;
}
.full-height-slider-home .fl-slide:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.fl-slide .fl-slide-foreground {
  display: flex !important;
  bottom: 55px;
  left: 100px;
  position: absolute;
}
@media (max-width: 760px) {
  .fl-slide .fl-slide-foreground {
    display: block !important;
    bottom: 0px;
    left: 0px;
    height: 80%;
    width: 100%;
    top: 200px;
  }
}
.fl-slide .fl-slide-foreground .fl-slide-content-wrap {
  margin: 0;
  width: auto;
}
@media (max-width: 760px) {
  .fl-slide .fl-slide-foreground .fl-slide-content-wrap {
    position: relative;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 760px) {
  .fl-slide-content {
    position: relative;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 760px) {
  .fl-slide-content .fl-slide-title {
    position: relative !important;
    margin: 0px 0px 20px;
    text-align: center !important;
    font-size: 65px;
    bottom: 0px !important;
    width: 100% !important;
  }
}
@media (max-width: 760px) {
  .fl-slide-content .fl-slide-text {
    position: relative !important;
    margin: auto !important;
    text-align: center !important;
    font-size: 65px !important;
    bottom: 0px !important;
    width: 100% !important;
  }
  .fl-slide-content .fl-slide-text p {
    text-align: center !important;
  }
}

.fl-content-slider h1.fl-slide-title {
  text-transform: initial;
  font-size: 65px;
  line-height: 1.1;
}
.fl-content-slider h2.fl-slide-title {
  text-transform: initial;
  line-height: 1.1;
  font-family: League Spartan;
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  color: rgb(255, 255, 254);
  letter-spacing: 0.5px;
  width: 812px;
  white-space: nowrap;
  text-align: left;
  white-space: pre-wrap;
}
.fl-content-slider .fl-slide-text {
  font-family: Gordita;
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  color: rgb(255, 255, 254);
  letter-spacing: 0.5px;
  width: 600px;
  height: 147px;
  text-align: left;
}
.fl-content-slider .fl-button-wrap .fl-button {
  background-color: transparent;
  border: none;
  border-radius: 12px !important;
  line-height: 18px !important;
  padding: 12px 24px !important;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 1;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 200px;
  color: #ffffff;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 600;
}
.fl-content-slider .fl-button-wrap .fl-button span {
  color: #ffffff !important;
}
.simcal-default-calendar-grid > table tbody td {
  padding: 0 !important;
  height: 150px;
  border: 1px solid #dddddd;
}

.simcal-default-calendar-grid .simcal-calendar-head .simcal-nav {
  padding: 10px 0 30px !important;
  vertical-align: middle;
}

.fl-accordion .fl-accordion-item {
  background-color: #f5f5f5;
  border: 0 !important;
  margin-bottom: 5px !important;
}
.fl-accordion .fl-accordion-button {
  padding: 15px 15px;
  color: #666666 !important;
}
.fl-accordion .fl-accordion-button .fl-accordion-button-label {
  font-weight: bold;
  font-size: 20px;
}

form input[type=text],
form input[type=email],
form textarea {
  padding: 10px;
  font-size: 20px;
  border: none;
  border-radius: 20px;
  height: 56px;
  padding-left: 42px;
}
form label {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 20px;
  color: white;
}
form input[type=submit],
form button {
  opacity: 1;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 200px;
}
form input[type=submit] span.fl-button-text,
form button span.fl-button-text {
  color: #d3ab3b;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 600;
}
form input[type=submit] i,
form button i {
  float: right;
  color: #d3ab3b;
}
form input[type=submit]:hover span.fl-button-text,
form input[type=submit]:hover i,
form button:hover span.fl-button-text,
form button:hover i {
  color: #ffffff;
}

.fl-builder-module-settings .fl-button-group-field-options button {
  min-width: 0px !important;
}

#gform_1 .ginput_container_text,
.ginput_container_email {
  margin-bottom: 28px;
  filter: drop-shadow(15px 15px 15px rgba(0, 0, 0, 0.3));
}

#gform_1 input {
  padding-left: 42px;
  font-size: 22px;
  font-family: "League Spartan", sans-serif;
  color: rgba(68, 72, 80, 0.471);
}

#gform_1 .gform_button {
  filter: drop-shadow(15px 15px 15px rgba(0, 0, 0, 0.3));
  background-color: rgb(68, 72, 80);
  border-radius: 20px;
  border: none;
  color: white;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  width: 250px;
  height: 75px;
  margin: auto;
  font-size: 23px;
  font-family: "League Spartan", sans-serif;
}

/* Magnific Popup CSS */
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
     * Remove all paddings around the image on small screen
     */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.add-to-calendar-dropdown {
  list-style-type: none;
  position: relative;
  z-index: 30;
}
.add-to-calendar-dropdown > li {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  color: #ffffff;
  opacity: 1;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 200px;
  position: relative;
  height: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.add-to-calendar-dropdown > li span.fl-button-text {
  color: #ffffff;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 600;
}
.add-to-calendar-dropdown > li i {
  float: right;
  color: #ffffff;
}
.add-to-calendar-dropdown > li:hover {
  background-color: #d3ab3b;
}
.add-to-calendar-dropdown > li:hover span.fl-button-text,
.add-to-calendar-dropdown > li:hover i {
  color: #ffffff;
}
.add-to-calendar-dropdown > li ul {
  display: none;
  position: absolute;
  background-color: #0b5756;
  left: 0;
  top: 100%;
  margin: 0;
  list-style-type: none;
}
.add-to-calendar-dropdown > li ul li a {
  text-transform: uppercase;
}
.add-to-calendar-dropdown > li ul li a:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
}
.add-to-calendar-dropdown.add-to-calendar-dropdown-active > li {
  background-color: #d3ab3b;
}
.add-to-calendar-dropdown.add-to-calendar-dropdown-active > li ul {
  display: block;
}

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

.signup-popup.mfp-bg {
  background-color: #F5F6F7;
  opacity: 1;
}
.signup-popup .mfp-iframe-holder {
  padding: 0;
}
.signup-popup .mfp-content {
  height: 100%;
  position: initial;
  max-width: 100%;
}
.signup-popup .mfp-content .mfp-signup-form {
  height: 100%;
}
.signup-popup .mfp-content .mfp-signup-form iframe {
  width: 100%;
  height: 100%;
}
.signup-popup .mfp-content .mfp-signup-form .mfp-close {
  color: #666666;
  font-size: 60px;
  position: absolute;
  right: 30px;
  top: 30px !important;
  width: auto;
}

.admin-bar .signup-popup {
  top: 32px !important;
}

.mfp-loading {
  background-color: #F5F6F7;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.spinner {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.spinner > div {
  background-color: #bbbbbb;
  height: 100%;
  width: 7px;
  margin: 0 3px 0 0;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.fl-block-overlay-active {
  z-index: 9999 !important;
}

#canvas {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1139px) {
  #canvas {
    transition: all 0.4s cubic-bezier(0.13, 0.56, 0.38, 0.93);
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    backface-visibility: hidden;
    background-color: #ffffff;
  }
}

@media screen and (max-width: 1139px) {
  .js-nav #canvas {
    transform: translate3d(-75%, 0, 0) scale3d(1, 1, 1);
    backface-visibility: hidden;
    -webkit-perspective: 1000 !important;
  }
}
@media screen and (min-width: 400px) {
  .js-nav #canvas {
    transform: translate3d(-77%, 0, 0) scale3d(1, 1, 1);
  }
}
@media screen and (min-width: 520px) {
  .js-nav #canvas {
    transform: translate3d(-65%, 0, 0) scale3d(1, 1, 1);
  }
}
@media screen and (min-width: 768px) {
  .js-nav #canvas {
    transform: translate3d(-40%, 0, 0) scale3d(1, 1, 1);
  }
}
@media screen and (min-width: 1140px) {
  .js-nav #canvas {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
}

@media screen and (max-width: 1139px) {
  .js-nav {
    overflow-x: hidden;
    height: 100%;
  }
}

@media screen and (max-width: 1139px) {
  .header-content-wrapper {
    position: absolute !important;
    left: 100%;
    width: 75%;
    margin-left: 0;
    padding-left: 10px;
    top: 30px;
  }
}
@media screen and (max-width: 1139px) and (min-width: 400px) {
  .header-content-wrapper {
    width: 77%;
  }
}
@media screen and (max-width: 1139px) and (min-width: 520px) {
  .header-content-wrapper {
    width: 65%;
  }
}
@media screen and (max-width: 1139px) and (min-width: 768px) {
  .header-content-wrapper {
    width: 40%;
    top: 40px;
    padding-left: 30px;
  }
}
.nav-wrapper {
  position: fixed;
  width: 100vh;
  height: 100vh;
  background-color: rgba(128, 128, 128, 0);
}
.nav-wrapper .mobile-nav-wrapper {
  background-color: grey;
  width: 193px;
  height: 70px;
  border-radius: 20px;
}
.nav-wrapper .mobile-nav-wrapper #mobile-nav {
  position: absolute;
  width: 32.215px;
  height: 20.61px;
  left: 35px;
  top: 23.236px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.nav-wrapper .mobile-nav-wrapper #mobile-nav span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: white;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.nav-wrapper .mobile-nav-wrapper #mobile-nav span:hover {
  background: #aaaaaa;
}
.nav-wrapper .mobile-nav-wrapper #mobile-nav span:nth-child(1) {
  top: 0px;
}
.nav-wrapper .mobile-nav-wrapper #mobile-nav span:nth-child(2), .nav-wrapper .mobile-nav-wrapper #mobile-nav span:nth-child(3) {
  top: 13px;
}
.nav-wrapper .mobile-nav-wrapper #mobile-nav span:nth-child(4) {
  top: 26px;
}
.nav-wrapper .mobile-nav-wrapper .menu-text {
  left: 91.5px;
  top: 24.308px;
  position: absolute;
  overflow: visible;
  width: 66px;
  white-space: nowrap;
  text-align: left;
  font-family: Gordita;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  color: rgb(255, 255, 254);
  letter-spacing: 0.5px;
}
.nav-wrapper .mobile-nav-wrapper .menu-text span {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
}

.js-nav #mobile-nav span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.js-nav #mobile-nav span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.js-nav #mobile-nav span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.js-nav #mobile-nav span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.sermon-block {
  margin-bottom: 40px;
}
.sermon-block .gold-button-solid {
  position: absolute;
  bottom: 20px;
}
.sermon-block .gold-button-solid a.fl-button,
.sermon-block .gold-button-solid a.fl-button:visited {
  color: #ffffff;
  background-color: transparent;
  border-radius: 0 !important;
  border: 3px solid #d3ab3b;
  color: #d3ab3b;
  opacity: 1;
  text-align: left;
  padding: 10px 15px;
  text-transform: uppercase;
  font-family: "franklin-gothic-condensed", sans-serif;
  font-size: 20px;
  width: 100%;
  font-weight: 600;
  letter-spacing: normal;
}
.sermon-block .gold-button-solid a.fl-button:hover,
.sermon-block .gold-button-solid a.fl-button:visited:hover {
  color: #ffffff;
  background-color: #d3ab3b;
}
.sermon-block .sermon-block-inner {
  background-color: #ffffff;
  padding: 20px;
  height: 100%;
  position: relative;
  padding-bottom: 90px;
}
.sermon-block .sermon-block-inner h4 a {
  color: #555555;
  text-decoration: none;
}
.sermon-block .sermon-block-inner .post-meta span {
  color: #888888;
  display: inline-block;
  margin: 0 10px 10px 0;
}
.sermon-block .sermon-block-inner .post-meta span a {
  text-decoration: none;
  color: #666666;
}
.sermon-block .sermon-block-inner .button,
.sermon-block .sermon-block-inner .gold-button-solid {
  width: 200px;
  max-width: 80%;
}
.sermon-block .sermon-block-inner .button .fl-button,
.sermon-block .sermon-block-inner .button a.fl-button,
.sermon-block .sermon-block-inner .button a.fl-button:visited,
.sermon-block .sermon-block-inner .gold-button-solid .fl-button,
.sermon-block .sermon-block-inner .gold-button-solid a.fl-button,
.sermon-block .sermon-block-inner .gold-button-solid a.fl-button:visited {
  width: 100%;
  margin: auto;
  text-align: center;
  min-width: 1px;
}

.select2-search.select2-search--dropdown {
  padding-left: 10px;
  padding-right: 10px;
}

.select2-search--dropdown .select2-search__field {
  border: 0;
  padding: 10px 4px;
  width: 100%;
  box-sizing: border-box;
  font-size: 17px;
  -webkit-appearance: none;
  outline: none;
  border-bottom: 2px solid #d3ab3b;
}

.select2-results {
  display: block;
  max-height: 250px;
  overflow: scroll;
  padding: 10px;
}

.select2-results__option--highlighted {
  background-color: #f5f5f5;
}

.styled-select-wrapper {
  color: #333333;
  padding: 10px 0;
  /**
  * Multiple Select2
  */
}
.styled-select-wrapper .styled-select {
  width: 100%;
}
.styled-select-wrapper p,
.styled-select-wrapper span {
  color: #333333 !important;
}
.styled-select-wrapper :focus {
  outline: none;
}
.styled-select-wrapper :disabled {
  background-color: transparent;
}
.styled-select-wrapper .select2-container--material {
  width: 100% !important;
  /**
  * Textbox
  */
  /**
  * Dropdown
  */
  /**
  * Options
  */
  /**
  * Focused textbox
  */
  /**
  * Disabled textbox
  */
}
.styled-select-wrapper .select2-container--material ::placeholder {
  color: inherit;
}
.styled-select-wrapper .select2-container--material .select2-selection {
  /* @extend input */
  overflow: visible;
  font: inherit;
  touch-action: manipulation;
  margin: 0;
  line-height: inherit;
  border-radius: 0;
  box-sizing: inherit;
  /* @extend .form-control */
  display: block;
  width: 100%;
  color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0 0.6rem;
  font-size: 1rem;
  line-height: 1.5;
  background-color: transparent;
  background-image: none;
  border-radius: 0;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
  /* @extend input[type=text] */
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  outline: 0;
  width: 100%;
  font-size: 1rem;
  box-shadow: none;
  transition: all 0.3s;
  min-height: 2.1rem;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 10px 20px 20px !important;
  height: 49px !important;
  margin: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.styled-select-wrapper .select2-container--material .select2-selection:hover, .styled-select-wrapper .select2-container--material .select2-selection:focus {
  background-color: rgba(0, 0, 0, 0.15);
}
.styled-select-wrapper .select2-container--material .select2-selection .select2-selection__rendered {
  padding-left: 0;
}
.styled-select-wrapper .select2-container--material .select2-selection--single .select2-selection__rendered {
  float: left;
  color: #ffffff !important;
  font-size: 20px;
}
.styled-select-wrapper .select2-container--material .select2-selection--single .select2-selection__arrow {
  float: right;
  color: #ffffff !important;
  margin-top: 3px;
}
.styled-select-wrapper .select2-container--material .select2-selection--multiple {
  /**
  * Multiple selected options
  */
  /**
  * Multiple selected option clear button
  */
}
.styled-select-wrapper .select2-container--material .select2-selection--multiple .select2-selection__rendered {
  width: 100%;
}
.styled-select-wrapper .select2-container--material .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}
.styled-select-wrapper .select2-container--material .select2-selection--multiple .select2-selection__choice {
  /* @extend .mdl-chip */
  height: 32px;
  line-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 16px;
  background-color: #dedede;
  display: inline-block;
  color: rgba(0, 0, 0, 0.87);
  margin: 2px 0;
  font-size: 0;
  white-space: nowrap;
  /* @extend .mdl-chip__text */
  font-size: 13px;
  vertical-align: middle;
  display: inline-block;
  float: left;
  margin-right: 8px;
  margin-bottom: 4px;
}
.styled-select-wrapper .select2-container--material .select2-selection--multiple .select2-selection__choice__remove {
  /* Hide default content */
  font-size: 0;
  opacity: 0.38;
  cursor: pointer;
  float: right;
  margin-top: 4px;
  margin-right: -6px;
  margin-left: 6px;
  transition: opacity;
}
.styled-select-wrapper .select2-container--material .select2-selection--multiple .select2-selection__choice__remove:hover {
  opacity: 0.54;
}
.styled-select-wrapper .select2-container--material .select2-search--inline .select2-search__field {
  width: 100%;
  margin-top: 0;
  /* Match input[type=text] */
  height: 34px;
  line-height: 1;
}
.styled-select-wrapper .select2-container--material .select2-dropdown {
  border: 0;
}
.styled-select-wrapper .select2-container--material .select2-dropdown .select2-search__field {
  min-height: 2.1rem;
  margin-bottom: 16px;
  border: 0;
  border-bottom: 1px solid #ccc;
  transition: all 0.3s;
}
.styled-select-wrapper .select2-container--material .select2-results__options {
  /* @extend .zf-shadow-depth* */
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  /* @extend .dropdown-content */
  background-color: #fff;
  margin: 0;
  min-width: 100px;
  max-height: 650px;
  overflow-y: auto;
  z-index: 999;
  will-change: width, height;
  /* @extend .dropdown-content inline styles */
}
.styled-select-wrapper .select2-container--material .select2-results__option {
  /* @extend .dropdown-content li */
  cursor: pointer;
  clear: both;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.5rem;
  text-align: left;
  text-transform: none;
  /* @extend .dropdown-content li>a, .dropdown-content li>span */
  font-size: 1.2rem;
  display: block;
  padding: 1rem;
  /**
  * Disabled options
  */
  /**
  * Selected option
  */
  /**
  * Active/hovered option
  */
}
.styled-select-wrapper .select2-container--material .select2-results__option[aria-disabled=true] {
  /* @extend .select-dropdown li.disabled */
  color: rgba(0, 0, 0, 0.3);
  background-color: transparent !important;
  cursor: context-menu;
  /* @extend .disabled */
  cursor: not-allowed;
}
.styled-select-wrapper .select2-container--material .select2-results__option[aria-selected=true] {
  /* @extend .dropdown-content li:active, .dropdow-content li:hover */
  background-color: #eee;
}
.styled-select-wrapper .select2-container--material .select2-results__option--highlighted[aria-selected] {
  background-color: #ddd;
}
.styled-select-wrapper .select2-container--material.select2-container--disabled .select2-selection {
  /* @extend .select-wrapper input.select-dropdown:disabled */
  color: rgba(0, 0, 0, 0.3);
  cursor: default;
  user-select: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.styled-select-wrapper .select2-container--material.select2-container--disabled.select2-container--focus .select2-selection {
  box-shadow: none;
}

.sermon-no-results {
  text-align: center;
}
.sermon-no-results p {
  font-size: 20px;
}
.sermon-no-results p a {
  color: #008080;
  font-weight: bold;
}

form input[type=submit].es-button {
  background-color: #d3ab3b;
  border-radius: 0 !important;
  border: 3px solid #d3ab3b;
  color: #ffffff;
  opacity: 1;
  text-align: left;
  padding: 10px 15px;
  text-transform: uppercase;
  font-family: "franklin-gothic-condensed", sans-serif;
  font-size: 20px;
  width: 100%;
  font-weight: 600;
  letter-spacing: normal;
  margin-top: 27px;
}

.filter-row-button-wrapper {
  padding: 0 10px;
}

#pagination {
  float: right;
}
#pagination ul {
  list-style-type: none;
}
#pagination ul li {
  float: left;
}
#pagination ul li a,
#pagination ul li span {
  color: black;
  padding: 4px 8px;
  text-decoration: none;
  border: 2px solid transparent;
}
#pagination ul li a {
  opacity: 0.5 !important;
}
#pagination ul li a:hover {
  border: 2px solid #d3ab3b;
  opacity: 1 !important;
}
#pagination ul li span.page-numbers.current {
  background-color: #d3ab3b;
  color: #ffffff;
  border: 2px solid #d3ab3b;
  margin: 0 2px;
}

.filter-row .row .select-box {
  padding: 0 10px;
}
.filter-row form > .row {
  margin-right: -10px;
  margin-left: -10px;
}

.single-sermon {
  padding-top: 50px;
  padding-bottom: 30px;
}
.single-sermon .post-meta {
  background-color: #f1f1f1;
  margin-bottom: 20px;
}
.single-sermon .post-meta span {
  display: inline-block;
  margin-right: 0px;
  padding: 20px;
  border-right: 1px solid #e5e5e5;
}
.single-sermon .post-meta span i {
  margin-right: 5px;
}
.single-sermon .post-meta span a {
  text-decoration: none;
  color: #666666;
}
.single-sermon #fg-save-buttons {
  text-align: right;
}
.single-sermon .media-block {
  margin-bottom: 20px;
}
.single-sermon .download-button {
  background-color: #d3ab3b;
  border-radius: 0;
  color: #ffffff;
  opacity: 1;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
  text-transform: uppercase;
  font-family: "franklin-gothic-condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: normal;
  text-decoration: none;
  line-height: 40px;
  height: 40px;
  display: block;
  text-align: center;
}
.single-sermon .download-button:hover {
  opacity: 0.8;
}
.single-sermon .sermon-content {
  padding: 20px 0;
}

.sermon-filter-column-wrap form input[type=submit].es-button {
  background-color: rgb(68, 72, 80);
  border-radius: 10px !important;
  border: none;
  color: #ffffff;
  opacity: 1;
  text-align: center;
  padding: 10px 15px;
  text-transform: none;
  font-family: "Gordita", sans-serif;
  font-size: 25px;
  width: 100%;
  font-weight: normal;
  letter-spacing: normal;
  margin-top: 27px;
}
.sermon-filter-column-wrap .fa {
  color: white;
  font-size: 18px;
}
.sermon-filter-column-wrap label {
  font-size: 20px;
}
.sermon-filter-column-wrap select {
  height: 30px;
}

@media screen and (max-width: 768px) {
  .fl-builder-layer.fl-builder-shape-layer svg {
    display: none;
  }
}
.churchdesc {
  display: none;
  border: none;
  /* border-color: black;
  border-width: 1px; */
  height: 100%;
  max-height: 300px;
  width: 90%;
  text-align: center;
  background-color: white;
  overflow-y: scroll;
  margin-left: auto;
  margin-right: auto;
  font-family: museo-sans, "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  /* left: 50%;
  transform: translateX(-50%); */
  font-size: 25px;
  font-weight: lighter;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.our-history-button {
  background-color: white;
  height: 50px;
  width: 200px;
  text-align: center;
  font-size: 25px;
  color: rgb(52, 56, 119);
  font-family: "Gill Sans", sans-serif;
  border-style: solid;
  border-width: 2px;
  border-color: rgb(52, 56, 119);
  margin-left: 20px;
  margin-right: 20px;
}

#our_history_container {
  background-color: transparent;
  display: block;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
#our_history_container h1 {
  text-align: center;
  font-family: museo-sans, "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  margin-bottom: 30px;
  font-size: 35px;
  color: rgb(84, 78, 78);
  font-style: normal;
  font-weight: 600;
}

.find-us-text {
  font-family: "Gordita";
}

@media (min-width: 768px) {
  .find-us-row .fl-row-content-wrap {
    background: none;
  }
}
@media (max-width: 768px) {
  .find-us-row .fl-row-content-wrap {
    min-height: 0px !important;
    height: 200px;
  }
}
.find-us-row .fl-rich-text a,
.find-us-row .fl-rich-text a:hover,
.find-us-row .fl-rich-text a:visited,
.find-us-row .fl-rich-text a:active,
.find-us-row p a,
.find-us-row p a:hover,
.find-us-row p a:visited,
.find-us-row p a:active {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 768px) {
  .find-us-row .fl-rich-text a,
  .find-us-row .fl-rich-text a:hover,
  .find-us-row .fl-rich-text a:visited,
  .find-us-row .fl-rich-text a:active,
  .find-us-row p a,
  .find-us-row p a:hover,
  .find-us-row p a:visited,
  .find-us-row p a:active {
    color: white !important;
  }
}
@media (max-width: 768px) {
  .find-us-row .fl-rich-text,
  .find-us-row p {
    font-size: 38px !important;
    color: white !important;
  }
}

.footer-row .fl-heading-text {
  margin-top: -45.5px;
  text-align: center;
  font-family: Gordita;
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.5px;
}
.footer-row .footer-row-text {
  margin-top: -5.5px;
  text-align: center;
  font-family: Kollektif;
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.5px;
}

.full-height-slider {
  height: calc(100vh - 200px);
}
.full-height-slider .fl-module-content,
.full-height-slider .fl-content-slider,
.full-height-slider .bx-wrapper,
.full-height-slider .bx-viewport,
.full-height-slider .fl-content-slider-wrapper,
.full-height-slider .fl-slide {
  height: 100%;
}
.full-height-slider .fl-slide-title {
  bottom: 75px;
  position: absolute;
  text-align: left;
  font-family: League Spartan;
  font-style: normal;
  font-weight: 550;
  font-size: 65px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.5px;
  width: 650px;
}
@media (max-width: 768px) {
  .full-height-slider .fl-slide-title {
    font-size: 48px;
  }
}
@media (max-width: 970px) {
  .full-height-slider .fl-slide-content {
    margin-left: 0px !important;
    padding: 0px !important;
  }
}
.full-height-slider .fl-slide-text {
  position: absolute;
  bottom: -55px;
  font-family: League Spartan;
}
.full-height-slider .fl-slide-bg-photo {
  filter: brightness(0.5);
}

.events-calendar-upcoming-row {
  font-family: "Gordita";
  word-break: break-word;
}
.events-calendar-upcoming-row h3 {
  color: rgb(68, 72, 80);
  font-family: "Gordita";
}
.events-calendar-upcoming-row .fl-rich-text {
  font-family: "Gordita";
}

.simcal-align-right {
  display: none;
}

.simcal-calendar-head {
  text-transform: uppercase;
}
.simcal-calendar-head .simcal-current-month,
.simcal-calendar-head .simcal-current-year {
  font-family: "Gordita";
  font-size: 30px;
}
.simcal-calendar-head .simcal-week-day {
  font-size: 20px;
  font-family: "Kollektif";
}

.simcal-future .simcal-day-label {
  background-color: rgb(0, 88, 174) !important;
}

.please-get-in-touch-row {
  font-family: "Kollektif";
  font-size: 25px;
}

@media (max-width: 990px) {
  .get-in-touch-form-column,
  .fl-col-small {
    width: 100% !important;
    max-width: 650px !important;
    margin: auto;
  }
  .get-in-touch-form-column .fl-col-content,
  .fl-col-small .fl-col-content {
    max-width: 650px !important;
    margin: auto !important;
  }
}
.get-in-touch-form {
  background-color: rgb(84, 131, 205);
  border-radius: 20px;
  margin: 2px;
}
.get-in-touch-form h2 {
  color: white;
  text-transform: none;
  text-align: left;
}
.get-in-touch-form .fl-module-content.fl-node-content {
  max-width: 70%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .get-in-touch-form .fl-module-content.fl-node-content {
    max-width: 85%;
  }
}
.get-in-touch-form input[type=text],
.get-in-touch-form input[type=email],
.get-in-touch-form input[type=tel],
.get-in-touch-form textarea {
  padding: 10px;
  font-size: 20px;
  border: none;
  border-radius: 20px;
  height: 56px;
  padding-left: 42px;
  filter: none !important;
  font-family: "League Spartan" !important;
  color: rgb(54, 54, 54) !important;
  font-size: 1.5rem !important;
}
.get-in-touch-form ::placeholder {
  filter: none !important;
  font-family: "League Spartan" !important;
  color: rgba(84, 131, 205, 0.6) !important;
  font-size: 1.5rem !important;
  padding-left: 42px;
}
.get-in-touch-form input:focus::placeholder {
  color: transparent !important;
}
.get-in-touch-form #gform_1 .ginput_container_text,
.get-in-touch-form .ginput_container_email {
  filter: none !important;
  margin-bottom: 0px !important;
}
.get-in-touch-form #gform_submit_button_2,
.get-in-touch-form #gform_submit_button_3,
.get-in-touch-form #gform_submit_button_4 {
  border-radius: 20px;
  background-color: rgb(68, 72, 80);
  width: 200px;
  height: 55px;
  color: white;
  text-align: center;
  font-family: "League Spartan";
  font-size: 25px;
  border: none;
}
@media (max-width: 700px) {
  .get-in-touch-form #gform_submit_button_2,
  .get-in-touch-form #gform_submit_button_3,
  .get-in-touch-form #gform_submit_button_4 {
    margin: auto;
  }
}

#gform_submit_button_6 {
  border-radius: 20px;
  background-color: rgb(68, 72, 80);
  width: 200px;
  height: 55px;
  color: white;
  text-align: center;
  font-family: "League Spartan";
  font-size: 25px;
  border: none;
}
@media (max-width: 700px) {
  #gform_submit_button_6 {
    margin: auto;
  }
}

.gform_confirmation_message_1,
.gform_confirmation_message_6 {
  color: white;
  text-align: center;
  font-size: 20px;
}

.come-find-us-text {
  font-family: "Gordita" !important;
}
@media (max-width: 473px) {
  .come-find-us-text .fl-rich-text,
  .come-find-us-text p {
    font-size: 2vh !important;
    line-height: 1 !important;
  }
}

.come-find-us-heading .fl-heading-text {
  font-family: "Gordita";
  font-weight: bold;
  font-size: 30px;
}

/* Extra small devices (phones, less than 768px) */
@media (max-width: 767px) {
  .hidden-sm {
    display: none !important;
  }
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md {
    display: none !important;
  }
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg {
    display: none !important;
  }
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hidden-xl {
    display: none !important;
  }
}
.church-life-container-left {
  width: 440px;
  height: auto;
}
.church-life-container-left .church-life-box-1,
.church-life-container-left .church-life-box-2,
.church-life-container-left .church-life-box-3 {
  background-color: #f8f8f8;
  height: 140px;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 440px;
  border-radius: 15px;
  box-shadow: 0px 0px 0px 8px rgba(0, 0, 0, 0), 8px 8px 14px rgba(0, 0, 0, 0.18);
}
.church-life-container-left .church-life-box-1 .image-container,
.church-life-container-left .church-life-box-2 .image-container,
.church-life-container-left .church-life-box-3 .image-container {
  height: 140px;
  width: 220px;
  border-radius: 15px;
  float: left;
}
.church-life-container-left .church-life-box-1 .image-container img,
.church-life-container-left .church-life-box-2 .image-container img,
.church-life-container-left .church-life-box-3 .image-container img {
  height: inherit;
  width: inherit;
  border-radius: inherit;
  object-fit: cover;
}
.church-life-container-left .church-life-box-1 .heading-container,
.church-life-container-left .church-life-box-2 .heading-container,
.church-life-container-left .church-life-box-3 .heading-container {
  background-color: transparent;
  height: inherit;
  width: 220px;
  border-radius: 15px;
  float: left;
}
.church-life-container-left .church-life-box-1 .heading-container h3,
.church-life-container-left .church-life-box-2 .heading-container h3,
.church-life-container-left .church-life-box-3 .heading-container h3 {
  font-family: "Gordita";
  text-align: center;
  font-family: "Gordita";
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  color: rgb(235, 169, 0);
  letter-spacing: 0.5px;
  text-transform: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.church-life-container-left .church-life-box-1 .heading-container a,
.church-life-container-left .church-life-box-1 .heading-container a:visited,
.church-life-container-left .church-life-box-1 .heading-container a:hover,
.church-life-container-left .church-life-box-1 .heading-container a:active,
.church-life-container-left .church-life-box-2 .heading-container a,
.church-life-container-left .church-life-box-2 .heading-container a:visited,
.church-life-container-left .church-life-box-2 .heading-container a:hover,
.church-life-container-left .church-life-box-2 .heading-container a:active,
.church-life-container-left .church-life-box-3 .heading-container a,
.church-life-container-left .church-life-box-3 .heading-container a:visited,
.church-life-container-left .church-life-box-3 .heading-container a:hover,
.church-life-container-left .church-life-box-3 .heading-container a:active {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 960px) {
  .church-life-container-left {
    width: 360px;
    height: auto;
  }
  .church-life-container-left .church-life-box-1,
  .church-life-container-left .church-life-box-2,
  .church-life-container-left .church-life-box-3 {
    background-color: #f8f8f8;
    height: 136px;
    margin-top: 15px;
    margin-bottom: 0px;
    width: 360px;
    border-radius: 15px;
    box-shadow: none;
    position: relative;
  }
  .church-life-container-left .church-life-box-1 .image-container,
  .church-life-container-left .church-life-box-2 .image-container,
  .church-life-container-left .church-life-box-3 .image-container {
    height: 136px;
    width: 360px;
    border-radius: 15px;
  }
  .church-life-container-left .church-life-box-1 .image-container img,
  .church-life-container-left .church-life-box-2 .image-container img,
  .church-life-container-left .church-life-box-3 .image-container img {
    height: inherit;
    width: inherit;
    border-radius: inherit;
    object-fit: cover;
    filter: brightness(50%);
  }
  .church-life-container-left .church-life-box-1 .heading-container,
  .church-life-container-left .church-life-box-2 .heading-container,
  .church-life-container-left .church-life-box-3 .heading-container {
    background-color: transparent;
    height: inherit;
    width: inherit;
    border-radius: 15px;
    float: left;
    position: absolute;
  }
  .church-life-container-left .church-life-box-1 .heading-container h3,
  .church-life-container-left .church-life-box-2 .heading-container h3,
  .church-life-container-left .church-life-box-3 .heading-container h3 {
    font-family: "Gordita";
    text-align: center;
    font-family: "Gordita";
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    color: white;
    letter-spacing: 0.5px;
    text-transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .church-life-container-left .church-life-box-1 .heading-container a,
  .church-life-container-left .church-life-box-1 .heading-container a:visited,
  .church-life-container-left .church-life-box-1 .heading-container a:hover,
  .church-life-container-left .church-life-box-1 .heading-container a:active,
  .church-life-container-left .church-life-box-2 .heading-container a,
  .church-life-container-left .church-life-box-2 .heading-container a:visited,
  .church-life-container-left .church-life-box-2 .heading-container a:hover,
  .church-life-container-left .church-life-box-2 .heading-container a:active,
  .church-life-container-left .church-life-box-3 .heading-container a,
  .church-life-container-left .church-life-box-3 .heading-container a:visited,
  .church-life-container-left .church-life-box-3 .heading-container a:hover,
  .church-life-container-left .church-life-box-3 .heading-container a:active {
    text-decoration: none;
    color: inherit;
  }
  .fl-module-church-life-left-column .fl-module-content {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 400px) {
  .church-life-container-left .church-life-box-1,
  .church-life-container-left .church-life-box-2,
  .church-life-container-left .church-life-box-3 {
    width: 100%;
  }
  .church-life-container-left .church-life-box-1 .image-container,
  .church-life-container-left .church-life-box-2 .image-container,
  .church-life-container-left .church-life-box-3 .image-container {
    width: inherit;
  }
}
.church-life-container-right {
  width: 440px;
  height: auto;
}
.church-life-container-right .church-life-box {
  background-color: #f8f8f8;
  height: 480px;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 430px;
  border-radius: 15px;
  box-shadow: 0px 0px 0px 8px rgba(0, 0, 0, 0), 8px 8px 14px rgba(0, 0, 0, 0.18);
  position: relative;
}
.church-life-container-right .church-life-box .image-container {
  height: 480px;
  width: 430px;
  border-radius: 15px;
  float: left;
}
.church-life-container-right .church-life-box .image-container img {
  height: inherit;
  width: inherit;
  border-radius: inherit;
  object-fit: cover;
}
.church-life-container-right .church-life-box .heading-container {
  background-color: rgba(0, 0, 0, 0.071);
  height: 80px;
  width: 430px;
  border-radius: 15px;
  float: left;
  position: absolute;
  bottom: 0px;
}
.church-life-container-right .church-life-box .heading-container h3 {
  font-family: "Gordita";
  text-align: center;
  font-family: "Gordita";
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  color: rgb(235, 169, 0);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.church-life-container-right .church-life-box .heading-container a,
.church-life-container-right .church-life-box .heading-container a:visited,
.church-life-container-right .church-life-box .heading-container a:hover,
.church-life-container-right .church-life-box .heading-container a:active {
  text-decoration: none;
  color: inherit;
}
.church-life-container-right .church-life-box-overlay {
  position: absolute;
  border-radius: 15px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: transparent;
  box-shadow: 1px 1px 150px rgba(0, 0, 0, 0.18) inset;
}

@media (max-width: 1000px) {
  .church-life-left-column-wpcontainer,
  .church-life-right-column-wpcontainer {
    width: 100%;
    max-width: none !important;
  }
  .church-life-container-left,
  .church-life-container-right {
    margin: auto;
    width: 360px;
  }
}
@media (max-width: 400px) {
  .church-life-container-left,
  .church-life-container-right {
    width: auto;
  }
}
@media (max-width: 960px) {
  .church-life-container-right {
    width: 360px;
    height: auto;
  }
  .church-life-container-right .church-life-box {
    background-color: #f8f8f8;
    height: 136px;
    margin-top: 15px;
    margin-bottom: 15px;
    width: inherit;
    border-radius: 15px;
    box-shadow: none;
    position: relative;
  }
  .church-life-container-right .church-life-box .image-container {
    height: 136px;
    width: 360px;
    border-radius: 15px;
  }
  .church-life-container-right .church-life-box .image-container img {
    height: inherit;
    width: inherit;
    border-radius: inherit;
    object-fit: cover;
    filter: brightness(50%);
  }
  .church-life-container-right .church-life-box .heading-container {
    background-color: transparent;
    height: inherit;
    width: 100%;
    border-radius: 15px;
    float: left;
    position: absolute;
    text-align: center;
  }
  .church-life-container-right .church-life-box .heading-container h3 {
    text-align: center;
    font-family: "Gordita";
    text-align: center;
    font-family: "Gordita";
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    color: white;
    letter-spacing: 0.5px;
    text-transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .church-life-container-right .church-life-box .heading-container a,
  .church-life-container-right .church-life-box .heading-container a:visited,
  .church-life-container-right .church-life-box .heading-container a:hover,
  .church-life-container-right .church-life-box .heading-container a:active {
    text-decoration: none;
    color: inherit;
  }
  .fl-module-church-life-right-column .fl-module-content {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 400px) {
  .church-life-container-right {
    width: auto;
    height: auto;
  }
  .church-life-container-right .church-life-box {
    width: inherit;
  }
  .church-life-container-right .church-life-box .image-container {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .welcome-to-row .fl-bg-embed-code {
    display: none;
  }
}
@media (max-width: 768px) {
  .welcome-to-row #welcome-to h1 {
    font-size: 22px !important;
    color: rgba(0, 38, 125, 0.4392156863) !important;
  }
  .welcome-to-row #welcome-to .fl-heading-text {
    color: rgba(0, 38, 125, 0.4392156863) !important;
  }
  .welcome-to-row #st-marks-saltney h1 {
    font-size: 27px;
  }
  .welcome-to-row #st-marks-saltney .fl-module-content {
    margin-bottom: 0px !important;
  }
  .welcome-to-row p {
    text-align: center !important;
    font-size: 16px !important;
    line-height: 23px !important;
  }
}

.template-picture-row .template-picture-row-column .template-picture-row-picture img {
  height: 370px;
  object-fit: cover;
}

.template-single-picture-row .template-single-picture-row-column .template-single-picture-row-picture img {
  height: 405px;
  width: 405px;
  object-fit: cover;
}

.image-text-box {
  position: relative;
  width: 800px;
  height: 370px;
  background-color: rgb(68, 72, 80);
  box-shadow: 15px 15px 15px 0px rgba(68, 72, 80, 0.15);
  border-radius: 15px;
  text-align: center;
  margin: auto;
  color: white;
}
@media (max-width: 1000px) {
  .image-text-box {
    width: 400px;
  }
}
@media (max-width: 600px) {
  .image-text-box {
    width: 277px;
  }
}
.image-text-box .image-text-box-image {
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
}
@media (max-width: 1000px) {
  .image-text-box .image-text-box-image {
    width: 100%;
  }
}
.image-text-box img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 1000px) {
  .image-text-box img {
    filter: brightness(0.5);
  }
}
.image-text-box .image-text-box-container-right {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  padding: 40px 60px 40px 60px;
}
@media (max-width: 1000px) {
  .image-text-box .image-text-box-container-right {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .image-text-box .image-text-box-container-right {
    padding: 20px 15px 10px 15px;
  }
}
.image-text-box .image-text-box-container-right h3 {
  position: relative;
  width: 100%;
  color: white;
  text-transform: none;
  font-family: "League Spartan";
  font-size: 41px;
  font-weight: 500;
}
.image-text-box .image-text-box-container-right p {
  position: relative;
  width: 100%;
  color: white;
  font-family: "Gordita";
  font-weight: 500;
  line-height: 1.4;
  font-size: 20px;
  height: 60%;
  overflow: hidden;
}
.image-text-box .image-text-box-container-right button {
  position: relative;
  width: 225px;
  color: rgb(68, 72, 80);
  border-radius: 10px;
  border: none;
  height: 50px;
  font-family: "Gordita";
  font-size: 21px;
  font-weight: 500;
}
.image-text-box .image-text-box-container-right button a:link,
.image-text-box .image-text-box-container-right button a:visited,
.image-text-box .image-text-box-container-right button a:hover,
.image-text-box .image-text-box-container-right button a:active {
  text-transform: none;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 600px) {
  .image-text-box .image-text-box-container-right button {
    width: 175px;
    font-size: 16px;
  }
}

.service-box {
  position: relative;
  width: 400px;
  height: 245px;
  background-color: rgb(68, 72, 80);
  border-radius: 15px;
  margin-right: 15px;
  box-shadow: none;
}
@media (max-width: 850px) {
  .service-box {
    width: 280px;
  }
}
.service-box .top-service-image {
  position: absolute;
  width: 100%;
  height: 40%;
  top: 0;
  border-radius: 15px;
  background-size: cover;
}
@media (max-width: 850px) {
  .service-box .top-service-image {
    height: 35%;
  }
}
.service-box .text-wrapper {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 60%;
  padding: 20px;
}
@media (max-width: 850px) {
  .service-box .text-wrapper {
    height: 65%;
    padding: 12px;
  }
}
.service-box .text-wrapper .arrow-button {
  cursor: pointer;
}
.service-box .text-wrapper h3 {
  position: relative;
  width: 100%;
  height: 15px;
  text-align: left;
  color: orange;
  text-transform: none;
  font-weight: 300;
  font-family: "League Spartan";
}
@media (max-width: 850px) {
  .service-box .text-wrapper h3 {
    text-align: center;
    height: 2px;
  }
}
.service-box .text-wrapper h3 a:link,
.service-box .text-wrapper h3 a:visited,
.service-box .text-wrapper h3 a:hover,
.service-box .text-wrapper h3 a:active {
  text-transform: none;
  color: inherit;
  text-decoration: none;
}
.service-box .text-wrapper .event-when-wrapper {
  position: relative;
  width: 100%;
  text-align: left;
  margin-left: 10px;
  color: white;
  font-family: "Gordita";
  margin-top: 33px;
  height: 17px;
  font-weight: 500;
}
@media (max-width: 850px) {
  .service-box .text-wrapper .event-when-wrapper {
    text-align: center;
    margin-left: 0px;
    height: 40px;
  }
}
.service-box .text-wrapper .event-when-wrapper .when-text {
  position: absolute;
  left: 0;
  color: rgb(148, 149, 150);
}
@media (max-width: 850px) {
  .service-box .text-wrapper .event-when-wrapper .when-text {
    width: 100%;
    height: 20px;
    top: 0;
  }
}
.service-box .text-wrapper .event-when-wrapper .when-data {
  position: absolute;
  left: 75px;
}
@media (max-width: 850px) {
  .service-box .text-wrapper .event-when-wrapper .when-data {
    width: 100%;
    height: 20px;
    bottom: 0;
    left: 0;
  }
}
.service-box .text-wrapper .event-where-wrapper {
  position: relative;
  width: 100%;
  text-align: left;
  margin-left: 10px;
  color: white;
  font-family: "Gordita";
  font-weight: 500;
}
@media (max-width: 850px) {
  .service-box .text-wrapper .event-where-wrapper {
    text-align: center;
    height: 40px;
    margin-left: 0px;
  }
}
.service-box .text-wrapper .event-where-wrapper .where-text {
  position: absolute;
  left: 0;
  color: rgb(148, 149, 150);
}
@media (max-width: 850px) {
  .service-box .text-wrapper .event-where-wrapper .where-text {
    width: 100%;
    height: 20px;
    top: 0;
  }
}
.service-box .text-wrapper .event-where-wrapper .where-data {
  position: absolute;
  left: 75px;
}
@media (max-width: 850px) {
  .service-box .text-wrapper .event-where-wrapper .where-data {
    width: 100%;
    height: 20px;
    bottom: 0;
    left: 0;
  }
}
.service-box .text-wrapper button {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  margin-bottom: 35px;
  font-size: 52px;
  color: white;
  background-color: transparent;
  border: none;
}
@media (max-width: 850px) {
  .service-box .text-wrapper button {
    display: none;
  }
}

.services-bottom-row {
  margin-top: 30px !important;
  position: relative;
  margin: auto;
  display: block;
  width: 420px;
  height: 47px;
  color: rgba(68, 72, 80, 0.15);
  text-align: center;
  line-height: 100%;
}
@media (max-width: 500px) {
  .services-bottom-row {
    width: 280px;
    margin-top: 15px !important;
  }
}
.services-bottom-row .bottom-arrow-button-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 47px;
  font-size: 45px;
  line-height: 100%;
  background-color: transparent;
  border: none;
  color: rgb(0, 38, 125);
  z-index: 9999;
}
@media (max-width: 500px) {
  .services-bottom-row .bottom-arrow-button-left {
    display: none;
  }
}
.services-bottom-row .bottom-arrow-button-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 47px;
  font-size: 45px;
  line-height: 100%;
  background-color: transparent;
  border: none;
  color: rgb(0, 38, 125);
  z-index: 9999;
}
@media (max-width: 500px) {
  .services-bottom-row .bottom-arrow-button-right {
    display: none;
  }
}
.services-bottom-row p {
  height: 47px;
  line-height: 47px;
  position: relative;
  color: rgb(0, 38, 125);
  font-family: "Gordita";
  font-weight: 400;
}
.services-bottom-row p a:link,
.services-bottom-row p a:visited,
.services-bottom-row p a:hover,
.services-bottom-row p a:active {
  text-transform: none;
  color: inherit;
  text-decoration: none;
}
.services-bottom-row .fa-chevron-left {
  background-color: transparent;
}
.services-bottom-row .fa-chevron-right {
  background-color: transparent;
}

.blog header {
  z-index: unset;
}
.blog .blog-page-header {
  background-color: white;
  height: 320px;
}
.blog h1 {
  text-align: center;
  font-size: 80px;
  position: relative;
}
.blog body,
.blog p,
.blog h2 {
  margin: 0;
  padding: 0;
}
.blog article {
  border: 1px solid #ccc;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  width: 90%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.blog article .entry-header {
  margin-bottom: 15px;
  position: relative;
  height: 75px;
}
.blog article img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}
.blog article .entry-title a {
  color: #333;
  text-decoration: none;
}
.blog article .entry-title a:hover {
  color: #007acc;
  text-decoration: underline;
}
.blog article .entry-summary {
  margin-bottom: 15px;
}
.blog article .entry-footer {
  font-size: 0.8em;
  color: #777;
}
.blog article .entry-footer .posted-on,
.blog article .entry-footer .byline,
.blog article .entry-footer .cat-links {
  display: block;
  margin-bottom: 5px;
}

.post-page-header {
  background-color: white;
  height: 320px;
}

.post-meta {
  margin-bottom: 33px;
}

.single-post-container {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #e1e1e1;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.single-post-container h1 {
  font-size: 2.5em;
  margin-top: 0;
  color: #333;
  border-bottom: 2px solid #e1e1e1;
  padding-bottom: 20px;
}
.single-post-container .post-content {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin: 30px 0;
}
.single-post-container .post-content p {
  margin-bottom: 20px;
}
.single-post-container .post-content h2,
.single-post-container .post-content h3,
.single-post-container .post-content h4,
.single-post-container .post-content h5,
.single-post-container .post-content h6 {
  color: #444;
  margin-top: 30px;
  margin-bottom: 15px;
}
.single-post-container .post-content a {
  color: #007acc;
  text-decoration: none;
}
.single-post-container .post-content a:hover {
  text-decoration: underline;
}
.single-post-container .post-metadata {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #e1e1e1;
  padding-top: 20px;
}
.single-post-container .post-metadata span {
  color: #777;
  font-size: 0.9em;
}
.single-post-container .post-metadata span a {
  color: #666;
}

.ctc_sermon-template-default .bx-viewport {
  background: rgb(235, 169, 0) !important;
}
@media screen and (max-width: 768px) {
  .ctc_sermon-template-default .bx-viewport {
    height: 450px !important;
  }
}
.ctc_sermon-template-default .bx-viewport .fl-slide-foreground {
  width: 100% !important;
  left: unset !important;
  bottom: 0px !important;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
  .ctc_sermon-template-default .bx-viewport .fl-slide-foreground h1 {
    font-size: 52px !important;
  }
}
@media screen and (min-width: 0px) and (max-width: 599px) {
  .ctc_sermon-template-default .bx-viewport .fl-slide-foreground h1 {
    font-size: 39px !important;
  }
}

/*# sourceMappingURL=screen.css.map */
