:root {
  font-size: 62.5%;

  --nav-bg: #040001cc;
  --accent-color: #6e0c0d;
  --secondary-accent: #136966;

  --primary-bg: #2b0e0e;
  --secondary-bg: #0d0707;
  --tertiary-bg: #d9d9d9;

  --white-text: #d9d9d9;

  --main-font: Urbanist, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

::-webkit-scrollbar {
  width: 1rem;
}

::-webkit-scrollbar-track {
  background: #000;
  border-radius: 3rem;
}

::-webkit-scrollbar-thumb {
  background: #5d5a53;
  border-radius: 1rem;
}

.language-selector {
  display: none !important;
}

body {
  font-family: var(--main-font);
  margin: 0;
  color: var(--white-text);
  font-size: 2rem;
  background: var(--primary-bg);
}

ul {
  list-style-position: inside;
}

.primary-bg {
  background: var(--primary-bg);
}

.secondary-bg {
  background: var(--secondary-bg);
  padding: 0.01rem 0;
}

.modal {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--nav-bg);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  transform: scale(0);
}

.modal .modal-inner {
  transform: scale(0.7);
  transition: transform 0.6s;
}

.modal .modal-inner-gallery {
  overflow: hidden;
  position: relative;
}

.modal-inner-gallery #modal-close {
  top: 3rem;
  right: 3rem;
}

.modal-inner-gallery .modal-content img {
  max-height: 95vh;
  max-width: 95vw;
  object-fit: contain;
}

.modal .modal-inner-prices {
  overflow: hidden;
  position: relative;
}

.modal-inner-prices #modal-close {
  top: 3rem;
  right: 3rem;
}

.modal-inner-prices .modal-content img {
  max-height: 95vh;
  max-width: 95vw;
  object-fit: contain;
}

.modal.active .modal-inner {
  transform: scale(1);
}

.modal.active {
  display: flex;
  transform: scale(1);
}

.modal-inner {
  width: 50vw;
  height: 90vh;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

#modal-close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 6vh;
  right: 26vw;
  z-index: 100100;
  background: var(--nav-bg);
  border: none;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
}

.modal-inner .modal-content {
  height: 100%;
  width: 100%;
  overflow-y: auto;
}

.modal-inner .modal-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
}

.modal-content p,
.modal-content ul,
.modal-content ol,
.modal-content h3,
.modal-content h4 {
  padding: 1rem 5rem;
}

.modal-content ol h4,
.modal-content ol p {
  padding-left: unset;
}
.img-contain .img-contain {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  border-radius: 3rem;
}

h2 {
  margin: 0;
  text-align: center;
  font-size: 10rem;
  font-weight: 300;
}

.container {
  max-width: 1300px;
  margin: auto;
}

.over-nav {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  height: 5rem;
  background-color: var(--secondary-bg);
  padding: 0 5% 0 50%;
  justify-content: space-between;
  align-items: center;
}

.over-nav-socials {
  display: flex;
  gap: 6rem;
}

#hamburger-icon {
  display: none;
}

nav {
  color: #fff;
  box-sizing: border-box;
  background: var(--nav-bg);
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 10rem;
  margin: 0;
  z-index: 100;
  position: sticky;
  top: 0;
  width: 100%;
}

.nav-logo {
  height: 10rem;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.nav-links {
  font-size: 3rem;
  width: 70%;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

a {
  text-decoration: none;
  color: unset;
  position: relative;
  transition: 0.6s;
}

a:hover {
  transform: scale(1.1);
}

nav a {
  color: #fff;
}

.dropdown {
  position: relative;
  display: flex;
}

.dropdown:hover .dropdown-content {
  max-height: 500px;
}

.dropdown-content {
  max-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.4s;
  font-size: 2rem;
  position: absolute;
  top: 100%;
  left: -4rem;
  right: -20rem;
  padding-top: 4.6rem;
}

.dropdown-content a {
  transform-origin: left;
  padding: 2rem;
  background-color: #000;
}

.button {
  padding: 2rem 4rem;
  margin: 0 1.5rem;
  border-radius: 1rem;
  border: 2px solid var(--accent-color);
  background: var(--accent-color);
  transition: 0.3s;
  align-self: flex-end;
}

.button:hover {
  transform: scale(1.1);
}

.hero {
  box-sizing: border-box;
  height: calc(100vh - 17rem);
  justify-content: center;
  gap: 6rem;
  align-items: center;
}

.hero-text-lg {
  z-index: 10;
  color: #fff;
  text-align: center;
}

.hero-text-lg {
  font-size: 4rem;
  font-weight: 700;
}

.hero-sm-container {
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 25rem 0;
}

.hero-sm-container ul {
  max-width: 70%;
  width: 70%;
}

.hero-text-sm {
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  line-height: 6rem;
  max-width: 80%;
}

.hero-text-sm-last {
  margin-bottom: 10rem;
}

.secondary-hero-buttons {
  display: none;
}

.hero-buttons {
  margin-top: 0rem;
  font-size: 3rem;
  font-weight: 400;
  z-index: 10;
}

.hero-buttons a:last-of-type {
  background: var(--nav-bg);
}

#hero-image,
#hero-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-position: 50% 42%;
}

#hero-image-contact,
#hero-filter-contact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
}

#hero-filter {
  z-index: -1;
  background: #06030494;
}

#hero-image {
  position: absolute;
  top: 0;
  left: 0;

  object-fit: cover;
  z-index: -2;
}

#hero-filter-contact {
  z-index: -1;
  background: #06030494;
}

#hero-image-contact {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -2;
}

/* Under-hero collage */
.under-hero-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.6rem;
  width: 100%;
  max-width: 100rem;
  margin: 4rem auto 20rem auto;
  padding: 0 2rem;
}

.under-hero-tile {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Tighter spacing on small screens */
@media (max-width: 768px) {
  .under-hero-collage {
    gap: 1rem;
    margin: 2rem auto 10rem auto;
    padding: 0 1rem;
  }
}

/* Legacy single under-hero image styling (used on some pages) */
#under-hero-image {
  box-sizing: border-box;
  padding: 0 8rem;
  margin: 0 10% 25rem 10%;
  width: 100%;
  max-width: 80%;
}

.card-3d {
  background: radial-gradient(
    92.68% 92.68% at 50.12% 0%,
    #7e3232 0%,
    #260c0c 100%
  );
}

.card-3d:after {
  content: "";
  border-radius: 5rem;
  width: 99%;
  height: 8rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -70%);
  top: 100%;
  background: #1e02028c;
  z-index: -1;
  filter: blur(1rem);
}

.bold {
  font-weight: 700;
}

.about-card {
  position: relative;
  padding: 5rem;
  width: 50%;
}

.index-testimonials {
  padding: 10rem 0;
}

.index-about {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0.5rem;
  font-weight: 300;
  padding: 0;
  margin: 25rem 0;
}

#index-about-img {
  position: absolute;
  right: 0;
  top: 42%;
  width: 60%;
  z-index: -10;
  transform: translateY(-50%);
}

.index-about div {
  display: flex;
  position: relative;
  align-items: flex-start;
}

.index-about h2 {
  font-size: 6rem;
  margin-bottom: 1rem;
}

.index-about .button {
  position: absolute;
  bottom: 3.5rem;
}

.index-about img {
  object-fit: contain;
  width: 50rem;
  border-radius: 0.3rem;
}

.toolbox {
  font-size: 3rem;
  justify-content: space-between;
  padding: 10rem 0;
  margin: 0;
  box-shadow: inset 0px 0px 8px 4pxpx #000;
}

.toolbox .flex {
  justify-content: space-between;
}

.tool {
  text-align: center;
  margin: 0 3rem;
}

#service-image-bg {
  background: url("./images/index-service-background.jpg");
}

.gallery-bg {
  padding: 10rem 0;
  background: url("./images/gallery-bg.jpg");
  background-repeat: repeat-y;
  background-size: cover;
}

.carousel-container {
  overflow: hidden;
  position: relative;
  padding: 10rem 0;
}

.carousel {
  height: fit-content;
  align-items: center;
}

.carousel-testimonials {
  gap: 10%;
}

.carousel-transition {
  transition: transform 0.5s;
}

.carousel-object {
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
}

.carousel-testimonials .carousel-object {
  width: 40%;
  margin: 10rem 0 0 5rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1rem;
}

.carousel-logos .carousel-object {
  width: calc(100%);
  display: flex;
  justify-content: center;
}

.carousel-logos .carousel-object img {
  width: 30%;
}

.carousel-btn {
  top: 50%;
  position: absolute;
  background: none;
  border: none;
  padding: 3rem;
  color: var(--white-font);
  z-index: 10;
  cursor: pointer;
  font-size: 5rem;
}

.carousel-btn:active {
  transform: scale(1.1);
}

.testimonial-profile-pic {
  position: relative;
  transform: translate(-75%, -75%);
  height: 10rem;
  margin-bottom: -10rem;
  width: 10rem;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-rating {
  height: 3rem;
}

.btn-prev {
  left: -2%;
}

.btn-next {
  right: -2%;
}

#review-logo-facebook {
  height: 2rem;
}

#review-logo-google {
  height: 2.7rem;
}

.review-summaries {
  align-items: flex-start;
  gap: 2rem;
}

.stars-reviews {
  font-size: 2rem;
}

.stars-reviews img {
  height: 2.5rem;
}

.red {
  color: var(--accent-color);
}

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

.image-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 5rem;
  list-style: none;
}

.image-grid li {
  transform: translateX(0);
  border-radius: 1rem;
  font-weight: 200;
}

.image-grid li a {
  max-width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 6rem;
  border-radius: 1rem;
}

.image-grid .gallery-image {
  border-radius: 0;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/ 1;
  cursor: pointer;
  transition: 0.6s;
}

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

.services-gallery-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/ 1;
  cursor: pointer;
  transition: 0.6s;
}

.services-gallery-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  height: 100%;
  width: 100%;
  max-width: 180%;
  max-height: 180%;
}

.gallery-image:hover {
  transform: scale(1.1);
}

.gallery-image img {
  object-fit: cover;
  max-width: 150%;
  max-height: 100%;
}

.index-services .image-grid {
  padding: 10rem 0;
}

.index-service-card-content {
  padding: 2rem;
}

.index-service-card {
  cursor: pointer;
  transition: transform 0.6s;
}

.index-service-card:hover {
  transform: scale(1.05);
}

.index-service-card a:hover {
  transform: none;
}

.index-service-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.modal-card .modal-main-text {
  display: none;
}

.index-services {
  position: relative;
  padding: 10rem 0;
}

.index-services .button {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
}

.index-services .button:hover {
  transform: translateX(-50%) scale(1.1);
}

.index-contact .tool p {
  font-size: 2.5rem;
}

.index-contact {
  margin: 0;
  padding-bottom: 0;
  color: #fff;
  align-items: center;
  background: var(--secondary-bg);
  padding: 10rem 0;
}

.index-contact h3 {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
}

.index-contact .tool {
  align-items: center;
}

.index-contact-top {
  justify-content: space-around;
  margin: 10rem 0;
}

.index-contact-top img {
  height: 20rem;
}

.index-contact-socials {
  padding: 4rem 0;
  width: 50%;
  justify-content: space-between;
}

.index-contact .tool * {
  align-items: center;
}

.index-contact .tool img {
  margin: 2rem 4rem;
  width: 5rem;
}

.index-contact a {
  transition: 0.5s;
}

.index-contact iframe {
  width: 600px;
  height: 600px;
}

.index-contact a:hover {
  transform: scale(1.1);
}

.index-contact .makers-mark {
  padding-bottom: 0;
}

.makers-mark {
  align-items: center;
  padding: 5rem 0;
}

.makers-mark p {
  margin: 0;
}

.link-with-chev:hover .link-chevron {
  transform: translateX(1rem);
}

.link-chevron {
  padding-left: 1rem;
  transition: 0.6s;
}

#service-main {
  align-items: center;
  gap: 4rem;
  padding: 8rem 8rem;
}

#service-main h1 {
  margin-top: 0;
}

#service-main .button {
  margin-top: 4rem;
}

#service-image {
  object-fit: contain;
  max-width: 45%;
}

#service-top {
  background-image: url(/static/images/service-bg-top.jpg);
  background-size: cover;
  background-position: bottom;
  padding-bottom: 2rem;
}

#service-top .services-category {
  padding: 0;
}

#service-bottom {
  padding: 2rem 0 8rem 0;
  background-image: url(/static/images/service-bg-bottom.jpg);
  background-size: cover;
}

#service-bottom h2,
#service-bottom h3 {
  text-align: left;
  padding-left: 2rem;
}

#services-hero h1 {
  font-size: 6.4rem;
}

#services-hero-el {
  position: absolute;
  top: 70%;
  left: 70%;
  transform: translate(-50%, -50%);
}

.services-category {
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  width: 100%;
}

.services-category .container {
  box-sizing: border-box;
  justify-content: flex-end;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.services-img {
  position: relative;
  object-fit: cover;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
  height: 100%;
  width: 45%;
}

#services-individual-img {
  margin-top: unset;
}

#index-lorry-image {
  object-position: 0% 30%;
}

.services-category div h2 {
  font-size: 5rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 2rem;
}

.service-categories {
  margin: 0;
  position: relative;
  background: url("./images/services-bg.jpg");
  background-repeat: repeat-y;
  background-size: cover;
}

.service-category-text {
  max-width: 50%;
  font-weight: 300;
  font-size: 2rem;
  padding: 8rem 2rem;
}

.service-category-text .link-with-chev {
  align-self: flex-end;
  margin: 2rem 0;
  font-weight: 500;
}

.service-category-text .button {
  margin: 0;
}

.service-categories .services-category .flex .flex-column {
  flex-direction: column;
}

.services-category:nth-child(even) div {
  flex-direction: row-reverse;
}

.services-category:nth-child(even) .services-img {
  left: 100%;
  transform: translateX(-100%);
}

/* removed empty .gallery-image ruleset */

.gallery-page-selector {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 8rem 0;
}

.gallery-selector-chev {
  transform: scale(1.5);
  padding: 0 2rem;
}

.gallery-current-page {
  text-decoration: underline;
}

.prices-main {
  padding-bottom: 15rem;
  font-size: 4rem;
}

.prices-main hr {
  height: 0.2rem;
  background-color: var(--white-text);
}

.prices-main h3 {
  text-align: center;
  font-weight: 400;
}

.prices-bg {
  background: url("./images/prices-bg.jpg");
  background-repeat: repeat-y;
  background-size: cover;
}

#prices-klarna {
  margin: 25rem 25% 0 25%;
  text-align: center;
  max-width: 50%;
}

.underline {
  text-decoration: underline;
  cursor: pointer;
}

.price {
  justify-content: space-between;
  align-items: center;
  font-size: 2.5rem;
  width: 100%;
  border-collapse: collapse;
}

.price th {
  text-align: left;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid;
}

.price th,
.price td {
  padding: 2rem;
}

.price td {
  font-weight: 300;
}

.price-head {
  margin: 0;
  padding-top: 25rem;
  font-weight: 500;
}

.price-asterisk {
  font-size: 2.5rem;
}

.price-note {
  font-size: 1.8rem;
  padding-left: 2rem;
}

.pricelist-image-button {
  cursor: pointer;
  margin-left: auto;
  align-self: flex-end;
}

.contact-container {
  background: radial-gradient(
    111.1% 90.85% at 50.04% 2.67%,
    #b32a2a 0%,
    #350c0c 100%
  );
  padding: 6rem 6rem;
  gap: 8rem;
}

.contact-container h2 {
  font-size: 4rem;
}

.contact-form-container {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
}

.contact-form-container .index-contact-socials {
  align-self: center;
}

.contact-form {
  gap: 2rem;
}

.contact-form button {
  color: var(--white-text);
  font-size: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem 2rem;
  font-size: 2rem;
  background: var(--tertiary-bg);
  font-family: var(--main-font);
  border: none;
}

.contact-buttons {
  font-size: 2rem;
  justify-content: flex-start;
  gap: 2rem;
}

.contact-buttons .flex img {
  margin: 2rem 4rem;
  width: 3.5rem;
}

.contact-buttons .flex {
  gap: 2rem;
}

.contact-map-container iframe {
  height: 800px;
}

.map-contact-container .toolbox {
  justify-content: flex-start;
  gap: 5rem;
}

.email-animation {
  height: 30rem;
  width: 40rem;
  position: relative;
  overflow: hidden;
}

.modal-inner-contact img {
  position: absolute;
}

.email-animation-main {
  top: 50%;
  left: 50%;
  height: 40%;
  transform: translate(-200%, -50%);
}

.email-animation-tick {
  top: 55%;
  left: 62%;
  height: 30%;
  transform: scale(0);
}

.email-animation-whizz {
  right: 73%;
  top: 30%;
  float: right;
  height: 30%;
  transform-origin: 100% 50%;
  transform: scaleX(0);
}

.modal.active .email-animation-main {
  transform: translate(-50%, -50%);
  transition-duration: 0.6s;
}

.modal.active .email-animation-tick,
.modal.active .email-animation-whizz {
  transform: none;
  transition-delay: 0.6s;
  transition-duration: 0.6s;
}

.modal-inner-contact {
  padding: 8rem;

  position: relative;
}

.modal-inner-contact .modal-content {
  align-items: center;
}

.modal-inner-contact #modal-close {
  right: 2rem;
  top: 2rem;
}

.modal-inner-contact .button {
  align-self: center;
  margin-top: 4rem;
}

.modal-inner-contact p {
  text-align: center;
  font-size: 4rem;
}

.modal-inner-contact hr {
  width: 100%;
}

#contact-hero {
  height: unset;
}

@media only screen and (max-width: 1200px) {
  .over-nav {
    padding-left: 5%;
  }

  .dropdown-content {
    padding-top: 2rem;
  }

  .modal-inner {
    width: 80vw;
  }

  #modal-close {
    right: 11vw;
  }

  nav {
    padding: 2rem 6rem;
  }

  .nav-logo {
    height: 6rem;
  }

  .nav-links {
    font-size: 2.5rem;
  }

  .hero {
    height: calc(100vh - 13.1rem);
  }

  h2 {
    font-size: 6rem;
  }

  .container {
    padding: 0 3rem;
  }

  .hero {
    justify-content: flex-end;
    padding-bottom: 15vh !important;
    gap: 6rem;
  }

  .hero-text-lg {
    font-size: 4rem;
    padding: 0 2rem;
  }

  .hero-text-sm {
    font-size: 2.5rem;
  }

  .about-card {
    font-size: 1.6rem;
  }

  .carousel-testimonials {
    gap: 5rem;
  }

  .carousel-testimonials .carousel-object {
    width: calc(100% - 10rem);
  }

  .toolbox {
    font-size: 2.5rem;
  }

  /* removed empty .toolbox div ruleset */

  .image-grid {
    grid-gap: 3rem;
  }

  .index-contact-main {
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
  }

  .index-contact-top {
    flex-direction: column;
    align-items: center;
    gap: 10rem;
  }

  .map-contact-container {
    flex-direction: column-reverse;
    align-items: center;
  }

  .index-contact .toolbox {
    gap: 10rem;
  }

  .services-category {
    flex-direction: column;
    padding: 15rem 0;
  }

  .services-img {
    width: 100%;
  }

  .services-category .container {
    position: static;
    transform: none;
  }

  .service-category-text {
    max-width: unset;
  }

  .services-category:nth-child(even) .services-img {
    left: unset;
    transform: unset;
  }

  .price {
    font-size: 2rem;
  }

  .contact-container {
    padding: 4rem;
  }
}

@media only screen and (max-width: 768px) {
  :root {
    font-size: 40%;

    --hamburger-height: 3rem;
    --half-hamburger-height: calc(var(--hamburger-height) / 2);
    --negative-half-hamburger-height: calc(-1 * var(--half-hamburger-height));
    --hamburger-width: 2em;
  }

  .nav-links,
  .over-nav {
    width: 50%;
    box-sizing: border-box;
    font-size: 3.5rem;
    position: fixed;
    justify-content: space-between;
    padding: 8rem 0;
    align-items: center;
    right: 0;
    background: var(--secondary-bg);
    transform: translateX(50%) scale(0, 1);
  }

  .dropdown {
    flex-direction: column;
  }

  .dropdown span {
    align-self: center;
  }

  .dropdown-content {
    position: unset;
    top: 0;
    align-items: center;
    background-color: unset;
  }

  .dropdown-content a {
    padding: 1rem 0;
  }

  .primary-hero-buttons {
    display: none;
  }

  .secondary-hero-buttons {
    display: block;
  }

  .nav-transition {
    transition: transform 0.6s;
  }

  .nav-links .nav-link,
  .over-nav > .nav-link {
    opacity: 0;
    transform: translateY(-20rem);
  }

  .nav-links.active .nav-link,
  .over-nav.active > .nav-link {
    opacity: 1;
    transition-property: transform opacity;
    transition-delay: 0.7s;
    transition-duration: 0.7s;
    transform: none;
  }

  .nav-links {
    flex-direction: column;
    top: 0;
    height: 75lvh;
  }

  .over-nav {
    font-size: 2rem;
    flex-direction: column-reverse;
    justify-content: flex-start;
    gap: 4rem;
    top: 75lvh;
    height: 25lvh;
    z-index: 111111;
  }

  .over-nav img {
    height: 2rem;
  }

  .over-nav-socials {
    gap: 4rem;
  }

  .nav-links.active,
  .over-nav.active {
    transform: translateX(0) scale(1, 1);
    transition: 0.3;
  }
  #under-hero-image {
    padding: 0;
  }

  #hamburger-icon {
    display: unset;
    position: fixed;
    width: var(--hamburger-width);
    height: var(--hamburger-height);
    cursor: pointer;
    top: 2.5rem;
    right: 2.5rem;
  }

  #hamburger-icon div {
    background: #fff;
    width: 100%;
    height: 0.3rem;
    position: absolute;
    border-radius: 0.3rem;
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  }

  #hamburger-icon #line-1 {
    animation: line-1-rev 0.6s;
    top: 0;
  }

  #hamburger-icon #line-2 {
    animation: line-2-rev 0.6s;
    top: var(--half-hamburger-height);
  }

  #hamburger-icon #line-3 {
    animation: line-3-rev 0.6s;
    top: var(--hamburger-height);
  }

  #hamburger-icon.active #line-1 {
    transform: translate(0, var(--half-hamburger-height)) rotate(45deg);
    animation: line-1 0.6s;
  }

  #hamburger-icon.active #line-2 {
    transform: scale(0);
    animation: line-2 0.6s;
  }

  #hamburger-icon.active #line-3 {
    transform: translate(0, var(--negative-half-hamburger-height))
      rotate(135deg);
    animation: line-3 0.6s;
  }

  .animation-off {
    -webkit-animation: none !important;
    animation: none !important;
  }

  @keyframes line-1 {
    from {
      transform: translate(0, 0);
    }

    50% {
      transform: translate(0, var(--half-hamburger-height));
    }

    to {
      transform: translate(0, var(--half-hamburger-height)) rotate(45deg);
    }
  }

  @keyframes line-2 {
    from {
      transform: scale(1);
    }

    to {
      transform: scale(0);
    }
  }

  @keyframes line-3 {
    from {
      transform: translate(0, 0);
    }

    50% {
      transform: translate(0, var(--negative-half-hamburger-height));
    }

    to {
      transform: translate(0, var(--negative-half-hamburger-height))
        rotate(135deg);
    }
  }

  @keyframes line-1-rev {
    from {
      transform: translate(0, var(--half-hamburger-height)) rotate(45deg);
    }

    50% {
      transform: translate(0, var(--half-hamburger-height));
    }

    to {
      transform: translate(0, 0px);
    }
  }

  @keyframes line-2-rev {
    from {
      transform: scale(0);
    }

    to {
      transform: scale(1);
    }
  }

  @keyframes line-3-rev {
    from {
      transform: translate(0, var(--negative-half-hamburger-height))
        rotate(135deg);
    }

    50% {
      transform: translate(0, var(--negative-half-hamburger-height));
    }

    to {
      transform: translate(0, 0px);
    }
  }

  section {
    margin: 2rem 0;
    padding: 10rem 0;
  }

  .modal-inner {
    width: 90vw;
  }

  #modal-close {
    right: 6vw;
    height: 7rem;
    width: 7rem;
  }

  .container {
    margin: 0rem 0;
    padding: 0;
  }

  .about-card {
    padding: 3rem;
  }

  #index-about-img {
    width: 50%;
    top: 50%;
  }

  .index-services .index-service-card {
    border-radius: unset;
  }

  h2 {
    font-size: 3rem;
  }

  .toolbox .flex {
    flex-direction: column;
  }

  .toolbox .tool {
    padding: 5rem 0;
  }

  .index-contact iframe {
    width: 300px;
    height: 300px;
  }

  .review-summaries {
    padding-left: 4rem;
  }

  .image-grid {
    padding: 0;
  }

  .gallery-page-selector {
    font-size: 4rem;
    gap: 1rem;
    padding: 8rem 0;
  }

  .gallery-page-selector a {
    padding: 2rem 1.5rem;
  }

  .gallery-selector-chev {
    transform: scale(2) translateY(-2%);
    padding: 0 2rem;
  }

  .price {
    font-size: 2rem;
  }

  .prices-main h3 {
    font-size: 2rem;
  }

  .price-asterisk {
    font-size: 2rem;
  }

  .prices-note {
    font-size: 1rem;
    padding-left: 2rem;
  }

  .pricelist-image-button {
    height: 2rem;
  }

  .services-category {
    padding: 4rem 0;
  }

  .service-category-text .button {
    margin-top: 4rem;
    align-self: center;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    padding: 3rem;
  }

  .contact-container .flex img {
    height: 2.5rem;
  }

  .contact-map-container iframe {
    height: 320px;
  }
}
