/*
=========================
  Body & HTML Defaults 
=========================
*/
* {
  box-sizing: border-box;
  padding: 0%;
  margin: 0%;
}
*::after, * ::before {
  box-sizing: border-box;
  padding: 0%;
  margin: 0%;
}
*::-moz-selection {
  background: #cd0f38;
  color: #020202;
}
*::selection {
  background: #cd0f38;
  color: #020202;
}

html {
  margin: 0%;
}

body {
  background-color: #020202;
  box-sizing: border-box;
}

.page-404 {
  height: 90vh;
}

body {
  font-family: "robotto", sans-serif;
  color: white;
}

h1 {
  padding: 0.5em 0em;
}

h2 {
  padding: 0.5em 0em;
}

h3 {
  padding: 0.5em 0em;
}

h4 {
  padding: 0.5em 0em;
}

h5 {
  padding: 0.5em 0em;
}

p {
  padding: 0.5em 0em;
  font-weight: 200;
  line-height: 150%;
}

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

.xl-title {
  line-height: 110%;
  letter-spacing: 3px;
  font-family: "abril fatface", serif;
  font-size: clamp(2.5rem, 4.5vw + 1rem, 7rem);
}
@media (max-width: 700px) {
  .xl-title {
    letter-spacing: normal;
  }
}

.large-title {
  letter-spacing: 0.1em;
  font-family: "abril fatface", serif;
  font-size: clamp(2rem, 3.5vw + 1rem, 4rem);
}

.medium-title {
  font-family: "abril fatface", serif;
  font-size: clamp(1.5rem, 2.75vw + 1rem, 3rem);
}

.small-title {
  font-family: "robboto", sans-serif;
  font-size: clamp(1rem, 2.25vw + 1rem, 2.5rem);
  font-weight: 300;
}

.post-h4 {
  font-size: 1.2em;
  font-weight: bold;
}

.cta a {
  display: flex;
  align-items: center;
}
.cta a .fa-solid {
  font-size: 80%;
  padding-left: 0.5em;
}

.icon-link {
  display: flex;
  align-items: center;
}
.icon-link:hover {
  text-decoration: underline;
}
.icon-link .fa-solid {
  padding-right: 0.3em;
  color: white;
  font-size: 60%;
  text-decoration: none;
}

.large-text {
  font-size: 2rem;
}

.medium-text {
  font-size: 1.6rem;
}

.small-text {
  font-size: 1.2rem;
}

.plain-text {
  font-family: "robotto", sans-serif;
}

.fancy-text {
  font-family: "abril fatface", serif;
}

.italic {
  font-style: italic;
}

.underlined {
  font-style: underlined;
}

/*================================

    Links

================================*/
a {
  text-decoration: none;
  color: white;
}

p a:hover {
  font-weight: 500;
  text-decoration: underline;
}

/*================================

    Lists

================================*/
ul li {
  list-style: none;
  padding: 0.2em 0em;
}
ul.bulleted {
  padding-left: 0.7em;
}
ul.bulleted li {
  list-style: circle;
}
ul.indented {
  margin-left: 0.5em;
}

/*================================

    Font Utility Classes 

================================*/
.underlined {
  position: relative;
  margin-bottom: 0.5em;
}
.underlined::after {
  content: "";
  position: absolute;
  height: 0.2em;
  width: 130%;
  max-width: 400px;
  background-color: #020202;
  bottom: -10%;
  left: 0%;
}
@media (max-width: 1000px) {
  .underlined::after {
    width: 6em;
  }
}

.inverse {
  color: #020202;
}
.inverse a {
  color: #020202;
}
.inverse *::after {
  background-color: white;
}

.topped-heading {
  position: relative;
  display: flex;
  align-items: inherit;
  margin-bottom: 5em;
}
.topped-heading h2 {
  line-height: 100%;
}
.topped-heading .heading-top {
  position: relative;
  left: 0.5rem;
  font-size: 2.5rem;
}
@media (max-width: 1000px) {
  .topped-heading .heading-top {
    bottom: 1.3em;
    top: 0%;
    font-size: 1.7rem;
  }
}

/*================================

    Font Mobile Sizing

================================*/
@media (max-width: 1000px) {
  .large-text {
    font-size: 1.4rem;
  }
  .medium-text {
    font-size: 1.2rem;
  }
  .small-text {
    font-size: 1.1rem;
  }
}
@media (max-width: 700px) {
  .large-text {
    font-size: 1.4rem;
  }
  .medium-text {
    font-size: 1.2rem;
  }
  .small-text {
    font-size: 1rem;
  }
}
.btn {
  border: solid 0.2em white;
  color: white;
  display: inline-block;
  text-decoration: none;
  padding: 0.75em 1.5em;
  margin: 1em 0em;
  text-transform: uppercase;
  border-radius: 0rem;
  box-shadow: none;
  transition: all ease-in-out 500ms;
}
@media (max-width: 1000px) {
  .btn {
    font-size: 0.8rem;
  }
}
.btn:hover {
  background-color: white;
  color: #020202;
  border-radius: 0.7em;
  box-shadow: 0px 0px 10px 5px hsla(0deg, 0%, 0%, 0.081);
}
.btn.dark {
  color: #020202;
  border: solid 0.2em white;
}
.btn.dark:hover {
  background-color: white;
  color: #020202;
  box-shadow: 0px 0px 10px 5px hsla(0deg, 0%, 0%, 0.272);
}

section {
  opacity: 0;
  transition: opacity 1s ease-out;
  min-height: 50vh;
  display: grid;
  align-items: center;
}
section.no-slide {
  opacity: 1;
}
@media (max-width: 700px) {
  section {
    min-height: auto;
  }
}
section.inverse {
  background-color: white;
  color: #020202;
}
section.hero {
  min-height: 70vh;
}
section.slide-left {
  transform: translateX(100%);
}
section.slide-right {
  transform: translateX(-100%);
}
section.slide-up {
  transform: translateY(100%);
}
section.new-guess {
  display: none;
}
section.new-guess.show {
  display: block;
}
section .container {
  margin: 7rem 5vw;
}
@media (min-width: 2500px) {
  section .container {
    margin: 7rem 25vw;
  }
}
@media (max-width: 1000px) {
  section .container {
    margin: 3rem 5vw;
  }
}
@media (max-width: 700px) {
  section .container {
    margin: 4rem 5vw;
  }
}
section .container.justify-center {
  justify-items: center;
}
section.full-width-image {
  background-repeat: no-repeat;
  background-size: cover;
}
section.slide-on {
  opacity: 1;
  transition: opacity 1.5s ease-in-out, transform 1s ease-in;
}
section.slide-on.slide-left {
  transform: translateX(0%);
}
section.slide-on.slide-right {
  transform: translateX(0%);
}
section.slide-on.slide-up {
  transform: translateY(0%);
}

.load-in span {
  opacity: 0;
}
.load-in .fade {
  transition: opacity 0.25s ease-in-out;
  opacity: 1;
}
.load-in.slow .fade {
  transition: opacity 0.75s ease-in-out;
  opacity: 1;
}

.faded-list li {
  opacity: 0;
  transform: translateY(100%);
}
.faded-list li.fade {
  transition: all 1s ease-in-out;
  opacity: 1;
  transform: translateY(0%);
}

.hidden {
  opacity: 0%;
}

.fixed-position {
  overflow: hidden;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.align-center {
  align-items: center;
}

.grid-2-col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 700px) {
  .grid-2-col {
    grid-template-columns: 1fr;
  }
}

.grid-3-col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 700px) {
  .grid-3-col {
    grid-template-columns: 1fr;
  }
}

.grid-4-col {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) {
  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .grid-4-col {
    grid-template-columns: 1fr;
  }
}

/*
======================
Header Style
======================
*/
.header {
  background-color: white;
  position: relative;
  top: 0%;
  z-index: 10;
  /*Desktop Nav Menu*/
  /*Mobile Nav Menu*/
}
.header a {
  color: #020202;
}
.header.dark {
  background-color: #020202;
}
.header.dark a {
  color: white;
}
.header img {
  max-height: 70px;
  width: auto;
}
@media (max-width: 700px) {
  .header img {
    max-height: 50px;
  }
}
.header .get-in-touch {
  display: grid;
  align-items: center;
  justify-content: end;
}
.header .get-in-touch .btn {
  margin: 0%;
}
.header .desktop-nav-bar {
  padding: 1em 5vw;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .header .desktop-nav-bar {
    display: none;
  }
}
.header .desktop-nav-bar nav {
  align-self: center;
}
.header .desktop-nav-bar nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
.header .desktop-nav-bar nav ul > * {
  padding: 0em 0.5em;
}
.header .mobile-nav-bar {
  position: relative;
  display: none;
}
@media (max-width: 1000px) {
  .header .mobile-nav-bar {
    display: block;
  }
}
.header .mobile-nav-bar .wrapper {
  padding: 0.5em 1.5em;
  display: flex;
  justify-content: space-between;
}
.header .mobile-nav-bar .wrapper button {
  background-color: transparent;
  border: none;
  z-index: 1001;
}
.header .mobile-nav-bar .wrapper button .icon {
  display: inline-block;
  height: 30px;
  cursor: pointer;
  padding: 0em 0.25em;
  overflow: hidden;
}
.header .mobile-nav-bar .wrapper button .icon img {
  height: inherit;
}
.header .mobile-nav-bar .wrapper .mobile-nav {
  display: block;
  z-index: 1000;
  position: absolute;
  right: 0%;
  top: 0%;
  padding: 5vh 5vw;
  background-color: white;
  height: 100vh;
  min-width: 40vw;
  width: 400px;
  max-width: 70vw;
  box-shadow: -10px 0px 7px 0px rgba(0, 0, 0, 0.18);
  border-radius: 15px 0px 0px 15px;
}
.header .mobile-nav-bar .wrapper .mobile-nav.closed {
  display: none;
}
.header .mobile-nav-bar .wrapper .mobile-nav nav {
  margin-top: 2em;
}
.header .mobile-nav-bar .wrapper .mobile-nav nav ul li {
  padding: 1em 0em;
}
.header .mobile-nav-bar .wrapper .mobile-nav nav ul li a {
  color: #020202;
  font-size: 1.2rem;
}
.header .mobile-nav-bar .wrapper .mobile-nav nav ul li a:hover {
  text-decoration: underline;
}

.icon {
  fill: #020202;
}

.dark .icon {
  fill: white;
}
.dark .icon.open {
  fill: #020202;
}

/*  Nav Sections    */
.slider-section {
  display: grid;
  gap: 1rem;
  min-height: 0%;
}
.slider-section .slider-head {
  display: flex;
  justify-content: flex-start;
  margin-left: 3.5rem;
}
@media (max-width: 700px) {
  .slider-section .slider-head {
    margin-right: 3.5rem;
  }
}
.slider-section .slider-head .progress-bar {
  display: flex;
  gap: 0.25em;
}
.slider-section .slider-head .progress-bar .progress-item {
  flex: 0 0 1rem;
  height: 0.5rem;
  background-color: rgba(255, 255, 255, 0.214);
}
.slider-section .slider-head .progress-bar .progress-item.active {
  background-color: white;
}
.slider-section .content {
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}
.slider-section .content button {
  border: none;
  color: white;
}
.slider-section .content .handle {
  width: 3.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 250ms;
  z-index: 3;
}
@media (max-width: 700px) {
  .slider-section .content .handle {
    width: 3.5rem;
  }
}
.slider-section .content .handle:hover, .slider-section .content .handle:focus {
  background-color: rgba(0, 0, 0, 0.75);
}
.slider-section .content .handle:hover .fa-solid, .slider-section .content .handle:focus .fa-solid {
  transform: scale(1.2);
  transition: all 250ms;
}
.slider-section .content .slider {
  display: flex;
  width: calc(100% - 7rem);
  /* Slider index is setting the percentage of the view*/
  --slider-index: 0;
  transform: translateX(calc(var(--slider-index) * -100%));
  transition: 250ms ease-in-out transform;
  --items-per-screen:3;
}
@media (max-width: 700px) {
  .slider-section .content .slider {
    width: calc(100% - 7rem);
  }
}
@media (min-width: 1500px) {
  .slider-section .content .slider {
    --items-per-screen:4;
  }
}
@media (max-width: 1200px) {
  .slider-section .content .slider {
    --items-per-screen:2;
  }
}
@media (max-width: 700px) {
  .slider-section .content .slider {
    --items-per-screen:1 ;
  }
}
.slider-section .content .slider .card {
  flex: 0 0 calc(100% / var(--items-per-screen));
  position: relative;
}
.slider-section .content .slider .card .card-content {
  z-index: 2;
  position: absolute;
  display: grid;
  background-color: rgba(0, 0, 0, 0.318);
  height: 100%;
  width: 100%;
  padding: 2em;
  align-content: end;
}
.slider-section .content .slider .card .card-content h4 {
  font-size: clamp(1rem, 2.25vw + 1rem, 1.5rem);
  font-family: "abril fatface", serif;
}
.slider-section .content .slider .card img {
  max-width: 100%;
  position: absolute;
  aspect-ratio: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.our-work .content .slider {
  --items-per-screen:2;
}
@media (min-width: 1500px) {
  .our-work .content .slider {
    --items-per-screen:3;
  }
}
@media (max-width: 1200px) {
  .our-work .content .slider {
    --items-per-screen:2;
  }
}
@media (max-width: 700px) {
  .our-work .content .slider {
    --items-per-screen:1 ;
  }
}
.our-work .content .slider .card {
  display: block;
  aspect-ratio: 16/11;
}
@media (max-width: 700px) {
  .our-work .content .slider .card {
    aspect-ratio: 13/16;
  }
}

.news-slide-section .content .slider .card {
  align-items: flex-end;
  aspect-ratio: 9/16;
}

.our-team .grid {
  gap: 1em;
  grid-template-columns: 4fr 1.5fr;
}
@media (max-width: 1000px) {
  .our-team .grid {
    grid-template-columns: 1fr;
  }
}
.our-team .grid .content .social-links ul {
  display: flex;
  gap: 0.35em;
}
.our-team .grid .content .social-links ul .fa-brands {
  font-size: clamp(1.2rem, 5vw + 0.1rem, 2.5rem);
}
.our-team .grid .faces {
  flex-direction: column;
  gap: 3vh;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1000px) {
  .our-team .grid .faces {
    flex-direction: row;
    justify-content: center;
    gap: 3vw;
  }
}
.our-team .grid .faces .face {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: clamp(5rem, 10vw + 0.1rem, 10rem);
  overflow: hidden;
}
.our-team .grid .faces .face img {
  aspect-ratio: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.service-cat-grid .category-boxes {
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
}
@media (max-width: 1000px) {
  .service-cat-grid .category-boxes {
    grid-template-columns: 1fr 1fr;
  }
}
.service-cat-grid .category-boxes .cat-box .box-title h3 {
  font-weight: 300;
}
.service-cat-grid .category-boxes .cat-box .parent-item {
  padding-bottom: 0.5em;
}
.service-cat-grid .category-boxes .cat-box .child-item {
  padding: 0.5em 0em;
  font-size: 80%;
}

@supports not (-webkit-touch-callout: none) {
  .form-container .frm_style_mtg-style.with_frm_style .frm_fields_container > * {
    margin: 1.5rem 0;
  }
  .form-container .frm_style_mtg-style.with_frm_style .frm_fields_container .frm_form_field input {
    height: -moz-fit-content;
    height: fit-content;
    line-height: 1.5rem;
    font-size: 2rem;
    padding: 0.5rem 0rem;
    border: none;
    border-bottom: 1px solid #fff;
  }
  .form-container .frm_style_mtg-style.with_frm_style .frm_fields_container .frm_form_field input::-moz-placeholder {
    margin-bottom: 1rem;
    display: block;
    font-size: 2rem;
  }
  .form-container .frm_style_mtg-style.with_frm_style .frm_fields_container .frm_form_field input::placeholder {
    margin-bottom: 1rem;
    display: block;
    font-size: 2rem;
  }
  .form-container .frm_style_mtg-style.with_frm_style .frm_fields_container .frm_form_field input div::-webkit-textfield-decoration-container {
    color: #fff;
  }
  .form-container .frm_style_mtg-style.with_frm_style .frm_fields_container .frm_form_field input :required {
    font-size: 2rem;
    color: #fff;
  }
  .form-container .frm_style_mtg-style.with_frm_style .frm_fields_container .frm_form_field .frm_description {
    padding-top: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7529411765);
  }
  .form-container .frm_style_mtg-style.with_frm_style .frm_fields_container .frm_form_field .frm_range_container > .frm_range_value, .form-container .frm_style_mtg-style.with_frm_style .frm_fields_container .frm_form_field .frm_range_container > .frm_range_unit {
    font-size: 2.5rem;
    padding: 0;
    margin: 0;
  }
  .form-container .frm_style_mtg-style.with_frm_style .frm_fields_container .frm_form_field .frm_range_container input {
    padding: 0.5rem 0rem;
    margin: 0%;
  }
  .form-container .frm_style_mtg-style.with_frm_style .frm_fields_container .frm_form_field .frm_range_container .frm_description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8196078431);
  }
  .form-container .frm_style_mtg-style.with_frm_style .frm_fields_container .frm_form_field .frm_range_container .frm_description .frm_range_value, .form-container .frm_style_mtg-style.with_frm_style .frm_fields_container .frm_form_field .frm_range_container .frm_description .frm_range_unit {
    padding: 0;
    margin: 0;
  }
}
footer {
  text-align: center;
  padding-top: 3em;
}
footer .container {
  display: grid;
  justify-content: space-evenly;
  align-items: center;
}
footer .top-sec {
  display: grid;
  justify-content: center;
  gap: 2rem;
}
footer .top-sec .logo img {
  max-height: 75px;
  width: auto;
}
footer .bottom-sec .grid {
  grid-template-columns: repeat(4, 1fr);
  min-width: 50vw;
}
@media (max-width: 700px) {
  footer .bottom-sec .grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
    text-align: left;
  }
}
footer .bottom-bar {
  margin-top: 2rem;
  background-color: rgba(0, 0, 0, 0.126);
  font-size: 0.9rem;
}
footer .bottom-bar .grid {
  padding: 0.5rem 0rem;
  gap: 0.2rem;
}

.hero {
  overflow: hidden;
}
@media (max-width: 700px) {
  .hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
  }
}
.hero .container {
  gap: 2rem;
}
@media (max-width: 1200px) {
  .hero .container {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.hero .content h1 {
  white-space: nowrap;
}
@media (max-width: 700px) {
  .hero .content h1 {
    white-space: break-spaces;
  }
}
.hero .image {
  display: none;
  max-height: 80vh;
  max-width: 100%;
}
.hero img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: inherit;
}
@media (max-width: 1200px) {
  .hero img {
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
.hero img.event-logo {
  width: auto;
  height: 100%;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-grid .container .grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}
@media (max-width: 700px) {
  .post-grid .container .grid {
    grid-template-columns: 1fr;
  }
}
.post-grid .container .grid .post-box .image {
  max-width: 100%;
  max-height: 25rem;
}
.post-grid .container .grid .post-box .image img {
  max-height: inherit;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.work-archive .work-section .work-item {
  display: grid;
  grid-template-columns: 1fr;
}
.work-archive .work-section .work-item .content, .work-archive .work-section .work-item .image {
  grid-row: 1;
  grid-column: 1;
}
.work-archive .work-section .work-item .image {
  max-width: 100%;
  height: 100vh;
}
@media (max-width: 700px) {
  .work-archive .work-section .work-item .image {
    height: 70vh;
  }
}
.work-archive .work-section .work-item .image img {
  height: inherit;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-archive .work-section .work-item .image img.mobile {
  display: none;
}
@media (max-width: 700px) {
  .work-archive .work-section .work-item .image img.mobile {
    display: block;
  }
  .work-archive .work-section .work-item .image img.desktop {
    display: none;
  }
}
.work-archive .work-section .work-item .content {
  display: grid;
  align-items: center;
  height: 100vh;
}
.work-archive .work-section .work-item .content.dark {
  background-color: rgba(0, 0, 0, 0.4);
}
.work-archive .work-section .work-item .content .container {
  display: grid;
  max-width: 50%;
}
.work-archive .work-section .work-item .content .container .btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (max-width: 700px) {
  .work-archive .work-section .work-item .content {
    align-items: flex-start;
    height: 70vh;
  }
  .work-archive .work-section .work-item .content .container {
    max-width: 100%;
  }
  .work-archive .work-section .work-item .content .container .btn {
    justify-self: center;
  }
}

.work-single.top-sec h1 {
  padding-bottom: 0%;
}
.work-single.top-sec .cats {
  font-weight: 200;
}

.post-content img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
.post-content .wp-block-image img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

section.full-width-image {
  display: flex;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 60vh;
}
@media (max-width: 700px) {
  section.full-width-image {
    height: 60vh;
    align-items: flex-start;
  }
}
section.full-width-image .image-filter.dark {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  min-height: inherit;
  min-width: 100%;
  display: grid;
  align-content: center;
}
section.full-width-image .testimonial {
  max-width: 50%;
}
@media (max-width: 700px) {
  section.full-width-image .testimonial {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  section.desktop {
    display: none;
  }
}
section.mobile {
  min-height: 40vh;
}
@media (min-width: 700px) {
  section.mobile {
    display: none;
  }
}
section.post-content {
  display: grid;
  justify-content: center;
}
section.post-content .container {
  max-width: 1000px;
}

.content-sec .grid {
  grid-template-columns: 2fr 1fr;
}
.content-sec .grid .grid-col.content {
  padding-right: 2em;
}
.content-sec .grid .grid-col.other-sec {
  padding-left: 1em;
  border-left: solid 1px;
  height: 100%;
}
.content-sec .grid .grid-col.other-sec ul {
  padding-bottom: 2em;
}
.content-sec .grid .grid-col.other-sec h3 {
  padding-top: 0%;
  text-transform: capitalize;
}
@media (max-width: 700px) {
  .content-sec .grid {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .content-sec .grid .grid-col.content {
    padding-right: 0em;
    padding-bottom: 1em;
  }
  .content-sec .grid .grid-col.other-sec {
    padding-left: 0em;
    padding-top: 1em;
    border-top: solid 1px;
    border-left: none;
  }
  .content-sec .grid .grid-col.other-sec ul li {
    padding: 0.5em 0em;
  }
}

.contact-page section {
  min-height: 30vh;
}
.contact-page section.hero .container {
  padding-top: 1em;
  padding-bottom: 1em;
}

.event-page .container {
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.event-page .hero {
  min-height: unset;
}
.event-page .hero .container {
  gap: 1rem;
}
.event-page .hero h1 {
  padding-bottom: 0.2rem;
}
