.noto-sans {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
}
html {
  scroll-behavior: smooth;
}
:root {
  --color-dark: #000;
  --color-white: #fff;
  --color-primary: #373534;
  --color-primary-second: #a79d96;
  --nav-color-primary: #f7d2d270;
  --color-primary-light-grey: #37353430;
  --color-red: #f44336;
  --color-blue: #1a73e8;
  --color-gray: #80868b;
  --color-grayish: #e0e0e0;
  --color-graylight: #d9d9d9;
  --color-golden: #cfa76d;
  --color-secondary: #e4b345;
  --btn-blue: #2b5ac6;
  --btn-green: #5dae74;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: linear-gradient(
    180deg,
    #fff 13.54%,
    rgba(255, 255, 255, 0.62) 57.81%,
    rgba(255, 255, 255, 0) 100%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  z-index: 1000;
}
.container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0px;
}
.row {
  display: flex;
}
.a-i {
  align-items: center;
}
.j-cc {
  justify-content: space-between;
}
.j-c {
  justify-content: center;
}
.t-x {
  text-align: center;
}
.g-20 {
  gap: 30px;
}
.ml-20 {
  margin-left: 50px;
}
.fs-30 {
  font-size: 30px;
}

.ml-0 {
  margin-left: 0px;
}
.mr-20 {
  margin-right: 50px;
}
.menu a {
  color: var(--color-dark);
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 18px;
  width: 130px;
}
.menu a:hover {
  color: var(--color-gray);
  transition: 0.3s;
}
.language {
  margin-left: 40px;
}
.side-button {
  border: 1px solid #cfa76d;
  font-size: 18px;
  height: 35px;
  margin-left: 50px;
  border-radius: 4px;
  white-space: wrap;
  background-color: var(--color-golden);
  padding: 18px 25px;
}
.side-button a {
  text-decoration: none;
  color: var(--color-dark);
}
.side-button a:hover {
  color: var(--color-gray);
  transition: 0.3s;
}

.bk-page {
  position: relative;
  max-width: 100%;
  height: 100vh;
}
.bk-page img,
.bk-page video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bk-text {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.bk-text h1 {
  width: 114%;
  font-size: 40px;
  letter-spacing: 2px;
}
.bk-icon {
  margin: 40px 0 0 20px;
  transition: 0.9s;
}
.bk-text a i {
  font-size: 30px;
  transition: 0.9s;
}
.bk-icon:hover {
  transform: translateY(10px);
}
.bk-text a i:hover {
  transform: translateY(20px);
}
.d-text {
  transform: translate(0%, 30%);
  color: #929292;
}
.d-text h3 {
  font-weight: 400;
  margin-bottom: 40px;
}
.d-text h1 {
  margin-bottom: 250px;
  color: #c3c3c3;
}
.t-page {
  background: var(--color-white);
  height: 100vh;
}

.glass-card {
  background: #0d0d0d;
  width: 400px;
  height: 660px;
  margin-right: 5px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.glass-card img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05));
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid rgba(19, 16, 16, 0.25);

  flex-direction: column;
  opacity: 0;
  transition: 0.5s ease;
  color: #fff;
  padding: 25px;
}

.glass::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(15, 15, 15, 0.25),
    transparent
  );
  transform: rotate(25deg);
}

.glass-card:hover .glass {
  opacity: 1;
}

.glass h2 {
  color: var(--color-white);
  letter-spacing: 3px;
  margin-bottom: 15px;
  z-index: 100;
}

.glass p {
  color: var(--color-white);
  width: 300px;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  margin: 25px 0;
  z-index: 2;
}

.arrow span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 900;
  margin-left: 100px;
  color: var(--color-white);
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  transition: 0.4s;
  z-index: 2;
}
.arrow span img {
  color: var(--color-white);
  width: 25px;
  height: 15px;
}
.glass-card:hover .arrow p {
  transition: all 0.3s ease;
  transform: translateX(35px);
}
.arrow p {
  margin: 0 0 0 -110px;
  font-size: 20px;
  padding: 13px 0;
  transition: 0.9s ease-in-out;
  margin-left: -125px;
  transition: 0.4s;
  font-variant: small-caps;
}
.experience {
  background: #fffdfa;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.f-page {
  width: 50%;
  padding: 80px;
  background-blend-mode: lighten;
}

.small-title {
  font-size: 24px;
  letter-spacing: 3px;
  font-weight: 400;
  color: #999;
}
.f-page h1 {
  font-size: 48px;
  font-weight: 400;
  margin: 20px -1px;
  color: #b5a9a1;
}
.f-page h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}
.f-page p {
  font-size: 18px;
  line-height: 1.7;
  color: #777;
  max-width: 500px;
}
.btn {
  margin-top: 100px;
  display: inline-flex;
  gap: 15px;
  text-decoration: none;
  color: #000;
  font-size: 12px;
  letter-spacing: 2px;
}

.btn i {
  width: 48px;
  font-size: 18px;
  height: 48px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.btn i:hover {
  background: #000;
  color: #fff;
}
.btn span {
  padding: 13px 0;
  background-color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  margin-left: -25px;
  transform: translateX(0px);
}
.btn span:hover {
  transform: translateX(30px);
}
.image {
  width: 55%;
  height: 100vh;
}
.image img {
  margin-top: 20px;
  margin-bottom: 80px;
  width: 106%;
  height: 100%;
  object-fit: cover;
  margin-left: 17px;
  margin-top: 20px;
}
.contact-text {
  text-align: center;
  margin: 65px 0;
}
.contact-text a {
  filter: grayscale(1);
  opacity: 0.9;
  font-size: 0px;
  margin-left: 20px;
}
.contact-text a:hover {
  filter: grayscale(0.1);
  opacity: 1;
}
.contact-text img {
  margin-top: 15px;
}
.contact-menu {
  border-top: 1px solid #a7a29e;
  margin: 20px 0 20px 0;
}
.submenu h4 {
  width: 30px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #a79d96;
}
.submenu ul {
  padding: 40px 0 0 80px;
  width: 270px;
  list-style: none;
}
.submenu li {
  margin-bottom: 7px;
  font-weight: 300;
  cursor: pointer;
}
.submenu li:hover {
  color: #b08755;
}
.submenu-1 h4 {
  width: 30px;
  margin-bottom: 40px;
  color: #a79d96;
  font-weight: 500;
}
.submenu-1 ul {
  padding: 40px 0 0 30px;
  width: 270px;
  list-style: none;
}
.submenu-1 li {
  cursor: pointer;
  margin-bottom: 9px;
  font-weight: 300;
}
.submenu-1 li:hover {
  color: #b08755;
}
.submenu-2 h4 {
  width: 30px;
  margin-bottom: 40px;
  font-weight: 500;
  color: #a79d96;
}
.submenu-2 ul {
  border-right: 1px solid #a7a29e;
  padding: 40px 0 0 30px;
  width: 270px;
  list-style: none;
}
.submenu-2 li {
  cursor: pointer;
  margin-bottom: 9px;
  font-weight: 300;
}
.submenu-2 li:hover {
  color: #b08755;
}
.sidemenu {
  padding: 20px 20px;
  margin-top: 40px;
}
.sidemenu h4 {
  text-align: center;
  color: #c3bdb8;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.sidemenu p {
  width: 330px;
  font-weight: 300;
}
.btn-1 {
  margin-top: 50px;
  display: inline-flex;
  gap: 15px;
  text-decoration: none;
  color: #000;
  letter-spacing: 2px;
}
.btn-1 i {
  width: 48px;
  font-size: 18px;
  height: 48px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: 0.9s;
}
.btn-1 i:hover {
  background: #000;
  color: #fff;
}
.btn-1 span {
  padding: 13px 0;
  background-color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  transition: 0.9s ease-in-out;
  margin-left: -25px;
  transform: translateX(0px);
}
.btn-1 span:hover {
  transform: translateX(50px);
}
.tt {
  margin: 20px 80px;
  font-style: italic;
  color: #9a9a9a;
  font-size: 19px;
  font-weight: 300;
}
.per {
  margin: 20px 80px;
  color: #9a9a9a;
  letter-spacing: 5px;
  font-weight: 300;
  font-size: 16px;
}
.tower-main ul {
  display: flex;
  align-items: center;
  padding: 102px 0 0 100px;
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
}
.sain {
  padding: 0 30px;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}
.tower-main li {
  padding-left: 0px;
}
.tower-main ul {
  gap: 15px;
}
.tower-main li + li::before {
  content: "";
  width: 1px;
  height: 15px;
  background: #fff;
  display: inline-block;
  margin-right: 15px;
}
.tower-main a {
  color: #fff;
  font-family: "Noto Sans";
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.second-page {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.second-page::before {
  width: 23px;
  height: 16px;
  background-image: url(../img/quotes.svg);
  position: absolute;
  content: "";
  left: -27px;
  top: 0px;
  transform: rotate(180deg);
}
.second-page::after {
  width: 23px;
  height: 16px;
  background-image: url(../img/quotes.svg);
  position: absolute;
  content: "";
  right: -27px;
  top: 0px;
}
.td-text {
  width: 85%;
  line-height: 1.9;
  margin: 40px 80px 0px 80px;
  font-size: 34px;
  background-blend-mode: lighten;
}
.td-text p {
  width: 90%;
}
.td-img img {
  width: 90%;
  height: 80%;
  object-fit: cover;
}
.scroll-tab {
  padding: 0px 100px 50px 100px;
  align-items: flex-start;
  max-width: 100%;
}
.side-bar {
  position: sticky;
  top: 200px;
  width: 28%;
}
nav {
  display: block;
}
nav ul {
  list-style: none;
}
.navigation ul li {
  padding: 20px 0;
  border-left: 1px solid #ccc;
  padding-left: 30px;
  transition: all 0.3s ease;
}
.active {
  color: #000;
  transition: all 0.3s ease;
}
.active::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: -31px;
  top: 50%;
  transform: translateY(-50%);
}
.navigation ul li a {
  color: #ccc;
  font-family: "Noto Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.main-content {
  width: calc(100% - 40%);
  margin-left: auto;
}
.nav-content {
  height: 50vh;
  padding: 75px 0;
  border-bottom: 1px solid #ccc;
}
.scroller-card {
  align-items: flex-start;
}
.card-wrap {
  width: calc(100% - 300px);
  padding-right: 30px;
}
.mobile-text {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: none;
}
.description {
  font-size: 16px;
  width: 400px;
  font-weight: 300;
  line-height: 30px;
}
.floating-btn {
  background: transparent;
  border: 0;
  margin: 30px 0;
  font-weight: 600;
  outline: none !important;
  text-decoration: none !important;
  transition: all 1.5s;
}
.float-circle {
  border: 1px solid #000;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  transition: all 0.3s ease;
}
.float-text {
  padding: 13px 0;
  border-radius: 10px;
  background: #ffffff;
  text-decoration: none;
  font-size: 12px;
  color: #000;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 17px;
  transform: translateX(-8px);
  transition: all 0.7s ease;
}
.float-text:hover {
  transform: translateX(30px);
}
.card-img {
  width: 300px;
  height: 300px;
}
.card-img img {
  width: 100%;
  height: 100%;
  margin-left: 60px;
  object-fit: cover;
  border-radius: 7px;
}
.award-main {
  padding: 100px 0;
}
.title {
  color: #000;
  font-family: "Noto Sans";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  padding-bottom: 0;
  margin-bottom: 10px;
}
.section-subtext {
  color: #000;
  font-family: "Noto Sans";
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 50px;
}
.count-wrapper {
  max-width: 800px;
  margin: auto;
}
.count-box {
  width: 33%;
  flex-direction: column;
}
.counter-key,
.counter-key1,
.counter-key2 {
  color: #000;
  font-family: "Noto Sans";
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 15px;
  position: relative;
}
.counter-key1::after {
  position: absolute;
  content: " " attr(unit) " M";
  font-size: 30px;
  top: -13px;
}
.counter-key2::after {
  position: absolute;
  content: " " attr(unit) " m";
  font-size: 30px;
  bottom: -13px;
}
.value {
  padding-bottom: 0;
  color: #000;
  font-family: "Noto Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.icon-section {
  padding: 70px 0;
  overflow: hidden;
  position: relative;
}
.icon-slider .item {
  height: 120px;
  cursor: pointer;
}
.icon-slider img {
  width: 160px;
  opacity: 0.5;
  transition: 0.4s ease;
  filter: grayscale(100%);
}

.icon-slider img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}
.owl-carousel .owl-stage {
  display: flex;
  width: max-content !important;
  transition-timing-function: linear !important;
}
.float-btn {
  background: transparent;
  border: 0;
  margin: 50px 0;
  font-weight: 600;
  font-variant: small-caps;
  outline: none !important;
  text-decoration: none !important;
  transition: all 1.5s;
}
.init-animate-section {
  padding: 50px 0;
  background: #fcfcfc;
}
.animate-title {
  width: 480px;
  margin-bottom: 20px;
}
.animate-text {
  width: 40%;
  font-size: 14px;
  color: #000;
  text-align: center;
  flex-direction: column;
}
.animate-text h1 {
  font-family: "Noto Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 55px;
}
.floating-wrapper {
  padding-left: 18px;
  text-decoration: none;
  padding-right: 18px;
}
.landing-part {
  flex-direction: column;
  width: 100%;
  height: 90%;
  margin-bottom: 10px;
  padding: 250px 100px;
  background: #fff;
}
.t-e {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
}
.landing-part h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
}
.te-x {
  color: #a79d96;
}
.twer-main ul {
  display: flex;
  align-items: center;
  padding: 102px 0 0 100px;
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
}
section {
  display: block;
}
.sin {
  padding: 0 30px;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: #000;
  text-transform: uppercase;
  position: relative;
}
.twer-main li {
  padding-left: 0px;
}
.twer-main ul {
  gap: 15px;
}
.twer-main li + li::before {
  content: "";
  width: 1px;
  height: 15px;
  background: #000;
  display: inline-block;
  margin-right: 15px;
}
.twer-main a {
  color: #000;
  font-family: "Noto Sans";
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.premium-place {
  position: relative;
  margin-bottom: 100vh;
  height: 300vh;
}
.trigger-wpsec {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.spacer {
  left: 0;
  height: 1px;
  position: absolute;
  width: 100%;
  margin-top: 0;
  top: 50%;
}
.scrollmagic {
  /* position: relative; */
  height: 100%;
}

.fix-wrap {
  position: sticky;
  top: 70px;
  /* width: 100%; */
}
.place-wrap {
  background: #fcfcfc;
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 1600px) {
  .jaw-dropping {
    padding: 30px 20px 20px;
  }
}
.jaw-dropping {
  width: 50%;
  padding: 70px 60px 0 60px;
  height: calc(100vh - 70px);
  background: white;
  z-index: 5;
  flex-direction: column;
  position: relative;
}
.lead-logo {
  color: rgba(55, 53, 52, 0.5);
  padding-bottom: 24px;
  margin-bottom: 24px;
  position: relative;
}
.lead-logo {
  font-size: 16px;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.6px;
  margin-top: 12px;
}
.lead-logo p {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.6px;
  margin-top: 12px;
}
.lead-logo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  margin-bottom: 20px;
  height: 1px;
  background: linear-gradient(
    270deg,
    rgba(167, 157, 150, 0.44) -6.51%,
    #a79d96 50.66%,
    rgba(167, 157, 150, 0.42) 100%
  );
}
.ob-part {
  position: absolute;
  left: 0;
  top: 170px;
  width: 100%;
  opacity: 0;
  transition: 0.6s;
}

.ob-part.active {
  opacity: 1;
}
.lounge {
  max-width: 100%;
  max-height: 90%;
}
.info {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  width: 560px;
  max-width: 100%;
  margin: 40px auto;
  padding-bottom: 0;
}
@media screen and (max-width: 1366px) {
  .info {
    width: 500px;
  }
}
@media screen and (max-width: 1440px) {
  .info {
    max-width: 100%;
  }
}
.travel-banner {
  height: calc(100vh - 70px);
  width: 50%;
  position: sticky;
  top: 70px;
  right: 0;
  overflow: hidden;
}
.observation,
.observation-1,
.observation-2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: 0.7s ease;
}
.observation.active,
.observation-1.active,
.observation-2.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.travel-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fine-dining {
  padding: 120px 100px;
  background: #f8f7f5;
}
.smaller {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin: 0 auto;
}
.bigger {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 8px;
  margin: 0 auto 80px;
}
.flex {
  height: 100%;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.hoverable-card {
  width: 100%;
  position: relative;
  aspect-ratio: 14 / 11;
}
.main-data {
  width: 435px;
  margin: auto;
  max-width: 80%;
  transition: 0.3s;
}
.main-data img {
  width: auto;
  margin: auto;
  max-width: 80%;
}
.main-data p {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 32px;
}
.stale {
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 1400px;
  max-width: 100%;
  margin: -22px auto;
}
.list {
  flex-direction: column;
  margin: 22px;
  overflow: hidden;
  width: calc(50% - 44px);
  aspect-ratio: 23 / 18;
  background: url(https://www.burjkhalifa.ae/wp-content/themes/salient-child/assets/images/banner/banner1.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 20px;
}
.list figure {
  width: auto;
  max-width: 100%;
  z-index: 2;
}
.list h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  width: 405px;
  max-width: 100%;
  color: #fff;
  text-align: center;
  z-index: 2;
  margin-top: 20px;
}
.list a {
  margin-left: auto;
  width: 90px;
  margin-top: 40px;
  backdrop-filter: blur(11px);
  border-radius: 50%;
  overflow: hidden;
  margin-right: 30px;
  z-index: 9;
  position: absolute;
  bottom: 20px;
  right: 0px;
}
.list a img {
  width: 100%;
}
.list::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.72) 52.18%,
    rgba(0, 0, 0, 0.18) 100%
  );
}
.attractions {
  padding: 120px 0;
  background: #fffdfa;
}
.projection-main {
  padding: 120px 60px;
  background: #fff;
}

.projection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.projection-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.projection-content p {
  max-width: 500px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

.form-box form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.form-box label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

.form-box input:focus,
.form-box textarea:focus {
  border-color: #cfa76d;
}

.form-box textarea {
  grid-column: span 2;
  height: 100px;
  resize: none;
}

.form-box button {
  grid-column: span 2;
  margin-top: 10px;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.form-box button:hover {
  background: #cfa76d;
  color: #000;
}
.projection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transform: scale(0.9);
}
.projection-image:hover img {
  transform: scale(1);
  transition: 0.4s ease-in-out;
}
