/*
Theme Name: House Of Rings
Author: Pratham Wadhwa
Description: A custom theme for house of rings
Version: 1.0
*/

/* fonts----------------- */

@font-face {
  font-family: "Avenir Next Rounded Std";
  src: url("../house-of-rings/assets/fonts/AvenirNextRoundedStd-Reg.woff")
    format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Avenir Next Rounded Std";
  src: url("../house-of-rings/assets/fonts/AvenirNextRoundedStd-Med.woff")
    format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Avenir Next Rounded Std";
  src: url("../house-of-rings/assets/fonts/AvenirNextRoundedStd-Bold.woff")
    format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Jedira";
  src: url("../house-of-rings/assets/fonts/jedira-italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Jedira";
  src: url("../house-of-rings/assets/fonts/jedira-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Adelia";
  src: url("../house-of-rings/assets/fonts/adelia.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  background-color: #fffaf3;
}

ul.slick-dots li.slick-active {
    opacity: 1;
}

ul.slick-dots button {
    display: none;
}
ul.slick-dots li {
    width: 12px;
    height: 12px;
    opacity: 0.5;
    background: #991C38;
    border-radius: 30px;
}

ul.slick-dots {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 12px;
    justify-content: center;
    list-style-type: none;
    margin-top: 30px;
}

.button {
  display: block;
  padding: 0 24px;
  max-width: max-content;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease;
  text-decoration: none;
  font-family: "Poppins";
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-dark {
  background-color: #991b38;
  color: #fff;
  border: 1px solid #991b38;
}

.button-dark:hover {
  background-color: transparent;
  border: 1px solid #991b38;
  color: #991b38;
}

/* Announcement bar ------------------------------  */

.announcement-bar {
  background-color: #171717;
  height: 40px;
  display: flex;
  align-items: center;
}

.announcement-bar__wrapper {
  max-width: 1440px;
  padding-block: 12px;
  padding-inline: 20px;
  margin: auto;
	width: 100%;
	TEXT-ALIGN: center;
}

.announcement-bar__wrapper p,.announcement-bar__wrapper marquee {
  color: #bfbfbf;
  font-family: "Quicksand", sans-serif;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 1px;
	max-width: 60%;
  margin: 0 auto;
  text-align: center;
}

/* header _----------------------------------- */
.mobile-menu-trigger {
  display: none;
}
.header {
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 9;
  top: 0;
  left: 0;
  transition: transform 0.3s ease-in-out;
}
.header.hidden {
  transform: translateY(-100%);
}
.header.scrolled {
  background: white;
}

.scrolled.header .announcement-bar {
  display: none;
}
.header-container {
  max-width: 1440px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
  padding-block: 27px;
}

.header-menu-list {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 50px;
  list-style-type: none;
  align-items: center;
}

.header-menu-list li a {
  font-family: "Avenir Next Rounded Std";
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  transition: 300ms ease;
}

.header-menu-list li a:hover {
  color: #991b38;
}

/* Hero-section--------------------------------- */
.hero-section {
  position: relative;
}
.hero-image picture {
    width: 100%;
    height: auto;
}
.hero-section__wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  max-width: 1440px;
  padding-inline: 20px;
}

.hero-content {
  max-width: 467px;
}

.hero-content h2,
.hero-content h3 {
  font-family: "Jedira";
  font-size: 32px;
  color: #991c38;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 1.6px;
  margin: 0;
}
.hero-content h3 {
  font-size: 28px;
}

.hero-content h2 span,
.hero-content h3 span {
  font-family: "Adelia";
  font-size: 40px;
  color: #991c38;
  letter-spacing: 1.6px;
  font-weight: 400;
}

.hero-image {
  max-width: 100%;
  width: 100%;
  height: 630px;
  display: flex;
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% -0.3vw;
}

.explore-btn {
  margin-top: 73px;
}

/* About section _------------------------  */

.about-section {
  padding: 80px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  max-width: 1140px;
  margin: auto;
}

.about-image {
  flex: 1;
  max-width: 407px;
}

.about-image img {
  width: 100%;
  object-fit: cover;
  height: auto;
  max-width: 407px;
  margin-left: auto;
  display: block;
  aspect-ratio: 407 / 451;
}

.about-content {
  flex: 1;
  color: #333;
}

.about-content .tagline {
  color: #c8aa8d;
  font-size: 24px;
  letter-spacing: -0.48px;
  font-family: "Avenir Next Rounded Std";
  margin: 0;
  margin-bottom: 10px;
}

.about-content h2 {
  color: #991c38;
  font-family: "Avenir Next Rounded Std";
  font-size: 40px;
  margin: 0;
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 35px;
}

.about-content p {
  font-size: 18px;
  color: #2a2a2a;
  line-height: 24px;
  font-family: "Avenir Next Rounded Std";
  font-weight: 400;
}

/* about-brand image---------------------- */

.about-brand {
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.about-brand-image {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-brand-image img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  display: block;
  object-fit: cover;
}

.about-brand-overlay {
  background: #ffffff;
  opacity: 0.83;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.about-brand-wrapper {
    max-width: 840px;
    padding-inline: 20px;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    right: 0;
    height: 522px;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-brand-wrapper h2 {
  font-family: "Avenir Next Rounded Std";
  font-weight: 400;
  font-size: 34px;
  line-height: 100%;
  margin: 0 0 60px 0;
  color: #000000;
  letter-spacing: 0.34px;
  text-align: center;
}

.about-brand-wrapper h2 span {
  color: #991b38;
  font-size: 48px;
  font-family: "Avenir Next Rounded Std";
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.48px;
}

.about-brand-wrapper p {
  font-family: "Avenir Next Rounded Std";
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.48px;
  color: #000000;
  margin: 0 auto;
  text-align: center;
  max-width: 654px;
}

/* stores list on map ------------------ */

.store-on-map-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.store-list {
  max-width: 270px;
  width: 100%;
  display: grid;
  gap: 50px;
}
.store-list-item h2 {
  margin: 12px 0 7px 0;
  font-family: "Avenir Next Rounded Std";
  color: #991c38;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 100%;
  font-weight: 500;
}

.store-list-item p {
  font-size: 12px;
  font-family: "Avenir Next Rounded Std";
  color: #991c38;
  line-height: 15px;
  margin: 0;
  letter-spacing: 0.48px;
  font-weight: 400;
}

.store-on-map {
  padding: 64px 20px;
  background: #ffffff;
}

/* Footer ----------------- */

.footer {
  border-top: 2px solid #991c38;
  padding-top: 44px;
  background: #f6f0ea;
}

.footer-main {
  display: flex;
  max-width: 1440px;
  margin: auto;
  padding-inline: 20px;
  gap: 80px;
  justify-content: space-between;
  padding-bottom: 30px;
}
.footer-vector img {
  width: 100%;
  height: auto;
}
.footer-column.column-brand {
  max-width: 248px;
  display: grid;
  gap: 20px;
}

.footer-column.column-brand p {
  color: #4b4b4b;
  font-size: 14px;
  font-family: "Avenir Next Rounded Std";
  font-weight: 400;
}

.footer-column.column-menu h2 {
  font-family: "Quicksand";
  color: #991c38;
  font-size: 20px;
  margin: 0;
  line-height: 18px;
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}

.footer-menu-list {
  padding: 0;
  list-style-type: none;
  display: grid;
  gap: 0;
  margin: 0;
}

.footer-menu-list li a {
  text-decoration: none;
  color: #032730;
  font-family: "Poppins";
  font-weight: 300;
  font-size: 12px;
  line-height: 27px;
}
.footer-column.column-map iframe {
  border-radius: 5px;
  width: 100%;
}
.footer-bottom {
  padding-block: 20px;
  text-align: center;
}
.footer-bottom p,.footer-bottom p a {
  color: #9a9a9a;
  font-weight: 400;
  font-family: "Poppins";
  font-size: 14px;
	text-decoration:none;
  margin: 0;
  line-height: 100%;
}
.footer-bottom p:first-child {
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-vector {
  position: absolute;
  top: 160px;
  z-index: 7;
  width: 100%;
}
.footer-wrapper {
  position: relative;
}

/* gallery of rings ---------------------- */

.ring-gallery {
  padding-block: 64px;
}

.ring-gallery-wrapper {
  max-width: 1440px;
  margin: auto;
  padding-inline: 20px;
}
.gallery-header {
  text-align: center;
  display: grid;
  gap: 8px;
}
.gallery-header span {
  color: #bbbbbb;
  font-size: 24px;
  line-height: 140%;
  font-family: "Avenir Next Rounded Std";
  margin: 0;
  font-weight: 400;
  letter-spacing: 0;
}

.gallery-header h2 {
  font-size: 40px;
  font-family: "Avenir Next Rounded Std";
  font-weight: 400;
  color: #991c38;
  line-height: 35px;
  letter-spacing: 1px;
  margin: 0;
}

.ring-gallery-image h3 {
  color: #991c38;
  font-family: "Avenir Next Rounded Std";
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.38px;
  text-align: center;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
}
.ring-gallery-body {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 0.8fr;
  gap: 28px;
  margin-top: 48px;
}
.ring-gallery-image img {
  width: 100%;
  height: 100%;
}
.ring-promise-inner img {
  margin: auto;
}
.ring-promise-item {
  padding-inline: 18px;
}

.ring-gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 500px 500px 60px 60px;
}

.ring-gallery-column.column-full .ring-gallery-image {
  border-radius: 500px;
}
.ring-gallery-column.column-break {
  display: grid;
  gap: 22px;
}
.ring-gallery-column.column-break .ring-gallery-image h3 {
  bottom: 16px;
}
.ring-gallery-column.column-full h3 {
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
.ring-gallery-image:hover h3 {
  color: #fff;
}

.ring-gallery-image a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #991c38db;
  z-index: 0;
  filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.ring-gallery-image:hover a {
  opacity: 1;
  visibility: visible;
}

/* ring promiise slider  */
.ring-promise-inner {
  border: 0.5px solid #deb235;
  border-radius: 25px;
  text-align: center;
  padding: 30px 45px;
}
.ring-promise-inner h3 {
  font-family: "Avenir Next Rounded Std";
  font-weight: 500;
  font-size: 18px;
  margin: 0;
  letter-spacing: 0.38px;
  margin-top: 26px;
  margin-bottom: 18px;
}
.ring-promise-inner p {
  font-family: "Avenir Next Rounded Std";
  color: #535353;
  font-size: 12px;
  line-height: 18px;
  max-width: 90%;
  margin: 0 auto;
  min-height: 80px;
}
.ring-promise-slider {
  margin-top: 48px;
}
.ring-promise-wrapper {
  padding-left: 66px;
}
.ring-promse-slider {
  padding: 48px 0 58px 0;
}

/* Testimonial-------------------- */

.testimonial-inner {
  border: 0.5px solid #deb235;
  border-radius: 25px;
  background: #ffffff;
}
.testimonial-inner p {
  padding: 32px 36px 92px;
  text-align: center;
  font-family: "Avenir Next Rounded Std";
  font-size: 16px;
  font-weight: 400;
  color: #020202;
  line-height: 21px;
  background: #ffe0c64f;
  margin: 0;
  border-radius: 25px;
}
.testimonial-slider {
  margin-top: 48px;
}
.testimonial-image h3 {
  font-weight: 500;
  font-size: 18px;
  color: #000;
  font-family: "Avenir Next Rounded Std";
}
.testimonial-image {
  text-align: center;
  position: relative;
  top: -40px;
}
.testimonial-item {
  padding: 0 11px;
}
.testimonial-image img {
  margin: auto;
}

.testimonial-slider {
  padding: 40px 0 55px 74px;
}

/* owner intro=------------------------ */

.owner-intro-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  position: relative;
}
.owner-sec {
  background-size: cover;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #991c38;
}
.owner-intro-header h2 {
  font-family: "Avenir Next Rounded Std";
  font-weight: 400;
  color: #3b3b3b;
  margin: 0;
  font-size: 46px;
  line-height: 146%;
  letter-spacing: -1px;
}
.owner-intro-body p {
  max-width: 287px;
  color: #2a2a2a;
  font-size: 18px;
  font-weight: 400;
  font-family: "Avenir Next Rounded Std";
  line-height: 120%;
  margin: 0;
}
.owner-intro-container {
  display: grid;
  gap: 38px;
  padding: 90px;
  max-width: 540px;
  padding-right: 20%;
  margin-left: auto;
  width: 100%;
}
.owner-footer-item span {
  font-family: "Avenir Next Rounded Std";
  color: #2a2a2a;
  font-weight: 400;
  font-size: 20px;
}

.owner-footer-item h3 {
  font-size: 46px;
  color: #2a2a2a;
  font-family: "Avenir Next Rounded Std";
  font-weight: 400;
  margin: 0;
}

.owner-intro-header p {
  color: #8e8e8e;
  font-size: 20px;
  font-family: "Avenir Next Rounded Std";
  margin: 0;
  letter-spacing: 0;
}
.owner-intro-footer {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.owner-sec ul {
  color: #fff;
  font-size: 18px;
  font-family: "Avenir Next Rounded Std";
  line-height: 100%;
  display: grid;
  gap: 30px;
  padding: 90px;
  padding-left: 35%;
  max-width: 550px;
  margin-right: auto;
  width: 100%;
}
.owner-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  width: fit-content;
	max-width: 420px;
}
.owner-image img {
  width: 100%;
  height: auto;
}

/* customer inquiry-------- */
.customer-enquiry-wrapper {
  display: grid;
  max-width: 1440px;
  margin: auto;
  padding-inline: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.customer-get-intouch {
  border: 1px solid #991b38;
  border-radius: 25px;
  padding: 50px;
  max-width: 244px;
  padding-left: 125px;
  padding-right: 20px;
  display: grid;
  gap: 18px;
}
.customer-get-intouch h2 {
  margin: 0;
  color: #991b38;
  font-family: "Avenir Next Rounded Std";
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.54px;
}
.customer-touch {
  display: flex;
  align-items: center;
  gap: 10px;
}
.customer-touch a {
  text-decoration: none;
  color: #000;
  font-family: "Poppins";
  font-size: 12px;
  line-height: 40px;
}
.rounded-button {
  background: #991b38;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  color: #fff;
  text-decoration: none;
  max-width: 130px;
  font-family: "Avenir Next Rounded Std";
  font-size: 12px;
  letter-spacing: 0.5px;
}
.customer-get-intouch {
  border: 1px solid #991b38;
  border-radius: 25px;
  padding: 50px;
  max-width: 244px;
  padding-left: 125px;
  padding-right: 20px;
  display: grid;
  gap: 18px;
  position: absolute;
  right: 50px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  z-index: 0;
}
.customer-image {
  position: relative;
  z-index: 1;
  width: 65%;
}
.customer-enquiry-touch {
  display: flex;
  position: relative;
  padding-right: 50px;
  padding-top: 24px;
}
.customer-enquiry {
  padding-bottom: 46px;
}
.customer-enquiry-form {
  background: #fff;
  border-radius: 15px;
  padding: 22px 34px;
}

.customer-form h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  font-family: "Avenir Next Rounded Std";
  color: #991c38;
}
.customer-form input,
.customer-form textarea {
  width: 100%;
  height: 47px;
  background: hsl(0deg 0% 74% / 9%);
  border: none;
  border-radius: 4px;
  padding: 0 18px;
  display: block;
  max-width: 90%;
}
.customer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}
input.wpcf7-form-control.wpcf7-submit {
  display: flex;
  max-width: 130px;
  border-radius: 5px;
  background: #991b38;
  margin: auto;
  color: #fff;
  font-family: "Avenir Next Rounded Std";
  text-transform: uppercase;
  font-size: 12px;
}

.franchise-enquiry-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1440px;
  margin: auto;
  padding-inline: 20px;
}
.franchise-enquiry {
  background-size: cover;
  height: 100%;
  padding-block: 70px;
  position: relative;
}
.ring-promise-inner img {
  width: 80px;
  height: auto;
}
.franchise-detail-inner {
  max-width: 500px;
  text-align: right;
  margin-left: auto;
}
.franchise-detail-inner span {
  margin: 0;
  font-family: "Avenir Next Rounded Std";
  font-weight: 400;
  color: #656565;
  font-size: 24px;
  letter-spacing: -0.5px;
}
.franchise-detail-inner h2 {
  font-family: "Avenir Next Rounded Std";
  color: #991c38;
  font-size: 40px;
  font-weight: 500;
  margin: 0 0 46px;
}
.franchise-detail-inner p {
  max-width: 394px;
  color: #2a2a2a;
  margin-left: auto;
  font-size: 18px;
  font-family: "Avenir Next Rounded Std";
  font-weight: 400;
  line-height: 24px;
  margin-top: 0;
}
.franchise-detail-inner a {
  margin: 40px 0 0 auto;
}
.franchise-details {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
section.franchise-enquiry:before {
  content: "";
  background: linear-gradient(to bottom, #f9f0e7, rgba(255, 255, 255, 0));
  mix-blend-mode: lighten;
  width: 50%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 1280px) {
  .owner-intro-container {
    padding: 90px;
    max-width: 540px;
    padding-right: 29%;
    padding-left: 60px;
    width: 65%;
  }
  .owner-image {
    width: 100%;
    max-width: 320px;
  }
  .customer-enquiry-wrapper {
    grid-template-columns: 1fr 400px;
  }
}

@media screen and (max-width: 1024px) {
  .mobile-menu-trigger {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    border: none;
    background: transparent;
  }
	.mobile-menu-active .header {
    background: #FFF;
	}
	.announcement-bar__wrapper p, .announcement-bar__wrapper marquee {
		max-width: 90%;
	}
	.header.main-header.scrolled.hidden .header-menu-list.active {
    top: 100px;
	}
	.header.main-header.scrolled .header-menu-list.active {
    top: 108px;
	}
  .header-menu-list {
    position: fixed;
    flex-direction: column;
    max-width: 440px;
    background: #fff;
    left: -120%;
    width: 100%;
    align-items: baseline;
    top: 148px;
    padding: 30px 20px;
    gap: 40px;
    height: 100vh;
	  transition: .3s linear;
  }
	.header-menu-list.active {
   	left: 0;
	}
  .footer-main {
    flex-wrap: wrap;
  }
  .footer-vector {
    top: 77%;
  }
  .store-on-map-wrapper {
    flex-direction: column;
  }
  .store-list {
    max-width: 100%;
    width: 100%;
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(3, 1fr);
  }
  .store-list-item {
    display: grid;
    justify-content: center;
    text-align: center;
  }
  .store-list-item img {
    margin: auto;
  }
  .store-map-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .store-map-image {
    width: 100%;
  }
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-brand-image img {
    max-height: 600px;
    height: 600px;
  }
  .customer-enquiry-wrapper {
    grid-template-columns: auto;
    gap: 24px;
  }
  .customer-get-intouch {
    padding-left: 50px;
    padding-right: 20px;
    position: unset;
  }
  .customer-image {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .owner-intro-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .owner-intro-container {
    padding: 90px;
    padding-right: 20px;
    padding-left: 20px;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .owner-intro-body p {
    margin: auto;
    max-width: 80%;
  }
  .owner-intro-container {
    padding-bottom: 290px;
  }
  .owner-sec ul {
    padding: 90px;
    padding-left: 20px;
    max-width: 100%;
    margin: auto;
    width: 80%;
    padding-right: 20px;
  }
  .franchise-enquiry-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .franchise-detail-inner {
    max-width: 100%;
    margin: auto;
    text-align: center;
  }
  .franchise-detail-inner span {
    color: #000;
  }
  .franchise-detail-inner p {
    max-width: 90%;
    color: #000;
    margin: auto;
    font-size: 14px;
    font-family: "Avenir Next Rounded Std";
    font-weight: 400;
    line-height: 24px;
    margin-top: 0;
  }
  .franchise-detail-inner a {
    margin: 40px auto 0 auto;
  }
  .franchise-detail-inner h2 {
    font-size: 28px;
    margin: 20px 0 26px;
  }
	.customer-enquiry-form {
    order: 1;
}
	.franchise-details {
    order: 0;
}
	section.franchise-enquiry:before {
		width: 100%;
	}
	.franchise-enquiry-wrapper {
    position: relative;
    z-index: 2;
}
}

@media screen and (min-width: 601px) {
  .ring-gallery-image.image-second h3 {
    top: 16px;
  }
  .ring-gallery-image.image-second {
    border-radius: 60px 60px 500px 500px;
  }
}

@media screen and (max-width: 600px) {
	.hero-image{
    height: auto;
	}
	
	.hero-section__wrapper {
    display: none;
}
	.footer-main {
	gap: 48px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-vector {
    display: none;
  }
  .ring-gallery-body {
    grid-template-columns: 1fr;
  }
  .ring-gallery-column.column-break {
    grid-template-columns: repeat(1, 1fr);
  }
  .ring-gallery-body {
    grid-template-columns: 1fr;
  }
  .ring-promise-wrapper {
    padding-left: 10px;
  }
  .ring-promise-item {
    padding-inline: 10px;
  }
  .testimonial-header.gallery-header {
    padding: 0 20px;
  }
  .testimonial-slider {
    padding: 0px 0 55px 10px;
  }
  .gallery-header h2 {
    font-size: 24px;
    letter-spacing: 0px;
  }
  .gallery-header span {
    font-size: 18px;
  }
  .announcement-bar__wrapper p {
    font-size: 10px;
    letter-spacing: 0px;
  }
  .header-logo img {
    max-width: 220px;
    height: auto;
  }
  .hero-content h2,
  .hero-content h3 {
    font-size: 24px;
  }
  .hero-content h2 span,
  .hero-content h3 span {
    font-size: 24px;
  }
  .hero-content h3 {
    font-size: 24px;
  }
  .explore-btn {
    margin-top: 30px;
  }
  .about-content .tagline {
    font-size: 18px;
  }
  .about-content h2 {
    font-size: 24px;
  }
  .about-content p {
    font-size: 14px;
    margin: 0;
  }
  .about-brand-wrapper h2 span {
    font-size: 28px;
  }
  .about-brand-wrapper h2 {
    font-size: 24px;
  }
  .about-brand-wrapper p {
    font-size: 14px;
  }
  .about-brand-image img {
    max-height: 440px;
    height: 400px;
  }
  .ring-gallery-image {
    border-radius: 0;
  }
  .ring-gallery-image a {
    background: transparent;
    opacity: 1;
    visibility: visible;
  }
  .store-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .ring-gallery-image.image-second h3 {
    bottom: unset;
    top: 16px;
  }
  .owner-intro-container {
	  background-image: url(https://houseofrings.com/wp-content/uploads/2025/06/background.png);
    padding: 40px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 260px;
    width: 90%;
    max-width: 100%;
  }
	.owner-image {
		top: -160px;
	}
	.owner-sec {
		padding-top: 80px;
		background-image: none !important;
        background: #fffaf3;
	}
  .owner-intro-body p {
    max-width: 100%;
    font-size: 14px;
	  color: #FFF;
  }
  .owner-intro-header h2 {
    font-size: 28px;
	  color: #FFF;
  }
  .owner-intro-header p {
    font-size: 16px;
	  color: #FFF;
  }
  .owner-footer-item h3 {
    font-size: 28px;
	  color: #FFF;
  }
  .owner-footer-item span {
    font-size: 16px;
	  color: #FFF;
  }
  .owner-sec ul {
    font-size: 14px;
    line-height: 140%;
	  color: #000;
  }
  .customer-enquiry-touch {
    flex-direction: column;
    padding-right: 0;
  }
  .customer-image {
    width: 100%;
  }
  .customer-get-intouch {
    padding-left: 50px;
    padding-right: 50px;
    position: unset;
    width: 100%;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
	.about-container {
        gap: 48px;
    }
}
