:root {
  --fb-primary: #004ea1;
  --fb-primary-hover: #157ae5;
  --fb-accent: #565bd7;
  --fb-navy: #020d26;
  --fb-heading: #06163a;
  --fb-body: #3f485d;
  --fb-surface: #eaeff3;
  --fb-border: #cbdce9;
  --fb-white: #ffffff;
  --fb-gradient: linear-gradient(90deg, rgba(0, 78, 161, 1) 50%, rgba(86, 91, 215, 1) 100%);
  --fb-gradient-rev: linear-gradient(90deg, #565bd7 0%, #004ea1 100%);
  --fb-toolbar-h: 40px;
  --fb-header-h: 82px;
  --fb-font: "Open Sans", sans-serif;
  --fb-radius: 50px 0;
  --fb-radius-btn: 30px 0;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: var(--fb-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fb-body);
  background: var(--fb-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--fb-primary); text-decoration: none; }
a:hover { color: var(--fb-primary-hover); }
h1, h2, h3 { color: var(--fb-heading); font-weight: 300; line-height: 1.2; }
strong { font-weight: 600; }

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.site-container {
  width: min(1320px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ===== Toolbar ===== */
.site-toolbar {
  position: fixed; inset: 0 0 auto; z-index: 1001;
  height: var(--fb-toolbar-h);
  background: var(--fb-gradient);
  color: #e7e7e7;
  font-size: 13px;
}
.toolbar-inner {
  display: flex; align-items: center; gap: 1.75rem;
  height: 100%; padding-left: 340px;
}
.toolbar-item { color: #e7e7e7; white-space: nowrap; }
.toolbar-item:hover { color: #fff; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: var(--fb-toolbar-h); left: 0; right: 0; z-index: 1000;
  height: var(--fb-header-h);
  background: var(--fb-white);
  box-shadow: 4px 4px 4px #00000030;
  overflow: visible;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 1rem;
  position: relative;
  overflow: visible;
}
.site-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 164px;
  min-height: 60px;
  z-index: 1002;
}
.site-logo .logo-main {
  height: 60px;
  width: auto;
  opacity: 0;
  transition: opacity .3s ease;
  position: relative;
  z-index: 1;
}
.logo-first-link {
  position: absolute;
  top: -40px;
  left: -20px;
  width: 325px;
  z-index: 1000;
  transition: all .3s ease;
  line-height: 0;
}
.logo-first-link img {
  width: 325px;
  height: auto;
  max-width: none;
  display: block;
}
body.is-scrolled .logo-first-link {
  opacity: 0;
  top: -90px;
  pointer-events: none;
}
body.is-scrolled .site-logo .logo-main { opacity: 1; }

.primary-menu {
  display: flex; align-items: center; gap: .15rem;
  list-style: none; margin: 0; padding: 0;
}
.primary-menu > li { position: relative; }
.primary-menu > li > a {
  display: flex; align-items: center; padding: .75rem 1rem;
  color: var(--fb-navy); font-weight: 500; font-size: 15px;
}
.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current_page_item > a,
.primary-menu > li.current-menu-ancestor > a { color: var(--fb-primary-hover); }

.primary-menu .sub-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 260px;
  margin: 0; padding: .5rem 0; list-style: none;
  background: #fff; box-shadow: 0 8px 24px rgba(2,13,38,.12);
  border: 1px solid var(--fb-border); z-index: 20;
}
.primary-menu > li:hover > .sub-menu,
.primary-menu > li:focus-within > .sub-menu { display: block; }
.primary-menu .sub-menu a {
  display: block; padding: .65rem 1rem; color: var(--fb-body); font-size: 14px;
}
.primary-menu .sub-menu a:hover { background: var(--fb-surface); color: var(--fb-primary); }

.nav-toggle {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: none; border: 0; padding: .5rem; cursor: pointer;
  color: var(--fb-navy); font-weight: 500; font-size: 15px;
}
.nav-toggle-bars {
  display: flex; flex-direction: column; gap: 5px;
}
.nav-toggle-bar { display: block; width: 20px; height: 2px; background: currentColor; }
.nav-toggle-label { margin-left: 2px; }

.site-wrapper { overflow: visible; }
.site-main { padding-top: calc(var(--fb-toolbar-h) + var(--fb-header-h)); overflow: visible; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 200px; padding: 18px 28px;
  background: var(--fb-gradient); color: #fff !important;
  border: 1px solid var(--fb-surface); border-radius: var(--fb-radius-btn);
  font-weight: 600; font-size: 15px;
  box-shadow: 4px 4px 1px var(--fb-surface);
  transition: .15s ease;
}
.btn:hover {
  background: #f8fafc !important; color: #00356e !important;
}
.btn-light {
  background: #fff !important; color: var(--fb-primary) !important;
  box-shadow: 4px 4px 1px rgba(0,0,0,.08);
}
.btn-light:hover {
  background: var(--fb-gradient) !important; color: #fff !important;
}
.btn-outline {
  background: transparent; color: var(--fb-primary) !important;
  border: 2px solid var(--fb-primary); box-shadow: none;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 650px;
  min-height: 650px;
  overflow: hidden;
  background: var(--fb-navy);
  margin-top: 0;
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .8s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-overlay { display: none; }
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 2rem 0;
  box-sizing: border-box;
  pointer-events: none;
}
.hero-panel {
  width: fit-content;
  max-width: min(1200px, calc(100% - 1.5rem));
  margin-left: auto;
  margin-right: 0;
  padding: 20px;
  color: #fff;
  background: var(--fb-gradient);
  box-shadow: 10px 10px #fff;
  clip-path: polygon(0% 75px, 75px 0%, 100% 0%, 100% 100%, 0 100%);
  pointer-events: auto;
}
.hero-heading {
  margin: 0;
  color: #fff;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.25;
  text-align: left;
  padding-left: 100px;
  padding-right: 150px;
}
.hero-dots {
  position: absolute; z-index: 3; left: 50%; bottom: 1.5rem;
  transform: translateX(-50%); display: flex; gap: .65rem;
}
.hero-dot {
  width: 28px; height: 3px; border-radius: 0; border: 0;
  background: rgba(255,255,255,.55); cursor: pointer; padding: 0;
}
.hero-dot.is-active { background: var(--fb-primary); }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section--gradient { background: var(--fb-gradient); color: #fff; }
.section--surface { background: var(--fb-surface); }
.section-title {
  margin: 0 0 1rem; font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 300;
}
.section-title--light, .section-lead--light { color: #fff; }
.section-lead { max-width: 70ch; margin: 0 0 1.75rem; font-size: 1.05rem; }
.section-cta { margin-top: 2rem; }

.about-top { padding: 100px 0 100px; }
.about-top-inner { max-width: 900px; }
.about-top .section-title {
  font-size: 42px;
  font-weight: 300;
  position: relative;
  padding-bottom: .85rem;
  margin-bottom: 1.25rem;
}
.about-top .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #fff;
  margin-top: .85rem;
}

.about-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; margin-bottom: 5rem;
}
.about-feature:last-child { margin-bottom: 0; }
.about-feature--img-right .about-feature-media { order: 2; }
.about-feature--img-right .about-feature-text { order: 1; }
.about-feature-media img {
  width: 100%; max-width: 600px; border-radius: 50px 0;
  box-shadow: 10px 10px var(--fb-surface);
}
.about-feature-text h2,
.about-feature-text h3 {
  margin: 0 0 1rem; font-size: 1.75rem; font-weight: 300; color: var(--fb-heading);
}
.about-feature-text p { margin: 0; }

.about-video { padding: 75px 0; background: var(--fb-surface); }
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 10px; box-shadow: 10px 10px var(--fb-border);
}
.video-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

.services-intro { padding: 120px 0 140px; }
.services-grid { margin-top: -120px; padding-top: 50px; padding-bottom: 50px; position: relative; z-index: 2; background: transparent; }

.cards--services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.service-card {
  background: #fff; border-radius: 50px 0; overflow: hidden;
  min-height: 630px; margin-bottom: 40px;
  box-shadow: none;
  transition: transform .2s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.service-card-link:hover { color: inherit; }
.service-card-img {
  width: 100%; height: 280px; object-fit: cover; border-radius: 50px 0;
}
.service-card-body { padding: 10px 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 {
  margin: 20px 0; font-size: 1.35rem; font-weight: 400; color: var(--fb-heading);
}
.service-card-body p { margin: 0 0 1rem; flex: 1; }
.service-card-more {
  color: var(--fb-primary); font-weight: 600; font-size: .95rem;
}

.dasteam { padding: 75px 0; }
.team-row { align-items: center; }
.team-media img {
  width: 100%; border-radius: var(--fb-radius);
  box-shadow: 10px 10px rgba(0,0,0,.15);
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }

.Projekte { padding: 40px 0; background: var(--fb-surface); }
.portfolio-grid--home,
.portfolio-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.portfolio-grid--home .gallery-item {
  aspect-ratio: 16/10;
  background: center/cover no-repeat var(--fb-surface);
  border-radius: 50px 0;
  display: block;
  min-height: 180px;
}
.gallery-item,
.gallery-item-card .gallery-item {
  aspect-ratio: 4/3; background: center/cover no-repeat var(--fb-surface);
  border-radius: 50px 0;
}
@media (min-width: 992px) {
  .portfolio-grid:not(.portfolio-grid--home) {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery-item-card a { color: var(--fb-heading); }
.gallery-item-card h3 { margin: .75rem 0 .25rem; font-size: 1.05rem; font-weight: 400; }
.gallery-item-card .meta { margin: 0; color: var(--fb-body); font-size: .9rem; }

.contact-cta.fixed-cont-sect,
.fixed-cont-sect {
  position: relative;
  padding: 0;
  height: 600px;
  overflow: hidden;
  background: transparent;
}
.contact-map {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
}
.fixed-cont-head {
  position: absolute;
  top: 30px;
  left: 25%;
  z-index: 2;
  width: 360px;
  max-width: calc(100% - 2rem);
  padding: 30px;
  background: var(--fb-surface);
  border-radius: 0;
  box-shadow: 10px 10px #fff;
}
.contact-cta-title {
  margin: 0 0 .5rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 300;
  color: var(--fb-heading);
}
.contact-cta-title strong {
  display: block;
  margin-top: .15rem;
  font-weight: 600;
}
.heading-seperator {
  width: 80px;
  border-bottom: 2px solid #cacaca;
  margin: .75rem 0 1.25rem;
}
.contact-cta-item {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem;
}
.contact-cta-item--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  margin-bottom: 1.25rem;
}
.contact-cta-item img { width: 48px; height: 48px; }
.contact-cta-item a { color: var(--fb-navy); }
.contact-cta-item a:hover { color: var(--fb-primary-hover); }

.contact-form-section { padding: 75px 0; background: var(--fb-surface); }
.contact-slot--page { max-width: 100%; }

/* CF7 — match Convert Forms / Joomla Kontakt */
.contact-slot--page .wpcf7,
.contact-form-section .wpcf7 {
  display: block;
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 0;
  color: var(--fb-body);
  font-size: 16px;
}
.contact-slot--page .wpcf7 form,
.contact-form-section .wpcf7 form {
  margin: 0;
}
.contact-slot--page .wpcf7 .cf-control-group,
.contact-form-section .wpcf7 .cf-control-group {
  display: block;
  padding: 9px;
  margin: 0;
}
.contact-slot--page .wpcf7 .cf-control-label,
.contact-form-section .wpcf7 .cf-control-label {
  margin: 0 0 6px;
}
.contact-slot--page .wpcf7 .cf-label,
.contact-form-section .wpcf7 .cf-label {
  display: block;
  margin: 0;
  color: #020d26 !important;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1.3;
}
.contact-slot--page .wpcf7 .cf-required-label,
.contact-form-section .wpcf7 .cf-required-label {
  color: #e70016;
  margin-left: .15em;
}
.contact-slot--page .wpcf7 .cf-control-input,
.contact-form-section .wpcf7 .cf-control-input {
  display: block;
}
.contact-slot--page .wpcf7 input.cf-input,
.contact-slot--page .wpcf7 input.wpcf7-text,
.contact-slot--page .wpcf7 input.wpcf7-email,
.contact-slot--page .wpcf7 input.wpcf7-tel,
.contact-slot--page .wpcf7 textarea.cf-input,
.contact-slot--page .wpcf7 textarea.wpcf7-textarea,
.contact-form-section .wpcf7 input.cf-input,
.contact-form-section .wpcf7 input.wpcf7-text,
.contact-form-section .wpcf7 input.wpcf7-email,
.contact-form-section .wpcf7 input.wpcf7-tel,
.contact-form-section .wpcf7 textarea.cf-input,
.contact-form-section .wpcf7 textarea.wpcf7-textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 40px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  background: #fff;
  color: #666;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 40px;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.contact-slot--page .wpcf7 textarea.cf-input,
.contact-slot--page .wpcf7 textarea.wpcf7-textarea,
.contact-form-section .wpcf7 textarea.cf-input,
.contact-form-section .wpcf7 textarea.wpcf7-textarea {
  height: 73px;
  min-height: 73px;
  padding: 10px;
  line-height: 1.4;
  border-color: #ccc;
  color: #888;
  resize: vertical;
}
.contact-slot--page .wpcf7 input.cf-input:focus,
.contact-slot--page .wpcf7 textarea.cf-input:focus,
.contact-form-section .wpcf7 input.cf-input:focus,
.contact-form-section .wpcf7 textarea.cf-input:focus {
  border-color: var(--fb-primary);
}
.contact-slot--page .wpcf7 .wpcf7-form-control-wrap,
.contact-form-section .wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
.contact-slot--page .wpcf7 .cf-control-group--privacy,
.contact-form-section .wpcf7 .cf-control-group--privacy {
  padding-top: 12px;
  padding-bottom: 12px;
}
.contact-slot--page .wpcf7 .wpcf7-checkbox,
.contact-form-section .wpcf7 .wpcf7-checkbox {
  display: block;
}
.contact-slot--page .wpcf7 .wpcf7-list-item,
.contact-form-section .wpcf7 .wpcf7-list-item {
  margin: 0;
}
.contact-slot--page .wpcf7 .wpcf7-list-item label,
.contact-form-section .wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin: 0;
  color: var(--fb-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  cursor: pointer;
}
.contact-slot--page .wpcf7 .wpcf7-list-item input[type="checkbox"],
.contact-form-section .wpcf7 .wpcf7-list-item input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: .2rem 0 0;
  flex-shrink: 0;
  accent-color: var(--fb-primary);
}
.contact-slot--page .wpcf7 .cf-control-group--submit,
.contact-form-section .wpcf7 .cf-control-group--submit {
  padding-top: 8px;
}
.contact-slot--page .wpcf7 input[type="submit"],
.contact-slot--page .wpcf7 .wpcf7-submit,
.contact-slot--page .wpcf7 .cf-btn,
.contact-form-section .wpcf7 input[type="submit"],
.contact-form-section .wpcf7 .wpcf7-submit,
.contact-form-section .wpcf7 .cf-btn {
  display: inline-block;
  width: 33.333%;
  min-width: 220px;
  max-width: 405px;
  height: auto;
  margin: 0;
  padding: 20px 0 !important;
  border: 0 !important;
  border-radius: 30px 0 !important;
  background: var(--fb-gradient) !important;
  color: #fff !important;
  font-family: inherit;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.contact-slot--page .wpcf7 input[type="submit"]:hover,
.contact-slot--page .wpcf7 .wpcf7-submit:hover,
.contact-form-section .wpcf7 input[type="submit"]:hover,
.contact-form-section .wpcf7 .wpcf7-submit:hover {
  background: #f8fafc !important;
  color: #00356e !important;
}
.contact-slot--page .wpcf7 .wpcf7-response-output,
.contact-form-section .wpcf7 .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: .75rem 1rem;
  border-radius: 0;
}
.contact-slot--page .wpcf7 p,
.contact-form-section .wpcf7 p {
  margin: 0;
}

@media (max-width: 767px) {
  .contact-slot--page .wpcf7,
  .contact-form-section .wpcf7 { padding: 16px; }
  .contact-slot--page .wpcf7 input[type="submit"],
  .contact-slot--page .wpcf7 .wpcf7-submit,
  .contact-form-section .wpcf7 input[type="submit"],
  .contact-form-section .wpcf7 .wpcf7-submit {
    width: 100%;
    max-width: none;
  }
}

/* ===== Page chrome ===== */
.page-title-bar {
  background: var(--fb-gradient-rev); color: #fff; padding: 3rem 0;
  background-size: cover; background-position: center;
}
.page-title-bar h1 { margin: 0; color: #fff; font-weight: 300; }
.page-subtitle { margin: .5rem 0 0; opacity: .9; }
.content-area { padding: 3rem 0 4rem; }
.section-kicker {
  display: inline-block; margin-bottom: .5rem; color: var(--fb-primary);
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .8rem;
}
.section-kicker--light { color: rgba(255,255,255,.85); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--fb-surface); border: 1px solid var(--fb-border);
  box-shadow: 10px 10px 0 rgba(203,220,233,.8); padding: 1.75rem;
}
.card-link { padding: 0; overflow: hidden; border-radius: var(--fb-radius); }
.card-link-inner { display: block; padding: 1.5rem; color: inherit; height: 100%; }
.card-thumb { margin: -1.5rem -1.5rem 1rem; }
.card-thumb img { width: 100%; height: 180px; object-fit: cover; }
.card-more { display: inline-block; margin-top: 1rem; color: var(--fb-primary); font-weight: 600; }

.single-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 2.5rem; }
.single-aside { display: flex; flex-direction: column; gap: 1rem; }
.single-aside img {
  width: 100%; border-radius: var(--fb-radius); box-shadow: 10px 10px var(--fb-border);
}
.project-hero-image { margin-bottom: 2rem; }
.project-hero-image img {
  width: 100%; max-height: 520px; object-fit: cover;
  border-radius: var(--fb-radius); box-shadow: 10px 10px var(--fb-border);
}
.about-image {
  width: 100%; border-radius: var(--fb-radius); box-shadow: 10px 10px var(--fb-border);
}
.placeholder-box {
  min-height: 280px; background: var(--fb-surface); border: 1px solid var(--fb-border);
  box-shadow: 10px 10px 0 var(--fb-border); display: grid; place-items: center;
  border-radius: var(--fb-radius);
}

/* ===== Footer ===== */
.site-bottom {
  background: var(--fb-surface) url("../images/pages/footer_bg_bleu.jpg") right / contain no-repeat;
  border-top: 1px solid var(--fb-border); padding: 80px 0;
}
.bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-logo { max-width: 220px; margin-bottom: 1rem; }
.bottom-tagline { margin: 0; color: var(--fb-navy); font-weight: 600; }
.bottom-contact h3 { margin: 0 0 1rem; color: var(--fb-navy); font-weight: 400; }
.bottom-contact p { margin: 0 0 .4rem; }
.site-footer {
  background: var(--fb-surface); border-top: 1px solid var(--fb-border);
  padding: 45px 0; font-size: 12px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.copyright { margin: 0; }
.footer-menu { display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }

@media (max-width: 1400px) {
  .toolbar-inner { padding-left: 200px; }
  .service-card { min-height: 570px; }
}
@media (max-width: 1199px) {
  .cards--services { grid-template-columns: repeat(2, 1fr); }
  .toolbar-inner { padding-left: 100px; }
  .hero-heading { padding-left: 50px; padding-right: 0; }
}
@media (max-width: 991px) {
  .toolbar-address { display: none; }
  .toolbar-inner { padding-left: 30px; }
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--fb-border);
    box-shadow: 0 12px 24px rgba(2,13,38,.1); padding: 1rem;
  }
  .primary-nav.is-open { display: block; }
  .primary-menu { flex-direction: column; align-items: stretch; }
  .primary-menu .sub-menu { position: static; display: block; box-shadow: none; border: 0; padding-left: 1rem; }
  .about-feature, .two-col, .contact-cta-grid, .single-grid,
  .cards--services, .cards, .portfolio-grid, .bottom-grid {
    grid-template-columns: 1fr;
  }
  .about-feature--img-right .about-feature-media,
  .about-feature--img-right .about-feature-text { order: initial; }
  .services-grid { margin-top: -60px; }
  .hero { height: auto; min-height: 70vh; }
  .hero-panel { clip-path: none; border-radius: 50px 0; padding: 20px; }
  .hero-heading { padding-left: 50px; padding-right: 0; }
  .fixed-cont-sect { height: auto; min-height: 0; }
  .fixed-cont-head {
    position: relative;
    top: auto; left: auto;
    width: auto; max-width: none;
    margin: 1.5rem;
    box-shadow: 10px 10px var(--fb-border);
  }
  .contact-map { height: 360px; }
}
@media (max-width: 575px) {
  .logo-first-link { display: none; }
  .site-logo .logo-main { opacity: 1; height: 40px; }
  .hero-heading { font-size: 1.6rem; padding-left: 0; }
  .about-top { padding: 45px 0 25px; }
  .about-top .section-title { padding-top: 20px; }
  .btn { width: 100%; }
}
