@import url(layout.min.css);
@import url('https://fonts.googleapis.com/css2?family=Allura&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Dancing+Script:wght@502&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Onest:wght@100..900&family=Oswald:wght@200..700&family=Pacifico&family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Dancing+Script:wght@502&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Onest:wght@100..900&family=Oswald:wght@200..700&family=Pacifico&family=Quicksand:wght@300..700&display=swap');

html {
  font-size: 16px;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;

}

.title {
  font-family: Cormorant;
  font-weight: 400;
  font-size: 36px;
  line-height: 46.8px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #832729;
}

.para {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.2px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  color: #000000;
}

:root {
  --white: #ffffff;
  --black: #000;
  --theme-color: #800000;
  --primary: #024922;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.67;
  margin-bottom: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

section {
  padding: 5rem 0;
  position: relative;
}

/* Home Page CSS Start  */
.main-Banner {
  background: url(../images/banner/1.jpg) bottom center / cover fixed no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
}

.bannertext h1 {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}

/* Home Page CSS End */

/* Inner Pages CSS Start */
.innerBanner {
  height: 60vh;
  padding-top: 12rem;
}

/* Inner Pages CSS End */
/* Custum Css Start */
/* Top Header Start */
.top_header p {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 14.11px;
  line-height: 25.4px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin: 0px;
}

.top_header ul {
  display: flex;
  justify-content: end;
  gap: 20px;
}

.top_header ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 25.4px;
  letter-spacing: 0%;
  color: white;
}

.top_header {
  background: #800000;
  color: white;
  padding: 10px;
}

/* Top Header End */
/* Header Start */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  background-color: #fff;
  position: relative;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  /* height: 50px; */
  /* width: auto; */
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
  position: relative;
}

.nav-links li a {
  color: #000;
  transition: color 0.3s;
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14.11px;
  line-height: 25.4px;
  vertical-align: middle;
  text-transform: capitalize;
}


.nav-links li a:hover {
  color: var(--theme-color);
}


.nav-links li:last-child::after {
  display: none;
}

.right-icons {
  display: flex;
  align-items: center;
}

.right-icons a {
  margin-left: 15px;
  text-decoration: none;
  color: #000;
  font-size: 20px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14.11px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.right-icons a:hover {
  color: #ff0000;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  background: none;
  border: none;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 5px 0;
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    /* Start from the right */
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding: 60px 20px;
    z-index: 1000;
    transition: right 0.4s ease-in-out;
    /* Smooth slide from right */
  }

  .nav-links.active {
    display: flex;
    right: 0;
    /* Slide to full width */
    justify-content: center;
    background: var(--theme-color);
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .nav-links li::after {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
  }

  .right-icons {
    position: absolute;
    right: 60px;
    top: 15px;
  }
}

.main_header .container {
  max-width: 1800px;
}

/* Header ENd */

/* Banner Start */
.main_banner .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 23% !important;
  left: 29% !important;
}

.main_banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.main_banner .swiper-container {
  width: 100%;
  height: 100%;
}

.main_banner .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  background-size: cover;
  background-position: center;
  height: 100%;
  transition: transform 0.5s ease;
}

/* 
.main_banner .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
} */

.main_banner .banner-content {
  position: relative;
  z-index: 2;
  color: white;
  width: 50%;
  padding-left: 200px;
}

.main_banner .banner-content h1 {
  margin: 0;
  font-weight: 700;
  font-size: 48px;
  line-height: 62.4px;
  letter-spacing: 0%;
  text-transform: uppercase;
  font-family: "Cormorant", serif;
}

.main_banner .banner-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 32.2px;
  width: 68%;
  padding: 20px 0px 0px;
}

.main_banner .banner-content a {
  background: #000;
  color: white;
  border: none;
  padding: 10px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.main_banner .banner-content a:hover {
  background: #333;
}

.main_banner .swiper-pagination {
  position: absolute;
  bottom: 20px;
  z-index: 2;
}

.main_banner .swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

.main_banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: white;
}

.banner-content h6 {
  padding: 40px 0px 30px;
}

.main_banner .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal span.swiper-pagination-bullet {
  background: black;
}

/* Banner End */
/* Second Section Start */
.second_sec_card {
  display: flex;
  gap: 20px;
  align-items: center;
}

.second_sec_card h6 {
  font-family: Cormorant;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.second_sec_card p {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 25.2px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin: 0px;
}

section.main_second_sec {
  padding: 100px 0px;
  background: #F2F2F2;
}

/* Second Section End */
/* Shop by category Start */
.shop_category_title {
  text-align: center;
  margin-bottom: 50px;
}

.shop_category_card img {
  width: 100%;
}

.shop_category_card h3 {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 24px;
  line-height: 31.2px;
  text-align: center;
  padding: 20px;
  color: #000;
}

section.main_shop_category {
  background: #f2f2f2;
  padding: 0px;
}

/* Shop by category End */
/*ALl Time Favorite Start */
section.main_all_time_favorite {
  background: #f2f2f2;
}

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

.all_time_favorite_title p {
  width: 30%;
  margin: auto;
}

.all_time_favorite_card img {
  height: 360px;
  width: 360px;
  object-fit: cover;
}

.all_time_favorite_card {
  text-align: center;
}

.all_time_favorite_card h6 {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 16px;
  line-height: 16.8px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: #832729;
  padding-top: 20px;
}

.all_time_favorite_card h3 {
  font-family: DM Sans;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  text-transform: capitalize;
  margin: 10px 0px;
  color: #000;
}


.all_time_favorite_card span {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.main_all_time_favorite_cards {
  display: flex;
  justify-content: space-between;
}

/*ALl Time Favorite ENd */
/* Luxury YOu Can Start */
section.main_luxury_you_can {
  /*background: url(../images/home/luxury/luxury-bg.png);*/
  padding: 100px 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.luxury_you_can_title h4 {
  color: white;
  text-align: center;
  margin-bottom: 50px;
}

.luxury_you_can_card {
  background: #ededed;
  text-align: center;
  padding: 10px 20px 30px;
  border-radius: 20px;
  height: 312px;
  display: flex;
  align-items: center;
}

.luxury_you_can_card h6 {
  font-family: DM Sans;
  font-weight: 600;
  font-size: 18.18px;
  line-height: 32.72px;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
}

.luxury_you_can_card p {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 16.14px;
  line-height: 21.21px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin: 0px;
}

/* Luxury YOu Can ENd */
/* Custum Jewellry Start */
.custum_jewelery_img img {
  width: 100%;
  height: auto;
}

.custum_jewelery_title h4 {
  color: black;
  font-weight: 700;
  margin-bottom: 30px;
}

.custum_jewelery_title p {
  font-weight: 400;
  font-size: 17px;
}

.custum_jewelery_title .first {
  margin-bottom: 40px;
}

/* Custum Jewellry End */
/* Our Story Start */
.zoom-in-zoom-out {
  margin: 24px;
  width: 50px;
  height: 50px;
  animation: zoom-in-zoom-out 5s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

section.main_our_story {
  padding: 100px 0px;
}

.our_story_title h6 {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 40px;
  line-height: 86px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: black;
}

.our_story_title h6 span {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 120px;
  vertical-align: middle;
  color: black;
  text-transform: capitalize;
}

.our_story_img1 img {
  width: 100%;
  height: auto;
}

.our_story_img2 img {
  width: 100%;
}

.our_story_content_btn {
  display: flex;
  gap: 20px;
}

.our_story_content_btn a {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: white;
}

.our_story_content_btn a.first {
  background: black;
  padding: 10px 20px;
  border: 1px solid black;
  transition: 0.50s ease;
}

.our_story_content_btn a.first:hover {
  background: transparent;
  color: black;
  transition: 0.50s ease;
}

.our_story_content_btn a.scnd {
  background: #800000;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid #800000;
}

.our_story_content_btn a.scnd:hover {
  background: transparent;
  color: #800000;
}

.our_story_content p {
  font-weight: 400;
  font-size: 17px;
}

.main_our_story_bg_img {
  position: absolute;
  top: 7%;
  right: 4%;
}

.our_story_img3 img {
  width: 100%;
  margin-top: 50px;
}

/* Our Story End */
/* The Perfect Gifting Start */
.perfect_gifting_bg {
  position: relative;
}

.perfect_gifting_bg img {
  width: 100%;
}

.perfect_gifting_bg_content {
  position: absolute;
  bottom: 60px;
  color: white;
  left: 20px;
  width: 60%;
}

.perfect_gifting_bg_content h2 {
  font-family: Cormorant;
  font-weight: 400;
  font-size: 36px;
  line-height: 46.8px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
}

.perfect_gifting_bg_content h6 {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
}

.perfect_gifting_card_rating {
  font-size: 24px;
  color: #ffd700;
  /* Gold color for stars */
}

.perfect_gifting_card_rating .star {
  cursor: pointer;
  user-select: none;
  font-size: 30px;
}

.perfect_gifting_card_rating .star.filled {
  color: #ffd700;
  /* Filled star color */
  font-size: 30px;
}

.perfect_gifting_card_rating .star.half-filled {
  color: #ffd700;
  /* Half-filled star color */
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 0.5em;
}

.perfect_gifting_card_rating .star.half-filled::after {
  content: 'â˜…';
  position: absolute;
  top: 0;
  left: 0;
  color: #ffd700;
  width: 100%;
}

.perfect_gifting_card img {
  width: 100%;
  object-fit: cover;
}

section.main_perfect_gifting.snd {
  padding: 0px;
}

/* The Perfect Gifting ENd */
/* Anniversary Gifts for Couples Start */
section.main_gifts_for_couple {
  padding: 100px 0px;
  background: #800000;
  color: white;
  margin-top: 100px;
}

.gifts_for_couple_card_title h6 {
  color: white;
  margin-bottom: 50px;
  text-align: center;
}

.gifts_for_couple_card {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  background: white;
  width: 40%;
  padding: 20px;
  margin: auto;
}

.gifts_for_couple_card h6 {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 16px;
  line-height: 16.8px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  color: #832729;
  padding-top: 20px;
}

.gifts_for_couple_card h1 {
  font-family: DM Sans;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  text-transform: capitalize;
  margin: 10px 0px;
  color: black;
}

.gifts_for_couple_card span {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: black;
  display: block;
  margin-bottom: 20px;
}

.gifts_for_couple_card a {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: white;
  background: black;
  padding: 10px;
}

.gifts_for_couple_card_content {
  text-align: center;
}

.gifts_for_couple_card_content p {
  color: white;
  line-height: 30px;
  font-size: 15px;
  padding: 50px 0px 50px;
}

.gifts_for_couple_card_content_profile h6 {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 25.2px;
  vertical-align: middle;
  margin: 0px;
}

.gifts_for_couple_card_content_profile h3 {
  font-family: Arial;
  font-weight: 500;
  font-size: 12px;
  line-height: 21.6px;
  vertical-align: middle;
  text-transform: capitalize;
}

.gifts_for_couple_card_content_profile {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.gifts_for_couple_card_content_profile .perfect_gifting_card_rating .star.filled {
  font-size: 16px;
}

.gifts_for_couple_card_content_profile .perfect_gifting_card_rating .star {
  font-size: 16px;
}

.gifts_for_couple_card_content_profile .perfect_gifting_card_rating {
  line-height: 0px;
}

.gifts_for_couple_card_content_profile img.snd {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Anniversary Gifts for Couples End */
/* Tips Trend And More Start */
.tips_and_more_title {
  text-align: center;
  margin-bottom: 50px;
}

section.main_tips_and_more {
  background: #F2F2F2;
  padding: 100px 0px;
}

.tips_and_more_card {
  background: white;
  padding: 50px 30px;
  transition: 0.50s ease !important;
  height: 400px;
  display: flex;
  align-items: center;
}

.tips_and_more_card:hover {
  background: url(../images/home/tips-trend-and-more/tips-and-trend-bg.png);
  transition: 0.50s ease !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tips_and_more_card h6 {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  color: #832729;
}

.tips_and_more_card h2 {
  font-family: Cormorant;
  font-weight: 500;
  font-size: 24px;
  line-height: 31.2px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.tips_and_more_card p {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 25.2px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.tips_and_more_card a {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  background: #FDB200;
  color: white;
  padding: 10px 20px;
  border: 1px solid #FDB200;
  transition: 0.50s ease;
}

.tips_and_more_card a:hover {
  background: transparent;
  color: black;
  border: 1px solid black;
  transition: 0.50s ease;
}

section.main_tips_and_more_img {
  padding: 0px 0px 100px;
  display: flex;
  justify-content: space-between;
  background: #f2f2f2;
}

/* Tips Trend And More ENd */
/* Newsletter STart */
section.main_join_our_newsletter {
  background: url(../images/home/newsletter/newsletter-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 560px;
  display: flex;
  align-items: center;
}

.main_join_our_newsletter_bg {
  width: 100%;
  background: #0000008a;
  padding: 50px;
  color: white;
}

.join_our_newsletter_title h6 {
  font-family: Cormorant;
  font-weight: 400;
  font-size: 28.41px;
  line-height: 48.71px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.join_our_newsletter_title p {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 20.29px;
  line-height: 36.53px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.join_our_newsletter_form input {
  width: 80%;
  padding: 12px;
  outline: none;
  border: none;
  color: black;
  height: 50px;
}

.join_our_newsletter_form {
  position: relative;
}

.join_our_newsletter_form_btn {
  position: absolute;
  top: 0;
  right: 0;
}

.join_our_newsletter_form_btn button {
  background: black;
  color: white;
  border: none;
  font-family: DM Sans;
  font-weight: 500;
  font-size: 14.21px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  height: 50px;
  padding: 0px 25px;
}

/* Newsletter ENd */
/* Footer Start */
.footer_links ul li a:hover {
  color: var(--theme-color);
}

footer {
  padding: 100px 0px 50px;
  background: black;
}

.footer_logo {
  display: flex;
  align-items: center;
  gap: 100px;
}

.footer_logo h3 {
  font-family: Cormorant;
  font-weight: 400;
  font-size: 32.47px;
  line-height: 100%;
  letter-spacing: 1.01px;
  vertical-align: middle;
  text-transform: uppercase;
  color: white;
}

footer .container-fluid {
  max-width: 1530px;
}

.footer_form input {
  width: 100%;
  padding: 13px;
  outline: none;
  border: 2px solid var(--theme-color);
}

.footer_form input::placeholder {
  color: black;
  font-size: 16px;
}

.footer_form {
  position: relative;
}

.footer_form_icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.footer_form_icon button {
  border: none;
  background: transparent;
}

footer hr {
  border: 1px solid var(--theme-color);
  margin: 100px 0px 50px;
}

.footer_links h6 {
  font-family: Cormorant;
  font-weight: 400;
  font-size: 30.44px;
  line-height: 24.35px;
  letter-spacing: 1.01px;
  vertical-align: middle;
  text-transform: capitalize;
  color: white;
  margin-bottom: 30px;
}

.footer_links p {
  font-family: DM Sans;
  font-weight: 300;
  font-size: 14.21px;
  line-height: 26.38px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: white;
  width: 70%;
}

.footer_links ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer_links ul li a {
  font-family: DM Sans;
  font-weight: 300;
  font-size: 14.21px;
  line-height: 25.57px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  color: white;
}

.bottom_footer p {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14.21px;
  line-height: 24.15px;
  color: black !important;
  margin: 0px;
}

.bottom_footer .container-fluid {
  max-width: 1530px;
}

.bottom_footer {
  padding: 20px 0px;
}

.footer_card {
  text-align: end;
}

/* Footer End */
/* Custum Design Inner Page Start */
section.main_inner_banner {
  /*background: url(../images/inner-pages/inner-banner/inner-banner.png);*/
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
  height: 300px !important;
}

section.main_inner_banner h1 {
  font-family: Cormorant;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  text-align: center;
  text-transform: uppercase;
}

.custum-page-scnd-sec {
  position: relative;
  padding: 100px 0px;
  background: #F2F2F2;
}

.custum-page-scnd-sec .swiper-button-prev,
.custum-page-scnd-sec .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.custum-page-scnd-sec .swiper-button-prev:hover,
.custum-page-scnd-sec .swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 1);
}

.custum-page-scnd-sec .swiper-button-prev {
  left: 10px;
}

.custum-page-scnd-sec .swiper-button-next {
  right: 10px;
}

.custum-page-scnd-sec .swiper-button-next:after {
  color: black !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

.custum-page-scnd-sec .swiper-button-prev:after {
  color: black;
  font-size: 16px;
  font-weight: 900;
}

section.main_custum_experience_cards {
  background: #f2f2f2;
  padding: 0px;
}

/* custum ecperience start */
.custum_experience_card h6 {
  font-family: Cormorant;
  font-weight: 600;
  font-size: 13.89px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: start;
  margin: 30px 0px 10px;
  position: relative;
  z-index: 9999;
}

.custum_experience_card p {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: start;
  position: relative;
  z-index: 999;
}

.custum_experience_card {
  text-align: end;
  position: relative;
  z-index: 9999;
  padding-right: 100px;
}

.custum_experience_card_bg {
  position: absolute;
  top: 0;
  left: -100px;
  z-index: 1;
}

section.main_custum_experience_cards .container-fluid {
  max-width: 1700px;
}

/* custum ecperience end */
/* Dedicated Services STart */
section.main_dedicated_services {
  background: #f2f2f2;
  padding: 100px 0px;
}

.dedicated_services_content h3 {
  font-family: Cormorant;
  font-weight: 500;
  font-size: 23.06px;
  line-height: 34.29px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #832729;
  margin-bottom: 30px;
}

.dedicated_services_content p {
  font-family: DM Sans;
  font-weight: 300;
  font-size: 18px;
  line-height: 25.71px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  width: 70%;
  margin: auto;
}

.dedicated_services_img img {
  width: 100%;
}

/* Dedicated Services End */
section.main_gifts_for_couple.snd {
  margin: 0px;
}

/* Custum Design Inner Page End */
/* About Us Inner Page Start */
section.main_inner_banner.snd {
  background: url(../images/inner-pages/inner-banner/inner-banner-1.png);
}

.about_inner_snd_sec_content h6 {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
}

.about_inner_snd_sec_content h2 {
  font-family: Cormorant;
  font-weight: 400;
  font-size: 36px;
  line-height: 46.8px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #832729;
}

.about_inner_snd_sec_content p {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 25.2px;
  letter-spacing: 0%;
  text-transform: capitalize;
  margin-bottom: 70px;
}

.about_inner_snd_sec_content a {
  background: black;
  padding: 10px 20px;
  border: 1px solid black;
  transition: 0.50s ease;
  color: white;
}

.about_inner_snd_sec_content a:hover {
  background: transparent;
  color: black;
  transition: 0.50s ease;
}

section.main_about_inner_snd_sec {
  padding: 100px 0px;
  background: #f2f2f2;
}

.about_inner_snd_sec_img img {
  width: 100%;
  height: auto;
}

.about_inner_snd_sec_content_snd ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about_inner_snd_sec_content_snd ul li {
  font-family: Cormorant;
  font-weight: 400;
  font-size: 63px;
  line-height: 81.9px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: black;
}

.about_inner_snd_sec_content_snd ul li p {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.8px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
}

/* The Most Exquisite Start */
.the_most_exquitisite_about_img img {
  width: 100%;
  height: auto;
}

.the_most_exquitisite_about_content {
  height: 100%;
  padding: 0px 150px;
}

.the_most_exquitisite_about_content h2 {
  font-family: Cormorant;
  font-weight: 400;
  font-size: 36px;
  line-height: 60px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.the_most_exquitisite_about_content p {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0%;
  margin: 30px 0px;
}

.the_most_exquitisite_about_content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0;

}

.the_most_exquitisite_about_contentul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.the_most_exquitisite_about_contentul li img {
  max-width: 100%;
  height: auto;
}

.the_most_exquitisite_about_contentul li h6 {
  margin-top: 10px;
  font-size: 1rem;
}

.the_most_exquitisite_about_content ul h6 {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  margin-top: 20px;
}

section.main_the_most_exquitisite_about {
  padding: 100px 0px;
}

/* The Most Exquisite End */
/* Video Sec Start */
.video-container {
  position: relative;
  width: 100%;

  /* Adjust as needed */
  margin: 0 auto;
}

.video-poster {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;

  /* Adjust size as needed */
}

video {
  width: 100%;
  height: auto;
  display: none;
}

section.main_about_inner_video_bg {
  padding: 0px;
}

/* Video Sec End */
/* About Us Inner Page End */
/* Contact Us Inner Page Start */
section.main_contact_us {
  padding: 100px 0px;
  background: #F2F2F2;
}

.main_contact_us_form input {
  width: 100%;
  padding: 13px;
  border: 1px solid #832729;
  margin-bottom: 30px;
  outline: none;
  background: transparent;
}

.main_contact_us_form input::placeholder {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}

.main_contact_us_form textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #832729;
  margin-bottom: 30px;
  outline: none;
  height: 200px;
  overflow-y: auto;
  resize: none;
  background: transparent;
}

.contact_us_form_check input {
  width: unset !important;
}

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

.contact_us_form_check p {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.8px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.main_contact_us_form {
  box-shadow: 0px 0px 31px 3.5px #0000000D;
  padding: 80px 50px;
}

form.main_contact_us_form button {
  background: black;
  padding: 10px 50px;
  border: 1px solid black;
  transition: 0.50s ease;
  color: white;
}

form.main_contact_us_form button:hover {
  background: transparent;
  color: black;
  transition: 0.50s ease;
}

.main_contact_us_information h6 {
  font-family: Cormorant;
  font-weight: 400;
  font-size: 24px;
  line-height: 31.2px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin: 0px;
}

.main_contact_us_information h2 {
  font-family: Cormorant;
  font-weight: 400;
  font-size: 50px;
  line-height: 65px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.main_contact_us_information p {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 25.2px;
  letter-spacing: 0%;
  vertical-align: middle;
  font-weight: 500;
}

.main_contact_us_information ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main_contact_us_information ul li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main_contact_us_information ul li span {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.main_contact_us_information ul li span a {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: black;
}

.contact_us_social h5 {
  font-family: Cormorant;
  font-weight: 400;
  font-size: 30px;
  line-height: 39px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin: 50px 0px 20px;
}

.contact_us_social ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

.contact_map {
  margin-top: 100px;
}

/* Contact Us Inner Page ENd */
/* Shop Inner Page Start */
.all_shop_inner_sec_section_card {
  position: relative;
}

.all_shop_inner_sec_section_card_btn {
  position: absolute;
  bottom: 30px;
  transform: translateX(-50%);
  left: 50%;
}

.all_shop_inner_sec_section_card_btn a {
  background: black;
  padding: 10px 10px;
  border: 1px solid black;
  transition: 0.50s ease;
  color: white;
  display: flex;
  width: 170px;
  text-align: center;
  justify-content: center;
}

.all_shop_inner_sec_section_card_btn a:hover {
  background: transparent;
  color: black;
  transition: 0.50s ease;
}

.main_all_shop_inner_sec_section_cards {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.all_shop_inne_filter_title h6 {
  font-family: Cormorant;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.4px;
  vertical-align: middle;
  margin: 0px;
}

.all_shop_inne_filter_para p {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin: 0px;
}

.all_shop_inne_filter_options select {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  padding: 10px 20px;
}

.all_shop_inne_filter_options {
  text-align: end;
}

.main_inner_shop_filter_sec {
  margin: 0;
}

.main_inner_shop_filter_sec {
  margin-top: 50px;
}

.main_inner_shop_filter_sec .filter-container {}

.main_inner_shop_filter_sec .accordion {
  margin-bottom: 10px;
}

.main_inner_shop_filter_sec .accordion-header {
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  position: relative;
  font-family: Cormorant;
  font-weight: 400;
  font-size: 19px;
  line-height: 33px;
  letter-spacing: 0.4px;
  vertical-align: middle;
}

.main_inner_shop_filter_sec .accordion-header::after {
  content: '▼';
  /* Down arrow by default (open state) */
  font-size: 12px;
  transition: transform 0.3s ease;
}

.main_inner_shop_filter_sec .accordion-header.active::after {
  content: '▲';
  /* Up arrow when closed */
  transform: rotate(0deg);
  /* Reset rotation for clarity */
}

.main_inner_shop_filter_sec .accordion-header:hover {
  background: white;
}

.main_inner_shop_filter_sec .accordion-content {
  padding: 10px;
  display: block;
  /* Open by default */
}

.main_inner_shop_filter_sec .accordion-content.active {
  display: none;
  /* Closed state */
}

.main_inner_shop_filter_sec .checkbox-item,
.main_inner_shop_filter_sec .range-item {
  margin: 5px 0;
}

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

.main_inner_shop_filter_sec .range-item input[type="range"] {
  width: 100%;
}

.main_inner_shop_filter_sec .range-item input[type="number"] {
  width: 100px;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 3px;
  height: 50px;
}

.main_inner_shop_filter_sec .checkbox-item input[type="checkbox"] {
  margin-right: 5px;
}

.main_inner_shop_filter_sec .show-more {
  color: #007bff;
  cursor: pointer;
  margin-top: 5px;
  display: inline-block;
  color: black;
}

section.main_all_shop_inner_sec_section {
  background: #F2F2F2;
  padding: 100px 0px;
}

section.main_all_shop_inne_filter {
  background: #F2F2F2;
  padding: 0px;
  padding-bottom: 100px;
}

.main_perfect_gifting_cards_snd {
  margin-top: 50px;
}

.main_perfect_gifting_cards_snd .all_time_favorite_card img {
  height: unset;
}

.all_product_inner_view {
  text-align: center;
  margin-top: 100px;
}

.all_product_inner_view a {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 18px;
  vertical-align: middle;
  color: black;
  border-bottom: 11px solid white;
  padding-bottom: 10px;
}

.product_inner_brand_acordion ul {
  display: flex;
  justify-content: space-between;
}

.product_inner_brand_acordion ul li {
  background: white;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 400;
}

/* Shop Inner Page End */
/* Custum Css End */

/* Responsive Start */
@media (min-width: 1401px) and (max-width: 1600px) {}

@media (min-width : 992px) and (max-width : 1400px) {
  .main_perfect_gifting_cards_snd .perfect_gifting_card_rating .star.filled {
    font-size: 19px !important;
  }

  .main_all_shop_inner_sec_section_cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .main_inner_shop_filter_sec .accordion-header {
    font-size: 16px;
    padding: 5px;
  }

  .main_inner_shop_filter_sec .range-item input[type="number"] {
    height: unset;
  }

  .product_inner_brand_acordion ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  form.main_contact_us_form {
    padding: 30px 20px;
  }

  .the_most_exquitisite_about_content {
    padding: 10px;
  }

  .the_most_exquitisite_about_content p {
    margin: 10px 0px;
  }

  .custum_experience_card {
    padding: 0px;
  }

  .custum_experience_card_bg {
    left: 0px;
  }

  .our_story_content_btn a.scnd {
    text-align: center;
    justify-content: center;
  }

  .nav-links li a {
    font-size: 12px;
  }

  .nav-links li {
    margin: 0px 7px;
  }

  .logo {
    left: 60%;
  }

  .right-icons a {
    font-size: 12px;
  }

  .main_banner .banner-content {
    padding: 100px;
    width: 80%;
  }

  .second_sec_card {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .all_time_favorite_title p {
    width: 70%;
  }

  .main_all_time_favorite_cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
  }

  .custum_jewelery_title h4 {
    font-size: 26px;
    line-height: unset;
  }

  .luxury_you_can_card {
    height: unset;
  }

  .luxury_you_can_card p {
    font-size: 14px;
  }

  .main_our_story_bg_img {
    display: none;
  }

  .our_story_img1 img {
    margin-bottom: 50px;
  }

  .our_story_content_btn {
    flex-direction: column;
  }

  .perfect_gifting_bg_content h2 {
    font-size: 24px;
    line-height: unset;
  }

  .perfect_gifting_bg_content {
    bottom: 0px;
  }

  .perfect_gifting_card img {
    object-fit: unset;
    height: unset;
  }

  .tips_and_more_card {
    height: unset;
    padding: 30px 10px;
    text-align: center;
  }

  .tips_and_more_card h2 {
    font-size: 17px;
    line-height: unset;
  }

  .tips_and_more_card p {
    font-size: 12px;
    line-height: unset;
  }

  section.main_tips_and_more_img {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .footer_logo h3 {
    font-size: 24px;
  }

  .footer_logo {
    gap: 20px;
  }

  footer hr {
    margin: 50px 0px;
  }

}

@media (min-width : 768px) and (max-width : 991px) {}

@media (max-width : 992px) {}

@media (max-width : 767px) {
  .main_inner_shop_filter_sec .range-item input[type="number"] {
    width: 100%;
  }

  .main_all_shop_inner_sec_section_cards {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  section.main_all_shop_inner_sec_section {
    padding: 50px 0px;
  }

  .all_shop_inne_filter_title h6 {
    text-align: center;
    margin-bottom: 10px;
  }

  .all_shop_inne_filter_para p {
    text-align: center;
  }

  .all_shop_inne_filter_icon {
    text-align: center;
    margin: 10px 0px;
  }

  .all_shop_inne_filter_options select {
    width: 100%;
  }

  .all_product_inner_view {
    margin: 0px;
  }

  section.main_contact_us {
    padding: 50px 0px;
  }

  form.main_contact_us_form {
    padding: 40px 20px;
  }

  .contact_us_form_check p {
    line-height: unset;
    font-size: 12px;
  }

  form.main_contact_us_form button {
    width: 100%;
  }

  .main_contact_us_information {
    margin-top: 40px;
    text-align: center;
  }

  .main_contact_us_information ul li {
    justify-content: center;
  }

  .contact_us_social h5 {
    margin: 20px 0px 20px;
    text-align: center;
  }

  .contact_us_social ul {
    justify-content: center;
  }

  .contact_map {
    margin-top: 50px;
  }

  .custum-page-scnd-sec {
    padding: 50px 0px;
  }

  .custum_experience_card {
    padding: 0px;
    margin-bottom: 50px;
  }

  .custum_experience_card_bg {
    left: 0px;
    transform: translateX(-50%);
    top: -10px;
  }

  .custum_experience_card_bg img {
    width: 50%;
  }

  section.main_dedicated_services {
    padding-top: 0px;
    padding-bottom: 50px;
  }

  section.main_dedicated_services p {
    margin-bottom: 20px;
    width: unset;
    font-size: 16px;
    line-height: unset;
  }

  section.main_dedicated_services h3 {
    margin-bottom: 10px;
  }

  .dedicated_services_img img {
    margin: 10px 0px;
  }

  section.main_inner_banner {
    height: unset;
  }

  section.main_about_inner_snd_sec {
    padding: 50px 0px;
    text-align: center;
  }

  .about_inner_snd_sec_content a {
    margin-bottom: 20px;
    display: block;
  }

  .about_inner_snd_sec_content p {
    margin: 10px 0px;
  }

  section.main_the_most_exquitisite_about {
    padding: 50px 0px;
  }

  .the_most_exquitisite_about_content {
    padding: 0px;
    text-align: center;
    height: unset;
  }

  .the_most_exquitisite_about_content h2 {
    line-height: unset;
    font-size: 27px;
    margin-top: 30px;
  }

  .the_most_exquitisite_about_content p {
    margin: 10px 0px 20px;
    line-height: unset;
  }

  img.play-button {
    width: 50px;
    background: black;
    border-radius: 50%;
  }

  .main_banner .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: unset !important;
    left: unset !important;
  }

  .main_join_our_newsletter_bg {
    padding: 50px 20px;
  }

  .nav-links li a.home {
    color: white;
  }

  .nav-links li a {
    color: white;
  }


  .right-icons {
    display: none;
  }

  header {
    padding: 40px 0px;
  }

  .logo {
    left: 30px;
  }

  .top_header {
    text-align: center;
  }

  .top_header ul {
    justify-content: center;
  }

  .top_header p {
    display: none;
  }

  .main_banner .banner-content {
    padding: 40px 30px;
    width: unset;
  }

  .banner-content img {
    display: none;
  }

  .banner-content h6 {
    padding: 0px;
  }

  .main_banner .banner-content h1 {
    font-size: 28px;
    line-height: 40px;
    text-shadow: 10px 0px 10px black;
  }

  .main_banner .banner-content p {
    width: unset;
    background: #0000002b;
    padding: 10px 10px;
  }

  .main_banner .swiper-slide {
    height: unset;
  }

  .main_banner {
    height: unset;
  }

  section.main_second_sec {
    padding: 50px 0px;
  }

  .second_sec_card h6 {
    font-size: 19px;
    line-height: unset;
  }

  .second_sec_card {
    margin-bottom: 40px;
  }

  .title {
    font-size: 28px;
  }

  .shop_category_card {
    margin-bottom: 40px;
  }

  section.main_all_time_favorite {
    padding: 0px;
  }

  .all_time_favorite_title p {
    width: unset;
  }

  .all_time_favorite_card {
    margin-bottom: 50px;
  }

  .main_all_time_favorite_cards {
    flex-wrap: wrap;
  }

  .custum_jewelery_title h4 {
    text-align: center;
  }

  .custum_jewelery_title p {
    text-align: center;
    font-size: 13px;
  }

  section.main_luxury_you_can {
    padding: 50px 0px;
  }

  .luxury_you_can_card {
    height: unset;
    border-radius: 0px;
    margin-bottom: 50px;
  }

  .main_our_story_bg_img {
    display: none;
  }

  .our_story_title h6 {
    text-align: center;
    font-size: 30px;
    line-height: unset;
    margin-bottom: 30px;
  }

  .our_story_title h6 span {
    font-size: 30px;
    font-weight: 800;
  }

  .our_story_img2 img {
    margin-bottom: 30px;
  }

  .our_story_content {
    text-align: center;
  }

  .our_story_content_btn {
    flex-direction: column;
  }

  section.main_our_story {
    padding: 50px 0px;
  }

  .perfect_gifting_bg {
    margin-bottom: 30px;
  }

  section.main_gifts_for_couple {
    margin: 0px;
    padding: 50px 0px;
  }

  .gifts_for_couple_card {
    flex-direction: column;
    width: unset;
    text-align: center;
  }

  .gifts_for_couple_card_content p {
    padding: 10px 0px;
  }

  section.main_tips_and_more {
    padding: 50px 0px;
  }

  .tips_and_more_card {
    height: unset;
    margin-bottom: 50px;
    text-align: center;
    text-align: center;
  }

  section.main_tips_and_more_img {
    flex-wrap: wrap;
    gap: 50px;
  }

  .join_our_newsletter_title h6 {
    text-align: center;
  }

  .join_our_newsletter_title p {
    font-size: 13px;
    line-height: unset;
    text-align: center;
  }

  .join_our_newsletter_form input {
    width: 100%;
  }

  .join_our_newsletter_form_btn {
    position: unset;
  }

  .join_our_newsletter_form_btn button {
    width: 100%;
    margin-top: 20px;
  }

  .footer_logo {
    gap: 10px;
    margin-bottom: 20px;
  }

  .footer_logo h3 {
    font-size: 19px;
    text-align: center;
  }

  footer hr {
    margin: 50px 0px;
  }

  .footer_links h6 {
    margin-top: 20px;
    text-align: center;
  }

  .bottom_footer {
    text-align: center;
  }

  .bottom_footer p {
    padding-bottom: 10px;
  }

  .footer_links p {
    text-align: center;
    width: unset;
  }

  .footer_links ul {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width : 400px) {}

@media (max-width : 320px) {}

/* Responsive End */