.container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Navbar Styles */
.nabvar {
  margin-top: 30px;
}
.logo img {
  width: 135px;
  height: 82px;
}
.navbar_link_item ul {
  gap: 45px;
  font-family: "Inter", sans-serif;
}

.right_sight_items {
  gap: 45px;
}

.cart_section {
  gap: 20px;
}
.navbar_link_item ul li:nth-child(1) {
  color: rgb(37, 36, 50);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
ul li:nth-child(2) {
  color: rgb(137, 135, 161);
}
ul li:nth-child(3) {
  color: rgb(137, 135, 161);
}

/* Hero section Styles */

.hero_content {
  margin-top: 30px;
}
.hero_section_right img {
  width: 570px;
  height: 355px;
  float: right;
}

.hero_content,
.plants_header_section {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.3rem;
  font-family: "Noto Serif", serif;
  
}
.hero_content p,
.plants_header_section p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.3rem;
  font-family: "Inter", sans-serif;
  
}
.hero_content h1 {
  font-family: "Noto Serif", serif;
  font-size: 4rem;
  color: rgb(0, 0, 0);
  
}

/* Our Plants Section Styles */

.plants_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.plants_header_section h1 {
  color: rgb(0, 0, 0);
 
}
.plants_header_section p {
  font-family: "Inter", sans-serif;
  width: 70%;
}
.card_1 {
  width: 270px;
}
.card_name_with_price {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 10px;
  color: rgb(17, 17, 17);
}
.card_name_with_price .price {
  font-weight: 700;
  color: rgb(17, 17, 17);
}
button {
  width: 100%;
  height: 50px;
  background-color: #e95a08;
  color: white;
  font-weight: 600;
  margin-top: 10px;
}

/* Plants and Flowers Lover Section Styles */

.flower_lover_section {
  gap: 55px;
  margin-top: 200px;
}
.trusted_seller_image {
  position: relative;
  width: 50%;
}
.trusted_seller_image img {
  width: 540px;
  height: 597px;
}
.trusted_seller_batch img {
  width: 286px;
  height: 286px;
  position: absolute;
  top: -135px;
  right: -100px;
}

.flower_lover_content {
  width: 50%;
  display: flex;
  align-items: center;
}
.content_of_flower {
  width: 540px;
}
.flower_lover_content h1 {
  width: 80%;
  font-family: "Noto Serif", serif;
  font-size: 50px;
  font-weight: 700;
}
.flower_lover_content ul li {
  color: rgba(0, 0, 0, 0.5);
  list-style: disc;
 font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-left: 25px;
}
/* Anination Trusted_batch Plants and Flowers Lover Section Styles */

 .badge{

  animation: spin 10s linear infinite;
 }
 @keyframes spin{
        100%{ transform: rotate(360deg);}
 }

/* Letest deals Section Styles */

.latest_deals > h1 {
  font-size: 3rem;
  color: #e95a08;
  font-weight: 700;
  text-align: center;
  margin-top: 120px;
  font-family: "Noto Serif", serif;
}
.latest_deals > p {
  width: 70%;
  text-align: center;
  margin: auto;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.3rem;
  margin-top: 20px;
}
.latest_deals h1 span {
  color: black;
  font-weight: 700;
}

.images_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px auto;
}
.left_sight {
  display: grid;
  row-gap: 25px;
}
.left_sight .content_title h1 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Noto Serif", serif;
}
.left_sight .content_title span {
  font-size: 1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
.first_image::before,
.second_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.first_image,
.second_image {
  width: 360px;
  height: 202px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.first_image {
  background-image: url("../assets/deal-bloom.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.second_image {
  background-image: url("../assets/deal-ana.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.right_sight {
  width: 750px;
  height: 430px;
  background-image: url("../assets/deal-zabo.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right_sight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.content_title {
  position: relative;
  color: white;
  z-index: 5;
  text-align: center;
  display: grid;
  row-gap: 5px;
}
.content_title span {
  text-decoration: underline;
}

.right_sight .content_title h1 {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Noto Serif", serif;
}

.right_sight .content_title span {
  font-size: 2rem;
  font-family: "Inter", sans-serif;
}

/* colorful_brunch_container */
.colorful_brunch_section {
  background-image: url("../assets/news-letter-bg.png");
  width: 100%;
  height: 550px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.colorful_brunch_container h1 {
  font-size: 3rem;
  text-align: center;
  color: white;
  font-family: "Noto Serif", serif;
  font-weight: 700;
}
.search_bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.search_bar input {
  width: 550px;
  background-color: white;
  padding: 12px 20px;
  border: none;
}
.search_bar button {
  width: 200px;
  height: auto;
  background-color: #e95a08;
  color: white;
  font-weight: 600;
  margin-top: 0px;
  border: none;
}

.search_bar button,
input {
  padding: 12px 0;
}

/* Footer section Styles */
.footer_container {
  display: grid;
  grid-template-columns: 40% 35% 25%;
  padding: 80px 0px;
}
.footer_logo img {
  width: 145px;
  height: 90px;
}
.footer_container ul > li,
p {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
.footer_container p {
  font-size: 1.3rem;
  width: 80%;
  margin-top: 14px;
}
.footer_element_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
}
.footer_container ul {
  display: grid;
  row-gap: 30px;
}
.footer_social_link {
  display: flex;
  height: 45px;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

/* *****Responsive [ mobile-(max_width:576) ]***** */

@media screen and (max-width: 576px) {
  /* Public Style With Responsive */
  .nabvar,
  .hero_section_left,
  .our_plants_section,
  .flower_lover_section,
  .letest_deals_header p {
    width: 90%;
    margin: auto;
  }
  .nabvar{
    margin-top: 25px;
  }
  /* Navbar Section Responsive */
  .navbar_link_item {
    display: none;
  }
  .logo img {
    width: 63px;
    height: 38px;
  }

  /* Hero section  */

  .hero_section {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .hero_content h1 {
    font-size: 1.5rem;
  }
  .hero_content p {
    font-size: 14px;
  }
  .hero_section_left {
    order: 1;
  }
  .hero_section_right img {
    width: 450px;
    height: 245px;
    float: inline-end;
    order: 2;
  }

  /* Our Plants And Card Section */

  .plants_header_section h1 {
    font-size: 1.5rem;
    margin-top: 65px;
  }
  .plants_header_section p {
    font-size: 1rem;
    width: 95%;
    margin-top: 16px;
  }
  .plants_container {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    margin: 40px auto;
  }

  .card_1 {
    width: 170px;
  }

  .card_name_with_price {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px;
    color: rgb(17, 17, 17);
  }
  .card_name_with_price .price {
    font-weight: 700;
    color: rgb(17, 17, 17);
  }
  button {
    width: 100%;
    height: 45px;
    background-color: #e95a08;
    color: white;
    font-weight: 600;
    margin-top: 10px;
  }

  /* Lover and Plants section */

  .flower_lover_section {
    flex-direction: column;
  }
  .trusted_seller_image {
    width: 100%;
  }
  .trusted_seller_image img {
  height: 400px;
}
  .flower_lover_content {
    width: 100%;
  }
  .flower_lover_content h1 {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .flower_lover_content ul li {
    font-size: 14px;
    margin-left: 15px;
  }
  .trusted_seller_batch img {
    display: none;
  }

  /* Latest Deals section */

  .latest_deals > h1 {
    font-size: 2rem;
    margin-top: 60px;
  }
  .latest_deals > p {
    width: 90%;
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.125rem;
  }
  .images_container {
    flex-direction: column;
    margin: 40px auto;
  }

  .right_sight {
    width: 360px;
    height: 202px;
    margin-top: 25px;
  }

  .right_sight .content_title h1 {
    font-size: 1.5rem;
  }

  .right_sight .content_title span {
    font-size: 1rem;
  }
  /* Join colorful section */

  .colorful_brunch_section {
    width: 100%;
    height: 270px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
  }
  .colorful_brunch_container h1 {
    font-size: 1.2rem;
    text-align: center;
    color: white;
    font-family: "Noto Serif", serif;
    font-weight: 600;
    margin-top: 45px;
  }
  .search_bar {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  .search_bar input {
    width: 65%;
    background-color: white;
    padding: 12px 20px;
    border: none;
  }
  .search_bar button {
    width: 35%;
    height: auto;
    background-color: #e95a08;
    color: white;
    font-weight: 600;
    margin-top: 0px;
    border: none;
  }

  .search_bar button,
  input {
    padding: 12px 0;
  }

  /* Footer section Responsive */

  .footer_container {
    grid-template-columns: 1fr;
    padding: 50px 30px;
  }

  .footer_element_container {
    grid-template-columns: 1fr;
    gap: 20px 10px;
    margin-top: 30px;
  }
  .footer_social_link{
   justify-content: flex-start;
   margin-top: 30px;
  }

  
}
