/* =========================================================
   BASE / GLOBAL (no media queries)
   ========================================================= */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #481D24;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1; }

/* -------------------------
   Navbar
------------------------- */
.navbar {
  background: rgba(248, 248, 248, 0.50);
  color: #481D24;
  height: clamp(60px, 8vh, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: clamp(12px, 2vw, 24px);
  padding-right: clamp(16px, 3vw, 70px);
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

.navbar__logo-container {
  display: flex;
  align-items: center;
  gap: 1px;
  min-width: 0;              /* taşmayı engeller */
  flex: 0 1 auto;
}

.navbar__logo,
.navbar__name {
  display: inline-flex;
  align-items: center;
  min-width: 0;               
}

.navbar__logo img,
.navbar__name img {
  height: clamp(25px, 3vw, 40px);
  width: auto;
  display: block;
  max-width: 180px;          /* büyük isim görseli taşmasın */
  height: auto;
}

.navbar__menu {
  list-style: none;
  margin: 5px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__link,
.navbar__button {
  font-weight: 200;
  font-size: clamp(16px, 2.2vw, 32px);
  line-height: 1;
  text-decoration: none;
}

.navbar__link { color: #481D24; }

.navbar__link:hover,
.navbar__link:focus { text-decoration: underline; }

.navbar__button {
  background: #481D24;
  color: #f8f8f8;
  padding: 20px 20px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar__button:hover {
  background: #d9d9d9;
  color: #481D24;
  animation: button-hover 0.3s ease-in-out;
}

.navbar__button:focus { filter: brightness(0.95); }

/* -------------------------
   Hero Banner
------------------------- */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 85vh;
  min-height: 60vh;
  overflow: hidden;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none; /* switched on for mobile breakpoints */
}

.banner-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.banner-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(60px, 10vh, 200px);
  pointer-events: none;
}

.banner-content > * { pointer-events: auto; }

.banner-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 6.5vw, 96px);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  z-index: 20;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
               0 8px 30px rgba(0, 0, 0, 0.4),
               0 2px 10px rgba(0, 0, 0, 0.6);
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
}

.banner-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  color: #ffffff;
  margin: 20px 0;
  text-align: center;
  position: relative;
  z-index: 20;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-button {
  background: #481D24;
  color: #D9D9D9;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 20px;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 40px;
  z-index: 20;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-button:hover {
  background: #D9D9D9;
  color: #481D24;
}

/* -------------------------
   Quote slider (replaces logo slider)
------------------------- */
.quote-slider {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.quote-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  animation: quote-slide 100s linear infinite;
}

.quote {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  color: #481D24;
  margin: 0;
  white-space: nowrap;
  font-size: clamp(12px, 3.5vw, 48px);
}

.quote-author {
  margin-left: 6px;
  font-weight: 600;
}

@keyframes quote-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - clamp(20px, 6vw, 120px))); }
}

/* -------------------------
   Footer gradient wrapper
------------------------- */
.grad1 {
  background-color: #f8f8f8;
  background-image: linear-gradient(to top, #d9d9d9, #f8f8f8);
  width: 100%;
  margin-top: auto;
}

/* -------------------------
   Page content (About, Privacy, etc.)
------------------------- */
.page-content {
  width: 100%;
  min-height: calc(100vh - 200px);
  padding: clamp(40px, 8vh, 80px) 0;
  background: #f8f8f8;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: clamp(60px, 8vh, 100px);
}

.about-hero {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.about-gif {
  display: block;
  max-width: 760px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.page-container {
  width: auto;
  max-width: 900px;
  padding: clamp(24px, 4vw, 80px);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  box-sizing: border-box;
}

.page-container h1 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(56px, 4.5vw, 72px);
  font-weight: 700;
  color: #481D24;
  margin: 0 0 24px 0;
  line-height: 1.1;
}

.page-container h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(72px, 3.5vw, 96px);
  font-weight: 700;
  color: #481D24;
  margin: 24px 0 12px 0;
}

.page-container h3 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  color: #481D24;
  margin: 24px 0 12px 0;
}

.page-container h4 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #481D24;
  margin: 24px 0 12px 0;
}

.page-container p {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  color: #481D24;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

/* Wide screens (base improvement; refined again in >=1441) */
@media screen and (min-width: 1200px) {
  .page-container {
    max-width: calc(100vw - 200px);
    margin: 0 100px;
    padding: clamp(40px, 5vw, 100px);
  }
  .page-container p { font-size: clamp(28px, 1.6vw, 36px); }
  .page-container h1 { font-size: clamp(52px, 2.8vw, 80px); }
}

/* -------------------------
   Footer
------------------------- */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: auto;
  padding: 18px;
  background: transparent;
  color: #481D24;
  box-sizing: border-box;
  z-index: 100;
}

.footer-left {
  text-align: left;
  padding-left: clamp(12px, 4vw, 32px);
  box-sizing: border-box;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.footer-right {
  text-align: right;
  padding-right: clamp(12px, 4vw, 32px);
  box-sizing: border-box;
  display: flex;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 10px;
}

.footer-link {
  color: #481D24;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.footer-link:hover { text-decoration: underline; }

/* ✅ single source of truth (duplicate removed) */
.footer-text {
  font-size: clamp(12px, 1.0vw, 18px);
  vertical-align: bottom;
  color: #481D24;
  margin: 0;
}

/* ✅ footer logo responsive, not too aggressive */
.footer-logo {
  height: 26px;
  width: auto;
  vertical-align: bottom;
  margin-right: 8px;
}

/* -------------------------
   Cards Section + Swiper
------------------------- */
.cards-section {
  min-height: 100vh;
  height: auto;
  padding: 0;
  background: #f8f8f8;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
}

/* Cards container default (was missing/fragmented in original) */
.cards-container {
  width: 80%;
  max-width: 80vw;
  height: auto;
  margin: clamp(30px, 6vw, 60px) auto;
  box-sizing: border-box;
}

.cards-header {
  margin-bottom: 30px;
  text-align: center;
}

.cards-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(24px, 4.2vw, 72px);
  font-weight: 700;
  color: #481D24;
  margin: 0 0 12px 0;
  line-height: 1.05;
}

.cards-content {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.cards-text {
  flex: 1;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(20px, 1.8vw, 30px);
  color: #481D24;
  text-align: center;
}

.cards-text p { margin: 0 0 20px 0; }

.cards-slider-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-right: clamp(0px, 8vw, 100px);
}

/* Swiper base sizing */
.swiper {
  width: 100%;
  max-width: min(960px, 90vw);
  height: 100%;
  max-height: min(1280px, 80vh);
  aspect-ratio: 3 / 4;
  transform: scale(0.85); 
  transform-origin: center top;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  /* ✅ Avoid "black edge bands" with contain: provide a stable background */
  background: #f8f8f8;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

/* =========================================================
   WIDTH BREAKPOINTS (ONE @media per breakpoint)
   ========================================================= */

/* -------------------------
   <= 400px (Small mobile)
------------------------- */
@media screen and (max-width: 400px) {
  .navbar {
    height: 60px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .navbar__logo-container { gap: 2px; }
  .navbar__logo img { height: 40px; }

  /* hide brand name on very small screens */
  .navbar__name { display: none; }

  /* Make nav visible but show only the button */
  .navbar__nav { position: static; transform: none; opacity: 1; visibility: visible; }
  .navbar__menu { display: flex; }
  .navbar__menu li { display: none; }
  .navbar__menu li:first-child { display: block; }

  .navbar__link,
  .navbar__button {
    font-size: 14px;
    padding: 8px 12px;
  }

  .navbar__button {
    margin: 6px 8px;
    width: auto;
    padding: 8px 12px;
    border-radius: 30px;
  }

  .hero-banner {
    height: 100vh;
    min-height: 100vh;
    margin-top: 60px;
  }

  .banner-content {
    padding: 60px 6px 0;
    max-width: calc(100% - 12px);
  }

  .banner-title {
    white-space: normal;
    font-size: 42px;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5),
                 0 4px 16px rgba(0, 0, 0, 0.4),
                 0 1px 6px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
  }

  .banner-subtitle { font-size: 14px; }
  .banner-button { font-size: 12px; padding: 8px 16px; margin-top: 30px; }

  /* mobile uses video instead of image */
  .banner-image { display: none; }
  .banner-video { display: block; }

  .quote-track { gap: clamp(30px, 5vw, 70px); padding: clamp(15px, 2.5vw, 50px); }

  /* Cards compact */
  .cards-section { min-height: auto; }
  .cards-container {
    width: calc(100vw - 20px);
    min-width: 260px;
    margin: 10px;
  }
  .cards-header { margin-bottom: 20px; }
  .cards-header h2 { font-size: clamp(18px, 5vw, 28px); }

  .cards-content { flex-direction: column; gap: 20px; }
  .cards-text { text-align: center; font-size: clamp(14px, 4.2vw, 18px); line-height: 1.5; }
  .cards-text p { margin-bottom: 16px; }

  .cards-slider-wrapper { justify-content: center; padding-right: 0; }

  .swiper { max-width: 360px; max-height: 420px; transform: scale(0.95); transform-origin: center top; }
  .swiper-slide img { object-fit: cover; }

  /* Footer: stack */
  .footer { flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 12px; }
  .footer-right { order: 1; flex-direction: column; gap: 6px; align-items: center; padding-right: 0; margin-bottom: 0; }
  .footer-left { order: 2; flex-direction: column; align-items: center; gap: 6px; padding-left: 0; margin-bottom: 0; }
  .footer-logo { height: 16px; margin-right: 0; }
  .footer-text { font-size: 12px; }
  .footer-link { font-size: 14px; }
}

/* -------------------------
   401px–768px (Large mobile / small tablet)
------------------------- */
@media screen and (min-width: 401px) and (max-width: 768px) {

  /* =========================
     NAVBAR (single button)
     ========================= */

  .navbar {
    min-height: 60px;          /* height yerine min-height -> taşma olursa kaybolmaz */
    height: auto;
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .navbar__logo-container {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .navbar__logo img {
    height: 40px;
    width: auto;
    display: block;
  }

  /* name'i gizle */
  .navbar__name { display: none; }

  /* nav her zaman görünür (dropdown yok) */
  .navbar__nav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    flex: 0 0 auto;
  }

  .navbar__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
  }

  /* Tek buton */
  .navbar__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    padding: 8px 12px;
    line-height: 1;

    margin: 0;                /* kritik: margin yüzünden aşağı kayıp “yok” olmasın */
    width: auto;
    border-radius: 30px;

    white-space: nowrap;      /* tek satır */
  }

  /* Eğer başka bir yerde .navbar__link'e block/100% verilmişse bunu sabitle */
  .navbar__link { display: inline; width: auto; }

  /* =========================
     HERO
     ========================= */

  .hero-banner {
    height: 100vh;
    min-height: 100vh;
    margin-top: 60px; /* navbar min-height ile uyumlu */
  }

  .banner-image { display: none; }
  .banner-video { display: block; }

  .banner-content { padding: 80px 20px 0; }

  .banner-title {
    font-size: 56px;
    margin-bottom: 12px;
    white-space: normal;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5),
                 0 6px 20px rgba(0, 0, 0, 0.4),
                 0 2px 8px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
  }

  .banner-subtitle { font-size: 16px; }
  .banner-button { font-size: 14px; padding: 10px 18px; }

  /* =========================
     QUOTE SLIDER
     ========================= */
  .quote-track {
    gap: clamp(35px, 6vw, 80px);
    padding: clamp(20px, 3vw, 60px);
  }

  /* =========================
     CARDS
     ========================= */
  .cards-section { min-height: 100vh; }

  .cards-container {
    width: calc(100vw - 30px);
    min-width: 300px;
    margin: 15px;
  }

  .cards-header { margin-bottom: 24px; }
  .cards-header h2 { font-size: clamp(22px, 4.4vw, 36px); }

  .cards-content {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .cards-text {
    font-size: clamp(14px, 4.2vw, 26px);
    text-align: center;
  }

  .cards-slider-wrapper {
    justify-content: center;
    padding-right: 0;
    width: 100%;
  }

  /* Sliderı küçült ama layout bozulmasın */
  .swiper {
    max-width: 600px;
    max-height: 800px;
    aspect-ratio: 3 / 4;

    transform: scale(0.70);
    transform-origin: center top;

    /* scale sonrası sağa/sola taşmayı engellemek için */
    margin: 0 auto;
  }

  /* =========================
     FOOTER
     ========================= */
  .footer { padding: 12px; }

  .footer-right { gap: 10px; font-size: 12px; }
  .footer-left  { padding-left: 8px; font-size: 12px; }

  .footer-text { font-size: 12px; }
  .footer-logo img { height: 20px; width: auto; display: block; }
}


/* -------------------------
   769px–1024px (Tablet)
------------------------- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .navbar {
    height: 50px;
    padding-left: 18px;
    padding-right: 50px;
  }

  .navbar__logo img { height: 40px; }
  .navbar__name img { height: 30px; }

  .navbar__link,
  .navbar__button { font-size: 20px; }

  .hero-banner { margin-top: 50px; }

  .banner-title {
    font-size: 80px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5),
                 0 7px 25px rgba(0, 0, 0, 0.4),
                 0 2px 9px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 9px 22px rgba(0, 0, 0, 0.5));
  }

  .banner-content { padding-top: 80px; }
  .banner-title { white-space: normal; }

  /* Cards */
  .cards-section { min-height: 80vh; }
  .cards-container {
    width: calc(100vw - 60px);
    min-width: 320px;
    margin: 0 auto;
  }

  .cards-header { margin-bottom: 30px; }
  .cards-header h2 { font-size: clamp(28px, 5vw, 62px); }

  .cards-content { flex-direction: column; gap: 30px; }
  .cards-text { font-size: clamp(16px, 3.6vw, 36px); text-align: center; }

  .cards-slider-wrapper { justify-content: center; padding-right: 0; }

  .swiper { max-width: 720px; max-height: 960px; transform: scale(0.75); transform-origin: center top; }

  .quote-track { gap: clamp(40px, 7vw, 100px); padding: clamp(25px, 4vw, 70px); }
}

/* -------------------------
   1025px–1440px (Laptop)
------------------------- */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  /* Navbar: ~25% smaller & stable */
  .navbar { height: 50px; padding-left: 15px; padding-right: 45px; }
  .navbar__logo img { height: 40px; }
  .navbar__name img { height: 30px; max-width: 220px; }
  .navbar__logo-container { gap: 2px; }
  .navbar__name { min-width: 0; overflow: hidden; }
  .navbar__menu { gap: 16px; }
  .navbar__link, .navbar__button { font-size: 20px; }
  .navbar__button { padding: 10px 18px; border-radius: 30px; }

  /* Page content scale */
  .page-container { padding: 30px; border-radius: 38px; max-width: calc(100% - 160px); }
  .page-container h1 { font-size: 39px; }
  .page-container h2 { font-size: 54px; }
  .page-container p { font-size: 21px; }

  /* Cards: left align text slightly */
  .cards-container { width: 75%; margin: 0 auto; }
  .cards-text { text-align: left; padding-left: 20px; font-size: 20px; }
  .cards-text p { margin-bottom: 18px; }
  .cards-header h2 { font-size: clamp(24px, 3.6vw, 48px); }
  .cards-content { gap: 60px; }

  /* Swiper: keep size same, but remove heavy shadow look */
  .swiper { max-width: min(960px, 90vw); transform: scale(0.85); transform-origin: center top; }
  .swiper-slide {
    /* softer shadow to avoid dark bands */
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    background: #f8f8f8;
  }

  /* Quote size slightly smaller */
  .quote { font-size: clamp(12px, 2.4vw, 26px); }
  .quote-track { gap: clamp(20px, 6vw, 50px); }

  /* Footer: slightly smaller */
  .footer { padding: 14px; }
  .footer-left { padding-left: 24px; }
  .footer-right { padding-right: 24px; }
  .footer-text { font-size: 18px; }
  .footer-link { font-size: 18px; }
  .footer-logo { height: 26px; }
}

/* -------------------------
   >= 1441px (Large desktop)
------------------------- */
@media screen and (min-width: 1441px) {
  .navbar {
    height: 50px;
    padding-left: 24px;
    padding-right: 70px;
  }

  .navbar__logo img { height: 40px; }
  .navbar__name img { height: 30px; }

  .navbar__link,
  .navbar__button { font-size: 28px; }

  .banner-title { font-size: 140px; }

  .cards-container {
    width: calc(100vw - 100px);
    margin: 0 auto;
  }

  .cards-header h2 { font-size: clamp(36px, 4.5vw, 96px); }

  .cards-text {
    font-size: clamp(20px, 2.8vw, 60px);
    text-align: left;
    padding-right: clamp(30px, 5vw, 100px);
  }

  .cards-slider-wrapper { justify-content: flex-end; padding-right: 0; }

  .swiper { max-width: 1200px; max-height: 1600px; transform: scale(0.85); transform-origin: center top; }

  .quote { font-size: clamp(20px, 2.5vw, 30px); }
  .quote-track { gap: clamp(30px, 6vw, 60px); padding: clamp(0px, 2vw, 20px); }

  .footer-logo { height: 26px; }
}

/* =========================================================
   HEIGHT BREAKPOINTS (kept separate; grouped at end)
   ========================================================= */

/* Short viewports (mobile landscape / short windows) */
@media screen and (max-height: 900px) {
  .hero-banner { height: auto; min-height: 55vh; }
  .banner-container { height: auto; }
  .cards-section, .cards-container { height: auto; min-height: 0; }
  .grad1 { margin-top: auto; }
}

@media screen and (max-height: 700px) {
  .hero-banner { min-height: 45vh; }
  .banner-container { height: auto; }
  .banner-content { padding-top: 36px; }
}

@media screen and (max-height: 600px) {
  .hero-banner { min-height: 38vh; }
  .banner-content { padding-top: 28px; }
  .cards-container { min-height: 160px; }
}

@media screen and (max-height: 500px) {
  .hero-banner { min-height: 32vh; }
  .banner-content { padding-top: 20px; }
  .cards-container { min-height: 140px; }
}

/* Mid-height fix: prevent footer floating on medium-short heights */
@media screen and (min-height: 501px) and (max-height: 1100px) {
  html, body { height: 100%; }
  body { min-height: 100vh; display: flex; flex-direction: column; }
  main { flex: 1 0 auto; }

  .hero-banner, .banner-container, .banner-image, .banner-video,
  .quote-slider, .quote-track,
  .cards-section, .cards-container, .cards-content, .cards-slider-wrapper {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .grad1 { margin-top: auto; position: relative; }
}


