/* ==========================================================================
   PSDGator SCSS Styles [VARIABLES]
   Theme Settings
   ========================================================================== */
/* ========================================================== */
/* 			            01. general                               */
/* ========================================================== */
/* ========================================================== */
/* 			            02. grid                                  */
/* ========================================================== */
/* We can have extra column sizes */
/* ========================================================== */
/* 			            03. utils                                 */
/* ========================================================== */
/* ========================================================== */
/* 			            04. breakpoints                           */
/* ========================================================== */
/* ========================================================== */
/* 			            05. css variables                         */
/* ========================================================== */
:root {
  /* html|body */
  --main-font-family: "Raleway", sans-serif;
  --main-font-size: 16px;
  --main-font-color: #fff;
  --body-background: #062e43;
  /* layout */
  --container-width: 1185px;
  --container-medium-width: 848px;
  --container-large-width: 1011px;
  --container-pad: min(8vw, 100px);
  /*--> Place custom settings here <--*/
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media only screen and (max-width: 500px) {
  :root {
    --container-pad: 14px;
  }
}
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [TYPES]

   A collection of function for advanced type checking
   ========================================================================== */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [INTERNAL]
   ========================================================================== */
/**
 * Replaces substring on a string variable
 */
/**
 * Splits a string with a specific separator
 */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [UNITS]
   ========================================================================== */
/**
 * Removes unit from value
 */
/**
 * Adds unit to a unitless value
 */
/**
 * Converts to rem values
 */
/**
 * Converts to vw values
 */
/* ==========================================================================
   PSDGator SCSS MIXINS [VARIOUS]
   ========================================================================== */
/**
 * Set placeholder color to inputs
 * Usage:
 * element{
 *   @placeholder-color(#cccccc)
 * }
 */
/**
 * Gives size to an element
 * Usage:
 * @include box(150, 450);
 */
/**
 * Truncates the text
 * Usage:
 * @include ellipsis-text();
 */
/**
 * Support for retina background images
 */
/**
 * CSS Opacity with fallback for IE8+.
 * Usage:
 * .opacity-box { @include opacity(.4); }
 */
/**
 * Implementing font-size with rem units and pixel fallback.
 */
/**
 * Adds a cover background to an element
 * Usage:
 * div {
 *   background-image: url("banner.png");
 *   @include cover-background;
 * }
 */
/**
 * A quick placeholder maker (with custom size/colors/text)
 * Uses: https://placeholder.com/
 * Usage:
 * .thumb {
 *   @include placeholder-image(400, 200);
 *   width: 400px;
 *   height: 200px;
 * }
 */
/* ==========================================================================
   PSDGator SCSS Styles [UTILITIES]

   A tiny utility-first CSS "framework"
   ========================================================================== */
.text-center {
  text-align: center;
}

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

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.position-static {
  position: static;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-none {
  display: none;
}

@media screen and (max-width: 1920px) {
  .text-xl-center {
    text-align: center;
  }
  .text-xl-left {
    text-align: left;
  }
  .text-xl-right {
    text-align: right;
  }
  .float-xl-left {
    float: left;
  }
  .float-xl-right {
    float: right;
  }
  .overflow-xl-hidden {
    overflow: hidden;
  }
  .overflow-xl-visible {
    overflow: visible;
  }
  .position-xl-static {
    position: static;
  }
  .position-xl-relative {
    position: relative;
  }
  .position-xl-absolute {
    position: absolute;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .d-xl-flex {
    display: flex;
  }
  .d-xl-inline-flex {
    display: inline-flex;
  }
  .d-xl-none {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .text-lg-center {
    text-align: center;
  }
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
  .float-lg-left {
    float: left;
  }
  .float-lg-right {
    float: right;
  }
  .overflow-lg-hidden {
    overflow: hidden;
  }
  .overflow-lg-visible {
    overflow: visible;
  }
  .position-lg-static {
    position: static;
  }
  .position-lg-relative {
    position: relative;
  }
  .position-lg-absolute {
    position: absolute;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-inline-flex {
    display: inline-flex;
  }
  .d-lg-none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .text-md-center {
    text-align: center;
  }
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
  .float-md-left {
    float: left;
  }
  .float-md-right {
    float: right;
  }
  .overflow-md-hidden {
    overflow: hidden;
  }
  .overflow-md-visible {
    overflow: visible;
  }
  .position-md-static {
    position: static;
  }
  .position-md-relative {
    position: relative;
  }
  .position-md-absolute {
    position: absolute;
  }
  .d-md-block {
    display: block;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-inline-flex {
    display: inline-flex;
  }
  .d-md-none {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .text-sm-center {
    text-align: center;
  }
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .float-sm-left {
    float: left;
  }
  .float-sm-right {
    float: right;
  }
  .overflow-sm-hidden {
    overflow: hidden;
  }
  .overflow-sm-visible {
    overflow: visible;
  }
  .position-sm-static {
    position: static;
  }
  .position-sm-relative {
    position: relative;
  }
  .position-sm-absolute {
    position: absolute;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .d-sm-flex {
    display: flex;
  }
  .d-sm-inline-flex {
    display: inline-flex;
  }
  .d-sm-none {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .text-xs-center {
    text-align: center;
  }
  .text-xs-left {
    text-align: left;
  }
  .text-xs-right {
    text-align: right;
  }
  .float-xs-left {
    float: left;
  }
  .float-xs-right {
    float: right;
  }
  .overflow-xs-hidden {
    overflow: hidden;
  }
  .overflow-xs-visible {
    overflow: visible;
  }
  .position-xs-static {
    position: static;
  }
  .position-xs-relative {
    position: relative;
  }
  .position-xs-absolute {
    position: absolute;
  }
  .d-xs-block {
    display: block;
  }
  .d-xs-inline-block {
    display: inline-block;
  }
  .d-xs-flex {
    display: flex;
  }
  .d-xs-inline-flex {
    display: inline-flex;
  }
  .d-xs-none {
    display: none;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [GRID]
   ========================================================================== */
.row {
  display: flex;
  flex-wrap: wrap;
}
.row--hcenter {
  justify-content: center;
}
.row--vcenter {
  align-items: center;
}

/**
 * A small hack so we don't have to include max-width
 * with the appropriate percentage everywhere (less file size)
 *
 * Generally it works but it seems to fail when a col is
 * alone in its row (it will expand to 100%)
 */
/**
 * Builders
 */
/**
 * Generate everything
 */
.col {
  flex: 1;
  max-width: 100%;
}

.col-auto {
  flex: auto;
  max-width: 100%;
  width: auto;
}

/* Generate all column/offset classes */
.col-1 {
  flex: 8.3333333333%;
  max-width: 8.3333333333%;
}

.off-1 {
  margin-left: 8.3333333333%;
}

.col-2 {
  flex: 16.6666666667%;
  max-width: 16.6666666667%;
}

.off-2 {
  margin-left: 16.6666666667%;
}

.col-3 {
  flex: 25%;
  max-width: 25%;
}

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

.col-4 {
  flex: 33.3333333333%;
  max-width: 33.3333333333%;
}

.off-4 {
  margin-left: 33.3333333333%;
}

.col-5 {
  flex: 41.6666666667%;
  max-width: 41.6666666667%;
}

.off-5 {
  margin-left: 41.6666666667%;
}

.col-6 {
  flex: 50%;
  max-width: 50%;
}

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

.col-7 {
  flex: 58.3333333333%;
  max-width: 58.3333333333%;
}

.off-7 {
  margin-left: 58.3333333333%;
}

.col-8 {
  flex: 66.6666666667%;
  max-width: 66.6666666667%;
}

.off-8 {
  margin-left: 66.6666666667%;
}

.col-9 {
  flex: 75%;
  max-width: 75%;
}

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

.col-10 {
  flex: 83.3333333333%;
  max-width: 83.3333333333%;
}

.off-10 {
  margin-left: 83.3333333333%;
}

.col-11 {
  flex: 91.6666666667%;
  max-width: 91.6666666667%;
}

.off-11 {
  margin-left: 91.6666666667%;
}

.col-12 {
  flex: 100%;
  max-width: 100%;
}

.off-12 {
  margin-left: 100%;
}

/* Generate the extra classes */
.col-20 {
  flex: 20%;
  max-width: 20%;
}

/* Generate all gap classes */
.gap-0,
.gap-0-x {
  margin-left: 0;
}
.gap-0 > *,
.gap-0-x > * {
  padding-left: 0;
}

.gap-0,
.gap-0-y {
  margin-top: 0;
}
.gap-0 > *,
.gap-0-y > * {
  padding-top: 0;
}

.gap-1,
.gap-1-x {
  margin-left: -12px;
}
.gap-1 > *,
.gap-1-x > * {
  padding-left: 12px;
}

.gap-1,
.gap-1-y {
  margin-top: -12px;
}
.gap-1 > *,
.gap-1-y > * {
  padding-top: 12px;
}

.gap-2,
.gap-2-x {
  margin-left: -24px;
}
.gap-2 > *,
.gap-2-x > * {
  padding-left: 24px;
}

.gap-2,
.gap-2-y {
  margin-top: -24px;
}
.gap-2 > *,
.gap-2-y > * {
  padding-top: 24px;
}

/* Generate all responsive steps */
@media screen and (max-width: 1920px) {
  .col-xl {
    flex: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-xl-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-xl-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-xl-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-xl-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-xl-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-xl-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-xl-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-xl-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-xl-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-xl-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-xl-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-xl-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-xl-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-xl-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-xl-0,
  .gap-xl-0-x {
    margin-left: 0;
  }
  .gap-xl-0 > *,
  .gap-xl-0-x > * {
    padding-left: 0;
  }
  .gap-xl-0,
  .gap-xl-0-y {
    margin-top: 0;
  }
  .gap-xl-0 > *,
  .gap-xl-0-y > * {
    padding-top: 0;
  }
  .gap-xl-1,
  .gap-xl-1-x {
    margin-left: -12px;
  }
  .gap-xl-1 > *,
  .gap-xl-1-x > * {
    padding-left: 12px;
  }
  .gap-xl-1,
  .gap-xl-1-y {
    margin-top: -12px;
  }
  .gap-xl-1 > *,
  .gap-xl-1-y > * {
    padding-top: 12px;
  }
  .gap-xl-2,
  .gap-xl-2-x {
    margin-left: -24px;
  }
  .gap-xl-2 > *,
  .gap-xl-2-x > * {
    padding-left: 24px;
  }
  .gap-xl-2,
  .gap-xl-2-y {
    margin-top: -24px;
  }
  .gap-xl-2 > *,
  .gap-xl-2-y > * {
    padding-top: 24px;
  }
  .reset-xl {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .col-lg {
    flex: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-lg-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-lg-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-lg-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-lg-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-lg-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-lg-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-lg-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-lg-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-lg-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-lg-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-lg-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-lg-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-lg-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-lg-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-lg-0,
  .gap-lg-0-x {
    margin-left: 0;
  }
  .gap-lg-0 > *,
  .gap-lg-0-x > * {
    padding-left: 0;
  }
  .gap-lg-0,
  .gap-lg-0-y {
    margin-top: 0;
  }
  .gap-lg-0 > *,
  .gap-lg-0-y > * {
    padding-top: 0;
  }
  .gap-lg-1,
  .gap-lg-1-x {
    margin-left: -12px;
  }
  .gap-lg-1 > *,
  .gap-lg-1-x > * {
    padding-left: 12px;
  }
  .gap-lg-1,
  .gap-lg-1-y {
    margin-top: -12px;
  }
  .gap-lg-1 > *,
  .gap-lg-1-y > * {
    padding-top: 12px;
  }
  .gap-lg-2,
  .gap-lg-2-x {
    margin-left: -24px;
  }
  .gap-lg-2 > *,
  .gap-lg-2-x > * {
    padding-left: 24px;
  }
  .gap-lg-2,
  .gap-lg-2-y {
    margin-top: -24px;
  }
  .gap-lg-2 > *,
  .gap-lg-2-y > * {
    padding-top: 24px;
  }
  .reset-lg {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md {
    flex: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-md-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-md-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-md-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-md-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-md-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-md-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-md-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-md-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-md-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-md-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-md-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-md-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-md-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-md-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-md-0,
  .gap-md-0-x {
    margin-left: 0;
  }
  .gap-md-0 > *,
  .gap-md-0-x > * {
    padding-left: 0;
  }
  .gap-md-0,
  .gap-md-0-y {
    margin-top: 0;
  }
  .gap-md-0 > *,
  .gap-md-0-y > * {
    padding-top: 0;
  }
  .gap-md-1,
  .gap-md-1-x {
    margin-left: -12px;
  }
  .gap-md-1 > *,
  .gap-md-1-x > * {
    padding-left: 12px;
  }
  .gap-md-1,
  .gap-md-1-y {
    margin-top: -12px;
  }
  .gap-md-1 > *,
  .gap-md-1-y > * {
    padding-top: 12px;
  }
  .gap-md-2,
  .gap-md-2-x {
    margin-left: -24px;
  }
  .gap-md-2 > *,
  .gap-md-2-x > * {
    padding-left: 24px;
  }
  .gap-md-2,
  .gap-md-2-y {
    margin-top: -24px;
  }
  .gap-md-2 > *,
  .gap-md-2-y > * {
    padding-top: 24px;
  }
  .reset-md {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .col-sm {
    flex: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-sm-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-sm-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-sm-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-sm-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-sm-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-sm-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-sm-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-sm-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-sm-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-sm-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-sm-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-sm-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-sm-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-sm-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-sm-0,
  .gap-sm-0-x {
    margin-left: 0;
  }
  .gap-sm-0 > *,
  .gap-sm-0-x > * {
    padding-left: 0;
  }
  .gap-sm-0,
  .gap-sm-0-y {
    margin-top: 0;
  }
  .gap-sm-0 > *,
  .gap-sm-0-y > * {
    padding-top: 0;
  }
  .gap-sm-1,
  .gap-sm-1-x {
    margin-left: -12px;
  }
  .gap-sm-1 > *,
  .gap-sm-1-x > * {
    padding-left: 12px;
  }
  .gap-sm-1,
  .gap-sm-1-y {
    margin-top: -12px;
  }
  .gap-sm-1 > *,
  .gap-sm-1-y > * {
    padding-top: 12px;
  }
  .gap-sm-2,
  .gap-sm-2-x {
    margin-left: -24px;
  }
  .gap-sm-2 > *,
  .gap-sm-2-x > * {
    padding-left: 24px;
  }
  .gap-sm-2,
  .gap-sm-2-y {
    margin-top: -24px;
  }
  .gap-sm-2 > *,
  .gap-sm-2-y > * {
    padding-top: 24px;
  }
  .reset-sm {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .col-xs {
    flex: 1;
    max-width: 100%;
  }
  .col-xs-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-xs-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-xs-1 {
    margin-left: 8.3333333333%;
  }
  .col-xs-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-xs-2 {
    margin-left: 16.6666666667%;
  }
  .col-xs-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-xs-3 {
    margin-left: 25%;
  }
  .col-xs-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-xs-4 {
    margin-left: 33.3333333333%;
  }
  .col-xs-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-xs-5 {
    margin-left: 41.6666666667%;
  }
  .col-xs-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-xs-6 {
    margin-left: 50%;
  }
  .col-xs-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-xs-7 {
    margin-left: 58.3333333333%;
  }
  .col-xs-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-xs-8 {
    margin-left: 66.6666666667%;
  }
  .col-xs-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-xs-9 {
    margin-left: 75%;
  }
  .col-xs-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-xs-10 {
    margin-left: 83.3333333333%;
  }
  .col-xs-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-xs-11 {
    margin-left: 91.6666666667%;
  }
  .col-xs-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-xs-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-xs-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-xs-0,
  .gap-xs-0-x {
    margin-left: 0;
  }
  .gap-xs-0 > *,
  .gap-xs-0-x > * {
    padding-left: 0;
  }
  .gap-xs-0,
  .gap-xs-0-y {
    margin-top: 0;
  }
  .gap-xs-0 > *,
  .gap-xs-0-y > * {
    padding-top: 0;
  }
  .gap-xs-1,
  .gap-xs-1-x {
    margin-left: -12px;
  }
  .gap-xs-1 > *,
  .gap-xs-1-x > * {
    padding-left: 12px;
  }
  .gap-xs-1,
  .gap-xs-1-y {
    margin-top: -12px;
  }
  .gap-xs-1 > *,
  .gap-xs-1-y > * {
    padding-top: 12px;
  }
  .gap-xs-2,
  .gap-xs-2-x {
    margin-left: -24px;
  }
  .gap-xs-2 > *,
  .gap-xs-2-x > * {
    padding-left: 24px;
  }
  .gap-xs-2,
  .gap-xs-2-y {
    margin-top: -24px;
  }
  .gap-xs-2 > *,
  .gap-xs-2-y > * {
    padding-top: 24px;
  }
  .reset-xs {
    margin-left: 0;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [BASE]
   ========================================================================== */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

picture,
img {
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/**
 * Helpers
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/**
 * The Container
 */
.container {
  width: 100%;
  max-width: var(--container-width);
  padding: 0 var(--container-pad);
  margin: 0 auto;
}
.container--fluid {
  max-width: 100%;
}
/**
 * Global styles
 */
* {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  color: var(--main-font-color);
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
  font-weight: 400;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  background-color: var(--body-background);
}

@font-face {
  font-family: "Mauricio Free Trial Font";
  src: url("../fonts/Mauricio-Free-Trial.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: kg bless your heart;
  font-style: normal;
  font-weight: 400;
  src: local("KG BLESS YOUR HEART"), url(https://fonts.cdnfonts.com/s/27367/KGBlessYourHeart.woff) format("woff");
  font-display: swap;
}
/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:HEADER]
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 10000;
}
.site-header .row .col-2 {
  display: flex;
  justify-content: left;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .site-header .row .col-2 {
    align-items: start;
    justify-items: center;
  }
}
.site-header .row .col-2:last-child {
  justify-content: right;
}
@media only screen and (max-width: 1024px) {
  .site-header .row .col-8.col-lg-1 {
    display: none;
  }
}
@media only screen and (min-width: 1024.01px) {
  .site-header .row .col-2.col-lg-1.col-sm-2 {
    display: none;
  }
}
@media only screen and (min-width: 1024.01px) {
  .site-header .row .col-2.col-lg-6.col-sm-5 {
    justify-content: right;
  }
}

.header--main-menu {
  display: flex;
  list-style: none;
  margin-left: auto;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  position: relative;
  max-height: 61px;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .header--main-menu {
    display: none;
  }
  .header--main-menu__mobile {
    display: flex;
  }
}
.header--main-menu ul.sub-menu {
  position: absolute;
  top: 130%;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0 -100px;
  display: none;
  padding: 24px 24px;
  background-color: #fff;
  gap: 14px;
  align-items: flex-start;
}
.header--main-menu .menu-item {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.header--main-menu .menu-item .menu-item {
  font-weight: 400;
  justify-content: start;
}
.header--main-menu .menu-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: normal;
  position: relative;
}
.header--main-menu .menu-item.menu-item-has-children .sub-menu a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  height: 3px;
  left: 0;
  width: 0;
  transition: all ease-in-out 0.3s;
  background: #00B4D1;
  opacity: 0;
}
.header--main-menu .menu-item.menu-item-has-children .sub-menu a:hover::before {
  width: 100%;
  opacity: 1;
}
.header--main-menu .menu-item.menu-item-has-children > a {
  cursor: pointer;
  position: relative;
}
.header--main-menu .menu-item.menu-item-has-children > a:hover:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 6px;
  height: 3px;
  width: 100%;
  background: #00B4D1;
}
@media only screen and (min-width: 1024.01px) {
  .header--main-menu .menu-item.menu-item-has-children:hover {
    cursor: pointer;
  }
  .header--main-menu .menu-item.menu-item-has-children:hover > a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 6px;
    height: 3px;
    width: 100%;
    background: #00B4D1;
  }
  .header--main-menu .menu-item.menu-item-has-children:hover ul.sub-menu {
    cursor: default;
    display: flex;
  }
  .header--main-menu .menu-item.menu-item-has-children:hover ul.sub-menu .menu-item {
    color: #062e43;
  }
  .header--main-menu .menu-item.menu-item-has-children:hover ul.sub-menu .menu-item a {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .header--main-menu .menu-item.menu-item-has-children:hover ul.sub-menu:before {
    cursor: default;
    content: "";
    height: 50px;
    width: 100%;
    position: absolute;
    top: -40px;
    margin: 0 -35px;
  }
}
.header--main-menu__mobile {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
.header--main-menu__mobile .menu-item {
  font-size: 36px;
  line-height: 70px;
  font-weight: normal;
}
.header--main-menu__mobile .menu-item.menu-item-has-children {
  position: relative;
  align-items: flex-start;
}
.header--main-menu__mobile .menu-item.clicked ul.sub-menu {
  display: flex;
}
.header--main-menu__mobile .menu-item.clicked ul.sub-menu .menu-item {
  color: #062e43;
}
.header--main-menu__mobile .menu-item.clicked ul.sub-menu .menu-item a {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header--main-menu__mobile .return-to-all.button-link {
  font-size: 22px;
  color: #F16A5C;
  text-align: left;
  justify-content: left;
  line-height: 2;
}
.header--main-menu__mobile ul.sub-menu {
  position: relative;
  top: 100px;
  left: 0;
  text-align: left;
  transform: unset;
  list-style: none;
  flex-direction: unset;
  margin: 0;
  max-width: 100%;
  display: none;
  padding: 0;
  background-color: transparent;
  gap: unset;
  color: #fff;
}
.header--main-menu__mobile.open-sub > .menu-item > a {
  display: none !important;
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.header--main-menu__mobile.open-sub .clicked ul.sub-menu {
  display: flex;
  flex-direction: column;
  top: 0;
}
.header--main-menu__mobile.open-sub .clicked ul.sub-menu .menu-item {
  color: #fff;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.header--main-menu__mobile.open-sub .clicked ul.sub-menu > .menu-item > a {
  display: unset !important;
  opacity: 1;
  visibility: visible;
  width: auto;
  font-size: 24px;
  line-height: 2;
}
@media only screen and (min-width: 1024.01px) {
  .header--main-menu .return-to-all.button-link {
    display: none;
  }
}
.header--mobile__menu--body {
  margin: 30px 15px;
}
@media only screen and (max-width: 1024px) {
  .header--button__wrapper {
    margin-left: auto;
  }
}
@media only screen and (max-width: 400px) {
  .header--button__wrapper {
    display: none;
  }
}
.header--button__link {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  background: #f16a5c;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 25px;
  border-radius: 200px;
  font-size: 22px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .header--button__link {
    padding: 1px 24px;
  }
}
.header--button__link:before {
  content: "";
  background-image: url(../images/icons/button-icon-top-left.svg);
  width: 25px;
  height: 25px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  position: absolute;
  top: 2px;
  left: -4px;
}
.header--button__mobile--menu__wrapper--link {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header--mobile__menu--wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999999;
  max-width: 100%;
  width: 100%;
  background: #062e43;
  background-image: url("../images/backgrounds/background-mobile-menu.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  display: none;
}
.header--mobile__menu--wrapper.clicked {
  max-width: 86%;
  opacity: 1;
  visibility: visible;
  display: block;
}
.header--mobile__menu--inner {
  padding: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.header--mobile__menu--header {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  width: 100%;
}
.header--mobile__menu--header a.header--button__mobile--menu__wrapper--link.close {
  position: absolute;
  top: 0;
  right: -22px;
  margin: 0;
  z-index: 1010;
}
.header--mobile__menu--body {
  position: absolute;
  top: 120px;
  bottom: 220px;
  left: 30px;
  right: 30px;
  overflow-y: auto;
  margin: 0;
}
.header--mobile__menu--footer {
  position: absolute;
  bottom: 20px;
  left: 30px;
  right: 30px;
}
.header--mobile__menu--footer .social--wrapper {
  margin-top: 80px;
}
.header--mobile__menu--footer .social--link, .header--mobile__menu--footer .social--icon {
  max-width: 18px !important;
  width: 100% !important;
  height: auto;
}
.header--mobile__menu--footer .social--link {
  margin-right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header--mobile__menu--footer .social--link:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 400px) {
  .header--mobile__menu--footer .header--button__wrapper {
    display: block;
  }
}

.top-header--wrapper {
  padding: 3px 0;
  margin-bottom: 16px;
}
.top-header--text {
  font-family: "Raleway", sans-serif;
  text-align: center;
  letter-spacing: 1px;
  font-size: 16px;
}
@media only screen and (max-width: 400px) {
  .top-header--text {
    font-size: 12px;
  }
}

.header-absolute .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #061820;
  opacity: 0.8;
}
.overlay.active {
  display: block;
}

.all-watch-inside.menu-item {
  display: none;
}
@media only screen and (max-width: 768px) {
  .all-watch-inside.menu-item {
    display: flex;
  }
  .all-watch-inside.menu-item a {
    font-size: 22px;
    color: #F16A5C;
    line-height: 2;
    height: auto;
    line-height: 2;
  }
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:MAIN]
   ========================================================================== */
.underline {
  text-decoration: underline;
}

.container--medium {
  max-width: var(--container-medium-width);
}

.container--large {
  max-width: var(--container-large-width);
}

.bg-color--light-blue {
  background-color: #00b4d1;
  color: #ffffff;
}
.bg-color--dark-blue {
  background-color: #062e43;
  color: #ffffff;
}
.bg-color--orange {
  background-color: #f16a5c;
  color: #ffffff;
}
.bg-color--white {
  background-color: #ffffff;
  color: #000000;
}

.color--dark-blue {
  color: #062e43;
}
.color--light-blue {
  color: #00b4d1;
}
.color--orange {
  color: #f16a5c;
}
.color--white {
  color: #ffffff;
}

.logo--name {
  font-size: 21px;
}
.logo--link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 13px 0;
  max-height: 35px;
  height: 100%;
}
.logo--link img {
  height: 56px;
  max-width: 100%;
  width: 100%;
}
@media only screen and (max-width: 500px) {
  .logo--link {
    margin-right: auto;
  }
}

.button-link--book-now {
  font-size: 25px;
  text-transform: uppercase;
  line-height: 32px;
  padding: 4px 14px;
  text-align: center;
  margin: 0 auto;
  display: table;
  position: relative;
}

.section--full-height {
  height: 100vw;
}

.label {
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 100%;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-height: 33px;
}

.checkbox {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.checkmark {
  position: absolute;
  top: 6px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 3px;
}

.label:hover .checkbox ~ .checkmark {
  background-color: transparent;
}

.checkbox:checked ~ .checkmark {
  background-color: transparent;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox:checked ~ .checkmark:after {
  display: block;
}

.label .checkmark:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid rgba(255, 255, 255, 0.9);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.title--big {
  font-size: 55px;
  line-height: 64px;
  font-family: "kg bless your heart", cursive;
  margin-bottom: 10px;
}
.title--big:before {
  content: "";
  width: 37px;
  height: 40px;
  background-color: #f16a5c;
  display: inline-block;
}
.title--medium {
  font-size: 43px;
  line-height: 52px;
  font-family: "kg bless your heart", cursive;
  margin-bottom: 20px;
}
.title--small {
  font-size: 36px;
  line-height: 44px;
  font-family: "kg bless your heart", cursive;
  margin-bottom: 35px;
}

.text {
  font-size: 15px;
  line-height: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin-bottom: 30px;
  display: block;
}

.button--link {
  font-size: 24px;
  line-height: 23px;
  font-family: "kg bless your heart", cursive;
  padding: 6px 24px;
  border: 1px solid #f16a5c;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 80px;
}

.btn--show-more {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  border: 1px solid #00B4D1;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 32px;
  border-radius: 200px;
  font-size: 30px;
  position: relative;
  cursor: pointer;
}
.btn--show-more::before {
  content: "";
  mask-image: url(../images/icons/button-icon-top-left.svg);
  -webkit-mask-image: url(../images/icons/button-icon-top-left.svg);
  -webkit-mask-size: contain;
  background-color: #F16A5C;
  width: 25px;
  height: 25px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  position: absolute;
  top: 2px;
  left: -4px;
}
.btn--show-more.d-none {
  display: none;
}

.row--btn {
  justify-content: center;
  margin-top: 60px;
}

.social--wrapper {
  max-width: 270px;
  margin: 14px 0 0;
  display: flex;
  gap: 25px;
}
@media only screen and (max-width: 500px) {
  .social--wrapper {
    margin: 16px auto;
  }
}
.social--wrapper .row {
  gap: 0;
}
.social--wrapper a, .social--wrapper img {
  width: 13px;
  height: 13px;
  position: relative;
  display: block;
}

.splide__pagination {
  margin-top: 30px;
}

.splide__pagination li {
  height: 19px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px;
}

button.splide__pagination__page {
  width: 8px;
  height: 8px;
  border-radius: 200px;
  background: #00B4D1;
  border: unset;
  box-shadow: unset;
  position: relative;
}
button.splide__pagination__page.is-active {
  background: #F16A5C;
  width: 6px;
  height: 6px;
}
button.splide__pagination__page.is-active:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #00B4D1;
  width: 14px;
  height: 14px;
  border-radius: 200px;
  background: transparent;
}

.btn {
  text-decoration: none;
  background-color: white;
  color: #888;
  border-radius: 5px;
  display: inline-block;
  margin: 10px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 5px;
}
.btn--orange {
  background-color: orange;
  color: #fff;
}

.section--booking .regiondo-catalog {
  background: transparent;
  padding: 0;
}
.section--booking .Re-c-MuiTextField-root {
  background-color: transparent !important;
}
.section--booking .Re-c-MuiInputLabel-outlined.Re-c-MuiInputLabel-shrink {
  color: #fff !important;
}
.section--booking .Re-c-MuiInputBase-root {
  color: #fff !important;
}
.section--booking .Re-c-MuiOutlinedInput-notchedOutline {
  border-color: #284d60 !important;
}
.section--booking .Re-c-jss79 {
  background-color: #f16a5c !important;
  border: none !important;
  color: #fff !important;
  text-transform: uppercase !important;
  border-radius: 22px !important;
  padding: 0 24px !important;
}
.section--booking #widget-container {
  /* Add your custom styles here */
  background-color: #f1f1f1;
}

.container--educational {
  margin-top: 60px;
  margin-bottom: 60px;
}

body {
  background-image: url(../images/aquarium-bg.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 768px) {
  #sb_instagram .sb_instagram_header .sbi_header_text, .sb_instagram_header .sbi_header_text {
    padding-top: 25px;
  }
  .section--homepage-events .btn--show-more {
    display: none !important;
  }
}
section.section.section--breadcrumb {
  z-index: 1;
  position: relative;
}

#breadcrumbs {
  text-align: center;
  margin-top: 50px;
  font-size: 12px;
}
#breadcrumbs > span {
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  justify-content: center;
  gap: 10px;
}
#breadcrumbs > span > span:hover {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}
#breadcrumbs > span > span.breadcrumb_last {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:FOOTER]
   ========================================================================== */
.site-footer {
  margin: 0;
}
.site-footer .row {
  gap: 32px 0;
}

@media only screen and (max-width: 768px) {
  .footer--logo {
    text-align: center;
  }
}
.footer--details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0 15px 0;
  color: #fff;
}
.footer--details__address, .footer--details__phone {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .footer--details__address, .footer--details__phone {
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .footer--details {
    font-family: "kg bless your heart", cursive;
    font-weight: normal;
    font-size: 28px;
    text-align: center;
  }
}
.footer--details .social--wrapper {
  max-width: 270px;
  margin: 10px 0;
}
@media only screen and (max-width: 768px) {
  .footer--details .social--wrapper {
    margin: 0 auto;
  }
}
.footer--details .social--wrapper .row {
  gap: 10px 30px;
}
.footer--details .social--wrapper a, .footer--details .social--wrapper img {
  width: 13px;
}
.footer--button__link {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  background: #f16a5c;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 45px;
  border-radius: 200px;
  font-size: 22px;
  position: relative;
}
.footer--button__link:before {
  content: "";
  background-image: url(../images/icons/button-icon-top-left.svg);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  position: absolute;
  top: 2px;
  left: -4px;
}
.footer--main-menu {
  list-style: none;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .footer--main-menu {
    text-align: center;
  }
}
.footer--main-menu a {
  margin-bottom: 3px;
  font-size: 14px;
}
.footer--newsletter__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .footer--newsletter__wrapper {
    display: none;
  }
}
.footer--newsletter__checkbox-wrapper {
  font-size: 11px;
  display: flex;
  gap: 10px;
}
.footer--newsletter__input-email {
  background: transparent;
  border: 2px solid #f16a5c;
  outline: unset;
  box-shadow: none;
  font-size: 14px;
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.3764705882);
}
.footer--newsletter__input-email::placeholder {
  color: rgba(255, 255, 255, 0.3764705882);
  opacity: 1;
}
.footer--wrapper {
  position: relative;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 101% 684px;
  padding-top: 70px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 500px) {
  .footer--wrapper {
    padding-top: 86px;
  }
}
.footer--wrapper .container {
  position: relative;
  z-index: 1;
}
.footer--wrapper .working--wrapper {
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  .footer--wrapper .working--wrapper {
    text-align: center;
    padding: 0;
  }
}
.footer--wrapper .working--title {
  color: #fff;
  font-weight: bolder;
}
@media only screen and (max-width: 768px) {
  .footer--wrapper .working--title {
    font-family: "kg bless your heart", cursive;
    font-weight: normal;
    font-size: 30px;
  }
}
.footer--wrapper .working--text {
  color: #fff;
  margin-bottom: 15px;
  display: block;
  font-size: 14px;
}
.footer--bottom {
  position: relative;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .footer--bottom {
    position: unset;
  }
}
.footer--bottom__text {
  font-size: 12px;
  max-width: 75%;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .footer--bottom__text {
    max-width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .footer--bottom__text a {
    color: #00b4d1;
  }
}
.footer--bottom__buttons-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
}
.footer--bottom__buttons-wrapper a {
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .footer--bottom__buttons-wrapper {
    text-align: center;
    bottom: 6%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.footer--mobile__newsletter {
  display: none;
}
@media only screen and (max-width: 768px) {
  .footer--mobile__newsletter {
    display: block;
  }
}
.footer--mobile__newsletter .footer--newsletter__title {
  font-family: "kg bless your heart", cursive;
  font-weight: normal;
  font-size: 32px;
  text-align: center;
}
.footer--mobile__newsletter .footer--newsletter__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer--mobile__newsletter .footer--newsletter__checkbox-wrapper {
  max-width: 215px;
  margin: 0 auto;
}
.footer--mobile__newsletter .footer--newsletter__input-email {
  background: transparent;
  border: 2px solid #f16a5c;
  outline: unset;
  box-shadow: none;
  font-size: 14px;
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.3764705882);
}
.footer--mobile__newsletter .footer--newsletter__input-email::placeholder {
  color: rgba(255, 255, 255, 0.3764705882);
  opacity: 1;
}

/* Homepage Styles */
.pagination ul {
  display: flex;
  align-items: center;
}

.section--hero {
  position: relative;
}
.section--hero .hero--slider {
  max-height: 912px;
  min-height: 685px;
  height: 100vw;
  position: relative;
}
.section--hero .hero--item__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  padding: 0 17px;
}
.section--hero .hero--item__subtitle {
  font-size: 29px;
  line-height: 34px;
  text-align: center;
}
.section--hero .hero--item__title {
  font-size: 76px;
  line-height: 66px;
  font-family: "kg bless your heart", cursive;
  text-align: center;
}
.section--hero .hero--item__text {
  font-size: 15px;
  line-height: 18px;
  margin-top: 15px;
  text-align: center;
}
@media only screen and (max-width: 500px) {
  .section--hero .hero--item__text {
    max-width: 196px;
    width: 100%;
  }
}
.section--hero .hero--item__button {
  border-radius: 200px;
  border: 1px solid #00B4D1;
  padding: 9px 39px 8px;
  margin-top: 20px;
  text-align: center;
}
.section--hero .splide__slide {
  max-height: 912px;
  min-height: 685px;
  overflow: hidden;
  height: 100vw;
}
.section--hero .overlay {
  position: absolute;
  z-index: 1;
  background: #000000;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  opacity: 0.34;
}
.section--hero .wp-video-shortcode,
.section--hero video {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 912px;
  min-height: 685px;
  height: 100vw;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.section--hero .pagination--wrapper {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 15px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 16px;
  position: absolute;
  max-width: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 0 25% 17px 17px;
}
@media only screen and (max-width: 500px) {
  .section--hero .pagination--wrapper {
    justify-content: left;
    padding: 0 17px 17px 17px;
  }
}
.section--hero .pagination--wrapper ul {
  margin: 0;
}
.section--hero .pagination--wrapper .separator {
  max-width: 56px;
  width: 100%;
  height: 1px;
  background-color: #00B4D1;
  display: inline-block;
  position: relative;
}
.section--hero .social {
  position: absolute;
  bottom: 25px;
  right: 65px;
  display: block;
}
@media only screen and (max-width: 500px) {
  .section--hero .social {
    display: none;
  }
}
.section--hero .social .social--wrapper .row {
  flex-direction: column;
  gap: 30px;
}
.section .analytics--wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 90px;
  margin-bottom: 95px;
  gap: 50px 0;
}
.section .analytics--wrapper .col-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.section .analytics--wrapper .col-inner:before {
  content: "";
  background: url(../images/educational/Seaweeds_2.svg);
  width: 56px;
  height: 104px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.section .analytics--number {
  font-size: 45px;
  line-height: 55px;
  font-family: "kg bless your heart", cursive;
  position: relative;
  z-index: 1;
}
.section .analytics--label {
  margin-top: 8px;
  font-size: 16px;
  line-height: 18px;
  max-width: 105px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section--about-us {
  padding-top: 69px;
}
.section--about-us-top {
  background: linear-gradient(#eafaff, #eafaff);
  background-image: url(../images/aboutus/texture-fish.jpg);
  background-size: contain;
  background-repeat: repeat;
  padding-top: 69px;
}
.section--about-us-top .button--link {
  margin-bottom: 210px;
}
.section--about-us-bottom {
  padding-top: 0;
}
.section--about-us .title--big {
  position: relative;
  padding-left: 27px;
}
.section--about-us .title--big::before {
  content: "";
  width: 37px;
  height: 40px;
  display: inline-block;
  background-color: transparent;
  background-image: url(../images/icons/deco-star.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 11px;
  transform: rotate(45deg);
}
.section--about-us .text p {
  max-width: 649px;
  font-weight: 400;
}
.section--about-us .title-wrapper {
  display: flex;
  justify-content: center;
}
.section--about-us .title-wrapper .title {
  position: relative;
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  font-size: 55px;
  font-weight: 400;
  display: inline-block;
  margin-top: 0;
}
.section--about-us .title-wrapper .title::after {
  content: "";
  width: calc(100% + 0px);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  background-image: url(../images/jobs-post/curve-stripe.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: contain;
}
.section--about-us .image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section--about-us .about-us-image__elements {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.section--about-us .about-us-image__elements .coral-left {
  position: absolute;
  bottom: -3px;
  left: -22px;
  z-index: 2;
}
.section--about-us .about-us-image__elements .coral-center {
  position: absolute;
  bottom: 12px;
  left: 38%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .section--about-us .about-us-image__elements .coral-center {
    display: none;
  }
}
.section--about-us .about-us-image__elements .logo-top-left {
  position: absolute;
  left: 16px;
  top: 16px;
}
.section--about-us .about-us-image__elements .logo-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
.section--about-us .about-us-image__elements .seaweed-center {
  position: absolute;
  bottom: 0;
  right: 226px;
  height: 145px;
}
.section--about-us .about-us-image__elements .seaweed-center img {
  height: 100%;
}
.section--about-us .about-us-image__elements .star-blue {
  position: absolute;
  bottom: -41px;
  right: 65px;
  width: 64px;
}
.section--about-us .about-us-image__elements .seaweed-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  height: 145px;
}
.section--about-us .about-us-image__elements .seaweed-left img {
  height: 100%;
}
.section--about-us .about-us-image__elements .seaweed-right {
  position: absolute;
  bottom: 12px;
  right: 22px;
  height: 145px;
}
.section--about-us .about-us-image__elements .seaweed-right img {
  height: 100%;
}
.section--about-us .about-us-image {
  margin-top: -135px;
}
.section .whats-inside--wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  margin: 0 -65px;
  margin-bottom: 150px;
}
@media only screen and (max-width: 1024px) {
  .section .whats-inside--wrapper {
    margin: 0 auto;
    margin-bottom: 75px;
  }
}
.section .whats-inside--wrapper > * {
  padding: 10px;
}
.section .whats-inside--wrapper .col-inner {
  background: #EAFAFF;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  padding: 14px 40px;
  border-radius: 38px;
  position: relative;
}
.section .whats-inside--wrapper .col-inner:before {
  content: "";
  width: 37px;
  height: 37px;
  background-image: url(../images/icons/deco-star.png);
  position: absolute;
  top: -3px;
  right: 20px;
}
.section .whats-inside--wrapper .col-inner .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: left;
  text-align: left;
  flex: 50%;
  max-width: 50%;
  width: 100%;
}
.section .whats-inside--icon {
  height: 73px;
  flex: 50%;
  max-width: 104px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section .whats-inside--sublabel {
  font-size: 17px;
  line-height: 20px;
}
.section .whats-inside--label {
  font-size: 37px;
  font-size: 2vw;
  line-height: 45px;
  font-family: "kg bless your heart", cursive;
}
@media only screen and (min-width: 1920.01px) {
  .section .whats-inside--label {
    font-size: 37px;
  }
}
@media only screen and (max-width: 1400px) {
  .section .whats-inside--label {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .section .whats-inside--label {
    font-size: 37px;
  }
}
.section--gallery {
  padding-top: 70px;
  padding-bottom: 70px;
}
.section--gallery .gallery--elements {
  padding-top: 24px;
  padding-bottom: 60px;
}
.section--gallery .gallery--elements span.image {
  width: 100%;
  display: block;
  height: 402px;
  background: rgba(0, 0, 0, 0.3764705882);
  border: 1px solid;
}
.section--gallery .gallery--name {
  font-size: 30px;
  line-height: 1;
}
.section--gallery .col-inner {
  position: relative;
  height: 100%;
  display: block;
}
.section--gallery .col-inner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.section--gallery .col-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #062E43;
  opacity: 0.25;
  transition: all 0.3s ease-in-out;
}
.section--gallery .col-inner:hover:before {
  opacity: 1;
  background-color: rgba(241, 106, 92, 0.3);
}
.section--gallery .wrapper {
  position: absolute;
  bottom: 60px;
  left: 30px;
  display: flex;
  flex-direction: column;
}
.section--gallery .button--link {
  margin: 0 auto;
  display: table;
}
.section--our-staff {
  padding: 0 30px;
}
.section--our-staff .inner-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.section--our-staff .inner-container div.staff--member .row > div {
  padding: 12px;
}
.section--our-staff .staff--member > .row {
  align-items: center;
  max-width: 351px !important;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
@media only screen and (max-width: 500px) {
  .section--our-staff .staff--member > .row {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.section--our-staff .staff--profile-img {
  border-radius: 50%;
  height: 130px;
  width: 130px;
  object-fit: cover;
  filter: saturate(0);
}
.section--our-staff .staff--meta {
  display: flex;
  flex-direction: column;
}
.section--our-staff .staff--meta__name {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  line-height: 29px;
  font-weight: bold;
  margin-bottom: 13px;
}
.section--our-staff .staff--meta__specialty {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
}
.section--testimonials {
  padding: 210px 0 200px;
  background: linear-gradient(#eafaff, #eafaff);
  background-image: url(../images/aboutus/texture-fish.jpg);
  background-size: contain;
  background-repeat: repeat;
  position: relative;
}
.section--testimonials .container {
  max-width: 850px;
}
.section--testimonials h2.title--small {
  max-width: 165px;
}
@media only screen and (max-width: 500px) {
  .section--testimonials h2.title--small {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 500px) {
  .section--testimonials .testimonials--wrapper {
    padding: 0 40px;
  }
}
.section--testimonials .testimonials--wrapper__bottom {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
@media only screen and (max-width: 500px) {
  .section--testimonials .testimonials--wrapper__bottom {
    justify-content: center;
  }
}
@media only screen and (max-width: 500px) {
  .section--testimonials .testimonials--text {
    text-align: center;
  }
}
.section--testimonials .platform--icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.section--testimonials .platform--separator {
  width: 23px;
  height: 1px;
  background: #062E43;
  display: inline-block;
  margin: 0 10px;
}
@media only screen and (max-width: 500px) {
  .section--testimonials .platform--separator {
    width: 14px;
  }
}
.section--testimonials .platform--name, .section--testimonials .platform--author {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
}
@media only screen and (max-width: 500px) {
  .section--testimonials .platform--name, .section--testimonials .platform--author {
    font-size: 11px;
    line-height: 13px;
  }
}
.section--testimonials .splide__pagination {
  position: absolute;
  top: -90px;
  margin: 0;
  right: 0;
}
@media only screen and (max-width: 500px) {
  .section--testimonials .splide__pagination {
    position: relative;
    margin: 15px 0;
    top: unset;
    right: unset;
  }
}
@media only screen and (max-width: 768px) {
  .section--testimonials .wprs_unslider {
    max-width: 300px;
    margin: auto;
    margin-top: 55px;
  }
  .section--testimonials .wprs_unslider .wprs_unslider-nav {
    top: -27px;
    right: 50%;
    transform: translateX(50%);
  }
}

.section--gallery .title {
  position: relative;
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  font-size: 55px;
  font-weight: 400;
  display: inline-block;
  margin-top: 0;
}
.section--gallery .title::after {
  content: "";
  width: calc(100% + 0px);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  background-image: url(../images/jobs-post/curve-stripe.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: contain;
}
.section--gallery .title::before {
  content: "";
  width: 37px;
  height: 37px;
  background-image: url(../images/icons/deco-star.png);
  position: absolute;
  top: 24px;
  right: -24px;
}
.section--gallery .title-wrapper {
  display: flex;
  justify-content: center;
}

.about-us-image {
  height: 406px;
  display: block;
  position: relative;
}

.wprs_unslider .wprev-slider.wprs_unslider-horizontal {
  margin: 0 !important;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding {
  padding: 0 !important;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col.l12 {
  padding: 0 !important;
  margin: 0 !important;
  position: relative !important;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col.l12 .wptripadvisor_t1_SPAN_5 {
  position: relative;
  left: 147px;
  bottom: 30px;
  overflow: initial;
  color: #f16a5c;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col.l12 .wptripadvisor_t1_SPAN_5::before {
  content: "";
  display: block;
  width: 23px;
  height: 1px;
  background-color: #111;
  position: absolute;
  left: -37px;
  top: 17px;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col .wptripadvisor_t1_P_3 {
  color: #062e43;
  font-size: 16px;
  font-style: normal;
  font-family: "Raleway", sans-serif;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col .wptripadvisor_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 {
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col .wptripadvisor_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1::before {
  display: none !important;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col .wptripadvisor_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1::after {
  display: none !important;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col .wptripadvisor_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 a {
  position: relative;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col .wptripadvisor_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 a img.wptripadvisor_t1_tripadvisor_logo {
  position: relative !important;
  width: 20px !important;
  height: 20px !important;
  left: 0;
  top: -2px;
  filter: hue-rotate(318deg) brightness(0.8);
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col .wptripadvisor_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 a::after {
  position: relative;
  content: "Trip advisor";
  color: #50ae3f;
  margin-left: 6px;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col .wptripadvisor_t1_P_3.wprev_preview_tcolor1_T1 .wptripadvisor_star_imgs_T1 {
  display: none !important;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding {
  padding: 0 !important;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col.l12 {
  padding: 0 !important;
  margin: 0 !important;
  position: relative !important;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col.l12 .wprevpro_t1_SPAN_5 {
  position: relative;
  left: 187px;
  bottom: 31px;
  overflow: initial;
  color: #f16a5c;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col.l12 .wprevpro_t1_SPAN_5::before {
  content: "";
  display: block;
  width: 23px;
  height: 1px;
  background-color: #111;
  position: absolute;
  left: -37px;
  top: 17px;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col .wprevpro_t1_P_3 {
  color: #062e43;
  font-size: 16px;
  font-style: normal;
  font-family: "Raleway", sans-serif;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col .wprevpro_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 {
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col .wprevpro_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1::before {
  display: none !important;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col .wprevpro_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1::after {
  display: none !important;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col .wprevpro_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 a {
  position: relative;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col .wprevpro_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 a img.wprevpro_t1_revpro_logo {
  position: relative !important;
  width: 20px !important;
  height: 20px !important;
  left: 0;
  top: -2px;
  filter: hue-rotate(318deg) brightness(0.8);
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col .wprevpro_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 a::after {
  position: relative;
  content: "Google Reviews";
  color: #062E43;
  margin-left: 6px;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col .wprevpro_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 img.wprevpro_t1_site_logo {
  position: relative;
  right: auto;
  left: 0;
  bottom: 2px;
  height: auto !important;
  width: 25px !important;
  margin-bottom: unset !important;
  background-color: #fff;
  border-radius: 50%;
  padding: 5px;
}
.wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col .wprevpro_t1_P_3.wprev_preview_tcolor1_T1 .wprevpro_star_imgs_T1 {
  display: none !important;
}
.wprs_unslider .wprs_unslider-nav {
  position: absolute;
  top: -80px;
  right: 0;
}
.wprs_unslider .wprs_unslider-nav ol {
  display: flex;
  align-items: center;
  gap: 20px;
}
.wprs_unslider .wprs_unslider-nav ol li {
  position: relative;
  margin: 0;
  border: none;
  padding: 0px !important;
  background: #00b4d1 !important;
  overflow: initial;
}
.wprs_unslider .wprs_unslider-nav ol li::before {
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 14px;
  height: 14px;
  display: none !important;
  border: 1px solid #00b4d1;
  display: block;
  border-radius: 50%;
}
.wprs_unslider .wprs_unslider-nav ol li.wprs_unslider-active {
  background: #f16a5c !important;
  width: 6px !important;
  height: 6px !important;
}
.wprs_unslider .wprs_unslider-nav ol li.wprs_unslider-active::before {
  display: block !important;
}
.wprs_unslider .wprs_unslider-arrow.next,
.wprs_unslider .wprs_unslider-arrow.prev {
  display: none !important;
}

.row--hbetween {
  justify-content: space-between;
}

.section--homepage-events {
  padding-top: 183px;
  margin-bottom: -115px;
  min-height: 583px;
}
.section--homepage-events .title-events {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  font-size: 36px;
}
.section--homepage-events .row--events-home {
  margin: 0 -4.5px;
  padding-top: 22px;
}
.section--homepage-events .row--events-home > * {
  padding: 4.5px;
}
@media only screen and (max-width: 768px) {
  .section--homepage-events .row--events-home {
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .section--homepage-events {
    margin-bottom: -140px;
  }
}

.event-home-card {
  display: flex;
  padding: 16px 13px;
  position: relative;
}
.event-home-card::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #062E43;
  transition: all ease-in-out 0.2s;
  opacity: 0.32;
  z-index: 2;
}
.event-home-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  position: relative;
  z-index: 3;
}
.event-home-card__none {
  min-height: 314px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.event-home-card__image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}
.event-home-card__date {
  display: flex;
  flex-direction: column;
  padding-bottom: 200px;
  transition: all ease-in-out 0.2s;
}
.event-home-card__date .number {
  font-size: 25px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}
.event-home-card__date .month {
  font-size: 11px;
}
.event-home-card__bottom .day {
  font-size: 8px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 7px;
  position: relative;
  top: 0;
  transition: all ease-in-out 0.2s;
}
.event-home-card__bottom .title {
  font-weight: 600;
  font-size: 11px;
  position: relative;
  top: 0;
  transition: all ease-in-out 0.2s;
}
.event-home-card__bottom .permalink-title {
  text-decoration: underline;
  font-size: 8px;
  position: absolute;
  transition: all ease-in-out 0.2s;
  bottom: 20px;
  opacity: 0;
}
.event-home-card:hover::before {
  background: rgb(6, 46, 67);
  background: linear-gradient(180deg, rgb(6, 46, 67) 0%, rgb(241, 106, 92) 100%);
}
.event-home-card:hover .event-home-card__bottom .day {
  top: -20px;
}
.event-home-card:hover .event-home-card__bottom .title {
  top: -20px;
}
.event-home-card:hover .event-home-card__bottom .permalink-title {
  text-decoration: underline;
  font-size: 8px;
  position: absolute;
}
.event-home-card:hover .event-home-card__bottom .permalink-title {
  bottom: 0;
  opacity: 1;
}
.event-home-card:hover .event-home-card__date {
  padding-bottom: 180px;
}
.event-home-card--none::before {
  background-color: #062E43 !important;
  background: #062E43 !important;
}
.event-home-card--none .title-wrapper .title {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
  border-radius: 200px;
  font-size: 34px;
  position: relative;
  cursor: pointer;
}
.event-home-card--none .title-wrapper .title::before {
  content: "";
  mask-image: url(../images/icons/button-icon-top-left.svg);
  -webkit-mask-image: url(../images/icons/button-icon-top-left.svg);
  -webkit-mask-size: contain;
  background-color: #F16A5C;
  width: 25px;
  height: 25px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  position: absolute;
  top: 2px;
  right: -20px;
}
.event-home-card--none .title-wrapper .title::after {
  content: "";
  width: calc(100% + 14px);
  opacity: 0.6;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  background-image: url(../images/jobs-post/curve-stripe.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: contain;
}

.section--homepage-tickets {
  padding: 150px 0;
  background: linear-gradient(#eafaff, #eafaff);
  background-image: url(../images/aboutus/texture-fish.jpg);
  background-size: contain;
  background-repeat: repeat;
  position: relative;
}
.section--homepage-tickets .container {
  position: relative;
}
.section--homepage-tickets .container::before {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  display: block;
  background-image: url(../images/aboutus/star-blue-dark.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 52px;
  top: -81px;
  transform: rotate(20deg);
}
.section--homepage-tickets .container::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  display: block;
  background-image: url(../images/aboutus/star-orange.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: 52px;
  top: -180px;
}
.section--homepage-tickets .container .coral-left {
  position: absolute;
  bottom: -150px;
  left: 52px;
  z-index: 2;
}
.section--homepage-tickets .container .coral-right {
  position: absolute;
  bottom: -150px;
  right: 52px;
  z-index: 2;
}
.section--homepage-tickets .container .coral-center {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
}
.section--homepage-tickets .container .element-top {
  max-width: 131px;
  object-fit: contain;
}
.section--homepage-tickets .slick-list {
  overflow: hidden;
}
.section--homepage-tickets .slick-track {
  display: flex;
}
.section--homepage-tickets .tickets-arrows {
  display: flex;
  justify-content: space-between;
  margin: 0 -40px;
  position: relative;
  z-index: 1;
  top: 160px;
}
.section--homepage-tickets .tickets-arrows .slick-prev {
  font-size: 0;
  width: 34px;
  height: 34px;
  border: none;
  background-image: url(../images/arrow-tickets.svg);
  background-size: 20px;
  background-color: #00b4d1;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.section--homepage-tickets .tickets-arrows .slick-next {
  font-size: 0;
  width: 34px;
  height: 34px;
  border: none;
  background-image: url(../images/arrow-tickets.svg);
  background-size: 20px;
  background-color: #00b4d1;
  background-position: center;
  transform: scaleX(-1);
  background-repeat: no-repeat;
  cursor: pointer;
}
.section--homepage-tickets .tickets-dots {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.section--homepage-tickets .tickets-dots .slick-dots {
  display: flex;
  align-items: center;
  gap: 20px;
}
.section--homepage-tickets .tickets-dots .slick-dots li {
  position: relative;
  margin: 0;
  border: none;
  font-size: 0;
  padding: 0px !important;
  background: #00b4d1 !important;
  overflow: initial;
  border-radius: 50%;
  width: 6px !important;
  height: 6px !important;
  cursor: pointer;
}
.section--homepage-tickets .tickets-dots .slick-dots li button {
  background: transparent;
  border: none;
}
.section--homepage-tickets .tickets-dots .slick-dots li::before {
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 14px;
  height: 14px;
  display: none !important;
  border: 1px solid #00b4d1;
  display: block;
  border-radius: 50%;
}
.section--homepage-tickets .tickets-dots .slick-dots li.slick-active {
  background: #f16a5c !important;
  width: 6px !important;
  height: 6px !important;
}
.section--homepage-tickets .tickets-dots .slick-dots li.slick-active::before {
  display: block !important;
}
.section--homepage-tickets .title-wrapper {
  display: flex;
  justify-content: center;
}
.section--homepage-tickets .title-wrapper .title {
  position: relative;
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  font-size: 55px;
  font-weight: 400;
  display: inline-block;
  margin-top: 0;
  color: #062E43;
}
.section--homepage-tickets .title-wrapper .title::after {
  content: "";
  width: 37px;
  height: 37px;
  background-image: url(../images/aboutus/star-blue.png);
  position: absolute;
  background-size: contain;
  top: 19px;
  left: -29px;
  transform: rotate(44deg);
}
.section--homepage-tickets .description {
  text-align: center;
  margin: 0 auto;
  color: #062E43;
  font-weight: 600;
}
.section--homepage-tickets .homepage-tickets {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
.section--homepage-tickets .homepage-tickets .title-wrapper {
  text-align: center;
}
.section--homepage-tickets .homepage-tickets .title-wrapper h1 {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  font-size: 45px;
  text-align: center;
  letter-spacing: -0.53px;
  margin: 0px;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.section--homepage-tickets .homepage-tickets .title-wrapper h1:before {
  content: "";
  background-image: url(../images/jobs-post/curve-stripe.png);
  width: 273px;
  height: 56px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 233px;
  position: absolute;
  top: 2px;
  left: -42px;
  z-index: -1;
}
.section--homepage-tickets .homepage-tickets .title-wrapper h1:after {
  content: "";
  background-image: url(../images/icons/starfish_opale.png);
  width: 30px;
  height: 26px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 24px;
  position: absolute;
  top: 21px;
  left: -17px;
}
.section--homepage-tickets .homepage-tickets .tickets-row {
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .tickets-row {
    flex-direction: column;
    margin-top: 40px;
  }
}
.section--homepage-tickets .homepage-tickets .element {
  position: relative;
}
.section--homepage-tickets .homepage-tickets .element-top {
  position: absolute;
  top: -37px;
  left: 79px;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .element-top {
    display: none;
  }
}
.section--homepage-tickets .homepage-tickets .element-top-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .element-top-mobile {
    display: block;
    margin: auto;
  }
}
.section--homepage-tickets .homepage-tickets .element-left {
  position: absolute;
  right: -16px;
  top: -12px;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .element-left {
    display: none;
  }
}
.section--homepage-tickets .homepage-tickets .element-left-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .element-left-mobile {
    display: block;
    margin: auto;
    margin-top: -53px;
    padding-bottom: 20px;
  }
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper {
  justify-content: space-between;
  margin: 50px 0;
  justify-items: center;
  display: flex;
  flex-direction: column;
  flex-basis: 30%;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .tickets-wrapper::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 40px;
    background-color: #EAFAFF;
    top: -50px;
    left: 46%;
  }
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper__ticketname {
  text-align: center;
  color: #062e43;
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .tickets-wrapper__ticketname {
    color: #062e43;
    font-size: 30px;
    line-height: 1;
    padding: 20px 0;
    padding-bottom: 0;
  }
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper__list li {
  color: #062e43 !important;
  position: relative;
  padding-left: 10px;
  font-size: 13px;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper__list li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  display: block;
  background-color: #062e43;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper__list li span {
  color: #00B4D1;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper__age {
  color: #00B4D1;
  font-size: 17px;
  margin: 0 0 10px 0;
  text-align: center;
  line-clamp: 2;
  line-height: 1;
  letter-spacing: -0.37px;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .book-now-button {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  background: #f16a5c;
  color: #fff;
  padding: 2px 29px;
  border-radius: 200px;
  font-size: 25px;
  position: relative;
  margin: auto;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .book-now-button:before {
  content: "";
  background-image: url(../images/icons/button-icon-top-left.svg);
  width: 20px;
  height: 20px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  position: absolute;
  top: -3px;
  left: -1px;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .book-now-button-yellow {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  background: #FFC800;
  color: #fff;
  padding: 2px 29px;
  border-radius: 200px;
  font-size: 25px;
  position: relative;
  margin: auto;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .book-now-button-yellow:before {
  content: "";
  background-image: url(../images/icons/button-icon-top-left-blue.png);
  width: 20px;
  height: 20px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  position: absolute;
  top: -3px;
  left: -1px;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .offer {
  justify-content: center;
  padding: 14px 18px;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .tickets-wrapper .offer {
    padding: 0px 0px 10px;
  }
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .offer-title--right {
  font-size: 13px;
  text-align: right;
  color: #062e43;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .offer-title--left {
  font-size: 13px;
  text-align: left;
  color: #062e43;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .offer-price {
  font-size: 23px;
  color: #F16A5C;
  FONT-WEIGHT: 400;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .offer-separator {
  height: 10px;
  width: 2px;
  background: #F16A5C;
  margin: 3px 6px;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .offer2 {
  justify-content: center;
  padding: 5px 18px;
  margin-top: -5px;
  flex-wrap: nowrap;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .offer2-title--right {
  font-size: 13px;
  text-align: right;
  color: #062e43;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .offer2-title--left {
  font-size: 13px;
  text-align: left;
  color: #062e43;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .offer2-price {
  font-size: 23px;
  color: #F16A5C;
  FONT-WEIGHT: 400;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .offer2-separator {
  height: 10px;
  width: 2px;
  background: #F16A5C;
  margin: 3px 6px;
}
.section--homepage-tickets .homepage-tickets .tickets-wrapper .offer2-subtitle {
  color: #00B4D1;
  font-size: 13px;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .white-tile {
    background-color: #EAFAFF;
    border-radius: 40px;
    padding: 40px 0;
  }
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .white-tile::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 40px;
    background-color: #EAFAFF;
    top: -50px;
    left: 46%;
  }
}
.section--homepage-tickets .homepage-tickets .white-tile .tickets-wrapper__ticketname {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .white-tile .tickets-wrapper__ticketname {
    color: #062E43;
    font-size: 37px;
  }
}
.section--homepage-tickets .homepage-tickets .white-tile__age {
  color: #00B4D1;
  font-size: 17px;
  margin: 10px 0;
  text-align: center;
  line-clamp: 2;
}
.section--homepage-tickets .homepage-tickets .white-tile .offer {
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .white-tile .offer {
    padding: 0px 0px 10px;
  }
}
.section--homepage-tickets .homepage-tickets .white-tile .offer-title--right {
  font-size: 13px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .white-tile .offer-title--right {
    color: #062E43;
  }
}
.section--homepage-tickets .homepage-tickets .white-tile .offer-title--left {
  font-size: 13px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .white-tile .offer-title--left {
    color: #062E43;
  }
}
.section--homepage-tickets .homepage-tickets .white-tile .offer-price {
  font-size: 23px;
  color: #F16A5C;
  FONT-WEIGHT: 400;
}
.section--homepage-tickets .homepage-tickets .white-tile .offer-separator {
  height: 10px;
  width: 2px;
  background: #F16A5C;
  margin: 3px 6px;
}
.section--homepage-tickets .homepage-tickets .white-tile .offer2 {
  justify-content: center;
  padding: 5px 18px;
  margin-top: -5px;
}
.section--homepage-tickets .homepage-tickets .white-tile .offer2-title--right {
  font-size: 13px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .white-tile .offer2-title--right {
    color: #062E43;
  }
}
.section--homepage-tickets .homepage-tickets .white-tile .offer2-title--left {
  font-size: 13px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .white-tile .offer2-title--left {
    color: #062E43;
  }
}
.section--homepage-tickets .homepage-tickets .white-tile .offer2-price {
  font-size: 23px;
  color: #F16A5C;
  FONT-WEIGHT: 400;
}
.section--homepage-tickets .homepage-tickets .white-tile .offer2-separator {
  height: 10px;
  width: 2px;
  background: #F16A5C;
  margin: 3px 6px;
}
.section--homepage-tickets .homepage-tickets .info {
  text-align: center;
  margin: 50px 50px 0 50px;
  padding: 40px 50px;
  border: #fff 2px solid;
  border-radius: 40px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .info {
    padding: 20px 25px;
    margin: 20px 10px 10px 10px;
  }
}
.section--homepage-tickets .homepage-tickets .info .spacer {
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .section--homepage-tickets .homepage-tickets .info .spacer {
    padding: 10px 0;
  }
}
.section--homepage-tickets .homepage-tickets .info::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background-color: #F16A5C;
  border-radius: inherit;
  transform: rotate(5deg);
  z-index: -1;
}
.section--homepage-tickets .homepage-tickets .info--title {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  color: #fff;
  font-size: 25px;
  margin: auto;
}
.section--homepage-tickets .homepage-tickets .info--subtitle {
  color: #fff;
  font-size: 13px;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .section--homepage-tickets .tickets-arrows {
    margin: 0 16px !important;
    display: none;
  }
  .section--homepage-tickets .container::before {
    opacity: 0.3;
  }
  .section--hero .hero--item__title {
    font-size: 53px;
    line-height: 49px;
  }
}
.section--page .page-image {
  position: relative;
  padding-top: 50px;
  text-align: center;
  z-index: -1;
}
.section--page .page-image__element-left {
  position: absolute;
  left: -20px;
  bottom: 0;
}
.section--page .page-image__element-left img {
  width: auto;
  width: 68px;
  max-height: 104px;
}
@media only screen and (max-width: 500px) {
  .section--page .page-image__element-left img {
    display: none;
  }
}
.section--page .page-image__element-right {
  position: absolute;
  right: 0;
  bottom: -15px;
}
.section--page .page-image__element-right img {
  width: 82px;
  max-height: 152px;
}
@media only screen and (max-width: 500px) {
  .section--page .page-image__element-right img {
    display: none;
  }
}
.section--page .page-title {
  position: relative;
  margin-top: -70px;
}
.section--page .page-title__title {
  font-size: 55px;
  line-height: 66px;
  font-family: "kg bless your heart", cursive;
  text-align: center;
}
@media only screen and (max-width: 500px) {
  .section--page .page-title__title {
    font-size: 45px;
  }
}
.section--page .page-title__element-star {
  position: absolute;
  right: 110px;
  bottom: 0;
}
@media only screen and (max-width: 500px) {
  .section--page .page-title__element-star {
    right: -8px;
  }
}
.section--page .page-content {
  padding: 16px 0;
}
.section--page .page-content p {
  margin-bottom: 12px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}
.section--page .page-small-images {
  padding: 60px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  overflow: hidden;
}
.section--page .book-now-button {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  background: #f16a5c;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 45px;
  border-radius: 200px;
  font-size: 22px;
  position: relative;
}
.section--page .book-now-button:before {
  content: "";
  background-image: url(../images/icons/button-icon-top-left.svg);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  position: absolute;
  top: 2px;
  left: -4px;
}

.section--jobs .jobs-page-content p {
  margin-bottom: 15px;
}
.section--jobs .jobs-content p {
  font-size: 15px;
}
.section--jobs .jobs-content h2 {
  padding-top: 40px;
  padding-bottom: 10px;
  font-size: 15px;
}
.section--jobs .jobs-content li {
  list-style-type: none;
  text-decoration: none;
  padding-left: 5px;
  font-size: 15px;
}
.section--jobs .jobs-content .job-title-wrapper {
  position: relative;
}
.section--jobs .jobs-content .job-title-wrapper__title {
  font-size: 35px;
}
@media only screen and (max-width: 500px) {
  .section--jobs .jobs-content .job-title-wrapper__title {
    padding-bottom: 0;
  }
}
.section--jobs .jobs-content .job-title-wrapper__background {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: -1;
}
.section--jobs .jobs-content .job-location-date__location-aquarium {
  display: inline-block;
  color: #EF6179;
  padding-bottom: 5px;
}
.section--jobs .jobs-content .job-location-date__location {
  display: inline-block;
  color: #EF6179;
  font-weight: bold;
}
.section--jobs .jobs-content .job-description {
  padding: 30px 0;
}
@media only screen and (max-width: 500px) {
  .section--jobs .jobs-content .job-description {
    padding-bottom: 0;
  }
}
.section--jobs .jobs-content .job-description__title {
  margin-bottom: 10px;
  display: inline-block;
  color: #fff;
}
.section--jobs .jobs-content .job-description__reports-to > * {
  display: inline-block;
}
.section--jobs .jobs-content .job-description__reports-to > *:first-child {
  font-weight: bold;
}
.section--jobs .jobs-content .job-description__status > * {
  display: inline-block;
}
.section--jobs .jobs-content .job-description__status > *:first-child {
  font-weight: bold;
}
.section--jobs .jobs-content .address-bottom {
  padding: 30px 0;
}
.section .apply-now-button {
  font-family: var(--main-font);
  text-transform: uppercase;
  border: 2px solid #00B4D1;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 45px;
  border-radius: 200px;
  font-size: 22px;
  position: relative;
}
.section .apply-now-button:before {
  content: "";
  background-image: url(../images/icons/deco-star.png);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  position: absolute;
  top: -4px;
  left: -1px;
  transform: rotate(45deg);
}

.section--pageabout p {
  font-size: 15px;
}
.section--pageabout .title-wrapper {
  position: relative;
  text-align: center;
  margin-top: 250px;
}
.section--pageabout .title-wrapper__title {
  font-size: 35px;
}
@media only screen and (max-width: 500px) {
  .section--pageabout .title-wrapper__title {
    padding-bottom: 0;
  }
}
.section--pageabout .title-wrapper__background {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
.section--pageabout .title-wrapper__element-left {
  position: absolute;
  top: -62px;
}
.section--pageabout .title-wrapper__element-left img {
  width: auto;
  width: 68px;
  max-height: 104px;
}
@media only screen and (max-width: 500px) {
  .section--pageabout .title-wrapper__element-left img {
    display: none;
  }
}
.section--pageabout .title-wrapper__element-right {
  position: absolute;
  right: 0;
  top: -100px;
}
.section--pageabout .title-wrapper__element-right img {
  width: 82px;
  max-height: 152px;
}
@media only screen and (max-width: 500px) {
  .section--pageabout .title-wrapper__element-right img {
    display: none;
  }
}
.section--pageabout .content-wrapper {
  position: relative;
  text-align: center;
  padding-top: 70px;
}
.section--pageabout .content-wrapper h2 {
  font-size: 35px;
}
.section--pageabout .content-wrapper__image {
  display: block;
  text-align: center;
  z-index: -1;
  position: relative;
}
.section--pageabout .content-wrapper__image video {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 500px) {
  .section--pageabout .content-wrapper__image {
    padding: 0 40px;
  }
}
.section--pageabout .content-wrapper__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #062e43, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.section--pageabout .content-wrapper__title {
  position: relative;
  margin-top: -40px;
}
@media only screen and (max-width: 500px) {
  .section--pageabout .content-wrapper__title {
    padding-bottom: 0;
  }
}
.section--pageabout .content-wrapper__background {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
.section--pageabout .content-wrapper__element-left {
  position: absolute;
  top: -62px;
}
@media only screen and (max-width: 500px) {
  .section--pageabout .content-wrapper__element-left {
    top: -98px;
  }
}
.section--pageabout .content-wrapper__element-left img {
  width: auto;
  width: 68px;
  max-height: 104px;
}
@media only screen and (max-width: 500px) {
  .section--pageabout .content-wrapper__element-left img {
    width: 60px;
    max-height: 1124px;
  }
}
.section--pageabout .content-wrapper__element-right {
  position: absolute;
  right: 0;
  top: -100px;
}
.section--pageabout .content-wrapper__element-right img {
  width: 82px;
  max-height: 152px;
}
@media only screen and (max-width: 500px) {
  .section--pageabout .content-wrapper__element-right img {
    width: 73px;
    max-height: 135px;
  }
}
.section--pageabout .book-now-button-wrapper {
  margin-top: 55px;
  margin-bottom: 75px;
}
.section--pageabout .book-now-button {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  background: #f16a5c;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 45px;
  border-radius: 200px;
  font-size: 22px;
  position: relative;
}
.section--pageabout .book-now-button:before {
  content: "";
  background-image: url(../images/icons/button-icon-top-left.svg);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  position: absolute;
  top: 2px;
  left: -4px;
}
.section--our-staff-aboutus {
  padding: 0 30px;
}
.section--our-staff-aboutus .inner-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.section--our-staff-aboutus .inner-container div.staff--member .row > div {
  padding: 12px;
}
.section--our-staff-aboutus .staff--member > .row {
  align-items: center;
  max-width: 351px !important;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
@media only screen and (max-width: 500px) {
  .section--our-staff-aboutus .staff--member > .row {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.section--our-staff-aboutus .staff--profile-img {
  border-radius: 50%;
  max-width: 130px;
  height: 130px;
  object-fit: cover;
  filter: saturate(0);
}
.section--our-staff-aboutus .staff--meta {
  display: flex;
  flex-direction: column;
}
.section--our-staff-aboutus .staff--meta__name {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  line-height: 29px;
  font-weight: bold;
  margin-bottom: 13px;
}
.section--our-staff-aboutus .staff--meta__specialty {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
}
.section--abouttestimonials {
  padding: 77px 0 20px;
  margin-top: 0px;
  background: #062E43;
}
.section--abouttestimonials h2.title--small {
  max-width: 165px;
}
@media only screen and (max-width: 500px) {
  .section--abouttestimonials h2.title--small {
    margin: 0 auto;
  }
}
.section--abouttestimonials .testimonials--title-wrapper {
  position: relative;
}
.section--abouttestimonials .testimonials--title-wrapper h2 {
  position: relative;
  z-index: 1;
}
.section--abouttestimonials .testimonials--title-wrapper .background {
  position: absolute;
  top: 10px;
  left: 40px;
  right: 0;
  margin: 0 auto;
  z-index: 0;
}
@media only screen and (max-width: 500px) {
  .section--abouttestimonials .testimonials--wrapper {
    padding: 0 40px;
  }
}
.section--abouttestimonials .testimonials--wrapper__bottom {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
@media only screen and (max-width: 500px) {
  .section--abouttestimonials .testimonials--wrapper__bottom {
    justify-content: center;
  }
}
@media only screen and (max-width: 500px) {
  .section--abouttestimonials .testimonials--text {
    text-align: center;
  }
}
.section--abouttestimonials .platform--icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.section--abouttestimonials .platform--separator {
  width: 23px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin: 0 10px;
}
@media only screen and (max-width: 500px) {
  .section--abouttestimonials .platform--separator {
    width: 14px;
  }
}
.section--abouttestimonials .platform--name, .section--abouttestimonials .platform--author {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
}
@media only screen and (max-width: 500px) {
  .section--abouttestimonials .platform--name, .section--abouttestimonials .platform--author {
    font-size: 11px;
    line-height: 13px;
  }
}
.section--abouttestimonials .splide__pagination {
  position: absolute;
  top: -90px;
  margin: 0;
  right: 0;
}
@media only screen and (max-width: 500px) {
  .section--abouttestimonials .splide__pagination {
    position: relative;
    margin: 15px 0;
    top: unset;
    right: unset;
  }
}

.section--testimonials-about-us {
  background-image: none;
  padding: 160px 0 200px;
}
.section--testimonials-about-us .title--small.color--dark-blue {
  color: #fff !important;
}
.section--testimonials-about-us .wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col .wptripadvisor_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 {
  border: none !important;
}
.section--testimonials-about-us .wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col .wptripadvisor_t1_P_3 {
  color: #fff !important;
}
.section--testimonials-about-us .wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wptripadvisor_t1_outer_div.w3_wprs-row-padding .wptripadvisor_t1_DIV_1.w3_wprs-col.l12 .wptripadvisor_t1_SPAN_5::before {
  background-color: #fff !important;
}
.section--testimonials-about-us .wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col .wprevpro_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 {
  border: none !important;
}
.section--testimonials-about-us .wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col .wprevpro_t1_P_3 {
  color: #fff !important;
}
.section--testimonials-about-us .wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col.l12 .wprevpro_t1_SPAN_5::before {
  background-color: #fff !important;
}
.section--testimonials-about-us .wprs_unslider .wprev-slider.wprs_unslider-horizontal .wprs_unslider-wrap > li .wprevpro_t1_outer_div.w3_wprs-row-padding .wprevpro_t1_DIV_1.w3_wprs-col .wprevpro_t1_DIV_2.wprev_preview_bg1_T1.wprev_preview_bradius_T1 a::after {
  color: #fff !important;
}
@media only screen and (max-width: 768px) {
  .section--testimonials-about-us .wprs_unslider {
    max-width: 300px;
    margin: auto;
    margin-top: 55px;
  }
  .section--testimonials-about-us .wprs_unslider .wprs_unslider-nav {
    top: -27px;
    right: 50%;
    transform: translateX(50%);
  }
}

.section--jobs-our-cafe .top-wrapper {
  justify-content: space-around;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 768px) {
  .section--jobs-our-cafe .top-wrapper {
    flex-direction: column-reverse;
  }
}
.section--jobs-our-cafe .top-wrapper p {
  font-size: 15px;
}
.section--jobs-our-cafe .top-wrapper .top-left-wrapper {
  text-align: start;
  flex-basis: 50%;
  margin-right: 50px;
}
@media only screen and (max-width: 768px) {
  .section--jobs-our-cafe .top-wrapper .top-left-wrapper {
    flex-basis: 100%;
    margin: auto;
  }
}
.section--jobs-our-cafe .top-wrapper .top-left-wrapper .title-wrapper {
  position: relative;
}
.section--jobs-our-cafe .top-wrapper .top-left-wrapper .title-wrapper__title {
  position: relative;
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  font-size: 55px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 0;
}
.section--jobs-our-cafe .top-wrapper .top-left-wrapper .title-wrapper__background {
  position: absolute;
  top: 59px;
  left: -32px;
  max-width: 256px;
  width: 120%;
  z-index: -1;
}
.section--jobs-our-cafe .top-wrapper .top-left-wrapper .title-wrapper__description {
  font-size: 15px;
  margin-bottom: 24px;
}
.section--jobs-our-cafe .top-wrapper .top-right-wrapper {
  text-align: center;
  flex-grow: 1;
  position: relative;
}
.section--jobs-our-cafe .top-wrapper .top-right-wrapper__image {
  margin-top: 3.67em;
}
.section--jobs-our-cafe .top-wrapper .top-right-wrapper__image img {
  max-width: 580px;
  width: 100%;
  height: auto;
}
.section--jobs-our-cafe .top-wrapper .top-right-wrapper__element-left {
  position: absolute;
  bottom: 0;
}
.section--jobs-our-cafe .top-wrapper .top-right-wrapper__element-left img {
  width: auto;
  width: 68px;
  max-height: 104px;
}
@media only screen and (max-width: 500px) {
  .section--jobs-our-cafe .top-wrapper .top-right-wrapper__element-left img {
    display: none;
  }
}
.section--jobs-our-cafe .top-wrapper .top-right-wrapper__element-right {
  position: absolute;
  right: 0;
  bottom: 0;
}
.section--jobs-our-cafe .top-wrapper .top-right-wrapper__element-right img {
  width: 82px;
  max-height: 152px;
}
@media only screen and (max-width: 500px) {
  .section--jobs-our-cafe .top-wrapper .top-right-wrapper__element-right img {
    display: none;
  }
}
.section--jobs-our-cafe .top-wrapper .title-wrapper_icons {
  padding-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: flex-end;
  gap: 25px;
}
@media only screen and (max-width: 768px) {
  .section--jobs-our-cafe .top-wrapper .title-wrapper_icons {
    justify-content: center;
  }
}
.section--jobs-our-cafe .top-wrapper .title-wrapper_icons p {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  font-size: 20px;
}
.section--jobs-our-cafe .top-wrapper .title-wrapper_icons .title-wrapper__icon-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section--jobs-our-cafe .cafe-image-wrapper {
  margin-top: 75px;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.section--jobs-our-cafe .cafe-content {
  padding: 63px 0;
}
.section--jobs-our-cafe .cafe-content p {
  margin-bottom: 50px;
}

.btn.btn--visit-us {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  background: #f16a5c;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 45px;
  border-radius: 200px;
  font-size: 22px;
  position: relative;
  margin-bottom: 35px;
  margin-top: -10px;
}
.btn.btn--visit-us::before {
  content: "";
  background-image: url(../images/icons/button-icon-top-left.svg);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  position: absolute;
  top: 2px;
  left: -4px;
}

.cafe-content h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 18px;
}
.cafe-content p {
  text-align: center;
  font-weight: 400;
  font-size: 15px;
}

@media only screen and (max-width: 768px) {
  .section--page-jobs-opportunities {
    padding: 0 20px;
  }
}
.section--page-jobs-opportunities p {
  font-size: 13px;
}
.section--page-jobs-opportunities .job-location-date {
  margin-top: 12px;
}
.section--page-jobs-opportunities .title-wrapper {
  position: relative;
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .section--page-jobs-opportunities .title-wrapper {
    font-size: 30px;
  }
}
.section--page-jobs-opportunities .title-wrapper__title {
  font-size: 35px;
  position: relative;
}
@media only screen and (max-width: 500px) {
  .section--page-jobs-opportunities .title-wrapper__title {
    padding-bottom: 0;
    margin: 0 0 0 -26px;
  }
}
.section--page-jobs-opportunities .title-wrapper__background {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
.section--page-jobs-opportunities .title-wrapper__element {
  position: absolute;
  right: -25px;
  bottom: 6px;
}
@media only screen and (max-width: 768px) {
  .section--page-jobs-opportunities .title-wrapper__element {
    font-size: 30px;
    right: -33px;
  }
}
.section--page-jobs-opportunities .title-wrapper__element img {
  width: 33px;
}
.section--page-jobs-opportunities .jobs-content {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}
.section--page-jobs-opportunities .jobs-content--link {
  display: block;
}
.section--page-jobs-opportunities .jobs-content__element {
  position: absolute;
  left: -31px;
  top: 50px;
  width: 20px;
}
@media only screen and (max-width: 768px) {
  .section--page-jobs-opportunities .jobs-content__element {
    width: 20px;
  }
}
.section--page-jobs-opportunities .jobs-content__element-arrow {
  position: absolute;
  top: 50px;
  width: 26px;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .section--page-jobs-opportunities .jobs-content__element-arrow {
    right: -30px;
  }
}
.section--page-jobs-opportunities .jobs-content p {
  font-size: 15px;
}
.section--page-jobs-opportunities .jobs-content h2 {
  padding-top: 44px;
  font-size: 15px;
}
.section--page-jobs-opportunities .jobs-content li {
  list-style-type: none;
  text-decoration: none;
  padding-left: 5px;
  font-size: 15px;
}
.section--page-jobs-opportunities .jobs-content .job-title-wrapper {
  position: relative;
}
.section--page-jobs-opportunities .jobs-content .job-title-wrapper__title {
  font-size: 25px;
}
@media only screen and (max-width: 500px) {
  .section--page-jobs-opportunities .jobs-content .job-title-wrapper__title {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 500px) {
  .section--page-jobs-opportunities .jobs-content .job-location-date {
    font-size: 15px;
  }
}
.section--page-jobs-opportunities .jobs-content .job-location-date__location-aquarium {
  display: inline-block;
  color: #EF6179;
  padding-bottom: 5px;
}
.section--page-jobs-opportunities .jobs-content .job-location-date__location {
  display: inline-block;
  color: #EF6179;
  font-weight: bold;
}
.section--page-jobs-opportunities-no-jobs {
  padding-top: 150px;
  padding-bottom: 150px;
}
.section--page-jobs-opportunities-no-jobs .no-jobs-text {
  max-width: 566px;
  text-align: center;
  margin: auto;
  font-size: 16px;
}
.section--page-jobs-opportunities-no-jobs .title-wrapper__title {
  margin-top: 0;
}

.content__details--stripped p {
  margin-bottom: 24px;
}

.content__title--stripped {
  font-size: 55px !important;
  font-family: "kg bless your heart", cursive;
  text-align: center;
  margin-top: 0;
}

.section__page-event-single .top-wrapper {
  padding-top: 100px;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .section__page-event-single .top-wrapper {
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
  }
}
.section__page-event-single .top-wrapper__details {
  font-size: 17px;
  color: #EF6179;
  letter-spacing: -0.26px;
}
.section__page-event-single .top-wrapper__title {
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.4px;
}
.section__page-event-single .image-wrapper {
  text-align: center;
  padding: 55px 0 65px;
}
@media only screen and (max-width: 768px) {
  .section__page-event-single .image-wrapper {
    padding: 25px 0 15px;
  }
}
.section__page-event-single .image-wrapper img {
  max-width: 648px;
  width: 100%;
  height: auto;
}
.section__page-event-single .content__details p {
  font-size: 15px;
  letter-spacing: -0.26px;
}
.section__page-event-single .content__title {
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.4px;
}
.section__page-event-single .book-now-button-wrapper {
  margin-top: 33px;
  margin-bottom: 65px;
}
.section__page-event-single .book-now-button {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  background: #f16a5c;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 45px;
  border-radius: 200px;
  font-size: 22px;
  position: relative;
}
.section__page-event-single .book-now-button:before {
  content: "";
  background-image: url(../images/icons/button-icon-top-left.svg);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  position: absolute;
  top: 2px;
  left: -4px;
}
.section__page-event-single .event-thumbnails {
  text-align: center;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .section__page-event-single .event-thumbnails {
    flex-basis: 100%;
  }
}
.section__page-event-single .event-thumbnails img {
  max-width: 283px;
  width: 100%;
  height: auto;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .section__page-event-single .event-thumbnails img {
    max-width: unset;
    padding: 0 0 15px;
  }
}
.section__page-event-single .event-thumbnails__day {
  position: absolute;
  letter-spacing: -0.67px;
  left: 10px;
  top: -2px;
  font-size: 40px;
  z-index: 2;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .section__page-event-single .event-thumbnails__day {
    top: 12px;
  }
}
.section__page-event-single .event-thumbnails__date {
  position: absolute;
  left: 12px;
  top: 43px;
  text-transform: uppercase;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .section__page-event-single .event-thumbnails__date {
    top: 59px;
  }
}
.section__page-event-single .event-thumbnails .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 46, 67, 0.5);
  z-index: -1;
}

.section--events__related {
  padding-bottom: 100px;
}
.section--events__related .container {
  max-width: 809px;
}
.section--events__related .row {
  margin: -7.5px;
}
.section--events__related .row > * {
  padding: 7.5px;
}

.section--contact-map {
  position: relative;
  margin-top: -107px;
}
.section--contact-map iframe .gm-style .place-card-large {
  display: none !important;
}
.section--contact-map .overlay {
  width: 100%;
  height: 470px;
  position: absolute;
  top: 30px;
  background-color: rgba(6, 46, 67, 0.9);
  z-index: 1;
}
.section--contact-map .info-box {
  position: relative;
}
.section--contact-map .info-box__child {
  background-color: #fff;
  width: 384px;
  height: 230px;
  left: 40px;
  position: absolute;
  /* left: -50%; */
  bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 10px 55px;
  gap: 10px;
  box-shadow: 0px 2px 36px -13px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 2px 36px -13px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 2px 36px -13px rgba(0, 0, 0, 0.75);
}
@media only screen and (max-width: 768px) {
  .section--contact-map .info-box__child {
    display: none;
  }
}
.section--contact-map .info-box__child .icon {
  height: 34px;
  width: 34px;
  padding: 4px;
  border: 1px solid yellow;
  border-radius: 305px;
  background-color: yellow;
  text-align: center;
}
.section--contact-map .info-box__child .icon img {
  height: 16px;
  width: 16px;
}
.section--contact-map .info-box__child .description p {
  color: black;
  padding-left: 10px;
  font-size: 13px;
  line-height: 2.5;
}
.section--contact-map .info-box__child .description a {
  text-decoration: underline;
  margin-left: 10px;
}
.section--contact-form .title {
  font-family: "FantasqueSansMono", monospace;
  text-transform: uppercase;
  font-size: 55px;
  margin: 60px 0 5px;
  line-height: 1;
  text-align: center;
  letter-spacing: 1px;
}
.section--contact-form .subtitle {
  color: #f16a5c;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.section--contact-form .form {
  padding-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .section--contact-form .form {
    flex-direction: column;
    padding: 10px 20px;
    margin: auto;
  }
}
.section--contact-form .form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  justify-content: space-between;
}
.section--contact-form .form-row br {
  display: none;
}
.section--contact-form .form-row > p:first-child {
  flex: 0 0 50%;
  padding-right: 6px;
}
.section--contact-form .form-row > p:last-child {
  flex: 0 0 50%;
  padding-left: 6px;
}
.section--contact-form .form-row--full p {
  flex: 0 0 100% !important;
  padding: 0 !important;
}
@media only screen and (max-width: 768px) {
  .section--contact-form .form-row {
    flex-direction: column;
    gap: 10px;
  }
}
.section--contact-form .form-small-divs {
  width: 49%;
}
@media only screen and (max-width: 768px) {
  .section--contact-form .form-small-divs {
    width: 100%;
  }
}
.section--contact-form .form-small-divs #name {
  background-image: url(../images/icons/icon-name.png);
  background-repeat: no-repeat;
  background-position: 10px;
}
.section--contact-form .form-small-divs #email {
  background-image: url(../images/icons/icon-mail-white.png);
  background-repeat: no-repeat;
  background-position: 10px;
}
.section--contact-form .form-small-divs #phone {
  background-image: url(../images/icons/icon-phone-white.png);
  background-repeat: no-repeat;
  background-position: 10px;
}
.section--contact-form form > p {
  display: flex;
  justify-content: center;
  width: auto;
  max-width: 125px;
  margin: auto;
  position: relative;
}
.section--contact-form form > p::before {
  content: "";
  background-image: url(../images/icons/button-icon-top-left.svg);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  position: absolute;
  top: 2px;
  left: -4px;
  z-index: 1;
}
.section--contact-form form > p .wpcf7-submit {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  background: #f16a5c;
  color: #fff;
  justify-content: center;
  align-items: center;
  padding: 8px 45px;
  border-radius: 200px;
  font-size: 22px;
  position: relative;
  width: 100%;
  margin: auto;
  border: none;
}
.section--contact-form form .wpcf7-spinner {
  position: absolute;
}
.section--contact-form .form-row label {
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
  position: relative;
}
.section--contact-form .form-row label.label-icon--name .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
.section--contact-form .form-row label.label-icon--name .wpcf7-form-control-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../images/icons/icon-name.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.section--contact-form .form-row label.label-icon--subject .wpcf7-form-control-wrap {
  display: block;
}
.section--contact-form .form-row label.label-icon--subject .wpcf7-form-control-wrap input {
  padding-left: 12px;
}
.section--contact-form .form-row label.label-icon--message .wpcf7-form-control-wrap {
  display: block;
}
.section--contact-form .form-row label.label-icon--message .wpcf7-form-control-wrap textarea {
  padding-left: 12px;
}
.section--contact-form .form-row label.label-icon--email .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
.section--contact-form .form-row label.label-icon--email .wpcf7-form-control-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../images/icons/icon-mail-white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.section--contact-form .form-row label.label-icon--phone .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
.section--contact-form .form-row label.label-icon--phone .wpcf7-form-control-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../images/icons/icon-phone-white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.section--contact-form .form-row input[type=text],
.section--contact-form .form-row input[type=email],
.section--contact-form .form-row input[type=tel],
.section--contact-form .form-row textarea {
  width: 100%;
  padding-left: 40px;
  box-sizing: border-box;
  background-color: transparent;
  border: 1px solid #EF6179;
  border-radius: 0;
  outline: none;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
}
.section--contact-form .book-now-button {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  background: #f16a5c;
  color: #fff;
  justify-content: center;
  align-items: center;
  padding: 8px 45px;
  border-radius: 200px;
  font-size: 22px;
  position: relative;
  width: 20%;
  margin: auto;
}
.section--contact-form .book-now-button:before {
  content: "";
  background-image: url(../images/icons/button-icon-top-left.svg);
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  position: absolute;
  top: 2px;
  left: -4px;
}

.Re-c-MuiScopedCssBaseline-root .regiondo-catalog {
  background: transparent;
  padding: 0;
}

.Re-c-MuiScopedCssBaseline-root .Re-c-MuiTextField-root {
  background-color: transparent !important;
}

.Re-c-MuiScopedCssBaseline-root .Re-c-MuiInputLabel-outlined.Re-c-MuiInputLabel-shrink {
  color: #fff !important;
}

.Re-c-MuiScopedCssBaseline-root .Re-c-MuiInputBase-root {
  color: #fff !important;
}

.Re-c-MuiScopedCssBaseline-root .Re-c-MuiOutlinedInput-notchedOutline {
  border-color: #284d60 !important;
}

.Re-c-MuiScopedCssBaseline-root .Re-c-jss79 {
  background-color: #f16a5c !important;
  border: none !important;
  color: #fff !important;
  text-transform: uppercase !important;
  border-radius: 22px !important;
  padding: 0 24px !important;
}

.page-template-page-contact .section--contact-map {
  margin-top: 25px !important;
}
.page-template-page-contact .section--contact-map .overlay {
  height: 100%;
  top: 0;
}

@media only screen and (max-width: 768px) {
  .section--contact-form .form-row > p:first-child {
    padding-right: 0;
  }
  .section--contact-form .form-row > p:last-child {
    padding-left: 0;
  }
}
.section--hero-whats-inside {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section--hero-whats-inside .whats-inside--wrapper {
  margin-bottom: 0;
}
@media only screen and (max-width: 500px) {
  .section--hero-whats-inside .whats-inside--wrapper .col-inner {
    padding: 14px 36px;
    gap: 17px;
  }
}
@media only screen and (max-width: 500px) {
  .section--hero-whats-inside .whats-inside--wrapper .col-inner .wrapper {
    max-width: 100%;
  }
}
.section--hero-whats-inside .col-auto {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  width: auto;
}
.section--hero-whats-inside .col-auto .col-inner::before {
  background: url(../images/educational/Seaweeds_2.svg);
}
.section--hero-whats-inside .title-wrapper {
  display: flex;
  justify-content: center;
}
.section--hero-whats-inside .description {
  font-size: 15px;
  color: #fff;
  text-align: center;
  line-height: 24px;
  opacity: 0.6;
  display: block;
  max-width: 555px;
  margin: 0 auto;
}
.section--hero-whats-inside .analytics--wrapper {
  max-width: 700px;
  margin: 90px auto 95px;
}
@media only screen and (max-width: 500px) {
  .section--hero-whats-inside .analytics--wrapper {
    align-items: self-start;
  }
}
.section--hero-whats-inside .title {
  position: relative;
  font-family: var(--main-font);
  text-transform: uppercase;
  font-size: 55px;
  font-weight: 400;
  display: inline-block;
  margin-top: 0;
}
.section--hero-whats-inside .title::after {
  content: "";
  width: calc(100% + 0px);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  background-image: url(../images/jobs-post/curve-stripe.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: contain;
}

.section--contact-map {
  position: relative;
  margin-top: -107px;
}
.section--contact-map iframe .gm-style .place-card-large {
  display: none !important;
}
.section--contact-map .overlay {
  width: 100%;
  height: 470px;
  position: absolute;
  top: 30px;
  background-color: rgba(6, 46, 67, 0.9);
  z-index: 1;
  display: block;
}
.section--contact-map .info-box {
  position: relative;
}
.section--contact-map .info-box__child {
  background-color: #fff;
  width: 384px;
  height: 230px;
  left: 40px;
  position: absolute;
  /* left: -50%; */
  bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 10px 55px;
  gap: 10px;
  box-shadow: 0px 2px 36px -13px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 2px 36px -13px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 2px 36px -13px rgba(0, 0, 0, 0.75);
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  .section--contact-map .info-box__child {
    display: none;
  }
}
.section--contact-map .info-box__child .icon {
  height: 34px;
  width: 34px;
  padding: 4px;
  border: 1px solid yellow;
  border-radius: 305px;
  background-color: yellow;
  text-align: center;
}
.section--contact-map .info-box__child .icon img {
  height: 16px;
  width: 16px;
}
.section--contact-map .info-box__child .description p {
  color: black;
  padding-left: 10px;
  font-size: 13px;
  line-height: 2.5;
}
.section--contact-map .info-box__child .description a {
  text-decoration: underline;
  margin-left: 10px;
}
.section--tickets-opening {
  text-align: center;
  background-color: #EAFAFF;
  padding: 37px 0px;
}
.section--tickets-opening .opening-title {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  font-size: 35px;
  text-align: center;
  letter-spacing: -0.53px;
  color: #062e43;
  position: relative;
  z-index: 2;
}
.section--tickets-opening .opening-title:before {
  content: "";
  background-image: url(../images/jobs-post/curve-stripe.png);
  width: 273px;
  height: 56px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 233px;
  position: absolute;
  top: 2px;
  left: 360px;
  z-index: -1;
  opacity: 0.3;
}
@media only screen and (max-width: 768px) {
  .section--tickets-opening .opening-title:before {
    left: 42px;
  }
}
.section--tickets-opening .opening-description {
  font-size: 19px;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.38px;
  color: #062e43;
  font-weight: 500;
}
.section--tickets-opening .opening-description span {
  color: #F16A5C;
  font-weight: 600;
}
.section--tickets-opening .title-wrapper {
  justify-content: space-evenly;
}
.section--tickets {
  margin: 100px 0;
}
.section--tickets .title-wrapper {
  text-align: center;
}
.section--tickets .title-wrapper h1 {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  font-size: 45px;
  text-align: center;
  letter-spacing: -0.53px;
  margin: 0px;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.section--tickets .title-wrapper h1:before {
  content: "";
  background-image: url(../images/jobs-post/curve-stripe.png);
  width: 273px;
  height: 56px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 233px;
  position: absolute;
  top: 2px;
  left: -42px;
  z-index: -1;
}
.section--tickets .title-wrapper h1:after {
  content: "";
  background-image: url(../images/icons/starfish_opale.png);
  width: 30px;
  height: 26px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 24px;
  position: absolute;
  top: 21px;
  left: -17px;
}
.section--tickets .tickets-row {
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .section--tickets .tickets-row {
    flex-direction: column;
    margin-top: 40px;
  }
}
.section--tickets .element {
  position: relative;
}
.section--tickets .element-top {
  position: absolute;
  top: -41px;
  left: 79px;
}
@media only screen and (max-width: 768px) {
  .section--tickets .element-top {
    display: none;
  }
}
.section--tickets .element-top-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .section--tickets .element-top-mobile {
    display: block;
    margin: auto;
  }
}
.section--tickets .element-left {
  position: absolute;
  right: -16px;
  top: -12px;
}
@media only screen and (max-width: 768px) {
  .section--tickets .element-left {
    display: none;
  }
}
.section--tickets .element-left-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .section--tickets .element-left-mobile {
    display: block;
    margin: auto;
    margin-top: -53px;
    padding-bottom: 20px;
  }
}
.section--tickets .tickets-wrapper {
  justify-content: space-between;
  margin: 50px 0;
  justify-items: center;
  display: flex;
  flex-direction: column;
  flex-basis: 30%;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .section--tickets .tickets-wrapper::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 40px;
    background-color: #EAFAFF;
    top: -50px;
    left: 46%;
  }
}
.section--tickets .tickets-wrapper__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section--tickets .tickets-wrapper__list li {
  color: #fff;
  position: relative;
  padding-left: 10px;
  font-size: 13px;
}
.section--tickets .tickets-wrapper__list li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  display: block;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section--tickets .tickets-wrapper__list li span {
  color: #00B4D1;
}
.section--tickets .tickets-wrapper__ticketname {
  text-align: center;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .section--tickets .tickets-wrapper__ticketname {
    color: #fff;
    font-size: 30px;
    line-height: 1;
    padding: 20px 0;
    padding-bottom: 0;
  }
}
.section--tickets .tickets-wrapper__ticketname-dot {
  color: #f16a5c;
}
.section--tickets .tickets-wrapper__age {
  color: #00B4D1;
  font-size: 17px;
  margin: 7px 0 10px 0;
  text-align: center;
  line-clamp: 2;
  line-height: 1;
  letter-spacing: -0.37px;
}
.section--tickets .tickets-wrapper .book-now-button {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  background: #f16a5c;
  color: #fff;
  padding: 2px 29px;
  border-radius: 200px;
  font-size: 25px;
  position: relative;
  margin: auto;
}
.section--tickets .tickets-wrapper .book-now-button:before {
  content: "";
  background-image: url(../images/icons/button-icon-top-left.svg);
  width: 20px;
  height: 20px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  position: absolute;
  top: -3px;
  left: -1px;
}
.section--tickets .tickets-wrapper .book-now-button-yellow {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  background: #FFC800;
  color: #fff;
  padding: 2px 29px;
  border-radius: 200px;
  font-size: 25px;
  position: relative;
  margin: auto;
}
.section--tickets .tickets-wrapper .book-now-button-yellow:before {
  content: "";
  background-image: url(../images/icons/button-icon-top-left-blue.png);
  width: 20px;
  height: 20px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  position: absolute;
  top: -3px;
  left: -1px;
}
.section--tickets .tickets-wrapper .offer {
  justify-content: center;
  padding: 14px 18px;
}
@media only screen and (max-width: 768px) {
  .section--tickets .tickets-wrapper .offer {
    padding: 0px 0px 10px;
  }
}
.section--tickets .tickets-wrapper .offer-title--right {
  font-size: 13px;
  text-align: right;
}
.section--tickets .tickets-wrapper .offer-title--left {
  font-size: 13px;
  text-align: left;
}
.section--tickets .tickets-wrapper .offer-price {
  font-size: 23px;
  color: #F16A5C;
  FONT-WEIGHT: 400;
}
.section--tickets .tickets-wrapper .offer-separator {
  height: 10px;
  width: 2px;
  background: #F16A5C;
  margin: 3px 6px;
}
.section--tickets .tickets-wrapper .offer2 {
  justify-content: center;
  padding: 5px 18px;
  margin-top: -5px;
  flex-wrap: nowrap;
}
.section--tickets .tickets-wrapper .offer2-title--right {
  font-size: 13px;
  text-align: right;
}
.section--tickets .tickets-wrapper .offer2-title--left {
  font-size: 13px;
  text-align: left;
}
.section--tickets .tickets-wrapper .offer2-price {
  font-size: 23px;
  color: #F16A5C;
  FONT-WEIGHT: 400;
}
.section--tickets .tickets-wrapper .offer2-separator {
  height: 10px;
  width: 2px;
  background: #F16A5C;
  margin: 3px 6px;
}
.section--tickets .tickets-wrapper .offer2-subtitle {
  color: #00B4D1;
  font-size: 13px;
}
@media only screen and (max-width: 768px) {
  .section--tickets .white-tile {
    background-color: #EAFAFF;
    border-radius: 40px;
    padding: 40px 0;
  }
}
@media only screen and (max-width: 768px) {
  .section--tickets .white-tile::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 40px;
    background-color: #EAFAFF;
    top: -50px;
    left: 46%;
  }
}
.section--tickets .white-tile .tickets-wrapper__ticketname {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .section--tickets .white-tile .tickets-wrapper__ticketname {
    color: #062E43;
    font-size: 37px;
  }
}
.section--tickets .white-tile__age {
  color: #00B4D1;
  font-size: 17px;
  margin: 10px 0;
  text-align: center;
  line-clamp: 2;
}
.section--tickets .white-tile .offer {
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .section--tickets .white-tile .offer {
    padding: 0px 0px 10px;
  }
}
.section--tickets .white-tile .offer-title--right {
  font-size: 13px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .section--tickets .white-tile .offer-title--right {
    color: #062E43;
  }
}
.section--tickets .white-tile .offer-title--left {
  font-size: 13px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .section--tickets .white-tile .offer-title--left {
    color: #062E43;
  }
}
.section--tickets .white-tile .offer-price {
  font-size: 23px;
  color: #F16A5C;
  FONT-WEIGHT: 400;
}
.section--tickets .white-tile .offer-separator {
  height: 10px;
  width: 2px;
  background: #F16A5C;
  margin: 3px 6px;
}
.section--tickets .white-tile .offer2 {
  justify-content: center;
  padding: 5px 18px;
  margin-top: -5px;
}
.section--tickets .white-tile .offer2-title--right {
  font-size: 13px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .section--tickets .white-tile .offer2-title--right {
    color: #062E43;
  }
}
.section--tickets .white-tile .offer2-title--left {
  font-size: 13px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .section--tickets .white-tile .offer2-title--left {
    color: #062E43;
  }
}
.section--tickets .white-tile .offer2-price {
  font-size: 23px;
  color: #F16A5C;
  FONT-WEIGHT: 400;
}
.section--tickets .white-tile .offer2-separator {
  height: 10px;
  width: 2px;
  background: #F16A5C;
  margin: 3px 6px;
}
.section--tickets .info {
  text-align: center;
  margin: 50px 50px 0 50px;
  padding: 40px 50px;
  border: #fff 2px solid;
  border-radius: 40px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .section--tickets .info {
    padding: 20px 25px;
    margin: 20px 10px 10px 10px;
  }
}
.section--tickets .info .spacer {
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .section--tickets .info .spacer {
    padding: 10px 0;
  }
}
.section--tickets .info::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background-color: #F16A5C;
  border-radius: inherit;
  transform: rotate(5deg);
  z-index: -1;
}
.section--tickets .info--title {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  color: #fff;
  font-size: 25px;
  margin: auto;
}
.section--tickets .info--subtitle {
  color: #fff;
  font-size: 13px;
  margin: auto;
}
.section--faq .content {
  padding: 0;
  margin: 0 auto;
}
.section--faq summary {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  padding: 15px 0 15px;
  outline: none;
  border-radius: 0.25rem;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: block;
  margin-left: 20px;
}
.section--faq .faq__content {
  margin-left: 20px;
  padding: 0 0 20px;
}
.section--faq .faq__content p {
  font-size: 15px;
  font-weight: 300;
}
.section--faq details[open] {
  border: 1px solid #F16A5C;
  animation: sweep 0.5s ease-in-out;
}
.section--faq details > summary::after {
  position: absolute;
  content: "+";
  right: 20px;
  font-size: 50px;
  top: -8px;
  font-weight: 200;
}
.section--faq details[open] > summary::after {
  content: "-";
  position: absolute;
  right: 20px;
  font-size: 50px;
  top: -10px;
  right: 19px;
}
.section--faq details > summary::-webkit-details-marker {
  display: none;
}
.section--faq details {
  margin: 20px 0;
  background-color: #114C6B;
}

.section--faq .container--medium {
  max-width: 1000px;
}
.section--faq .container--medium .faq-main-title {
  font-family: var(--main-font);
  text-transform: uppercase;
  font-size: 35px;
  text-align: center;
  letter-spacing: -0.53px;
  margin-bottom: 6px;
}
.section--faq .container--medium .faq-main-content {
  text-align: center;
  font-size: 15px;
  margin-bottom: 54px;
}
.section--faq .container--medium .faq-main-content span {
  color: #F16A5C;
}

.text-orange {
  color: #F16A5C;
}

.page-template-page-tickets .section--contact-map {
  height: 200px;
}
.page-template-page-tickets .section--contact-map .info-box {
  height: 100%;
}
.page-template-page-tickets .section--contact-map .info-box__child {
  display: none !important;
}

.section--hero-animal-groups {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section--hero-animal-groups .whats-inside--wrapper {
  margin-bottom: 0;
}
.section--hero-animal-groups .col-auto {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  width: auto;
}
.section--hero-animal-groups .col-auto .col-inner::before {
  background: url(../images/educational/Seaweeds_2.svg);
}
.section--hero-animal-groups .title-wrapper {
  display: flex;
  justify-content: center;
}
.section--hero-animal-groups .description p {
  font-size: 15px;
  color: #fff;
  text-align: center;
  line-height: 24px;
  opacity: 0.6;
  display: block;
  max-width: 555px;
  margin: 0 auto;
  margin-bottom: 24px;
}
.section--hero-animal-groups .analytics--wrapper {
  max-width: 700px;
  margin: 90px auto 95px;
}
.section--hero-animal-groups .title {
  position: relative;
  font-family: var(--main-font);
  text-transform: uppercase;
  font-size: 55px;
  font-weight: 400;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.section--hero-animal-groups .title::after {
  content: "";
  width: 35px;
  height: 36px;
  display: block;
  position: absolute;
  top: 19px;
  left: -23px;
  background-image: url(../images/icons/deco-star.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
  background-size: contain;
}

.section--animal-groups__species {
  background-color: #EAFAFF;
  padding: 65px 0 70px;
}
.section--animal-groups__species .row {
  margin: -25px;
}
.section--animal-groups__species .title {
  text-align: center;
  color: #062E43;
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 500;
}
.section--animal-groups__species .species-col {
  flex: 0 0 12.5%;
  max-width: 12.5%;
  width: 100%;
  padding: 25px;
}
.section--animal-groups__species .species__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.section--animal-groups__species .species__title {
  color: #062E43;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}
.section--animal-groups__species .species__image {
  max-height: 85px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section--animal-groups__species .species__image img {
  max-height: 85px;
  display: block;
}

.section--gallery-animal-groups {
  background-color: #EAFAFF;
  padding-top: 0;
  padding-bottom: 0;
}
.section--gallery-animal-groups .title {
  position: relative;
}
.section--gallery-animal-groups .title span {
  font-family: var(--main-font);
  text-transform: uppercase;
  font-size: 55px;
  font-weight: 400;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  color: #062E43;
}
.section--gallery-animal-groups .title::before {
  z-index: 3;
}
.section--gallery-animal-groups .title::after {
  z-index: 1;
  opacity: 0.2;
  width: calc(100% + 90px);
}
.section--gallery-animal-groups .gallery--elements {
  padding-bottom: 0;
}

.gallery--elements .row {
  justify-content: center;
}

.section--animal-groups__related {
  padding-top: 93px;
  padding-bottom: 20px;
}
.section--animal-groups__related .related-col {
  flex: 1;
}
.section--animal-groups__related .related-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  height: 100%;
  min-height: 150px;
  padding: 25px;
  position: relative;
}
.section--animal-groups__related .related-link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #062E43;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.25;
}
.section--animal-groups__related .related-title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.section--animal-groups__related .related-title-wrapper img {
  margin-right: 4px;
}
.section--animal-groups__related .related-title-wrapper .related-title {
  position: relative;
}
.section--animal-groups__related .related-title-wrapper .related-title .title {
  font-family: var(--main-font);
  text-transform: uppercase;
  font-size: 45px;
  position: relative;
}
.section--animal-groups__related .related-title-wrapper .related-title::before {
  content: "";
  width: calc(100% + 10px);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  background-image: url(../images/icons/curve-stripe-orange.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  background-size: contain;
}

.gallery--elements .col-inner {
  max-height: 408px;
}

@media only screen and (max-width: 768px) {
  .species-outer-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
  }
  .species-outer-wrapper .row.row--hcenter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: auto;
    margin-bottom: 10px !important;
  }
  .species-outer-wrapper .row.row--hcenter .species-col {
    flex: 0 0 150px;
    max-width: 150px;
  }
}
.section--hero-events {
  padding-top: 185px;
}
.section--hero-events::before {
  content: "";
  width: 100%;
  height: 364px;
  top: 40px;
  left: 0;
  right: 0;
  position: absolute;
  background: #062e43;
  background: linear-gradient(180deg, rgba(6, 46, 67, 0.72) 70%, #062e43 100%);
  z-index: 1;
}
.section--hero-events .hero-image {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  height: 364px;
  width: 100%;
}
.section--hero-events .container {
  position: relative;
}
.section--hero-events .title-wrapper {
  display: flex;
  justify-content: center;
}
.section--hero-events .title-wrapper .title {
  position: relative;
}
.section--hero-events .title-wrapper .title span {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  font-size: 55px;
  font-weight: 400;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.section--hero-events .title-wrapper .title span::before {
  content: "";
  width: calc(100% + 0px);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  background-image: url(../images/jobs-post/curve-stripe.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: contain;
}
.section--hero-events .title-wrapper .title::after {
  content: "";
  width: 35px;
  height: 36px;
  display: block;
  position: absolute;
  top: 19px;
  right: -23px;
  background-image: url(../images/icons/deco-star.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  background-size: contain;
}

.section--events-archive {
  padding-top: 0;
  padding-bottom: 100px;
}
.section--events-archive .row {
  margin: -7.5px;
}
.section--events-archive .row > * {
  padding: 7.5px;
}

.card-event {
  display: flex;
  flex-direction: column;
}
.card-event__top {
  position: relative;
  height: 100%;
  max-height: 165px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 16px;
  flex: 165px;
}
@media only screen and (max-width: 500px) {
  .card-event__top {
    flex: 200px;
  }
}
.card-event__top::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #062E43;
  opacity: 0.32;
  display: block;
}
.card-event__date {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.card-event__number {
  font-size: 40px;
  font-weight: 700;
  font-family: Montserrat;
  line-height: 1;
}
.card-event__month-small {
  font-size: 18px;
}
.card-event__content {
  padding: 26px 0 0;
  font-size: 12px;
}
.card-event__flex {
  display: flex;
  align-items: center;
}
.card-event__clock-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #fff;
  -webkit-mask-image: url(../images/icons/clock-icon.svg);
  mask-image: url(../images/icons/clock-icon.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: relative;
  flex: 0 0 14px;
  margin-right: 6px;
}
.card-event__description {
  margin-bottom: 13px;
}
.card-event__title {
  font-size: 14px;
  margin: 0;
  margin-bottom: 13px;
}

.section--image-carousel {
  padding: 220px 0 50px;
}
.section--image-carousel .instagram-title {
  display: flex;
  width: 100%;
  justify-content: center;
}
.section--image-carousel .instagram-title p {
  text-align: center;
  display: flex;
  margin: 0 auto;
  position: relative;
  align-items: center;
}
.section--image-carousel .instagram-title p::before {
  content: "";
  position: relative;
  width: 15px;
  height: 15px;
  background-image: url(../images/icons/icon-instagram.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin-right: 7px;
}
@media only screen and (max-width: 768px) {
  .section--image-carousel {
    padding-top: 50px;
  }
}

#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,
.sb_instagram_header.sbi_medium .sbi_header_text h3 {
  font-size: 20px !important;
  text-align: center !important;
  margin: 0 auto !important;
  display: block;
  font-size: 24px !important;
  line-height: 32px !important;
  font-size: 36px !important;
  font-family: "FantasqueSansMono", !important;
  color: #fff !important;
  margin-top: -22px !important;
  font-weight: 400;
  margin: 0 !important;
  margin-top: -25px !important;
  margin-bottom: 25px !important;
}
#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3::before,
.sb_instagram_header.sbi_medium .sbi_header_text h3::before {
  content: "@";
  position: relative;
}

.sbi_header_text.sbi_no_bio {
  display: flex;
  justify-content: center;
}

.sbi_header_img {
  display: none !important;
}

#sb_instagram.sbi_col_4 #sbi_images .sbi_item {
  width: 100%;
  display: block;
  min-height: 100px;
  padding: 0 !important;
}

#sb_instagram .sbi_photo {
  display: block;
  text-decoration: none;
  position: absolute;
  height: 100% !important;
  width: 100% !important;
  top: 0;
}

#sb_instagram .sbi_photo_wrap {
  padding-top: 100%;
}

#sb_instagram #sbi_images {
  padding: 0 !important;
}
#sb_instagram #sbi_images .slick-list {
  width: 100%;
  overflow: hidden;
}
#sb_instagram #sbi_images .slick-track {
  height: 100%;
  position: relative;
  display: flex;
}
#sb_instagram #sbi_images .slick-slide {
  height: 100%;
  position: relative;
  margin: 0;
}
#sb_instagram #sbi_images .slick-dots {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  list-style: none;
  align-items: center;
}
#sb_instagram #sbi_images .slick-dots button {
  font-size: 0;
  width: 8px;
  height: 8px;
  border-radius: 200px;
  background: #00B4D1;
  border: unset;
  box-shadow: unset;
  position: relative;
  margin: 0 6px;
}
#sb_instagram #sbi_images .slick-dots li {
  position: relative;
}
#sb_instagram #sbi_images .slick-dots li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #00B4D1;
  width: 14px;
  display: none;
  height: 14px;
  border-radius: 200px;
  background: transparent;
}
#sb_instagram #sbi_images .slick-dots li.slick-active::before {
  display: block;
}
#sb_instagram #sbi_images .slick-dots li.slick-active button {
  background: #F16A5C;
  width: 6px;
  height: 6px;
}

#sbi_load {
  display: none !important;
}

/* Regular styles for singular posts */
.single-post {
  /* Hover effect on author and category links */
}
.single-post main {
  margin-bottom: 5%; /* Adjust margin as needed */
}
.single-post .featured-img-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.single-post .featured-img-wrapper img {
  width: 100%;
  border-radius: 10px; /* Adjust border radius */
  display: block; /* Ensure the image is a block element */
  margin: 0 auto; /* Center align the image */
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post .author-name {
  font-weight: 500; /* Adjust font weight */
  font-size: 14px; /* Adjust font size */
  margin-top: 10px;
}
.single-post .title {
  font-family: var(--main-font);
  text-transform: uppercase;
  font-size: 40px; /* Adjust font size */
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 5px; /* Adjust margin */
  text-align: center; /* Center align title */
  width: 100%; /* Ensure title spans full width */
}
.single-post .post-content-wrap p,
.single-post .post-content-wrap h1,
.single-post .post-content-wrap h2,
.single-post .post-content-wrap h3,
.single-post .post-content-wrap h4,
.single-post .post-content-wrap h5,
.single-post .post-content-wrap h6,
.single-post .post-content-wrap ul,
.single-post .post-content-wrap ol {
  margin-bottom: 20px; /* Adjust the spacing as needed */
}
.single-post .post-info {
  padding: 10px; /* Adjust padding */
  border-radius: 3px; /* Adjust border radius */
  margin-top: 10px;
  font-size: 12px; /* Adjust font size */
}
.single-post .post-content-wrap {
  max-width: 100%; /* Ensure content is full width */
  margin: 0 auto; /* Center align content */
  font-size: 14px; /* Adjust font size */
  line-height: 1.6; /* Adjust line height */
}
.single-post .toc {
  border-radius: 3px; /* Adjust border radius */
  position: sticky;
  top: 50px;
}
.single-post .toc ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.single-post .post-navigation {
  margin-top: 20px; /* Adjust margin */
}
.single-post .author-name a:hover {
  text-decoration: none; /* Remove default underline */
}
.single-post .author-name a.author-link:hover,
.single-post .author-name a.category-link:hover {
  text-decoration: underline; /* Add underline on hover */
}
@media only screen and (max-width: 768px) {
  .single-post .post-top {
    order: 1;
  }
  .single-post .post-content {
    order: 3;
  }
  .single-post .post-toc {
    order: 2;
  }
}

/* General styles */
.page-title {
  text-align: center;
  margin: 0px auto;
}

.page-title span {
  font-weight: bold;
}

/* Post styles */
.post {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination {
  display: flex;
}

.post .post-top {
  border-bottom: 1px solid #eee; /* Example border for separation */
}

.post .post-info {
  margin-bottom: 10px;
}

.post .title {
  font-size: 20px;
}

.post .author-name {
  font-size: 14px;
  color: #F16A5C;
}

.post .post-content-wrap {
  font-size: 16px;
  line-height: 1.6;
}

.featured-img-wrapper {
  margin-bottom: 10px;
}

.featured-img-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .post .title {
    font-size: 18px;
  }
  .post .author-name {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .post .title {
    font-size: 16px;
  }
  .post .author-name {
    font-size: 11px;
  }
}
/* Pagination styles */
.pagination {
  text-align: center;
  margin: 20px auto;
}

.pagination a {
  margin: 0 5px;
  text-decoration: none;
  font-weight: bold;
}

.pagination a:hover {
  text-decoration: underline;
}

/* No posts found styles */
.no-posts-found {
  text-align: center;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.no-posts-found p {
  font-size: 16px;
  line-height: 1.5;
}

/* Footer styles */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 0;
}

/* styles.scss */
/* General Styles */
.section--breadcrumb {
  margin-bottom: 20px;
}

.author-profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 8%;
  margin-bottom: 8%;
  flex-direction: column;
  text-align: center;
}

.author-profile {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.author-profile .author-profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 20px;
}
.author-profile .author-details {
  flex: 1;
  text-align: left;
}
.author-profile .author-name {
  font-size: 24px;
  margin-bottom: 10px;
}
.author-profile .author-nickname {
  margin-bottom: 10px;
}
.author-profile .author-bio {
  margin-top: 10px;
}

/* Post List Styles */
.section__page-event-single .container .row .col-md-6 {
  margin-bottom: 20px;
}
.section__page-event-single .container .row .col-md-6 .post.has-post-thumbnail .featured-img-wrapper {
  margin-bottom: 15px;
}
.section__page-event-single .container .row .col-md-6 .post.has-post-thumbnail .featured-img-wrapper img {
  width: 100%;
  height: auto;
}
.section__page-event-single .container .row .col-md-6 .post .post-info {
  margin-bottom: 15px;
}
.section__page-event-single .container .row .col-md-6 .post .post-info .title {
  font-size: 20px;
  margin-bottom: 5px;
}
.section__page-event-single .container .row .col-md-6 .post .post-info .title a {
  color: #333;
  text-decoration: none;
}
.section__page-event-single .container .row .col-md-6 .post .post-info .title a:hover {
  text-decoration: underline;
}
.section__page-event-single .container .row .col-md-6 .post .post-info .author-name {
  font-size: 14px;
  color: #F16A5C;
}
.section__page-event-single .container .row .col-md-6 .post .post-info .author-name .author-link,
.section__page-event-single .container .row .col-md-6 .post .post-info .author-name .category-link {
  color: #F16A5C;
  text-decoration: none;
}
.section__page-event-single .container .row .col-md-6 .post .post-content .post-content-wrap {
  font-size: 14px;
  line-height: 1.5;
}

.section__page-event-single {
  background-color: transparent; /* Change to any color you prefer */
}

.titleblog {
  font-family: "kg bless your heart", cursive;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 5px;
  text-align: center;
  width: 100%;
}

.custom-link {
  color: #F16A5C;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
}

.custom-link:hover {
  text-decoration: underline;
}

.dateTXT {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:Pagination]
   ========================================================================== */
.pagination ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin: 0 auto;
}
.pagination ul .page-numbers {
  color: #000000;
  float: center;
  padding: 8px 14px;
  text-decoration: none;
  transition: background-color 0.5s;
  border: 1px solid #DDD;
  margin: 0 4px;
  font-size: 20px;
}
.pagination ul .page-numbers.current {
  background-color: #f16a5c;
  color: white;
  border: 1px solid #f16a5c;
}

/* ==========================================================================
   Print styles.
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
      * Don't show links that are fragment identifiers,
      * or use the `javascript:` pseudo protocol
      */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
      * Printing Tables:
      * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
      */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content, .fancybox-can-swipe .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image, .fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe, .fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled], .fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2), .fancybox-button--fsexit svg:first-child, .fancybox-button--pause svg:first-child, .fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes a {
  to {
    transform: rotate(1turn);
  }
}
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translateZ(0) scale(1);
}

@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link, .fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:FOOTER]
   ========================================================================== */
/**
 *
 * Search form block
 *
 */
.search-form {
  padding: 20px;
}
.search-form__input {
  margin-right: 10px;
}

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