/* ==========================================================================
   Coiffeur Cita Albrecht -- rebuilt from the Webflow site as clean CSS
   Structure: tokens > base > layout > navbar > hero > services > welcome >
   testimonials > angebote > geschichte > team > footer > legal pages >
   breakpoints (991 / 767 / 479) and large-screen tweaks (1280 / 1440 / 1920)
   ========================================================================== */

:root {
  --body-display: #626d86;
  --pinstripe: #889ea833;
  --grey: #eef0f6;
  --light-goldenrod-yellow: #e3f2be;
  --shadow: #292b4e12;
  --black: #111729;
  --cdn: https://cdn.prod.website-files.com/63885f01505c55bb604e6d32;
}

/* ---------- base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { height: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100%;
  color: #000;
  background-color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

img { max-width: 100%; vertical-align: middle; border: 0; display: inline-block; }

h1, h2, h3, h4, h5, h6 { margin: 0 0 10px; letter-spacing: -.03em; }
h1 { font-size: 42px; font-weight: 600; line-height: 1.25em; margin-bottom: 0; }
h2 { font-size: 32px; font-weight: 500; line-height: 1.3em; margin-bottom: 0; }
h3 { font-size: 24px; font-weight: 500; line-height: 1.3em; margin-bottom: 0; }
h5 { font-size: 14px; font-weight: 500; line-height: 20px; margin-bottom: 0; }

p { margin: 0 0 10px; color: var(--body-display); font-size: 17px; line-height: 1.6em; }

a { color: inherit; text-decoration: underline; }

/* ---------- layout ---------- */

/* 3-column page grid: gutter | content (max 1400px) | gutter */
.grid-wrapper {
  z-index: 10;
  display: grid;
  position: relative;
  width: 100%;
  grid-template-rows: auto;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1400px) minmax(5vw, 1fr);
}

.grid-wrapper > * { grid-column: 2; }

.section { padding: 140px 0; position: relative; }
.section.no-padding { padding: 0; }
.section.no-padding.grey { background-color: var(--light-goldenrod-yellow); margin-top: 140px; }
.section.grey { background-color: transparent; margin-top: 140px; padding: 0; }

.subtitle {
  color: var(--body-display);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}
.subtitle.light { color: #fffc; }
.subtitle.small { font-size: 9px; }

.body-display { color: var(--body-display); font-size: 14px; line-height: 1.6em; }
.body-display.small { color: #333; text-align: left; font-size: 12px; font-weight: 600; line-height: 1.45em; }
.body-display.light { color: #fff; }

.left-line { background-color: #d7dfeb; width: 60px; height: 2px; display: flex; }
.line-fill { background-color: #a3acc2; width: 40%; height: 100%; }
.line-fill.light { background-color: #fff3; }

.verticle-line { background-color: var(--pinstripe); height: 100%; position: relative; }

/* buttons */
.solid-button, .nav-button, .outline-button {
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 100px;
  font-size: 9px;
  line-height: 1.35em;
  text-decoration: none;
  overflow: hidden;
  display: inline-block;
}
.solid-button {
  color: #fff;
  background-color: #000;
  margin: 10px 0 10px 20px;
  padding: 16px 32px;
}
.solid-button.flush { margin-left: 0; }
.solid-button.flush-top { margin-top: 0; margin-left: 0; }
.outline-button {
  color: #000;
  border: 1px solid var(--pinstripe);
  min-height: 42px;
  padding: 16px 32px;
  transition: background-color .5s cubic-bezier(.25, .46, .45, .94);
}
.outline-button.light { color: #fff; background-color: transparent; border-color: #fff3; }
.button-text { font-size: 12px; }

/* animated underline used on list items / service links */
.hover-line { height: 1px; position: absolute; inset: auto 0 -1px; overflow: hidden; }
.hover-line-fill {
  background-color: #a3acc2;
  width: 100%; height: 100%;
  transform: translateX(-101%);
  transition: transform .4s ease;
}
a:hover .hover-line-fill { transform: translateX(0); }

.underline-link {
  color: var(--body-display);
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--pinstripe);
  padding-bottom: 6px;
  font-size: 9px;
  text-decoration: none;
  position: relative;
  justify-self: start;
}

/* full-bleed background helpers */
.background-wrapper { padding: 20px; position: absolute; inset: 0; }
.background { background-position: 50% 35%; background-size: cover; position: absolute; inset: 0; }
.background.about-background {
  background-image: url("https://cdn.prod.website-files.com/63885f01505c55bb604e6d32/6405ecfa4aff8b323b4e975f_galerie09.jpg");
  background-position: 50% 0;
}
.background.testimonial-background {
  background-image: url("https://cdn.prod.website-files.com/63885f01505c55bb604e6d32/638880f92f1f345e298fef0c_20220117-alcina-produktabbildung-nail-colour-group-lavendel-abrieb-min.png");
  background-position: 50% 0;
}
.overlay { background-color: #0a101d4d; position: absolute; inset: 0; }
.overlay.light { background-color: transparent; }
.overlay.dark { background-color: #292b4e26; }

/* ---------- navbar ---------- */

.navbar {
  z-index: 1000;
  background-color: transparent;
  justify-content: center;
  height: 80px;
  display: flex;
  position: fixed;
  inset: 0 0 auto;
}

.navigation-wrapper {
  z-index: 10;
  display: grid;
  position: relative;
  width: 100%;
  height: 100%;
  grid-template-rows: 1fr;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1400px) minmax(5vw, 1fr);
}

.navigation-content {
  z-index: 10;
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
  justify-content: space-between;
  width: 96%;
  display: flex;
  position: relative;
}

/* white card behind the nav content; fades out once the page is scrolled */
.nav-cover {
  grid-area: 1 / 2 / 2 / 3;
  background-color: #fff;
  height: 100%;
  box-shadow: 0 12px 36px -8px #3e41741a;
  transition: opacity .4s ease;
}
.navbar.scrolled .nav-cover { opacity: 0; }

.brand {
  color: #000;
  letter-spacing: -.03em;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1em;
  display: flex;
  text-decoration: none;
}

.nav-menu {
  justify-content: center;
  max-width: 400px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
}

.menu-items { justify-content: center; display: flex; }

.nav-link {
  color: #222;
  letter-spacing: 3px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  font-size: 12px;
  display: flex;
  text-decoration: none;
}
.nav-link.current { color: #000; }

.nav-right {
  z-index: 10;
  display: grid;
  grid-auto-flow: column;
  column-gap: 24px;
  align-items: center;
  position: relative;
}

.nav-button { color: #fff; background-color: #000; padding: 12px 32px; }

.menu-button { display: none; cursor: pointer; }
.menu-icon-wrapper { justify-content: center; align-items: center; height: 100%; display: flex; }
.menu-icon { width: 28px; }

/* ---------- hero ---------- */

.home-hero {
  justify-content: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-slide { grid-column: 1 / 4; position: relative; min-height: 100vh; }

.slide-hero-background {
  background-image: url("https://cdn.prod.website-files.com/63885f01505c55bb604e6d32/63887fad719ea6d4fb7957d8_220513-alcina-modell-aktion-classic.cosy.chic.-%200136.jpg");
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.slide-content {
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  min-height: 100vh;
  padding-bottom: 160px;
  display: flex;
  position: relative;
}

.hero-top { color: #fff; text-align: center; margin: 0 auto; padding-bottom: 24px; }

.hero-intro { display: grid; row-gap: 36px; max-width: 650px; }

.xxl-heading { font-size: 32px; font-weight: 600; line-height: 1.2em; margin: 0; }

.button_hero_wrap { justify-content: center; display: flex; }
.text-block { margin-bottom: 20px; }

/* ---------- services ---------- */

.services-wrapper {
  display: grid;
  row-gap: 16px;
  background-color: #fff;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 70px;
  margin-top: -80px;
}

.service-link {
  color: #000;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  text-decoration: none;
  display: flex;
  position: relative;
}

.service-link-top {
  z-index: 10;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 80px;
  padding: 0 36px;
  display: flex;
  position: relative;
}

.service-link-name {
  border-bottom: 1px solid var(--pinstripe);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.service-bottom {
  display: grid;
  row-gap: 60px;
  border-right: 1px solid var(--pinstripe);
  text-align: left;
  align-content: space-between;
  width: 100%;
  padding: 40px 36px 36px;
}
.service-link:last-child .service-bottom { border-right: none; }

.service-icon {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  display: flex;
}
.service-icon img { object-fit: contain; max-height: 200px; }
.service-icon .contain-80 { width: 80%; }

.service-description { display: grid; row-gap: 24px; }

.services_wrap {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  justify-items: start;
}
.services_wrap.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.services_wrap .span-2 { grid-column: span 2; }

/* ---------- welcome (dual) section ---------- */

.dual-wrapper {
  display: grid;
  column-gap: 120px;
  row-gap: 36px;
  grid-template-columns: 1fr 1fr;
}

.full-stacked-intro { display: grid; row-gap: 36px; padding-bottom: 140px; align-self: center; justify-self: start; }

.medium-stacked-intro { display: grid; row-gap: 36px; max-width: 475px; }
.medium-stacked-intro > .solid-button { justify-self: start; }

.stacked-heading { display: grid; row-gap: 18px; }

.intro-cta { justify-content: space-between; align-items: center; display: flex; }

.about-image { position: relative; overflow: hidden; min-height: auto; }

/* ---------- testimonials ---------- */

.slider-section { z-index: 5; position: relative; overflow: hidden; }

.slider-grid-wrapper {
  display: grid;
  row-gap: 16px;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1400px) minmax(5vw, 1fr);
  overflow: hidden;
}

.featured-work-slider {
  z-index: 25;
  grid-area: 1 / 1 / 2 / 4;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 240px;
  padding-bottom: 320px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.centered-line {
  background-color: #ffffff17;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 2px;
  display: flex;
}

.projects-mask { z-index: 25; width: 100%; max-width: 600px; position: relative; overflow: hidden; }

.slider-track { display: flex; transition: transform .6s ease; }

.testimonial-slide { z-index: 20; flex: 0 0 100%; position: relative; }

.testimonial-slide-content {
  z-index: 25;
  display: grid;
  row-gap: 36px;
  color: #fff;
  text-align: center;
  padding-top: 36px;
  position: relative;
}

.testimonial-text { color: #fff; font-size: 32px; font-weight: 500; line-height: 1.3em; }

.client { display: grid; grid-template-columns: auto auto; column-gap: 18px; justify-self: center; }

.client-avatar {
  border: 1px solid #fff3;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  padding: 6px;
  position: relative;
}

.avatar {
  background-image: url("https://cdn.prod.website-files.com/63885f01505c55bb604e6d32/638863bc23abc479f768ef2b_ravi-patel-VMGAbeeJTKo-unsplash.jpg");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  width: 100%;
  height: 100%;
}
.avatar.avatar-002 {
  background-image: url("https://cdn.prod.website-files.com/63885f01505c55bb604e6d32/63885f01505c5521344e6d8f_Portrait004.jpg");
  background-position: 50% 30%;
}
.avatar.avatar-003 {
  background-image: url("https://cdn.prod.website-files.com/63885f01505c55bb604e6d32/63885f01505c55cb314e6d8c_Portrait015.jpeg");
  background-position: 50% 30%;
}
.avatar.avatar-004 {
  background-image: url("https://cdn.prod.website-files.com/63885f01505c55bb604e6d32/63885f01505c558e5d4e6d8d_Portrait019.jpeg");
  background-position: 50% 10%;
}

.testimonial-name { display: grid; row-gap: 4px; text-align: left; align-self: center; }

.projects-arrow {
  z-index: 15;
  justify-content: flex-end;
  align-items: flex-end;
  width: 50%;
  min-height: 100vh;
  margin: auto 0;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
}
.projects-arrow.left { left: 0; right: auto; }

.hover-slider-arrow {
  border: 1px solid #fff3;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 10vw;
  max-width: 120px;
  height: 10vw;
  max-height: 120px;
  display: flex;
}

.slider-arrow-icon { opacity: .3; width: 18px; transition: opacity .3s; }
.projects-arrow:hover .slider-arrow-icon { opacity: .8; }

.slide-nav { z-index: 30; display: flex; gap: 6px; justify-content: center; position: absolute; bottom: 0; left: 0; right: 0; height: 40px; padding-top: 10px; }
.slide-nav button {
  width: 10px; height: 10px;
  border-radius: 100%;
  border: 0;
  padding: 0;
  background-color: #ffffff66;
  cursor: pointer;
}
.slide-nav button.active { background-color: #fff; }

.slider-bottom { z-index: 25; grid-column: 2; align-self: end; justify-self: start; padding-bottom: 80px; position: relative; }

.hero-bottom { display: grid; grid-template-columns: auto 1fr; position: relative; }

.scroll-wrapper {
  z-index: 25;
  display: grid;
  row-gap: 30px;
  color: #fff;
  grid-template-rows: auto 1fr;
  justify-items: center;
  width: 1px;
  padding-top: 12px;
  position: relative;
}

.rotate-text {
  letter-spacing: 3px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  height: 12px;
  font-size: 9px;
  display: flex;
  transform: rotate(90deg);
}

.scroll-line { background-color: #fff3; width: 1px; }

.about-hero-bottom { min-height: 140px; position: relative; }

/* ---------- angebote (jobs / chair) ---------- */

.projects {
  z-index: 10;
  display: grid;
  column-gap: 16px;
  row-gap: 48px;
  background-color: #fff;
  grid-template-columns: 1fr 1fr;
  align-content: space-between;
  margin-top: -80px;
  position: relative;
}

.project-card { display: grid; row-gap: 16px; align-content: start; }
.project-card > .solid-button { justify-self: start; }

.project-image { justify-content: center; align-items: center; display: flex; }
.project-image img { width: 100%; padding: 0 20px; }

.heading { text-align: left; padding-top: 10px; padding-left: 20px; }
.paragraph { margin-top: 20px; padding-left: 20px; padding-right: 140px; }

.light-fill {
  grid-area: 1 / 3 / 2 / 4;
  background-color: var(--light-goldenrod-yellow);
  width: 100%;
  margin-top: -80px;
}

/* ---------- geschichte (history) ---------- */

.half-wrapper {
  display: grid;
  column-gap: 80px;
  row-gap: 16px;
  grid-template-columns: auto 1px 1fr;
}

.sticky-intro { display: grid; row-gap: 36px; position: sticky; top: 118px; align-self: start; }

.intro-image { width: 100%; }

.list-wrapper { display: grid; row-gap: 24px; }

.list-item {
  display: grid;
  column-gap: 36px;
  row-gap: 18px;
  border-bottom: 1px solid var(--pinstripe);
  color: #000;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  min-height: 100px;
  text-decoration: none;
  position: relative;
}
.list-item .subtitle { grid-column: span 2; }
.list-item h3 { font-size: 20px; }

/* ---------- footer ---------- */

.footer-wrapper {
  display: grid;
  row-gap: 180px;
  padding-top: 200px;
  padding-bottom: 24px;
}

.footer-content {
  display: grid;
  column-gap: 80px;
  row-gap: 16px;
  grid-template-columns: auto 1px 1fr 1fr;
  align-items: start;
  align-content: start;
}

.footer-brand { display: grid; row-gap: 36px; max-width: 300px; }
.footer-brand-wrapper { display: grid; row-gap: 18px; }

.footer-locations { grid-column: span 2; }

.footer-box {
  display: grid;
  border: 1px solid var(--pinstripe);
  color: #000;
  text-align: center;
  min-height: 300px;
  padding: 18px 0 0;
}

.footer-box-top { display: grid; row-gap: 24px; justify-content: center; align-items: center; }
.footer-box-title { display: grid; row-gap: 9px; }
.footer-box-title h3 { text-align: left; }
.footer-box a { color: #333; text-decoration: none; }

.paragraph-2 { text-align: left; font-size: 16px; }

.map { width: 100%; height: 400px; border: 0; display: block; }

.footer-credits {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--pinstripe);
  grid-template-columns: 1fr 1fr;
  padding-top: 24px;
}
.footer-credits .subtitle { align-self: center; }

.legal-link-wrapper { display: grid; grid-auto-flow: column; column-gap: 24px; justify-self: end; }

.legal-link {
  color: var(--body-display);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 9px;
  text-decoration: none;
}

/* ---------- legal pages (Impressum / Datenschutz) ---------- */

.legal-section { padding: 140px 0; }

.legal-content { margin: 0 5vw; }
.legal-content h1 { margin-bottom: 60px; font-weight: 600; }
.legal-content h3 { margin-bottom: 10px; font-weight: 600; }
.legal-content p { margin-bottom: 60px; }

/* ---------- large screens ---------- */

@media screen and (min-width: 1280px) {
  .section.no-padding.grey, .section.grey { background-color: transparent; }
  .half-wrapper { column-gap: 100px; }
  .list-item { column-gap: 60px; }
  .service-link-top { padding: 0 48px; }
  .service-bottom { padding: 40px 48px 48px; }
}

@media screen and (min-width: 1440px) {
  .half-wrapper { column-gap: 120px; }
  .list-item { column-gap: 80px; }
  .paragraph { height: 150px; }
}

@media screen and (min-width: 1920px) {
  .dual-wrapper { grid-template-columns: auto .75fr; }
  .medium-stacked-intro { min-width: 475px; }
  .list-item { min-height: 80px; }
  .paragraph { height: 5rem; }
  .legal-content { margin: 0 25vw; }
  .service-icon img { width: 100%; max-height: 200px; height: auto; }
}

/* ---------- tablet (<= 991) ---------- */

@media screen and (max-width: 991px) {
  h1 { font-size: 38px; }

  .section { padding: 80px 0; }

  .navigation-content { padding: 0 12px; }

  .menu-button { justify-content: center; align-items: center; height: 100%; padding: 19px 0; display: flex; }
  .menu-icon-wrapper {
    border-left: 1px solid var(--pinstripe);
    padding-left: 24px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0 5vw;
  }
  .nav-menu.open { display: block; }
  .menu-items { flex-direction: column; box-shadow: 0 18px 36px -8px var(--shadow); }
  .nav-link {
    border-top: 1px solid var(--pinstripe);
    background-color: #fff;
    min-height: 60px;
  }

  .hero-top { padding-top: 50vh; }

  .services-wrapper {
    gap: 24px;
    background-color: transparent;
    grid-template-columns: 1fr 1fr;
  }
  .service-link { background-color: #fff; }
  .service-bottom { padding-top: 48px; }
  .service-icon { justify-content: center; }

  .dual-wrapper { row-gap: 60px; grid-template-columns: 1fr; }
  .dual-wrapper .about-image { order: -1; }

  .half-wrapper { row-gap: 40px; grid-template-columns: 1fr; }
  .sticky-intro { position: relative; top: 0; }
  .verticle-line { width: 100%; height: 1px; }

  .projects { grid-template-columns: 1fr; }
  .paragraph { padding-right: 60px; }

  .featured-work-slider { padding-top: 180px; padding-bottom: 280px; }
  .projects-arrow {
    width: 60px;
    height: 60px;
    min-height: auto;
    top: auto;
    bottom: 136px;
    left: 80px;
    right: 0;
    margin: 0 auto;
  }
  .projects-arrow.left { left: 0; right: 80px; }
  .hover-slider-arrow { width: 100%; height: 100%; }

  .footer-content { gap: 60px; grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-locations { grid-column: span 2; }
  .footer-wrapper { row-gap: 100px; padding-top: 100px; }
}

/* ---------- mobile landscape (<= 767) ---------- */

@media screen and (max-width: 767px) {
  h1 { font-size: 36px; }

  .section { padding: 60px 0; }

  .nav-right { column-gap: 18px; }
  .nav-link { min-height: 54px; padding-top: 18px; padding-bottom: 18px; }

  .services-wrapper { grid-template-columns: 1fr; }

  .list-item { grid-template-columns: 1fr; padding: 36px 0; }
  .list-item .subtitle { grid-column: span 1; }

  .half-wrapper { row-gap: 24px; }

  .featured-work-slider { padding-top: 140px; padding-bottom: 260px; }
  .testimonial-slide-content { padding: 36px 24px 0; }
  .testimonial-text { font-size: 28px; }

  .hero-intro { padding: 0 40px; }

  .footer-content { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-locations { grid-column: span 1; }
  .footer-box-top { justify-content: start; justify-items: start; padding: 0 18px; }
  .footer-wrapper { row-gap: 60px; padding-top: 60px; }
  .footer-credits { grid-template-columns: 1fr; }
  .footer-credits .subtitle, .legal-link-wrapper { justify-self: center; }

  .about-image { min-height: 350px; }
  .about-hero-bottom { min-height: 100px; }

}

/* ---------- mobile (<= 479) ---------- */

@media screen and (max-width: 479px) {
  h1 { font-size: 32px; }

  .home-hero { min-height: 93vh; }
  .hero-slide { min-height: 93vh; }
  .slide-content { min-height: 93vh; padding-top: 124px; padding-bottom: 260px; align-items: end; }
  .hero-top { margin-top: 40vh; padding: 0; }
  .hero-intro { row-gap: 24px; padding: 0; }
  .xxl-heading { font-size: 16px; }
  .button_hero_wrap { flex-flow: column; }
  .outline-button.light { padding-left: 10px; padding-right: 10px; }

  .nav-button { display: none; }
  .menu-icon-wrapper { padding-left: 18px; }
  .button-text { font-size: 10px; }

  .services-wrapper { gap: 0; grid-template-columns: minmax(0, auto); margin-top: 0; }
  .service-bottom { justify-items: center; align-content: center; }
  .service-icon img { object-fit: contain; width: 100%; }

  .body-display.small { font-size: 10px; }
  .dual-wrapper { row-gap: 48px; }
  .medium-stacked-intro { row-gap: 24px; }

  .list-item { padding: 10px 0; }

  .featured-work-slider { padding-bottom: 236px; }
  .testimonial-slide-content { padding-left: 18px; padding-right: 18px; }
  .testimonial-text { font-size: 26px; }

  .paragraph { padding-right: 20px; font-size: 14px; }

  .about-image { min-height: 250px; }
}
