:root{
  --primary:#0b8f8f;
  --accent:#f68d82;
  --dark:#0f1b2d;
  --muted:#6b7280;
  --card:#ffffff;
  --glass:rgba(255,255,255,0.06);
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial;
}

*{box-sizing:border-box}
html,body{
  height:100%;
  margin:0;
  background:linear-gradient(180deg,#f7fbfb 0%, #eef7f7 100%);
  color:var(--dark);
  overflow-x:hidden;
}

/* Prevent old header max-width issues */
header{
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
  padding:0 !important;
}

/* Wrapper */
.navbar-wrapper{
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  z-index:9999;
}

/* MAIN NAVBAR */
.navbar{
  position:relative;
  width:100vw;
  padding:16px 0;
  background:linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,248,255,0.72), rgba(255,255,255,0.6));
  backdrop-filter:blur(22px) saturate(190%);
  -webkit-backdrop-filter:blur(22px) saturate(190%);
  border-bottom:1px solid rgba(255,255,255,0.45);
  box-shadow:0 16px 44px rgba(0,0,0,0.15), 0 6px 18px rgba(0,0,0,0.1);
  transition:all .4s ease;
}

/* Animated Glow Line */
.navbar::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  opacity:.65;
  animation:navbarGlow 4s linear infinite;
}
@keyframes navbarGlow{ 0%{background-position:0%} 100%{background-position:200%} }

.navbar.scrolled{
  background:linear-gradient(135deg, rgba(0,70,180,0.97), rgba(0,110,200,0.96));
  backdrop-filter:blur(14px);
  box-shadow:0 20px 50px rgba(0,0,0,0.28), 0 8px 22px rgba(0,0,0,0.2);
}
.navbar.scrolled::after{opacity:1}

.navbar-container{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding:0 40px;
  display:grid;
  grid-template-columns:220px 1fr 180px;
  align-items:center;
  gap:16px;
}

.navbar-logo{
  font-size:26px;
  font-weight:800;
  color:#0f1b2d;
  white-space:nowrap;
}

.menu{
  display:flex;
  justify-content:center;
  gap:45px;
}
.menu a{
  position:relative;
  font-size:17px;
  font-weight:600;
  color:#0f1b2d;
  text-decoration:none;
  padding-bottom:4px;
  transition:.3s ease;
}
.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  transition:width .35s ease;
}
.menu a:hover::after{width:100%}
.menu a:hover{color:var(--primary)}

.nav-cta{
  justify-self:end;
  padding:10px 16px;
  border-radius:12px;
  font-weight:800;
  color:#fff;
  text-decoration:none;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  box-shadow:0 10px 26px rgba(11,143,143,0.3);
}

.hamburger{display:none;font-size:30px;color:#0f1b2d;cursor:pointer;}

.navbar.scrolled .navbar-logo,
.navbar.scrolled .menu a{color:#fff;}
.navbar.scrolled .menu a::after{background:#fff;}
.navbar.scrolled .menu a:hover{color:#e4f2ff;}
.navbar.scrolled .hamburger{color:#fff;}

body{padding-top:74px;}

/* MOBILE MENU */
@media (max-width:768px){
  .navbar-container{grid-template-columns:1fr auto;padding:0 20px;}
  .nav-cta{display:none}
  .hamburger{display:block}

  .menu{
    position:absolute;
    top:64px;
    left:0;
    width:100%;
    flex-direction:column;
    gap:18px;
    padding:20px;
    display:none;
    background:linear-gradient(135deg, rgba(255,255,255,0.94), rgba(245,250,255,0.88));
    backdrop-filter:blur(20px) saturate(190%);
    box-shadow:0 18px 40px rgba(0,0,0,0.2);
  }
  .menu.active{display:flex}
  .menu a{color:#0f1b2d}
  .menu a::after{display:none}
}

/* HERO */
.hero{
  max-width:1200px;
  margin:24px auto 40px;
  padding:36px;
  border-radius:20px;
  display:grid;
  grid-template-columns:1fr 420px;
  gap:28px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.hero-left{padding:12px}
h1{font-size:38px;margin:0 0 12px}
p.lead{color:var(--muted);line-height:1.5;margin:0 0 18px}
.buttons{display:flex;gap:12px}
.btn{padding:12px 16px;border-radius:12px;text-decoration:none;font-weight:700}
.btn-outline{border:2px solid var(--primary);color:var(--primary);background:transparent}

.hero-card{
  background:linear-gradient(180deg,rgba(255,255,255,0.85),rgba(255,255,255,0.6));
  backdrop-filter:blur(6px);
  padding:18px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(16,24,40,0.06);
}
.contact-item{display:flex;align-items:center;gap:12px}

/* ✅ CHANGE #1: stagger equal height on mobile */
.stagger-card{
  display:flex;
  gap:12px;
  align-items:center;
  width:100%;
}
.stagger-icon{
  width:44px;height:44px;border-radius:9px;background:#fff;padding:8px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 14px rgba(11,24,40,0.04);
}
.stagger-title{font-weight:700}

/* SERVICES / CARDS */
.card{
  background:var(--card);
  padding:18px;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(11,24,40,0.05);
  transition:transform .36s cubic-bezier(.2,.9,.3,1), box-shadow .36s;
}
.card:hover{transform:translateY(-8px);box-shadow:0 18px 40px rgba(11,24,40,0.09)}
.muted{color:var(--muted);font-size:14px}
.small{font-size:.85rem}

/* MARQUEE */
.marquee marquee{
  background:#0072ff;
  color:#fff;
  padding:10px 0;
  font-size:1rem;
  font-weight:500;
}

/* ✅ CHANGE #2: Image + FAQ mobile order */
.image-faq-section{
  display:flex;
  align-items:flex-start;
  gap:40px;
  padding:60px 8%;
  flex-wrap:wrap;
}
.image-faq-section .faq-img{flex:1}
.image-faq-section .faq-img img{
  width:100%;
  border-radius:12px;
  height:350px;
  object-fit:cover;
}
.image-faq-section .faq-box{flex:1}
.image-faq-section .faq-box h2{margin-bottom:20px}
.image-faq-section details{
  margin-bottom:12px;
  border:1px solid #eee;
  padding:12px 16px;
  border-radius:8px;
  cursor:pointer;
  background:#fafafa;
}
.image-faq-section summary{font-weight:600}
.image-faq-section details p{margin-top:8px;color:#666}

@media (max-width:900px){
  .image-faq-section{
    flex-direction:column;
    gap:22px;
  }
  .faq-img{order:1}
  .faq-box{order:2}
  .image-faq-section .faq-img img{height:260px;}
}

/* DOCTOR SECTION */
.img-text-section{
  width:100%;
  margin:40px 0;
  padding:80px 8%;
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  gap:50px;
  position:relative;
  overflow:hidden;

  background:linear-gradient(-45deg,#a1c4fd,#c2e9fb,#d4fc79,#96e6a1);
  background-size:400% 400%;
  animation:gradientBG 15s ease infinite;

  border-radius:0;
  box-shadow:0 10px 40px rgba(0,0,0,0.10);
}
.img-left{
  flex:1;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  min-height:420px;
}
.img-left img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.img-left:hover img{transform:scale(1.06) rotate(1deg);}
.text-right{
  flex:2;
  color:#1a1a1a;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.text-right h2{
  font-size:2.5rem;
  margin-bottom:20px;
  position:relative;
  display:inline-block;
  color:#0a3d62;
}
.underline-animate{position:relative;display:inline-block;padding-bottom:6px;}
.underline-animate::after{
  content:'';
  position:absolute;
  width:0;
  height:3px;
  left:0;
  bottom:-5px;
  background-color:#f39c12;
  transition:width .5s ease;
}
.underline-animate:hover::after{width:100%}
.text-right p{font-size:1rem;line-height:1.8;color:#333;}
@keyframes gradientBG{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}
@media (max-width:900px){
  .img-text-section{flex-direction:column;padding:60px 6%;gap:30px;}
  .img-left{min-height:320px;border-radius:16px;}
  .text-right h2{font-size:2rem;}
}

/* PREMIUM CARD */
.premium-card-section-full {
  padding: 60px 8%;
  width: 100%;
  background: linear-gradient(180deg, #f7fbfb, #eef7f7);
  display: flex;
  justify-content: center;
}

.premium-card-full {
  width: 100%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 60px 40px;
  text-align: center;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.premium-card-full p {
  line-height: 1.7;
  color: var(--dark);
  text-align: justify;
}

.premium-card-full:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* ✅ CHANGE #3: glowing corners */
.glow-corners::before,
.glow-corners::after {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  border-radius: 18px;
  opacity: 0.75;
  filter: blur(22px);
}

.glow-corners::before {
  background:
    radial-gradient(circle at top left, rgba(11, 143, 143, 0.45), transparent 55%),
    radial-gradient(circle at bottom right, rgba(246, 141, 130, 0.42), transparent 55%);
}

.glow-corners::after {
  background:
    radial-gradient(circle at top right, rgba(246, 141, 130, 0.25), transparent 55%),
    radial-gradient(circle at bottom left, rgba(11, 143, 143, 0.25), transparent 55%);
}

/* Mobile Responsiveness */
@media only screen and (max-width: 768px) {
  .premium-card-section-full {
    padding: 40px 5%;
  }

  .premium-card-full {
    padding: 40px 20px;
  }

  .premium-card-full h2 {
    font-size: 1.6rem; /* Adjust font size for smaller screens */
    margin-bottom: 15px;
  }

  .premium-card-full p {
    font-size: 1rem; /* Slightly smaller text */
    text-align: left; /* Align text to the left on mobile for better readability */
  }

  .premium-card-full .underline-animate {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 480px) {
  .premium-card-section-full {
    padding: 30px 5%;
  }

  .premium-card-full {
    padding: 30px 15px;
  }

  .premium-card-full h2 {
    font-size: 1.4rem;
  }

  .premium-card-full p {
    font-size: 0.9rem;
  }

  .premium-card-full .underline-animate {
    font-size: 1.3rem;
  }
}

/* GALLERY GLASS SECTION */
.gallery-glass-section{
  max-width:1200px;
  margin:40px auto;
  padding:0 18px;
  text-align:center;
}
.gallery-glass-section h4{
  text-transform:uppercase;
  color:var(--muted);
  font-size:14px;
  margin-bottom:6px;
}
.gallery-glass-section h2{
  font-size:28px;
  margin-bottom:28px;
  display:inline-block;
}
.gallery-glass-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(250px,1fr));
  gap:18px;
}
.glass-card{
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:transform .3s ease, box-shadow .3s ease;
}
.glass-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.glass-card:hover{
  transform:scale(1.03);
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

/* Scroll-in animation */
.scroll-fade{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease, transform .6s ease;
}
.scroll-fade.visible{
  opacity:1;
  transform:translateY(0);
}

/* ✅ VIDEO SECTIONS (Desktop horizontal + responsive) */
/* ================================
   PREMIUM VIDEO SECTION – UPDATED
   ================================ */

/* Layout: video smaller, text bigger */
.premium-video-wrap{
  display:grid;
  grid-template-columns:1fr; /* 🔽 video narrower */
  gap:30px;
  align-items:flex-start;               /* 🔥 text aligns better */
  text-align:left;
}

/* Left column */
.video-left{
  width:100%;
}

/* Responsive video frame */
.video-frame{
  width:100%;
  aspect-ratio:16 / 9;
  border-radius:16px;
  overflow:hidden;
  background:#000;
  box-shadow:0 12px 32px rgba(0,0,0,0.18);
  position:relative;
}

/* iframe fills frame */
.video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* Right content */
.video-right h2{
  margin:0 0 10px;
}

.subheading{
  margin:0 0 6px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--muted);
}

.video-right .muted{
  font-size:16px;
  line-height:1.75;
  margin:0 0 14px;
}

/* CTA buttons */
.video-cta-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* WhatsApp button */
.whatsapp-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:12px;
  font-weight:900;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(135deg,#25D366,#128C7E);
  box-shadow:0 10px 26px rgba(18,140,126,0.28);
  transition:transform .25s ease, box-shadow .25s ease;
}

.whatsapp-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(18,140,126,0.38);
}

/* ================================
   GRID VIDEO SECTION (4 videos)
   ================================ */

.premium-video-grid-wrap{
  padding:55px 36px;
}

.video-grid.four-videos{
  display:grid;
  grid-template-columns:1fr; /* 2×2 desktop */
  gap:18px;
  margin-top:20px;
}

.video-item iframe{
  width:100%;
  aspect-ratio:16 / 9;
  border-radius:16px;
  box-shadow:0 10px 28px rgba(0,0,0,0.14);
  border:0;
  display:block;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width:900px){
  .premium-video-wrap{
    grid-template-columns:1fr;     /* stack */
    gap:22px;
  }

  .video-right .muted{
    font-size:15px;
  }

  .premium-video-grid-wrap{
    padding:40px 18px;
  }

  .video-grid.four-videos{
    grid-template-columns:1fr;     /* single column mobile */
  }
}


/* =========================================
   ABOUT SECTION LAYOUT
   ========================================= */

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  padding:60px 8%;
}

.two-col .about-content{
  width:100%;
}

.two-col aside.about-map{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.map-container{
  width:100%;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* Full-width row inside grid */
.about-full{
  grid-column:1 / -1;
  display:flex;
  justify-content:center;
  margin-top:30px;
}

.about-full .premium-hours{
  max-width:420px;
  width:100%;
}

/* Responsive */
@media (max-width:900px){
  .two-col{
    grid-template-columns:1fr;
  }
  .about-full{
    margin-top:24px;
  }
}

/* =========================================
   CONTACT SECTION (FINAL – SINGLE VERSION)
   ========================================= */

.contact-section{
  padding:80px 8%;
  background:linear-gradient(135deg,#f7fbfb 0%,#eef7f7 50%,#e6faf9 100%);
  position:relative;
  overflow:hidden;
}

/* Grain overlay */
.contact-section::before{
  content:'';
  position:absolute;
  inset:0;
  background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity:.3;
  pointer-events:none;
}

.contact-container{
  max-width:800px;
  margin:0 auto;
  text-align:center;
  position:relative;
  z-index:1;
}

.contact-title{
  font-size:3rem;
  font-weight:800;
  color:var(--dark);
  margin-bottom:16px;
  position:relative;
  display:inline-block;
}

.contact-title::after{
  content:'';
  position:absolute;
  bottom:-8px;
  left:50%;
  transform:translateX(-50%);
  width:60px;
  height:4px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  border-radius:2px;
}

.contact-subtitle{
  font-size:1.2rem;
  color:var(--muted);
  margin-bottom:40px;
  line-height:1.6;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}

.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  max-width:700px;
  margin:0 auto;
}

.form-group{
  display:flex;
  flex-direction:column;
}

.form-group input,
.form-group textarea{
  padding:16px 20px;
  border:2px solid #e9eef0;
  border-radius:12px;
  font-size:1rem;
  font-family:inherit;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(10px);
  transition:all .3s ease;
  outline:none;
}

.form-group input:focus,
.form-group textarea:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(11,143,143,0.1);
  background:#fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color:var(--muted);
  opacity:.7;
}

.full-width{
  grid-column:1 / -1;
}

.contact-btn{
  grid-column:1 / -1;
  padding:18px 32px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#fff;
  border:none;
  border-radius:12px;
  font-size:1.1rem;
  font-weight:700;
  cursor:pointer;
  transition:all .3s ease;
  box-shadow:0 8px 25px rgba(11,143,143,0.3);
  text-transform:uppercase;
  letter-spacing:1px;
}

.contact-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 35px rgba(11,143,143,0.4);
}

.contact-btn:active{
  transform:translateY(-1px);
}

/* Responsive Contact */
@media (max-width:700px){
  .contact-form{
    grid-template-columns:1fr;
  }
}

/* =========================================
   FOOTER
   ========================================= */

footer{
  max-width:1200px;
  margin:36px auto;
  padding:18px;
  color:var(--muted);
  display:flex;
  justify-content:space-between;
}

@media (max-width:560px){
  footer{
    flex-direction:column;
    gap:8px;
    text-align:center;
  }
}

/* =========================================
   CONTACT & HOURS – PREMIUM CENTER CARD
   ========================================= */

.premium-hours{
  text-align:center;
  padding:18px 16px;
  border-radius:16px;

  background:rgba(255,255,255,0.55);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);

  border:1px solid rgba(255,255,255,0.65);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.12),
    0 0 0 1px rgba(15,27,45,0.05) inset;

  position:relative;
  overflow:hidden;
  transition:transform .28s ease, box-shadow .28s ease;
}

/* Glow background */
.premium-hours::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:linear-gradient(
    120deg,
    rgba(11,143,143,0.25),
    rgba(246,141,130,0.18),
    rgba(11,143,143,0.25)
  );
  opacity:.55;
  filter:blur(18px);
  z-index:0;
}

/* Shine animation */
.premium-hours::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.45) 30%,
    transparent 60%
  );
  transform:translateX(-120%);
  transition:transform 1.1s ease;
  z-index:0;
}

/* Hover effect */
.premium-hours:hover{
  transform:translateY(-6px);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.16),
    0 0 0 1px rgba(15,27,45,0.05) inset;
}

.premium-hours:hover::after{
  transform:translateX(120%);
}

/* Content above effects */
.premium-hours > *{
  position:relative;
  z-index:1;
}

/* Title */
.premium-hours .contact-title{
  font-weight:900;
  font-size:16px;
  margin-bottom:10px;
  letter-spacing:.2px;
}

/* Rows */
.hours-row{
  display:flex;
  align-items:center;
  justify-content:flex-start; /* left aligned */
  gap:12px;

  padding:10px 14px;
  margin-top:10px;
  border-radius:12px;

  background:rgba(255,255,255,0.55);
  border:1px solid rgba(15,27,45,0.06);

  transition:transform .22s ease;
}

.hours-row:hover{
  transform:scale(1.02);
}

/* Icon */
.hours-icon{
  width:36px;
  height:36px;
  flex-shrink:0;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:12px;
  font-size:16px;

  background:linear-gradient(
    135deg,
    rgba(11,143,143,0.18),
    rgba(246,141,130,0.14)
  );
}

/* Text & links */
.hours-link,
.hours-text{
  font-weight:800;
  color:var(--dark);
  text-align:left;
  line-height:1.3;
}

.hours-link:hover{
  color:var(--primary);
  text-decoration:underline;
}

/* Responsive */
@media (max-width:768px){
  .premium-hours{
    padding:16px 14px;
  }

  .hours-row{
    flex-wrap:wrap;
    gap:8px;
  }
}

/* Fit on laptop */

/* 1) Two-column video + text section (Desktop horizontal) */
@media (min-width: 901px){
  .premium-card-section-full.premium-video-section .premium-video-wrap{
    display:grid !important;
    grid-template-columns: 0.75fr 1.25fr !important; /* video smaller, text bigger */
    gap:30px !important;
    align-items:flex-start !important;
  }
}

/* 2) 4-video grid (Desktop 2x2) */
@media (min-width: 901px){
  .premium-card-section-full.premium-video-section .video-grid.four-videos{
    display:grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap:18px !important;
  }
}

/* Ensure iframes always fit nicely */
.premium-card-section-full.premium-video-section .video-frame{
  width:100%;
  aspect-ratio:16/9;
  border-radius:16px;
  overflow:hidden;
  position:relative;
}

.premium-card-section-full.premium-video-section .video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.premium-card-section-full.premium-video-section .video-item iframe{
  width:100%;
  aspect-ratio:16/9;
  border-radius:16px;
  border:0;
  display:block;
}