/* 
---------- 01 TYPOGRAPHY SYSTEM
-Font sizes (px):
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

---------- 02 WHITE SPACE
Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

 */

/* GLOBAL RESET */
:root {
  --primary-color: #371f6e;
  --secondary-color: #512da8;
  --accent-color: #e040fb;
  --accent-color-dark: #;
  --text-color-primary: #1a1a1a;
  --text-color-secondary: #4d4d4d;
  --text-color-tertiary: #999999;
  --text-color-light: #ffffff;
  --background-light: #ece8f1;
  --font-size: 1.8rem;
}

.test-section .box {
  width: 5rem;
  height: 5rem;
  background-color: green;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* background-color: rgba(127, 238, 255, 0.1); */
}

html {
  /* 9px / 16px * 100 */
  font-size: 56%;
  scroll-behavior: smooth;
}

/* DEFAULT SETTING */
body {
  font-family: 'Lato', sans-serif;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-color-primary);
  overflow-x: hidden;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
  word-wrap: normal;
  overflow: hidden;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  word-wrap: normal;
  text-align: center;
  width: fit-content;
}

h3 {
  font-size: 2.2rem;
  font-weight: 400;
  word-wrap: normal;
  text-align: center;
}

p {
  line-height: 1.6;
  font-size: var(--font-size);
  color: var(--text-color-tertiary);
  text-align: center;
}

ul {
  list-style: none;
  display: flex;
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--text-color-primary);
}

button {
  border: none;
  width: fit-content;
  height: fit-content;
  letter-spacing: 0.1rem;
  cursor: pointer;
}

section > .container,
footer .container {
  margin: 0 1.6rem;
  background-color: var(--text-color-light);
}

section .container header {
  padding: 6.4rem 0;
}

.heading-box {
  display: flex;
  justify-content: center;
}

.heading-box .box {
  overflow: hidden;
}

.btn-wrapper {
  margin-top: 4.2rem;
}

.btn {
  padding: 15px 40px;
  font-weight: 600;
  background-color: var(--accent-color);
  color: var(--text-color-darker);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--accent-color-dark);
  color: var(--text-color-light);
}

.btn--styled {
  height: 7rem;
  display: flex;
  align-items: center;
  background-color: var(--text-color-primary);
  color: var(--text-color-light);
}

.btn--styled span {
  height: 100%;
  padding: 0 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn--styled span.text {
  width: 21rem;
  position: relative;
}

.btn--styled span.icon {
  position: relative;
}

.btn--styled span.icon img {
  width: 2.4rem;
}

.btn--styled span.text::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--styled:hover span.text::before {
  opacity: 1;
}

.btn--styled:hover span.icon .highlight {
  opacity: 0;
}

.btn--styled:hover span.icon img {
  animation: slideWubbleArrowRight 0.3s ease-in-out 0.1s;
}

.btn--styled span.icon .highlight {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.btn--styled.transparent {
  background-color: transparent;
  border: var(--text-color-light) 1px solid;
  border-right: none;
  transition: background-color 0.3s ease;
}

/* .btn--styled.transparent:hover {
  background-color: var(--accent-color);
  border: none;
} */

.btn--styled.transparent > span {
  border-right: var(--text-color-light) 1px solid;
}

/* .btn--styled.transparent:hover > span {
  border: none;
} */

@keyframes beat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes slideWubbleArrowRight {
  0% {
    transform: translateX(-3%);
  }
  50% {
    transform: translateX(25%);
  }
  51% {
    transform: translateX(-8%);
  }
  100% {
    transform: translateX(0);
  }
}

/******************************************************** LANDING PAGE *********************************************************/
/* LANDING PAGE - HERO */

.site-header {
  position: relative;
  overflow: hidden;
  margin-top: 7.2rem;
}

.site-header .img {
  position: absolute;
  inset: 0;
  height: 110vh;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.6rem;
  padding-right: 0;
  background-color: var(--text-color-light);
  width: 100%;
  height: 7.2rem;
  overflow: hidden;
  z-index: 999;
}

.nav img.grunge-bg {
  position: absolute;
  inset: 0;
  top: -10px;
  height: 110vh;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  display: none;
}

.sticky-nav {
  position: fixed;
  top: 0;
}

.logo-box {
  display: flex;
  gap: 2.4rem;
}

.logo-mark {
  width: 10rem;
}

.toggler-box {
  align-items: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 2;
}

.toggler-box .menu__open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggler-box .menu__open svg.beat {
  animation: beat 0.5s ease;
  animation-iteration-count: 3;
}

.menu__open #group-open-btn .cc {
  transition: all 0.3s ease-in-out;
}

.menu__open #group-open-btn .ss,
.menu__open #group-open-btn .ee,
.menu__open #group-open-btn .ww,
.menu__open #group-open-btn .nn {
  transition: all 0.5s ease-in-out;
}

.nav-open .menu__open #group-open-btn .cc {
  fill: transparent;
}

.nav-open .menu__open #group-open-btn .ss {
  transform: scale(0.75) translate(27px, 47px);
}

.nav-open .menu__open #group-open-btn .ee {
  transform: scale(0.75) translate(47px, 47px);
}

.nav-open .menu__open #group-open-btn .nn {
  transform: scale(0.75) translate(47px, 27px);
}

.nav-open .menu__open #group-open-btn .ww {
  transform: scale(0.75) translate(27px, 27px);
}

.nav__logo a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-box {
  position: relative;
  display: none;
  width: 100%;
}

.menu-box .nav__menu {
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-60%, -50%);
}

.menu-box .nav__menu .menu-item .menu-item__link {
  text-decoration: none;
  color: var(--text-color-primary);
  font-weight: 500;
  padding: 1.6rem;
}

.menu-box .nav__menu .menu-item .menu-item__link:hover {
  color: var(--accent-color);
}

.nav__contact-menu {
  display: none;
  margin-left: auto;
  position: relative;
}

.contact-menu {
  max-width: 48rem;
  display: flex;
  gap: 0.4rem;
}

.contact-item {
  position: absolute;
  transform: translateY(-50%);
}

.contact-item:nth-child(1) {
  top: 0;
  right: 12.9rem;
}

.contact-item:nth-child(2) {
  top: 0;
  right: 7rem;
}

.contact-item:nth-child(3) {
  top: 0;
  right: 1.2rem;
}

.contact-item div {
  display: flex;
  align-items: center; /* Center items vertically */
  padding: 1rem;
  border: 1px solid var(--text-color-tertiary);
  cursor: pointer;
  overflow: hidden; /* Ensure content doesn't overflow the item */
  background-color: transparent;
  transition: background-color 0.3s ease;
}

@keyframes expandDetails {
  0% {
    width: 0;
    opacity: 0;
    visibility: hidden;
    color: var(--background-light);
  }
  99% {
    /* Changed to 100% for full visibility */
    width: auto; /* or a specific width */
    opacity: 1;
    visibility: visible;
    color: var(--text-color-primary);
  }
}

.contact-item div span.details {
  white-space: nowrap; /* Prevent text wrapping */
  color: var(--background-light);
  width: 0; /* Start with width 0 */
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Initially hidden */
  animation: expandDetails 0.3s ease forwards; /* Use keyframes */
  transition: margin-right 0.3s ease; /* Smooth transition for margin-right */
}

.contact-item div:hover {
  background-color: var(--background-light);
}

.contact-item div:hover span.details {
  width: auto; /* Allow the width to expand */
  opacity: 1; /* Make it visible */
  visibility: visible; /* Make it visible */
  color: var(--text-color-primary);
  margin-right: 2.4rem; /* Space between the text and the icon */
  animation: expandDetails 0.3s ease forwards; /* Ensure animation runs on hover */
}

.contact-item div img {
  width: 2.4rem;
}

.toggler-box.contact {
  margin-left: auto;
}

.menu__open.contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  display: flex; /* Use flexbox to allow children to dictate height */
  flex-direction: column; /* Stack children vertically */
  position: relative;
}

.swiper-hero {
  /* height: 80vh; */
  width: 100%;
}

.hero__items {
  display: flex; /* Use flexbox for proper alignment */
  /* flex-direction: row-reverse; */
  /* justify-content: flex-end; */
  height: auto; /* Allow height to adjust based on content */
  /* overflow: visible; */
}

.hero__item {
  position: relative; /* Change to relative for normal flow */
  height: auto; /* Allow height to adjust based on content */
  width: 100%;
}

.hero__item .hero__img {
  display: flex;
  position: relative;
  height: 50vh; /* Set a constant height for the hero image */
  overflow: hidden; /* Hide any overflow */
  width: 100%; /* Ensure the container takes full width */
}

.hero__item .hero__img img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  max-height: 100%; /* Ensure the image does not exceed the container height */
  object-fit: cover; /* Cover the container while maintaining aspect ratio */
  object-position: top; /* Position the image from the top */
}

.hero__item .hero__content {
  position: absolute;
  inset: 0;
  min-width: 20rem;
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.hero__item .hero__content-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.hero__item .hero__content-box .box {
  overflow: hidden;
}

.hero__item .hero__content > img {
  position: absolute;
  inset: 0;
  top: -10rem; /* To adjust the image up a bit.*/
  height: 100vh;
  display: none;
}

.hero__item .hero__content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 350;
  color: var(--text-color-primary);
  line-height: 3rem;
  text-align: center;
  width: 256px;
}

.hero__nav {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15rem;
  height: 8rem;
  overflow: hidden;
  z-index: 2;
  display: none;
}

.hero-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
}

.swiper-pagination-hero {
  position: unset;
  display: flex;
  gap: 2.4rem;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-hero .swiper-pagination-bullet {
  color: transparent;
  background: transparent;
  opacity: 1;
  width: max-content;
  height: max-content;
  cursor: pointer;
  margin: 0;
}

/* Static base circle with var(--text-color-tertiary) stroke */
.swiper-pagination-hero .swiper-pagination-bullet .circle-big {
  fill: transparent;
  stroke: var(--text-color-tertiary);
  stroke-dasharray: 87.9645943;
  stroke-dashoffset: 0; /* Fully visible stroke */
}

/* Overlay circle for animated var(--primary-color) stroke */
.swiper-pagination-hero .swiper-pagination-bullet .circle-big-overlay {
  fill: transparent;
  stroke: var(--primary-color);
  stroke-dasharray: 87.9645943;
  stroke-dashoffset: 87.9645943;
  animation: reverse-circle-path 0.5s ease-out;
}

/* Small circle default state */
.swiper-pagination-hero .swiper-pagination-bullet .circle-small {
  fill: transparent;
  fill-opacity: 0;
  transition:
    fill 0.5s ease-out,
    fill-opacity 0.5s ease-out; /* Specific transitions for clarity */
}

/* Small circle fill on active */
.swiper-pagination-hero .swiper-pagination-bullet-active .circle-small {
  fill: var(--primary-color);
  fill-opacity: 1;
}

/* Animate overlay circle on hover/active */
.swiper-pagination-hero .swiper-pagination-bullet svg:hover .circle-big-overlay,
.swiper-pagination-hero .swiper-pagination-bullet-active .circle-big-overlay {
  animation: draw-circle-path 0.5s ease-out forwards;
}

/* Keyframes for drawing the circle */
@keyframes draw-circle-path {
  from {
    stroke-dashoffset: 87.9645943;
  }
  to {
    stroke-dashoffset: 0; /* Draw the circle fully */
  }
}

/* Keyframes for reversing the circle animation */
@keyframes reverse-circle-path {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 87.9645943;
  }
}

.nav-buttons {
  display: none;
  gap: 1.4rem;
}

.nav-button__btn div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 50%;
  border: #1a1a1a 0.7px solid;
  transition: border 0.3s ease;
  cursor: pointer;
}

.nav-button__btn div:hover {
  border: var(--accent-color) 0.7px solid;
}

.nav-button__btn div:hover .icon path {
  fill: var(--accent-color);
  transition: fill 0.3s ease;
}

/* LANDING PAGE - SERVICES SECTION */

.services-section .container {
  margin: 0;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: var(--text-color-tertiary);
}

.services .box {
  display: flex;
  background-color: var(--text-color-light);
}

.services .box:nth-child(1) {
  padding-top: 0;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
  padding: 3.2rem 0;
  background-color: var(--text-color-light);
  transition: box-shadow 0.3s ease;
}

/* .service:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
} */

.service .icon {
  padding: 1.4rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  width: fit-content;
}

.service h3 a {
  color: var(--text-color-primary);
  line-height: 1.4;
}

.service h3 a:hover {
  color: var(--accent-color);
}

.service p {
  margin: 0 2.4rem;
}

/* LANDING PAGE - ABOUT SECTION */

.about-section .container {
  margin: 0;
  padding-top: 8rem;
}

.about-section__info {
  position: relative;
  overflow: hidden;
}

.about-section__info .img {
  position: absolute;
  inset: 0;
  top: -0.5rem;
  height: 130vh;
  width: 100%;
  object-fit: cover;
}

.about-img-bg {
  display: flex;
  z-index: 1;
}

.about-img-bg img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.about-content-box {
  display: flex;
  flex-direction: column-reverse;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6.4rem 1.6rem;
  gap: 3.2rem;
  overflow: hidden;
}

.about-section .about-content header {
  padding: 0;
}

.about-content header,
.about-content p,
.about-content button {
  z-index: 1;
}

.about-content p {
  color: var(--text-color-primary);
  font-size: 1.6rem;
}

.about-section__controls {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: var(--background-light);
}

.about-section__controls .btn {
  position: relative;
  width: 100%;
  min-height: 7rem;
  color: var(--text-color-light);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  background-color: var(--text-color-primary);
  transition: background-color 0.3s ease;
}

.about-section__controls .btn:hover,
.about-section__controls .btn.highlight {
  background-color: rgba(26, 26, 26, 0.95);
}

.about-section__controls .btn.highlight::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 10rem;
  height: 0.5rem;
  background-color: var(--accent-color);
}

.about-content button .icon img {
  width: 2.4rem;
}

/* LANDING PAGE - WHY US SECTION */

.why-us-section .container {
  margin: 6.4rem 0;
}

.why-us-section header {
  /* position: absolute;
  top: 6rem;
  left: 0; */
  display: flex;
  align-items: center;
  /* justify-content: center; */
  /* margin-left: 1.6rem; */
}

/* .swiper-why-us .swiper-wrapper {
  padding-top: 12rem;
} */

.swiper-why-us .swiper-pagination-why-us {
  position: absolute;
  top: 6.5rem;
  left: unset;
  right: 0;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  transform: translateY(33%);
  margin-right: 1.6rem;
}

.why-us-section .swiper-pagination-why-us .swiper-pagination-bullet {
  color: transparent;
  background: transparent;
  opacity: 1;
  width: max-content;
  height: max-content;
  cursor: pointer;
  margin: 0;
}

.swiper-pagination-why-us .swiper-pagination-bullet button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  cursor: pointer;
  background-color: var(--text-color-tertiary);
}

.swiper-pagination-why-us .swiper-pagination-bullet-active button {
  background-color: var(--accent-color);
}

.swiper-pagination-why-us .swiper-pagination-bullet button .small-box {
  width: 50%;
  height: 50%;
  background-color: var(--accent-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.swiper-pagination-why-us .swiper-pagination-bullet button:hover .small-box {
  opacity: 1;
}

.why-us-section .container {
  margin-left: 0;
  margin-right: 0;
}

.why-us-section .swiper-why-us {
  padding: 0 1.6rem;
  padding-bottom: 1.6rem;
}

.why-us-section .swiper-slide {
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.why-us-section .swiper-slide .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 24rem;
  left: 80%;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  transform: translate(-20%, -100%);
  z-index: 1;
  transition: left 0.3s ease;
}

.why-us-section .swiper-slide .circle .number {
  font-size: 3.2rem;
  color: var(--text-color-light);
}

.why-us-section .img {
  height: auto; /* Change from fixed height to auto */
  max-height: 26rem; /* Set a maximum height */
  width: 100%; /* Set width to 100% to fill the container */
  /* clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%); */
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 85% 80%, 0% 100%);

  transition: clip-path 0.3s ease;
}

.why-us-section .img img {
  height: auto; /* Set to auto to maintain aspect ratio */
  width: 100%; /* Set width to 100% to fill the container */
  max-width: 100%; /* Prevent overflow */
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.why-us-section .swiper-slide:hover .img {
  /* clip-path: polygon(0 0, 100% 0, 100% 80%, 0 80%); */
  clip-path: polygon(0% 0%, 100% 0, 100% 90%, 80% 90%, 0 90%);
}

.why-us-section .swiper-slide:hover .circle {
  left: 50%;
  transform: translate(-50%, -60%);
}

.why-us-section .swiper-slide:hover .img img {
  transform: scale(1);
}

.why-us-section .content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: start;
  padding: 3.2rem;
  padding-top: 2rem;
}

.why-us-section .content h3,
.why-us-section .content p {
  text-align: left;
}

/* LANDING PAGE - CLIENTS SECTION */

.get-in-touch-section .container {
  margin: 0;
}

.get-in-touch-section .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #4a5568;
  overflow: hidden;
}

.get-in-touch-section .content .bg-box {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.get-in-touch-section .content .get-in-touch-bg {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.get-in-touch-section .box {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 2.5vw, 3.2rem);
  align-items: center;
  justify-content: center;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
}

.get-in-touch-section h3 {
  color: var(--text-color-light);
  font-size: clamp(2rem, 5vw, 3rem);
}

.btn--styled.transparent {
  background: transparent;
  border: 2px solid var(--text-color-light);
  padding: 1rem 2rem;
  color: var(--text-color-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--styled.transparent:hover {
  background: var(--text-color-light);
  color: #4a5568;
}

@media (max-width: 768px) {
  .get-in-touch-section h3 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }
}

/* LANDING PAGE - PROJECTS SECTION */

.projects-section .container {
  margin-top: 8rem;
  margin-bottom: 12rem;
}

.projects-section .projects {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.prjects-section .project {
  width: 100%;
}

.project {
  position: relative;
  overflow: hidden;
}

.project img {
  width: 100%;
}

.project .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
}

.project .overlay h3 a {
  color: var(--text-color-primary);
  transition: color 0.3s ease;
}

.project .overlay h3 a:hover {
  color: #e040fb;
}

.project .overlay .category {
  padding: 1.8rem;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  font-size: 1.4rem;
}

/* LANDING PAGE - CONTACT SECTION */

/******************************************************** FOOTER ********************************************************/
.site-footer {
  background-color: var(--text-color-primary);
}

.site-footer a {
  display: block;
  color: var(--text-color-light);
  padding: 2.4rem 0.8rem;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--accent-color);
}

.footer-body {
  color: var(--text-color-light);
}

.footer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5px;
  background-color: var(--text-color-secondary);
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 0.5px;
  background-color: var(--text-color-secondary);
}

.footer-group dt,
.footer-group dd {
  background-color: var(--text-color-primary);
  padding: 2.4rem;
}

.footer-group dt {
  text-align: center;
  font-weight: 600;
  padding-top: 8rem;
}

.footer-group dt.description-links-title {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

.footer-group dd.description-links {
  padding: 0;
}

.footer-group dd .links,
.footer-group dd .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 300;
}

.footer-group dd .contact-info {
  gap: 2.4rem;
}

.footer-group dd .link {
  width: 100%;
}

.site-footer .btn--styled {
  border: var(--accent-color) 1px solid;
}

.footer-box aside.map {
  border-top: var(--text-color-secondary) 0.5px solid;
  padding-top: 2.4rem;
  background-color: var(--text-color-primary);
  width: 100%;
}

.footer-box aside.map iframe {
  width: 100%;
}

.footer-bottom {
  padding: 3.2rem 0;
  background-color: black;
}

.footer-bottom .container {
  background-color: black;
}

.footer-bottom p {
  color: var(--secondary-color);
}

.footer-bottom a {
  display: unset;
  color: var(--secondary-color);
}
