@font-face {
  font-family: "GillSansNovaInlineLight";
  src: url("../fonts/GillSansNovaInlineLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/********** Fonts ***********/
/********** Colors ***********/
/********** Transitions ***********/
/********** Mixins ***********/
/********** Media Querys ***********/
/********** Extending Classes ***********/
.clearfix:after, section:after, .row:after, .container:after {
  content: "";
  display: table;
  clear: both;
}

* {
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .mobile_only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .desktop_only {
    display: none !important;
  }
}

.alignwide {
  margin-left: -80px;
  margin-right: -80px;
}
@media (max-width: 1460px) {
  .alignwide:not(.wp-block-image) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  width: auto;
}

.alignfull img {
  width: 100vw;
}

@media (max-width: 767px) {
  .alignwide,
  .alignfull {
    width: calc(100% + 30px);
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.container {
  position: relative;
  display: block;
  padding: 0px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.container .container_small {
  max-width: 1130px;
  margin: 0 auto;
}
.container .container_slim {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .container {
    padding: 0 15px;
  }
}

.row {
  margin: 0 -15px;
}
.row [class*=col-] {
  padding: 0 15px;
  float: left;
  box-sizing: border-box;
  min-height: 1px;
  width: 100%;
}
.row [class*=col-].col-right {
  float: right;
}
.row .col-1 {
  width: 8.33333%;
}
.row .col-2 {
  width: 16.66667%;
}
.row .col-3 {
  width: 25%;
}
.row .col-4 {
  width: 33.33333%;
}
.row .col-5 {
  width: 41.66667%;
}
.row .col-6 {
  width: 50%;
}
.row .col-7 {
  width: 58.33333%;
}
.row .col-8 {
  width: 66.66667%;
}
.row .col-9 {
  width: 75%;
}
.row .col-10 {
  width: 83.33333%;
}
.row .col-11 {
  width: 91.66667%;
}
.row .col-12 {
  width: 100%;
}
@media (max-width: 767px) {
  .row [class*=col-] {
    width: 100%;
  }
}
.row.row_centered {
  text-align: center;
}
.row.row_centered [class*=col-] {
  float: none;
  display: inline-block;
  text-align: left;
  margin: 0 -2px;
  vertical-align: top;
}

section {
  margin: 60px 0;
}
@media (max-width: 767px) {
  section {
    margin: 40px 0;
  }
}

.f-right,
.right {
  float: right;
}

.f-left,
.left {
  float: left;
}

.center_all {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/******** RESET *********/
:focus {
  outline: 0;
}

a {
  cursor: pointer;
}

img {
  border: none;
  max-width: 100%;
  width: auto;
  height: auto;
}

/******** RESET *********/
.parallax_wrapper {
  position: relative;
  display: block;
  overflow: hidden;
}
.parallax_wrapper .parallax_content {
  position: relative;
  width: 100%;
  margin-bottom: -3%;
}
.parallax_wrapper .parallax_content img {
  width: 100%;
  display: block;
}

input[type=text],
input[type=password],
input[type=number],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  font-family: var(--font-default);
  font-weight: 300;
  font-style: normal;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  padding: 5px 0px 5px 0px;
  font-size: 16px;
  line-height: 34px;
  border-radius: 0px;
  border: 0px;
  border-bottom: 2px var(--primary) solid;
  margin-bottom: 20px;
  margin-top: 0px;
  background: rgba(255, 255, 255, 0);
  color: #383739;
}

textarea {
  height: 192px;
}

input[type=submit],
.searchform input[type=submit],
a.button,
a.ghostkit-button,
span.ghostkit-button,
div.ghostkit-button,
.wp-block-button a {
  -webkit-appearance: none;
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  background: var(--secondary);
  font-family: var(--font-headings);
  font-weight: normal;
  font-style: normal;
  font-size: 28px;
  padding: 8px 22px;
  border: 0px;
  cursor: pointer;
  border-radius: 0px;
  transition: 0.2s ease-in;
}
input[type=submit].button_light,
.searchform input[type=submit].button_light,
a.button.button_light,
a.ghostkit-button.button_light,
span.ghostkit-button.button_light,
div.ghostkit-button.button_light,
.wp-block-button a.button_light {
  background-color: var(--primary);
}
input[type=submit]:hover,
.searchform input[type=submit]:hover,
a.button:hover,
a.ghostkit-button:hover,
span.ghostkit-button:hover,
div.ghostkit-button:hover,
.wp-block-button a:hover {
  opacity: 0.9;
}
@media (max-width: 767px) {
  input[type=submit],
  .searchform input[type=submit],
  a.button,
  a.ghostkit-button,
  span.ghostkit-button,
  div.ghostkit-button,
  .wp-block-button a {
    font-size: 22px;
    line-height: 30px;
    padding: 10px;
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--primary) url("../img/elements/dropdown.png") right center no-repeat;
  background-size: 50px;
  padding: 10px 70px 10px 16px;
  margin: 12px 0;
  height: 50px;
  line-height: 30px;
  font-family: var(--font-default);
  font-weight: 200;
  font-style: normal;
  color: white;
  font-size: 16px;
  border-radius: 0;
  border: 0;
}
@media (max-width: 767px) {
  select {
    height: 40px;
    line-height: 20px;
    padding: 10px 50px 10px 10px;
    font-size: 13px;
    width: 280px;
    margin-bottom: 0;
  }
}

select + .button {
  margin-left: -6px;
}
@media (max-width: 767px) {
  select + .button {
    width: 280px;
    margin-left: 0;
  }
}

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

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  float: left;
  position: relative;
  width: 24px;
  height: 24px;
  background: none;
  border: 2px var(--primary) solid;
  margin: 0px 10px 6px -16px;
}
input[type=checkbox]:checked:before {
  content: "\f00c";
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  top: 0;
  left: 0;
  font-size: 16px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 200;
  text-transform: none;
  letter-spacing: 0em;
}

ul.slick-dots {
  padding: 0 !important;
  bottom: 30px !important;
}
ul.slick-dots li {
  margin: 0 6px !important;
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
ul.slick-dots li button {
  margin: 0 auto;
  display: block;
  width: 5px !important;
  height: 5px !important;
  background: #d3d3d2;
  border: 2px #d3d3d2 solid;
}
ul.slick-dots li button:before {
  display: none;
}
ul.slick-dots li.slick-active button {
  border-color: #d3d3c3;
  background: var(--primary) !important;
}
ul.slick-dots li:before {
  display: none !important;
}
@media (max-width: 767px) {
  ul.slick-dots {
    bottom: 10px !important;
  }
  ul.slick-dots li {
    margin: 0 3px !important;
  }
  ul.slick-dots li button {
    width: 3px !important;
    height: 3px !important;
    padding: 3px !important;
  }
}

.mobile_only {
  display: none;
}
@media (max-width: 767px) {
  .mobile_only {
    display: block;
  }
}

.desktop_only {
  display: none;
}
@media (min-width: 768px) {
  .desktop_only {
    display: block;
  }
}

body {
  font-family: var(--font-default);
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #383739;
}

a {
  color: var(--primary);
}

strong, b {
  font-weight: 600;
}

p {
  margin-bottom: 1em;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-headings);
  font-weight: normal;
  font-style: normal;
  line-height: 1.4em;
  color: var(--primary);
}

h1, .h1,
h2, .h2 {
  text-align: center !important;
}
h1:after, .h1:after,
h2:after, .h2:after {
  content: "";
  width: 100px;
  height: 1px;
  border-bottom: 2px var(--primary) solid;
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -50px;
}

h1, .h1 {
  position: relative;
  font-size: 3em;
  margin-bottom: 100px;
}
h1:after, .h1:after {
  bottom: -18px;
}
@media (max-width: 1023px) {
  h1, .h1 {
    font-size: 2.2em;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 1.8em;
    margin-bottom: 2em;
  }
}
@media (max-width: 380px) {
  h1, .h1 {
    font-size: 1.6em;
  }
}

h2, .h2 {
  position: relative;
  font-size: 3em;
  text-align: center !important;
  margin-bottom: 90px;
}
@media (max-width: 1280px) {
  h2, .h2 {
    font-size: 2em;
    margin-bottom: 70px;
  }
}
@media (max-width: 1280px) {
  h2, .h2 {
    font-size: 1.4em;
    margin-bottom: 70px;
  }
}

h3, .h3 {
  position: relative;
  font-size: 2em;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1280px) {
  h3, .h3 {
    font-size: 1.6em;
  }
}

h4, .h4 {
  text-align: center;
  font-size: 1.2em;
  border-top: #b2b2b2 3px solid;
  padding-top: 14px;
  margin-bottom: 24px;
}

h5, .h5 {
  font-size: 1em;
}

h6, .h6 {
  font-size: 1em;
  color: var(--primary);
}

table {
  border: 0;
  width: 100%;
  border-collapse: collapse;
}
table tr td, table tr th {
  padding: 20px;
  text-align: left;
}
table tr th {
  background: var(--primary);
  color: white;
  font-family: var(--font-default);
  font-weight: 500;
  font-style: normal;
}
table tr td {
  border-bottom: #d3d9dc 1px solid;
}
table tr:nth-child(2n-1) td {
  background: rgba(255, 255, 255, 0.1);
}

.light {
  font-weight: 300;
}

div.page ul,
div.page ol {
  padding-left: 20px;
}

div.page ol.gradient_list {
  background-color: var(--secondary);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
  background-repeat: repeat-x;
  font-family: var(--font-default);
  font-weight: 900;
  font-style: normal;
  padding: 50px 20px 50px 70px;
  color: #fff;
}
div.page ol.gradient_list li {
  margin: 5px 0;
}
@media (max-width: 767px) {
  div.page ol.gradient_list {
    padding: 40px 15px 40px 50px;
    font-size: 1em;
  }
}

* {
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
}

a[name] {
  position: absolute;
  margin-top: -130px;
}

a.back_to_top {
  position: fixed;
  right: 50px;
  bottom: -70px;
  display: block;
  width: 50px;
  height: 50px;
  border: 3px var(--primary) solid;
  line-height: 45px;
  text-align: center;
  color: var(--primary);
  font-size: 30px;
  z-index: 2200;
  transition: 0.7s cubic-bezier(0.8, 0, 0.5, 1);
}
@media (max-width: 767px) {
  a.back_to_top {
    display: none !important;
  }
}

body.body_scrolled a.back_to_top {
  bottom: 50px;
}

.page {
  width: 100%;
}

@media (min-width: 768px) {
  header {
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0);
    z-index: 2000;
    text-align: center;
    transition: 0.7s cubic-bezier(0.8, 0, 0.5, 1);
  }
  header:before {
    position: absolute;
    content: "";
    background: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: -7px;
    pointer-events: none;
    opacity: 0;
    border-bottom: 2px white solid;
    transition: 0.7s cubic-bezier(0.8, 0, 0.5, 1);
  }
  header .mobile_logo,
  header .mobile_toggle_menu {
    display: none !important;
  }
  header ul.menu {
    position: relative;
    list-style: none;
    margin-left: 18px;
    margin-top: 70px;
    height: 80px;
    padding: 0 20px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    transition: 0.7s cubic-bezier(0.8, 0, 0.5, 1);
  }
  header ul.menu:before {
    position: absolute;
    content: "";
    background: none;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    pointer-events: none;
    opacity: 0.9;
    border: 2px white solid;
    transition: 0.7s cubic-bezier(0.8, 0, 0.5, 1);
  }
  header ul.menu li {
    position: relative;
    display: inline-block;
    vertical-align: top;
  }
  header ul.menu li a {
    display: block;
    line-height: 80px;
    color: #383739;
    font-weight: 400;
    padding: 0 14px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.7s cubic-bezier(0.8, 0, 0.5, 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  header ul.menu li a {
    font-size: 15px;
    padding: 0 10px;
  }
}
@media (min-width: 768px) {
  header ul.menu li.logo a {
    width: 200px;
    height: 200px;
    margin-top: -60px;
    text-indent: -9999px;
    background: url("../img/site/logo.png") center center no-repeat;
    background-size: 100%;
  }
  body.body_scrolled header {
    background: rgba(255, 255, 255, 0.9);
    height: 80px;
    padding-top: 10px;
  }
  body.body_scrolled header:before {
    opacity: 0.9;
  }
  body.body_scrolled header ul.menu {
    margin-top: 0;
    background: none;
  }
  body.body_scrolled header ul.menu:before {
    opacity: 0;
  }
  body.body_scrolled header ul.menu li a {
    color: #383739;
    line-height: 60px;
  }
  body.body_scrolled header ul.menu li.logo a {
    margin-top: 0;
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }
  header {
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    z-index: 2000;
  }
  header:before {
    position: absolute;
    content: "";
    background: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: -7px;
    pointer-events: none;
    opacity: 0.9;
    border-bottom: 2px white solid;
    transition: 0.7s cubic-bezier(0.8, 0, 0.5, 1);
  }
  header .mobile_toggle_menu {
    position: absolute;
    left: 20px;
    top: 15px;
    line-height: 40px;
    font-size: 28px;
    text-decoration: none;
  }
  header .mobile_logo {
    display: inline-block;
    width: 90px;
    height: 90px;
    position: relative;
    z-index: 2000;
    margin-top: 15px;
    text-indent: -9999px;
    background: url("../img/site/logo.png") center center no-repeat;
    background-size: 100%;
  }
  header nav {
    position: fixed;
    background: rgba(255, 255, 255, 0.9);
    top: 82px;
    left: -110%;
    width: 100%;
    bottom: 0;
    z-index: 1900;
    transition: 0.7s cubic-bezier(0.8, 0, 0.5, 1);
  }
  header nav ul {
    padding: 60px 0;
    list-style: none;
  }
  header nav ul li a {
    text-decoration: none;
    font-size: 20px;
    color: #383739;
  }
  header nav ul li.logo {
    display: none;
  }
  header nav.header_nav_open {
    left: 0;
  }
}
footer a {
  color: #fff;
}
footer .footer_top {
  color: #fff;
  background-color: var(--secondary);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
  background-repeat: repeat-x;
  padding: 60px 0;
  text-align: center;
}
footer .footer_top .logo {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto 50px auto;
  background: url("../img/site/logo.png") center center no-repeat;
  background-size: 100%;
}
footer .footer_top ul.social_media {
  list-style: none;
  margin-bottom: 40px;
}
footer .footer_top ul.social_media li {
  display: inline-block;
  margin: 0 10px;
}
footer .footer_top ul.social_media li a {
  color: #fff;
  font-size: 22px;
}
footer .footer_top ul.menu {
  margin-top: 40px;
  list-style: none;
}
footer .footer_top ul.menu li {
  display: inline-block;
  padding: 0 14px 0 10px;
  border-right: 1px white solid;
  line-height: 1em;
}
footer .footer_top ul.menu li:last-child {
  border-right: 0px;
}
footer .footer_last {
  background: #000;
  padding: 30px 0;
  color: #fff;
}
footer .footer_last .textwidget,
footer .footer_last p {
  display: inline-block;
}
@media (max-width: 767px) {
  footer .footer_last {
    text-align: center;
  }
}

.page_header {
  height: 60vh;
  background-position: center center;
  background-size: cover;
}

.contact_form_box {
  border: 3px var(--primary) solid;
  padding: 60px;
}
.contact_form_box .wp-block-image {
  margin-top: 0;
}
@media (max-width: 767px) {
  .contact_form_box {
    padding: 40px 15px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  .contact_form_box .wp-block-image,
  .contact_form_box p {
    text-align: center;
    font-size: 0.9em;
  }
  .contact_form_box form {
    padding-top: 30px;
  }
}

.wpcf7_acceptance {
  padding-bottom: 20px !important;
}
.wpcf7_acceptance .wpcf7-list-item {
  margin-left: 36px;
}
.wpcf7_acceptance input[type=checkbox] {
  margin-left: -36px;
}

.ghostkit-counter-box {
  padding: 0 !important;
  border: 0 !important;
}
.ghostkit-counter-box .ghostkit-counter-box-number-align-top {
  color: #383739;
  font-family: var(--font-default);
  font-weight: 900;
  font-style: normal;
  font-size: 70px;
  line-height: 72px;
}
@media (max-width: 1030px) {
  .ghostkit-counter-box .ghostkit-counter-box-number-align-top {
    font-size: 50px;
    line-height: 52px;
  }
}

.ghostkit-icon-box {
  border: 0 !important;
  background: #fff;
  border-radius: 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  padding-top: 2em;
}
.ghostkit-icon-box p {
  margin: 0;
}

.ghostkit-svg-icon path {
  fill: var(--primary);
}

.over_numberbox {
  font-family: var(--font-headings);
  font-weight: normal;
  font-style: normal;
  margin-top: -25px;
  margin-bottom: 0;
}

.wp-block-cover {
  min-height: 500px;
  height: auto !important;
}
.wp-block-cover .wp-block-cover__inner-container {
  padding: 30px 0;
}
.wp-block-cover .wp-block-cover__inner-container p {
  font-size: 18px !important;
}
.wp-block-cover .wp-block-cover__inner-container h2, .wp-block-cover .wp-block-cover__inner-container h3 {
  margin-top: 40px;
}
.wp-block-cover .wp-block-cover__inner-container h2 a, .wp-block-cover .wp-block-cover__inner-container h3 a {
  color: #fff;
  text-decoration: none;
}
.wp-block-cover.cover_hoverbox .wp-block-cover__inner-container {
  opacity: 0;
  transition: 0.2s ease-in;
}
.wp-block-cover.cover_hoverbox:before {
  opacity: 0 !important;
  transition: 0.2s ease-in;
}
.wp-block-cover.cover_hoverbox:hover .wp-block-cover__inner-container {
  opacity: 1;
}
.wp-block-cover.cover_hoverbox:hover:before {
  opacity: 0.7 !important;
}
.wp-block-cover .ghostkit-button {
  color: #fff;
}
.wp-block-cover + h3 {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .wp-block-cover {
    min-height: 300px;
  }
  .wp-block-cover .wp-block-cover__inner-container {
    padding: 20px 0;
  }
}

.wp-block-image {
  margin-top: 30px;
  margin-bottom: 30px;
}
.wp-block-image figcaption {
  font-size: 0.8em;
  text-align: center;
  margin: 0;
}

.advgb-recent-posts-block.list-view .advgb-recent-posts .advgb-recent-post {
  display: block !important;
  border-bottom: 0px !important;
  margin-bottom: 80px !important;
}

.advgb-recent-posts {
  position: relative;
}
@media (max-width: 1200px) {
  .advgb-recent-posts {
    max-width: 600px;
    margin: 0 auto;
  }
}
.advgb-recent-posts .slick-arrow {
  display: none !important;
}
.advgb-recent-posts .slick-dots {
  bottom: -50px !important;
}
.advgb-recent-posts .advgb-recent-post {
  padding: 1px 0;
  display: block;
  position: relative;
  margin-bottom: 80px;
}
.advgb-recent-posts .advgb-recent-post .advgb-post-thumbnail {
  z-index: -1;
  position: absolute;
  left: 0;
  width: calc(50% + 20px);
  height: calc(100% - 40px);
  overflow: hidden;
  padding: 0 !important;
}
.advgb-recent-posts .advgb-recent-post .advgb-post-thumbnail a {
  display: block;
  width: 100%;
}
.advgb-recent-posts .advgb-recent-post .advgb-post-thumbnail img {
  height: auto !important;
  width: 100% !important;
}
@media (max-width: 1200px) {
  .advgb-recent-posts .advgb-recent-post .advgb-post-thumbnail {
    position: relative;
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .advgb-recent-posts .advgb-recent-post .advgb-post-thumbnail {
    height: 200px;
  }
}
.advgb-recent-posts .advgb-recent-post .advgb-post-wrapper {
  position: relative;
  text-align: left;
  width: calc(50% + 20px);
  background: #000;
  color: #fff;
  padding: 80px 50px 50px 120px;
  margin: 40px 0 0 calc(50% - 20px);
}
.advgb-recent-posts .advgb-recent-post .advgb-post-wrapper .advgb-post-title {
  text-align: left !important;
  font-size: 1.2em !important;
  margin-bottom: 0 !important;
}
.advgb-recent-posts .advgb-recent-post .advgb-post-wrapper .advgb-post-title a {
  color: #fff;
  text-decoration: none;
}
.advgb-recent-posts .advgb-recent-post .advgb-post-wrapper .advgb-post-title:after {
  display: none;
}
.advgb-recent-posts .advgb-recent-post .advgb-post-wrapper .advgb-post-info {
  margin: 0;
  position: absolute;
  top: -4px;
  left: 50px;
  background: var(--primary);
  color: #000;
  padding: 9px 12px;
  font-family: var(--font-headings);
  font-weight: normal;
  font-style: normal;
}
@media (max-width: 1200px) {
  .advgb-recent-posts .advgb-recent-post .advgb-post-wrapper .advgb-post-info {
    top: -304px;
    left: 20px;
  }
}
@media (max-width: 767px) {
  .advgb-recent-posts .advgb-recent-post .advgb-post-wrapper .advgb-post-info {
    top: -204px;
  }
}
.advgb-recent-posts .advgb-recent-post .advgb-post-wrapper .advgb-post-readmore a {
  text-decoration: none;
  font-family: var(--font-headings);
  font-weight: normal;
  font-style: normal;
}
.advgb-recent-posts .advgb-recent-post .advgb-post-wrapper:before {
  position: absolute;
  content: "";
  width: 1px;
  border-right: 3px var(--primary) solid;
  height: 100%;
  top: 0px;
  left: 70px;
}
@media (max-width: 1200px) {
  .advgb-recent-posts .advgb-recent-post .advgb-post-wrapper {
    width: 100%;
    margin: 0;
    padding: 30px 20px 20px 20px;
  }
  .advgb-recent-posts .advgb-recent-post .advgb-post-wrapper:before {
    display: none;
  }
}
.ghostkit-google-maps-placeholder,
.ghostkit-google-maps {
  min-height: 670px !important;
}

@media screen and (orientation: portrait) {
  .wp-block-eedee-block-gutenslider .slick-track,
  .wp-block-eedee-block-gutenslider .slide-content {
    min-height: 50vh !important;
  }
}
.wp-block-eedee-block-gutenslider.vertical-align-center .wp-block-eedee-gutenslider__content {
  justify-content: normal !important;
}
.wp-block-eedee-block-gutenslider.vertical-align-center .wp-block-eedee-gutenslider__content .h1 {
  margin-top: calc(50px + 3%) !important;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4), 0px 0px 80px #001d3e;
  margin-bottom: 30px;
}
.wp-block-eedee-block-gutenslider.vertical-align-center .wp-block-eedee-gutenslider__content .h1 span {
  color: #fff !important;
}
.wp-block-eedee-block-gutenslider.vertical-align-center .wp-block-eedee-gutenslider__content .h1:after {
  display: none;
}
.wp-block-eedee-block-gutenslider.vertical-align-center .wp-block-eedee-gutenslider__content .ghostkit-button {
  color: #fff;
}

.ghostkit-grid-gap-custom {
  margin-bottom: 2px;
}

@media (max-width: 1280px) {
  .wp-block-spacer {
    height: 40px !important;
  }
}

.wp-block-quote {
  width: 100%;
  border: 3px var(--primary) solid;
  padding: 3%;
  max-width: 650px;
  margin: 80px auto;
  color: var(--primary);
  text-align: center;
}
.wp-block-quote p {
  font-family: var(--font-headings);
  font-weight: normal;
  font-style: normal;
  font-size: 1.3em;
}

#blog-page-main {
  margin: 100px 0;
  padding: 0;
}
#blog-page-main ul {
  position: relative;
  padding: 0;
  list-style: none;
  text-align: center;
}
#blog-page-main ul li {
  position: relative;
}
#blog-page-main ul li a {
  font-family: var(--font-headings);
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  padding: 20px 0;
  color: #383739;
  display: block;
  transition: 0.2s ease-in;
}
#blog-page-main ul li a:hover {
  color: var(--primary);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
@media (max-width: 767px) {
  #blog-page-main ul li a {
    font-size: 18px;
    padding: 10px 0;
  }
}
#blog-page-main ul li:after {
  content: "";
  width: 100px;
  height: 1px;
  border-bottom: 3px var(--primary) solid;
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -50px;
}

.wp-block-gallery .blocks-gallery-grid {
  padding: 0;
}
.wp-block-gallery .blocks-gallery-grid .blocks-gallery-item {
  margin: 0 2px 2px 0;
}
.wp-block-gallery .blocks-gallery-item figure {
  position: relative;
  overflow: hidden;
}
.wp-block-gallery .blocks-gallery-item figure img {
  transition: 0.7s cubic-bezier(0.8, 0, 0.5, 1);
  transform: scale(1);
}
.wp-block-gallery .blocks-gallery-item figcaption {
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 24px;
  outline: 1px #fff solid;
  outline-offset: -10px;
  transition: 0.7s cubic-bezier(0.8, 0, 0.5, 1);
  opacity: 0;
}
.wp-block-gallery .blocks-gallery-item:hover figure img {
  transform: scale(1.1);
}
.wp-block-gallery .blocks-gallery-item:hover figcaption {
  opacity: 1;
}

.wp-block-eedee-block-gutenslider.history {
  background: black url("../img/content/history.jpg") center center no-repeat;
  background-size: cover;
  color: #fff;
  padding: 40px 0 20px 0;
}
.wp-block-eedee-block-gutenslider.history h2 {
  margin-bottom: 80px;
}
.wp-block-eedee-block-gutenslider.history p {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}
.wp-block-eedee-block-gutenslider.history .slick-slider {
  margin-bottom: 0;
}
.wp-block-eedee-block-gutenslider.history .slick-dots li {
  width: 60px !important;
}
.wp-block-eedee-block-gutenslider.history .slick-dots li button {
  width: 50px !important;
  background: #666;
  border: 2px transparent solid !important;
}
.wp-block-eedee-block-gutenslider.history .slick-dots:before {
  content: "";
  height: 1px;
  border-top: 1px #666 dashed;
  position: absolute;
  width: 700px;
  left: 50%;
  margin-left: -350px;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .wp-block-eedee-block-gutenslider.history {
    height: 550px;
  }
  .wp-block-eedee-block-gutenslider.history .slick-dots li {
    margin: 0 3px !important;
    width: 30px !important;
  }
  .wp-block-eedee-block-gutenslider.history .slick-dots li button {
    width: 25px !important;
  }
}

.contact_boxes {
  padding: 40px 40px 20px 40px;
  background: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}
.contact_boxes img {
  width: 180px !important;
}
.contact_boxes .ghostkit-icon-box {
  background: none;
  box-shadow: 0 0 0;
  padding: 0;
  margin-bottom: 24px;
}
.contact_boxes .ghostkit-icon-box a {
  color: #383739;
}
@media (max-width: 767px) {
  .contact_boxes {
    padding: 30px 20px 10px 20px;
  }
  .contact_boxes img {
    width: 80px !important;
  }
}

.ghostkit-tabs .ghostkit-tabs-buttons {
  border-bottom: 3px var(--primary) solid;
  margin-bottom: 0;
}
.ghostkit-tabs .ghostkit-tabs-buttons .ghostkit-tabs-buttons-item {
  background: #fff;
  border-radius: 0 !important;
  margin-right: 2px;
  margin-bottom: 0;
  margin-top: 2px;
  width: 70px;
  text-align: center;
}
.ghostkit-tabs .ghostkit-tabs-buttons .ghostkit-tabs-buttons-item.ghostkit-tabs-buttons-item-active {
  border: 0px !important;
  background: var(--primary);
  color: #fff;
}
.ghostkit-tabs .ghostkit-tab {
  background: #fff;
  padding: 40px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
}
.ghostkit-tabs .ghostkit-tab h4 {
  border: 0;
  text-align: left;
}

.fair_table th:first-child,
.fair_table td:first-child {
  text-align: center;
}
.fair_table td:first-child {
  font-family: var(--font-default);
  font-weight: 900;
  font-style: normal;
}
.fair_table th:nth-last-child(1),
.fair_table th:nth-last-child(2) {
  text-align: center;
}
.fair_table td:nth-last-child(1),
.fair_table td:nth-last-child(2) {
  text-align: center;
  font-size: 30px;
}
.fair_table td:nth-last-child(1) a,
.fair_table td:nth-last-child(2) a {
  color: rgba(0, 0, 0, 0.4);
  transition: 0.2s ease-in;
}
.fair_table td:nth-last-child(1) a:hover,
.fair_table td:nth-last-child(2) a:hover {
  color: rgba(0, 0, 0, 0.9);
}

.info_box {
  background: none;
  border: 3px var(--primary) solid !important;
  box-shadow: 0 0 0;
}

@media (max-width: 767px) {
  .wp-block-media-text__content {
    padding: 20px 0px !important;
  }
  .wp-block-media-text__content .has-large-font-size {
    font-size: 22px !important;
    text-align: center;
  }
}

.wp-block-media-text.is-image-fill figure.wp-block-media-text__media {
  min-height: 400px;
}

/*
@include tablet_landscape {
	div.wp-block-media-text {

		max-width: 700px !important;
		margin: 0 auto !important;
		-ms-grid-columns: 100%!important;
		grid-template-columns: 100%!important;

		.has-media-on-the-right {
			.wp-block-media-text__media {
				-ms-grid-column: 1!important;
				grid-column: 1!important;
				-ms-grid-row: 2!important;
				grid-row: 2!important;
			}
		}
	}
}
*/

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