@import url("https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles:wght@400;700&display=swap");
.big-icon {
  font-size: 50px; /* Adjust the font size as desired */
  color: #b5f554;
}

* {
  margin: 0;
  font-family: "Fuzzy Bubbles", sans-serif;
  font-weight: 400;
  color: black;
}

/*h1, h2, h3 {
    -webkit-text-stroke: $h-stroke $secondary;
}*/
.nav-item a {
  font-size: 36px;
  text-decoration: none;
  color: #FFFFFF;
  -webkit-text-stroke: 2px black;
}
.nav-item a:hover {
  color: rgb(148, 201, 61);
  -webkit-text-stroke: 3px rgb(66, 28, 107);
}

h3 {
  font-size: 32px;
}

.color-primary {
  background-color: rgb(148, 201, 61) !important;
}
.color-secondary {
  background-color: rgb(66, 28, 107) !important;
}
.color-sky_blue {
  background-color: #6EC4E8;
}
.color-dark_green {
  background-color: #3D8C40;
}

.t-color-se {
  color: #94c93d;
}
.t-color-primary {
  color: rgb(148, 201, 61) !important;
}
.t-color-secondary {
  color: rgb(66, 28, 107) !important;
}
.t-color-black {
  color: black !important;
}
.t-color-link {
  color: rgb(55, 55, 255);
}
.t-color-true_white {
  color: #FFFFFF;
}
.t-color-white_shade1 {
  color: #F5F5F5;
}

.h-stroke-primary {
  -webkit-text-stroke: 3px rgb(148, 201, 61);
}

.p-stroke-primary {
  -webkit-text-stroke: 1px rgb(148, 201, 61);
}

.h-stroke-secondary {
  -webkit-text-stroke: 3px rgb(66, 28, 107);
}

.p-stroke-secondary {
  -webkit-text-stroke: 1px rgb(66, 28, 107);
}

.s-rgb-7 {
  background-color: rgba(66, 28, 107, 0.7) !important;
}

.green-rgb-7 {
  background-color: rgba(61, 140, 64, 0.6) !important;
}

.font-size-40 {
  font-size: 20px;
}

section h3 {
  font-style: italic !important;
}

.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}

.center_all {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.width-30 {
  width: 30%;
}
.width-50 {
  width: 50%;
}
.width-80 {
  width: 80%;
}
.width-100 {
  width: 100% !important;
}
.width-100px {
  width: 100px;
}

.h-100v {
  height: 100vh;
}
.h-100p {
  height: 100%;
}
.h-vh-10 {
  height: 10vh;
}

.text-align-center {
  text-align: center !important;
}
.text-align-right {
  text-align: right;
}

.center-all {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

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

.padding-top-2half {
  padding-top: 2.5vh;
}

.margin-0 {
  margin: 0 !important;
}
.margin-t-2 {
  margin-top: 2%;
}
.margin-b-2 {
  margin-bottom: 2%;
}
.margin-b-5 {
  margin-bottom: 5%;
}
.margin-l-20 {
  margin-left: 20px;
}

.event-cards .card {
  background-color: #3D8C40;
  width: 100%;
  border-radius: 20px !important;
}
.event-cards .card .card-body {
  height: 100%;
}
.event-cards .card .col-md-2 p {
  font-size: 100px;
}
.event-cards .card img {
  border-radius: 20px;
  height: auto;
  width: 100%;
}
.event-cards .card .card-date {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: none;
  padding: 5px 10px;
  border-radius: 5px;
}
.event-cards .card .col-md-9 {
  margin-left: 1%;
}
.event-cards .card .card-title {
  margin-top: 1vh;
}

.menu-cards, .photo-container {
  margin: 0 5% 0 5%;
}
.menu-cards .card, .photo-container .card {
  border: 7px solid rgb(148, 201, 61);
}
.menu-cards .card .card-body, .photo-container .card .card-body {
  text-align: center;
  padding: 0;
  background-color: rgb(148, 201, 61);
}
.menu-cards .card .card-body a, .photo-container .card .card-body a {
  background-color: rgb(66, 28, 107);
  margin-top: 1vh;
  width: 80%;
}

.modal h1, .modal label {
  color: rgb(66, 28, 107) !important;
}
.modal h1 {
  font-size: 40px;
}
.modal label {
  font-size: 20px;
}
.modal input {
  border: 3px solid rgb(66, 28, 107);
}
.modal .modal-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

#image-preview {
  width: 100%;
  height: auto;
  border: 2px dashed #ccc;
  margin-top: 10px;
  /*display: flex;
  justify-content: center;
  align-items: center; */
}

#image-preview img {
  max-width: 100%;
  max-height: 100%;
}

.container_truck {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: relative;
  display: none;
}

.ice-cream-truck {
  width: 100px;
  height: 100px;
  background-image: url("../images/icecream_truck_emoji.png"); /* Replace with your ice cream truck image */
  background-size: cover;
  position: absolute;
  left: -100px; /* Start position outside the container */
  bottom: 0;
  animation: drive 5s linear infinite; /* Animation properties */
}

.se_driving {
  background-color: #94c93d;
}
.se_driving .row {
  display: block;
}

@keyframes drive {
  0% {
    left: -100px; /* Start position outside the container */
  }
  100% {
    left: calc(100% + 100px); /* End position outside the container */
  }
}
.adminLocked {
  display: none;
}

.header-overlay {
  position: relative;
  height: 85vh;
}

#scroll_msg {
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translateX(-50%);
  text-align: center;
  margin-bottom: 1vh;
  display: none;
}
#scroll_msg h3 {
  font-size: 50px;
}
#scroll_msg img {
  height: 3vh;
  width: auto;
}

.header_bg {
  width: 100%;
  margin: 0;
  padding: 0;
}
.header_bg h1 {
  color: rgb(148, 201, 61);
  font-size: 36px;
}
.header_bg .color_overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.2;
}
.header_bg * {
  position: relative;
  font-weight: 700;
}

#thanks_box {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50vh;
  background-color: rgba(148, 201, 61, 0.7);
  border-radius: 10%;
}

.contact-container {
  display: flex; /* Use flexbox for flexible layout */
  justify-content: space-between; /* Distribute items evenly with space between them */
}
.contact-container label {
  color: #FFFFFF !important;
}

.contact-section-1 {
  width: 65%; /* Adjust as needed */
  height: 100%;
}
.contact-section-1 form {
  height: 100%;
  margin: 5%;
}
.contact-section-1 form input {
  border: 3px solid rgb(66, 28, 107); /* Change the border color */
}
.contact-section-1 form textarea {
  border: 3px solid rgb(66, 28, 107);
  padding: 2%;
}
.contact-section-1 form .form-label, .contact-section-1 form input, .contact-section-1 form textarea {
  margin-bottom: 1rem;
}
.contact-section-1 form .mb-3 {
  margin: 0 !important;
}
.contact-section-1 form label, .contact-section-1 form input, .contact-section-1 form textarea {
  font-size: 30px;
}
.contact-section-1 form .col-md-12 .form-control {
  padding: 1.5%;
}
.contact-section-1 form .form-control {
  padding: 3%;
}
.contact-section-1 form button {
  padding: 2% 1% 2% 1%;
  border: 8px solid rgb(66, 28, 107);
  border-radius: 10px;
  background-color: rgb(148, 201, 61);
  color: rgb(66, 28, 107);
}
.contact-section-1 form button:hover {
  border: 8px solid rgb(148, 201, 61);
  background-color: rgb(66, 28, 107);
  color: rgb(148, 201, 61);
}

.contact-section-2 {
  width: 30%; /* Adjust as needed */
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-section-2 .socials {
  width: 100%;
  padding: 5%;
  display: block;
}
.contact-section-2 .socials p {
  color: #FFFFFF;
}
.contact-section-2 .socials p img {
  height: 75px;
  width: 75px;
  margin-right: 2vh;
}
.contact-section-2 .socials p:last-child {
  margin-bottom: 0;
}
.contact-section-2 .socials a {
  color: #FFFFFF;
}

.offcanvas {
  z-index: 1 !important;
}
.offcanvas .offcanvas-header, .offcanvas h5 {
  font-size: 30px;
  background-color: #3D8C40;
}
.offcanvas .offcanvas-header #offcanvasScrolling, .offcanvas h5 #offcanvasScrolling {
  background-color: #3D8C40;
}
.offcanvas .offcanvas-body {
  display: flex;
  align-items: center;
  background-color: #3D8C40;
}
.offcanvas .offcanvas-body ul {
  list-style: none;
  text-align: left;
  padding: 0;
  width: 100%;
}
.offcanvas .offcanvas-body ul li {
  display: flex; /* Use flexbox */
  align-items: center; /* Vertically align items */
}
.offcanvas .offcanvas-body ul li:not(:last-child) {
  margin-bottom: 5%;
}
.offcanvas .offcanvas-body ul a {
  text-decoration: none;
}
.offcanvas .offcanvas-body ul img {
  width: 20%;
  margin-right: 5%;
  text-align: center;
}

.offcanvas-nav {
  z-index: 5 !important;
}

.center-vertical {
  display: flex;
  align-items: center; /* Vertically center the items */
}

.nav .ham-nav {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
}
.nav .ham-nav-svg {
  fill: #FFFFFF;
}

.se_logo_nav {
  height: 150px;
  width: 180px;
}

.index_photo {
  margin-top: 2vh;
}

section {
  padding: 2.5vh 3% 2.5vh 3%;
}
section p, section a, section h3 {
  -webkit-text-stroke: 0 transparent;
}
section h3 {
  text-align: center;
}
section .about-photo {
  width: 25%;
  float: right;
  margin-left: 1%;
}

footer p {
  padding: 25px 0px 25px 0px;
}

.hover_default:hover {
  cursor: default;
}

.aButton {
  padding: 1% 3% 1% 3%;
  text-decoration: none;
  border: 3px solid rgb(148, 201, 61);
  border-radius: 10px;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
  color: #F5F5F5;
}

p {
  margin: 0rem !important;
}

@media only screen and (max-width: 600px) {
  .se_driving .row {
    display: block;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  p {
    font-size: 21px;
  }
  .responsive-change {
    display: none;
  }
  .offcanvas-start {
    width: 100% !important;
  }
  .offcanvas-body {
    display: inline !important;
  }
  header {
    height: 70vh !important;
  }
  header .header_bg {
    height: 70vh !important;
  }
  header .color_overlay {
    height: 70vh !important;
  }
  header .header-overlay {
    height: 50vh !important;
  }
  main .about-photo {
    width: 100% !important;
  }
  main #menu_responsive {
    background-image: none !important;
    background-color: #6EC4E8 !important;
  }
  .contact-container {
    flex-direction: column !important;
  }
  .contact-container .contact-section-1, .contact-container .contact-section-2 {
    width: 100%;
  }
  .contact-container .contact-section-1 {
    margin-bottom: 2vh;
  }
  .contact-container .contact-section-1 button {
    width: 100%;
  }
  .contact-container .socials {
    display: flex !important;
    flex-direction: column !important;
  }
  .contact-container .socials p, .contact-container .socials a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    font-size: 20px !important;
  }
  .contact-container .socials p:last-child img {
    margin-right: 5px;
  }
  input, textarea {
    font-size: 20px !important;
  }
  .event-cards .card .margin-l-20 {
    margin-left: 0px;
  }
  .event-cards .card .col-md-9, .event-cards .card img {
    margin: 0px;
  }
  .event-cards .card .last-info {
    padding: 0px 16px 0px 16px;
  }
  .event-cards .card img {
    padding: 16px 16px 0px 16px;
  }
  .resp-nav-margin {
    margin-left: 4%;
  }
  p {
    font-size: 30px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .responsive-change {
    display: none;
  }
  .offcanvas-start {
    width: 100% !important;
  }
  .offcanvas-body {
    align-items: center !important;
  }
  header {
    height: 70vh !important;
  }
  header .header_bg {
    height: 70vh !important;
  }
  header .color_overlay {
    height: 70vh !important;
  }
  header .header-overlay {
    height: 60vh !important;
  }
  main .about-photo {
    width: 100% !important;
  }
  main #menu_responsive {
    background-image: none !important;
    background-color: #6EC4E8 !important;
  }
  .contact-container {
    flex-direction: column !important;
  }
  .contact-container .contact-section-1, .contact-container .contact-section-2 {
    width: 100%;
  }
  .contact-container .contact-section-1 {
    margin-bottom: 2vh;
  }
  .contact-container .contact-section-1 button {
    width: 100%;
    height: 4vh;
  }
  .event-cards .card .margin-l-20 {
    margin-left: 0px;
  }
  .event-cards .card .col-md-9, .event-cards .card img {
    margin: 0px;
  }
  .event-cards .card .last-info {
    padding: 0px 16px 0px 16px;
  }
  .event-cards .card img {
    padding: 16px 16px 0px 16px;
  }
  p {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .responsive-change {
    display: none;
  }
  .offcanvas-start {
    width: 100% !important;
  }
  .offcanvas-body {
    display: inline !important;
  }
  header {
    height: 70vh !important;
  }
  header .header_bg {
    height: 70vh !important;
  }
  header .color_overlay {
    height: 70vh !important;
  }
  header .header-overlay {
    height: 60vh !important;
  }
  main .about-photo {
    width: 100% !important;
  }
  main #menu_responsive {
    background-image: none !important;
    background-color: #6EC4E8 !important;
  }
  .contact-container {
    flex-direction: column !important;
  }
  .contact-container .contact-section-1, .contact-container .contact-section-2 {
    width: 100%;
  }
  .contact-container .contact-section-1 {
    margin-bottom: 2vh;
  }
  .contact-container .contact-section-1 button {
    width: 100%;
    height: 4vh;
  }
  .event-cards .card .margin-l-20 {
    margin-left: 0px;
  }
  .event-cards .card .col-md-9, .event-cards .card img {
    margin: 0px;
  }
  .event-cards .card .last-info {
    padding: 0px 16px 0px 16px;
  }
  footer p {
    margin: 0% 3% 0% 3%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  p {
    font-size: 30px;
  }
  .responsive-change {
    display: none;
  }
  .offcanvas-start {
    width: 100% !important;
  }
  .offcanvas-body {
    display: inline !important;
  }
  header {
    height: 70vh !important;
  }
  header .header_bg {
    height: 70vh !important;
  }
  header .color_overlay {
    height: 70vh !important;
  }
  header .header-overlay {
    height: 60vh !important;
  }
  main .about-photo {
    width: 400px !important;
    height: auto;
  }
  main #menu_responsive {
    background-image: none !important;
    background-color: #6EC4E8 !important;
  }
  .contact-container {
    flex-direction: column !important;
  }
  .contact-container .contact-section-1, .contact-container .contact-section-2 {
    width: 100%;
  }
  .contact-container .contact-section-1 {
    margin-bottom: 2vh;
  }
  .contact-container .contact-section-1 button {
    width: 100%;
    height: 4vh;
  }
  .event-cards .card .margin-l-20 {
    margin-left: 0px;
  }
  .event-cards .card .col-md-9, .event-cards .card img {
    margin: 0px;
  }
  .event-cards .card .last-info {
    padding: 0px 16px 0px 16px;
  }
  footer p {
    margin: 0% 3% 0% 3%;
  }
  .responsive-margin {
    margin: 0 5% 0 5%;
  }
  .event-cards .responsive-card {
    text-align: center !important;
  }
  .event-cards .responsive-card .img-fluid {
    width: 80% !important;
    height: 40vh !important;
  }
}
@media only screen and (min-width: 1200px) {
  p {
    font-size: 30px;
  }
  .event-cards .responsive-card {
    text-align: center !important;
  }
  .event-cards .responsive-card .img-fluid {
    width: 90% !important;
    height: 50vh !important;
    margin: 0 !important;
  }
  .responsive-margin {
    margin: 0 5% 0 5% !important;
  }
  main .about-photo {
    width: 400px !important;
    height: auto;
  }
  main #menu_responsive {
    background-image: none !important;
    background-color: #6EC4E8 !important;
  }
  header {
    height: 80vh !important;
  }
  header .header_bg {
    height: 80vh !important;
  }
  header .color_overlay {
    height: 80vh !important;
  }
  header .header-overlay {
    height: 60vh !important;
  }
  .contact-container {
    flex-direction: column !important;
  }
  .contact-container .contact-section-1, .contact-container .contact-section-2 {
    width: 100%;
  }
  .contact-container .contact-section-1 {
    margin-bottom: 2vh;
  }
  .contact-container .contact-section-1 button {
    width: 100%;
    height: 4vh;
  }
}