* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
}
/* css variables */
:root {
  --font-family-poppins: "Poppins", sans-serif;
  --font-family-inter: "Inter", sans-serif;
  --font-family-roboto: "Roboto", sans-serif;
  --dark01: #3A3A3A;
  --pink01: #E02C6D;
  --white: #ffffff;
  --font-size01: 1rem;
}
/* css variables */
/* css btn common property */
.btn_primary {
  font-family: var(--font-family-poppins);
  font-size: var(--font-size01);
  border: 0;
  background-color: var(--pink01);
  color: var(--white);
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s linear;
}
.btn_primary:hover {
  transform: translateX(30px);
  background-color: #56a6c5;
  color: black;
}
/* css btn common property */
/*? header section starts here */
.header_section {
  max-width: 1200px;
  margin: 50px auto;
}
/*? Nav section starts here */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu_bar{
  font-size: 2.12rem;
  color: var(--dark01);
  display: none;
}
.logo_title {
  font-family: var(--font-family-poppins);
  font-size: 1.5rem;
  font-weight: 700;
}
.nav_links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.special_links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav_links li {
  list-style: none;
  padding-bottom: 10px;
  border-bottom: 3px solid transparent;
}
.li_1:hover {
  border-bottom: 3px solid green;
}
.li_2:hover {
  border-bottom: 3px solid orangered;
}
.li_3:hover {
  border-bottom: 3px solid slateblue;
}
.li_4:hover {
  border-bottom: 3px solid #adb84a;
}
.nav_link {
  font-family: var(--font-family-poppins);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--dark01);
}
#search_icon {
  width: 24px;
  height: 24px;
  font-size: 1.5rem;
  color: var(--dark01);
  transition: transform 0.3s linear;
}
#search_icon:hover {
  transform: scale(1.35);
}
#cart_icon {
  width: 36px;
  height: 36px;
  font-size: 2.12rem;
  color: var(--dark01);
}
/* Nav section ends here */
/* banner section Starts here */
.banner_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
}
.banner_info_section {
  width: 582px;
  height: 270px;
}
.banner_title {
  font-family: var(--font-family-poppins);
  font-size: 3.12rem;
  font-weight: 700;
  color: var(--dark01);
}
.banner_subtitle {
  font-family: var(--font-family-poppins);
  font-size: var(--font-size01);
  font-weight: 500;
  color: var(--dark01);
  margin-top: 10px;
  margin-bottom: 16px;
}
.prebook_btn {
  width: 196px;
  height: 44px;
  border-radius: 30px;
}
.img_section {
  width: 475px;
  height: 475px;
  background-image: url("../images/Circle\ design.svg");
  background-repeat: no-repeat;
}
.img_section {
  display: flex;
  align-items: center;
}
.img_section img {
  transition: transform 0.5s linear;
}
.img_section img:hover {
  transform: rotate(42deg);
}
/* banner section ends here */
/* header section ends here */

/*? main section Starts here */
/* Sponsors section Starts here */
.sponsors_section {
  width: 1110px;
  margin: 80px auto;
  height: 110px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  place-items: center;
  align-items: center;
  border-block: 2px solid #ebeaea;
}
/* Sponsors section ends here */
/* Popular Collection section Starts here */
.popular_collection_section {
  max-width: 1046px;
  margin: 50px auto;
  height: 1642px;
}
.section_title {
  font-family: var(--font-family-poppins);
  font-size: 1.75rem;
  text-align: center;
  font-weight: 600;
  color: var(--dark01);
  margin-bottom: 40px;
}
.card_box_section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 24px;
}
.card {
  width: 329px;
  height: 476px;
  padding: 14px;
  background-color: white;
  border-radius: 12px;
  cursor: pointer;
  transition: box-shadow 0.3s linear;
}
.card:hover {
  box-shadow: 0 2px 16px 3px rgba(0, 0, 0, 0.7) ;
}
.img_box {
  margin-bottom: 12px;
}
.img_box img{
  border-radius: 12px;
  transition: transform 0.3s linear;
}
.img_box img:hover {
  transform: scale(1.07);
}
.card_title {
  font-family: var(--font-family-poppins);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--dark01);
  margin-bottom: 10px;
}
.card_subtitle {
  font-family: var(--font-family-inter);
  font-weight: 300;
  font-size: 1.50rem;
  color: var(--dark01);
}
.rating_box {
  margin-block: 10px;
}
.star_rating i {
  color: orange;
  width: 16px;
  height: 16px;
}
.rating_value {
  font-family: var(--font-family-roboto);
  color: gray;
  font-weight: 700;
  font-size: 0.9rem;
}
.card_description {
  width: 196px;
  font-family: var(--font-family-inter);
  font-weight: 700;
  font-size: 0.9rem;
  color: gray;
}
.end_subtitle {
  color: var(--pink01);
  font-family: var(--font-family-poppins);
  font-weight: 600;
  display: block;
  text-align: right;
  margin-top: 56px;
  cursor: pointer;
}
.end_subtitle:hover {
  color: orange;
}
/* Popular Collection section ends here */
/* Feature product section Starts here */
.Feature_product_section {
  max-width: 1110px;
  margin: 80px auto;
  height: 270px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Feature_productions_info {
  width: 610px;
  height: 224px;
}
.feature_title {
  font-family: var(--font-family-poppins);
  font-weight: 700;
  font-size: 2.3rem;
  color: #0A0826;
}
.feature_subtitle {
  width: 500px;
  font-family: var(--font-family-poppins);
  font-weight: 700;
  font-size: var(--font-size01);
  color: var(--dark01);
  margin-block: 11px;
}
.join_now_btn {
  width: 155px;
  height: 44px;
}
/* Feature product section Ends here */
/*? main section ends here */

/*? Footer section Starts here */
.footer_section {
  background-color: #040021;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_card {
  width: 262px;
  height: 140px;
  text-align: center;
  margin-block: 50px;
}
.footer_title {
  font-family: var(--font-family-poppins);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}
.copyright_text {
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  margin-block: 13px;
}
.social_media_icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.social_media_icons i {
  background-color: rgba(83, 82, 82, 0.4);
  padding: 8px;
  font-size: 1.2rem;
  color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s linear;
}
.social_media_icons i:hover {
  transform: rotate(45deg) scale(1.17);
}
/*? Footer section ends here */

/*? Responsive for small/mobile devices starts here */

@media screen and (max-width: 576px) {
  .navbar {
    justify-content: space-around;
  }
  .menu_bar {
    display: block;
    font-size: 1.8rem;
  }
  .logo_title {
    font-size: 1rem;
  }
  #cart_icon {
    font-size: 1.8rem;
  }
  .special_links {
    display: none;
  }
  .banner_section {
    flex-direction: column-reverse;
    margin: 20px 0;
  }
  .img_section {
    background-size: 100% 100%;
    background-position: center;
    width: 90%;
    height: 50vh;
    margin-bottom: 20px;
    justify-content: center;
  }
  .img_section img{
    background-size: 100% 100%;
    background-position: center;
    width: 80%;
  }
  .banner_info_section {
    width: 100%;
    text-align: center;
  }
  .banner_title {
    font-size: 1.75rem;
  }
  .banner_subtitle {
    max-width: 80%;
    margin: 24px auto;
    font-size: 0.9rem;
  }
  .sponsors_section {
    width: 80%;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .sponsors_section img {
    width: 94%;
  }
  .popular_collection_section {
    height: 100%;
  }
  .card_box_section {
  max-width: 90%;
  margin: 0 auto;
  grid-template-columns: repeat(1, 1fr);
  place-items: center;
  gap: 24px;
  }
  .end_subtitle {
    text-align: center;
  }
  .Feature_product_section {
    flex-direction: column-reverse;
    max-width: 80%;
    margin: 80px auto;
    height: 100%;
  }
  .Feature_productions_info {
    max-width: 96%;
    margin: 0 auto;
    height: 100%;
    text-align: center;
    text-wrap: balance;
  }
  .feature_title {
    font-size: 1.75rem;
  }
  .feature_subtitle {
    max-width: 100%;
    margin: 16px auto;
    height: 100%;
    height: auto;
    font-size: 0.93rem;
  }
  .join_now_btn {
    margin-bottom: 24px;
  }
  .gear_img_box img{
    width: 100%;
  }
}
/*? Responsive for small/mobile devices  ends here*/


/*? Responsive for medium devices starts here*/

@media screen and (min-width: 577px) and (max-width: 992px) {
  .navbar {
    justify-content: space-around;
    align-items: center;
  }
  .logo_title {
    font-size: 1.2rem;
  }
  .nav_links li a {
    font-size: 0.9rem;
  }
  #cart_icon {
    font-size: 1.6rem;
  }
  .banner_section {
    width: 96%;
  }
  .img_section {
    background-size: 100% 100%;
    background-position: center;
    width: 90%;
    height: 50vh;
    margin-bottom: 20px;
    justify-content: center;
  }
  .img_section img{
    background-size: 100% 100%;
    background-position: center;
    width: 80%;
  }
  .banner_info_section {
    width: 100%;
    text-align: center;
  }
  .banner_title {
    font-size: 1.75rem;
  }
  .banner_subtitle {
    max-width: 80%;
    margin: 24px auto;
    font-size: 0.9rem;
  }
  .sponsors_section {
    width: 80%;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .sponsors_section img {
    width: 50%;
  }
  .popular_collection_section {
    height: 100%;
  }
  .card_box_section {
  max-width: 90%;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 24px;
  }
  .end_subtitle {
    text-align: center;
  }
  .Feature_product_section {
    max-width: 90%;
    margin: 80px auto;
    height: 100%;
  }
  .Feature_productions_info {
    text-align: center;
    max-width: 56%;
    margin: 0 auto;
    height: 100%;
    text-align: center;
    text-wrap: balance;
  }
  .feature_title {
    font-size: 1.75rem;
  }
  .feature_subtitle {
    max-width: 100%;
    margin: 16px auto;
    height: 100%;
    height: auto;
    font-size: 0.93rem;
  }
  .join_now_btn {
    margin-bottom: 24px;
  }
  .gear_img_box img{
    width: 100%;
  }
}
/*? Responsive for medium devices ends here*/