:root {
  --green: #1d413f;
  --bronze: #c97d59;
  --grey: rgb(242, 233, 226);
  --text: #f4f4f4;
  --background: linear-gradient(
    124deg,
    rgba(244, 244, 244, 1) 0%,
    rgba(242, 233, 226, 1) 96%,
    rgba(201, 125, 89, 1) 98%,
    rgba(29, 65, 63, 1) 100%
  );
}

@font-face {
  font-family: "Aisyah";
  src: url("/styles/fonts/Cathylise\ Janetson.otf");
}

@font-face {
  font-family: "TransformaSans";
  src: url("/styles/fonts/TransformaSans-Medium.ttf");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* -------------------------------------------------------------------------- */
/*                               RESET DEFAULTS                               */
/* -------------------------------------------------------------------------- */
html,
body {
  font-family: TransformaSans, Courier, monospace;
  font-size: 16px;
  /* scroll-behavior: smooth; */
  opacity: 0;
  animation: fadeInEffect 0.5s ease forwards;
  -webkit-animation: fadeInEffect 0.5s ease forwards;
}
a {
  text-decoration: none;
  color: unset;
}
li {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}
.main-background-image {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/stacked-waves-haikei.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.calligraphic {
  font-family: Aisyah, Courier, monospace;
  line-height: 100%;
}

.bronze {
  color: var(--bronze);
}

.green {
  color: var(--green);
}

.grey {
  color: var(--grey);
}

.larger-font {
  font-size: larger !important;
  font-weight: bolder !important;
}

.largest-font {
  font-size: xx-large !important;
  font-weight: bolder !important;
}

.first-letter {
  font-size: 3.5rem;
}
.background-bronze {
  background-color: var(--bronze);
}

.background-green {
  background-color: var(--green);
}

.background-grey {
  background-color: var(--grey);
}

.centered {
  text-align: center !important;
  align-self: center !important;
}

.p-2 {
  padding-block: 2rem;
}

.centered-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.link:hover .link-underline {
  width: 100%;
}

.link:hover .link-text {
  font-weight: bolder;
  /* color: var(--bronze); */
}

.icon-container {
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  line-height: 0;
}

.link:hover .icon-container {
  transform: translateX(1rem);
  -webkit-transform: translateX(1rem);
  -moz-transform: translateX(1rem);
  -ms-transform: translateX(1rem);
  -o-transform: translateX(1rem);
}

.link-underline {
  width: 70%;
  height: 0.1rem;
  transition: width 0.3s ease-in-out;
  -webkit-transition: width 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out;
  -ms-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
}

.display-none {
  display: none;
}

.display-flex {
  display: unset;
}

.text {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.services-section .text {
  text-align: justify;
}
.contact-dialog {
  position: sticky;
  bottom: 1rem;
  left: 1rem;
  border: unset;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  background-color: unset;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.2rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  transition: all.3s ease-in-out;
  -webkit-transition: all.3s ease-in-out;
  -moz-transition: all.3s ease-in-out;
  -ms-transition: all.3s ease-in-out;
  -o-transition: all.3s ease-in-out;
}
.contact-dialog:not([open]) {
  display: block;
  transform: scale(0.14);
  -webkit-transform: scale(0.14);
  -moz-transform: scale(0.14);
  -ms-transform: scale(0.14);
  -o-transform: scale(0.14);
  transform-origin: left bottom;
}
.contact-dialog[open] {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.contact-dialog:not([open])::after {
  content: "";
  color: var(--text);
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green);
  background-image: url("/assets/phone-rotary-svgrepo-com.svg");
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  cursor: pointer;
  box-shadow: 1px -1px 20px 2px var(--text);
}
.close-dialog {
  width: 2rem;
  height: 2rem;
  background-color: var(--green);
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  cursor: pointer;
}
.back-to-top {
  display: none;
  width: 3rem;
  height: 3rem;
  position: sticky;
  left: 95%;
  right: 1rem;
  bottom: 1rem;
  background: var(--grey);
  border: unset;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}

@keyframes fadeInEffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --------------------------- RESET DEFAULTS END --------------------------- */
/* -------------------------------------------------------------------------- */
/*                               MAIN CONTAINER                               */
/* -------------------------------------------------------------------------- */
/* ---------------------------- HEADER CONTAINER ---------------------------- */

.header-container {
  display: flex;
  justify-content: space-around;
  padding: 1rem;
  background-image: url("/assets/stacked-waves-haikei.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  transition: top 0.3s ease-in-out;
  -webkit-transition: top 0.3s ease-in-out;
  -moz-transition: top 0.3s ease-in-out;
  -ms-transition: top 0.3s ease-in-out;
  -o-transition: top 0.3s ease-in-out;
}
.header-container.fixed {
  position: fixed;
  top: 0;
  z-index: 999999;
}
.header-container.hidden {
  top: -100%;
}

.logo-container {
  display: block;
  height: 3.5rem;
}

.logo-item {
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.navigation-bar-container {
  /* display: none; */
  display: flex;
  align-items: center;
}

.large-nav-list {
  display: flex;
  gap: 1rem;
}

.link {
  width: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.link-text {
  font-size: clamp(0.8rem, 1vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

/* ----------------------------- HAMBURGER MENU ----------------------------- */
.hamburger-button {
  display: none;
  width: 2rem;
  height: 2rem;
  padding: 0.25rem;
  position: relative;
  z-index: 3;
}

.hamburger-button span {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: calc(0.25rem - 1px);
  left: calc(0.25rem - 1px);
  transition: transform 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96);
}

.hamburger-button span:before {
  content: "";
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--green);
  position: absolute;
  left: 0;
  transition: transform 0.1596s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.1008s;
}

.hamburger-button span:nth-child(1)::before {
  top: 0.625rem;
  transform: translateY(-3px);
}

.hamburger-button span:nth-child(2)::before {
  bottom: 0.625rem;
  transform: translateY(3px);
}

.hamburger-button.active :nth-child(1),
.hamburger-button.active :nth-child(2) {
  transition: transform 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.hamburger-button.active :nth-child(1)::before,
.hamburger-button.active :nth-child(2)::before {
  transform: none;
  transition: transform 0.1806s cubic-bezier(0.04, 0.04, 0.12, 0.96);
}

.hamburger-button.active :nth-child(1) {
  transform: rotate(45deg) translateY(1px);
}

.hamburger-button.active :nth-child(2) {
  transform: rotate(-45deg) translateY(-1px);
}

.hamburger-nav-list {
  height: 100%;
  position: fixed;
  width: fit-content;
  right: 0;
  font-size: 1.5rem;
  display: none;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  padding: 2rem;
  top: 0;
  right: -100%;
  transition: right 0.3s ease-in-out;
  -webkit-transition: right 0.3s ease-in-out;
  -moz-transition: right 0.3s ease-in-out;
  -ms-transition: right 0.3s ease-in-out;
  -o-transition: right 0.3s ease-in-out;
}
.hamburger-nav-list.active {
  display: flex;
  right: 0;
  z-index: 2;
}
.hamburger-nav-list::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--grey);
  z-index: -1;
  backdrop-filter: blur(5px);
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}

/* -------------------------- HEADER CONTAINER END -------------------------- */
/* ------------------------------ HERO WRAPPER ------------------------------ */
.hero-wrapper {
  min-height: 100svh;
}
.hero-section {
  min-height: calc(100svh - 77px);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}
.hero-section-left {
  flex: 1 1 30rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  padding-left: clamp(1rem, 7vw, 7rem);
}
.hero-heading {
  font-size: clamp(1.5rem, 6vw, 3.5rem);
}
.hero-text {
  font-size: clamp(1.5rem, 1.8vw, 1.8rem);
}
.call-to-action-link {
  display: flex;
  flex-direction: column;
  width: fit-content;
}
.link-text svg {
  width: 3rem;
}
.hero-section-right {
  max-height: 100%;
  flex: 1 1 30rem;
  display: grid;
  place-items: center;
}
.hero-image-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-image-container {
  height: 100%;
  min-height: 30rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  background-image: url("/assets/WhatsApp\ Image\ 2024-04-09\ at\ 16.56\ 1.png"),
    url("/assets/background-shape.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.declaration-container {
  width: 100%;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: #f2e9e2a0;
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}
.inline-heading {
  font-size: 1.5rem;
}
.hero-image-replacement {
  display: none;
  width: 100%;
}
.hero-image-replacement-item {
  width: 100%;
}
/* ---------------------------- HERO WRAPPER END ---------------------------- */
/* ------------------------------ CITE WRAPPER ------------------------------ */
.cite-wrapper {
  padding-block: 3rem;
  background-color: var(--text);
}
.cite-section {
  max-width: 50rem;
  padding: 1rem;
  margin: auto;
  display: grid;
  place-items: center;
  gap: 1rem;
  text-align: center;
}
.bottom-border-item {
  margin: auto;
  height: 2rem;
  max-width: 80%;
  object-fit: contain;
  object-position: center;
}
/* ---------------------------- CITE WRAPPER END ---------------------------- */
/* ------------------------------ ABOUT SECTION ----------------------------- */
.about-wrapper {
  min-height: 100svh;
}
.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-title {
  text-align: end;
  align-self: end;
  font-size: clamp(3rem, 15vw, 5rem);
}
.header-page-container {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.header-page-text-wrapper {
  max-width: 80rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  align-self: end;
  margin-bottom: 3rem;
}
.header-page-text-wrapper .section-title {
  flex: 1;
  align-self: flex-start;
}
.header-page-text {
  flex: 10;
  text-align: end;
  width: 100%;
  text-wrap: balance;
}
.split-container {
  display: flex;
  flex-wrap: wrap;
}
.split-left {
  flex: 1 1 25rem;
}
.image-container {
  height: 100%;
  display: grid;
  place-items: center;
  background-image: url("/assets/1statue-background@4x.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.image-item {
  height: 100%;
  width: 50%;
  object-fit: contain;
  object-position: bottom;
}
.split-right {
  flex: 1 1 25rem;
  display: grid;
  place-content: center;
  padding-bottom: 8rem;
}
.split-content {
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.container {
  gap: 2rem;
  padding: 2rem;
}
.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
}
.box {
  flex: 1 1 18rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  text-wrap: balance;
  border: 1px var(--grey) solid;
}
.negative-top {
  transform: translateY(-8rem);
  -webkit-transform: translateY(-8rem);
  -moz-transform: translateY(-8rem);
  -ms-transform: translateY(-8rem);
  -o-transform: translateY(-8rem);
  border: 0.1rem var(--green) solid;
  background-color: #f2e9e2a0;
  backdrop-filter: blur(10px);
}
.horizontal-line {
  flex: 1 0 5rem;
  height: 0.1rem;
}
.text span {
  flex: 1 0 5rem;
  text-align: center;
}
/* ---------------------------- ABOUT SECTION END --------------------------- */
/* ---------------------------- SERVICES SECTION ---------------------------- */
.services-wrapper {
  position: relative;
}
.services-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 1rem;
}
.services-background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/1statue-background@4x.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -3;
  background-color: white;
}
.service-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 90rem;
  margin: auto;
}
.services-image-container {
  flex: 1 1 20rem;
  max-width: 30rem;
}
.services-image-item {
  width: 100%;
  border-radius: 0.5rem 0 0 0.5rem;
  -webkit-border-radius: 0.5rem 0 0 0.5rem;
  -moz-border-radius: 0.5rem 0 0 0.5rem;
  -ms-border-radius: 0.5rem 0 0 0.5rem;
  -o-border-radius: 0.5rem 0 0 0.5rem;
}
.services-text-content {
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 60rem;
  border-radius: 0 0.5rem 0.5rem 0;
  -webkit-border-radius: 0 0.5rem 0.5rem 0;
  -moz-border-radius: 0 0.5rem 0.5rem 0;
  -ms-border-radius: 0 0.5rem 0.5rem 0;
  -o-border-radius: 0 0.5rem 0.5rem 0;
}
.services-text-container {
  flex: 2 2 30rem;
  display: grid;
  place-content: center;
}
.text-wrapper {
  flex: 1 20rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.text-wrapper .link {
  align-self: end;
}
.numbering-item {
  font-weight: bolder;
  font-size: clamp(3rem, 8vw, 8rem);
  transform: translateY(-2rem);
  -webkit-transform: translateY(-2rem);
  -moz-transform: translateY(-2rem);
  -ms-transform: translateY(-2rem);
  -o-transform: translateY(-2rem);
}
.navigation-bar-container .link:hover .link-text {
  color: var(--bronze);
}
.active > .link .link-text {
  color: var(--bronze);
}
.active .link-underline {
  background-color: var(--bronze);
}
.text-list-item {
  list-style-type: circle;
}
.services-page-section .services-image-container {
  align-self: start;
}
/* -------------------------- SERVICES SECTION END -------------------------- */
/* ----------------------------- CONTACT SECTION ---------------------------- */
.contact-wrapper {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.business-card-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 40rem;
  padding: 1rem;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  aspect-ratio: 16/9;
  background-image: url("/assets/justice-image.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: auto 80%;
  background-blend-mode: exclusion;
}
.business-card-header {
  display: flex;
  justify-content: space-between;
}
.contact-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.business-card-content {
  display: flex;
  gap: 0.5rem;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.contact-details-container .link-container {
  line-height: 0;
}
.contact-details-container .link {
  /* word-break: break-word; */
  /* white-space: pre-wrap; */
  padding: 0.1rem;
}
.contact-details-container svg {
  width: 1.5rem;
  align-self: end;
}
.business-card-corner-border {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
  opacity: 0.3;
}
.business-card-corner-border img {
  width: 100%;
  max-width: 6rem;
  object-fit: contain;
  object-position: 50% 50%;
}
.end-text {
  display: flex;
  flex-direction: column;
  /* justify-content: end; */
  align-items: end;
}
/* --------------------------- CONTACT SECTION END -------------------------- */

/* Cookie Consent Modal */
.cookie-consent {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--background);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.cookie-consent-content {
  display: flex;
  flex-direction: column;
  width: 60rem;
  max-width: 100%;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-around;
  margin-top: 1rem;
}

.cookie-buttons button,
.cookie-options button {
  background-color: var(--green);
  color: var(--text);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.cookie-buttons button:hover,
.cookie-options button:hover {
  background-color: var(--bronze);
}

.hidden {
  display: none !important;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  text-align: left;
}

/* Accessibility Button */
.accessibility-button {
  position: fixed;
  top: 50%;
  right: 0.5rem;
  background-color: var(--green);
  padding: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
}
.accessibility-button svg {
  width: 2rem;
  height: 2rem;
}

.accessibility-button input[type="range"] {
  width: 100px;
}

/* Accessibility Dialog */
.accessibility-dialog {
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: fixed;
  top: 50%;
  width: fit-content;
  max-width: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 3rem 1rem 1rem;
  z-index: 1001;
}

#toggle-contrast {
  padding: 0.5rem 1rem;
  color: var(--bronze);
}
.high-contrast #toggle-contrast,
#toggle-contrast:hover {
  background-color: var(--bronze);
  color: var(--text);
}

.accessibility-dialog-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.close-dialog-access {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

/* High Contrast Mode */
.high-contrast > main > *,
.high-contrast :is(.background-green, .background-grey) {
  background-image: unset;
  background-color: #000;
  color: #fff;
}

.high-contrast a {
  color: magenta;
}

.high-contrast button {
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
}

.high-contrast button:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

.high-contrast input,
.high-contrast select,
.high-contrast textarea {
  background-color: #333;
  color: #fff;
  border: 1px solid #fff;
}

/* ----------------------------- FOOTER SECTION ----------------------------- */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--text);
  padding: 1rem;
}
.copyright-text {
  font-size: 10px;
  text-align: center;
}
.designer-link {
  display: flex;
  gap: 0.5rem;
}
.designer-link .link-text {
  font-size: 10px;
}
/* --------------------------- FOOTER SECTION END --------------------------- */
/* --------------------------- MAIN CONTAINER END --------------------------- */

@media only screen and (max-width: 450px) {
  .hero-image-container {
    background-image: unset;
  }

  .business-card-container {
    aspect-ratio: 4/3;
  }

  .hero-image-replacement {
    background-image: url("/assets/background-shape.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 100%;
  }

  .section-title.display-flex {
    display: none;
  }

  .section-title.display-none {
    display: unset;
  }
}

@media only screen and (max-width: 600px) {
  .hamburger-button {
    display: block;
  }

  .large-nav-list {
    display: none;
  }
}

@media only screen and (max-width: 60rem) {
  .hero-heading {
    font-size: clamp(1.5rem, 5vw, 4rem);
  }

  .hero-text {
    font-size: clamp(1.2rem, 2vw, 2rem);
  }
}

@media only screen and (max-width: 799.5px) {
  .split-left {
    order: 2;
  }

  .split-right {
    order: 1;
  }
}

@media only screen and (max-width: 992px) {
  .box:nth-child(1) {
    order: 1;
  }

  .box:nth-child(2) {
    order: 3;
  }

  .box:nth-child(3) {
    order: 2;
  }

  .box:nth-child(4) {
    order: 4;
  }
}

@media only screen and (max-width: 672px) {
  .box:nth-child(1) {
    order: 2;
  }

  .box:nth-child(2) {
    order: 3;
  }

  .box:nth-child(3) {
    order: 1;
  }

  .box:nth-child(4) {
    order: 4;
  }
}
