html {
  width: 100%;
}

body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  background-color: #ffffff;
  font-family: "Lato", 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: "Lato", 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: "Lato", sans-serif;
  text-align: center;
}

*:focus {
  outline: none;
}

.gen_btn {
  width: auto;
  height: auto;
  padding: 10px 35px;
  background-color: #252525;
  color: #ffffff;
  font-size: 1em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

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

@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%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
  background-color: #f3f3f3;
}

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

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

@media screen and (max-width: 767px) {
  .logo {
    width: 100%;
    padding: 10px 0 0 0;
    margin: 0 auto;
    display: table;
    position: relative;
    clear: both;
    text-align: center;
  }
}

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

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

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

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

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

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

@media screen and (max-width: 1200px) {
  .logo svg {
    height: 110px;
  }
}

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

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

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

.logo #emmies {
  opacity: 0.0;
  transform: translateY(-100%);
  animation: animateLogoEmmies 1.5s ease-in-out 0s 1 forwards;
}

@keyframes animateLogoEmmies {
  0% {
    opacity: 0.0;
    transform: translateY(-100%);
  }

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

.logo #refrigeration {
  opacity: 0.0;
  transform: translateX(-100%);
  animation: animateLogoRefrigeration 1.5s ease-in-out 0s 1 forwards;
}

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

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

.logo #verkoeling {
  opacity: 0.0;
  transform: translateX(100%);
  animation: animateLogoVerkoeling 1.5s ease-in-out 0s 1 forwards;
}

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

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

.logo #dot {
  opacity: 0.0;
  filter: blur(50px);
  animation: animateLogoDot 1.5s ease-in-out 0s 1 forwards;
}

@keyframes animateLogoDot {
  0% {
    opacity: 0.0;
    filter: blur(50px);
  }

  100% {
    opacity: 1.0;
    filter: blur(0px);
  }
}

.logo #bear,
.logo #shadow {
  opacity: 0.0;
  filter: blur(15px);
  animation: animateLogoBear 2.0s ease-in-out 0s 1 forwards;
}

@keyframes animateLogoBear {
  0% {
    opacity: 0.0;
    filter: blur(15px);
  }

  100% {
    opacity: 1.0;
    filter: blur(0px);
  }
}

.logo_sticky {
  width: auto;
  height: 80px;
  display: none;
}

.quick_links {
  width: 100%;
  height: auto;
  padding: 0 0 0 20px;
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}

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

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

.contact_holder_float {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0 0 0 25px;
  position: relative;
  clear: none;
  float: right;
}

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

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

.contact_holder i {
  color: #1968b2;
}

.socials i {
  font-size: 1.0em;
  margin: 0 2px;
  transition: all 0.3s ease-in-out;
}

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

/* NAVIGATION BAR */
.navigation_bar {
  width: calc(100% - 10%);
  height: auto;
  padding: 10px 5%;
  margin: 0 auto;
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  z-index: 2002;
}

@media screen and (max-width: 1200px) {
  .navigation_bar {
    top: 120px;
  }
}

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

.navigation_bar.sticky {
  width: calc(100% - 10%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 5px 5%;
  background-image: none;
  background-color: #4a97d2;
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.4);
}

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

.navigation_bar_no_slider {
  background-color: #4a97d2;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}

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

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

.header_button a,
.header_button a:visited {
  width: calc(100% - 40px);
  height: auto;
  padding: 10px 20px;
  background-color: #12274b;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.header_button a:hover,
.header_button a:visited:hover {
  background-color: #0b1930;
}

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

.is-active.sticky,
.navigation_bar_no_slider .is-active {
  color: #12274b !important;
}

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

  .is-active,
  .is-active.sticky,
  .navigation_bar_no_slider .is-active {
    color: #c4c4c4 !important;
  }
}

.link_no_click {
  pointer-events: none;
}

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

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

.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;
  }
}

.slider_info {
  height: auto;
  margin: 0;
  position: absolute;
  z-index: 2;
}

.slider_info_left,
.slider_info_right {
  padding: 60px 5% 80px 5%;
}

@media screen and (max-width: 1080px) {
  .slider_info_left {
    padding: 20px 20px 45px 20px;
  }

  .slider_info_right {
    padding: 20px 20px 45px 20px;
  }
}

.slider_title {
  width: 100%;
  height: auto;
  padding: 5px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  color: #ffffff;
  font-size: 2.6em;
  font-weight: 900;
  line-height: 1.0em;
  text-transform: uppercase;
}

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

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

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

@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;
  opacity: 0.0;
  transform: translateX(-100%);
  animation: animateSliderTitleLeft 0.8s ease-in-out 0s 1 forwards;
}

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

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

.slider_info_right .slider_title {
  text-align: right;
  opacity: 0.0;
  transform: translateX(100%);
  animation: animateSliderTitleRight 0.8s ease-in-out 0.0s 1 forwards;
}

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

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

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

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

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

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

.slider_info_left .slider_description {
  text-align: left;
  opacity: 0.0;
  transform: translateX(-100%);
  animation: animateSliderDescriptionLeft 0.8s ease-in-out 0.4s 1 forwards;
}

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

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

.slider_info_right .slider_description {
  text-align: right;
  opacity: 0.0;
  transform: translateX(100%);
  animation: animateSliderDescriptionRight 0.8s ease-in-out 0.4s 1 forwards;
}

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

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

.slider_button {
  width: auto;
  height: auto;
  padding: 0;
  margin: 12px 0 5px 0;
  position: relative;
  clear: both;
  display: table;
  opacity: 0.0;
  filter: blur(10px);
  animation: animateSliderButton 0.8s ease-in-out 0.4s 1 forwards;
}

@keyframes animateSliderButton {
  0% {
    opacity: 0.0;
    filter: blur(10px);
  }

  100% {
    opacity: 1.0;
    filter: blur(0);
  }
}

.slider_info_left .slider_button {
  float: left;
}

.slider_info_right .slider_button {
  float: right;
}

.slider_button a,
.slider_button a:visited {
  width: auto;
  height: auto;
  padding: 10px 25px;
  background-color: #12274b;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 5px;
  display: table;
  font-size: 1.0em;
  font-weight: 500;
  border: 2px solid #ffffff;
  transition: all 0.3s ease-in-out;
}

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

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

.slider_button a:hover,
.slider_button a:visited:hover {
  background-color: #0b1930;
}

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

.slider_nav_gradient {
  width: 100%;
  height: 150px;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0.0));
  z-index: 1;
}

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

/* TOP INSERTS */
.top_insert {
  width: calc(80% - 190px);
  height: auto;
  padding: 40px 150px 40px 40px;
  margin: -40px 10% 0 10%;
  position: relative;
  clear: both;
  display: table;
  background-color: #12274b;
  z-index: 2;
}

@media screen and (max-width: 1200px) {
  .top_insert {
    width: calc(90% - 190px);
    margin: -40px 5% 0 5%;
  }
}

@media screen and (max-width: 1080px) {
  .top_insert {
    width: calc(100% - 200px);
    padding: 40px 160px 40px 40px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 766px) {
  .top_insert {
    width: calc(100% - 80px);
    padding: 40px 40px 110px 40px;
    background-image: url('../admin454/uploads/site_settings/top_insert_bg_mobile.jpg');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: auto 100px;
    background-position: center bottom;
  }
}

.top_insert_header_title {
  height: auto;
  padding: 0 0 10px 0;
  margin: 0 auto;
  position: relative;
  text-align: left;
  font-size: 2.2em;
  line-height: 1.0em;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
}

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

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

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

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

.top_insert_content {
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  display: table;
  text-align: left;
  font-size: 1.0em;
  font-weight: 600;
  color: #ffffff;
}

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

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

.top_insert_ice_cubes {
  width: 200px;
  height: 200px;
  padding: 0;
  margin: 0;
  position: absolute;
  right: -50px;
  top: -30px;
  z-index: 2;
}

@media screen and (max-width: 1080px) {
  .top_insert_ice_cubes {
    width: 240px;
    height: 240px;
    top: -40px;
    right: -80px;
  }
}

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

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

/* MAIN CONTENT */
.content {
  width: 100%;
  height: auto;
  padding: 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: auto 400px;
  background-position: left bottom;
}

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

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

@media screen and (max-width: 560px) {
  .content {
    background-image: none;
  }
}

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

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

.content_h2_header {
  width: 100%;
  height: auto;
  padding: 0 0 5px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.6em;
  line-height: 1.0em;
  font-weight: 900;
  color: #242424;
  text-transform: uppercase;
}

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

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

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

.content_h2_header_left {
  text-align: left;
}

.content_h2_header_center {
  text-align: center;
}

.content_h2_sub_header {
  width: 100%;
  height: auto;
  padding: 0 0 5px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.6em;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: #12274b;
}

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

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

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

.content_h2_sub_header_left {
  text-align: left;
}

.content_h2_sub_header_center {
  text-align: center;
}

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

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

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

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

/* 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;
  font-weight: 700;
  text-transform: uppercase;
  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 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: 12px 10px;
  margin: 10px 5px;
  position: relative;
  display: inline-block;
  text-align: center;
  border: 0;
  text-transform: uppercase;
  background-color: #12274b;
  color: #ffffff;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  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: #0b1930;
}

/* CONTACTS PAGE */
.contacts_page {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

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

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

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

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

@media screen and (max-width: 767px) {
  ul.leform-progress-t2>li>label {
    display: none !important;
  }
}

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

.contact_blocks_left,
.contact_blocks_right {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  float: none;
}

.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: #1968b2;
}

.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-weight: 700;
  color: #252525;
  line-height: 1em;
}

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

.contact_block_description {
  width: 100%;
  height: auto;
  padding: 0 0 4px 0;
  margin: 0;
  clear: both;
  display: table;
  font-size: 1.0em;
  font-weight: 600;
  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: 600;
  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: 5px auto 0 auto;
  position: relative;
  background-color: #ffffff;
  display: table;
  clear: both;
  overflow: hidden;
}

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

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

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

  .album_gallery,
  .photo_gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .album_gallery,
  .photo_gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

.album_header_name {
  width: calc(100% - 20px - 2px);
  height: auto;
  padding: 10px 10px;
  margin: 20px auto 5px auto;
  position: relative;
  clear: both;
  background-color: #252525;
  color: #ffffff;
  text-align: center;
  font-size: 1.1em;
  text-transform: uppercase;
  font-family: "Font Awesome 6 Pro", "Noto Sans", sans-serif;
  line-height: 1em;
}

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

.album_header_name a,
.album_header_name a:visited {
  color: #ffffff;
  text-decoration: none;
}

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

.album_description {
  width: calc(100% - 40px);
  height: auto;
  padding: 10px 20px;
  margin: 20px auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.0em;
  line-height: 1.4em;
  text-align: justify;
  font-weight: 600;
  background-color: #efefef;
}

.album_holder {
  width: 100%;
  height: auto;
  padding-bottom: 100%;
  position: relative;
  background-attachment: scroll;
  background-color: #eeeeee;
  background-repeat: no-repeat;
  background-size: cover !important;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.album_title {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  color: #ffffff;
  font-family: "Noto Sans", sans-serif;
  height: 20px;
  left: 0;
  margin: 0 auto;
  padding: 5px 10px;
  font-size: 0.9em;
  font-weight: 600;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  width: calc(100% - 20px);
}

.album_holder:hover .album_title {
  height: calc(100% - 10px);
}

.album_icon {
  color: #4a97d2;
  display: none;
  font-size: 50px;
  height: auto;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.6s ease-in-out;
  -moz-transition: opacity 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out;
  -webkit-transition: opacity 0.6s ease-in-out;
  width: 100%;
  z-index: 3;
  font-family: "Font Awesome 6 Pro", sans-serif;
}

.album_holder:hover .album_icon {
  display: table;
  opacity: 1;
}

.album_button {
  clear: both;
  display: table;
  height: auto;
  margin: 0 auto;
  padding: 40px 0 20px 0;
  position: relative;
  text-align: center;
  width: auto;
}

.album_button a,
.album_button a:visited {
  border: 1px solid #afb374;
  color: #afb374;
  font-family: "Font Awesome 6 Pro", "Noto Sans", sans-serif;
  font-size: 1.2em;
  margin: 0 auto;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  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;
}

.album_button a:hover,
.album_button a:visited:hover {
  border: 1px solid #4e502e;
  color: #4e502e;
}

/* VIDEO GALLERY */
.video_gallery {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, 1fr);
  background-color: #ffffff;
  clear: both;
}

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

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

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

.video_icon {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
}

.video_icon i {
  text-align: center;
  font-size: 5.0vw;
  color: #ffffff;
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 1080px) {
  .video_icon i {
    font-size: 7.0vw;
  }
}

@media screen and (max-width: 560px) {
  .video_icon i {
    font-size: 14.0vw;
  }
}

.video_gallery_holder:hover i {
  color: #ff0000;
}

/* READ MORE BOXES */
.qboxes {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 5px auto 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
}

.qbox_link {
  text-decoration: none;
}

.qbox_holder {
  width: 50%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  float: left;
  clear: none;
  background-color: #ececec;
  transition: all 0.3s ease-in-out;
}

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

.qbox_holder:hover {
  background-color: #252525;
}

.qbox_info {
  width: 50%;
  height: auto;
  padding: 0;
  margin: 0;
  display: table;
  clear: none;
  transition: all 0.3s ease-in-out;
}

.qbox_info_left {
  float: left;
}

.qbox_info_right {
  float: right;
}

.qbox_info_float {
  width: calc(50% - 40px);
  height: auto;
  padding: 0 20px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 560px) {
  .qbox_info_float {
    width: calc(50% - 20px);
    padding: 0 10px;
  }
}

.qbox_info_left .qbox_info_float {
  margin: 0 0 0 50%;
}

.qbox_info_right .qbox_info_float {
  margin: 0 50% 0 0;
}

@media screen and (max-width: 767px) {
  .qbox_holder_even .qbox_info {
    float: left !important;
  }
}

@media screen and (max-width: 767px) {
  .qbox_holder_odd .qbox_info {
    float: right !important;
  }
}

@media screen and (max-width: 767px) {
  .qbox_holder_even .qbox_info_float {
    margin: 0 50% 0 0;
  }

  .qbox_holder_odd .qbox_info_float {
    margin: 0 0 0 50%;
  }
}

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

@media screen and (max-width: 1200px) {
  .qbox_icon {
    font-size: 45px;
  }
}

@media screen and (max-width: 1080px) {
  .qbox_icon {
    font-size: 40px;
  }
}

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

@media screen and (max-width: 560px) {
  .qbox_icon {
    font-size: 40px;
  }
}

@media screen and (max-width: 440px) {
  .qbox_icon {
    font-size: 35px;
  }
}

.qbox_holder:hover .qbox_icon {
  color: #ffffff;
}

.qbox_title {
  width: 100%;
  height: auto;
  padding: 4px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 1.4em;
  line-height: 1.0em;
  font-weight: 900;
  text-transform: uppercase;
  color: #12274b;
  transition: all 0.3s ease-in-out;
}

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

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

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

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

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

.qbox_holder:hover .qbox_title {
  color: #ffffff;
}

.qbox_description {
  width: 100%;
  height: auto;
  padding: 4px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 0.8em;
  line-height: 1.3em;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease-in-out;
}

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

.qbox_holder:hover .qbox_description {
  color: #ffffff;
}

.qbox_image {
  width: 50%;
  height: auto;
  padding-bottom: 50%;
  margin: 0;
  position: relative;
  clear: none;
  background-color: #252525;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: auto 100%;
  transition: all 2.0s ease-in-out;
}

.qbox_holder:hover .qbox_image {
  background-size: auto 110%;
}

.qbox_image_left {
  float: right;
}

.qbox_image_right {
  float: left;
}

@media screen and (max-width: 767px) {
  .qbox_holder_even .qbox_image {
    float: right !important;
  }
}

@media screen and (max-width: 767px) {
  .qbox_holder_odd .qbox_image {
    float: left !important;
  }
}

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

.content_box_holder {
  width: 100%;
  min-height: 350px;
  padding: 0;
  margin: 10px 0 0 0;
  position: relative;
  clear: both;
  display: table;
  background-color: #1968b2;
}

@media screen and (max-width: 1080px) {
  .content_box_holder {
    min-height: none;
  }
}

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

@media screen and (max-width: 1080px) {
  .content_box_info {
    padding: 40px 20px;
  }
}

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

.content_box_header_title {
  width: 100%;
  height: auto;
  padding: 0 0 10px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.6em;
  line-height: 1.0em;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
}

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

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

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

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

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

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

.content_box_photo {
  width: 50%;
  height: auto;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
  background-color: #252525;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
}

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

/* ICON BOXES */
.icon_boxes {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
}

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

.icon_box_icon {
  width: 70px;
  height: auto;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
  font-size: 70px;
  color: #ffffff;
  white-space: nowrap;
}

@media screen and (max-width: 1080px) {
  .icon_box_icon {
    width: 60px;
    font-size: 60px;
  }
}

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

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

.icon_box_header_title {
  width: 100%;
  height: auto;
  padding: 0 0 5px 0;
  display: table;
  position: relative;
  clear: both;
  font-size: 1.3em;
  line-height: 1.0em;
  text-align: left;
  font-weight: 900;
}

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

.icon_box_description {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 0.9em;
  line-height: 1.3em;
  text-align: left;
}

/* INSERTS */
.inserts {
  width: calc(100% - 40px);
  height: auto;
  padding: 50px 20px;
  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: 767px) {
  .inserts {
    padding: 40px 20px;
  }
}

.insert_header {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 15px auto;
  position: relative;
  clear: both;
  display: table;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 3.2em;
  font-weight: 900;
  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: 15px auto;
  position: relative;
  display: table;
  clear: both;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 1.1em;
  font-weight: 600;
  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: 14px 25px;
  margin: 0 auto;
  position: relative;
  display: table;
  clear: both;
  background-color: #12274b;
  border: 2px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 1em;
  font-weight: 600;
  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: #0b1930;
}

/* PACKAGES - BLOCKS */
.packages {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
}

.package_category_outer {
  width: calc(100% - 34px);
  height: auto;
  padding: 15px;
  margin: 0 0 20px 0;
  position: relative;
  clear: both;
  display: table;
  border: 2px solid #c4c4c4;
  border-radius: 5px;
  background-color: #ffffff;
}

.package_category_name {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.8em;
  line-height: 1.0em;
  font-weight: 900;
  text-transform: uppercase;
  color: #12274b;
}

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

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

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

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

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

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

.package_link {
  text-decoration: none;
}

.package_holder {
  width: calc(100% - 20px);
  height: auto;
  padding: 10px;
  margin: 0;
  position: relative;
  display: table;
  background-color: #e6e6e6;
  transition: all 0.3s ease-in-out;
}

.package_holder:hover {
  background-color: #242424;
}

.package_cover_photo {
  width: 30%;
  height: auto;
  padding-bottom: 30%;
  display: table-cell;
  vertical-align: middle;
  background-color: #ffffff;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media screen and (max-width: 1080px) {
.package_cover_photo {
    width: 20%;
    padding-bottom: 20%;
  }
}

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

.package_info {
  width: 70%;
  height: auto;
  padding: 0 0 0 10px;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 1080px) {
.package_info {
    width: 80%;
  }
}

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

.package_name {
  width: 100%;
  height: auto;
  padding: 0 0 5px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.6em;
  line-height: 1.0em;
  color: #242424;
  text-transform: uppercase;
  font-weight: 900;
  transition: all 0.3s ease-in-out;
}

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

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

.package_holder:hover .package_name {
  color: #ffffff;
}

.package_room_size {
  width: 100%;
  height: auto;
  padding: 0 0 6px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.2em;
  line-height: 1.0em;
  color: #1968b2;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

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

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

.package_price {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.2em;
  line-height: 1.0em;
  font-weight: 700;
  color: #4a97d2;
  transition: all 0.3s ease-in-out;
}

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

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

/* PACKAGE - FULL PAGE */
.package_page {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
}

.package_page ul {
  padding: 0;
  margin: 0 0 0 20px;
}

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

.package_page_cover_photo {
  width: 25%;
  height: auto;
  padding-bottom: 25%;
  display: table-cell;
  vertical-align: middle;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media screen and (max-width: 1080px) {
.package_page_cover_photo {
    width: 20%;
    padding-bottom: 20%;
  }
}

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

.package_page_cover_photo a {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: table;
}

.package_page_cover_photo a i {
  position: absolute;
  top: 20px;
  left: 20px;
  text-align: center;
  font-size: 3vw;
  color: #ffffff;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
.package_page_cover_photo a i {
    font-size: 4.5vw;
  }
}

@media screen and (max-width: 560px) {
  .package_page_cover_photo a i {
    font-size: 5.5vw;
  }
}

.package_page_cover_photo:hover i {
  opacity: 1.0;
}

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

@media screen and (max-width: 1080px) {
.package_page_stats {
    width: 80%;
  }
}

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

.package_page_name {
  width: 100%;
  height: auto;
  padding: 0 0 10px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.4em;
  line-height: 1.0em;
  font-weight: 900;
  color: #12274b;
  text-transform: uppercase;
}

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

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

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

.package_page_size {
  width: 100%;
  height: auto;
  padding: 0 0 10px 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.5em;
  line-height: 1.0em;
  color: #1968b2;
  font-weight: 700;
}

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

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

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

.package_page_price {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.5em;
  line-height: 1.0em;
  color: #4a97d2;
  font-weight: 700;
}

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

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

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

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

.package_page_info table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.0em;
}

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

@media screen and (max-width: 440px) {
  .package_page_info table {
    font-size: 0.8em;
  }
}

.package_page_info tr:nth-child(even) {
  background-color: #f1f1f1;
}

.package_page_info table th {
  width: 40%;
  padding: 7px 5px;
  text-align: left;
  font-weight: 600;
  background-color: #12274b;
  border-bottom: 1px solid #686868;
}

.package_page_info table td {
  width: 60%;
  padding: 7px 5px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid #e9e9e9;
}

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

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

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

@media screen and (max-width: 1080px) {
  .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: 1px solid #12274b;
  color: #12274b;
  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: #12274b;
  color: #f3f3f3;
}

.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: #525252;
  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;
  font-weight: 900;
  padding: 0 0 4px 0;
  font-family: "Lato", 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: 60%;
    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: 70%;
  }
}

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

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

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

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

.privacy_policy a,
.privacy_policy a:visited {
  color: #525252;
  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: #000000;
}

.credentials {
  clear: both;
  color: #525252;
  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: #525252;
  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: #525252;
  text-decoration: none;
}

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

/* 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 2%;
  padding: 0;
  position: relative;
  width: 48%;
}

@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 2% 0 0;
  padding: 0;
  position: relative;
  width: calc(100% / 3 - 2%);
}

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

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

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

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

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

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

.form_label label {
  color: #4d4d4d;
  font-family: "Lato", sans-serif;
  font-size: 1em;
  font-weight: 600;
}

label.error {
  color: #ff0000;
  font-size: 0.7em;
  font-weight: 500;
  position: relative;
  float: right;
  padding: 2px 0 0 0;
}

label.error:before {
  content: "\f06a";
  color: #ff0000;
  padding: 0 2px 0 0;
  font-family: "Font Awesome 6 Pro", sans-serif;
}

.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"] {
  background-color: #ffffff;
  border: 1px solid #c4c4c4;
  font-family: "Lato", sans-serif;
  height: 25px;
  margin: 0;
  outline: none;
  padding: 10px 20px;
  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% - 40px - 2px);
}

.form_field input[type="text"]:hover,
.form_field input[type="text"]:focus {
  background-color: #f2f2f2;
  border: 1px solid #c4c4c4;
}

.form_field select {
  background-color: #ffffff;
  border: 1px solid #c4c4c4;
  font-family: "Lato", sans-serif;
  height: 47px;
  margin: 0;
  outline: none;
  padding: 10px 20px;
  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: 100%;
}

.form_field select:hover,
.form_field select:focus {
  background-color: #f2f2f2;
  border: 1px solid #c4c4c4;
}

.form_field textarea {
  background-color: #ffffff;
  border: 1px solid #c4c4c4;
  font-family: "Lato", sans-serif;
  height: 125px;
  margin: 0;
  outline: none;
  padding: 10px 20px;
  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% - 40px - 2px);
}

.form_field textarea:hover,
.form_field textarea:focus {
  background-color: #f2f2f2;
  border: 1px solid #c4c4c4;
}

.form_group_full .enquire_btn {
  background-color: #ffffff;
  border: 1px solid #afb374;
  clear: none;
  color: #afb374;
  cursor: pointer;
  float: right;
  font-family: "Font Awesome 6 Pro", "Lato", sans-serif;
  font-size: 1.5em;
  margin: 0;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  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;
}

.form_group_full .enquire_btn:hover {
  border: 1px solid #4e502e;
  color: #4e502e;
}

.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.6em;
  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;
}

/* 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-50px-b .admin-tooltip {
  top: auto;
  bottom: 50px;
}

.admin-div-100px-b .admin-tooltip {
  top: auto;
  bottom: 100px;
}

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