/* THEME UTILS */
body::-webkit-scrollbar {
  width: 0px; /* Effectively hides the scrollbar */
  background: transparent; /* Makes scrollbar transparent */
}

body {
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 600px) {
  .is-style-hide-mobile {
    display: none;
  }
}

.slide-in-right {
  /* Animation properties */
  position: relative;
  animation: slide-in-right 1s forwards; /* Adjust duration as desired */
}

@keyframes slide-in-right {
  from {
    right: -100%;
  }
  to {
    right: 0;
  }
}
/* BASE */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
}

img, figure, picture, video, canvas, svg, iframe {
  display: block;
  max-width: 100%;
  image-rendering: crisp-edges;
}

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none !important;
}

/* LAYOUT */
.contact-us-button {
  transition: 0.3s;
}
.contact-us-button:hover {
  transform: scale(1.1);
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-wrapper form label {
  font-weight: 700;
}
.form-wrapper form div.field label {
  margin-bottom: 0.5rem;
  display: block;
}
.form-wrapper form input, .form-wrapper form select {
  background: transparent;
  color: currentColor;
  border: 0;
  border-bottom: 1px solid currentColor;
}
.form-wrapper form input[type=email],
.form-wrapper form input[type=text],
.form-wrapper form input[type=tel] {
  width: 100%;
}
.form-wrapper form select {
  border: 1px solid currentColor;
  padding: 0.5rem 0.25rem;
  width: 100%;
}
.form-wrapper form ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.form-wrapper form li {
  margin: 0;
  padding: 0;
}
.form-wrapper form li.hs-form-booleancheckbox label {
  display: flex;
}
.form-wrapper form input[type=submit] {
  border: 1px solid var(--wp--preset--color--seam-green);
  background: var(--wp--preset--color--seam-green);
  color: var(--wp--preset--color--seam-white);
  padding: 0.75rem 0.5rem;
  width: 100%;
  transition: 0.3s;
  text-transform: uppercase;
  cursor: pointer;
}
.form-wrapper form input[type=submit]:hover {
  background: var(--wp--preset--color--seam-white);
  color: var(--wp--preset--color--seam-green);
}

/* COMPONENTS ELEMENTS */
@media (max-width: 600px) {
  .is-style-breakout img {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

@media (max-width: 781px) {
  .is-style-stack-backwards {
    flex-direction: column-reverse;
  }
}

/* SECTIONS and PAGES */
/* OVERRIDES */

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