/* ===================================
   JANA SMALL FINANCE BANK
   Legends Savings Account - Landing Page
   =================================== */

/* ---- CSS Variables (Root) ---- */
:root {
  /* Primary Colors */
  --color-primary: #d7117c;
  --color-primary-dark: #b50e69;
  --color-primary-light: #f9d0e6;
  --color-primary-lighter: #fdf1f8;
  --color-light-pink: #f8d2e7;

  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-black: #000000;

  /* Text Colors */
  --color-text-dark: #1A1A2E;
  --color-text-heading: #222222;
  --color-text-body: #4A4A4A;
  --color-text-light: #6B6B6B;
  --color-text-muted: #888888;

  /* Background Colors */
  --color-bg-light: #F7F7F7;
  --color-bg-footer: #fdf1f8;
  --color-bg-form: #d7117c;
  --color-bg-form-dark: #b50e69;

  /* Hero Section */
  --color-hero-bg: #F5F0EB;
  --color-hero-gradient-start: #F9F5F0;
  --color-hero-gradient-end: #EDE7E0;

  /* Borders */
  --color-border: #E0E0E0;
  --color-border-light: #F0F0F0;

  /* Badges */
  --color-badge-bg: rgba(255, 255, 255, 0.92);

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-nav: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-badge: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-btn: 0 4px 15px rgba(215, 17, 124, 0.3);

  /* Container Sizes */
  --container-big: 1700px;
  --container-small: 1400px;

  /* Font Family */
  --font-primary: 'Poppins', sans-serif;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 50px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-body);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: var(--font-primary);
  outline: none;
  border: none;
  background: none;
}

/* ---- Container System ---- */
.container-big {
  max-width: var(--container-big);
  margin: 0 auto;
  padding: 0 78px;
  width: 100%;
}

.container-small {
  max-width: var(--container-small);
  margin: 0 auto;
  padding: 0 0px;
  width: 100%;
}

/* =============================
   NAVBAR
   ============================= */
   .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: var(--shadow-nav);
  }

  .navbar .container-big {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .navbar__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .navbar__logo-img {
    height: 70px;
    width: auto;
  }

  .navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    padding-right: 30px;
  }

  .navbar__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-dark);
    position: relative;
    padding: 4px 0;
  }

  .navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-normal);
  }

  .navbar__links a:hover {
    color: var(--color-primary);
  }
  .btn--primary:hover {
   color: var(--color-white);
  }

  .navbar__links a:hover::after {
    width: 100%;
  }

  .navbar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }

  .navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--color-text-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
  }

/* Mobile overlay nav */
.navbar__mobile-overlay {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.navbar__mobile-overlay.active {
  display: flex;
}

.navbar__mobile-overlay a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-dark);
  border-bottom: 1px solid var(--color-border-light);
}

.navbar__mobile-overlay a:hover {
  color: var(--color-primary);
  background: var(--color-primary-lighter);
  border-radius: var(--radius-md);
}

.navbar__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-btn);
  transform: translateY(-1px);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* =============================
   HERO SECTION
   ============================= */
   .hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-hero-gradient-start) 0%, var(--color-hero-gradient-end) 50%, transparent 50%);
    background-color: var(--color-hero-bg);
    overflow: hidden;
  }

  .hero .container-big {
    min-height:480px;
  }

  .hero__content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    position: relative;
    z-index: 2;
  }

  .hero__label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-heading);
    margin-bottom: 8px;
  }

  .hero__title .highlight {
    color: var(--color-primary);
  }

  .hero__underline {
    width: 50px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
    margin: 16px 0 20px;
  }

  .hero__subtitle {
    font-size: 1rem;
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: 0px;
  }

  .hero__buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero__image {
    flex: 0 0 50%;
    /*position: relative;*/
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  /* .hero__image picture {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  } */
  .hero__image picture img{
        width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero__badge {
    position: absolute;
    top: 30px;
    right: 75px;
    background: var(--color-badge-bg);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-badge);
    z-index: 3;
  }

  .hero__badge-top {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 500;
  }

  .hero__badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
  }

  .hero__badge-bottom {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 500;
  }

/* =============================
   BENEFITS SECTION
   ============================= */
   .benefits {
    padding: 70px 0;
    background-color: var(--color-white);
  }

  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-header__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 12px;
  }

  .section-header__underline {
    width: 40px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    margin: 0 auto;
  }

  .benefits__grid {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
  }

  .benefit-card {
    flex: 1 1 20%;
    text-align: center;
    padding: 36px 24px;
    border: none;
    border-right: 1px solid rgba(215, 17, 124, 0.18);
    transition: all var(--transition-normal);
    position: relative;
  }

  .benefit-card:last-child {
    border-right: none;
  }

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

  .benefit-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .benefit-card__icon svg {
    width: 52px;
    height: 52px;
  }

  .benefit-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .benefit-card__desc {
    font-size: 0.945rem;
    color: var(--color-text-light);
    line-height: 1.6;
  }

  /* =============================
  HOW IT WORKS SECTION
  ============================= */
  .how-it-works {
   padding: 70px 0;
   background-color: var(--color-bg-light);
 }

 .steps {
   display: flex;
   align-items: flex-start;
   justify-content: center;
   gap: 0;
   position: relative;
   max-width: 900px;
   margin: 0 auto;
 }

 .step {
   flex: 1;
   text-align: center;
   position: relative;
   padding: 0 20px;
 }

 .steps--actions {
   align-items: stretch;
   gap: 0;
   max-width: 840px;
 }

 .action-card {
   padding: 36px 28px;
   border-right: 1px solid rgba(215, 17, 124, 0.18);
 }

 .action-card:last-child {
   border-right: none;
 }

 .action-card__icon {
   width: 70px;
   height: 70px;
   margin: 0 auto 20px;
   border-radius: 50%;
   background-color: #fceaf4;
   color: var(--color-primary);
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .action-card__icon svg {
   width: 30px;
   height: 30px;
 }

 .step__number-wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   position: relative;
 }

 .step__number {
   width: 44px;
   height: 44px;
   border-radius: var(--radius-full);
   background-color: var(--color-primary);
   color: var(--color-white);
   font-size: 1.1rem;
   font-weight: 700;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   z-index: 2;
   flex-shrink: 0;
 }

/* Dotted connector line */
.step:not(:last-child) .step__number-wrapper::after {
 content: '';
 position: absolute;
 top: 50%;
 left: calc(50% + 28px);
 width: calc(100% - 8px);
 height: 2px;
 border-top: 2.5px dashed var(--color-primary);
 z-index: 1;
 transform: translateY(-50%);
}

.step__title {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--color-text-heading);
 margin-bottom: 8px;
}

 .step__desc {
 font-size: 0.825rem;
 color: var(--color-text-light);
 line-height: 1.6;
}

/* =============================
   CONTACT / FORM SECTION
   ============================= */
   .contact {
    background: linear-gradient(135deg, var(--color-bg-form) 0%, var(--color-bg-form-dark) 100%);
    position: relative;
    overflow: hidden;
  }

  .contact .container-big {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact__content {
    flex: 0 0 46%;
    color: var(--color-white);
    position: relative;
    z-index: 2;
  }

  .contact__title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--color-white);
  }

  .contact__subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    color: var(--color-white);
  }

  .contact__decoration {
    position: absolute;
    bottom: -10px;
    left: 40px;
    opacity: 0.15;
    z-index: 1;
  }

  .contact__decoration svg {
    width: 160px;
    height: 160px;
  }

  .contact__form-wrapper {
    flex: 1;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  }

  .contact__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }

  .form-group {
    position: relative;
  }

  .form-group__icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form-group__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
    fill: none;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 14px 14px 14px 42px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    transition: border-color var(--transition-fast);
  }

  .form-group input::placeholder {
    color: var(--color-text-muted);
  }

  .form-group input:focus,
  .form-group select:focus {
    border-color: var(--color-primary);
  }

  .form-group select {
    appearance: none;
    cursor: pointer;
    color: var(--color-text-muted);
  }

  .form-group--select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--color-text-muted);
    pointer-events: none;
  }

  .contact__form-btn {
    width: 100%;
    padding: 14px;
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .contact__form-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.5;
  }

  .contact__form-note svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--color-text-light);
    fill: none;
  }

/* =============================
   FAQ TEASER SECTION
   ============================= */
   .faq-teaser {
    padding: 50px 0;
    background-color: var(--color-white);
  }

  .faq-teaser .container-small {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .faq-teaser__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 6px;
  }

  .faq-teaser__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
  }

  .faq-teaser__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    margin-top: 8px;
    transition: gap var(--transition-fast);
  }

  .faq-teaser__link:hover {
    gap: 12px;
  }

  .faq-teaser__link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
  }

  .faq-teaser__link:hover svg {
    transform: translateX(4px);
  }
  span.fusia-color{
    color: var(--color-primary);
  }
  .error-massage{
    color: #d7117c;
    font-size: 0.8rem;
    margin-top: 4px;
  }
  .mandatory-field .form-group__icon{
    top: 33%;
  }
  .tc-aaply{
    position: relative;
  }
  .tc-aaply span{
    position: absolute;
    right: 14px;
    bottom: 4px;
    color: #fff3eb;
    font-size: 14px;
    font-weight: 600;
  }
  .hero__logo{
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    margin-left: -23px;
  }
  .hero__logo-i{
    width: 100%;
    max-width: 129px;
    height: auto;
  }

/* =============================
   TRUST BAR / FOOTER
   ============================= */
   .trust-bar {
    background-color: #d7117c;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
  }

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

  .trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    min-height: 92px;
  }

  .trust-item:last-child {
    border-right: none;
  }

  .trust-item__icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
  }

  .trust-item__icon svg {
    width: 100%;
    height: 100%;
    stroke: rgba(255, 244, 240, 0.96);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .trust-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
  }

  .trust-item__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
  }
  .product-overview-card ul li,.hero__subtitle li{
    list-style: disc; 
    margin-left: 0px;
    padding-left:0px;
  }
  .hero__subtitle,  .product-overview-card ul{
    padding-left: 13px;
  }
  .product-overview-card ul li::marker,.hero__subtitle li::marker {
    color: var(--color-primary); /* Bullet color */
}
.product-overview .row .product-overview-card:nth-child(odd) {
    background-color: var(--color-light-pink);
    border: 1px solid var(--color-light-pink);
}
.product-overview .row .product-overview-card {
    padding: 20px;
    border: 1px solid #eee;
    background-color: var(--color-white);
}
.product-overview .row {
    column-gap: 20px;
    row-gap: 20px;
}
.product-overview .col-lg-4{
          flex: 1 0 0%;
}
/* =============================
   RESPONSIVE – 1200px
   ============================= */
   @media (max-width: 1200px) {

    .container-big,
    .container-small {
      padding: 0 40px;
    }

    .hero__title {
      font-size: 2.5rem;
    }

    .contact__title {
      font-size: 1.8rem;
    }
  }

/* =============================
   RESPONSIVE – 1024px (Tablet)
   ============================= */
   @media (max-width: 1024px) {
    .hero .container-big {
      flex-direction: column;
      min-height: auto;
    }

    .hero__content {
      flex: none;
      width: 100%;
      padding: 50px 0 30px;
      text-align: left;
    }

    .hero__image {
      flex: none;
      width: 100%;
      max-height: 400px;
      overflow: hidden;
    }

    .hero__badge {
      top: 20px;
      right: 20px;
    }

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

    .steps {
      max-width: 100%;
    }

    .contact .container-big {
      flex-direction: column;
      gap: 40px;
    }

    .contact__content {
      flex: none;
      width: 100%;
      text-align: center;
    }

    .contact__form-wrapper {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }

    .trust-bar__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .trust-item {
      border-right: none;
    }
  }

/* =============================
   RESPONSIVE – 768px (Mobile)
   ============================= */
   @media (max-width: 768px) {

    .container-big,
    .container-small {
      padding: 0 20px;
    }

    /* Navbar - Hamburger */
    
    .navbar__hamburger {
      display: flex;
    }

    .navbar .container-big {
      height: 64px;
    }

    /* Hero */
    .hero__title {
      font-size: 2rem;
    }

    .hero__subtitle {
      font-size: 0.9rem;
    }

    .hero__content {
      padding: 40px 0 24px;
    }

    /* Benefits */
    .benefits {
      padding: 50px 0;
    }

    .benefits__grid {
      display: grid;
      grid-template-columns: 1fr;
    }

    .benefit-card {
      border-right: none;
      border-bottom: 1px solid rgba(215, 17, 124, 0.18);
    }

    .benefit-card:last-child {
      border-bottom: none;
    }

    .section-header__title {
      font-size: 1.4rem;
    }

    /* Steps */
    .how-it-works {
      padding: 50px 0;
    }

    .steps {
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }

    .step {
      padding: 0;
      max-width: 300px;
    }

    .step:not(:last-child) .step__number-wrapper::after {
      display: none;
    }

    /* Contact */
    .contact .container-big {
      padding-top: 40px;
      padding-bottom: 40px;
      gap: 30px;
    }

    .contact__title {
      font-size: 1.6rem;
    }

    .contact__form-grid {
      grid-template-columns: 1fr;
    }

    .contact__form-wrapper {
      padding: 24px;
    }

    /* FAQ */
    .faq-teaser {
      padding: 40px 0;
    }

    .faq-teaser .container-small {
      flex-direction: column;
      gap: 16px;
    }

    /* Trust Bar */
    .trust-bar__grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .product-overview .col-lg-4 {
    flex: 1 0 auto;
}
  }

/* =============================
   RESPONSIVE – 480px (Small mobile)
   ============================= */
   @media (max-width:575px) {
    .hero__title {
      font-size: 1.65rem;
    }

    .hero__buttons {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .hero__buttons .btn {
      width: 100%;
      justify-content: center;
    }

    .hero__badge {
      padding: 10px 14px;
    }

    .hero__badge-number {
      font-size: 1.5rem;
    }

    .section-header__title {
      font-size: 1.25rem;
    }

    .contact__title {
      font-size: 1.35rem;
    }

    .trust-item {
      padding: 12px 16px;
    }
    .navbar__actions .btn{
      padding: 6px 6px;
      font-size: .8rem;
    }
    .navbar__logo-img {
    height: 48px;
    }
        .navbar .container-big {
        height: 53px;
    }
        .hero__content {
        padding: 20px 0 10px;
    }
    .hero__underline{
          margin: 10px 0 14px;
    }
    .hero__label{
          margin-bottom: 8px;
    }
    .hero__subtitle{
      margin-bottom: 0;
    }
        .benefits {
        padding: 35px 0;
    }
    .benefit-card{
          padding: 20px 10px;
    }
    .benefit-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .steps { 
        gap: 20px;
        padding-top:20px;
    }
    .trust-item{min-height:60px;padding:0;}
    .section-header{
      margin-bottom: 10px;
    }
    .hero__image picture img{
    
  object-position: right;
}

  }
