/* ============================================================
   Herrmann GaLaBau – herrmann-galabau.de
   Statischer Nachbau der Webflow-Seite (Stand Juli 2026)
   ============================================================ */

/* ---------- Fonts (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/raleway-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/raleway-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/raleway-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/raleway-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/raleway-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/raleway-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/titillium-web-700.woff2') format('woff2');
}

/* ---------- Farbpalette ---------- */
:root {
  --blue: #134f8a;            /* Überschriften, Buttons, dunkle Flächen */
  --text: #244030cc;          /* Fließtext (dunkelgrün, 80 %) */
  --green: #729b58;           /* Rahmen, Akzente */
  --accent: #bbd142;          /* Hover, Highlights */
  --accent-bright: #e2ff41;   /* Eyebrow auf dunklem Grund */
  --bg: #f8faf1;              /* Seitenhintergrund */
  --white: #fff;
  --card-shadow: 4px 4px 10px 3px #24403014;
}

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

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--blue);
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 170%;
  font-variant-numeric: lining-nums;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin-top: 0;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
}
h1 { margin-bottom: 25px; font-size: 50px; line-height: 100%; }
h2 { margin-bottom: 25px; font-size: 32px; line-height: 100%; }
h3 { margin-bottom: 23px; font-size: 24px; line-height: 105%; }
h4 { margin-bottom: 21px; font-size: 30px; line-height: 110%; }

p { margin-top: 0; color: var(--text); margin-bottom: 25px; }

a { color: var(--green); font-weight: 600; text-decoration: underline; }

ul { margin-top: 0; margin-bottom: 28px; padding-left: 40px; }
li { color: var(--text); }

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

label { display: block; text-align: left; margin-bottom: 5px; font-weight: 700; }

/* Überschriften-Größen (wie Webflow .heading.hX) */
.heading-h1 { color: var(--blue); font-size: 58px; }
.heading-h2 { font-size: 42px; }
.heading-h3 { font-size: 36px; }
.heading-h5 { font-size: 24px; }
.centered { text-align: center; }
.white { color: var(--white); }
.text-accent { color: var(--accent); }

/* ---------- Layout-Grundlagen ---------- */
.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 50px 50px;
  position: relative;
}
.section.cta { padding-top: 50px; padding-bottom: 100px; }
.section.no-padding-top { padding-top: 0; }
.section.contact { padding-top: 200px; }
.section.kontakt { padding-bottom: 100px; }
/* Ersatz für die leere (ausgeblendete) Prozess-Sektion des Originals –
   erhält den vertikalen Abstand zwischen Projekten und CTA */
.section.spacer-only { padding-bottom: 50px; }

.content {
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.spacer-24 { height: 24px; }
.spacer-32 { height: 32px; }

/* Deko-Formen im Hintergrund */
.shape {
  z-index: 0;
  opacity: .15;
  width: 40vw;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.shape.pos-01 { width: 35vw; }
.shape.pos-02 { width: 35vw; top: auto; left: auto; right: 0; bottom: -50%; }
.shape.pos-03 { width: 35vw; top: auto; left: auto; right: 0; bottom: 0; }
.shape.pos-05 { width: 30vw; }
.shape.pos-06 { width: 40vw; top: auto; left: auto; right: 0; bottom: 0; }
.shape.pos-07 { width: 30vw; left: auto; right: 0; }

/* ---------- Navigation ---------- */
.navbar {
  z-index: 1000;
  background-color: var(--white);
  border-radius: 15px;
  max-width: 1214px;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: 28px;
  left: 28px;
  right: 28px;
  box-shadow: 5px 7px 14px 3px #10221633;
}
.nav-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.nav { display: flex; justify-content: center; align-items: center; }
.brand { display: flex; align-items: center; margin: 0 18px; padding: 10px 0; }
.logo { height: 60px; border-radius: 0; }
.nav-menu { display: flex; align-items: center; }
.nav-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 27px 20px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 130%;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
}
.nav-link:hover, .nav-link.current { color: var(--accent); }
.nav-button {
  display: flex;
  align-self: center;
  border: 3px solid var(--blue);
  background-color: var(--blue);
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 13px;
  margin: 0 18px;
  padding: 12px 27px;
  font-size: 15px;
  font-weight: 800;
  line-height: 100%;
  text-decoration: none;
  transition: border-color .2s, background-color .2s, color .2s;
}
.nav-button:hover {
  border-color: var(--accent);
  background-color: var(--accent);
  color: var(--white);
}
.menu-button {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--blue);
  padding: 12px 16px;
}
.menu-button svg { width: 32px; height: 32px; display: block; }

/* ---------- Hero (Startseite) ---------- */
.section-hero {
  background-image: linear-gradient(#0006, #0006), url('../img/hero.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  position: relative;
}
.block-home-hero {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 70px 50px 0;
  position: relative;
}
.hero { width: 100%; max-width: 1200px; }
.text-subtitle {
  max-width: 730px;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
}
.text-subtitle.green { color: var(--green); font-weight: 400; }
.text-subtitle.green.centered { max-width: none; color: var(--accent-bright); text-align: center; }
.heading-hero {
  max-width: 800px;
  color: var(--white);
  margin-bottom: 50px;
  font-size: 70px;
  line-height: 100%;
}
.hero-bottom-feature {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}
.hero-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1200px;
}
.scroll-indicator-block { height: 110px; display: flex; align-items: flex-end; padding-bottom: 20px; }
.scroll-indicator {
  background-color: #fff3;
  width: 2px;
  height: 80%;
  overflow: hidden;
}
.indicator-fill {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  animation: indicator-loop 2.4s cubic-bezier(.645, .045, .355, 1) infinite;
}
@keyframes indicator-loop {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ---------- Buttons ---------- */
.primary-button {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--accent);
  background-color: transparent;
  color: var(--white);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 10px;
  width: 200px;
  padding: 15px 30px;
  font-weight: 800;
  line-height: 100%;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  position: relative;
}
.primary-button:hover { background-color: var(--accent); color: var(--white); }
.tertiary-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--blue);
  background-color: var(--blue);
  width: 195px;
  color: var(--white);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-family: inherit;
  font-weight: 800;
  line-height: 100%;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s, color .2s, background-color .2s;
}
.tertiary-button:hover {
  border-color: var(--accent);
  background-color: var(--accent);
  color: var(--white);
}
.button-block { display: flex; justify-content: center; align-items: center; }

/* ---------- Angebot / Service-Karten ---------- */
.heading-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.paragraph { max-width: 470px; margin-bottom: 36px; }
.paragraph.no-margin { margin-bottom: 0; }
.paragraph.white { color: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  padding-top: 50px;
}
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  border: 1px solid var(--green);
  background-color: var(--white);
  color: var(--blue);
  border-radius: 20px;
  padding: 15% 10%;
  text-decoration: none;
  font-weight: 400;
  box-shadow: var(--card-shadow);
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-card .icon { width: 55px; height: 55px; }
.service-card h3 { font-size: 24px; }
.service-card .paragraph { margin-bottom: 36px; }
.read-text-block { display: flex; align-items: center; }
.read-text { padding-right: 5px; }
.service-arrow { width: 15px; height: 15px; transition: transform .3s ease; }
.service-card:hover .service-arrow { transform: translateX(5px); }

/* ---------- Über uns / Kontakt oben (2-Spalten) ---------- */
.two-column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 48px;
  align-items: center;
  width: 100%;
  position: relative;
}
.text-box { max-width: 800px; }
.text-box.about {
  border: 1px solid var(--green);
  background-color: var(--white);
  border-radius: 20px;
  padding: 50px;
}
.text-box.legal {
  border: 1px solid var(--green);
  background-color: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: none;
  margin-bottom: 50px;
  padding: 30px;
}
.block-image {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.block-image .image,
.project-image .image {
  z-index: 5;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* ---------- Projekte ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr .75fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  position: relative;
}
.project-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-top: 20px;
}
.project-image {
  border-radius: 20px;
  min-height: 370px;
  position: relative;
  overflow: hidden;
}
.project-image.top { top: -20px; }
.projects-sticky-card {
  z-index: 30;
  border: 1px solid var(--green);
  background-color: var(--white);
  border-radius: 20px;
  margin-left: 5%;
  padding: 50px;
  position: sticky;
  top: 140px;
  align-self: start;
}
.project-content { display: flex; flex-direction: column; position: relative; z-index: 2; }
.project-content .tertiary-button { margin-top: 0; }

/* ---------- CTA ---------- */
.cta-block {
  display: flex;
  justify-content: center;
  background-color: var(--blue);
  border-radius: 20px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cta-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10%;
  position: relative;
  z-index: 1;
}
.heading-cta { color: var(--white); text-align: center; }

/* ---------- Footer ---------- */
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1.5px solid var(--green);
  background-color: var(--white);
  padding-left: 50px;
  padding-right: 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
  width: 100%;
  padding-top: 70px;
  padding-bottom: 70px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.logo-footer { height: 60px; margin-top: 14px; border-radius: 0; }
.footer-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 18px;
  padding-bottom: 11px;
  font-weight: 800;
}
.legal-links { display: flex; flex-direction: column; }
.footer-link {
  color: #244030b3;
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
  text-decoration: none;
  transition: color .2s;
}
.footer-link:hover { color: var(--accent); }
.paragraph .footer-link { font-size: inherit; line-height: inherit; font-weight: inherit; color: inherit; }
.paragraph .footer-link:hover { color: var(--accent); }

/* ---------- Popup („in Vorbereitung") ---------- */
.popup-wrapper {
  z-index: 900;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #134f8acc;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
}
.popup-wrapper.open { display: flex; }
.popup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bg);
  border-radius: 18px;
  width: 400px;
  min-height: 300px;
  padding: 40px;
  position: relative;
}
.popup-headline, .text-popup { text-align: center; margin-bottom: 24px; }
.text-popup { color: var(--text); }
.close-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -16px;
  margin-right: -16px;
  background-color: var(--blue);
  color: var(--white);
  border: 0;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
  transition: background-color .2s;
}
.close-wrapper:hover { background-color: var(--accent); }
.close-wrapper svg { width: 100%; height: 100%; display: block; }

/* ---------- Formular (Kontakt) ---------- */
.form-block { display: flex; flex-direction: column; justify-content: center; width: 100%; }
.field-block { display: flex; flex-direction: column; flex: 1; margin-bottom: 8px; }
.text-input {
  border: 1px solid var(--green);
  color: var(--text);
  background-color: var(--white);
  border-radius: 10px;
  width: 100%;
  padding: 24px 16px;
  font-size: 15px;
  font-family: inherit;
  box-shadow: 0 0 10px #00000003;
}
.text-input:focus { border-color: var(--accent); outline: none; }
.text-input::placeholder { color: #2440304d; }
textarea.text-input { min-height: 120px; padding-top: 16px; padding-bottom: 16px; line-height: 1.4em; resize: vertical; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
}
.checkbox-label input { margin-top: 6px; accent-color: var(--green); }
.form-success {
  border: 1px solid var(--green);
  color: var(--text);
  background-color: #729b5833;
  border-radius: 10px;
  padding: 32px;
  font-size: 16px;
  line-height: 1.4em;
  display: none;
}
.form-error {
  color: #444;
  background-color: #ecd4d4;
  border-radius: 6px;
  padding: 16px;
  margin-top: 12px;
  display: none;
}
.form-success.show, .form-error.show { display: block; }

/* ---------- Kontakt-Info-Karten ---------- */
.contact-info-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--green);
  background-color: var(--blue);
  border-radius: 20px;
  padding: 40px 10%;
  box-shadow: var(--card-shadow);
}
.contact-info .icon { width: 55px; height: 55px; }
.contact-detail {
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

/* ---------- Unterseiten-Hero (Impressum/Datenschutz) ---------- */
.block-hero {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 70px 50px 0;
  position: relative;
}

/* ---------- Scroll-Reveal-Animationen ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(55px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  .reveal-media .image {
    opacity: 0;
    transform: scale(1.3);
    transition: opacity .9s ease, transform 1.1s cubic-bezier(.23, 1, .32, 1);
  }
  .reveal-media.is-visible .image { opacity: 1; transform: scale(1); }
  /* Staffelung für Kartenreihen */
  .stagger > *:nth-child(2) .reveal, .stagger > .reveal:nth-child(2) { transition-delay: .1s; }
  .stagger > *:nth-child(3) .reveal, .stagger > .reveal:nth-child(3) { transition-delay: .2s; }
  .stagger > *:nth-child(4) .reveal, .stagger > .reveal:nth-child(4) { transition-delay: .3s; }
  .reveal-delay-1 { transition-delay: .15s; }
  .reveal-delay-2 { transition-delay: .3s; }
}

/* ============================================================
   Breakpoints (wie Webflow: 991 / 767 / 479)
   ============================================================ */
@media (max-width: 991px) {
  .navbar { border-radius: 15px; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: var(--white);
    border-radius: 15px;
    margin-top: 8px;
    box-shadow: 6px 7px 13px 2px #24403033;
    overflow: hidden;
  }
  .nav-menu.open { display: flex; }
  .nav-link { background-color: var(--white); padding: 20px; }
  .nav-button {
    margin: 0;
    border-color: var(--white);
    background-color: var(--white);
    color: var(--blue);
    border-radius: 0 0 12px 12px;
    padding: 27px;
    justify-content: center;
  }
  .nav-button:hover { background-color: var(--white); color: var(--accent); border-color: var(--white); }
  .menu-button { display: block; }

  .block-home-hero { padding: 90px 30px 0; }
  .heading-hero { font-size: 60px; }
  .text-subtitle { font-size: 14px; }
  .hero-bottom-feature { padding-left: 30px; padding-right: 30px; }

  .section { padding: 70px 30px 0; }
  .section.cta { padding-left: 30px; padding-right: 30px; }
  .section.contact { padding-top: 150px; }
  .section.spacer-only { padding-bottom: 0; }
  .content { overflow: hidden; }

  .heading-h1 { font-size: 54px; }
  .heading-h2 { font-size: 39px; }
  .heading-h3 { font-size: 33px; }
  .heading-h5 { font-size: 22px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .block-image { min-height: 370px; }
  .projects-grid { grid-template-columns: 1fr; }
  .projects-sticky-card { width: 100%; margin-left: 0; position: static; }
  .footer-section { padding-left: 30px; padding-right: 30px; }
  .shape.pos-01, .shape.pos-02, .shape.pos-05, .shape.pos-06 { width: 50vw; }
  .text-box.legal { margin-bottom: 30px; }
  .contact-info-block { grid-template-columns: 1fr 1fr; padding-top: 30px; }
  .contact-detail { font-size: 14px; }
}

@media (max-width: 767px) {
  .heading-hero { font-size: 42px; }
  .section { padding-top: 50px; }
  .section.cta { padding-bottom: 50px; }
  .service-card:hover { transform: none; }
  .heading-block { grid-template-columns: 1fr; grid-row-gap: 0; }
  .projects-sticky-card { padding: 30px; }
  .project-cards { margin-top: 40px; }
  .project-image { min-height: 300px; }
  .service-card .icon { width: 40px; height: 40px; }
  .two-column-grid { grid-template-columns: 1fr; grid-column-gap: 30px; grid-row-gap: 30px; }
  .heading-h1 { font-size: 48px; }
  .heading-h2 { font-size: 36px; }
  .heading-h3 { font-size: 30px; }
  .shape.pos-02 { width: 60vw; bottom: 20%; }
  .contact-info-block { grid-template-columns: 1fr; }
  .contact-info:hover { transform: none; }
  .contact-detail { font-size: 12px; }
  .spacer-32 { height: 32px; }
}

@media (max-width: 479px) {
  .logo { height: 52px; }
  .logo-footer { height: 60px; margin-bottom: 14px; }
  .section-hero {
    background-image: url('../img/hero.jpg');
    background-position: 58%;
    min-height: 100svh;
  }
  .block-home-hero { padding-left: 0; padding-right: 0; align-items: flex-start; padding-left: 20px; padding-right: 20px; }
  .primary-button { width: auto; }
  .tertiary-button { width: auto; margin-top: 30px; }
  .hero-bottom-feature { padding-left: 20px; padding-right: 20px; }
  .hero-column-grid { grid-template-columns: 1fr; }
  .section { padding-bottom: 0; }
  .section.cta { padding-top: 50px; padding-bottom: 50px; }
  .section.contact { padding-top: 150px; }
  .section.kontakt { padding-bottom: 50px; }
  .service-card { box-shadow: none; padding-top: 10%; padding-bottom: 10%; }
  .services-grid { grid-template-columns: 1fr; }
  .block-image { min-height: 250px; }
  .projects-sticky-card { padding: 10%; }
  .project-cards { grid-template-columns: 1fr; }
  .project-image.top { top: 0; }
  .cta-text { padding-top: 20%; padding-bottom: 20%; }
  .footer-grid { grid-template-columns: 1fr; padding-top: 50px; padding-bottom: 50px; }
  .shape.pos-01 { width: 80vw; }
  .shape.pos-02 { width: 70vw; }
  .shape.pos-05 { width: 100vw; }
  .shape.pos-06 { display: none; }
  .heading-h1 { font-size: 40px; }
  .heading-h2 { font-size: 34px; }
  .heading-h3 { font-size: 28px; }
  .heading-h5 { font-size: 20px; }
  .contact-info { box-shadow: none; padding-top: 10%; padding-bottom: 10%; }
  .popup-wrapper { padding-left: 20px; padding-right: 20px; }
  .popup { width: auto; min-height: 0; padding-top: 40px; padding-bottom: 40px; }
}
