.program-section {
  min-height: 100vh;
  width: 100vw;
  transition: transform 500ms 100ms ease-out, opacity 500ms 100ms ease-out;
  overflow-y: hidden;
}
@media only screen and (max-width: 800px) {
  .program-section {
    position: relative;
    overflow-y: revert;
    opacity: 1;
    transform: none;
    padding-bottom: 3rem;
  }
}
.program-section.active {
  transform: translateX(0);
  opacity: 1;
  overflow-y: scroll;
  height: revert;
}
.program-section.active ~ .new-section {
  display: none;
}
.program-section__header {
  display: flex;
  margin: 3rem 0 2rem 0;
  gap: 3rem;
}
@media only screen and (max-width: 800px) {
  .program-section__header {
    flex-direction: column;
    margin: 0 0 2rem 0;
  }
}
.program-section__content-wrapper {
  padding-bottom: 3rem;
  width: 50%;
}
@media only screen and (max-width: 800px) {
  .program-section__content-wrapper {
    width: auto;
    padding: 0 1rem 1rem 1rem;
  }
}
.program-section__title {
  font-size: 3rem;
  margin-top: 0;
}
@media only screen and (max-width: 800px) {
  .program-section__title {
    font-size: 2.5rem;
    margin: 1rem 0;
  }
}
.program-section__info {
  font-size: 1.2rem;
}
.program-section__info.m0 {
  margin: 0;
}
.program-section__info a {
  color: #000;
  text-decoration: none;
}
.program-section__info a:active {
  color: #000;
}
.program-section__info .info-link {
  color: #B30410;
}
.program-section .program-section__banner {
  width: 50%;
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 800px) {
  .program-section .program-section__banner {
    width: auto;
    padding: 1rem;
  }
}
.program-section-children {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateX(-100%);
}
@media only screen and (max-width: 800px) {
  .program-section-children {
    transform: none;
  }
}
.program-section-children.active ~ .main-title {
  color: #000;
}
.program-section-adults {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}
.program-section-adults.special-background {
  background-color: rgba(0, 0, 0, 0.6);
}
.program-section__close-button {
  color: #fff;
  background-color: transparent;
  border: none;
  position: fixed;
  left: 50%;
  bottom: 5vh;
  transform: translateX(-50%);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease-out;
}
.program-section.active ~ .program-section__close-button {
  opacity: 1;
  visibility: visible;
}
.program-section-children.active ~ .program-section__close-button {
  color: #000;
}

html {
  overflow: visible;
}

body {
  margin: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: "Saira Condensed", sans-serif;
  background-color: #000;
}

:root {
  font-size: 16px;
}

::-webkit-scrollbar {
  display: none;
}

.container {
  width: 80vw;
  margin: 0 auto;
}

@media only screen and (max-width: 800px) {
  #page {
    display: flex;
    flex-direction: column;
  }
}

.language-wrapper {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: initial;
  width: 100vw;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  position: relative;
  font-family: "Khand", sans-serif;
  background-image: url("/data/pictures/a10-2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.language-wrapper__welcome {
  margin-bottom: 100px;
  font-size: 50px;
}
.language-wrapper__welcome p {
  text-align: center;
  margin: 0;
  padding: 0;
}

.language-wrapper__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  margin-left: 10%;
}
.language-wrapper__container .language-buttons {
  text-decoration: none;
  width: 70px;
  margin-bottom: 10px;
}
.language-wrapper__container .language-buttons img {
  border-radius: 6px;
  width: 100%;
}

.hashtag {
  color: white;
  position: absolute;
  bottom: 10%;
  font-size: 20px;
}

@media only screen and (max-width: 800px) {
  .language-wrapper__welcome {
    font-size: 40px;
  }
  .language-wrapper__container .language-buttons {
    width: 60px;
    margin-bottom: 5px;
  }
  .language-wrapper__container .language-buttons img {
    width: 100%;
  }
}
.program-section__images-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 2px solid #ffffff;
}
@media only screen and (max-width: 800px) {
  .program-section__images-container {
    padding-bottom: 0;
  }
}

.program-section__image {
  width: 80%;
  height: 50vh;
  margin-bottom: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 800px) {
  .program-section__image {
    width: calc(100% - 2rem);
  }
}

.main-title {
  position: fixed;
  right: 10vw;
  top: 5vw;
  color: #fff;
  font-weight: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  font-size: 6.5rem;
  transform: translateX(-50px);
  font-family: "Allura", cursive;
}
@media only screen and (max-width: 800px) {
  .main-title {
    font-size: 3rem;
  }
}
.main-title.visible {
  transform: translateX(0);
  visibility: visible;
  opacity: 0.3;
}

.anim1 {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(50px);
}
.anim1.animate {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

img.anim1 {
  transition-delay: 200ms;
}

.header-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: initial;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  position: relative;
}
@media only screen and (max-width: 800px) {
  .header-wrapper {
    order: -2;
  }
}

.section-opener {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
  letter-spacing: 1px;
  font-family: "Saira Condensed", sans-serif;
  z-index: 100;
  padding-bottom: 0.5rem;
  transition: color 500ms ease-in, opacity 300ms ease-in, visibility 500ms ease-in;
}
@media only screen and (max-width: 800px) {
  .section-opener {
    display: none;
  }
}
.section-opener.low-opacity {
  opacity: 0.6;
}
.section-opener:hover, .section-opener.active {
  opacity: 1;
}
.section-opener::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -25%;
  width: 0;
  height: 2px;
  margin-top: 0.5rem;
  animation: lineAnim 1s 3500ms forwards;
  background-color: #b30410;
  transition: background-color 1s;
}
.section-opener[data-target=children] {
  left: 0;
  transform: rotate(-90deg);
}
.program-section-adults.active ~ .section-opener[data-target=children] {
  visibility: hidden;
  opacity: 0;
}
.section-opener[data-target=adults] {
  right: 0;
  transform: rotate(90deg);
}
.program-section-children.active ~ .section-opener[data-target=adults] {
  visibility: hidden;
  opacity: 0;
}
.program-section-children.active ~ .section-opener {
  color: #000;
}
.section-opener__label {
  opacity: 0;
  visibility: hidden;
  animation: labelAnim 1.5s 4300ms forwards;
}
@keyframes lineAnim {
  from {
    width: 0;
  }
  to {
    width: 150%;
  }
}
@keyframes labelAnim {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}

.header__opening-animation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: initial;
  width: 100%;
  height: 100vh;
  position: absolute;
}
@keyframes vanish {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.header__opening-animation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: initial;
  height: 100%;
  background-image: url("/data/pictures/aryan-1-2.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: initial;
  position: fixed;
}
.header__opening-animation-container svg {
  width: 100%;
  height: 100%;
  animation: vanish;
  animation-duration: 2s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
.header__opening-animation-container svg path {
  fill-opacity: 0;
  stroke: rgb(255, 255, 255);
  stroke-width: 2;
  stroke-dasharray: 8000px;
  stroke-dashoffset: 8000px;
  animation: draw 3s ease-in-out 1s 1 normal forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 6500;
  }
}
.header__opening-animation-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 500ms ease-out;
}
.header__opening-animation-container.low-opacity:before {
  background-color: rgba(0, 0, 0, 0.8);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: initial;
  margin-top: 50px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#header__hambi-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 40px;
  height: 30px;
  margin: 0 0 20px 0;
  padding: 0;
  transition: transform 0.5s;
  animation: hambi-menu-appear 1s ease-in 3s 1 normal forwards;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
@keyframes hambi-menu-appear {
  to {
    opacity: 1;
    visibility: visible;
  }
}
#header__hambi-menu .hambi-menu__line {
  width: 100%;
  height: 4px;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  transition: all 0.5s;
}

.header__logo-div {
  opacity: 0;
  visibility: hidden;
  width: 200px;
  position: relative;
  animation: logo-appear 1s ease-in 3s 1 normal forwards;
  margin-top: 20px;
}
@keyframes logo-appear {
  to {
    opacity: 1;
    visibility: visible;
    margin-left: 0;
  }
}
.header__logo-div img {
  width: 100%;
  background-color: rgb(0, 0, 0);
}

#header__hambi-menu.active .hambi-menu__line {
  background-color: #B30410;
}
#header__hambi-menu.active .hambi-menu__line:nth-child(1) {
  transform: translate(7px, 8px) rotate(70deg);
}
#header__hambi-menu.active .hambi-menu__line:nth-child(2) {
  transform: translateY(3px);
  width: 50%;
}
#header__hambi-menu.active .hambi-menu__line:nth-child(3) {
  transform: translate(-6px, -18px) rotate(-70deg);
}

.header__navbar {
  display: flex;
  justify-content: initial;
  align-items: initial;
  flex-direction: column;
  font-family: "Khand", sans-serif;
  position: relative;
  transition: all 1s;
  z-index: 10;
  display: block;
}
.header__navbar .navbar-list {
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  padding: 0;
  margin: 0;
  transition: all 1s;
}
.header__navbar .navbar-list.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s;
}
@keyframes appear {
  to {
    opacity: 1;
    visibility: visible;
  }
}
.header__navbar .navbar-list .nav-button {
  margin-bottom: 16px;
}
.header__navbar .navbar-list .nav-button a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}
.header__navbar .navbar-list li {
  font-size: 30px;
}
.header__navbar .navbar-list li:hover {
  color: #B30410;
}

.header__language-div {
  opacity: 0;
  visibility: hidden;
  width: 100px;
  height: 20px;
  display: flex;
  position: absolute;
  bottom: 10vh;
  left: 10vw;
  animation: appear 1s ease-in 4.5s 1 normal forwards;
}
.header__language-div a {
  margin-right: 10px;
}
.header__language-div a img {
  width: 40px;
}

.header__language-flag {
  transition: all, 0.5s;
}
.header__language-flag:hover {
  transform: scale(1.1);
}

.about-section {
  color: #fff;
  position: relative;
  height: 80vh;
  background-color: transparent;
}
@media only screen and (max-width: 800px) {
  .about-section {
    order: -1;
    height: auto;
    padding: 1rem 1rem 3rem;
  }
}
.about-section.invisible {
  opacity: 0;
  visibility: hidden;
}
.about-section__content-block {
  width: 50%;
}
.about-section__content-block .video {
  margin-top: 50px;
  width: 100%;
  height: 400px;
}
@media only screen and (max-width: 800px) {
  .about-section__content-block {
    width: auto;
    margin: 0 auto;
  }
}
.about-section__text {
  margin-top: 0;
}
.about-section__contact-wrapper {
  margin-top: 3rem;
}
.about-section__contact-title {
  display: inline-block;
  font-size: 2rem;
  letter-spacing: 1px;
  padding-right: 1rem;
  border-bottom: 2px solid #b30410;
}
.about-section__contact {
  color: #fff;
  margin-right: 1.5rem;
}
.about-section__contact:hover i {
  color: #B30410;
}
.about-section__contact:last-child {
  margin-right: 0;
}
.about-section__contact i {
  font-size: 1.6rem;
  transition: 100ms color ease;
}
.about-section p {
  font-size: 1.3rem;
}
@media only screen and (max-width: 800px) {
  .about-section p {
    width: auto;
  }
}

.red-link {
  text-decoration: none;
  color: #b30410;
}
.red-link:link, .red-link:visited, .red-link:active {
  color: #b30410;
}

.fixed-background-div--hearts {
  background-color: rgb(0, 0, 0);
  background-image: url("/data/pictures/cards_retro_poker_Ace_1920x1200-2.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
  height: 90vh;
}

.section-about {
  display: flex;
  justify-content: center;
  align-items: initial;
  flex-direction: initial;
  background-image: url("/data/pictures/a10-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: initial;
  border-top: 10px solid rgb(0, 0, 0);
  border-bottom: 10px solid rgb(0, 0, 0);
}

.section-about__container {
  min-height: 90vh;
  width: 80vw;
  margin: 0 auto;
}
.section-about__container h1 {
  color: rgb(255, 255, 255);
  font-size: 40px;
  font-family: "Expletus Sans", cursive;
  width: 40%;
  margin-top: 100px;
}
.section-about__container p {
  color: rgb(255, 255, 255);
  font-family: "Expletus Sans", cursive;
  width: 40%;
  font-size: 18px;
  margin-top: 100px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.4em;
}
.section-about__container p::before {
  content: "";
  padding-left: 50px;
}

.fixed-background-div--spades {
  background-image: url("/data/pictures/ace-spades-wallpaper.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
}
.fixed-background-div--spades-s {
  height: 20vh;
}
.fixed-background-div--spades-l {
  height: 60vh;
}

.gallery-section {
  background-image: url("/data/pictures/ace-spades-wallpaper.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: initial;
  flex-direction: initial;
  padding-bottom: 100px;
}

.gallery-section__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  background-color: rgb(0, 0, 0);
  margin: 100px 0 100px 0;
  padding-bottom: 100px;
}
.gallery-section__container h1 {
  width: 100%;
  padding: 30px 0;
  color: rgb(255, 255, 255);
  font-size: 40px;
  font-family: "Khand", cursive;
  text-align: center;
  position: relative;
}

.gallery-section__gallery-div {
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  position: relative;
}

.gallery-section__gallery-card {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  z-index: 10;
  display: none;
  position: relative;
}
.gallery-section__gallery-card img {
  width: 100%;
  height: 100%;
}

.gallery-section__buttons-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  position: absolute;
  top: 50%;
}

.gallery-section__buttons {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  font-size: 40px;
  font-weight: bold;
  border: 0px solid black;
  padding: 20px 50px;
  transition: all 0.5s;
  z-index: 10;
}
.gallery-section__buttons:hover {
  background-color: white;
  color: black;
}
.gallery-section__buttons:focus {
  outline: none;
}

#gallery-section__prev-button {
  left: 0;
}

#gallery-section__next-button {
  right: 0;
}

.contact-section {
  height: 100vh;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: initial;
  flex-direction: initial;
}

.contact-section__container {
  display: flex;
  justify-content: initial;
  align-items: initial;
  flex-direction: row;
}

.contact-section__contact-div {
  height: 100%;
  flex: 1;
  position: relative;
}

.contact-section__contact-div-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: initial;
}
.contact-section__contact-div-info .contact-info {
  font-family: "Khand", cursive;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}
.contact-section__contact-div-info .contact-info .logo {
  width: 200px;
}
.contact-section__contact-div-info .contact-info .phone {
  text-decoration: none;
  color: black;
  transition: color 200ms linear;
}
.contact-section__contact-div-info .contact-info .phone:hover {
  cursor: pointer;
  color: #9D0306;
}
.contact-section__contact-div-info .contact-info .hashtag {
  font-style: italic;
  font-size: 0.8em;
}
.contact-section__contact-div-info::after {
  content: "";
  width: 100%;
  height: 60%;
  border-right: 1px solid rgba(179, 4, 16, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-section__contact-div--social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 60px;
}
.contact-section__contact-div--social-media .fab {
  color: rgb(0, 0, 0);
  margin: 20px 0;
  transition: all 0.3s;
}
.contact-section__contact-div--social-media .fa-facebook-f:hover {
  color: #3E5B99;
}
.contact-section__contact-div--social-media .fa-instagram:hover {
  color: orange;
}
.contact-section__contact-div--social-media .fa-youtube:hover {
  color: #FF0000;
}

.comeback-button {
  width: 8vw;
  height: 8vw;
  position: fixed;
  bottom: 20px;
  right: 1vw;
  z-index: 20;
  border: 2px solid transparent;
  background-color: transparent;
  border-radius: 50%;
  transition: all 1s;
  padding: 10px;
}
.comeback-button img {
  height: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.comeback-button:hover {
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}
.comeback-button:focus {
  outline: none;
}

.button-invisible {
  opacity: 0;
  visibility: hidden;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  z-index: 10;
  gap: 8px;
}
.row img {
  width: 100%;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 1;
  max-width: 25%;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    max-width: 50%;
  }
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}
.footer {
  position: relative;
  padding-bottom: 5rem;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.footer ul a {
  color: #ffffff;
  font-size: 1.5rem;
}
.footer small {
  color: #ffffff;
  margin: 0 auto;
}

/* ----------------------- Media query < 700px -------------------------------
----------------------------------------------------------------------------*/
@media only screen and (max-width: 800px) {
  .container {
    width: auto;
  }
  .header__opening-animation-container {
    width: 80vw;
    height: -moz-fit-content;
    height: fit-content;
    align-self: flex-end;
    margin-bottom: 50px;
  }
  .header__container {
    width: 80vw;
  }
  .header__background-image {
    height: 70%;
    bottom: 0;
    top: initial;
    transform: translate(-50%, 0);
  }
  .header__logo-div {
    width: 150px;
    margin-top: 10px;
  }
  .vertical-line {
    display: none;
  }
  .fixed-background {
    display: none;
  }
  .section-about__container {
    width: 80vw;
  }
  .section-about__container h1 {
    margin: 30px 0;
    font-size: 36px;
  }
  .section-about__container p {
    width: 50%;
    font-size: 16px;
    margin: 50px 0;
  }
  .section-about__container p::before {
    content: "";
    padding-left: 50px;
  }
  .fixed-background-div--spades {
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    background-attachment: scroll;
  }
  .program-section__heading-div {
    display: flex;
    justify-content: center;
    align-items: initial;
    flex-direction: initial;
    background-color: rgb(255, 255, 255);
  }
  .program-section__heading {
    width: 50%;
  }
  .program-section__heading::after {
    display: none;
  }
  .program-service-icon {
    width: 12vw;
    height: 12vw;
    padding: 40px 0;
  }
  .program-section__panel {
    display: flex;
    justify-content: initial;
    align-items: initial;
    flex-direction: column;
    margin: 0;
  }
  .program-section__panel .program-description {
    width: 100%;
    margin: 50px 0;
  }
  .program-section__panel .program-description h1 {
    text-align: center;
  }
  .program-section__panel .program-description p {
    text-align: center;
    width: 70%;
  }
  .program-section__panel .program-image {
    flex-basis: 200px;
  }
  .gallery-section {
    background-image: none;
  }
  .gallery-section__container {
    margin: 0;
    padding-bottom: 0;
  }
  .gallery-section__gallery-div {
    width: 100%;
  }
  .gallery-section__buttons-div {
    position: relative;
    top: 0;
    left: 0;
  }
  .gallery-section__buttons {
    flex-grow: 1;
    padding: 20px 0;
  }
  .contact-section {
    margin-bottom: 100px;
  }
  .contact-section__container {
    display: flex;
    justify-content: initial;
    align-items: initial;
    flex-direction: column;
  }
  .contact-section__contact-div-info {
    margin-top: 100px;
  }
  .contact-section__contact-div--social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    font-size: 50px;
  }
  .contact-section__contact-div--social-media .fab {
    color: rgb(0, 0, 0);
    margin: 20px;
    transition: all 0.5s;
  }
  .contact-section__contact-div--social-media .fa-facebook-f:hover {
    color: #3E5B99;
  }
  .contact-section__contact-div--social-media .fa-instagram:hover {
    color: orange;
  }
  .contact-section__contact-div--social-media .fa-youtube:hover {
    color: #FF0000;
  }
  .comeback-button {
    width: 22vw;
    height: 22vw;
  }
}/*# sourceMappingURL=main.css.map */