@import url("https://fonts.googleapis.com/css2?family=Monoton&family=Montserrat:wght@500&family=Ribeye&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
header {
  height: auto;
  width: 100%;
  background-color: #93E9BE;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 200;
}
header .logo_container {
  width: fit-content;
  padding: 0px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0;
  background-color: rgb(255, 255, 255);
}
header .logo_container .logo_1 {
  font-family: "Monoton", Arial, Helvetica, sans-serif;
  font-size: 2.8rem;
  font-weight: 100;
  padding: 0;
  margin: 0;
  text-align: center;
  letter-spacing: 10px;
}
header .logo_container .logo_2 {
  font-family: "Ribeye", Arial, Helvetica, sans-serif;
  color: #93E9BE;
  font-size: 2.8rem;
  padding: 0;
  margin: 0;
  text-align: center;
  letter-spacing: 8px;
}
@media screen and (min-width: 900px) {
  header .hamburger1 {
    display: none;
  }
  header .menu1 {
    display: none;
  }
  header #input1 {
    display: none;
  }
  header .desktop_nav {
    width: 100%;
    height: 100%;
    padding-right: 5%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10%;
    z-index: 200;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
  }
  header .desktop_nav a {
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    color: black;
    text-decoration: none;
    font-size: 2.6rem;
  }
  header .desktop_nav a:hover {
    color: gray;
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  header .desktop_nav a:not(:hover) {
    color: black;
    color: white;
    text-shadow: black 1px 1px 1px;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 900px) {
  header .desktop_nav {
    display: none;
  }
  header #input1 {
    display: none;
  }
  header .mobile_nav_container {
    margin-top: 2vh;
    width: 100%;
    height: 100%;
  }
  header .hamburger1 {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    height: 45px;
    justify-content: end;
    padding-right: 20px;
    z-index: 120;
  }
  header .hamburger1 div {
    grid-row: span 1;
    position: relative;
    height: 5px;
    width: 45px;
    background-color: black;
    margin: 3px;
    border-radius: 3px;
    transition: all 0.2s ease-in-out;
  }
  header #input1:checked + .hamburger1 .line1 {
    transform: rotate(45deg);
    margin-top: 22.5px;
  }
  header #input1:checked + .hamburger1 .line2 {
    transform: rotate(-45deg);
    margin-top: -8px;
  }
  header #input1:checked + .hamburger1 .line3 {
    transform: scale(0);
  }
  header #input1:checked ~ .menu1 {
    height: 50vh;
    width: 100vw;
    background-color: white;
  }
  header .menu1 {
    grid-row: 2;
    width: 100%;
    display: grid;
    grid-template-rows: repeat(4, 0.5fr);
    list-style: none;
    clear: both;
    width: auto;
    height: 0px;
    overflow: hidden;
    transition: height 0.4s ease;
    transition: all 0.3s ease;
    -webkit-transition: height 0.4s ease;
    -webkit-transition: all 0.3s ease;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 10vh;
    left: 0;
  }
  header .link1 {
    width: 100vw;
    height: 100%;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    font-weight: bold 400;
    background-color: #93E9BE;
    color: rgb(71, 71, 71);
    font-size: 40px;
    text-decoration: none;
    text-align: center;
    color: white;
    text-shadow: black 1px 1px 1px;
  }
}

footer {
  width: 100%;
  height: fit-content;
  background-color: rgba(255, 255, 255, 0.514);
  position: relative;
  margin-top: 5%;
  margin-bottom: 5%;
  /* Add a hover effect if you want */
  /* Set a specific color for each brand */
}
footer hr {
  position: relative;
  width: 60%;
  height: 5px;
  background-color: #93E9BE;
  border: none;
  margin-bottom: 2.5%;
}
footer .social_links {
  margin-top: 5px;
  padding: 5px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
footer .social_links > .fa {
  width: 60px;
  height: 60px;
  text-align: center;
  text-decoration: none;
  border-radius: 15px;
  font-size: 5rem;
  margin-left: 10px;
  margin-right: 10px;
}
footer .fa:hover {
  opacity: 0.7;
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}
footer .fa-facebook {
  color: #93E9BE;
}
footer .fa-instagram {
  color: #93E9BE;
}
footer .bottom_text {
  font-family: "Garet", Arial, Helvetica, sans-serif;
  color: black;
  background-color: white;
  text-align: center;
  font-size: 1.6rem;
  padding-top: 20px;
  margin: 20px;
}
footer .bottom_text #hide {
  display: none;
}

.main_container {
  width: 100%;
  height: fit-content;
  padding-top: 18vh;
}
.main_container .large_banner_section {
  width: 60%;
  height: fit-content;
  position: relative;
  left: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: white;
}
.main_container .large_banner_section:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
  -webkit-transform: scale(1.05);
  -webkit-transition: transform 0.3s ease-in-out;
}
.main_container .large_banner_section:hover p {
  display: block;
}
.main_container .large_banner_section:not(:hover) {
  transform: scale(1);
  transition: transform 0.2s ease-in-out;
  -webkit-transform: scale(1);
  -webkit-transition: transform 0.2s ease-in-out;
}
.main_container .large_banner_section a {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
.main_container .large_banner_section a img {
  width: 100%;
  height: auto;
}
.main_container .small_banner_section {
  width: 95%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: white;
}
.main_container .small_banner_section a {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
.main_container .small_banner_section a img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .main_container .small_img_container {
    width: 60%;
    height: fit-content;
    margin-top: 5%;
    position: relative;
    left: 20%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 20px;
  }
  .main_container .small_img_container .small_image_cell {
    aspect-ratio: 1/1;
    width: 200px;
    max-width: 500px;
    flex: auto;
    overflow: hidden;
    position: relative;
    border: 5px solid #93E9BE;
    border-radius: 10px;
  }
  .main_container .small_img_container .small_image_cell:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
    -webkit-transform: scale(1.05);
    -webkit-transition: transform 0.3s ease-in-out;
  }
  .main_container .small_img_container .small_image_cell:hover p {
    display: block;
  }
  .main_container .small_img_container .small_image_cell:not(:hover) {
    transform: scale(1);
    transition: transform 0.2s ease-in-out;
    -webkit-transform: scale(1);
    -webkit-transition: transform 0.2s ease-in-out;
  }
  .main_container .small_img_container .small_image_cell img {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
  }
  .main_container .small_img_container .small_image_cell .small_img_text {
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    position: absolute;
    bottom: 0;
  }
  .main_container .small_img_container .small_image_cell .small_img_text h1 {
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: rgb(71, 71, 71);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    padding-bottom: 0.3rem;
    background-color: #93E9BE;
    text-shadow: black 1px 1px 1px;
  }
  .main_container .small_img_container .small_image_cell .small_img_text p {
    font-family: "Garet", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(71, 71, 71);
    text-align: center;
    margin: 0;
    padding: 0.5rem;
  }
}
@media screen and (max-width: 900px) {
  .main_container .small_img_container {
    width: 95%;
    height: auto;
    margin: 0;
    padding: 0;
    margin-top: 5%;
    margin-left: 2.5%;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
  }
  .main_container .small_img_container .small_image_cell {
    aspect-ratio: 1/1;
    width: fit-content;
    height: auto;
    margin: 2vh;
    margin-top: 8vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #93E9BE;
    border-radius: 10px;
  }
  .main_container .small_img_container .small_image_cell img {
    position: relative;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 0;
  }
  .main_container .small_img_container .small_image_cell .small_img_text {
    width: 100%;
    min-height: 30%;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    position: absolute;
    bottom: 0;
    padding-bottom: 5%;
    display: flex;
    flex-wrap: wrap;
  }
  .main_container .small_img_container .small_image_cell .small_img_text h1 {
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: rgb(71, 71, 71);
    text-align: center;
    background-color: #93E9BE;
    align-self: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    margin: 0;
    color: white;
    text-shadow: black 1px 1px 1px;
  }
  .main_container .small_img_container .small_image_cell .small_img_text p {
    justify-self: center;
    align-self: center;
    font-family: "Garet", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(71, 71, 71);
    text-align: center;
    margin: 0;
    padding: 20px;
  }
}
@media screen and (min-width: 900px) {
  .main_container .large_image_container {
    width: 60%;
    height: 65vh;
    margin-top: 10vh;
    padding: 0%;
    position: relative;
    left: 20%;
    overflow: hidden;
    border: 5px solid #93E9BE;
    border-radius: 10px;
  }
  .main_container .large_image_container:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
    -webkit-transform: scale(1.05);
    -webkit-transition: transform 0.3s ease-in-out;
  }
  .main_container .large_image_container:hover p {
    display: block;
  }
  .main_container .large_image_container:not(:hover) {
    transform: scale(1);
    transition: transform 0.2s ease-in-out;
    -webkit-transform: scale(1);
    -webkit-transition: transform 0.2s ease-in-out;
  }
  .main_container .large_image_container img {
    position: absolute;
    width: 100%;
    height: auto;
  }
  .main_container .large_image_container .large_img_text {
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    position: absolute;
    top: 5%;
  }
  .main_container .large_image_container .large_img_text h1 {
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: rgb(71, 71, 71);
    text-align: center;
    margin: 0;
    padding: 0;
    padding-bottom: 0.3rem;
  }
  .main_container .large_image_container .large_img_text p {
    font-family: "Garet", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(71, 71, 71);
    text-align: center;
    margin: 0;
    padding: 0.5rem;
  }
}
@media screen and (max-width: 900px) {
  .main_container .large_image_container {
    width: fit-content;
    height: auto;
    margin-top: 10vh;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #93E9BE;
    border-bottom: 5px solid #93E9BE;
    border-radius: 10px;
  }
  .main_container .large_image_container img {
    position: relative;
    width: 100%;
    height: auto;
  }
  .main_container .large_image_container .large_img_text {
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    position: relative;
    top: 5%;
  }
  .main_container .large_image_container .large_img_text h1 {
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: rgb(71, 71, 71);
    text-align: center;
    margin: 0;
    padding: 0;
    padding-bottom: 0.3rem;
  }
  .main_container .large_image_container .large_img_text p {
    font-family: "Garet", Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(71, 71, 71);
    text-align: center;
    margin: 0;
    padding: 0.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .main_container .small_banner_section {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .main_container .large_banner_section {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .month {
    width: 90%;
    height: 85vh;
    margin: 5%;
    margin-top: 13vh;
    margin-bottom: 0;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    font-size: 2.2rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.412);
  }
  .month tbody tr td {
    width: 14.2857142857%;
    height: 17%;
    border: solid #737373 2px;
    border-radius: 10px;
  }
  .month tbody tr .day {
    height: 17%;
    color: #438464;
    background-position: center;
    background-size: cover;
  }
  .month tbody tr .day a {
    padding: 0;
    margin: 0;
    text-decoration: none;
    color: #438464;
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-self: space-between;
    align-self: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .month tbody tr .day a:hover {
    color: black;
  }
  .month tbody tr .day .bg_img {
    width: 100%;
    height: 100%;
    content: "";
    background-position: center;
    background-size: cover;
    opacity: 0.2;
  }
  .month_head {
    height: 10%;
    padding: 10px;
    color: white;
    background-color: #93E9BE;
    border: solid #737373 2px;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.5);
    letter-spacing: 10px;
    font-size: 4rem;
    border-radius: 10px;
  }
  .day_head {
    height: 5%;
    padding: 10px;
    color: black;
  }
  .pop_up {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    animation: pop_up_animation;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    z-index: 250;
    /* Sit on top */
  }
  .pop_up_content {
    width: 80%;
    height: 80%;
    position: relative;
    margin: auto;
    margin-top: 12vh;
    overflow: hidden;
    border: 1px solid white;
    background-color: #fefefe;
    border-radius: 20px;
  }
  .pop_up_content .popup_bg_img {
    position: absolute;
    top: 10%;
    width: 100%;
    height: 80%;
    content: "";
    background-position: center;
    background-size: cover;
    opacity: 0.2;
  }
  .pop_up_content .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  .pop_up_content .close:hover {
    cursor: pointer;
    color: red;
  }
  .pop_up_content .popup_header {
    width: 100%;
    height: 10%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #93E9BE;
    align-items: center;
    border-bottom: solid 2px white;
  }
  .pop_up_content .popup_header #popup_title {
    font-size: 4rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
    width: 100%;
  }
  .pop_up_content .popup_footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 10%;
    background-color: #93E9BE;
    border-top: solid 2px white;
  }
  .pop_up_content #popup_description {
    font-size: 2.8rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    margin-bottom: 100px;
    text-align: center;
  }
  .pop_up_content #popup_event_date {
    font-size: 2rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .pop_up_content #popup_start_time {
    font-size: 2rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .pop_up_content #popup_end_time {
    font-size: 2rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .pop_up_content #popup_age {
    font-size: 2rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .pop_up_content #popup_student_limit {
    font-size: 2rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .pop_up_content #popup_price {
    text-align: center;
    font-size: 2rem;
    font-family: "Garet", Arial, Helvetica, sans-serif;
  }
  .pop_up_content .button_alignment {
    width: 100%;
    height: fit-content;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pop_up_content .button_alignment .normal_button {
    background-color: #c2fbd7;
    border-radius: 100px;
    box-shadow: rgba(44, 187, 99, 0.2) 0 -25px 18px -14px inset, rgba(44, 187, 99, 0.15) 0 1px 2px, rgba(44, 187, 99, 0.15) 0 2px 4px, rgba(44, 187, 99, 0.15) 0 4px 8px, rgba(44, 187, 99, 0.15) 0 8px 16px, rgba(44, 187, 99, 0.15) 0 16px 32px;
    color: green;
    cursor: pointer;
    display: inline-block;
    font-family: CerebriSans-Regular, -apple-system, system-ui, Roboto, sans-serif;
    padding: 7px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 250ms;
    border: 0;
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    position: relative;
    bottom: 5%;
    margin: 20px;
    z-index: 260;
  }
  .pop_up_content .button_alignment .normal_button:hover {
    box-shadow: rgba(44, 187, 99, 0.35) 0 -25px 18px -14px inset, rgba(44, 187, 99, 0.25) 0 1px 2px, rgba(44, 187, 99, 0.25) 0 2px 4px, rgba(44, 187, 99, 0.25) 0 4px 8px, rgba(44, 187, 99, 0.25) 0 8px 16px, rgba(44, 187, 99, 0.25) 0 16px 32px;
    transform: scale(1.05) rotate(-5deg);
  }
}
@media screen and (max-width: 1000px) {
  .month {
    width: 95%;
    height: 80vh;
    margin: auto;
    margin-top: 12vh;
    margin-bottom: 0;
    padding: 0;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.412);
  }
  .month tbody tr td {
    height: 14.1666666667%;
    border-radius: 10px;
  }
  .month tbody tr .day {
    color: #438464;
    background-position: center;
    background-size: cover;
  }
  .month tbody tr .day a {
    text-decoration: none;
    color: #438464;
    transition: all 0.3s ease-in-out;
    padding: 0;
    margin: auto;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    justify-self: space-around;
    align-self: flex-start;
  }
  .month tbody tr .day a .bg_img {
    width: 100%;
    height: 100%;
    content: "";
    background-position: center;
    background-size: cover;
    opacity: 0.2;
  }
  .month_head {
    height: 10%;
    padding: 10px;
    color: white;
    background-color: #93E9BE;
    border: solid #737373 2px;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.5);
    letter-spacing: 10px;
    font-size: 2.2rem;
    border-radius: 10px;
  }
  .day_head {
    height: 5%;
    padding: 10px;
    color: black;
  }
  .pop_up {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    animation: pop_up_animation;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    z-index: 250;
    /* Sit on top */
  }
  .pop_up_content {
    width: 95%;
    height: 95%;
    position: relative;
    margin: auto;
    margin-top: 2.5vh;
    overflow: hidden;
    border: 1px solid white;
    background-color: #fefefe;
    border-radius: 20px;
  }
  .pop_up_content .popup_bg_img {
    position: absolute;
    top: 10%;
    width: 100%;
    height: 80%;
    content: "";
    background-position: center;
    background-size: cover;
    opacity: 0.2;
  }
  .pop_up_content .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  .pop_up_content .close:hover {
    cursor: pointer;
    color: red;
  }
  .pop_up_content .popup_header {
    width: 100%;
    height: 10%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #93E9BE;
    align-items: center;
    border-bottom: solid 2px white;
  }
  .pop_up_content .popup_header #popup_title {
    font-size: 2.4rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
    width: 100%;
  }
  .pop_up_content .popup_footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 10%;
    background-color: #93E9BE;
    border-top: solid 2px white;
  }
  .pop_up_content #popup_description {
    font-size: 1.8rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    margin-bottom: 100px;
    text-align: center;
  }
  .pop_up_content #popup_event_date {
    font-size: 1.8rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .pop_up_content #popup_start_time {
    font-size: 1.8rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .pop_up_content #popup_end_time {
    font-size: 1.8rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .pop_up_content #popup_age {
    font-size: 1.8rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .pop_up_content #popup_student_limit {
    font-size: 1.8rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .pop_up_content #popup_price {
    text-align: center;
    font-size: 1.8rem;
    font-family: "Garet", Arial, Helvetica, sans-serif;
  }
  .pop_up_content .button_alignment {
    width: 100%;
    height: fit-content;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pop_up_content .button_alignment .normal_button {
    background-color: #c2fbd7;
    border-radius: 100px;
    box-shadow: rgba(44, 187, 99, 0.2) 0 -25px 18px -14px inset, rgba(44, 187, 99, 0.15) 0 1px 2px, rgba(44, 187, 99, 0.15) 0 2px 4px, rgba(44, 187, 99, 0.15) 0 4px 8px, rgba(44, 187, 99, 0.15) 0 8px 16px, rgba(44, 187, 99, 0.15) 0 16px 32px;
    color: green;
    cursor: pointer;
    display: inline-block;
    font-family: CerebriSans-Regular, -apple-system, system-ui, Roboto, sans-serif;
    padding: 7px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 250ms;
    border: 0;
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    position: relative;
    bottom: 5%;
    margin: 20px;
    z-index: 260;
  }
  .pop_up_content .button_alignment .normal_button:hover {
    box-shadow: rgba(44, 187, 99, 0.35) 0 -25px 18px -14px inset, rgba(44, 187, 99, 0.25) 0 1px 2px, rgba(44, 187, 99, 0.25) 0 2px 4px, rgba(44, 187, 99, 0.25) 0 4px 8px, rgba(44, 187, 99, 0.25) 0 8px 16px, rgba(44, 187, 99, 0.25) 0 16px 32px;
    transform: scale(1.05) rotate(-5deg);
  }
}
.button_container {
  width: 85%;
  margin: auto;
  margin-top: 2%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.button_container button {
  display: inline-block;
  font-size: 16px;
  padding: 10px 20px;
  color: #fff;
  background-color: #93E9BE;
  border: none;
  border-radius: 5px;
  text-align: center;
  transition: all 0.5s;
  cursor: pointer;
  text-decoration: none;
}
.button_container button:hover {
  background-color: #438464;
}
.button_container button:active {
  background-color: #93E9BE;
  box-shadow: 0 5px #438464;
  transform: translateY(4px);
}

@media screen and (min-width: 1000px) {
  .events_box {
    width: 95%;
    height: auto;
    margin: auto;
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    grid-auto-rows: 40vh;
    grid-auto-flow: dense;
    gap: 20px;
  }
  .event_object {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.358);
    border: solid #737373 1px;
    box-shadow: 10px 10px 0px 0px rgba(147, 233, 190, 0.4588235294);
    position: relative;
    overflow: hidden;
  }
  .event_object h1 {
    position: relative;
    width: 100%;
    font-size: 2rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
    margin: 0;
    padding: 10px;
    padding-left: 20px;
    z-index: 100;
    background-color: #93E9BE;
  }
  .event_object h2 {
    font-size: 1.6rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: left;
    color: #438464;
    margin: 0;
    margin-top: 10px;
    padding-right: 50%;
    padding-left: 10px;
  }
  .event_object p {
    font-size: 1.4rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: left;
    margin: 0;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 50%;
  }
  .event_object a {
    position: absolute;
    width: 100%;
    height: 10%;
    bottom: 0;
    left: 0;
    padding-top: 10px;
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.5);
    z-index: 100;
    background-color: #93E9BE;
  }
  .event_object .bg_image_container {
    position: absolute;
    top: 0%;
    right: -45%;
    height: 155%;
    width: 120%;
    transform: skewY(-45deg);
    overflow: hidden;
    background-color: white;
  }
  .event_object .bg_image_container .bg_image {
    width: 100%;
    height: 100%;
    background-color: red;
    background-size: cover;
    background-position: center;
    transform: skewY(45deg);
    opacity: 0.7;
    z-index: -1;
  }
}
@media screen and (max-width: 1000px) {
  .events_box {
    width: 95%;
    height: auto;
    margin: auto;
    margin-top: 100px;
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: 40vh;
    grid-auto-flow: dense;
    gap: 20px;
  }
  .event_object {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.358);
    box-shadow: 10px 10px 0px 0px rgba(147, 233, 190, 0.4588235294);
    position: relative;
    overflow: hidden;
  }
  .event_object h1 {
    position: relative;
    width: 100%;
    font-size: 1.8rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
    margin: 0;
    padding: 10px;
    padding-left: 0;
    z-index: 100;
    background-color: #93E9BE;
  }
  .event_object h2 {
    font-size: 1.6rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
    color: #438464;
    margin: 0;
    margin-top: 10px;
    padding-left: 10px;
  }
  .event_object p {
    font-size: 1.4rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
    color: rgb(71, 71, 71);
    margin: 0;
    margin-top: 10px;
  }
  .event_object a {
    position: absolute;
    width: 100%;
    height: 10%;
    bottom: 0;
    left: 0;
    padding-top: 10px;
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    font-family: "Ribeye", Arial, Helvetica, sans-serif;
    text-align: center;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.5);
    z-index: 100;
    background-color: #93E9BE;
  }
  .event_object .bg_image_container {
    position: absolute;
    top: 0%;
    right: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: -1;
  }
  .event_object .bg_image_container .bg_image {
    width: 100%;
    height: 100%;
    background-color: red;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
  }
}
@keyframes pop_up_animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 900px) {
  .menu_container {
    width: 90%;
    height: auto;
    margin: 5%;
    margin-bottom: 15%;
    margin-top: 12vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
@media screen and (min-width: 900px) {
  .menu_container {
    width: 90%;
    height: auto;
    margin: 5%;
    margin-bottom: 15%;
    margin-top: 12vh;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .menu_section {
    width: 100%;
    height: auto;
    grid-column: span 1;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.menu_header {
  font-family: "Ribeye", Arial, Helvetica, sans-serif;
  color: #93E9BE;
  justify-self: left;
  font-size: 5.4rem;
  font-weight: 100;
  padding: 0;
  margin: 0;
  margin-top: 50px;
  text-align: left;
  text-wrap: wrap;
}

.menu_item_highlight {
  display: border-box;
  width: auto;
  min-width: 60%;
  height: auto;
  border: solid #93E9BE 5px;
  padding: 10px;
}

.menu_item {
  font-family: "Ribeye", Arial, Helvetica, sans-serif;
  color: rgb(71, 71, 71);
  font-size: 3.2rem;
  font-weight: 100;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  text-align: left;
}

.menu_desc {
  font-family: "Garet", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 100;
  padding: 0;
  padding-top: 10px;
  margin: 0;
  text-align: left;
  text-wrap: wrap;
}

.custom_form {
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 1000px) {
  .custom_form form {
    width: 60%;
    height: auto;
    padding: 20px;
    margin-top: 10vh;
    border: solid #93E9BE 3px;
    border-radius: 20px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: grid;
    grid-template-columns: repeat(1fr);
    grid-auto-rows: minmax(5rem, auto);
  }
  .custom_form label {
    height: 100%;
    grid-column: span 1;
    padding-right: 30px;
    font-family: "Garet", Arial, Helvetica, sans-serif;
    color: #438464;
    font-size: 2rem;
    font-weight: bold;
    text-align: right;
    display: flex;
    align-items: flex-end;
    justify-self: right;
    text-overflow: wrap;
  }
  .custom_form input {
    grid-column: span 3;
    font-family: "Garet", Arial, Helvetica, sans-serif;
    color: #438464;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: left;
    border: none;
    border-bottom: solid #93E9BE 3px;
    background-color: white;
    overflow-wrap: break-word;
  }
}
@media screen and (max-width: 1000px) {
  .custom_form form {
    width: 95%;
    height: auto;
    padding: 20px;
    margin-top: 10vh;
    border: none;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(5rem, auto);
  }
  .custom_form label {
    height: 100%;
    grid-column: span 4;
    padding-right: 30px;
    font-family: "Garet", Arial, Helvetica, sans-serif;
    color: #438464;
    font-size: 2rem;
    font-weight: bold;
    text-align: right;
    display: flex;
    align-items: flex-end;
    justify-self: start;
    text-overflow: wrap;
  }
  .custom_form input {
    grid-column: span 4;
    font-family: "Garet", Arial, Helvetica, sans-serif;
    color: #438464;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: left;
    border: none;
    border-bottom: solid #93E9BE 3px;
    background-color: white;
    overflow-wrap: break-word;
  }
}
.custom_form label[for=id_item_1] {
  grid-column: span 4;
  grid-row: span 2;
  justify-self: left;
}
@media screen and (min-width: 1000px) {
  .custom_form #id_item_1 {
    grid-column: span 4;
    grid-row: span 2;
    width: 80%;
    position: relative;
    left: 10%;
    border: solid #93E9BE 3px;
  }
}
@media screen and (max-width: 1000px) {
  .custom_form #id_item_1 {
    grid-column: span 4;
    grid-row: span 2;
    width: 95%;
    position: relative;
    border: solid #93E9BE 3px;
  }
}
.custom_form label[for=id_item_1_quantity] {
  grid-column: 1/span 1;
}
.custom_form #id_item_1_quantity {
  grid-column: 2/span 2;
}
.custom_form label[for=id_item_1_budget] {
  grid-column: 1/span 1;
}
.custom_form #id_item_1_budget {
  grid-column: 2/span 2;
}
.custom_form label[for=id_item_2] {
  grid-column: span 4;
  grid-row: span 2;
  justify-self: left;
}
@media screen and (min-width: 1000px) {
  .custom_form #id_item_2 {
    grid-column: span 4;
    grid-row: span 2;
    width: 80%;
    position: relative;
    left: 10%;
    border: solid #93E9BE 3px;
  }
}
@media screen and (max-width: 1000px) {
  .custom_form #id_item_2 {
    grid-column: span 4;
    grid-row: span 2;
    width: 95%;
    position: relative;
    border: solid #93E9BE 3px;
  }
}
.custom_form label[for=id_item_2_quantity] {
  grid-column: 1/span 1;
}
.custom_form #id_item_2_quantity {
  grid-column: 2/span 2;
}
.custom_form label[for=id_item_2_budget] {
  grid-column: 1/span 1;
}
.custom_form #id_item_2_budget {
  grid-column: 2/span 2;
}
.custom_form label[for=id_item_3] {
  grid-column: span 4;
  grid-row: span 2;
  justify-self: left;
}
@media screen and (min-width: 1000px) {
  .custom_form #id_item_3 {
    grid-column: span 4;
    grid-row: span 2;
    width: 80%;
    position: relative;
    left: 10%;
    border: solid #93E9BE 3px;
  }
}
@media screen and (max-width: 1000px) {
  .custom_form #id_item_3 {
    grid-column: span 4;
    grid-row: span 2;
    width: 95%;
    position: relative;
    border: solid #93E9BE 3px;
  }
}
.custom_form label[for=id_item_3_quantity] {
  grid-column: 1/span 1;
}
.custom_form label[for=id_item_3_quantity] {
  grid-column: 1/span 1;
}
.custom_form #id_item_3_quantity {
  grid-column: 2/span 2;
}
.custom_form label[for=id_item_3_budget] {
  grid-column: 1/span 1;
}
.custom_form #id_item_3_budget {
  grid-column: 2/span 2;
}
.custom_form label[for=id_item_4] {
  grid-column: span 4;
  grid-row: span 2;
  justify-self: left;
}
@media screen and (min-width: 1000px) {
  .custom_form #id_item_4 {
    grid-column: span 4;
    grid-row: span 2;
    width: 80%;
    position: relative;
    left: 10%;
    border: solid #93E9BE 3px;
  }
}
@media screen and (max-width: 1000px) {
  .custom_form #id_item_4 {
    grid-column: span 4;
    grid-row: span 2;
    width: 95%;
    position: relative;
    border: solid #93E9BE 3px;
  }
}
.custom_form label[for=id_item_4_quantity] {
  grid-column: 1/span 1;
}
.custom_form label[for=id_item_4_quantity] {
  grid-column: 1/span 1;
}
.custom_form #id_item_4_quantity {
  grid-column: 2/span 2;
}
.custom_form label[for=id_item_4_budget] {
  grid-column: 1/span 1;
}
.custom_form #id_item_4_budget {
  grid-column: 2/span 2;
}
.custom_form label[for=id_special_instructions] {
  grid-column: span 4;
  grid-row: span 2;
  justify-self: left;
}
@media screen and (min-width: 1000px) {
  .custom_form #id_special_instructions {
    grid-column: span 4;
    grid-row: span 4;
    width: 80%;
    position: relative;
    left: 10%;
    border: solid #93E9BE 3px;
  }
}
@media screen and (max-width: 1000px) {
  .custom_form #id_special_instructions {
    grid-column: span 4;
    grid-row: span 4;
    width: 95%;
    position: relative;
    border: solid #93E9BE 3px;
  }
}
.custom_form input[type=submit] {
  grid-column: span 4;
  grid-row: span 1;
  justify-self: center;
  align-self: center;
  width: 50%;
  height: 50%;
  border-radius: 10px;
  border: solid #93E9BE 3px;
  background-color: #438464;
  color: white;
  font-family: "Ribeye", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  margin-top: 20px;
  margin-bottom: 20px;
}
.custom_form input[type=submit]:hover {
  background-color: #93E9BE;
  color: white;
  border: solid #438464 3px;
  transition: all 0.3s ease 0s;
}
.custom_form .top_form_notes {
  grid-column: span 4;
  grid-row: span 1;
}
.custom_form .top_form_notes p {
  font-family: "Garet", Arial, Helvetica, sans-serif;
  color: rgb(71, 71, 71);
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #438464;
}
.custom_form .form_notes {
  grid-column: span 4;
  grid-row: span 1;
}
.custom_form .form_notes p {
  font-family: "Garet", Arial, Helvetica, sans-serif;
  color: rgb(71, 71, 71);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
}
.custom_form .form_notes #thankyou_note {
  font-family: "Ribeye", Arial, Helvetica, sans-serif;
  color: #438464;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
}

.success_container {
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.success_container p {
  font-family: "Ribeye", Arial, Helvetica, sans-serif;
  color: #438464;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

html, body {
  width: 100%;
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
  /* 62.5% of 16px browser font size is 10px */
  font-size: 62.5%;
}

@media screen and (min-width: 1000px) {
  .body_bg {
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: -1;
    background-size: 40%;
    opacity: 0.5;
  }
}
@media screen and (max-width: 1000px) {
  .body_bg {
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: -1;
    background-size: 75%;
    opacity: 0.5;
  }
}
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/*# sourceMappingURL=styles.css.aff21ef0b932.map */
