@font-face {
  font-family: "DegularDisplay";
  src: url("/fonts/degulardisplaydemo-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "DegularDisplay";
  src: url("/fonts/degulardisplaydemo-semibold-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "DegularDisplay";
  src: url("/fonts/degulardisplaydemo-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "IBMPlexSans";
  src: url("/fonts/IBMPlexSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "IBMPlexSans";
  src: url("/fonts//IBMPlexSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}


:root {
  --navy: #05072d;
  --navy-2: #090d45;
  --cyan: #48d7ff;
  --cyan-soft: rgba(72, 215, 255, 0.16);
  --white: #f8fbff;
  --muted: #aeb6d6;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: IBMPlexSans, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

body::before,
body::after {
  content: "";
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  filter: blur(12px);
}

body::before {
  top: -160px;
  right: -160px;
  background: radial-gradient(circle, rgba(72, 215, 255, 0.22), transparent 62%);
}

body::after {
  left: -180px;
  bottom: 5%;
  background: radial-gradient(circle, rgba(72, 215, 255, 0.14), transparent 62%);
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: IBMPlexSans, Inter, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}


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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.orb {
  position: absolute;
  border: 34px solid rgba(72, 215, 255, 0.09);
  border-radius: 999px;
  width: 420px;
  height: 420px;
  z-index: -1;
  pointer-events: none;
}

.orb.one { top: 130px; right: -170px; }
.orb.two { bottom: 360px; left: -240px; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 45, 0.82);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.4rem;
  white-space: nowrap;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), #7df3ff);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(72, 215, 255, 0.25);
}

.logo span:last-child::after,
.accent-dot::after {
  content: ".";
  color: var(--cyan);
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--white);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn:hover { transform: translateY(-2px); border-color: rgba(72, 215, 255, 0.45); }
.btn.primary { background: linear-gradient(135deg, var(--cyan), #7df3ff); color: var(--navy); border: none; }

.hero {
  position: relative;
  padding: 96px 0 84px;
  min-height: 690px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

h1, h2, h3 { margin: 0; letter-spacing: -0.05em; }

h1 {
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.94;
  max-width: 790px;
}

.hero p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
  margin: 28px 0 34px;
  max-width: 680px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-card {
  position: relative;
  min-height: 500px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -90px -120px auto auto;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 215, 255, 0.35), transparent 65%);
}

.address-card,
.vision-card {
  position: relative;
  background: rgba(5, 7, 45, 0.72);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 18px;
}

.address-card strong,
.vision-card strong { display: block; margin-bottom: 10px; font-size: 1.15rem; }
.address-card p,
.vision-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.fifty-four {
  position: absolute;
  right: 22px;
  bottom: 4px;
  font-size: clamp(9rem, 18vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  color: rgba(72, 215, 255, 0.1);
  line-height: 1;
}

section { padding: 92px 0; position: relative; }

.section-head { max-width: 760px; margin-bottom: 46px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

h2 { font-size: clamp(2.2rem, 5vw, 4.25rem); line-height: 1.02; }

.section-head p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.08rem;
  margin: 20px 0 0;
}

.stats-band {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  padding: 58px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(2.6rem, 5vw, 5rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.stat span { display: block; color: var(--cyan); margin-top: 14px; font-size: 1.02rem; }

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
}

.story-panel,
.news-card,
.career-card,
.contact-panel {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
}

.story-panel.highlight { border-top: 4px solid var(--cyan); }
.story-panel p,
.career-card p,
.contact-panel p { color: var(--muted); line-height: 1.8; }

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.principle {
  background: rgba(72, 215, 255, 0.08);
  border: 1px solid rgba(72, 215, 255, 0.18);
  border-radius: 18px;
  padding: 18px;
  color: var(--white);
  font-weight: 800;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.brand-card {
  min-height: 150px;
  border-radius: 26px;
  padding: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
  border-color: rgba(72, 215, 255, 0.52);
  background: rgba(72, 215, 255, 0.09);
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(72, 215, 255, 0.95), rgba(125, 243, 255, 0.8));
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-card h3 { font-size: 1.15rem; letter-spacing: -0.03em; margin-top: 22px; }

.view-brand {
  margin-top: 10px;
  display: inline-flex;
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--cyan);
  padding: 0;
  font-weight: 800;
  cursor: pointer;
}

.view-brand:hover { text-decoration: underline; }

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.news-card .tag {
  color: var(--cyan);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.news-card h3 { margin: 14px 0; line-height: 1.25; }
.news-card p { color: var(--muted); line-height: 1.7; }

.careers-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-list { display: grid; gap: 14px; margin-top: 24px; }

.contact-item {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 3, 24, 0.78);
  backdrop-filter: blur(12px);
}

.modal-card {
  position: relative;
  width: min(560px, 100%);
  max-height: min(84vh, 720px);
  overflow: auto;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(10, 15, 70, 0.98), rgba(5, 7, 45, 0.98));
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px;
  animation: modalIn 0.18s ease-out;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  cursor: pointer;
  font-size: 1.3rem;
}

.modal-logo {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--cyan), #7df3ff);
  color: var(--navy);
  font-weight: 900;
  font-size: 1.15rem;
}

.modal-card h3 { font-size: 2rem; padding-right: 42px; }
.modal-card p { color: var(--muted); line-height: 1.8; margin: 16px 0 24px; }

footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid,
  .careers-contact { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 420px; }
  .hero { min-height: auto; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .menu-toggle { display: inline-flex; }
  .menu {
    position: absolute;
    inset: 78px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: rgba(5, 7, 45, 0.97);
    border: 1px solid var(--border);
  }
  .menu.open { display: flex; }
  .menu a { padding: 12px; }
  .hero { padding: 64px 0 54px; }
  section { padding: 64px 0; }
  .hero-actions .btn { width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); text-align: left; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .modal-card { padding: 24px; border-radius: 24px; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(2.7rem, 14vw, 3.5rem); }
  h2 { font-size: clamp(2rem, 11vw, 2.7rem); }
  .hero p,
  .section-head p { font-size: 1rem; }
  .stats-grid,
  .brands-grid,
  .principles { grid-template-columns: 1fr; }
  .hero-card,
  .story-panel,
  .news-card,
  .career-card,
  .contact-panel { padding: 22px; border-radius: 22px; }
  .fifty-four { font-size: 8rem; }
  .logo { font-size: 1.18rem; }
  .logo-mark { width: 38px; height: 38px; }
  .modal-card h3 { font-size: 1.65rem; }
}


.about-hero {
  padding-top: 96px;
  background:
    radial-gradient(circle at 8% 42%, rgba(72, 215, 255, 0.14), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(72, 215, 255, 0.16), transparent 30%);
}

.about-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.about-intro h2 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.cyan-line {
  width: 5px;
  height: 42px;
  margin: 26px auto;
  border-radius: 999px;
  background: linear-gradient(var(--cyan), transparent);
  box-shadow: 0 0 18px rgba(72, 215, 255, 0.75);
}

.about-intro p,
.about-copy p,
.leader-copy p,
.leader-point p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.08rem;
}

.team-window {
  width: min(960px, 100%);
  margin: 0 auto 72px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(2, 4, 34, 0.82);
  box-shadow: 0 28px 80px rgba(0,0,0,0.45), 0 0 60px rgba(72,215,255,0.16);
  overflow: hidden;
}

.window-bar {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}

.window-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
}

.meeting-grid {
  padding: 74px 18px 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: center;
}

.meeting-card {
  min-height: 116px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.02)),
    radial-gradient(circle at 50% 30%, rgba(72,215,255,0.2), rgba(5,7,45,0.7));
}

.meeting-card:nth-child(2),
.meeting-card:nth-child(7) { border-color: rgba(220, 238, 116, 0.85); }
.meeting-card:nth-child(5) { grid-column-start: 2; }

.meeting-card::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.76);
  box-shadow: 0 54px 0 18px rgba(255,255,255,0.18);
}

.meeting-card span {
  position: absolute;
  left: 8px;
  bottom: 6px;
  padding: 3px 6px;
  border-radius: 5px;
  background: rgba(0,0,0,0.48);
  font-size: 0.72rem;
  color: var(--white);
}

.established-card {
  max-width: 920px;
  margin: 0 auto 44px;
  border-top: 4px solid var(--cyan);
  background: rgba(255,255,255,0.055);
  padding: 28px 34px;
}

.established-card h3 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}

.about-copy {
  max-width: 920px;
  margin: 0 auto;
}

.leadership-section {
  background:
    radial-gradient(circle at 75% 30%, rgba(72, 215, 255, 0.22), transparent 34%),
    radial-gradient(circle at 76% 72%, rgba(72, 215, 255, 0.08), transparent 28%);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 64px;
  align-items: start;
}

.leader-copy h2 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  margin-bottom: 34px;
}

.leader-points {
  display: grid;
  gap: 32px;
  margin-top: 42px;
}

.leader-point {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: start;
}

.leader-number {
  color: var(--cyan);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.leader-card {
  position: sticky;
  top: 116px;
  min-height: 620px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #09103f;
}

.leader-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 62%, rgba(72,215,255,0.3) 62%, rgba(72,215,255,0.08) 72%, transparent 72%),
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.24), transparent 20%);
  opacity: 0.86;
}

.leader-card-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 2;
}

.leader-card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #fff;
}

.leader-card-content p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.leader-card-content h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.leader-card-content p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.leader-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leader-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(2, 4, 34, 0.96) 8%,
      rgba(2, 4, 34, 0.45) 45%,
      rgba(2, 4, 34, 0.08) 100%
    );
}


@media (max-width: 980px) {
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-card { position: relative; top: auto; min-height: 460px; }
  .meeting-grid { grid-template-columns: repeat(3, 1fr); }
  .meeting-card:nth-child(5) { grid-column-start: auto; }
}

@media (max-width: 720px) {
  .about-hero { padding-top: 64px; }
  .meeting-grid { grid-template-columns: repeat(2, 1fr); padding: 36px 12px 46px; }
  .leader-point { grid-template-columns: 1fr; gap: 10px; }
  .leader-points { gap: 28px; }
  .established-card { padding: 24px; }
}

@media (max-width: 520px) {
  .meeting-grid { grid-template-columns: 1fr; }
  .meeting-card { min-height: 132px; }
  .leader-card { min-height: 380px; }
  .leader-card-content { left: 24px; right: 24px; bottom: 24px; }
}


html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
}

main,
section,
header,
footer {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.container {
  width: min(1180px, calc(100vw - 40px));
  max-width: 1180px;
  margin-inline: auto;
}

.orb {
  display: none;
}

.hero-grid,
.story-grid,
.leadership-grid,
.careers-contact,
.stats-grid,
.brands-grid,
.principles {
  min-width: 0;
}

.hero-grid > *,
.story-grid > *,
.leadership-grid > *,
.careers-contact > *,
.stats-grid > *,
.brands-grid > *,
.principles > * {
  min-width: 0;
}

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

.brand-logo {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.leader-card::before {
  display: none;
}

.leader-card {
  width: 100%;
}

.leader-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid,
  .leadership-grid,
  .careers-contact {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .leader-image {
    height: 520px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100vw - 28px, 1180px);
  }

  .hero-grid,
  .story-grid,
  .leadership-grid,
  .careers-contact {
    gap: 26px;
  }

  .stats-grid,
  .brands-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .menu {
    left: 14px;
    right: 14px;
    width: auto;
  }

  .hero-card,
  .story-panel,
  .career-card,
  .contact-panel,
  .established-card,
  .brand-card {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100vw - 24px);
  }

  .hero {
    padding-top: 48px;
  }

  section {
    padding: 54px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.15rem);
  }

  h2,
  .about-intro h2,
  .leader-copy h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .leader-image {
    height: 420px;
  }

  .modal {
    padding: 14px;
  }
}


.modal-logo {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.modal-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}