@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100..700&display=swap");
:root {
  --font-size: 16px;
  --container-width: 100%;
  --side-gutter: 0;
  --gutter: clamp(2rem, 0.6667rem + 2.7778vw, 4rem);
  --swiper-gap: calc(var(--gutter) * .5);
  --radius: 1.25rem;
  --black: #181818;
  --light: rgba(255,255,255,.05);
  --white: #ffffff;
  --primary: #883683;
  --secondary: #480043;
  --primary-hover: #9A4597;
  --secondary-hover: #5A0060;
  --fs1: clamp(2.25rem, 1.7143rem + 1.1161vw, 3.5rem);
  --fs2: clamp(1.875rem, 1.6071rem + 0.558vw, 2.5rem);
  --fs3: clamp(1.625rem, 1.4643rem + 0.3348vw, 2rem);
  --fs4: clamp(1.375rem, 1.3214rem + 0.1116vw, 1.5rem);
  --fs5: clamp(1.125rem, 1.0714rem + 0.1116vw, 1.25rem);
  --fs6: clamp(1rem, 0.9464rem + 0.1116vw, 1.125rem);
  --fslead: clamp(1.125rem, 1.0417rem + 0.1736vw, 1.25rem);
  --spacing-sm: clamp(2.2rem, 0.7334rem + 3.0556vw, 4.4rem);
  --spacing-md: clamp(2.75rem, 0.9167rem + 3.8194vw, 5.5rem);
  --spacing-lg: clamp(6rem, 4.2857rem + 3.5714vw, 10rem);
}

@media (min-width: 576px) {
  :root {
    --container-width: 540px;
  }
}
@media (min-width: 768px) {
  :root {
    --container-width: 720px;
  }
}
@media (min-width: 992px) {
  :root {
    --container-width: 960px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container-width: 1140px;
  }
}
@media (min-width: 1400px) {
  :root {
    --container-width: 1320px;
  }
}
@media all and (min-width: 1500px) {
  :root {
    --container-width: 1440px;
  }
}
@media all and (min-width: 1700px) {
  :root {
    --container-width: 1640px;
  }
}
@media all and (min-width: 1920px) {
  :root {
    --container-width: 1840px;
  }
}
html {
  font-size: var(--font-size);
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

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

body {
  font-family: "aktiv-grotesk", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.125rem;
  color: var(--white);
  background: var(--black);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body.menu--is-open {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

/* -- Container ----------------------------*/
.container {
  max-width: var(--container-width);
  --bs-gutter-x: var(--gutter);
}

.fw-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
}

.row {
  --bs-gutter-x: var(--gutter);
}

.row > * {
  padding-right: calc(var(--gutter) * 0.5);
  padding-left: calc(var(--gutter) * 0.5);
}

.container-fluid {
  --bs-gutter-x: var(--gutter);
}

/* -- Fonts --------------------------------*/
.fw-200 {
  font-family: "aktiv-grotesk-thin", sans-serif;
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-700 {
  font-weight: 700;
}

.fs-1, .fs-2, .fs-3, .fs-4, .fs-5, .fs-6 {
  display: block;
  text-wrap: balance;
}

.fs-1:not(.fw-200), .fs-2:not(.fw-200), .fs-3:not(.fw-200), .fs-4:not(.fw-200), .fs-5:not(.fw-200), .fs-6:not(.fw-200) {
  display: block;
  text-wrap: balance;
}

.fs-1 {
  font-size: var(--fs1) !important;
  line-height: 1;
}

.fs-2 {
  font-size: var(--fs2) !important;
  line-height: 1;
}

.fs-3 {
  font-size: var(--fs3) !important;
  line-height: 1.2;
}

.fs-4 {
  font-size: var(--fs4) !important;
  line-height: 1.2;
}

.fs-5 {
  font-size: var(--fs5) !important;
  line-height: 1.3;
}

.fs-6 {
  font-size: var(--fs6) !important;
  line-height: 1.35;
}

.fs-lead {
  font-size: var(--fslead);
  line-height: 1.4;
  text-wrap: balance;
}

p:not([class]) {
  line-height: 1.7;
}

.text-balance {
  text-wrap: balance;
}

/* -- Lists ---------------------------------*/
.fa-ul {
  margin: 0 0 0 1.5rem;
}
.fa-ul li + li {
  margin-top: 0.75rem;
}

ol:not([class]),
ul:not([class]) {
  padding-left: 1rem;
}
ol:not([class]) li + li,
ul:not([class]) li + li {
  margin-top: 0.5rem;
}

/* -- Links ---------------------------------*/
a, a:hover, a:focus, a:active {
  box-shadow: none;
  text-decoration: none;
}

a:not([class]) {
  color: inherit;
}
a:not([class]):hover {
  color: inherit;
}

.link--underline {
  position: relative;
}

.link--underline::before {
  content: "";
  position: absolute;
  bottom: -0.2em;
  left: 0;
  width: 100%;
  height: 0.0625em;
  background: currentColor;
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
}

.link--underline:hover::before {
  transform-origin: left;
  transform: scaleX(1) rotate(0.001deg);
}

/* -- Buttons -------------------------------*/
.buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.button {
  font-family: "aktiv-grotesk", sans-serif;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1rem;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid var(--white);
  border-radius: 0;
  padding: 0.45rem 0.5rem 0.45rem 1rem;
  background-color: transparent;
  color: var(--white);
  transition: all ease-in-out 0.4s;
}
.button .icon {
  display: grid;
  place-items: center;
  width: 1.75rem;
  aspect-ratio: 1;
  background: transparent;
  transition: all ease-in-out 0.4s;
}
.button .icon i {
  color: var(--white);
}
.button:hover {
  color: var(--secondary);
  background: var(--white);
}
.button:hover .icon {
  background: var(--primary);
}

@media all and (min-width: 992px) {
  .button {
    font-size: 1.25rem;
    padding: 0.65rem 1rem 0.65rem 1.5rem;
  }
  .button .icon {
    width: 2rem;
  }
}
/* -- Backgrounds ---------------------------*/
.bcg--white {
  background: var(--white);
}

.bcg--light {
  background: var(--light);
}

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

.bcg--secondary {
  background: var(--secondary);
}

.bcg--tertiary {
  background: var(--tertiary);
}

.bcg--quaternary {
  background: var(--quaternary);
}

/* -- Colors --------------------------------*/
.clr--white {
  color: var(--white);
}

.clr--light {
  color: var(--light);
}

.clr--primary {
  color: var(--primary);
}

.clr--secondary {
  color: var(--secondary);
}

.clr--tertiary {
  color: var(--tertiary);
}

.clr--quaternary {
  color: var(--quaternary);
}

/* -- Images --------------------------------*/
.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.has--parallax {
  overflow: clip;
}
.has--parallax img {
  height: 120% !important;
}

.image-zoom {
  display: block;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.image-zoom:before {
  content: "\f002";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  font-size: 1.25rem;
  display: grid;
  width: 50px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--green);
  background: var(--white);
  border-radius: 100%;
  box-shadow: 0 0 1.5rem 0 rgba(59, 69, 89, 0.15);
  transition: all 0.5s;
}
.image-zoom:hover:before {
  transform: scale(1.05);
}

/* -- Swipers -------------------------------*/
.swiper-buttons {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.swiper-buttons__prev,
.swiper-buttons__next {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  z-index: 2;
}

.swiper-button-disabled {
  opacity: 0.25;
}

/* -- Content flow --------------------------*/
.content-flow > * + * {
  margin-block-start: var(--flow-space, 1em);
}
.content-flow :is(h1, h2, h3, h4, h5, h6, blockquote) {
  --flow-space: 2rem;
}
.content-flow :is(h1, h2, h3, h4, h5, h6) + * {
  --flow-space: 1rem;
}

/* -- Lines ----------------------------------*/
.has--toplines {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media all and (min-width: 576px) {
  .lines {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--gutter));
    max-width: var(--container-width);
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  .is--above-lines {
    position: relative;
    z-index: 10;
  }
  .lines__line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
  }
  .lines__line:nth-child(1) {
    left: 0;
  }
  .lines__line:nth-child(2) {
    display: none;
  }
  .lines__line:nth-child(3) {
    display: none;
  }
  .lines__line:nth-child(4) {
    display: none;
  }
  .lines__line:nth-child(5) {
    right: 0;
  }
}
@media all and (min-width: 768px) {
  .lines__line:nth-child(3) {
    display: block;
    left: 50%;
  }
  .lines__line:nth-child(2) {
    display: block;
    left: 25%;
  }
  .lines__line:nth-child(4) {
    display: block;
    left: 75%;
  }
}
/* -- Navigation ------------------------------*/
.site-navigation {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 0;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.progress-nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.progress-nav__inner {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
  padding: 0 calc(clamp(2rem, 0.6667rem + 2.7778vw, 4rem) * 0.5);
}

.progress-nav__logo {
  color: inherit;
  text-decoration: none;
}

.progress-nav__wrapper {
  display: none;
}

@media all and (min-width: 1200px) {
  .progress-nav__wrapper {
    display: block;
    border-radius: 0;
    padding: 0;
  }
  .progress-nav__list {
    border-radius: 0;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden;
  }
  .progress-nav__indicator {
    z-index: 2;
    background-color: #fff;
    border-radius: 0;
    width: 2.5em;
    height: 2px;
    position: absolute;
    left: -2.5rem;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .progress-nav__btn {
    z-index: 3;
    cursor: pointer;
    color: inherit;
    justify-content: center;
    align-items: center;
    height: 2.5em;
    padding-left: 1rem;
    padding-right: 1rem;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;
  }
  .progress-nav__btn.is--before {
    z-index: 1;
    width: 2.5em;
    height: 2.5em;
    padding-left: 0;
    padding-right: 0;
    position: absolute;
    right: 100%;
  }
  .progress-nav__btn.is--after {
    z-index: 1;
    width: 2.5em;
    height: 2.5em;
    padding-left: 0;
    padding-right: 0;
    position: absolute;
    left: 100%;
  }
  .progress-nav__btn-text {
    font-family: "aktiv-grotesk", sans-serif;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 1.125em;
    font-weight: 500;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(0%) rotate(0.001deg);
  }
  .progress-nav__btn-text.is--duplicate {
    position: absolute;
    top: 100%;
  }
  .progress-nav__btn:hover .progress-nav__btn-text {
    transform: translateY(-100%) rotate(0.001deg);
  }
}
/* -- Site header ------------------------------*/
.site-header {
  position: relative;
  min-height: 100vh;
}
.site-header__content {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
  min-height: 100dvh;
  z-index: 3;
  padding: var(--spacing-md) 0;
}
.site-header__media {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.site-header__media:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.site-header__media img,
.site-header__media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -- Site main --------------------------------*/
.site-main {
  position: relative;
  overflow: clip;
}

.background-element {
  position: absolute;
  width: 100vw;
  height: auto;
  top: 0;
  left: 0;
  z-index: 2;
}
.background-element img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.background-glow {
  position: absolute;
  width: 100vw;
  height: 33%;
  z-index: 0;
  pointer-events: none;
}
.background-glow--top {
  top: 0;
  right: 0;
  background: radial-gradient(ellipse 80% 80% at 85% 0%, rgba(72, 0, 67, 0.85) 0%, rgba(136, 54, 131, 0.5) 40%, rgba(255, 255, 255, 0) 80%);
}
.background-glow--center {
  top: 30%;
  left: 0;
  background: radial-gradient(ellipse 60% 70% at -10% 50%, rgba(86, 0, 107, 0.65) 0%, rgba(155, 73, 182, 0.4) 30%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
}
.background-glow--bottom {
  bottom: 10%;
  right: 0;
  background: radial-gradient(ellipse 90% 60% at 115% 55%, rgba(72, 0, 67, 0.85) 0%, rgba(136, 54, 131, 0.5) 40%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}

/* -- Sections ---------------------------------*/
.section {
  position: relative;
  padding: var(--spacing-md) 0;
  z-index: 2;
}

/* -- Section--OO ------------------------------*/
.grid-oo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, min-content);
  gap: 0;
  grid-template-areas: "content content" "media-1 media-1" "media-2 media-4" "media-3 media-3";
}

.grid-oo__content {
  grid-area: content;
  padding: calc(clamp(2rem, 0.6667rem + 2.7778vw, 4rem) * 0.75);
}

.grid-oo__media-1 {
  grid-area: media-1;
}

.grid-oo__media-2 {
  grid-area: media-2;
}

.grid-oo__media-3 {
  grid-area: media-3;
}

.grid-oo__media-4 {
  grid-area: media-4;
}

.grid-oo__content p {
  text-wrap: balance;
}

.grid-oo__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (min-width: 768px) {
  .grid-oo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, min-content);
    grid-template-areas: "content content content content" "media-1 media-1 media-1 media-2" "media-1 media-1 media-1 media-2" "media-4 media-3 media-3 media-3" "media-4 media-3 media-3 media-3";
  }
}
@media all and (min-width: 992px) {
  .grid-oo {
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas: "content content media-1 media-1" ". media-2 media-1 media-1" "media-3 media-3 media-4 .";
  }
}
@media all and (min-width: 1200px) {
  .grid-oo__media-1 {
    aspect-ratio: 1;
  }
  .grid-oo__media-2 {
    aspect-ratio: 1;
  }
  .grid-oo__media-3 {
    aspect-ratio: 2/1;
  }
  .grid-oo__media-4 {
    aspect-ratio: 1;
  }
}
/* -- Section--why -----------------------------*/
.section--why {
  overflow: clip;
}

.swiper--why {
  overflow: visible;
}

.swiper--why .swiper-slide {
  width: auto;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.tile--why {
  display: flex;
  align-items: flex-start;
  gap: calc(clamp(2rem, 0.6667rem + 2.7778vw, 4rem) * 0.5);
  padding: calc(clamp(2rem, 0.6667rem + 2.7778vw, 4rem) * 0.75);
  background: var(--light);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.tile--why .tile-icon {
  display: grid; 
  width: 60px;
  height: 60px;
  place-items: center;
  background: #fff;
}
.tile--why .tile-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}
.tile--why .tile-content__title {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: var(--fs4);
  font-weight: 500;
  line-height: 1.4;
}

/* -- Section--faq -----------------------------*/
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: var(--fs5);
  font-weight: 500;
  cursor: pointer;
}
summary::marker {
  content: "";
}
summary::after {
  content: "\f063";
  font-family: "Font Awesome 6 Sharp";
  font-weight: 400;
  width: 3rem;
  height: 3rem;
  display: inline-block;
  background: #fff;
  border-radius: 3rem;
  text-align: center;
  line-height: 3rem;
  color: #000;
  margin-left: 1rem;
  transition: all 0.5s;
  flex-shrink: 0;
}

details {
  background: #000;
  padding: calc(clamp(2rem, 0.6667rem + 2.7778vw, 4rem) * 0.5);
  transition: all 0.25s;
}
details[open] {
  background: #fff;
}
details[open] summary {
  color: var(--primary);
}
details[open] p {
  margin-top: 1.5rem;
  color: var(--secondary);
}
details[open] summary::after {
  content: "\f063";
  transform: rotate(180deg);
  color: #fff;
  background: var(--primary);
}

@media (min-width: 768px) {
  .grid-faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content;
    gap: 0;
  }
}
/* -- Section--what ----------------------------*/
.grid-who {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, min-content);
  gap: 0px 0px;
  grid-template-areas: "photo contact" "description description" "image image";
}
.grid-who__photo {
  grid-area: photo;
}
.grid-who__contact {
  grid-area: contact;
}
.grid-who__description {
  grid-area: description;
}
.grid-who__image {
  grid-area: image;
}

.grid-who__photo {
  aspect-ratio: 1;
}
.grid-who__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.grid-who__contact {
  align-self: center;
  padding: calc(clamp(2rem, 0.6667rem + 2.7778vw, 4rem) * 0.5);
}

.grid-who__description {
  align-self: center;
  padding: calc(clamp(2rem, 0.6667rem + 2.7778vw, 4rem) * 0.5);
}

.grid-who__image {
  aspect-ratio: 2/1;
}
.grid-who__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (min-width: 992px) {
  .grid-who {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, min-content);
    grid-template-areas: "photo contact description description" ". image image .";
  }
}
/* -- Section--what ----------------------------*/
.grid-diensten {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 0;
}
.grid-diensten__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content 1fr;
  grid-template-areas: "media" "content";
}
.grid-diensten__item .item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2rem, 0.6667rem + 2.7778vw, 4rem);
  position: relative;
  grid-area: content;
  color: var(--tile-color);
  padding: calc(clamp(2rem, 0.6667rem + 2.7778vw, 4rem) * 0.5);
  background: var(--light);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.grid-diensten__item .item-content__number {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: var(--fs3);
  font-weight: 500;
  align-self: flex-end;
}
.grid-diensten__item .item-content__title {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: var(--fs3);
  font-weight: 500;
  margin-bottom: 1rem;
}
.grid-diensten__item .item-media {
  grid-area: media;
}
.grid-diensten__item .item-media__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 9/5;
}

@media all and (min-width: 768px) {
  .grid-diensten {
    grid-template-columns: 1fr 1fr;
  }
  .grid-diensten__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min-content;
    grid-column: 1/3;
  }
  .grid-diensten__item .item-content {
    grid-area: content;
  }
  .grid-diensten__item .item-media {
    grid-area: media;
  }
  .grid-diensten__item:nth-child(odd) {
    grid-template-areas: "content media";
  }
  .grid-diensten__item:nth-child(even) {
    grid-template-areas: "media content";
  }
}
@media all and (min-width: 1200px) {
  .grid-diensten {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-diensten__item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-diensten__item:nth-child(1) {
    grid-template-areas: "content media media";
    grid-column: 1/4;
  }
  .grid-diensten__item:nth-child(2) {
    grid-template-areas: "content media media";
    grid-column: 2/5;
  }
  .grid-diensten__item:nth-child(3) {
    grid-template-areas: "media media content";
    grid-column: 1/4;
  }
  .grid-diensten__item:nth-child(4) {
    grid-template-areas: "media media content";
    grid-column: 2/5;
  }
}
/* -- Footer -----------*/
.site-footer {
  position: relative;
  overflow: clip;
}
.site-footer:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(4deg, rgb(72, 0, 67) 0%, rgb(136, 54, 131) 10%, rgba(136, 54, 131, 0) 65%);
  z-index: 0;
}
.site-footer__contact {
  position: relative;
  z-index: 1;
  padding: var(--spacing-md) 0;
}
.site-footer__contact .emailaddress__link {
  display: inline-block;
  color: var(--white);
}
.site-footer__contact .phone__link {
  display: inline-block;
  color: var(--white);
}
.site-footer__upper {
  position: relative;
  z-index: 1;
  margin: var(--spacing-md) 0;
}
.site-footer__upper .footer-information {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
.site-footer__upper .footer-information address {
  margin: 0;
}
.site-footer__base {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  padding: 2rem 0;
  background: #000;
}
.site-footer__base span {
  color: rgba(255, 255, 255, 0.75);
}
.site-footer__base .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.site-footer__base a {
  color: rgba(255, 255, 255, 0.75);
}
.site-footer__base a:hover {
  color: rgb(255, 255, 255);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.social-links__link {
  display: grid;
  place-items: center;
  width: 60px;
  aspect-ratio: 1;
  border: 1px solid var(--white);
  color: var(--white);
  transition: all 0.5s;
}
.social-links__link i {
  font-size: 1.35rem;
}
.social-links__link:hover {
  color: var(--primary);
  background: var(--white);
}

@media all and (min-width: 992px) {
  .site-footer .social-links,
  .site-footer .footer-links {
    justify-content: flex-end;
  }
}/*# sourceMappingURL=stylesheet.css.map */