:root {
  --theme-primary: #e7da9e;
  --theme-primary-hover: #beaf6c;
  --theme-secondary: #3D9138;
  --theme-white: #fff;
   --theme-text: #000;
    --theme-border: #000;
}
body{
   background-color: rgb(241, 241, 241);

}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--theme-white);
  height: 9.6rem;
  padding: 0px 4.8rem;
  position: absolute;
  z-index: 1;
  width: 100%;
}

.logo {
  height: 6.2rem;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.right-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: rgb(51, 51, 51);
  font-weight: 600;
  font-size: 2rem;
  transition: all 0.3s ease 0s;
  text-transform: uppercase;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: var(--theme-primary-hover);
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 4rem;
  border-radius: 5px;
  font-size: 1.6rem;
  color: var(--theme-white);
  background-color: var(--theme-secondary);
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: var(--theme-primary-hover);
}

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: rgb(51, 51, 51);
}

.icon-desktop-nav {
  height: 2.8rem;
  width: 2.8rem;
  color: rgb(51, 51, 51);
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.header {
  position: fixed;
  top: 0px;
  bottom: 0px;
  width: 100%;
  height: 8rem;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 1.2rem 3.2rem;
}

.sticky .section-hero {
    top: 8rem;
    position: relative;
}

.section-hero {
  background-color: rgb(253, 242, 233);
}

.hero {
  margin: 0px auto;
  display: grid;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
}

.delivered-goderj-woods {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}

.delivered-imgs {
  display: flex;
}

.delivered-imgs img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid rgb(253, 242, 233);
}

.delivered-imgs img:last-child {
  margin: 0px;
}

.delivered-text {
  font-size: 1.8rem;
  font-weight: 600;
}

.delivered-text span {
  color: var(--theme-primary-hover);
  font-weight: 700;
}

.section-offer {
  padding: 4.8rem;
  background-image: url("../img/banner-bg.png");
}

.offer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 4.8rem;
  position: relative;
}
.offer-inner ul li{
   font-size: 2.4rem;
   padding: 5px;
   color: #fff;

}

.offer-img {
  width: 100%;
  max-width: 500px;
}

.section-offer p {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 1px;
  color: var(--theme-white);
}

.section-offer .btn {
  background-color: var(--theme-primary);
  border: solid 3px var(--theme-border);
  padding: 1.5rem 2rem;
  width: fit-content;
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--theme-text);
  position: relative;
  border-radius: 5px;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  margin-top: 30px;
}

.section-how {
  padding: 9.6rem 0px;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: rgb(221, 221, 221);
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.step-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-box::before,
.step-img-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  width: 60%;
  padding-bottom: 60%;
  background-color: rgb(253, 242, 233);
  z-index: -2;
}

.step-img-box::after {
  width: 45%;
  padding-bottom: 45%;
  background-color: rgb(250, 229, 211);
  z-index: -1;
}

.step-img {
  width: 35%;
}

.section-goderj-woods {
  padding: 8.6rem 0px 1rem;
  background-color: rgb(241, 241, 241);
}

.section-goderj-woods .seprater {
  border-bottom: 1px dashed gray;
  margin: 10px 0px;
}

.goderj-woods {
  box-shadow: rgba(0, 0, 0, 0.075) 0px 2.4rem 4.8rem;
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s ease 0s;
  transform: translateY(0rem);
}

.godrej-woods-img {
  position: relative;
}

.goderj-woods-img-auto {
  max-height: 240px;
}

.godrej-woods-img::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(to top, rgb(0, 0, 0) 30%, rgb(255, 255, 255) 100%);
  opacity: 0.3;
}

.goderj-woods:hover {
  transform: translateY(-1.2rem);
  box-shadow: rgba(0, 0, 0, 0.06) 0px 3.2rem 6.4rem;
}

.goderj-woods-content {
  padding: 2.5rem 3rem;
  text-align: center;
}

.goderj-woods-tags {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.4rem;
  position: absolute;
  top: 20px;
  left: 20px;
}

.goderj-woods-bdy-cta {
  margin-top: 1.2rem;
  padding: 2rem 4rem;
  border-radius: 5px;
  font-size: 2rem;
  color: var(--theme-white);
  background-color: var(--theme-secondary);
  display: block;
  text-decoration: none;
}

.tag {
  display: inline-block;
  padding: 0.6rem 0.8rem;
  font-size: 1.5rem;
  text-transform: capitalize;
  color: rgb(51, 51, 51);
  border-radius: 5px;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

.tag--black {
  background-color: var(--theme-secondary);
  color: var(--theme-white);
}

.goderj-woods-price {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.4rem;
  position: absolute;
  bottom: 10px;
  left: 20px;
}

.price {
  display: inline-block;
  padding: 0.6rem 0.8rem;
  font-size: 2.2rem;
  text-transform: capitalize;
  color: rgb(51, 51, 51);
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 0.05rem;
}

.price--white {
  color: var(--theme-white);
}

.goderj-woods-title {
  font-size: 2.4rem;
  color: #000;
  font-weight: 600;
  line-height: 3rem;
}

.goderj-woods-subtitle {
  font-size: 1.8rem;
  color: rgb(92, 92, 92);
  line-height: 3rem;
  font-weight: 400;
}

.goderj-woods-bdy--txt {
  font-size: 2rem;
  line-height: 2.5rem;
  color: var(--theme-secondary);
  font-weight: 400;
  text-transform: uppercase;
}

.section-schedule {
  padding: 0.6rem 0px 1rem;
  align-items: center;
  background-color: rgb(241, 241, 241);
}

.section-schedule .subheading-small {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: rgb(127, 127, 127);
  line-height: 2rem;
  margin-bottom: 3.6rem;
  letter-spacing: 0.2px;
}

.schedule-now {
  margin-bottom: 4.2rem;
  padding: 2rem 4rem;
  border-radius: 5px;
  font-size: 2.5rem;
  color: var(--theme-white);
  background-color: var(--theme-secondary);
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05rem;
  border: none;
}

.schedule-img {
  position: relative;
  top: 100px;
  max-width: 500px;
  width: 100%;
  cursor: pointer;
}

.schedule-img:hover {
  animation: 2s ease 0s infinite normal none running zoom-in-zoom-out;
}

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

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

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

.section-cta {
  padding: 4.8rem 0px 12.8rem;
}

.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2.4rem 4.8rem;
  border-radius: 11px;
  background-image: linear-gradient(to right bottom, #eb984e, var(--theme-primary));
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem;
  color: rgb(69, 38, 10);
}

.cta .heading-secondary {
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image: linear-gradient(to right bottom, rgba(235, 151, 78, 0.35), rgba(230, 125, 34, 0.35)), url("../img/eating.jpg");
  background-size: cover;
  background-position: center center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem 3.2rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: rgb(253, 242, 233);
  border-radius: 9px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
}

.cta-form input::placeholder {
  color: rgb(170, 170, 170);
}

.cta :focus {
  outline: none;
  box-shadow: rgba(253, 242, 233, 0.5) 0px 0px 0px 0.8rem;
}

.footer {
  padding: 1.8rem 0px;
  border-top: 1px solid rgb(238, 238, 238);
  background-color: rgb(226, 226, 226);
  text-align: center;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgb(118, 118, 118);
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: rgb(118, 118, 118);
  transition: all 0.3s ease 0s;
}

.footer-link:hover,
.footer-link:active {
  color: rgb(85, 85, 85);
}

.wts-app-btn {
  background-color: var(--theme-primary);
  border: solid 3px var(--theme-border);
  padding: 1rem 4rem;
  width: fit-content;
  font-size: 2rem;
  font-weight: 700;
  color: var(--theme-text);
  border-radius: 4px;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  position: absolute;
  z-index: 9;
  right: 10%;
  text-decoration: none;
}

.wts-app-btn span {
  position: relative;
  top: -8px;
}

.contact-app-btn {
  background-color: var(--theme-primary);
  border: solid 3px var(--theme-border);
  padding: 1.4rem 2rem;
  width: fit-content;
  font-size: 2rem;
  font-weight: 700;
  color: var(--theme-text);
  border-radius: 4px;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  position: absolute;
  z-index: 9;
  right: 0;
  top: 300px;
  text-align: center;
  text-decoration: none;
  border-radius: 0px;
}

.swiper-container {
  padding: 0px;
  height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
}

@media screen and (max-width: 768px) {
  .swiper-container {
    height: 500px;
  }
}

.swiper-slide {
  width: 100%;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease 0s;
  align-self: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 6rem 4.8rem;
  border-bottom: 2px dashed var(--theme-primary);
}

.swiper-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  z-index: 1;
  opacity: 0.3;
}

.swiper-slide::before {
  content: "";
  /*background-color: rgba(69, 69, 78, 0.2);*/
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  z-index: 1;
}

.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev {
  left: 30px;
}

.swiper-button-next {
  right: 30px;
}

.swiper-button-prev span,
.swiper-button-next span {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  position: absolute;
  border-width: 2px 2px 0px 0px;
  border-top-style: solid;
  border-right-style: solid;
  border-top-color: white;
  border-right-color: white;
  border-image: initial;
  border-left-style: initial;
  border-left-color: initial;
  border-bottom-style: initial;
  border-bottom-color: initial;
  transition: all 0.3s ease 0s;
}

.swiper-button-prev span {
  transform: rotate(-135deg);
  left: 50%;
}

.swiper-button-next span {
  transform: rotate(45deg);
  right: 50%;
}

.swiper-button-prev span::after,
.swiper-button-next span::after {
  content: "";
  position: absolute;
  background-color: white;
  width: 0px;
  height: 2px;
  transition: all 0.3s ease 0s;
  transform: rotate(-45deg);
}

.swiper-button-prev:hover span {
  left: 30%;
}

.swiper-button-next:hover span {
  right: 30%;
}

.swiper-button-prev:hover span::after,
.swiper-button-next:hover span::after {
  width: calc(16px);
}

@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: 0px;
  }

  .swiper-button-next {
    right: 0px;
  }

  .swiper-button-prev:hover span {
    left: 50%;
  }

  .swiper-button-next:hover span {
    right: 50%;
  }

  .swiper-button-prev:hover span::after,
  .swiper-button-next:hover span::after {
    display: none;
  }
}

.swiper-pagination {
  height: 40px;
}

.swiper-pagination-bullet {
  background-color: white;
  width: 30px;
  height: 6px;
  border-radius: 0px;
  opacity: 0.3;
  transition: all 0.3s ease-in-out 0s;
}

.swiper-pagination-bullet:hover {
  background-color: white;
}

.swiper-pagination-bullet-active {
  width: 30px;
  height: 6px;
  border-radius: 0px;
  transition: all 0.3s ease-in-out 0s;
  left: 0px;
  opacity: 1;
  background-color: white;
  border: 0px white;
}

.slide-text {
  color: white;
  opacity: 1;
  z-index: 2;
  width: 100%;
  margin: 35px 20px 20px;
}

.slide-text h1 {
  font-size: 7rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}

.slide-text h3 {
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.slide-text .upper-text {
  font-size: 3.8rem;
  font-weight: 400;
}

.slide-text .lower-text {
  font-size: 4.5rem;
  font-weight: 600;
}

.swipe-btn {
  padding: 1.2rem 4rem;
  border-radius: 0px;
  font-size: 3rem;
  margin: 20px 0px;
  color: var(--theme-primary);
  background-color: var(--theme-secondary);
  border: 2px solid rgb(0, 0, 0);
  display: inline-block;
}

.slide-text .btn {
  background-color: var(--theme-primary);
  border: solid 3px var(--theme-border);
  padding: 1.5rem 4rem;
  width: fit-content;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--theme-text);
  position: relative;
  border-radius: 5px;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  margin-top: 60px;
}

.slide-text .btn:hover {
  background-color: var(--theme-primary-hover);
}

@media screen and (max-width: 768px) {
  .slide-text .btn:hover::after {
    left: 0px;
    top: 0px;
    background-color: rgba(255, 255, 255, 0.1);
  }
}

.disabled_swiper_button {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.show-modal {
  cursor: pointer;
}

.close-modal {
  position: absolute;
  top: 1.2rem;
  right: 2rem;
  font-size: 5rem;
  color: rgb(51, 51, 51);
  cursor: pointer;
  border: none;
  background: none;
  z-index: 99999;
}

.hidden {
  display: none;
}

.modal-content {
  display: grid;
  background-color: var(--theme-white);
  z-index: 1;
  gap: 0rem 4.4rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4rem;
}

.modal-content h1 {
  font-size: 7rem;
  color: var(--theme-text);
  font-weight: 800;
  letter-spacing: 0px;
  line-height: 9rem;
}

.modal-content h4 {
  font-size: 2.2rem;
  color: var(--theme-text);
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 4rem;
}

.modal-content h3 {
  font-size: 3rem;
  color: var(--theme-text);
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 6rem;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  background-color: white;
  padding: 6rem;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3rem 5rem;
  z-index: 9999;
}

.modal__form {
  margin: 25px 3rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2.5rem;
}

.modal__form input {
  font-size: 1.7rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 0.5rem;
}

.modal__form .btn {
  background-color: var(--theme-secondary);
  color: var(--theme-white);
}

select {
  font-size: 1.7rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 0.5rem;
  color: rgb(36, 102, 102);
  font-weight: 600;
}

.overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 999;
  overflow: hidden;
}

.svg-waves {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 90px;
  transform: rotate(180deg);
}

.svg-waves__parallax>use {
  animation: 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) 0s infinite normal none running move-forever;
}

.svg-waves__parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
  fill: rgb(202, 217, 203);
}

.svg-waves__parallax>use:nth-child(2) {
  animation-delay: -4s;
  animation-duration: 13s;
  fill: rgba(202, 217, 203, 0.376);
}

.arrow1 {
  animation: slide1 1s ease-in-out infinite;
  margin-left: 9px;
}

@keyframes slide1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, 0);
  }
}

@-webkit-keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0px, 0px);
  }

  100% {
    transform: translate3d(85px, 0px, 0px);
  }
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0px, 0px);
  }

  100% {
    transform: translate3d(85px, 0px, 0px);
  }
}