@import url("https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Beau+Rivage&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: Edwardian Script ITC;
  src: url(../assets/Font/ITCEDSCR.TTF);
}
:root {
  --primary-color: #ffffff;
  --quad-color: #fbf6f3;
  --secondary-color: #c0a483;
  --secondary-color-15: #c0a48326;
  --border-color: #ffffff4d;
  --tertiary-color: #991421;
  --animation-duration: 12s;
  --services-totalItems: 5;
  --services-totalItems2: 4;
  --animation-duration2: 10s;
}
body,
html {
  overflow-x: hidden;
  font-family: "El Messiri", sans-serif;
}
body {
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.3) 100%
    ),
    /* Middle gradient (20% black overlay) */
      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    /* Base gold-to-black gradient (from your Figma: #C0A483 → #000000) */
      linear-gradient(192deg, #c0a483 0%, #000000 100%);
}

a {
  display: inline-block;
  text-decoration: none;
}
.container {
  max-width: 1870px !important;
}
.container2 {
  max-width: 1630px !important;
}
.col53 {
  width: 53%;
  padding: 0 10px;
}
.col47 {
  width: 47%;
  padding: 0 10px;
}
.col39 {
  width: 39%;
  padding: 0 10px;
}

.col35 {
  width: 35%;
  padding: 0 10px;
}
.col26 {
  width: 26%;
  padding: 0 10px;
}
.col20 {
  width: 20%;
  padding: 0 10px;
}
.active {
  color: var(--primary-color) !important;
}
.active::before {
  width: 100% !important;
}

.btn-primary {
  background: none !important;
  color: var(--primary-color);
  font-size: 20px;
  padding: 14px 25px;
  font-weight: 500;
  border: none !important;
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;

  transform: translateX(100%);
}

.btn-primary:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;

  transform: translateX(-100%);
}

.btn-primary:hover:before {
  border-color: var(--primary-color);
  height: 100%;
  transform: translateX(0);
  transition: 0.3s transform linear, 0.3s height linear 0.3s;
}

.btn-primary:hover:after {
  border-color: var(--primary-color);
  height: 100%;
  transform: translateX(0);
  transition: 0.3s transform linear, 0.3s height linear 0.5s;
}
.btn-secondary {
  padding-block: 25.5px;
  font-size: 30px;
  outline: 2px solid var(--tertiary-color);
  color: #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s linear;
}
.btn-secondary::before,
.btn-secondary::after {
  content: "";
  position: absolute;
  width: 0;
  top: 0;
  height: 100%;
  background: var(--tertiary-color);
  transform: skew(20deg);
  transition: all 0.3s linear;
  overflow: hidden;
  z-index: -1;
}
.btn-secondary::before {
  left: -18px;
}
.btn-secondary::after {
  right: -18px;
}
.btn-secondary:hover::before,
.btn-secondary:hover::after {
  width: 68%;
}
.btn-secondary:hover {
  color: var(--primary-color);
  font-weight: 600;
}
.btn-secondary i {
  transition: all 0.4s ease;
}
.btn-secondary:hover > i {
  animation: spinArrow 0.6s ease forwards;
}

@keyframes spinArrow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.title1 {
  color: var(--primary-color);
  font-size: 100px;
  font-weight: 500;
  margin-bottom: 0 !important;
}
.title2 {
  font-size: 70px;
  font-weight: 600;
  letter-spacing: -2.1px;
  color: #000;
  margin-bottom: 0 !important;
}
.sec-hdr > .title1 {
  letter-spacing: 0.7px;
  color: #000;
  margin: 9px 0 55px !important;
}
.sec-hdr > p {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.6px;
}
.title3 {
  font-size: 40px;
  font-weight: 500;
  color: var(--primary-color);
}
.cursor {
  mix-blend-mode: difference;
  height: 18px;
  width: 18px;
  cursor: none;
  border-radius: 50%;
  background: var(--quad-color);
  transform: rotate(325deg);
  position: fixed;
  z-index: 9999;
}
/* Back TO Top */
.back-to-top-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 52px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  font-size: 30px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 15px #f4d7b7;
  transition: all 0.3s ease;
}

.back-to-top-fixed.show {
  display: flex;
}

/* Fade-out animation */
.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Spinner */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
  z-index: 9999;
}
.spinner {
  --gap: 8px;
  --clr: var(--secondary-color);
  --height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
}

.spinner span {
  background: var(--clr);
  width: 10px;
  height: var(--height);
  animation: grow 1s ease-in-out infinite;
}

.spinner span:nth-child(2) {
  animation-delay: 0.15s;
}
.spinner span:nth-child(3) {
  animation-delay: 0.3s;
}
.spinner span:nth-child(4) {
  animation-delay: 0.475s;
}

@keyframes grow {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.8);
  }
}

/* Main content transitions */
.hidden {
  display: none;
}

.show {
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease;
}
/* Navbar Section */
.hdr-sec {
  padding: 15px 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  border-bottom: 1px solid var(--border-color);
}
.navbar-brand {
  width: 168px;
  padding: 0 !important;
  margin: 0 !important;
}
.navbar-brand > a {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offcanvas {
  flex-direction: row;
}
.nav-item {
  margin-right: 50px;
}
.nav-link {
  font-size: 20px !important;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 !important;
  color: var(--primary-color) !important;
  position: relative;
  transition: all 0.3s linear;
}
.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
  top: 100%;
  width: 0%;
  transition: all 0.5s linear;
}
.down-arrow:hover::before {
  width: 0% !important;
}
.nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}
.nav-link:hover::before {
  width: 100%;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}
.navbar-nav > li:nth-child(4) {
  margin-right: 91px !important;
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-menu {
  padding-block: 20px 10px;
}
.dropdown-item {
  margin-bottom: 10px;
}
.nav-btn {
  margin-right: 22px !important;
}
.search-btn {
  background: none !important;
  border: none !important;
}
.love-icon {
  margin-inline: 29px 28px;
}
.cart-icon {
  position: relative;
}
.cart-icon::before {
  content: "0";
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 24px;
  height: 26px;
  border-radius: 50%;
  bottom: 14px;
  left: 19.83px;
  background-color: var(--secondary-color);
}
/* Banner Section */
.banner-sec {
  background: url("../assets/Contact/Banner-bg.png") no-repeat center / cover;
  padding-block: 339px 223px;
  background-blend-mode: normal; /* ensures proper color overlay */
}
.title-desc p,
.title-desc a {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  color: var(--primary-color);
}
.title-desc a {
  position: relative;
}
.title-desc a::after {
  content: "";
  position: absolute;
  height: 2px;
  background-color: var(--primary-color);
  width: 100%;
  top: 120%;
  left: 0;
}
.title-desc p:first-child {
  margin-top: 30px;
}
.title-desc p:nth-child(2) {
  margin-block: 30px;
}
.title-desc p:nth-child(3) {
  margin-bottom: 30px;
}
.banner-btm {
  margin-top: 215px;
}
.btm-hdr {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: var(--primary-color);
}
.banner-btm-sec {
  max-width: 347px;
}
.banner-btm-sec > p {
  font-size: 20px;
  line-height: 35px;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 35px;
}
.banner-right {
  padding: 52px 41px 46px 48px;
  background-color: var(--quad-color);
  border-radius: 43px;
}
.banner-right > p {
  font-size: 24px;
  line-height: 40px;
  font-weight: 500;
  color: #000;
  margin-block: 0 19px;
}
#fname,
#lname,
.contact-form .input-wrpr {
  border: 1px solid #00000080;
  width: 100%;
  border-radius: 127.5px;
  background: transparent;
  padding: 27px 30px;
}
.contact-form input::placeholder,
#text-area::placeholder {
  font-size: 24px;
  font-weight: 500;
}
.input-wrpr {
  margin-block: 40px;
}
.input-wrpr i {
  font-size: 24px;
  color: #00000080;
}
.input-wrpr > input {
  background: none;
  border: none;
}

.phone-input {
  margin-block: 0 !important;
}
.phone-input .country-code {
  border-right: 1px solid #00000080;
  height: 100%;
}
.phone-input select {
  border: none;
  background: transparent;
  font-size: 24px;
  padding-inline: 20px;
  color: #000;
  appearance: none;
  cursor: pointer;
}

.phone-input select:focus {
  outline: none;
}

.phone-input input {
  border: none;
  padding: 0 20px;
  color: #00000080;
}

input:focus {
  outline: none;
}
#text-area {
  margin-block: 36px;
  padding: 22px 29px;
  height: 290px;
  border-radius: 15px;
  background: transparent;
  width: 100%;
}
.form-btn {
  width: 100%;
  margin-bottom: 36px;
  border-radius: 127.5px;
  background: #0f84f2;
  border: none;
  padding-block: 19.5px;
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-color);
  transition: all 0.4s linear;
}

.form-btn:hover {
  background-color: var(--primary-color);
  border: 1px solid #0f84f2;
  color: #000;
}
.terms {
  font-size: 24px;
  color: #6b697d;
  font-weight: 500;
  line-height: 40px;
}
.terms > a {
  font-size: 32px;
  color: #000;
}
/* Find Us Section */
.find-sec {
  padding: 110px 0 185px;
}
.map-frame {
  width: 100%;
  margin-top: 31px;
}
.map-frame > iframe {
  width: 100%;
  height: 810px;
}
/* Sign Up Section */
.sign-sec-wrpr {
  background: var(--secondary-color);
  padding: 68px 0;
}
.signup-hdr {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1.28px;
  color: var(--primary-color);
}
.signup-left > p {
  font-size: 20px;
  margin-top: 15px;
  letter-spacing: 0.8px;
  color: var(--primary-color);
}
.signup-form {
  max-width: 897px;
}
#mail-input {
  width: 75%;
  background: none;
  background-color: var(--primary-color);
  padding: 37px 0 37px 42px;
  border: none;
}
#mail-input::placeholder {
  font-size: 20px;
  font-weight: 600;
  color: #57565b;
}
#submit-btn {
  width: 24.4%;
  font-size: 32px;
  padding: 27.5px 44.5px;
  color: var(--primary-color);
  background-color: #000;
  border: none;
  letter-spacing: 1.28px;
}
/* Footer Section */
.ftr-sec {
  background-color: #000;
}
.footer-top {
  padding: 114px 0 70px;
  border-bottom: 1px solid var(--primary-color);
}
.ftr-list1-wrpr {
  max-width: 263px;
}
.list-hdr {
  font-size: 22px;
  letter-spacing: 0.66px;
  color: var(--primary-color);
  margin-bottom: 35px;
}
.ftr-list > li,
.ftr-list > li > a {
  font-size: 20px;
  letter-spacing: 0.2px;
  color: var(--primary-color) !important;
}
.ftr-list > li {
  margin-bottom: 11px;
}
.ftr-links {
  position: relative;
  transition: all 0.2s linear;
}
.ftr-links::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
  top: 100%;
  width: 0%;
  transition: all 0.5s linear;
}
.ftr-links:hover {
  transform: translateY(-5px);
}
.ftr-links:hover::before {
  width: 100%;
}
.scl-list {
  margin-top: 41px;
}
.scl-links {
  margin-right: 35px;
}
.scl-links > a {
  width: 24px;
  transition: transform 0.3s ease;
}
.scl-links > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scl-links > a:hover {
  transform: translateY(-3px) scale(1.2);
}

.down-sec > a {
  max-width: 227px;
}
.down-sec > a > img {
  width: 100%;
  height: 100%;
}
.play-wrpr {
  margin-top: 44px;
}
.footer-btm {
  padding: 31px 20px;
}
.ftr-img > a {
  max-width: 170px;
}
.ftr-img > a > img {
  width: 100%;
  height: 100%;
}
.land-sec {
  padding: 14.5px 53px 17px 34px;
  border: 2px solid var(--primary-color);
  border-radius: 19px;
}
.land-sec > span {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: -0.48px;
  margin-left: 8px;
}
.pay-list {
  max-width: 267px;
  margin-left: 41px;
}
.pay-list > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Responsive Section */
@media screen and (max-width: 1750px) {
  .btn-primary {
    font-size: 18px;
  }
  .title1 {
    font-size: 81px;
  }
  .title2 {
    font-size: 62px;
  }
  .title3 {
    font-size: 33px;
  }
  /* Navbar Section */

  .navbar-nav > li:nth-child(4) {
    margin-right: 70px !important;
  }
  .nav-item {
    margin-right: 40px;
  }
  .nav-link {
    font-size: 18px !important;
  }
  .nav-btn {
    margin-right: 14px !important;
  }
  .love-icon {
    margin-inline: 20px;
  }
  .cart-icon {
    margin-right: 20px;
  }
  /* Banner Section */
  .banner-sec {
    padding-block: 282px 169px;
  }
  .title-desc p,
  .title-desc a {
    font-size: 28px;
    line-height: 36px;
  }
  .btm-hdr {
    font-size: 28px;
    line-height: 25px;
  }
  .banner-right {
    padding: 46px 31px 36px 38px;
  }

  /* Sign Up Section */
  #submit-btn {
    width: 27.4%;
    font-size: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .title1 {
    font-size: 80px;
  }

  /* Navbar Section */

  .navbar-nav > li:nth-child(4) {
    margin-right: 50px !important;
  }
  .nav-item {
    margin-right: 30px;
  }
  /* Banner Section */
  .banner-sec {
    padding-block: 240px 150px;
  }
  .title-desc p,
  .title-desc a {
    font-size: 26px;
    line-height: 35px;
  }
  .banner-btm {
    margin-top: 140px;
  }
  .btm-hdr {
    font-size: 26px;
    line-height: 32px;
  }
  .banner-right {
    padding: 30px 30px 37px 26px;
    border-radius: 30px;
  }
  .input-wrpr {
    margin-block: 26px;
  }
  #text-area {
    margin-block: 26px;
  }
  .form-btn {
    width: 100%;
    margin-bottom: 26px;
  }
  .terms {
    font-size: 22px;
  }
  .terms > a {
    font-size: 26px;
  }
  #text-area {
    height: 260px;
  }
  /* Sign Up Section */
  #submit-btn {
    width: 29.4%;
    font-size: 28px;
    padding: 27.5px 32.5px;
  }
}
@media screen and (max-width: 1200px) {
  .btn-secondary {
    padding-block: 22.5px;
    font-size: 24px;
  }
  .title1 {
    font-size: 70px;
  }
  .title2 {
    font-size: 50px;
  }

  .sec-hdr > .title1 {
    font-size: 60px;
    margin: 9px 0 24px !important;
  }
  /* Navbar Section */
  .navbar-toggler {
    border: none !important;
    padding: 0 !important;
  }
  .navbar-toggler-icon {
    font-size: 1.8rem;
    background-image: none;
  }
  .offcanvas {
    flex-direction: column;
    overflow-y: hidden;
    min-height: 100vh;
  }
  .offcanvas-header {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
  }
  .nav-item {
    margin: 20px 0 0;
  }
  .navbar-nav > li:nth-child(4) {
    margin-right: 0 !important;
  }
  .nav-link:hover::before {
    width: 0% !important;
  }
  .active::before {
    width: 0% !important;
  }
  .dropdown-menu {
    position: absolute !important;
    left: -35% !important;
    top: 130% !important;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .nav-btn {
    margin: 20px 0 !important;
  }
  .nav-icons {
    flex-direction: column;
  }
  .love-icon {
    margin-inline: 30px !important;
  }
  .cart-icon {
    margin-right: 0;
  }
  /* Banner Section */
  .title-desc p,
  .title-desc a {
    font-size: 24px;
    line-height: 28px;
  }
  .banner-btm {
    margin-top: 100px;
  }
  .banner-btm-sec {
    max-width: 100%;
  }
  .banner-right {
    margin-top: 40px;
  }
  .banner-right > p {
    font-size: 22px;
  }

  .contact-form input::placeholder,
  #text-area::placeholder {
    font-size: 20px;
  }
  /* Find Us Section */
  .find-sec {
    padding: 70px 0 110px;
  }
  .map-frame > iframe {
    height: 700px;
  }
  /* Sign Up Section */
  #mail-input {
    width: 75%;
    padding: 37px 0 37px 25px;
  }
  #submit-btn {
    width: 30.4%;
    font-size: 25px;
    padding: 27.5px 25.5px;
  }
  /* Footer Section */
  .ftr-list3-wrpr,
  .ftr-list4-wrpr,
  .ftr-list5-wrpr {
    margin-top: 30px;
  }
}
@media screen and (max-width: 992px) {
  .btn-secondary {
    padding-block: 20.5px;
    font-size: 20px;
  }
  .title3 {
    font-size: 32px;
  }
  .sec-hdr > .title1 {
    font-size: 50px;
    margin: 9px 0 14px !important;
  }
  .cursor {
    display: none;
  }
  /* Find Us Section */
  .find-sec {
    padding: 60px 0 90px;
  }
  .map-frame > iframe {
    height: 600px;
  }
  /* Sign Up Section */
  .sign-sec {
    padding-top: 100px;
  }
  .signup-left {
    margin-bottom: 30px;
  }
  /* Footer Section */
  .land-sec {
    padding: 14.5px 20px 17px 24px;

    border-radius: 16px;
  }
  .land-sec > span {
    font-size: 18px;
    margin-left: 8px;
  }
  .pay-list {
    margin-left: 24px;
  }
}
@media screen and (max-width: 768px) {
  .col20 {
    width: 33.33%;
  }
  .ftr-col {
    width: 50%;
  }
  .cursor {
    display: none;
  }
  .btn-secondary {
    padding-block: 13.5px;
    font-size: 14px;
  }
  .title1 {
    font-size: 50px;
  }
  .title2 {
    font-size: 35px;
  }
  .title3 {
    font-size: 26px;
  }
  .sec-hdr > .title1 {
    font-size: 40px;
    margin: 9px 0 10px !important;
  }
  /* Banner Section */
  .banner-sec {
    padding-block: 170px 80px;
  }
  .title-desc p,
  .title-desc a {
    font-size: 18px;
    line-height: 20px;
  }
  .title-desc p:first-child {
    margin-top: 18px;
  }
  .title-desc p:nth-child(2) {
    margin-block: 18px;
  }
  .banner-btm {
    margin-top: 70px;
  }
  .btm-hdr {
    font-size: 20px;
    line-height: 6px;
  }
  .banner-btm-sec > p {
    font-size: 16px;
    line-height: 29px;
    margin-top: 20px;
  }
  .banner-right {
    padding: 20px 15px;
    border-radius: 18px;
  }
  .banner-right > p {
    font-size: 18px;
    margin-bottom: 6px;
  }
  #fname,
  #lname,
  .contact-form .input-wrpr {
    border-radius: 127.5px;
    padding: 17px 20px;
    margin-bottom: 16px !important;
  }
  #fname {
    margin-bottom: 26px;
  }
  .contact-form input::placeholder,
  #text-area::placeholder {
    font-size: 16px;
    font-weight: 500;
  }
  .phone-input select {
    font-size: 16px;
    padding-inline: 9px;
  }
  .input-wrpr {
    margin-block: 0 16px;
  }
  #text-area {
    margin-block: 0 16px;
  }
  .form-btn {
    margin-bottom: 16px;
    border-radius: 127.5px;
    padding-block: 12.5px;
    font-size: 18px;
  }
  .terms {
    font-size: 16px;
  }
  .terms > a {
    font-size: 20px;
  }
  /* Find Us Section */
  .find-sec {
    padding: 50px 0 70px;
  }
  .map-frame > iframe {
    height: 500px;
  }
  /* Sign Up Section */
  .signup-hdr {
    font-size: 26px;
  }
  .signup-left > p {
    font-size: 18px;
    margin-top: 11px;
  }
  #mail-input {
    width: 75%;
    padding: 15px 30px;
  }
  #submit-btn {
    width: 26.4%;
    font-size: 20px;
    padding: 18.5px 17.5px;
  }
  /* Footer Section */
  .footer-top {
    padding: 70px 0 47px;
    border-bottom: 1px solid var(--primary-color);
  }
  .ftr-list > li,
  .ftr-list > li > a {
    font-size: 16px;
  }
  .list-hdr {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .ftr-img {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 576px) {
  .ftr-col {
    width: 100%;
  }
  .btn-secondary {
    padding-block: 9.5px;
    font-size: 11px;
  }
  .title1 {
    font-size: 45px;
  }
  .title2 {
    font-size: 30px;
  }
  .title3 {
    font-size: 22px;
  }
  .sec-hdr > .title1 {
    font-size: 26px;
    margin: 9px 0 10px !important;
  }
  /* Banner Section */
  .banner-sec {
    padding-block: 130px 40px;
  }
  .title-desc p,
  .title-desc a {
    font-size: 14px;
    line-height: 17px;
  }
  .title-desc p:first-child {
    margin: 6px 0;
  }
  .title-desc p:nth-child(2) {
    margin-block: 10px;
  }
  .title-desc p:nth-child(3) {
    margin-bottom: 20px;
  }
  .banner-btm {
    margin-top: 50px;
  }
  .banner-btm-sec {
    margin-bottom: 20px;
  }
  .btm-hdr {
    font-size: 18px;
    line-height: 6px;
  }
  .banner-btm-sec > p {
    font-size: 14px;
    line-height: 25px;
    margin-top: 20px;
  }
  .banner-right {
    margin-top: 20px;
    padding: 16px;
  }
  .banner-right > p {
    font-size: 16px;
    margin-bottom: 6px;
  }
  #fname,
  #lname,
  .contact-form .input-wrpr {
    border-radius: 127.5px;
    padding: 10px 18px;
    margin-bottom: 13px !important;
  }
  .input-wrpr i {
    font-size: 20px;
  }
  #text-area {
    height: 150px;
    margin-bottom: 6px;
    padding: 11px 13px;
  }
  .contact-form input::placeholder,
  #text-area::placeholder {
    font-size: 14px;
    font-weight: 500;
  }
  .form-btn {
    margin-bottom: 6px;
    border-radius: 127.5px;
    padding-block: 9.5px;
    font-size: 16px;
  }
  .terms {
    font-size: 14px;
    line-height: 26px;
  }
  .terms > a {
    font-size: 18px;
  }
  /* Find Us Section */
  .find-sec {
    padding: 30px 0 50px;
  }
  .map-frame {
    margin-top: 20px;
  }
  .map-frame > iframe {
    height: 350px;
  }
  /* Sign Up Section */
  .sign-sec {
    padding-top: 60px;
  }
  .sign-sec-wrpr {
    background: var(--secondary-color);
    padding: 40px 0;
  }
  .signup-hdr {
    font-size: 17px;
  }
  .signup-left {
    margin-bottom: 20px;
  }
  .signup-left > p {
    font-size: 12px;
    margin-top: 8px;
  }
  #mail-input {
    width: 75%;
    padding: 10px 18px;
  }
  #mail-input::placeholder {
    font-size: 12px;
  }
  #submit-btn {
    width: 28.4%;
    font-size: 14px;
    padding: 14.5px 12.5px;
  }
  /* Footer List */
  .footer-top {
    padding: 57px 0 26px;
    border-bottom: 1px solid var(--primary-color);
  }
  .list-hdr {
    font-size: 18px;
    margin-bottom: 11px;
  }
  .scl-list {
    margin-top: 20px;
  }
  .ftr-list > li,
  .ftr-list > li > a {
    font-size: 14px;
  }
  .ftr-list1-wrpr,
  .ftr-list2-wrpr,
  .ftr-list3-wrpr,
  .ftr-list4-wrpr,
  .ftr-list5-wrpr {
    text-align: center;
    max-width: 187px;
    margin: 0 auto 40px;
  }
  .ftr-list2-wrpr {
    max-width: 233px;
  }
  .ftr-img {
    margin-bottom: 35px;
  }
  .land-sec {
    padding: 11.5px 16px 13px 19px;
    border-radius: 12px;
  }
  .land-sec > span {
    font-size: 14px;
    margin-left: 8px;
  }
  .pay-list {
    margin-left: 13px;
  }
}
