/*-----------------------------------*\
  #home.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero-banner {
  display: block;
}

.hero {
  background-image: url("../images/hero-left-bg.png");
  background-color: var(--mint-cream);
  background-repeat: no-repeat;
  background-position: bottom left;
  padding-block: 80px;
}

.hero-subtitle {
  color: var(--emerald);
  font-family: var(--ff-playfair-display);
  font-weight: var(--fw-700);
  font-style: italic;
  letter-spacing: 2px;
  margin-block-end: 20px;
}

.hero-title {
  color: var(--gunmetal-2);
  font-size: var(--fs-1);
  margin-block-end: 15px;
}

.hero-title .span {
  display: inline-block;
  color: var(--emerald);
  font-family: var(--ff-playfair-display);
  font-weight: var(--fw-700);
}

.hero-text {
  color: var(--roman-silver);
  font-size: var(--fs-4);
  line-height: 1.8;
  margin-block-end: 30px;
}





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service {
  background-image: url("../images/partner-left-bg.png");
  background-color: var(--shamrock-green);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-blend-mode: soft-light;
}

.service-list {
  display: grid;
  gap: 15px;
}

.item-icon {
  background-color: var(--white_25);
  max-width: max-content;
  padding: 20px;
  border-radius: 50%;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-title {
  color: var(--white);
}





/*-----------------------------------*\
  #OFFERS
\*-----------------------------------*/

/* 2 ta yonma-yon grid */
.offers-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* Karta */
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  text-align: center;
  transition: transform .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

/* Rasm konteyneri kvadrat nisbatda */
.card-banner {
  aspect-ratio: 1 / 1;
  /* kvadrat */
  overflow: hidden;
  border-radius: 10px;
}

/* Rasm — kvadrat ichida, cho‘zilmaydi */
.card-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* rasmni siqmasdan joylaydi */
  transition: transform .25s ease;
  cursor: zoom-in;
}

.card-banner img:hover {
  transform: scale(1.03);
}

/* Juda kichik ekranlar uchun ham sig‘adir (ixtiyoriy) */
@media (max-width: 360px) {
  .offers-list {
    gap: 12px;
  }

  .product-card {
    padding: 12px;
  }
}



/* Image modal (faqat rasmlar uchun) */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.image-modal.open {
  display: flex;
}

.image-modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  object-fit: contain;
}

.image-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}



.offers-item {
  min-width: 100%;
  margin-inline: 15px;
  scroll-snap-align: start;
}

.offers-card {
  background-color: var(--mint-cream);
  padding: 30px 10px;
  text-align: center;
}

.offers-card .card-banner {
  margin-block-end: 20px;
}

.offers-card .card-banner img {
  max-width: max-content;
  margin-inline: auto;
}

.offers-card .card-subtitle {
  color: var(--emerald);
  font-size: var(--fs-7);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  margin-block-end: 5px;
}

.offers-card .card-title {
  color: var(--gunmetal-2);
  margin-block-end: 12px;
}

.offers-card .btn {
  max-width: max-content;
  margin-inline: auto;
  --fs: var(--fs-8);
  --fw: var(--fw-400);
  --padding: 12px 25px;
}

/* Modal savat*/

/* MODAL FON */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* HIDE CLASS */
.hidden {
  display: none;
}

/* MODAL OYNASI */
.modal-content {
  background: #fff;
  width: 95%;
  max-width: 500px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* MODAL HEADER */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.close-btn {
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
  color: #888;
}

/* FORM USLUBLARI */
.form-grid {
  display: grid;
  gap: 15px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: #00aa66;
}

.submit-btn {
  background-color: #00aa66;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.submit-btn:hover {
  background-color: #008855;
}

/*payment*/
.payment-options {
  display: flex;
  gap: 15px;
  margin: 10px 0;
}

.payment-options input[type="radio"] {
  display: none;
}

.payment-options .pay-option {
  cursor: pointer;
  padding: 10px 20px;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.3s;
  background: #f9f9f9;
}

.payment-options input[type="radio"]:checked+.pay-option {
  border-color: #4CAF50;
  background: #e9f9ef;
  color: #2e7d32;
  font-weight: 600;
}

/* Xato holati */
.form-error {
  color: #d32f2f;
  font-size: 0.9rem;
  margin-top: 6px;
}

.payment-options.error .pay-option {
  border-color: #d32f2f;
  background: #fff5f5;
}

.hidden {
  display: none;
}




/*cart savat*/

/* SAVATCHA IKONKA */
.cart-icon-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
}

#cart-icon {
  background-color: #fff;
  border: 2px solid #00aa66;
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #00aa66;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

#cart-icon:hover {
  background-color: #00aa66;
  color: #fff;
}

#cart-count {
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 12px;
  position: absolute;
  top: -8px;
  right: -8px;
}

/* MODAL */
.cart-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: flex-end;
  z-index: 1000;
}

.hidden {
  display: none;
}

.cart-box {
  background: #ffffff;
  width: 380px;
  max-width: 100%;
  height: 70%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* HEADER */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.cart-header h3 {
  margin: 0;
  color: #333;
}

.close-btn {
  background: none;
  font-size: 24px;
  border: none;
  cursor: pointer;
  color: #888;
}

/* ITEMS */
.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 15px 0;
  list-style: none;
}

.cart-items li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  color: #333;
  font-size: 15px;
}

/* FOOTER */
.cart-footer {
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.total-text {
  font-weight: bold;
  margin-bottom: 10px;
  color: #00aa66;
  font-size: 16px;
}

.checkout-btn {
  width: 100%;
  padding: 10px;
  background-color: #00aa66;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
}

.checkout-btn:hover {
  background-color: #008855;
}






/*-----------------------------------*\
  #PRODUCT
\*-----------------------------------*/

.product {
  padding-block-start: 0;
}

.product .section-title {
  margin-block-end: 40px;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-block-end: 50px;
}



.filter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  background-color: var(--mint-cream);
  color: var(--gunmetal-2);
  padding: 15px 20px;
  font-size: var(--fs-5);
  font-family: var(--ff-playfair-display);
  font-weight: var(--fw-600);
}

.filter-btn.active .default,
.filter-btn .color {
  display: block;
}

.filter-btn .default,
.filter-btn.active .color {
  display: none;
}

.filter-btn.active {
  background-color: var(--emerald);
  color: var(--white);
}

/* Default (desktop) – 4 ustun */
.product .grid-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Tablet va kichik ekranlarda – 2 ustun */
@media (max-width: 768px) {
  .product .grid-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Juda kichkina ekranlarda – 1 ustun */
@media (max-width: 480px) {
  .product .grid-list {
    grid-template-columns: 1fr 1fr;
  }
}






/*-----------------------------------*\
  #CTA
\*-----------------------------------*/

.cta {
  background-image: url("../images/cta-bg.png");
  background-color: var(--mint-cream);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 50px 20px;
}

.cta .section-title {
  --fs-1: 2.5rem;
  margin-block-start: 20px;
}

.cta-text {
  color: var(--sonic-silver);
  font-size: var(--fs-4);
  margin-block: 15px 30px;
}

.cta .btn {
  margin-inline: auto;
}


.product-description {
  font-size: 14px;
  color: #555;
  /* Kulrang matn */
  margin: 8px 0;
}



/*-----------------------------------*\
  #TOP PRODUCT
\*-----------------------------------*/

.top-product .section-title {
  margin-block-end: 40px;
}

.top-product-card .card-banner {
  margin-block-end: 40px;
}

.top-product-card .product-btn {
  --padding: 8px;
  --fs: 1.6rem;
}

.top-product-card .card-content {
  margin-block-end: -46px;
  transition: var(--transition-2);
}

.top-product-card :is(.rating-wrapper, .card-title) {
  margin-block-end: 12px;
}

.top-product-card .rating-wrapper {
  transition: var(--transition-2);
}

.top-product-card .btn,
.top-product-card:is(:hover, :focus-within) .rating-wrapper {
  opacity: 0;
}

.top-product-card:is(:hover, :focus-within) .card-content {
  transform: translateY(-41px);
}

.top-product-card:is(:hover, :focus-within) .btn {
  opacity: 1;
}





/*-----------------------------------*\
  #PARTNER
\*-----------------------------------*/

.partner {
  background-color: var(--emerald);
}

.partner .section-subtitle {
  color: var(--white);
}

.partner .section-title {
  color: var(--white);
  margin-block-end: 40px;
}

.partner-logo {
  max-width: max-content;
  margin-inline: auto;
}

.partner-item {
  min-width: 100%;
  scroll-snap-align: center;
}





/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/

/* Rasm kartasi */
.media-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.media-item:hover {
  transform: translateY(-5px);
}

.media-item img,
.media-item .video-wrapper {
  width: 100%;
  height: 240px;
  /* kartaning balandligi */
  object-fit: contain;
  /* 🔑 rasm kesilmaydi */
  background: #f9f9f9;
  /* bo‘sh joy kulrang fon bilan to‘ldiriladi */
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  /* 🔑 videoni to‘liq qilib beradi */
}

/* Card content */
.card-content {
  padding: 14px;
  text-align: center;
}

.stars {
  color: #fbc02d;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 2px;
  /* 🔑 yulduzlar orasini ochish */
}

.review-text {
  font-size: 14px;
  color: #555;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.4;
}

.client-name {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  display: block;
  margin-top: 5px;
}

/* Grid */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Desktop 3ta */
  gap: 20px;
  align-items: start;
}

/* Mobile */
@media (max-width: 768px) {
  .media-gallery {
    grid-template-columns: repeat(2, 1fr);
    /* Mobile 2ta */
    gap: 15px;
  }

  .media-item img,
  .media-item .video-wrapper {
    height: 180px;
    /* 🔑 mobilda ixchamroq */
  }

  .stars {
    font-size: 16px;
  }

  .review-text {
    font-size: 13px;
  }

  .client-name {
    font-size: 12px;
  }
}


.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
  /* griddan ajratish uchun joy */
  line-height: 1.3;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #fbc02d;
  /* yulduz rangida dekor chiziq */
  margin: 12px auto 0;
  border-radius: 2px;
}




/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.card-media {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-media iframe,
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.card-text {
  flex: 1;
  font-size: 1.5rem;
  color: #444;
  /* biroz to‘q, lekin yumshoqroq rang */
  margin-bottom: 15px;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  /* zamonaviy va chiroyli shrift */
  font-weight: 350;
  /* o‘rtacha qalinlik */
  line-height: 1.6;
  /* o‘qilishi oson bo‘lishi uchun */
}


/* .btn {
  display: inline-block;
  padding: 10px 18px;
  background: #00a859;
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s;
  text-align: center;
} */

.btn:hover {
  background: #008a4b;
}

.insta-media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.insta-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Instagram icon - defaultda yashirin */
.insta-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 10px;
  border-radius: 20px;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-icon {
  width: 24px;
  height: 24px;
}

.insta-text {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

/* faqat hover bo'lganda chiqadi */
.insta-media:hover .insta-overlay {
  opacity: 1;
}





/*-----------------------------------*\
  #NEWSLETTER
\*-----------------------------------*/

.newsletter {
  margin-block-start: 0;
}

.newsletter-card {
  background-color: var(--gunmetal-2);
  padding: 80px 10px;
}

.newsletter .section-subtitle {
  font-size: 1.6rem;
}

.newsletter .section-title {
  color: var(--white);
  font-size: var(--fs-3);
  line-height: 1.6;
  margin-block-end: 40px;
}

.newsletter .section-title .span {
  color: var(--emerald);
  font-size: var(--fs-4);
}

.newsletter-form {
  margin-inline: 20px;
}

.newsletter .input-email {
  background-color: var(--white);
  color: var(--battleship-gray);
  font-size: var(--fs-6);
  padding: 17px 25px;
  border-radius: 50px;
  margin-block-end: 10px;
}

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





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 480px screen
 */

@media (min-width: 480px) {

  /**
   * HERO
   */

  .hero {
    min-height: 550px;
    display: grid;
    align-items: center;
  }



  /**
   * SERVICE
   */

  .service-item {
    justify-content: center;
  }



  /**
   * OFFERS
   */

  .offers-card {
    text-align: left;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 30px 40px;
  }

  .offers-card .card-banner {
    margin-block-end: 0;
    order: 1;
  }

  .offers-card .btn {
    margin-inline: 0;
  }







  /**
   * PARTNER
   */

  .partner-item {
    min-width: 33.33%;
  }



  /**
   * NEWSLETTER
   */

  .newsletter :is(.section-subtitle, .input-email) {
    font-size: 2rem;
  }

  .newsletter .section-title {
    --fs-3: 2.4rem;
  }

  .newsletter .section-title .span {
    font-size: inherit;
    display: inline-block;
  }

  .newsletter-form {
    position: relative;
  }

  .newsletter .input-email {
    padding: 25px 30px;
    padding-inline-end: 160px;
  }

  .newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
    --padding: 0 30px;
  }

}





/**
 * responsive for larger than 569px screen
 */

@media (min-width: 569px) {

  /**
   * HERO
   */

  .hero {
    background-image: url("../images/hero-left-bg.png"), url("../images/hero-right-bg.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right top;
  }

  .hero-title {
    --fs-1: 3.5rem;
  }



  /**
   * SERVICE
   */

  .service-list {
    grid-template-columns: 1fr 1fr;
  }



  /**
   * CTA
   */

  .cta .section-subtitle {
    --fs-3: 3rem;
  }

  .cta .section-title {
    --fs-1: 3.5rem;
  }

  .cta-text {
    --fs-4: 2rem;
  }



  /**
   * TOP PRODUCT
   */

  .top-product-card {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: left;
  }

  .top-product-card .card-banner {
    margin-block-end: 0;
    margin-inline: 0;
  }

  .top-product-card .rating-wrapper {
    --justify-content: flex-start;
  }

  .top-product-card .btn {
    margin-inline: 0;
  }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE FOR HOME
   */

  :is(.hero, .cta, .blog, .newsletter) .btn {
    --fs: 1.8rem;
    --fw: var(--fw-700);
    --padding: 18px 50px;
  }



  /**
   * HERO
   */

  .hero-title {
    --fs-1: 4.5rem;
  }

  .hero-title .span {
    font-size: 5.8rem;
  }

  .hero-banner {
    display: block;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
  }



  /**
   * SERVICE
   */

  .service-list {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * OFFERS
   */

  .offers-list {
    gap: 30px;
  }

  .offers-item {
    min-width: calc(50% - 15px);
    margin-inline: 0;
  }



  /**
   * CTA
   */

  .cta {
    padding-block: 80px;
  }



  /**
   * TOP PRODUCT
   */

  .top-product-list {
    grid-template-columns: 1fr 1fr;
  }

  .top-product-card {
    justify-content: flex-start;
    gap: 15px;
    height: 100%;
  }

  .top-product-card .card-banner {
    min-width: 110px;
  }



  /**
   * PARTNER
   */

  .partner-item {
    min-width: 25%;
  }



  /**
   * TESTIMONIALS
   */

  .testi-item {
    min-width: 50%;
  }



  /**
   * BLOG
   */

  .blog-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
  }



  /**
   * NEWSLETTER
   */

  .newsletter-card {
    padding-inline: 25px;
    background-image: url("../images/partner-left-bg.png"), url("../images/partner-right-bg.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right top;
  }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * HERO
   */

  .hero-title {
    --fs-1: 5rem;
  }



  /**
   * SERVICE
   */

  .service-item {
    gap: 20px;
  }

  .item-icon {
    padding: 25px;
  }

  .item-title {
    --fs-4: 2.7rem;
  }



  /**
   * OFFERS
   */

  .offers-card {
    padding-block: 70px;
  }

  .offers-card .card-title {
    --fs-4: 2.3rem;
  }

  .offers-card .btn {
    --fs-8: 1.5rem;
    --padding: 15px 25px;
  }



  /**
   * PRODUCT
   */

  .filter-btn {
    padding: 30px;
    gap: 15px;
  }

  .filter-btn>img {
    transform: scale(1.5);
  }

 


  /**
   * CTA
   */

  .cta {
    padding-block: 120px;
  }



  /**
   * TOP PRODUCT
   */

  .top-product-list {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * PARTNER
   */

  .partner-item {
    min-width: 20%;
  }



  /**
   * TESTIMONIALS
   */




  /**
   * BLOG
   */

  .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * NEWSLETTER
   */

  .newsletter-card>* {
    max-width: 450px;
    margin-inline: auto;
  }

  .newsletter-card {
    padding-block: 150px;
  }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * HERO
   */

  .hero-title {
    --fs-1: 5.8rem;
  }

  .hero .container {
    grid-template-columns: 1fr 1fr;
  }



  /**
   * OFFERS
   */

  .offers-card .card-title {
    --fs-4: 2.8rem;
    margin-block: 20px;
  }



  /**
   * PARTNER
   */

  .partner {
    padding-block: 150px;
    background-image: url("../images/partner-left-bg.png"), url("../images/partner-right-bg.png");
    background-repeat: no-repeat, no-repeat;
    background-position: bottom left, top right;
  }

  .partner-item {
    min-width: 16.66%;
  }

}