/* =========================================================
   Fortune Pharmaceuticals PLC - updated corporate website
   Clean teal pharma theme + responsive slider
   ========================================================= */

:root {
  --sidebar: 296px;
  --brand: #0a6969;
  --brand-2: #0e7f7f;
  --brand-dark: #043f3f;
  --accent: #14a3a3;
  --sky: #eefafa;
  --soft: #f5fbfb;
  --white: #ffffff;
  --ink: #1f2b35;
  --text: #4c5b66;
  --muted: #7a8790;
  --line: #e2eeee;
  --shadow: 0 18px 45px rgba(4, 63, 63, 0.16);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
.big-number {
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.4px;
}

/* Sidebar */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: var(--sidebar);
  height: 100vh;
  background: var(--white);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 28px 26px 18px;
  transition: transform 0.28s ease;
}

.brand {
  display: block;
  margin-bottom: 46px;
}

.brand img {
  width: 216px;
  height: 76px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  display: block;
  margin-top: 4px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav-links {
  display: grid;
  gap: 4px;
}

.nav-links a {
  min-height: 45px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  border-radius: 0 20px 20px 0;
  padding: 0 14px 0 8px;
  color: #48535d;
  font-size: 0.93rem;
  font-weight: 700;
  transition: 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--sky);
  color: var(--brand);
  transform: translateX(2px);
}

.nav-links i:first-child {
  width: 24px;
  text-align: center;
  font-size: 1rem;
}

.sidebar-bottom {
  margin-top: auto;
}

.side-line {
  height: 1px;
  background: var(--line);
  margin-bottom: 16px;
}

.social-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #71808a;
  background: #f4f8f8;
  transition: 0.2s ease;
}

.social-row a:hover {
  color: var(--white);
  background: var(--brand);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1200;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: var(--brand);
  color: var(--white);
  display: none;
  place-items: center;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.page-content {
  margin-left: var(--sidebar);
  min-height: 100vh;
}

/* Hero slider */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 690px;
  overflow: hidden;
  background: var(--sky);
}

.slides,
.slide {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.85s ease, transform 1.2s ease;
  background: var(--bg) center / cover no-repeat;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide-overlay {
  position: absolute;
  inset: 0;
}

.slide-overlay.teal {
  background: linear-gradient(90deg, rgba(4, 63, 63, 0.12), rgba(4, 63, 63, 0.22) 36%, rgba(4, 63, 63, 0.78));
}

.slide-overlay.deep {
  background: linear-gradient(90deg, rgba(4, 63, 63, 0.78), rgba(4, 63, 63, 0.38) 45%, rgba(0, 0, 0, 0.12));
}

.slide-overlay.soft {
  background: linear-gradient(90deg, rgba(245, 251, 251, 0.95), rgba(245, 251, 251, 0.58) 46%, rgba(255, 255, 255, 0.05));
}

.slide-overlay.charcoal {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(4, 63, 63, 0.22) 45%, rgba(3, 26, 26, 0.78));
}

.slide-content {
  position: relative;
  z-index: 3;
  min-height: 100%;
  display: flex;
  align-items: center;
  padding: 7vw;
}

.slide-content.right-text {
  justify-content: flex-end;
}

.slide-content.left-text {
  justify-content: flex-start;
}

.slide-panel {
  width: min(610px, 92vw);
  padding: 38px 40px;
  border-left: 5px solid rgba(255, 255, 255, 0.84);
  background: rgba(4, 63, 63, 0.38);
  backdrop-filter: blur(5px);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.slide-panel.compact {
  width: min(560px, 92vw);
}

.slide-panel.light-panel {
  background: rgba(255, 255, 255, 0.86);
  border-left-color: var(--brand);
  color: var(--ink);
}

.eyebrow,
.section-kicker,
.small-heading {
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eyebrow {
  color: inherit;
  opacity: 0.92;
  font-size: 0.86rem;
  margin-bottom: 10px;
}

.slide-content h1 {
  color: inherit;
  font-size: clamp(3rem, 5.8vw, 5.85rem);
  line-height: 0.96;
  margin-bottom: 18px;
}

.hero-subtitle {
  color: inherit;
  opacity: 0.94;
  font-size: clamp(1.03rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  margin-bottom: 26px;
  max-width: 620px;
}

.btn-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-link {
  padding: 12px 20px;
  background: var(--white);
  color: var(--brand);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.btn-link.dark {
  color: var(--white);
  background: var(--brand);
}

.btn-link:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}

.slider-dots {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot {
  width: 16px;
  height: 16px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: 0.2s ease;
}

.dot.active {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.15);
}

/* Sections */
.section {
  padding: 86px min(8vw, 86px);
}

.section-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 7vw;
}

.image-card {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--sky);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 63, 63, 0.82));
}

.image-label {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-kicker {
  color: var(--accent);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.light-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.section-copy h2,
.section-header h2,
.facility-copy h2,
.environment h2,
.accreditations h2 {
  color: var(--brand);
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-copy h3,
.section-header h3,
.facility-copy h3 {
  color: var(--brand-dark);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 24px;
}

.section-copy p,
.product-copy p,
.facility-copy p,
.environment p {
  color: var(--ink);
  font-size: 1.04rem;
  max-width: 720px;
  margin-bottom: 18px;
}

/* Products hero */
.products-hero {
  position: relative;
  min-height: 460px;
  padding: 76px min(8vw, 86px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 42px;
  align-items: center;
  background: var(--brand-dark);
}

.products-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 63, 63, 0.94), rgba(10, 105, 105, 0.70), rgba(10, 105, 105, 0.32)),
    url("images/healthcare-products.png") center / cover no-repeat;
}

.products-content,
.hex-stats {
  position: relative;
  z-index: 2;
}

.small-heading {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.products-content h2 {
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 1.05;
  margin: 8px 0 22px;
  text-transform: uppercase;
}

.products-content p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 650px;
  font-size: 1.06rem;
  margin-bottom: 24px;
}

.hex-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 320px;
}

.hex {
  width: 178px;
  height: 196px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: rgba(10, 105, 105, 0.95);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  margin-left: -8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hex:nth-child(1),
.hex:nth-child(3) {
  transform: translateY(40px);
}

.hex strong {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
  font-family: "Oswald", sans-serif;
}

.hex span {
  font-size: 0.8rem;
}

.hex em {
  font-style: normal;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Product list */
.section-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 52px;
}

.product-area {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.honeycomb {
  width: min(390px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 118px);
  grid-auto-rows: 100px;
  justify-content: center;
}

.mini-hex {
  width: 118px;
  height: 128px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: -10px 0;
}

.mini-hex:nth-child(2),
.mini-hex:nth-child(5),
.mini-hex:nth-child(8) {
  transform: translateY(60px);
}

.mini-hex.empty {
  background: #c7d2d2;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.category-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(10, 105, 105, 0.08);
  transition: 0.22s ease;
}

.category-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-grid img {
  width: 100%;
  height: 155px;
  object-fit: cover;
}

.category-grid h4 {
  color: var(--ink);
  padding: 16px 18px 4px;
  font-size: 1rem;
}

.category-grid p {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Facility */
.facilities-section {
  background: #f2f8f8;
}

.facility-showcase {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.facility-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 430px;
  box-shadow: var(--shadow);
}

.facility-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.facility-copy {
  position: relative;
  padding: 18px 0;
}

.facility-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.metric-hex {
  width: 132px;
  height: 146px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
}

.metric-hex strong,
.metric-hex span {
  display: block;
}

.metric-hex strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.34rem;
}

.metric-hex span {
  font-size: 0.78rem;
  opacity: 0.9;
}

/* Quality */
.quality-section {
  background: var(--white);
}

.quality-cards {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quality-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 12px 34px rgba(10, 105, 105, 0.07);
  transition: 0.22s ease;
}

.quality-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.quality-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 22px;
}

.quality-card h4 {
  color: var(--ink);
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.quality-card p {
  color: var(--text);
}

/* Environment */
.environment {
  background:
    linear-gradient(90deg, rgba(4, 63, 63, 0.92), rgba(10, 105, 105, 0.78)),
    url("images/slide-fortune-red-front.jpg") center / cover fixed no-repeat;
  color: var(--white);
}

.environment-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.environment h2,
.environment p {
  color: var(--white);
}

.environment p {
  max-width: 760px;
  opacity: 0.94;
}

/* News */
.news-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(10, 105, 105, 0.08);
  transition: 0.22s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-card div {
  padding: 20px 20px 24px;
}

.news-card span {
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.news-card h4 {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.42;
  margin-bottom: 14px;
}

.news-card a {
  color: var(--brand);
  font-weight: 800;
}

.center-link {
  margin-top: 34px;
  text-align: center;
}

/* Search */
.search-section {
  background: #f6fbfb;
}

.search-box {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.search-box label {
  display: block;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 12px;
}

.search-box div {
  display: flex;
  gap: 12px;
}

.search-box input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  outline: none;
}

.search-box input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(10, 105, 105, 0.10);
}

.search-box button {
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  padding: 14px 26px;
  font-weight: 800;
  cursor: pointer;
}

/* Accreditations */
.accreditations {
  padding: 80px min(8vw, 86px);
  text-align: center;
  background: var(--white);
}

.accreditation-note {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.logo-strip {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.logo-strip div {
  padding: 20px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--brand);
  font-weight: 900;
}

/* Footer */
.footer {
  background: var(--brand-dark);
  color: var(--white);
  padding: 60px min(8vw, 86px) 26px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.footer h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.86);
}

.footer a:hover {
  color: var(--white);
}

.copyright {
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.copyright a {
  margin-left: 4px;
  font-weight: 800;
}

/* Scroll top */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: 0.24s ease;
  cursor: pointer;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --sidebar: 260px;
  }

  .slide-content {
    padding: 6vw;
  }

  .section-grid,
  .facility-showcase,
  .product-area,
  .products-hero {
    gap: 42px;
  }

  .hex {
    width: 150px;
    height: 168px;
  }
}

@media (max-width: 920px) {
  .mobile-menu-btn {
    display: grid;
  }

  .side-nav {
    transform: translateX(-100%);
    width: min(86vw, 310px);
    box-shadow: var(--shadow);
  }

  .side-nav.open {
    transform: translateX(0);
  }

  .page-content {
    margin-left: 0;
  }

  .hero-slider {
    min-height: 660px;
  }

  .slide-content,
  .slide-content.right-text,
  .slide-content.left-text {
    justify-content: center;
    align-items: flex-end;
    padding: 90px 22px 82px;
  }

  .slide-panel {
    padding: 28px 24px;
  }

  .section-grid,
  .facility-showcase,
  .product-area,
  .products-hero,
  .quality-cards,
  .news-grid,
  .footer-grid,
  .environment-inner {
    grid-template-columns: 1fr;
  }

  .environment-inner {
    display: grid;
  }

  .hex-stats {
    min-height: auto;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hex,
  .hex:nth-child(1),
  .hex:nth-child(3) {
    transform: none;
    margin-left: 0;
  }

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

@media (max-width: 620px) {
  .hero-slider {
    height: auto;
    min-height: 620px;
  }

  .slide-content h1 {
    font-size: clamp(2.5rem, 13vw, 4.1rem);
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .section,
  .products-hero,
  .accreditations,
  .footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .honeycomb {
    transform: scale(0.78);
    transform-origin: top center;
    margin-bottom: -50px;
  }

  .category-grid,
  .logo-strip,
  .search-box div {
    grid-template-columns: 1fr;
  }

  .search-box div {
    display: grid;
  }

  .search-box button {
    width: 100%;
  }

  .image-card,
  .image-card img,
  .facility-image,
  .facility-image img {
    min-height: 310px;
  }

  .news-card img {
    height: 180px;
  }
}
/* About section image slider */
.about-image-slider {
  position: relative;
}

.about-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-img-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.about-img-slide.active {
  opacity: 1;
  transform: scale(1);
}

.about-image-slider::after {
  z-index: 2;
}

.about-image-slider .image-label {
  z-index: 3;
}

.about-img-dots {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.about-dot {
  width: 10px;
  height: 10px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: 0.2s ease;
}

.about-dot.active {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.2);
}

@media (max-width: 620px) {
  .about-img-slide {
    min-height: 310px;
  }
}
.facility-slider {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.facility-slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-slide.active {
  display: block;
}

.facility-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 2;
}

.facility-prev {
  left: 14px;
}

.facility-next {
  right: 14px;
}

.facility-arrow:hover {
  background: #ffffff;
}