@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: English_157_Regular;
  src: url("../assets/fonts/english-157/English_157_Regular.otf");
}

@font-face {
  font-family: Perpetua_Titling_MT_Std_Light;
  src: url("../assets/fonts/perpetua-titling-mt-std/Perpetua_Titling_MT_Std_Light.otf");
}

:root {
  --light: #ffffff;
  --gold: #c19884;
  --dark: #000;
  --radius-1: 16px;
  --radius-full: 100px;
  --dark-blue: #0e0e30;
  --Cormorant: "Cormorant", serif;
  --Montserrat: "Montserrat", sans-serif;
  --Poppins: "Poppins", sans-serif;
  --primary-gradient: linear-gradient(to right, #0d1031, #0a2e63);
  --English_157_Regular: English_157_Regular;
  --Perpetua_Titling_MT_Std_Light: Perpetua_Titling_MT_Std_Light;
}

html {
  font-size: 16px !important;
  overflow-x: hidden;
}

body {
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  padding-right: 0px !important;
  font-family: var(--Poppins);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

.toggle-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--dark-blue);
  width: 45px;
  height: 45px;
  border-radius: 100px;
  position: fixed;
  bottom: 0%;
  right: 1.25%;
  color: var(--light);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up.show {
  opacity: 1;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up i {
  font-size: 1.15rem;
}

/* form loader css */

.form-loader-div {
  display: none;
}

.form-loader {
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: auto;
  border: 3px solid #b5acac;
  border-right-color: var(--light);
  -webkit-animation: l2 0.35s infinite linear;
  animation: l2 0.35s infinite linear;
}

@-webkit-keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

/* form loader css */

.compensate-for-scrollbar {
  margin-right: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem;
}

ul {
  padding-left: 0rem;
  margin-bottom: 0rem;
}

/* li {
  list-style: none;
  text-decoration: none;
} */

a {
  text-decoration: none;
}

p {
  margin-bottom: 0rem;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

button:disabled,
button.disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.max-content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.no-wrap {
  text-wrap: nowrap;
}

.invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.rotate {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mirror {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.letter-spacing {
  letter-spacing: 1.05px;
}

.text-shadow {
  text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3);
}

.btn-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  color: var(--light);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.05)
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.35)),
    to(rgba(255, 255, 255, 0.05))
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.05)
  );
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
  font-size: 0.95vw;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.4);
}

.btn-primary .icon {
  width: 2rem;
  height: 2rem;
}

.btn-primary .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.1)
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.6)),
    to(rgba(255, 255, 255, 0.1))
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 30px;
  pointer-events: none;
}

.custom-container {
  width: 85vw;
  max-width: 90%;
  margin: auto;
}

.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 11;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

header.scrolled {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  /* background: -o-linear-gradient(bottom, transparent, rgba(0, 0, 0, 0.822)); */
  /* background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(transparent),
    to(rgba(0, 0, 0, 0.822))
  ); */
  /* background: linear-gradient(0deg, transparent, rgba(0, 0, 0, 0.822)); */

  -webkit-box-shadow:
    0 10px 30px rgba(255, 255, 255, 0.15),
    0 0 20px rgba(255, 255, 255, 0.1),
    0 0 40px rgba(255, 255, 255, 0.05);

  box-shadow:
    0 10px 30px rgba(255, 255, 255, 0.15),
    0 0 20px rgba(255, 255, 255, 0.1),
    0 0 40px rgba(255, 255, 255, 0.05);
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.65rem 3rem;
  background: var(--dark-blue);
  gap: 1rem;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.menu {
  display: none;
  width: 2.5rem;
  cursor: pointer;
}

.menu img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.logo {
  width: 5vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 6px;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.scrolled .logo-img {
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  width: 18rem;
}

.scrolled .logo2 {
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
  width: 4rem;
  width: 4rem;
}

.navLinks-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

.line {
  width: 100%;
  height: 1px;
  background-color: var(--gold);
}

.navLinks-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10vw;
}

.navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  gap: 2rem;
}

.navLinks .navLink {
  display: block;
  font-size: 1rem;
  color: var(--light);
  white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.navLinks .navLink:hover {
  color: var(--gold);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.navLinks .navLink::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  bottom: -5px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  border-radius: var(--radius-full);
  background-color: var(--gold);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.navLinks .navLink:hover::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.others-navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25vw;
}

.sub-navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1vw;
}

.sub-navLinks .line {
  width: 1px;
  height: 4dvh;
}

.sub-navLinks-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5vw;
}

.sub-navLinks-txt .navLink {
  color: var(--light);
  font-size: 1vw;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sub-navLinks-txt .navLink:hover {
  text-shadow: var(--light) 1px 0 10px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.m-n3 {
  margin: 0 0 0 -3rem;
}

.m-n2 {
  margin: -2rem 0 0 0;
}

.custom-width {
  width: 50rem;
  max-width: 100%;
}

.custom-width-2 {
  width: 60rem;
  max-width: 100%;
  margin: auto;
}

.custom-width-3 {
  width: 45rem;
  max-width: 100%;
}

.btnPrimary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  text-transform: capitalize;
  background: transparent;
  padding: 1rem 5rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
}

.btnPrimary.btn-submit {
  background: var(--gold);
  padding: 0.85rem 3rem;
  font-size: 1rem;
  color: var(--light);
}

.offcanvas {
  background: var(--dark-blue);
}

.offcanvas.offcanvas-end {
  width: 100%;
}

.offcanvas.offcanvas-end .offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.offcanvas-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.offcanvas-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.offcanvas-close {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  border-radius: 100px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  -webkit-transform: translateY(4px) scale(0.95);
  -ms-transform: translateY(4px) scale(0.95);
  transform: translateY(4px) scale(0.95);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.offcanvas-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.offcanvas-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.75rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 1rem 0;
}

.offcanvas-links .line {
  margin: auto auto;
}

.offcanvas-link,
.offcanvas-link-drop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.75vw;
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--light);
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  width: 100%;
}

.offcanvas-link-drop .img {
  width: 30px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.offcanvas-link-dropdown.dropped .img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.offcanvas-link .img img,
.offcanvas-link-drop .img img {
  width: 100%;
  height: 100%;
}

.offcanvas-logo .logo-img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 100px;
  border-radius: 6px;
  overflow: hidden;
  max-width: 100%;
}

.dropdown-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  height: 0px;
  max-height: 100%;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  overflow: hidden;
}

.dropped .dropdown-content {
  height: 28dvh;
  padding: 1rem;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.dropdown-content .navLink {
  color: var(--light);
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.5vw;
}

.dropdown-content .navLink:hover {
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px);
  text-shadow: var(--light) 1px 0 10px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.custom-input {
  padding: 0.75rem 1rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: unset;
  color: var(--text-color);
  font-weight: 400;
  width: 100%;
  letter-spacing: 1.438px;
  border-radius: 0px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: transparent;
}

.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  border: 1px solid rgba(188, 32, 49, 0.5);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 0px 0px 2px var(--primary-pink);
  box-shadow: 0px 0px 0px 2px var(--primary-pink);
}

.custom-input::-webkit-input-placeholder {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 1rem !important;
}

.custom-input::-moz-placeholder {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 1rem !important;
}

.custom-input:-ms-input-placeholder {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 1rem !important;
}

.custom-input::-ms-input-placeholder {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 1rem !important;
}

.custom-input::placeholder {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 1rem !important;
}

.mobile-input-div .iti {
  width: 100%;
}

.mobile-input-div .iti .iti__selected-dial-code {
  color: var(--light);
  opacity: 0.75;
}

.mobile-input-div .iti__arrow {
  border-top: var(--iti-arrow-height) solid var(--light);
}

.form-check-label {
  font-size: 0.95rem;
}

.custom-modal-content {
  position: relative;
  border: 2px solid var(--light);
  background: var(--primary-gradient);
}

.custom-modal-content .custom-input {
  color: var(--light);
  border: 1px solid var(--light);
  background-color: transparent;
}
.custom-modal-content .form-check-label {
  color: var(--light);
}

.modal-logo {
  width: 10rem;
  max-width: 100%;
  margin: 2rem auto 1rem auto;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 3%;
  width: 48px;
  height: 48px;
  right: 3%;
  cursor: pointer;
}

.modal-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

section.section-main-banner {
  width: 100%;
  height: calc(100dvh - 7vw);
  margin: 6rem 0 0 0;
  position: relative;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  position: relative;
  /* animation: zoomMove 25s ease-in-out infinite alternate; */
  z-index: 1;
}

.banner-img.overlay {
  position: relative;
}

.banner-img.overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -o-linear-gradient(
    178deg,
    rgb(0 0 0 / 27%) 37.25%,
    rgba(0, 0, 0, 0.3) 96.52%
  );
  background: linear-gradient(
    272deg,
    rgb(0 0 0 / 27%) 37.25%,
    rgba(0, 0, 0, 0.3) 96.52%
  );
  width: 100%;
  height: 100%;
}

.banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner-content {
  top: 50%;
  right: 10%;
  z-index: 2;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  position: absolute;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.banner-content.left {
  left: 10%;
}

.banner-content p {
  font-size: 2.25vw;
  font-weight: 700;
  text-shadow: var(--dark) 1px 0 10px;
  color: var(--light);
  font-family: var(--Cormorant);
  -webkit-transition: all 0.5s ease;
  text-transform: capitalize;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.scroll {
  position: absolute;
  bottom: 1%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  cursor: pointer;
}

.scroll img {
  width: 4rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.scroll p {
  text-align: center;
  text-shadow: var(--dark-blue) 1px 0 10px;
  color: var(--light);
  font-size: 1rem;
  text-transform: capitalize;
}

@-webkit-keyframes zoomMove {
  0% {
    -webkit-transform: scale(1) translate(0px, 0px);
    transform: scale(1) translate(0px, 0px);
  }

  25% {
    -webkit-transform: scale(1.08) translate(-10px, -5px);
    transform: scale(1.08) translate(-10px, -5px);
  }

  50% {
    -webkit-transform: scale(1.1) translate(10px, 5px);
    transform: scale(1.1) translate(10px, 5px);
  }

  75% {
    -webkit-transform: scale(1.06) translate(-5px, 10px);
    transform: scale(1.06) translate(-5px, 10px);
  }

  100% {
    -webkit-transform: scale(1.12) translate(15px, -10px);
    transform: scale(1.12) translate(15px, -10px);
  }
}

@keyframes zoomMove {
  0% {
    -webkit-transform: scale(1) translate(0px, 0px);
    transform: scale(1) translate(0px, 0px);
  }

  25% {
    -webkit-transform: scale(1.08) translate(-10px, -5px);
    transform: scale(1.08) translate(-10px, -5px);
  }

  50% {
    -webkit-transform: scale(1.1) translate(10px, 5px);
    transform: scale(1.1) translate(10px, 5px);
  }

  75% {
    -webkit-transform: scale(1.06) translate(-5px, 10px);
    transform: scale(1.06) translate(-5px, 10px);
  }

  100% {
    -webkit-transform: scale(1.12) translate(15px, -10px);
    transform: scale(1.12) translate(15px, -10px);
  }
}

.primary-bg {
  background: var(--primary-gradient);
}

.gold {
  color: var(--gold) !important;
}

section.section-overview {
  padding: 4rem 0;
}

.overview-container {
  border: 2px solid var(--gold);
  border-radius: var(--radius-1);
  padding: 3rem 2rem;
}

.overview-container.detailed-container {
  padding: 2rem 1.5rem 1rem 1.5rem;
}

.overview-container.glassmorphism {
  border: 2px solid transparent;
  background-color: #ffffff1f;
}

.section-heading .section-title {
  font-size: 2.5vw;
  color: var(--gold);
  text-transform: capitalize;
  font-weight: 900;
  /* line-height: 3vw; */
  letter-spacing: 0.8px;
  font-family: var(--Cormorant);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading .section-subtitle {
  font-size: 2vw;
  font-family: var(--English_157_Regular);
  color: var(--light);
  text-transform: capitalize;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading .section-desc {
  font-size: 1vw;
  -webkit-transition: all 0.5s ease;
  /* line-height: 1.75vw; */
  -o-transition: all 0.5s ease;
  text-transform: capitalize;
  font-family: var(--Montserrat);
  transition: all 0.5s ease;
  color: var(--light);
  font-weight: 400;
  opacity: 0.8;
}

.overview-img {
  overflow: hidden;
  border-radius: var(--radius-1);
}

.overview-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin: 3rem 0 0 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn-overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--light);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.35rem;
  color: var(--light);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.65rem 2rem;
  border-radius: var(--radius-full);
}

.btn-overview .icon {
  width: 30px;
  height: 30px;
}

.btn-overview .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

section.section-premium-yachts {
  padding: 2rem 0 6rem 0;
}

.yacht-loader.sp {
  width: 32px;
  height: 32px;
  clear: both;
  margin: 20px auto;
}

/* Spinner Circle Rotation */

.yacht-loader-container {
  display: block;
}

.yacht-loader-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 2rem 0 0 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.yacht-loader-wrapper .yacht-loader {
  width: 25px;
  height: 25px;
  border: 4px rgb(255 255 255 / 25%) solid;
  border-top: 4px var(--light) solid;
  border-radius: 50%;
  -webkit-animation: spCircRot 0.4s infinite linear;
  animation: spCircRot 0.4s infinite linear;
}

.yacht-loader-wrapper .yacht-loader-txt {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--light);
}

@-webkit-keyframes spCircRot {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes spCircRot {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.yachts-lists {
  display: -ms-grid;
  display: grid;
  margin: 3rem 0 0 0;
  -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  gap: 4rem 1.5rem;
}

.yachts-lists .yachts-list {
  outline: 1px solid #2f4a78;
  padding: 2.5rem 1rem 1.5rem 1rem;
  border-radius: var(--radius-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  gap: 1.5rem;
  -webkit-box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(70, 100, 255, 0.35),
    0 0 60px rgba(70, 100, 255, 0.15);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(70, 100, 255, 0.35),
    0 0 60px rgba(70, 100, 255, 0.15);
}

.yachts-lists .yachts-list:hover {
  outline: 3px solid var(--gold);
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.yachts-lists .yachts-list .yachts-title {
  font-size: 1.25vw;
  letter-spacing: 1px;
  font-family: var(--Perpetua_Titling_MT_Std_Light);
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 600;
  color: var(--gold);
}

.yachts-lists .yachts-list .yachts-img {
  width: 100%;
  height: 40dvh;
  border-radius: 16px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}

.yachts-lists .yachts-list .yachts-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.yachts-lists .yachts-list .yachts-price {
  font-size: 1.5vw;
  font-weight: 600;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--light);
}

.yachts-lists .yachts-list .yachts-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  margin: auto;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ffffff6b;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  gap: 0.5rem;
}

.yachts-lists .yachts-list .yachts-infos .pessenger-no,
.yachts-lists .yachts-list .yachts-infos .pessenger-length {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  text-transform: capitalize;
  font-size: 1.1vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--light);
}

.yachts-lists .yachts-list .yachts-infos .pessenger-no .icon,
.yachts-lists .yachts-list .yachts-infos .pessenger-length .icon {
  width: 2rem;
  height: 2rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.yachts-lists .yachts-list .yachts-infos .pessenger-no .icon img,
.yachts-lists .yachts-list .yachts-infos .pessenger-length .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.yachts-lists .yachts-list .yachts-infos .line {
  width: 1px;
  height: 100%;
}

.yachts-lists .yachts-list .yachts-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.yachts-lists .yachts-list .yachts-actions .yacht-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
  padding: 0.45rem 0.5rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: var(--Poppins);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  color: var(--light);
  background: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.05)
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.35)),
    to(rgba(255, 255, 255, 0.05))
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.05)
  );
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
  font-size: 0.9vw;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.4);
}

.yachts-lists .yachts-list .yachts-actions .yacht-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.1)
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.6)),
    to(rgba(255, 255, 255, 0.1))
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 30px;
  pointer-events: none;
}

.yachts-lists .yachts-list .yachts-actions .yacht-action .icon {
  width: 2rem;
  height: 2rem;
}
.yachts-lists .yachts-list .yachts-actions .yacht-action .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

footer {
  background-color: #3f3f41;
  padding: 3rem 0rem 1.5rem 0rem;
}

.footer-line {
  width: 1px;
  height: 100%;
  background-color: var(--gold);
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  width: 12rem;
  max-width: 100%;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-links .footer-link-title {
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 600;
}

.footer-links .footer-link-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.15rem;
}

.footer-links .footer-link-content .footer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  color: var(--light);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-links .footer-link-content .footer-link .icon img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer-links .footer-link-content .footer-link .txt {
  word-break: break-word;
}

.footer-copyright {
  color: var(--light);
}

.white-line {
  background-color: var(--light);
  width: 100%;
  opacity: 0.3;
  height: 1px;
}

.footer-form .footer-form-title {
  color: var(--light);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.75vw;
  font-weight: 600;
}

.footer-form .footer-form-subtitle {
  color: var(--light);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1vw;
  font-weight: 400;
}

.footer-form .custom-input {
  border: 1px solid #ffffffb0;
  color: var(--light) !important;
}

.footer-form .custom-input::-webkit-input-placeholder {
  color: #ffffffda !important;
}

.footer-form .custom-input::-moz-placeholder {
  color: #ffffffda !important;
}

.footer-form .custom-input:-ms-input-placeholder {
  color: #ffffffda !important;
}

.footer-form .custom-input::-ms-input-placeholder {
  color: #ffffffda !important;
}

.footer-form .custom-input::placeholder {
  color: #ffffffda !important;
}

.footer-form .invalid-feedback {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--light);
}

.created a {
  text-decoration: underline;
  text-underline-offset: 7px;
  -webkit-text-decoration-color: #ffffffab;
  text-decoration-color: #ffffffab;
  color: var(--light);
}

.btn-submit {
  background-color: var(--gold);
  color: var(--dark);
  padding: 0.5rem 2.5rem;
  border: none;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  font-size: 1rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}

/********************************** farzeen css **********************************/
.contact__section {
  width: 100%;
  position: relative;
  padding: 50px 0;
  background-image: -o-linear-gradient(left, #12143a, #0d346d);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#12143a),
    to(#0d346d)
  );
  background-image: linear-gradient(to right, #12143a, #0d346d);
}

.custom_container {
  width: 90%;
  max-width: 100%;
  margin: auto;
}

.contact__div {
  width: 100%;
  background: #307bbe;
  padding: 150px 100px;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  margin-top: -18%;
}

.contact_box h2 {
  font-size: 3vw;
  color: #fff;
}

.add_div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #fff;
  padding: 20px 0;
}

.add_div img {
  width: 30px;
  height: 30px;
}

.add_div p {
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  margin: 0;
}

.form_title h2 {
  font-size: 2vw;
  color: #a2847e;
}

.contact__section .custom-input {
  background-color: #8995ad;
  height: 55px;
  color: #fff;
  border: none;
  margin-top: 18px;
}

.form_box {
  width: 75%;
}

/* */
/********************************** farzeen css **********************************/

/* *******vikas css starts here***** */
/* *******deatiled css starts here************** */
section.section-deatiled {
  margin-top: 7rem;
  padding: 4rem 0;
}

.section-heading .sub-title-heading {
  font-size: 1.2vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--light);
}

.detailed-btn {
  margin: unset !important;
}

.btn-detailed {
  padding: 0.65rem 5rem !important;
}

.bg-white {
  background-color: var(--light);
}

.text-small {
  font-size: 1vw;
}

.golden-txt {
  color: var(--gold) !important;
}

.section-heading .sub-title-heading2 {
  font-size: 1.4vw;
  color: var(--gold);
  font-weight: 600;
  padding-bottom: 1rem;
}

/* *******deatiles css ends here************** */

/* *********gallery section starts here******* */
section.section-gallery {
  padding: 2rem 0;
}

.gallery-swiper-container {
  position: relative;
}

.gallery-swiper-container .swiper-nav .swiper-button {
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.gallery-swiper-container .swiper-nav .swiper-button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.gallery-swiper-container .swiper-nav .swiper-button.swiper-button-disabled {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.gallery-swiper-container .gallery-swiper {
  width: 100%;
  height: 350px;
}

.gallery-swiper-container .swiper-nav .swiper-button {
  position: absolute;
  top: 50%;
  z-index: 1;
}

.gallery-swiper-container .swiper-nav .swiper-button.swiper-button-prev-2 {
  left: 5px;
}

.gallery-swiper-container .swiper-nav .swiper-button.swiper-button-next-2 {
  right: 5px;
}

.gallery-swiper-container .gallery-swiper .swiper-slide .gallery-img {
  border-radius: 0px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.gallery-swiper-container .gallery-swiper .swiper-slide .gallery-img img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-swiper .swiper-wrapper {
  margin: 0 0 2.5rem 0;
}

.gallery-img {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* *********gallery section ends here******* */

/* *********About section starts here******* */
section.section-about {
  padding: 4rem 0;
}

.yacht-options p {
  margin-bottom: 1rem;
  /* line-height: 1.6; */
  font-size: 1vw;
  color: var(--light);
}

.yacht-options strong {
  font-weight: 600;
}

.yacht-inclusions {
  list-style: none;
  padding: 0;
  margin: 0;
}

.yacht-inclusions li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 1rem;
  font-size: 1vw;
  color: var(--light);
}

.yacht-inclusions li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--light);
}

.straight-line {
  width: 1px;
  height: 100%;
  background-color: var(--gold);
}

/* *********About section ends here******* */

/* ***********Yards details section starts here***** */
section.section-yards-details {
  padding: 4rem 0;
}

.yachts-page {
  margin: unset !important;
}

.gold {
  color: var(--gold);
}

/* ***********Yards details section ends here***** */

/* *******vikas css ends here***** */

/* thank you css */

section.section-thankyou {
  height: 85vh;
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.thankyou-title {
  text-align: center;
  font-family: var(--Montserrat);
  margin: 0.35rem 0 0 0;
  font-weight: 500;
}

.thankyou-subtitle {
  text-align: center;
  font-family: var(--Montserrat);
  font-weight: 400;
  text-wrap: balance;
  opacity: 0.85;
  margin: 0.5rem 0 0 0;
}

.go_txt {
  font-size: 15px;
  color: #000;
  color: var(--light);
  background-color: var(--secondary) !important;
  border-radius: 3.125rem;
  font-family: var(--Montserrat);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  margin: 15px auto 0;
}

.section-privacy-policy {
  margin: 10vw 0 0 0;
}

/*********** media query *********/

@media only screen and (max-width: 1700px) {
  .navbar-container {
    padding: 0.5rem 3rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .navLinks-content {
    gap: 8vw;
  }
}

@media only screen and (max-width: 1400px) {
  .navbar-container {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    padding: 0.5rem 2rem;
  }

  .sub-navLinks-txt {
    gap: 1vw;
  }

  .sub-navLinks-txt .navLink {
    font-size: 1.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .custom-container {
    width: 90vw;
    max-width: 90%;
    margin: auto;
  }

  .navLinks-content {
    gap: 2vw;
  }

  .others-navLinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5vw;
  }

  .logo {
    width: 7vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .navLinks {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    gap: 1.5rem;
  }

  .dropped .dropdown-content {
    height: 25dvh;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  section.section-main-banner {
    margin: 6rem 0 0 0;
  }

  .yachts-lists {
    gap: 3rem 1.25rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .yachts-lists .yachts-list {
    padding: 2rem 1rem 1.5rem 1rem;
    gap: 1.5rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .yachts-lists .yachts-list .yachts-actions .yacht-action {
    font-size: 1vw;
    gap: 0.25rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media only screen and (max-width: 1200px) {
  .logo-img {
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
    width: 18rem;
  }

  .navLinks {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    gap: 1rem;
  }

  .menu {
    display: block;
  }

  .navLinks {
    display: none;
  }

  .navLinks-container .line {
    display: none;
  }

  .sub-navLinks {
    display: none;
  }

  .offcanvas-link,
  .offcanvas-link-drop {
    font-size: 2vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dropdown-content .navLink {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 1.85vw;
  }

  section.section-main-banner {
    margin: 5.5rem 0 0 0;
  }

  .section-heading .section-title {
    font-size: 2.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-desc {
    font-size: 1.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-subtitle {
    font-size: 1.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists {
    grid-template-columns: repeat(2, 1fr);
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    /* transition: all 1s ease; */
  }

  .yachts-lists .yachts-list .yachts-title {
    font-size: 2.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list .yachts-price {
    font-size: 2.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list .yachts-infos .pessenger-no,
  .yachts-lists .yachts-list .yachts-infos .pessenger-length {
    font-size: 1.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list .yachts-actions .yacht-action {
    font-size: 1.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .btn-primary {
    font-size: 1.35vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  /* *******vikas css starts here***** */
  .btn-detailed {
    padding: 0.65rem 3rem !important;
  }

  .text-small {
    font-size: 1.25vw;
  }

  .yacht-options p {
    font-size: 1.25vw;
  }

  .yacht-inclusions li {
    font-size: 1.25vw;
  }

  .section-heading .sub-title-heading {
    font-size: 1.75vw;
  }

  .section-heading .sub-title-heading2 {
    font-size: 1.9vw;
  }

  .yacht-options p {
    font-size: 1.25vw;
  }

  .yacht-inclusions li {
    font-size: 1.25vw;
  }

  section.section-deatiled {
    margin-top: 3rem;
  }

  /* *******vikas css ends here***** */
}

/* ********farzenn media query ********* */
@media only screen and (max-width: 1080px) {
  .contact__div {
    padding: 120px 40px;
    margin-top: -24%;
  }

  .form_box {
    width: 100%;
  }
}

/* ********farzenn media query ********* */

@media only screen and (max-width: 991px) {
  .logo {
    width: 8vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-title {
    font-size: 4.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-desc {
    font-size: 2vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-subtitle {
    font-size: 2.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .logo-img {
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
    width: 15rem;
  }

  .offcanvas-link,
  .offcanvas-link-drop {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dropdown-content .navLink {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 2.85vw;
  }

  .dropped .dropdown-content {
    height: 30dvh;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  section.section-main-banner {
    margin: 4.5rem 0 0 0;
  }

  .banner-content p {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .btn-primary {
    font-size: 1.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists {
    grid-template-columns: repeat(1, 1fr);
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .yachts-lists .yachts-list .yachts-title {
    font-size: 2.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list .yachts-price {
    font-size: 2.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list .yachts-infos .pessenger-no,
  .yachts-lists .yachts-list .yachts-infos .pessenger-length {
    font-size: 1.85vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list .yachts-actions .yacht-action {
    font-size: 1.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  /* *********farzeen css starts here****** */
  .form_title h2 {
    font-size: 4vw;
  }

  .contact__div {
    padding: 70px 40px;
  }

  .contact_box h2 {
    font-size: 7vw;
  }

  /* *********farzeen css ends here****** */

  /* *******vikas css starts here***** */

  .text-small {
    font-size: 2vw;
  }

  .section-heading .sub-title-heading {
    font-size: 2.25vw;
  }

  .section-heading .sub-title-heading2 {
    font-size: 2.45vw;
  }

  .yacht-options p {
    font-size: 2vw;
  }

  /* *******vikas css starts ends***** */

  .footer-form .footer-form-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3vw;
  }

  .footer-form .footer-form-subtitle {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 2vw;
  }

  .footer-line {
    width: 100%;
    height: 1px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas-link,
  .offcanvas-link-drop {
    font-size: 4vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dropdown-content .navLink {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3.5vw;
  }

  section.section-main-banner {
    margin: 4rem 0 0 0;
  }

  .banner-content p {
    font-size: 3.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-content {
    right: 8%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-content.left {
    left: 8%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list .yachts-title {
    font-size: 4.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list .yachts-price {
    font-size: 3.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list .yachts-infos .pessenger-no,
  .yachts-lists .yachts-list .yachts-infos .pessenger-length {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list .yachts-actions .yacht-action {
    font-size: 2.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  /* *******vikas css starts here***** */
  .btn-detailed {
    padding: 0.65rem 1rem !important;
  }

  .straight-line {
    width: 100%;
    height: 1px;
    background-color: var(--gold);
  }

  /* *******vikas css starts ends***** */

  .btn-primary {
    font-size: 2.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media only screen and (max-width: 576px) {
  .navbar-container {
    padding: 0.5rem 0.75rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .logo {
    width: 15vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .offcanvas-link,
  .offcanvas-link-drop {
    font-size: 4.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .offcanvas-close {
    width: 55px;
    height: 55px;
  }

  .others-navLinks .navLink {
    display: none;
  }

  .dropdown-content .navLink {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4.75vw;
  }

  .dropped .dropdown-content {
    height: 25dvh;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  section.section-main-banner {
    margin: 3.5rem 0 0 0;
    height: 90dvh;
  }

  .banner-content p {
    font-size: 5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-content {
    top: 70%;
    right: 5%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-content.left {
    left: 5%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-title {
    font-size: 5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-desc {
    font-size: 2.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-container {
    padding: 2rem 1rem;
  }

  .btn-overview {
    font-size: 1rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 0.5rem 1rem;
  }

  .yachts-lists .yachts-list .yachts-infos {
    width: 100%;
    padding: 0.5rem 0.85rem;
  }

  .yachts-lists .yachts-list .yachts-actions {
    gap: 0.5rem;
  }

  .yachts-lists .yachts-list .yachts-title {
    font-size: 5.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list .yachts-price {
    font-size: 5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list .yachts-infos .pessenger-no,
  .yachts-lists .yachts-list .yachts-infos .pessenger-length {
    font-size: 3.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list .yachts-actions .yacht-action .icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .yachts-lists .yachts-list .yachts-actions .yacht-action {
    font-size: 3.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .yachts-lists .yachts-list {
    padding: 2rem 1rem 1.5rem 1rem;
    gap: 1rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  /* *******vikas css starts here***** */
  .text-small {
    font-size: 2.75vw;
  }

  .section-heading .sub-title-heading {
    font-size: 3vw;
  }

  .section-heading .sub-title-heading2 {
    font-size: 3.5vw;
  }

  .btn-detailed {
    padding: 0.5rem 1rem !important;
  }

  .yacht-options p {
    font-size: 2.75vw;
  }

  .yacht-inclusions li {
    font-size: 2.75vw;
  }

  /* *******vikas css ends here***** */

  /* *******farzeen css starts here */
  .contact_box h2 {
    font-size: 10vw;
  }

  .form_title h2 {
    font-size: 7vw;
  }

  /* *******farzeen css ends here */

  .footer-form .footer-form-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4.5vw;
  }

  .footer-form .footer-form-subtitle {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3vw;
  }

  .btn-primary {
    font-size: 3.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}
