:root {
  --ink: #101820;
  --coal: #0b1117;
  --muted: #5d6875;
  --soft: #f4f7fa;
  --white: #ffffff;
  --line: #dbe2e9;
  --red: #d71920;
  --red-dark: #a91118;
  --shadow: 0 18px 45px rgba(13, 22, 31, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

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

img,
svg {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container,
.header-inner,
.footer-shell {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 226, 233, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.brand-mark,
.icon-box,
.floating-icon,
.doc-icon,
.faq-number,
.search-icon {
  color: var(--white);
  background: var(--red);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(215, 25, 32, 0.22);
}

.brand-name {
  display: block;
  font-size: 1.04rem;
  line-height: 1.15;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #263340;
  font-size: 0.94rem;
  font-weight: 720;
}

.nav a {
  position: relative;
  padding: 24px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--red);
  background: var(--white);
  cursor: pointer;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 30px rgba(215, 25, 32, 0.24);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button-secondary:hover {
  border-color: rgba(215, 25, 32, 0.35);
  box-shadow: 0 12px 26px rgba(13, 22, 31, 0.08);
}

.hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 14, 20, 0.94) 0%, rgba(8, 14, 20, 0.76) 52%, rgba(8, 14, 20, 0.28) 100%),
    var(--hero-image, url("../../assets/images/site/norgren-hero.webp")) center right / cover no-repeat;
}

.hero-inner {
  min-height: 74svh;
  display: grid;
  align-content: center;
  padding: 88px 0 74px;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(244, 247, 250, 0.96), rgba(255, 255, 255, 1)),
    linear-gradient(90deg, rgba(215, 25, 32, 0.08), transparent);
}

.page-hero-inner {
  padding: 58px 0 50px;
}

.product-hero {
  background:
    linear-gradient(135deg, rgba(244, 247, 250, 0.96), rgba(255, 255, 255, 1)),
    linear-gradient(90deg, rgba(215, 25, 32, 0.08), transparent);
}

.product-hero-inner {
  padding: 58px 0 62px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--white);
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 840px;
  margin: 0;
  color: inherit;
  font-size: clamp(2.25rem, 5vw, 4.85rem);
  line-height: 1.03;
}

.hero-copy,
.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  font-weight: 540;
}

.page-hero .lead,
.product-hero .lead {
  color: var(--muted);
}

.hero-actions,
.form-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.search-panel {
  width: min(840px, 100%);
  margin-top: 32px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.page-hero .search-panel {
  border-color: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.search-panel input {
  min-height: 52px;
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  font-weight: 760;
}

.search-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.page-hero .search-note {
  color: var(--muted);
}

.section {
  padding: 82px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(135deg, rgba(11, 17, 23, 0.98), rgba(20, 31, 40, 0.98)),
    linear-gradient(90deg, rgba(215, 25, 32, 0.12), transparent);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.center .kicker {
  justify-content: center;
}

.section-heading h2,
.quote-panel h2,
.card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.78rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.section-heading p,
.card p,
.quote-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-dark .section-heading h2,
.section-dark .kicker {
  color: var(--white);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.product-card,
.spec-card,
.doc-card,
.faq-card,
.quote-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(13, 22, 31, 0.08);
}

.card,
.spec-card,
.doc-card,
.faq-card {
  padding: 22px;
}

.card h3,
.product-card h3,
.spec-card h3,
.doc-card h3,
.faq-card h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

.card p,
.product-card p,
.spec-card p,
.doc-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.icon-box,
.doc-icon,
.search-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 7px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
}

.product-media {
  display: block;
  aspect-ratio: 1.32;
  background: linear-gradient(135deg, #f8fafc, #eef3f7);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 22px;
  color: var(--red);
  text-align: center;
  font-weight: 850;
  background: linear-gradient(135deg, #f8fafc, #eef3f7);
}

.product-body {
  padding: 20px;
}

.product-actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-actions .button {
  min-height: 42px;
  padding: 0 12px;
  font-size: 0.9rem;
}

.product-meta,
.breadcrumb,
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
}

.breadcrumb {
  margin-bottom: 24px;
}

.breadcrumb span,
.product-link,
.doc-card a,
.text-link {
  color: var(--red);
  font-weight: 850;
}

.part-number,
.pill {
  display: inline-flex;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--red-dark);
  background: rgba(215, 25, 32, 0.09);
  font-size: 0.84rem;
  font-weight: 850;
}

.product-detail-grid,
.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.product-image-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-image-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.08;
  object-fit: contain;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.attribute-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(13, 22, 31, 0.06);
}

.attribute-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.attribute-table th,
.attribute-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.attribute-table th {
  color: var(--muted);
  background: #fbfcfd;
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 850;
}

.attribute-table td:first-child {
  width: 34%;
  color: var(--muted);
  font-weight: 760;
}

.attribute-table tr:last-child td {
  border-bottom: 0;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stat-value {
  display: block;
  color: var(--red);
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 900;
}

.stat-label {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.topic-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  list-style: none;
  font-weight: 760;
}

.spec-label {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.spec-value {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.34;
}

.feature-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.dark-panel {
  padding: 30px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 17, 23, 0.98), rgba(20, 31, 40, 0.96)),
    linear-gradient(135deg, rgba(215, 25, 32, 0.14), transparent);
}

.dark-panel h2,
.dark-panel h3 {
  color: var(--white);
}

.dark-panel p,
.dark-panel .feature-list span:not(.icon-box) {
  color: rgba(255, 255, 255, 0.72);
}

.faq-card h3 {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.faq-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  font-size: 0.88rem;
}

.pagination {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination a,
.pagination span {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-weight: 800;
}

.pagination .is-active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.quote-panel {
  padding: 30px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(11, 17, 23, 0.98), rgba(20, 31, 40, 0.96)),
    linear-gradient(135deg, rgba(215, 25, 32, 0.14), transparent);
}

.quote-panel h2,
.quote-panel .kicker {
  color: var(--white);
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.quote-links {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.quote-link {
  min-height: 54px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.quote-label {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.quote-value {
  display: block;
  font-weight: 820;
  line-height: 1.35;
}

.form-panel {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: #25313d;
  font-size: 0.88rem;
  font-weight: 780;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fbfcfd;
  outline: none;
}

input,
select {
  height: 46px;
  padding: 0 13px;
}

textarea {
  min-height: 136px;
  resize: vertical;
  padding: 12px 13px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.search-results {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.search-result {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(13, 22, 31, 0.07);
}

.search-thumb {
  width: 96px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, #f8fafc, #eef3f7);
  overflow: hidden;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 850;
  text-align: center;
}

.search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.search-actions {
  display: grid;
  gap: 8px;
}

.search-actions .button {
  min-width: 118px;
  min-height: 40px;
}

.search-result h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 1.02rem;
}

.search-result p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 25, 32, 0.2), transparent 34%),
    linear-gradient(145deg, #090f15 0%, #111923 52%, #080d12 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-shell {
  padding: 54px 0 28px;
}

.footer-kicker {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.95fr 1.35fr;
  gap: 30px;
  padding-bottom: 36px;
}

.footer-logo {
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 850;
}

.footer-logo-title,
.footer-logo-sub {
  display: block;
}

.footer-logo-title {
  font-size: 1.04rem;
  line-height: 1.15;
}

.footer-logo-sub {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  font-size: 0.94rem;
}

.footer-company {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.footer-company strong,
.footer-company span {
  display: block;
}

.footer-company strong {
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-company span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.footer-column h3 {
  margin: 2px 0 18px;
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-links a:hover,
.footer-contact a:hover {
  transform: translateX(3px);
}

.footer-contact > div {
  display: grid;
  gap: 4px;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  width: 56px;
  min-width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  color: var(--red);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-size: 0;
  font-weight: 850;
}

.floating-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.94rem;
}

@media (min-width: 681px) {
  .footer-bottom {
    padding-right: 240px;
  }
}

@media (max-width: 1060px) {
  .grid-4,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .header-inner,
  .container,
  .footer-shell {
    width: min(var(--container), calc(100% - 28px));
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
    gap: 0;
  }

  .nav a {
    padding: 13px 10px;
  }

  .nav a::after {
    display: none;
  }

  .icon-button {
    display: inline-flex;
  }

  .header-actions .button {
    display: none;
  }

  .product-detail-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .brand {
    min-width: 0;
  }

  .brand-sub {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    padding: 58px 0 42px;
  }

  .hero-copy,
  .lead {
    font-size: 1rem;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .product-grid,
  .spec-list,
  .stat-strip,
  .topic-list,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .product-image-panel,
  .dark-panel,
  .quote-panel,
  .form-panel {
    padding: 22px;
  }

  .hero-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .search-result {
    grid-template-columns: 1fr;
  }

  .search-thumb {
    width: 100%;
    height: 132px;
  }

  .search-actions,
  .product-actions {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-contact {
    display: none;
  }
}
