/* Overwrite Gutenberg Variables */
:root {
  --wp--style--global--content-size: 1000px;
}

/* Breakpoints */
/* Typography */
/* Color Palette */
/* Layout */
footer {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  gap: 25px;
}
@media only screen and (min-width: 1024px) {
  footer {
    flex-direction: row;
    gap: 100px;
  }
}
footer .logo {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  footer .logo {
    justify-content: flex-start;
  }
}
footer .logo img {
  max-height: 5rem;
  max-width: 10rem;
}
footer .hours {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  footer .hours {
    text-align: left;
  }
}
footer nav ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  footer nav ul {
    flex-direction: row;
  }
}
footer nav ul li {
  margin: 1rem 0 0 0;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  footer nav ul li {
    margin: 0 0 0 2rem;
    text-align: left;
  }
}
footer nav ul li a {
  text-decoration: none;
}
footer .social a img {
  height: 25px;
}

/* Overwrite Gutenberg Variables */
:root {
  --wp--style--global--content-size: 1000px;
}

/* Breakpoints */
/* Typography */
/* Color Palette */
/* Layout */
.header-wrapper {
  position: relative;
}

header {
  padding: 1rem 0;
}
@media only screen and (min-width: 1024px) {
  header {
    padding-bottom: 50px;
  }
}
header nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 1024px) {
  header nav {
    height: 75px;
  }
}
header nav .logo {
  max-height: 8rem;
}
header nav .toggle-mobile-menu {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  height: 1.25rem;
  justify-content: center;
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  header nav .toggle-mobile-menu {
    display: none;
  }
}
header nav .toggle-mobile-menu span {
  background-color: white;
  display: block;
  height: 0.25rem;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  width: 1.75rem;
}
header nav .toggle-mobile-menu::before, header nav .toggle-mobile-menu::after {
  background-color: white;
  content: "";
  display: flex;
  height: 0.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease-in-out;
  width: 1.75rem;
}
header nav .toggle-mobile-menu::before {
  transform: translateY(calc(-50% - 0.5rem));
}
header nav .toggle-mobile-menu::after {
  transform: translateY(calc(-50% + 0.5rem));
}
header nav ul {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 1rem;
}
@media only screen and (min-width: 1024px) {
  header nav ul {
    align-items: center;
    display: flex;
    padding: 0;
  }
}
header nav ul .nav-item {
  margin: 1rem 0 0 0;
}
header nav ul .nav-item .nav-link {
  letter-spacing: 1px;
}
@media only screen and (min-width: 1024px) {
  header nav ul .nav-item {
    margin: 0 0 0 2rem;
  }
}
header nav ul .nav-item a {
  text-decoration: none;
}
header nav.active .toggle-mobile-menu span {
  opacity: 0;
}
header nav.active .toggle-mobile-menu::before {
  transform: translateY(-50%) rotate(45deg);
}
header nav.active .toggle-mobile-menu::after {
  transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (max-width: 1023px) {
  header nav.active ul {
    bottom: 0;
    display: flex;
    flex-direction: column;
    left: 0;
    position: absolute;
    transform: translateY(100%);
    width: 100vw;
    z-index: 1000;
  }
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

@media only screen and (min-width: 1024px) {
  .dropdown-toggle::after {
    display: none !important;
  }
}

.secondary-nav {
  padding: 4px 0;
}
.secondary-nav .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.secondary-nav .utility-nav {
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.secondary-nav .utility-nav li {
  margin: 0;
  padding: 0;
}
.secondary-nav .utility-nav li a {
  color: #6fcfeb;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 10px;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}
.secondary-nav .utility-nav li a:hover {
  color: #31b0d5;
  text-decoration: underline;
}
.secondary-nav .utility-nav li a i {
  font-size: 1.1rem;
}
.secondary-nav .utility-link {
  color: #6fcfeb;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 10px;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}
.secondary-nav .utility-link:hover {
  color: #008aab;
  text-decoration: underline;
}
.secondary-nav .utility-link i {
  font-size: 1.1rem;
}

/* Overwrite Gutenberg Variables */
:root {
  --wp--style--global--content-size: 1000px;
}

/* Breakpoints */
/* Typography */
/* Color Palette */
/* Layout */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

body.scroll-lock {
  overflow: hidden;
}

img {
  display: flex;
  max-width: 100%;
}

button,
input[type=submit],
label {
  cursor: pointer;
  font-size: 1rem;
}

i {
  display: flex;
}

.epic-button {
  border: none;
  display: inline-block;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.epic-button.primary {
  background-color: #008aab;
  color: #ffffff;
}
.epic-button.secondary {
  background-color: #6fcfeb;
  color: #000000;
}

.h100 {
  height: 100%;
}

.animate {
  transition-duration: 0.5s;
  transition-property: opacity, transform;
}
.animate.fade-in {
  opacity: 0;
}
.animate.fade-in.animated {
  opacity: 1;
}
.animate.fade-up {
  opacity: 0;
  transform: translateY(20px);
}
.animate.fade-up.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate.fade-down {
  opacity: 0;
  transform: translateY(-20px);
}
.animate.fade-down.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate.fade-left {
  opacity: 0;
  transform: translateX(20px);
}
.animate.fade-left.animated {
  opacity: 1;
  transform: translateX(0);
}
.animate.fade-right {
  opacity: 0;
  transform: translateX(-20px);
}
.animate.fade-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Overwrite Gutenberg Variables */
:root {
  --wp--style--global--content-size: 1000px;
}

/* Breakpoints */
/* Typography */
/* Color Palette */
/* Layout */
.wp-block-columns {
  position: relative;
}

.wp-block-group {
  max-width: none !important;
  overflow: hidden;
}
.wp-block-group.reverse-columns-mobile > .wp-block-columns .wp-block-column:first-child {
  order: 1;
}
@media only screen and (min-width: 782px) {
  .wp-block-group.reverse-columns-mobile > .wp-block-columns .wp-block-column:first-child {
    order: initial;
  }
}

.wp-block-group__inner-container,
.content {
  max-width: 1000px;
  margin: 0 auto;
}

.content-padding,
.wp-block-group {
  padding: 3rem 1rem;
}
@media only screen and (min-width: 782px) {
  .content-padding,
  .wp-block-group {
    padding: 6rem 2rem;
  }
}

.content-padding-x {
  padding: 0 1rem;
}
@media only screen and (min-width: 782px) {
  .content-padding-x {
    padding: 0 2rem;
  }
}

.content-padding-y {
  padding: 3rem 0;
}
@media only screen and (min-width: 782px) {
  .content-padding-y {
    padding: 6rem 0;
  }
}

.wp-block-columns {
  margin: 0;
}
.wp-block-columns + .wp-block-columns {
  margin-top: 6rem;
}

.wp-block-cover {
  padding: 0;
}

.frame {
  margin: 0 auto;
  max-width: var(--wp--style--global--content-size);
}

.has-white-background-color {
  background-color: #ffffff;
}

.has-black-background-color {
  background-color: #000000;
}

.has-dark-blue-background-color {
  background-color: #008aab;
}

.has-light-blue-background-color {
  background-color: #6fcfeb;
}

/* Overwrite Gutenberg Variables */
:root {
  --wp--style--global--content-size: 1000px;
}

/* Breakpoints */
/* Typography */
/* Color Palette */
/* Layout */
body {
  font-family: "futura-pt", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
button {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "big-caslon-fb", serif;
  font-style: normal;
  font-weight: 700;
}

h1,
.h1 {
  font-size: max(8vw, 3rem);
}
@media only screen and (min-width: 782px) {
  h1,
  .h1 {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 1024px) {
  h1,
  .h1 {
    font-size: 5rem;
  }
}

h2,
.h2 {
  font-size: max(6vw, 2rem);
}
@media only screen and (min-width: 782px) {
  h2,
  .h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  h2,
  .h2 {
    font-size: 3rem;
  }
}

h3,
.h3 {
  font-size: max(4vw, 1.5rem);
}
@media only screen and (min-width: 782px) {
  h3,
  .h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  h3,
  .h3 {
    font-size: 2.5rem;
  }
}

h4,
.h4 {
  font-size: max(3vw, 1.25rem);
}
@media only screen and (min-width: 782px) {
  h4,
  .h4 {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1024px) {
  h4,
  .h4 {
    font-size: 1.5rem;
  }
}

h5,
.h5 {
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (min-width: 782px) {
  h5,
  .h5 {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1024px) {
  h5,
  .h5 {
    font-size: 1rem;
  }
}

p,
li,
a,
button {
  font-family: "futura-pt", sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
}
@media only screen and (min-width: 782px) {
  p,
  li,
  a,
  button {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 1024px) {
  p,
  li,
  a,
  button {
    font-size: 1.1rem;
  }
}

p {
  line-height: 1.7;
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.epic-heading + .epic-accordions, .epic-heading + .epic-form, .epic-heading + .epic-gallery, .epic-heading + .epic-paragraph, .epic-heading + .wp-block-columns {
  margin-top: 2rem;
}

.epic-paragraph + .epic-button-wrapper, .epic-paragraph + .epic-accordions, .epic-paragraph + .epic-form, .epic-paragraph + .epic-gallery, .epic-paragraph + .epic-heading {
  margin-top: 2rem;
}