html {
  width: 100%;
}

body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  background-color: #ffffff;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
}

@media screen and (max-width: 300px) {
  body {
    width: 300px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 30px 0 10px 0;
  color: #525252;
  font-family: "Gloock", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 2.8em;
}

h2 {
  font-size: 2.4em;
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 1.6em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
}

table {
  border-collapse: collapse;
  border-color: #cccccc;
}

table tr th {
  background-color: #525252;
  border-color: #adadad;
  color: #ffffff;
}

table tr td {
  border-color: #adadad;
}

img {
  border: 0;
}

hr {
  background-color: #adadad;
  border: 0;
  height: 1px;
}

iframe {
  border: 0;
}

.hide_meta {
  display: none;
}

.top_notice {
  width: 100%;
  height: auto;
  padding: 5px 0;
  margin: 0 auto;
  position: relative;
  display: none;
  clear: both;
}

.jump_anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

.red_notice {
  width: calc(100% - 20px);
  height: auto;
  padding: 10px;
  margin: 10px auto;
  position: relative;
  display: table;
  clear: both;
  background-color: red;
  color: #ffffff;
  font-family: "Noto Sans", sans-serif;
  text-align: center;
}

*:focus {
  outline: none;
}

.gen_btn {
  width: auto;
  height: auto;
  padding: 10px 35px;
  background-color: #e46713;
  color: #ffffff;
  font-size: 1.1em;
  font-family: 'Noto Sans', serif;
  text-transform: uppercase;
  border-radius: 4px;
  border: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.gen_btn:hover {
  background-color: #c5580f;
}

@media only screen and (max-width: 440px) {
  .gen_btn {
    width: 100%;
  }
}

.gen_btn_right {
  float: right;
}

.gen_btn.disabled {
  background-color: #ccc;
  /* Grey out the button */
  cursor: not-allowed;
  /* Show a not-allowed cursor */
}

/* HEADER TOP */
.header {
  width: calc(100% - 10%);
  height: auto;
  padding: 0 5% 100px 5%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  clear: both;
  display: table;
  background-image: linear-gradient(rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0.0));
  z-index: 1001;
}

@media screen and (max-width: 1080px) {
  .header {
    width: calc(100% - 40px);
    padding: 0 20px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    background-image: none;
    background-color: #161616;
  }
}

.header.sticky {
  padding: 0 5%;
  background-image: none;
  background-color: #161616;
}

@media screen and (max-width: 1080px) {
  .header.sticky {
    width: calc(100% - 40px);
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}

.header_no_slider {
  padding: 0 5%;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  background-image: none;
  background-color: #161616;
}

@media screen and (max-width: 1080px) {
  .header_no_slider {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}

.header_no_slider.sticky {
  padding: 0 5%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 1080px) {
  .header_no_slider.sticky {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}

.header.sticky+.content {
  padding-top: 140px;
}

.is-active {
  color: #e46713 !important;
}

@media screen and (max-width: 1080px) {
  .is-active {
    color: #e46713 !important;
  }
}

.link_no_click {
  pointer-events: none;
}

@media screen and (max-width: 1080px) {
  .link_no_click {
    pointer-events: all;
  }
}

.logo {
  width: 100px;
  height: auto;
  padding: 10px 0;
  display: table-cell;
  vertical-align: middle;
  white-space: nowrap;
}

.logo_main {
  width: auto;
  height: 120px;
  display: table;
}

@media screen and (max-width: 1080px) {
  .logo_main {
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .logo_main {
    height: 90px;
  }
}

@media screen and (max-width: 560px) {
  .logo_main {
    height: 80px;
  }
}

.logo_main.sticky {
  height: 60px;
}

.quick_links {
  width: calc(100% - 100px);
  height: auto;
  padding: 0 0 0 40px;
  display: table-cell;
  vertical-align: middle;
}

.contacts {
  width: 100%;
  height: 69px;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 1080px) {
  .contacts {
    height: 59px;
  }
}

@media screen and (max-width: 767px) {
  .contacts {
    display: none;
  }
}

.contacts.sticky {
  display: none;
}

.contact_holder {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0 0 0 30px;
  position: relative;
  color: #ffffff;
  font-size: 15px;
}

.contact_holder a,
.contact_holder a:visited {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.contact_holder a:hover,
.contact_holder a:visited:hover {
  color: #e46713;
}

.contact_holder i {
  color: #e46713;
}

.social_media i {
  padding: 0 3px;
  transition: all 0.3s ease-in-out;
}

.social_media i:hover {
  transform: scale(1.2, 1.2);
  z-index: 2;
}

.navigation_bar {
  width: 100%;
  height: 70px;
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
}

@media screen and (max-width: 1080px) {
  .navigation_bar {
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .navigation_bar {
    height: auto;
  }
}

.navigation_bar.sticky {
  height: auto;
}

/* SLIDER IMAGES */
.slider {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  display: table;
  position: relative;
  clear: both;
  z-index: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.slider_holder {
  width: 100%;
  height: 100%;
  padding: 0;
  background: no-repeat scroll;
  position: relative;
  display: table-cell;
  clear: both;
  background-size: cover !important;
}

.bxslider {
  width: 100%;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .bxslider {
    padding-bottom: 60% !important;
  }
}

@media screen and (max-width: 560px) {
  .bxslider {
    padding-bottom: 70% !important;
  }
}

.logo_sec {
  width: 20%;
  height: auto;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 130px;
  right: 5%;
  pointer-events: none;
  opacity: 0.0;
  z-index: 2;
  animation: animateLogoSec 2s ease-in-out 0s 1 forwards;
}

@keyframes animateLogoSec {
  0% {
    opacity: 0.0;
  }

  100% {
    opacity: 1.0;
  }
}

@media screen and (max-width: 1080px) {
  .logo_sec {
    width: 20%;
    top: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .logo_sec {
    width: 30%;
  }
}

@media screen and (max-width: 560px) {
  .logo_sec {
    width: 35%;
  }
}

.slider_info {
  width: 80%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  z-index: 2;
  opacity: 0.0;
}

.slider_info_left {
  transform: translateX(-100%);
  animation: animateSliderInfoLeft 1s ease-in-out 0s 1 forwards;
}

@keyframes animateSliderInfoLeft {
  0% {
    opacity: 0.0;
    transform: translateX(-100%);
  }

  100% {
    opacity: 1.0;
    transform: translateX(0);
  }
}

.slider_info_right {
  transform: translateX(100%);
  animation: animateSliderInfoRight 1s ease-in-out 0s 1 forwards;
}

@keyframes animateSliderInfoRight {
  0% {
    opacity: 0.0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1.0;
    transform: translateX(0);
  }
}

@media screen and (max-width: 767px) {
  .slider_info {
    width: 90%;
  }
}

.slider_title {
  width: 100%;
  height: auto;
  padding: 6px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.2em;
  line-height: 1.0em;
  font-family: 'Gloock', serif;
  color: #ffffff;
}

@media screen and (max-width: 1200px) {
  .slider_title {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 1080px) {
  .slider_title {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 767px) {
  .slider_title {
    font-size: 1.6em;
  }
}

@media screen and (max-width: 560px) {
  .slider_title {
    font-size: 1.6em;
  }
}

@media screen and (max-width: 440px) {
  .slider_title {
    font-size: 1.4em;
  }
}

.slider_info_left .slider_title {
  text-align: left;
}

.slider_info_right .slider_title {
  text-align: right;
}

.slider_title_line {
  width: 30%;
  height: 2px;
  padding: 0;
  margin: 10px 0;
  position: relative;
  clear: both;
  display: table;
  background-color: #e46713;
}

@media screen and (max-width: 560px) {
  .slider_title_line {
    display: none;
  }
}

.slider_info_left .slider_title_line {
  text-align: left;
  float: left;
}

.slider_info_right .slider_title_line {
  text-align: right;
  float: right;
}

.slider_description {
  width: 100%;
  height: auto;
  padding: 4px 0 0 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  color: #ffffff;
  font-size: 1.0em;
  font-weight: 400;
  line-height: 1.3em;
}

@media screen and (max-width: 1080px) {
  .slider_description {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 560px) {
  .slider_description {
    display: none;
  }
}

.slider_info_left .slider_description {
  text-align: left;
}

.slider_info_right .slider_description {
  text-align: right;
}

.slider_buttons {
  width: auto;
  height: auto;
  padding: 10px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
}

@media screen and (max-width: 560px) {
  .slider_buttons {
    padding: 5px 0;
  }
}

.slider_info_left .slider_buttons {
  float: left;
}

.slider_info_right .slider_buttons {
  float: right;
}

.slider_buttons a,
.slider_buttons a:visited {
  width: auto;
  height: auto;
  padding: 10px 15px;
  border: 2px solid #e46713;
  background-color: rgba(0, 0, 0, 0.5);
  color: #e46713;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  display: table;
  font-size: 1.0em;
  clear: none;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1080px) {

  .slider_buttons a,
  .slider_buttons a:visited {
    padding: 8px 10px;
    font-size: 0.9em;
  }
}

@media screen and (max-width: 560px) {

  .slider_buttons a,
  .slider_buttons a:visited {
    padding: 8px 10px;
    font-size: 0.8em;
  }
}

.slider_buttons a:hover,
.slider_buttons a:visited:hover {
  background-color: rgba(0, 0, 0, 1.0);
}

.slider_info_left .slider_buttons a,
.slider_info_left .slider_buttons a:visited {
  float: left;
  margin: 5px 10px 0 0;
}

.slider_info_right .slider_buttons a,
.slider_info_right .slider_buttons a:visited {
  float: right;
  margin: 5px 0 0 10px;
}

.slider_filter {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

/* MAIN CONTENT */
.content {
  width: 100%;
  height: auto;
  padding: 80px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
  background-image: url('../admin454/uploads/site_settings/logo_watermark.jpg');
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-position: left bottom;
}

@media screen and (max-width: 1080px) {
  .content {
    background-size: 70% auto;
  }
}

@media screen and (max-width: 767px) {
  .content {
    background-size: 80% auto;
  }
}

@media screen and (max-width: 560px) {
  .content {
    background-size: 90% auto;
  }
}

.content_outer {
  width: 1000px;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

@media screen and (max-width: 1080px) {
  .content_outer {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}

.content_holder {
  width: calc(100% - 300px);
  height: auto;
  padding: 0;
  display: table-cell;
  vertical-align: top;
}

@media screen and (max-width: 1080px) {
  .content_holder {
    width: 100%;
    padding: 0 0 20px 0;
    display: table;
    position: relative;
    clear: both;
  }
}

.content_holder_full {
  width: 100%;
}

.content_h2_header {
  height: auto;
  padding: 0 0 10px 0;
  margin: 0;
  position: relative;
  display: table;
  font-size: 2.0em;
  line-height: 1.0em;
  font-family: 'Gloock', serif;
  color: #e46713;
}

@media screen and (max-width: 1080px) {
  .content_h2_header {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 767px) {
  .content_h2_header {
    font-size: 1.6em;
  }
}

.content_h2_header_left {
  text-align: left;
}

.content_h2_header_center {
  width: auto;
  margin: 0 auto;
  text-align: center;
}

.content_h2_sub_header {
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  display: table;
  font-size: 2.6em;
  line-height: 1.0em;
  font-family: 'Gloock', serif;
  color: #161616;
  text-transform: uppercase;
}

@media screen and (max-width: 1080px) {
  .content_h2_sub_header {
    font-size: 2.4em;
  }
}

@media screen and (max-width: 767px) {
  .content_h2_sub_header {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 560px) {
  .content_h2_sub_header {
    font-size: 2.0em;
  }
}

.content_h2_sub_header_left {
  text-align: left;
}

.content_h2_sub_header_center {
  width: auto;
  margin: 0 auto;
  text-align: center;
}

.content_header_line {
  width: 60%;
  height: 2px;
  padding: 0;
  position: relative;
  clear: both;
  display: table;
  background-color: #e46713;
}

.content_header_line_left {
  margin: 25px 0 0 0;  
}

.content_header_line_center {
  margin: 25px 20% 0 20%;
  text-align: center;
}

.content p {
  text-align: justify;
  line-height: 1.4em;
}

@media screen and (max-width: 560px) {
  .content p {
    text-align: left;
  }
}

.content ul li,
.content ol li {
  padding: 0;
  margin: 0 0 4px 0;
  line-height: 1.3em;
}

.content img {
  max-width: 100%;
  height: auto !important;
}

.content_content {
  height: auto;
  padding: 0;
  margin: 10px 50px 0 0;
  position: relative;
  clear: both;
  display: table;
}

@media screen and (max-width: 1080px) {
  .content_content {
    margin: 10px 0 0 0;
  }
}

.content_holder_full .content_content {
  margin: 10px 0 0 0;
}

.content_cover_image {
  width: 400px;
  height: 100%;
  padding: 0;
  display: table-cell;
  vertical-align: top;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1080px) {
  .content_cover_image {
    width: 100%;
    height: auto;
    padding-bottom: 30%;
    display: table;
    position: relative;
    clear: both;
  }
}

@media screen and (max-width: 560px) {
  .content_cover_image {
    padding-bottom: 40%;
  }
}

/* PAGE IMAGES */
.page_images {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px 0;
  position: relative;
  clear: both;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 5px;
  grid-auto-flow: dense;
}

@media screen and (max-width: 767px) {
  .page_images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 440px) {
  .page_images {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page_image_link {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-decoration: none;
  display: block;
  z-index: 2;
}

.page_images_container {
  width: 100%;
  height: auto;
  padding-bottom: 60%;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}

.page_images_container_1 {
  grid-column: span 1;
  grid-row: span 1;
}

.page_images_container_2 {
  grid-column: span 2;
  grid-row: span 2;
}

@media screen and (max-width: 440px) {
  .page_images_container_2 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.page_images_container_3 {
  grid-column: span 3;
  grid-row: span 3;
}

@media screen and (max-width: 767px) {
  .page_images_container_3 {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media screen and (max-width: 440px) {
  .page_images_container_3 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.page_image_title {
  width: calc(100% - 20px);
  height: auto;
  padding: 0 10px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  display: table;
  transition: all 0.4s ease-in-out;
  color: #ffffff;
  z-index: 2;
}

.page_image_link:hover .page_image_title {
  display: none;
}

.page_image_filter {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.page_image_link:hover .page_image_filter {
  background-color: rgba(0, 0, 0, 0);
}

/* PAGE IMAGES */
.page_images {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px 0;
  position: relative;
  clear: both;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 5px;
  grid-auto-flow: dense;
}

@media screen and (max-width: 767px) {
  .page_images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 440px) {
  .page_images {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page_image_link {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-decoration: none;
  display: block;
  z-index: 2;
}

.page_images_container {
  width: 100%;
  height: auto;
  padding-bottom: 60%;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}

.page_images_container_1 {
  grid-column: span 1;
  grid-row: span 1;
}

.page_images_container_2 {
  grid-column: span 2;
  grid-row: span 2;
}

@media screen and (max-width: 440px) {
  .page_images_container_2 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.page_images_container_3 {
  grid-column: span 3;
  grid-row: span 3;
}

@media screen and (max-width: 767px) {
  .page_images_container_3 {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media screen and (max-width: 440px) {
  .page_images_container_3 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.page_image_title {
  width: calc(100% - 20px);
  height: auto;
  padding: 0 10px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  display: table;
  transition: all 0.4s ease-in-out;
  color: #ffffff;
  z-index: 2;
}

.page_image_link:hover .page_image_title {
  display: none;
}

.page_image_filter {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.page_image_link:hover .page_image_filter {
  background-color: rgba(0, 0, 0, 0);
}

/* EVENTS - LIST */
.events {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 0 auto;
  position: relative;
  clear: both;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 1080px) {
  .events {
    grid-template-columns: repeat(1, 1fr);
  }
}

.event_holder {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  background-color: #161616;
  cursor: pointer;
}

.event_info {
  width: calc(100% - 120px);
  height: auto;
  padding: 10px 10px 10px 20px;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 560px) {
  .event_info {
    width: calc(100% - 40px);
    padding: 10px 20px;
    display: table;
    position: relative;
    clear: both;
  }
}

.event_title {
  width: 100%;
  height: auto;
  padding: 0 0 6px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.3em;
  line-height: 1.2em;
  font-family: 'Gloock', serif;
  color: #e46713;
}

@media screen and (max-width: 560px) {
  .event_title {
    font-size: 1.3em;
    text-align: center;
  }
}

.event_location {
  width: 100%;
  height: auto;
  padding: 0 0 4px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 0.9em;
  line-height: 1.2em;
  color: #c4c4c4;
}

@media screen and (max-width: 560px) {
  .event_location {
    font-size: 0.9em;
    text-align: center;
  }
}

.event_description {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 0.9em;
  line-height: 1.2em;
  color: #ffffff;
}

@media screen and (max-width: 560px) {
  .event_description {
    font-size: 0.9em;
    text-align: center;
  }
}

.event_date {
  width: 120px;
  height: 120px;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  background-color: #000000;
}

@media screen and (max-width: 560px) {
  .event_date {
    width: calc(100% - 40px);
    padding: 10px 20px;
    margin: 0 auto;
    text-align: center;
    height: auto;
    display: table;
    position: relative;
    clear: both;
  }
}

.event_date_day {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.0em;
  color: #c4c4c4;
}

@media screen and (max-width: 560px) {
  .event_date_day {
    width: auto;
    padding: 0 6px 0 0;
    float: none;
    display: inline-block;
    font-size: 30px;
  }
}

.event_date_month {
  width: 100%;
  height: auto;
  padding: 3px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.0em;
  color: #e46713;
  text-transform: uppercase;
}

@media screen and (max-width: 560px) {
  .event_date_month {
    width: auto;
    padding: 0 6px 0 0;
    float: none;
    display: inline-block;
    font-size: 30px;
  }
}

.event_date_year {
  width: 100%;
  height: auto;
  padding: 3px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 16px;
  line-height: 1.0em;
  color: #c4c4c4;
}

@media screen and (max-width: 560px) {
  .event_date_year {
    width: auto;
    padding: 0 6px 0 0;
    float: none;
    display: inline-block;
    font-size: 30px;
  }
}

/* EVENTS - POPUP */
.event_popup {
  width: 90%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 5000;
  background-color: #ffffff;
  border-radius: 5px;
  display: none;
}

.event_popup_close_btn {
  width: 30px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #ff0000;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  z-index: 5001;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.event_popup_close_btn:hover {
  transform: rotate(180deg);
}

.event_popup_header {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  background-color: #161616;
  border-radius: 5px 5px 0 0;
}

.event_popup_info {
  width: calc(100% - 120px);
  height: auto;
  padding: 20px;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .event_popup_info {
    width: calc(100% - 80px);
  }
}

.event_popup_title {
  width: 100%;
  height: auto;
  padding: 0 0 10px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  color: #e46713;
  font-size: 1.4em;
  line-height: 1.2em;
  font-family: 'Gloock', serif;
}

@media screen and (max-width: 767px) {
  .event_popup_title {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 560px) {
  .event_popup_title {
    font-size: 1.2em;
  }
}

.event_popup_location {
  width: 100%;
  height: auto;
  padding: 0 0 8px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.0em;
  line-height: 1.2em;
  color: #c4c4c4;
}

@media screen and (max-width: 767px) {
  .event_popup_location {
    font-size: 0.9em;
  }
}

.event_popup_description {
  width: 100%;
  height: auto;
  padding: 0 0 8px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.6em;
  text-align: center;
  line-height: 1.2em;
  color: #525252;
}

@media screen and (max-width: 1080px) {
  .event_popup_description {
    font-size: 1.4em;
  }
}

@media screen and (max-width: 767px) {
  .event_popup_description {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 560px) {
  .event_popup_description {
    font-size: 1.1em;
  }
}

.event_popup_date {
  width: 120px;
  height: 120px;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  background-color: #000000;
}

@media screen and (max-width: 767px) {
  .event_popup_date {
    width: 80px;
    height: 80px;
  }
}

.event_popup_date_day {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.0em;
  color: #c4c4c4;
}

@media screen and (max-width: 767px) {
  .event_popup_date_day {
    font-size: 34px;
  }
}

.event_popup_date_month {
  width: 100%;
  height: auto;
  padding: 3px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.0em;
  color: #e46713;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .event_popup_date_month {
    font-size: 24px;
  }
}

.event_popup_date_year {
  width: 100%;
  height: auto;
  padding: 3px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 16px;
  line-height: 1.0em;
  color: #c4c4c4;
}

@media screen and (max-width: 767px) {
  .event_popup_date_year {
    font-size: 18px;
  }
}

.event_popup_full_content {
  width: calc(100% - 40px);
  max-height: 480px;
  padding: 10px 20px;
  margin: 0;
  position: relative;
  clear: both;
  display: block;
  color: #000000;
  font-size: 0.9em;
  font-weight: 500;
  overflow-x: hidden;
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .event_popup_full_content {
    max-height: 360px;
  }
}

.event_popup_filter {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4999;
  background-color: rgba(0, 0, 0, 0.8);
}

/* READ MORE BOXES */
.qboxes {
  width: 100%;
  height: auto;
  padding: 60px 0;
  margin: 10px auto 0 auto;
  position: relative;
  clear: both;
  display: block;
  background-color: #000000;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.qboxes_outer {
  width: 100%;
  z-index: 2;
}

.qboxes_outer .slick-next,
.qboxes_outer .slick-prev {
  filter: invert(1);
}

.qbox_holder {
  width: calc(100% - 60px);
  height: auto;
  padding: 10px;
  margin: 0 20px;
  background-color: #ffffff;
}

.qbox_image {
  width: 100%;
  height: auto;
  padding-bottom: 60%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}

.qbox_holder:hover .qbox_image {
  filter: grayscale(1);
}

.qbox_icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 70px;
  font-size: 26px;
  background-color: #e46713;
  color: #ffffff !important;
  border-radius: 50%;
  opacity: 1.0;
  transition: all 0.3s ease-in-out;
}

.qbox_holder:hover .qbox_icon {
  bottom: 50%;
  opacity: 0.0;
}

.qbox_info {
  width: 100%;
  height: auto;
  padding: 45px 0 0 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
}

.qbox_title {
  width: 100%;
  height: 60px;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.4em;
  line-height: 1.2em;
  font-family: 'Gloock', serif;
  color: #161616;
}

@media screen and (max-width: 560px) {
  .qbox_title {
    height: 55px;
    font-size: 1.3em;
  }
}

.qbox_description {
  width: 100%;
  height: 120px;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 0.9em;
  line-height: 1.3em;
  color: #000000;
}

@media screen and (max-width: 560px) {
  .qbox_description {
    height: 150px;
  }
}

.qbox_button {
  width: 100%;
  height: auto;
  padding: 10px 0 0 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.qbox_button a,
.qbox_button a:visited {
  width: auto;
  height: auto;
  padding: 8px 45px;
  margin: 0 auto;
  border: 2px solid #e46713;
  color: #e46713;
  text-align: center;
  font-size: 1.0em;
  text-transform: uppercase;
  text-decoration: none;
  display: table;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.qbox_button a:hover,
.qbox_button a:visited:hover {
  background-color: #e46713;
  color: #ffffff;
}

.qbox_filter {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

/* CALL TO ACTION */
.cta {
  width: calc(100% - 10%);
  height: auto;
  padding: 60px 5%;
  margin: 10px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
  background-color: #000000;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1080px) {
  .cta {
    width: calc(100% - 40px);
    padding: 60px 20px;
  }
}

.cta_outer {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  z-index: 1;
}

.cta_left {
  width: 50%;
  height: auto;
  padding: 0 20px 0 0;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .cta_left {
    width: 100%;
    padding: 0 0 20px 0;
    display: table;
    position: relative;
    clear: both;
  }
}

.cta_header_title {
  width: 100%;
  height: auto;
  padding: 0 0 15px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 3.4em;
  line-height: 1.0em;
  font-family: 'Gloock', serif;
  color: #e46713;
  text-transform: uppercase;
}

@media screen and (max-width: 1080px) {
  .cta_header_title {
    font-size: 2.6em;
  }
}

@media screen and (max-width: 767px) {
  .cta_header_title {
    font-size: 2.5em;
    text-align: center;
  }
}

@media screen and (max-width: 560px) {
  .cta_header_title {
    font-size: 2.4em;
  }
}

.cta_description {
  width: 100%;
  height: auto;
  padding: 0 0 10px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.2em;
  line-height: 1.3em;
  color: #ffffff;
}

@media screen and (max-width: 1080px) {
  .cta_description {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 767px) {
  .cta_description {
    text-align: center;
  }
}

@media screen and (max-width: 560px) {
  .cta_description {
    font-size: 1.0em;
  }
}

@media screen and (max-width: 440px) {
  .cta_description {
    font-size: 0.9em;
  }
}

.cta_buttons {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
}

@media screen and (max-width: 767px) {
  .cta_buttons {
    width: auto;
    margin: 0 auto;
    text-align: center;
  }
}

@media screen and (max-width: 440px) {
  .cta_buttons {
    width: 100%;
  }
}

.cta_buttons a,
.cta_buttons a:visited {
  width: auto;
  height: auto;
  padding: 10px 20px;
  margin: 10px 10px 0 0;
  display: table;
  float: left;
  clear: none;
  border: 2px solid #e46713;
  font-size: 1.0em;
  color: #e46713;
  text-align: center;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 440px) {

  .cta_buttons a,
  .cta_buttons a:visited {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px auto;
    float: none;
    clear: both;
    font-size: 0.9em;
  }
}

.cta_buttons a:hover,
.cta_buttons a:visited:hover {
  background-color: #e46713;
  color: #000000;
}

.cta_right {
  width: 50%;
  height: auto;
  padding: 0 0 0 20px;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .cta_right {
    width: 100%;
    padding: 0;
    display: table;
    position: relative;
    clear: both;
  }
}

.cta_filter {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

/* PAGE BUTTONS */
.page_buttons {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
}

.pg_btn {
  min-width: 220px;
  height: auto;
  padding: 14px 10px;
  margin: 10px 5px;
  position: relative;
  display: inline-block;
  text-align: center;
  border: 0;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #e46713;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.0em;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .pg_btn {
    min-width: 180px;
    font-size: 0.9em;
  }
}

@media screen and (max-width: 560px) {
  .pg_btn {
    min-width: 0;
    display: table;
    font-size: 1.0em;
    width: calc(100% - 20px - 10px);
  }
}

.pg_btn:hover {
  background-color: #c5580f;
}

/* CONTACT DETAILS BLOCKS */
.contact_blocks {
  width: 100%;
  height: auto;
  padding: 10px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.contact_blocks_left {
  width: calc(50% - 10px);
  height: auto;
  padding: 0 10px 0 0;
  margin: 0;
  position: relative;
  clear: none;
  float: left;
}

@media screen and (max-width: 560px) {
  .contact_blocks_left {
    width: 100%;
    clear: both;
    float: none;
    padding: 0;
  }
}

.contact_blocks_right {
  width: calc(50% - 10px);
  height: auto;
  padding: 0 0 0 10px;
  margin: 0;
  position: relative;
  clear: none;
  float: left;
}

@media screen and (max-width: 560px) {
  .contact_blocks_right {
    width: 100%;
    clear: both;
    float: none;
    padding: 0;
  }
}

.contact_block_holder {
  width: calc(100% - 10px);
  height: auto;
  padding: 0;
  margin: 10px 5px;
  position: relative;
  clear: none;
  float: left;
  display: table;
}

.contact_block_icon {
  width: 40px;
  height: auto;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
  font-family: "Font Awesome 6 Pro", sans-serif;
}

.contact_block_icon i {
  font-size: 40px;
  color: #e46713;
}

.contact_block_info {
  width: calc(100% - 40px);
  height: auto;
  padding: 0 0 0 10px;
  display: table-cell;
  vertical-align: middle;
}

.contact_block_title {
  width: 100%;
  height: auto;
  padding: 0 0 4px 0;
  margin: 0;
  clear: both;
  display: table;
  font-size: 1.3em;
  font-family: 'Gloock', serif;
  color: #252525;
  line-height: 1em;
}

.contact_block_description {
  width: 100%;
  height: auto;
  padding: 0 0 4px 0;
  margin: 0;
  clear: both;
  display: table;
  font-size: 1em;
  font-weight: 500;
  color: #525252;
  line-height: 1em;
}

.contact_block_content {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1em;
  font-weight: 400;
  color: #000000;
}

.contact_block_content a,
.contact_block_content a:visited {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.contact_block_content a:hover,
.contact_block_content a:visited:hover {
  color: #000000;
  text-decoration: underline;
}

/* LOGO SLIDER */
.logo_slider {
  width: 100%;
  height: auto;
  padding: 10px 0;
  margin: 10px auto 0 auto;
  position: relative;
  background-color: #161616;
  display: table;
  clear: both;
  overflow: hidden;
}

.logo_slider .slick-next,
.logo_slider .slick-prev {
  filter: invert(1);
}

/* MAP */
.mapouter {
  text-align: right;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 10px auto 0 auto;
  position: relative;
  clear: both;
  overflow: hidden;
}

.gmap_canvas {
  background: none !important;
  overflow: hidden;
  width: 100%;
}

#gmap_canvas {
  padding: 0;
  margin: 0;
  display: table;
}

/* MERCHANDISE */
.merchandise {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 0 auto;
  position: relative;
  clear: both;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 1080px) {
  .merchandise {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 560px) {
  .merchandise {
    grid-template-columns: repeat(1, 1fr);
  }
}

.merchandise_holder {
  width: calc(100% - 20px);
  height: auto;
  padding: 10px;
  margin: 0 auto;
  position: relative;
  display: table;
  background-color: #161616;
}

.merchandise_photo {
  width: 100%;
  height: auto;
  padding-bottom: 100%;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
}

.merchandise_info {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 15px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.merchandise_name {
  width: 100%;
  height: 60px;
  padding: 0 0 10px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  color: #e46713;
  font-size: 1.5em;
  line-height: 1.2em;
  font-family: 'Gloock', serif;
}

@media screen and (max-width: 560px) {
  .merchandise_name {
    height: auto;
    padding: 0 0 10px 0;
  }
}

.merchandise_price {
  width: 100%;
  height: auto;
  padding: 0 0 10px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 1.4em;
  line-height: 1.3em;
  color: #c4c4c4;
}

/* FOOTER */
.footer {
  clear: both;
  display: table;
  height: auto;
  margin: 10px auto 0 auto;
  padding-top: 40px;
  padding-right: 20px;
  padding-left: 20px;
  position: relative;
  width: calc(100% - 40px);
  overflow: hidden;
  background-color: #161616;
}

.footer_nowapp {
  padding: 10px 20px 20px 20px !important;
}

.footer_socials {
  display: table;
  height: auto;
  margin: 0 auto;
  padding: 0 0 30px 0;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  font-family: "Font Awesome 5 Pro", sans-serif;
}

.footer_socials i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  margin: 0 2px;
  border: 0;
  color: #161616;
  background-color: #e46713;
  display: inline-block;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .footer_socials i {
    width: 30px;
    height: 30px;
    margin: 0 1px;
    line-height: 30px;
    font-size: 14px;
  }
}

.footer_socials i:hover {
  background-color: #c5580f;
}

.footer_socials a {
  text-decoration: none;
}

.footer_addresses {
  width: 100%;
  height: auto;
  padding: 0 0 30px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

@media only screen and (max-width: 767px) {
  .footer_addresses {
    padding: 0;
  }
}

.footer_address_holder {
  width: 50%;
  height: auto;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
  color: #ffffff;
  font-size: 1em;
  line-height: 1.2em;
}

@media only screen and (max-width: 767px) {
  .footer_address_holder {
    width: 100%;
    display: table;
    padding: 0 0 10px 0;
    position: relative;
    clear: both;
    font-size: 0.9em;
    text-align: center;
  }
}

.footer_address_header {
  font-size: 1.2em;
  padding: 0 0 6px 0;
  font-family: "Gloock", serif;
}

.footer_address_holder img {
  width: auto;
  height: 180px;
  display: table;
  text-align: right;
  float: right;
}

@media only screen and (max-width: 767px) {
  .footer_address_holder img {
    width: 50%;
    height: auto;
    padding: 0 0 20px 0;
    margin: 0 auto;
    display: table;
    text-align: center;
    float: none;
  }
}

@media only screen and (max-width: 560px) {
  .footer_address_holder img {
    width: 60%;
  }
}

@media only screen and (max-width: 440px) {
  .footer_address_holder img {
    width: 70%;
  }
}

.footer_address_info {
  width: 100%;
  height: auto;
  padding: 0 0 20px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-weight: 300;
  font-size: 0.9em;
}

.privacy_policy {
  width: 100%;
  height: auto;
  padding: 0 0 30px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  text-align: center;
  display: table;
  color: #e9e9e9;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1em;
}

@media screen and (max-width: 560px) {
  .privacy_policy {
    font-size: 1em;
  }
}

.privacy_policy a,
.privacy_policy a:visited {
  color: #e9e9e9;
  text-decoration: none;
  padding: 0 15px;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 560px) {

  .privacy_policy a,
  .privacy_policy a:visited {
    width: 100%;
    padding: 5px 0;
    clear: both;
    display: table;
  }
}

.privacy_policy a:hover,
.privacy_policy a:visited:hover {
  color: #ffffff;
}

.credentials {
  clear: both;
  color: #ffffff;
  display: table;
  font-size: 0.9em;
  font-weight: 500;
  height: auto;
  margin: 0 auto;
  padding: 0 0 5px 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.credits {
  clear: both;
  color: #ffffff;
  display: table;
  font-size: 0.9em;
  font-weight: 500;
  height: auto;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.credits a,
.credits a:visited {
  color: #c4c4d4;
  text-decoration: none;
}

.credits a:hover,
.credits a:visited:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* PAGINATION */
.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination a {
  padding: 8px 13px;
  margin: 0;
  text-decoration: none;
  background: #e46713;
  color: white;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: 500;
  display: inline-block;
}

@media screen and (max-width: 560px) {
  .pagination a {
    padding: 8px 8px;
    font-size: 0.9em;
  }
}

.pagination a.active {
  background: #ad4e0e;
  font-weight: 700;
}

.pagination a.disabled {
  background: #bebebe;
  color: #7a7a7a;
  pointer-events: none;
  cursor: default;
}

.pagination a:hover:not(.disabled) {
  background: #c5580f;
}

/* WHATSAPP BUTTON */
.whatsapp_button {
  width: auto;
  padding: 0;
  margin: 0;
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-image: url("../images/wa_bg_filter.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: 1005;
}

.whatsapp_button i {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.whatsapp_popup {
  width: auto;
  white-space: nowrap;
  height: auto;
  padding: 5px 10px;
  margin: 0 0 5px 0;
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 5;
  background-color: #ffffff;
  border: 2px solid #525252;
  border-radius: 6px 6px 0 6px;
  text-align: center;
  font-weight: 500;
  font-size: 0.9em;
  color: #525252;
  opacity: 0;
  animation: animateWhatsappPopup 1.5s ease-in-out 5s 1 forwards;
}

@keyframes animateWhatsappPopup {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.whatsapp_link:hover i {
  transform: scale(1.1, 1.1);
}

/* FORM STYLING */
.form_group {
  clear: both;
  display: table;
  height: auto;
  margin: 0 0 15px 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.form_group_full {
  clear: both;
  display: table;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.form_group_left {
  clear: none;
  display: table;
  float: left;
  height: auto;
  margin: 0 2% 0 0;
  padding: 0;
  position: relative;
  width: 48%;
}

@media screen and (max-width: 560px) {
  .form_group_left {
    clear: both;
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }
}

.form_group_right {
  clear: none;
  display: table;
  float: right;
  height: auto;
  margin: 0 0 0 1%;
  padding: 0;
  position: relative;
  width: 49%;
}

@media screen and (max-width: 560px) {
  .form_group_right {
    clear: both;
    float: none;
    margin: 0;
    width: 100%;
  }
}

.form_group_1_3 {
  clear: none;
  display: table;
  float: left;
  height: auto;
  margin: 0 1% 0 0;
  padding: 0;
  position: relative;
  width: calc(100% / 3 - 1%);
}

@media screen and (max-width: 560px) {
  .form_group_1_3 {
    margin: 0 0 15px 0;
    width: 100%;
  }
}

.form_group_2_3 {
  clear: none;
  display: table;
  float: left;
  height: auto;
  margin: 0 1% 0 1%;
  padding: 0;
  position: relative;
  width: calc(100% / 3 - 2%);
}

@media screen and (max-width: 560px) {
  .form_group_2_3 {
    margin: 0 0 15px 0;
    padding: 0;
    width: 100%;
  }
}

.form_group_3_3 {
  clear: none;
  display: table;
  float: right;
  height: auto;
  margin: 0 0 0 1%;
  padding: 0;
  position: relative;
  width: calc(100% / 3 - 1%);
}

@media screen and (max-width: 560px) {
  .form_group_3_3 {
    margin: 0 0 15px 0;
    width: 100%;
  }
}

input::placeholder,
textarea::placeholder {
  color: #858585;
}

.form_label {
  clear: both;
  height: auto;
  margin: 0;
  padding: 0 0 4px 0;
  position: relative;
  width: 100%;
  display: none;
}

.form_label label {
  color: #ffffff;
  font-family: "Noto Sans", sans-serif;
  font-size: 1em;
  font-weight: 500;
}

.form_field {
  clear: both;
  display: table;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.form_field input[type="text"],
.form_field input[type="number"],
.form_field input[type="email"] {
  background-color: rgba(0, 0, 0, 0.4);
  border: 0;
  font-family: "Noto Sans", sans-serif;
  height: 25px;
  margin: 0;
  padding: 10px;
  color: #ffffff;
  font-size: 0.9em;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  width: calc(100% - 20px);
}

.form_field input[type="text"]:hover,
.form_field input[type="text"]:focus,
.form_field input[type="email"]:hover,
.form_field input[type="email"]:focus .form_field input[type="number"]:hover,
.form_field input[type="number"]:focus {
  background-color: rgba(0, 0, 0, 0.6);
}

.form_field select {
  background-color: rgba(0, 0, 0, 0.4);
  border: 0;
  font-family: "Noto Sans", sans-serif;
  height: 47px;
  margin: 0;
  outline: none;
  padding: 10px;
  font-size: 0.9em;
  transition: all 0.3s ease-in-out;
  width: 100%;
  color: #ffffff;
}

.form_field select:hover,
.form_field select:focus {
  background-color: rgba(0, 0, 0, 0.6);
}

select {
  background-color: #050d0d;
}

.form_field textarea {
  background-color: rgba(0, 0, 0, 0.4);
  border: 0;
  font-family: "Noto Sans", sans-serif;
  height: 80px;
  margin: 0;
  outline: none;
  padding: 10px;
  font-size: 0.9em;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  width: calc(100% - 20px);
}

.form_field textarea:hover,
.form_field textarea:focus {
  background-color: rgba(0, 0, 0, 0.6);
}

.form_oneliner_label {
  display: table-cell;
  height: auto;
  padding: 0 2% 0 0;
  vertical-align: middle;
  width: 48%;
}

.form_oneliner_field {
  display: table-cell;
  height: auto;
  padding: 0 0 0 2%;
  vertical-align: middle;
  width: 48%;
}

.form_note {
  clear: both;
  color: #c4c4c4;
  display: table;
  font-size: 0.8em;
  height: auto;
  margin: 2px 0 0 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.red_asterisk {
  color: red;
  font-size: 0.8em;
  vertical-align: super;
}

.red_asterisk:before {
  color: red;
  content: "\f069";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-size: 0.6em;
  vertical-align: super;
}

.hfield {
  display: none !important;
}

/* ADMIN DIV TOOLTIPS */
.admin-div:hover {
  filter: grayscale(100%);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.4);
}

.admin-div:hover::before {
  position: absolute;
  background: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 50000;
}

.admin-div:hover::before {
  opacity: 1;
}

.admin-tooltip {
  width: calc(100% - 20px);
  height: auto;
  padding: 5px 10px;
  background-color: #00000050;
  color: #ffffff;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-family: "Noto Sans", sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  z-index: 50001;
}

.admin-div-bottom .admin-tooltip {
  top: auto;
  bottom: 0;
}

/* PRELOADER */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader img {
  width: 180px;
  height: auto;
  animation: pulse 1.2s infinite ease-in-out;
}

@media screen and (max-width: 1080px) {
  #preloader img {
    width: 160px;
  }
}

@media screen and (max-width: 767px) {
  #preloader img {
    width: 140px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

/* CONTENT BOXES */
.content_boxes {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
}

.content_box_holder {
  width: calc(100% - 22px);
  height: auto;
  padding: 10px;
  margin: 0 auto 10px auto;
  position: relative;
  clear: both;
  display: table;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  background-color: #ffffff;
}

.content_box_photo {
  width: 300px;
  height: auto;
  padding: 0;
  display: table-cell;
  vertical-align: top;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  white-space: nowrap;
}

@media screen and (max-width: 1080px) {
.content_box_photo {
    width: 250px;
  }
}

@media screen and (max-width: 767px) {
.content_box_photo {
    width: 100%;
    padding-bottom: 50%;
    display: table;
    position: relative;
    clear: both;
  }
}

.content_box_info {
  width: calc(100% - 300px);
  height: auto;
  padding: 0 10px;
  display: table-cell;
  vertical-align: top;
}

@media screen and (max-width: 1080px) {
.content_box_info {
    width: calc(100% - 250px);
  }
}

@media screen and (max-width: 767px) {
  .content_box_info {
      width: 100%;
      padding: 15px 0 0 0;
      display: table;
      position: relative;
      clear: both;
    }
}

.content_box_info_full {
  width: 100%;
}

.content_box_info_outer {
  width: calc(100% - 10px);
  height: 300px;
  padding: 0 10px 0 0;
  margin: 0;
  position: relative;
  clear: both;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
}

@media screen and (max-width: 1080px) {
.content_box_info_outer {
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
.content_box_info_outer {
    width: 100%;
    height: auto;
    padding: 0;
    display: table;
  }
}

.content_box_info_full .content_box_info_outer {
  width: 100%;
  height: auto;
  padding: 0;
}

.content_box_main_title {
  width: 100%;
  height: auto;
  padding: 0 0 2px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.4em;
  line-height: 1.2em;
  font-family: 'Gloock', serif;
  color: #e46713;
}

@media screen and (max-width: 1080px) {
.content_box_main_title {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 767px) {
  .content_box_main_title {
    text-align: center;
  }
}

@media screen and (max-width: 560px) {
  .content_box_main_title {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 440px) {
  .content_box_main_title {
    font-size: 1.6em;
  }
}

.content_box_sub_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.6em;
  line-height: 1.2em;
  font-family: 'Gloock', serif;
  color: #525252;
}

@media screen and (max-width: 1080px) {
.content_box_sub_title {
    font-size: 1.4em;
  }
}

@media screen and (max-width: 767px) {
  .content_box_sub_title {
    text-align: center;
  }
}

@media screen and (max-width: 560px) {
  .content_box_sub_title {
    font-size: 1.1em;
  }
}

.content_box_content {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
}

.content_box_button {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
}

@media screen and (max-width: 767px) {
.content_box_button {
    width: auto;
    margin: 0 auto;
    text-align: center;
  }
}

.content_box_button a,
.content_box_button a:visited {
  width: auto;
  height: auto;
  padding: 8px 25px;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  border: 2px solid #e46713;
  color: #e46713;
  text-align: center;
  text-decoration: none;
  font-size: 1.0em;
  font-weight: 500;
  border-radius: 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
.content_box_button a,
  .content_box_button a:visited {
    margin: 0 auto;
  }
}

@media screen and (max-width: 440px) {

  .content_box_button a,
  .content_box_button a:visited {
    width: calc(100% - 24px);
    padding: 8px 10px;
    font-size: 0.9em;
  }
}

.content_box_button a:hover,
.content_box_button a:visited:hover {
  background-color: #e46713;
  color: #ffffff;
}

/* PEOPLE */
.people {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 0 auto;
  position: relative;
  clear: both;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 1080px) {
  .people {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 560px) {
  .people {
    grid-template-columns: repeat(1, 1fr);
  }
}

.person_holder {
  width: calc(100% - 20px);
  height: auto;
  padding: 10px;
  margin: 0 auto;
  position: relative;
  display: table;
  background-color: #161616;
}

.person_photo {
  width: 100%;
  height: auto;
  padding-bottom: 100%;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
}

.person_info {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 15px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.person_names {
  width: 100%;
  height: auto;
  padding: 0 0 10px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  color: #e46713;
  font-size: 1.5em;
  line-height: 1.2em;
  font-family: 'Gloock', serif;
}

.person_designation {
  width: 100%;
  height: auto;
  padding: 0 0 10px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 1.0em;
  line-height: 1.3em;
  color: #c4c4c4;
  font-family: 'Gloock', serif;
}

.person_email {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.person_email a,
.person_email a:visited {
  width: calc(100% - 20px);
  height: auto;
  padding: 10px;
  font-size: 0.8em;
  text-align: center;
  font-weight: 500;
  color: #161616;
  text-decoration: none;
  border-radius: 5px;
  display: table;
  background-color: #e46713;
  transition: all 0.3s ease-in-out;
}

.person_email a:hover,
.person_email a:visited:hover {
  background-color: #c5580f;
}

/* FILE DOWNLOADS */
.downloads {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.download_link {
  text-decoration: none;
}

.download_holder {
  width: calc(100% - 30px);
  height: auto;
  padding: 10px 10px 10px 20px;
  margin: 10px auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
  background-color: #161616;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.download_holder:hover {
  background-color: #000000;
}

.download_description {
  width: calc(100% - 60px);
  height: auto;
  padding: 0 20px 0 0;
  display: table-cell;
  vertical-align: middle;
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1.2em;
}

@media screen and (max-width: 767px) {
  .download_description {
    font-size: 1.0em;
  }
}

@media screen and (max-width: 560px) {
  .download_description {
    width: calc(100% - 50px);
  }
}

.download_icon {
  width: 60px;
  height: auto;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
  white-space: nowrap;
}

@media screen and (max-width: 560px) {
  .download_icon {
    width: 50px;
  }
}

.download_icon img {
  width: 100%;
  height: auto;
  display: table;
}

/* CALENDAR */
.calendar {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
}

.calendar iframe {
  width: 100%;
  height: 600px;
  display: table;
}

@media screen and (max-width: 767px) {
  .calendar iframe {
    height: 500px;
  }
}

@media screen and (max-width: 560px) {
  .calendar iframe {
    height: 450px;
  }
}

/* GALLERY */
.gallery {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 0 auto;
  position: relative;
  clear: both;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1080px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 560px) {
  .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gallery_holder {
  width: calc(100% - 10px);
  height: auto;
  padding-bottom: calc(100% - 10px);
  margin: 0;
  position: relative;
  display: table;
  background-color: #000000;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  border: 5px solid #161616;
  overflow: hidden;
}

.gallery_info {
  width: calc(100% - 40px);
  height: auto;
  padding: 0 20px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.gallery_icon {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 35px;
  color: #e46713;
  opacity: 1.0;
  transition: all 0.3s ease-in-out;
}

.gallery_holder:hover .gallery_icon {
  opacity: 1.0;
  font-size: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.gallery_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 1.0em;
  line-height: 1.1em;
  color: #ffffff;
  opacity: 1.0;
  transition: all 0.3s ease-in-out;
}

.gallery_holder:hover .gallery_title {
  opacity: 0.0;
  transform: translateY(500%);
}

.gallery_filter {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

/* INSERTS */
.inserts {
  width: calc(100% - 10%);
  height: auto;
  padding: 80px 5%;
  margin: 10px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover !important;
}

@media screen and (max-width: 1080px) {
.inserts {
    width: calc(100% - 40px);
    padding: 80px 20px;
  }
}

@media screen and (max-width: 767px) {
  .inserts {
    padding: 60px 20px;
  }
}

.insert_header {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto;
  position: relative;
  clear: both;
  display: table;
  color: #ffffff;
  font-family: "Gloock", sans-serif;
  font-size: 3.2em;
  font-weight: 400;
  text-align: center;
  line-height: 1em;
}

@media screen and (max-width: 1200px) {
  .insert_header {
    font-size: 3em;
  }
}

@media screen and (max-width: 1080px) {
  .insert_header {
    font-size: 2.8em;
  }
}

@media screen and (max-width: 767px) {
  .insert_header {
    font-size: 2.4em;
  }
}

@media screen and (max-width: 560px) {
  .insert_header {
    font-size: 2em;
  }
}

@media screen and (max-width: 440px) {
  .insert_header {
    font-size: 1.8em;
  }
}

.insert_description {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto;
  position: relative;
  display: table;
  clear: both;
  color: #ffffff;
  font-size: 1.1em;
  text-align: center;
  line-height: 1.4em;
}

@media screen and (max-width: 1080px) {
  .insert_description {
    font-size: 1em;
  }
}

@media screen and (max-width: 560px) {
  .insert_description {
    font-size: 0.9em;
  }
}

.insert_button {
  width: auto;
  height: auto;
  padding: 0;
  margin: 20px auto;
  position: relative;
  display: table;
  clear: both;
}

.insert_button a,
.insert_button a:visited {
  width: auto;
  height: auto;
  padding: 10px 25px;
  margin: 0 auto;
  position: relative;
  display: table;
  clear: both;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #e46713;
  border-radius: 4px;
  color: #e46713;
  font-size: 1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 560px) {

  .insert_button a,
  .insert_button a:visited {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

.insert_button a:hover,
.insert_button a:visited:hover {
  background-color: rgba(0, 0, 0, 1);
  border: 2px solid #c5580f;
  color: #c5580f;
}