/**
/// Template created by Yogi Prasetyawan
/// github.com/yogs22
*/

/* * * * End Master * * * */

html {
  overflow-x: hidden;
}

body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #292b2c;
  background-color: #fff;
  overflow-x: hidden;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.1;
  color: inherit;
}

img {
  color: #fff;
}

a {
  color: #20415b;
  transition: all 0.2s;
}

a:hover,
a:active,
a:focus {
  color: #ffe500;
  text-decoration: none;
}

.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.h-100 {
  height: 100%;
}

@media screen and (max-width: 768px) {
  .w-sm-50 {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .w-xs-75 {
    width: 75%;
  }
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.flex-wrap-wrap {
  flex-wrap: wrap;
}

.align-items-center {
  align-items: center;
}

.object-fit {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

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

.text-underline {
  text-decoration: underline;
}

.text-white {
  color: #fff;
}

.text-yellow {
  color: #ffe500;
}

.font-bold {
  font-weight: bold;
}

.btn {
  padding: 15px 30px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  border-radius: 0.375rem;
  transition: all 0.4s;
}

.btn.btn-header {
  line-height: 46px;
}

.btn.rounded {
  border-radius: 50px;
}

.btn.btn-white {
  background: #fff;
  color: #20415b;
  border: 1px solid #fff;
}

.btn.btn-yellow {
  background-color: #ffe500;
  color: #001;
  border: 1px solid #ffe500;
}

.btn.btn-block {
  width: 100%;
  display: inline-block;
}

.btn:hover {
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
  opacity: 0.9;
}

.list-non-style {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.form-control {
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 1rem;
  font-size: 1.5rem;
  width: 100%;
}

.cursor-pointer {
  cursor: pointer;
}

.loader {
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.block-loading {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.48);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  color: #fff;
  font-weight: bold;
  top: 0;
  left: 0;
  right: 0;
}

.bounce {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.bounce > div {
  width: 18px;
  height: 18px;
  background-color: #3e3b3b;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
          animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.bounce .bounce1 {
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}

.bounce .bounce2 {
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

@media screen and (max-width: 768px) {
  .d-sm-none {
    display: none;
  }
}

.d-block {
  display: block;
}

.table {
  border-collapse: collapse;
  width: 100%;
}

.table td,
.table th {
  border: 1px solid #ddd;
  padding: 8px;
}

.table tr:nth-child(even) {
  background-color: #f5f5f5;
}

.table tr:hover {
  background-color: #f9f9f9;
}

.table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #20415b;
  color: white;
}

/******************************
** Navbar
*******************************/

.nav {
  position: fixed;
  z-index: 100;
  padding-top: 5px;
  width: 100vw;
  top: 0;
  transition: all 0.4s;
}

.nav.scrolled {
  background: #20415b;
  box-shadow: 9px 0px 10px rgba(0, 0, 0, 0.2);
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav .nav-brand img {
  width: 70px;
}

.nav .nav-right {
  vertical-align: middle;
  display: inline;
  float: none;
}

.nav .nav-right .nav-link {
  color: #fff;
  letter-spacing: 1px;
  font-size: 16px;
}

.nav .nav-link-list {
  display: block;
}

@media screen and (max-width: 768px) {
  .nav .nav-link-list {
    display: none;
  }
}

.nav .nav-burger {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav .nav-burger {
    display: block;
  }
}

/******************************
** Image overlay
*******************************/

.img-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background: rgba(255, 229, 0, 0.9);
}

.no-bg {
  background: none;
  opacity: 1;
}

.img-container {
  position: relative;
  height: 100%;
}

.img-container:hover .img-overlay {
  opacity: 1;
}

.video-btn {
  padding: 25px 30px;
  border-radius: 50%;
}

.img-text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.embed-responsive-item {
  width: 100%;
  height: 80vh;
}

/******************************
** Sidebar
*******************************/

.sidebar {
  position: fixed;
  height: 100vh;
  background: white;
  width: 300px;
  margin-left: -300px;
  z-index: 1010;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li a {
  color: #19191a;
  font-size: 15px;
}

.sidebar ul li {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.sidebar .sidebar-logo {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.sidebar .sidebar-logo img {
  width: 60%;
  margin: 0;
  padding: 0;
}

.sidebar .sidebar-logo h3 {
  margin: 10px;
  color: #ff0048;
  font-size: 23px;
  text-align: center;
  display: inline-block;
}

.sidebar .sidebar-logo .ion-arrow-left-c {
  font-size: 20px;
  cursor: pointer;
}

.sidebar ul li form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar ul li form .form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d6ddcc;
  border-radius: 4px;
}

.sidebar .btn-comment.on-search {
  border-radius: 0 0.5rem 0.5rem 0;
  margin-left: -6px;
  padding: 6px 10px;
}

.sidebar .sub-sidebar-link {
  padding: 7px;
}

.sidebar .sub-sidebar-link a {
  font-size: 14px;
}

.sidebar .close {
  width: 1.8em;
  height: 1.8em;
  cursor: pointer;
}

.sidebar path {
  fill: #20415b !important;
}

.sidebar-overlay {
  background: rgba(0, 0, 0, 0.73);
  width: 100%;
  height: 100vh;
  z-index: 1009;
  position: fixed;
  display: none;
  top: 0;
}

/******************************
** Header
*******************************/

.header {
  height: 100vh;
  position: relative;
}

.header .header-title {
  font-size: 5rem;
}

.header .header-desc {
  font-size: 18px;
}

.header .header-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.header .header-overlay {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  color: #fff;
}

.bg-wave {
  height: 150px;
  width: 100%;
  position: absolute;
  overflow: hidden;
  bottom: 0;
  z-index: 8;
}

.bg-wave .wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  background-size: 1000px 100px;
}

.bg-wave .wave.wave1 {
  z-index: 10;
  opacity: 1;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  bottom: 0;
  -webkit-animation: animation 30s linear infinite;
  animation: animation 30s linear infinite;
}

.bg-wave .wave.wave2 {
  z-index: 8;
  opacity: 0.5;
  -webkit-animation-delay: -5s;
  animation-delay: -5s;
  bottom: 10px;
  -webkit-animation: animation2 15s linear infinite;
  animation: animation2 15s linear infinite;
}

.bg-wave .wave.wave3 {
  z-index: 9;
  opacity: 0.2;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
  bottom: 15px;
  -webkit-animation: animation 30s linear infinite;
  animation: animation 30s linear infinite;
}

.bg-wave .wave.wave4 {
  z-index: 7;
  opacity: 0.7;
  -webkit-animation-delay: -5s;
  animation-delay: -5s;
  bottom: 20px;
  -webkit-animation: animation2 5s linear infinite;
  animation: animation2 5s linear infinite;
}

@-webkit-keyframes animation {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 1000px;
  }
}

@keyframes animation {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 1000px;
  }
}

@-webkit-keyframes animation2 {
  0% {
    background-position-x: 1000px;
  }

  100% {
    background-position-x: 0px;
  }
}

@keyframes animation2 {
  0% {
    background-position-x: 1000px;
  }

  100% {
    background-position-x: 0px;
  }
}

/******************************
** Section
*******************************/

section .section-header,
section .section-body {
  position: relative;
}

section .section-title {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.7px;
}

section .section-title.back {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
}

section .section-desc {
  font-size: 15px;
}

section .section-header,
section .section-body {
  display: block;
}

section .line-title {
  position: relative;
  width: 70px;
  border-top: 4px solid #ffe500;
}

section .back-title {
  color: #f0f0f0;
  font-size: 85px;
  letter-spacing: 20px;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 480px) {
  section .back-title {
    font-size: 67px;
  }
}

.card {
  box-shadow: 0 7px 15px rgba(82, 85, 90, 0.1);
  position: relative;
  border-radius: 8px;
}

.card .card-header img {
  height: 250px;
}

.card .card-body {
  padding: 18px;
}

.card .card-body p {
  color: #747373;
  font-size: 14px;
}

/******************************
** Section
*******************************/

#rides .splide__arrow--prev {
  left: -2em;
}

@media screen and (max-width: 768px) {
  #rides .splide__arrow--prev {
    left: -1em;
  }
}

#rides .splide__arrow--next {
  right: -2em;
}

@media screen and (max-width: 768px) {
  #rides .splide__arrow--next {
    right: -1em;
  }
}

/******************************
** Event
*******************************/

#event {
  background: #f7f7f7;
}

#event .event-banner {
  width: 100%;
  height: 50vh;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: cover;
     object-position: cover;
}

@media screen and (max-width: 480px) {
  #event .event-banner {
    height: 30vh;
  }
}

#event .event-title {
  font-size: 4rem;
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  #event .event-title {
    font-size: 3rem;
  }
}

#event .splide__arrow--prev {
  left: -3em;
}

@media screen and (max-width: 768px) {
  #event .splide__arrow--prev {
    left: -1em;
  }
}

#event .splide__arrow--next {
  right: -3em;
}

@media screen and (max-width: 768px) {
  #event .splide__arrow--next {
    right: -1em;
  }
}

#event .splide__pagination {
  bottom: -2em;
}

#event .img-overlay {
  border-radius: 25px;
}

/******************************
** Promo
*******************************/

#promo {
  background-image: url("/../../img/GO-IMG.png");
  background-repeat: no-repeat;
  background-position: right top;
}

#promo .stroke-brush {
  position: relative;
}

#promo .stroke-brush span {
  font-family: satisfy, cursive;
  font-size: 8rem;
  height: 100%;
  line-height: 8.8rem;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  #promo .stroke-brush span {
    font-size: 6rem;
    line-height: 6.6rem;
  }
}

@media screen and (max-width: 480px) {
  #promo .stroke-brush span {
    font-size: 4.8rem;
    line-height: 5.2rem;
    margin-left: 26px;
  }
}

#promo .stroke-brush::before {
  content: "";
  display: block;
  background: url("/../../img/countdown-img.png") no-repeat;
  position: absolute;
  right: 16px;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  bottom: -10px;
}

@media screen and (max-width: 480px) {
  #promo .stroke-brush::before {
    left: 0px;
    right: 0px;
    background-size: contain;
  }
}

#promo .discount-title {
  font-weight: bold;
  font-size: 6.5rem;
  line-height: 1.05;
}

@media screen and (max-width: 768px) {
  #promo .discount-title {
    font-size: 4.8rem;
  }
}

@media screen and (max-width: 480px) {
  #promo .discount-title {
    font-size: 3.8rem;
  }
}

#promo .promo-banner {
  width: 100%;
  height: 50vh;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: cover;
     object-position: cover;
}

#promo .img-overlay {
  border-radius: 25px;
}

#promo .splide__arrow--prev {
  left: -3em;
}

@media screen and (max-width: 768px) {
  #promo .splide__arrow--prev {
    left: -1em;
  }
}

#promo .splide__arrow--next {
  right: -3em;
}

@media screen and (max-width: 768px) {
  #promo .splide__arrow--next {
    right: -1em;
  }
}

#promo .splide__pagination {
  bottom: -2em;
}

/******************************
** Ticket
*******************************/

#ticket {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

#ticket .ticket-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 7px;
}

#ticket .ticket-title {
  font-size: 5rem;
  letter-spacing: 2px;
}

/******************************
** About
*******************************/

#about .desc {
  font-size: 15px;
  text-align: justify;
}

#about .tagline {
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: underline;
}

/******************************
** Education
*******************************/

#education {
  background-color: #f7f7f7;
}

#education .img-education {
  width: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 480px) {
  #education .img-education {
    height: 330px;
  }
}

#education .img-overlay {
  border-radius: 10px;
}

/******************************
** Gallery
*******************************/

#gallery img {
  border-radius: 5px;
}

#gallery .left-gallery {
  height: 550px;
}

#gallery .top-gallery {
  height: 300px;
}

#gallery .bottom-gallery {
  height: 220px;
}

#gallery .img-overlay {
  border-radius: 5px;
}

/******************************
** Footer
*******************************/

#footer {
  margin-top: 10rem;
  background: linear-gradient(180deg, #17344a 0%, #0d1f2f 100%);
  font-size: 14px;
  border-top: 4px solid #f0b429;
  color: rgba(255, 255, 255, 0.88);
}

#footer a {
  color: rgba(255, 255, 255, 0.9);
}

#footer a:hover,
#footer a:focus {
  color: #ffd45a;
}

#footer .title {
  font-size: 17px;
  margin-bottom: 30px;
  text-transform: capitalize;
  color: #fff;
}

#footer li {
  margin-bottom: 10px;
}

#footer .ig-feed {
  width: 100%;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-bottom {
  background: #0a1825;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* -----
SVG Icons - svgicons.sparkk.fr
----- */

.svg-icon {
  width: 2em;
  height: 2em;
}

.svg-icon path,
.svg-icon polygon,
.svg-icon rect {
  fill: #fff;
}

.svg-icon circle {
  stroke: #fff;
  stroke-width: 1;
}

.splide__arrow {
  background: #fff;
}

.splide__pagination__page.is-active {
  background: #6a6969;
}

.splide__arrow svg {
  width: 1.5em;
  height: 1.5em;
}

.masonry-container {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 15px;
       column-gap: 15px;
}

@media screen and (max-width: 768px) {
  .masonry-container {
    -moz-column-count: 2;
         column-count: 2;
  }
}

@media screen and (max-width: 480px) {
  .masonry-container {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
}

.masonry-item img {
  display: block;
  width: 100%;
}

.text-gray-500 {
  color: #c1c1c1;
}

.placeholder {
  margin: 0 auto;
  background-color: #eee;
}

@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

.animated-background {
  -webkit-animation-duration: 1.25s;
          animation-duration: 1.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
          animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background: darkgray;
  background: linear-gradient(to right, #eeeeee 10%, #dddddd 18%, #eeeeee 33%);
  background-size: 800px 104px;
  width: 100%;
  height: 70px;
  position: relative;
}
