@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
body {
  margin: 0;
  font-family: Spectral;
  color: #000;
  height: 1280px;
}
.mountain-bg {
  width: 100%;
  height: 1100px;
  background: linear-gradient(
      to bottom,
      #e0e4db 10%,
      rgba(255, 255, 255, 0) 50%
    ),
    url("./images/bg-mountain.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0px;
}

.share-your-ambitions-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0px;
}

.left {
  grid-column: span 6 / span 6;
  grid-column-start: 1;
  padding-right: 94px;
  padding-left: 112px;
}

.gap-row {
  height: 77px;
  background-color: inherit;
}

.right {
  grid-column: span 6 / span 6;
  grid-column-start: 7;
  padding-left: 114px;
  padding-right: 104px;
}

.row-colored {
  background-color: #e0e4db;
}

.row-first-child {
  padding-top: 180px;
}

.div-left-1 {
  max-width: 400px;
  margin: 0 auto;
}

.div-right-1 {
  max-width: 400px;
  margin: 0 auto;
}

.heading-large {
  font-size: 48px;
  font-style: normal;
  font-weight: 275;
  line-height: 105%;
  margin: 0;
}

.stylish-text {
  font-size: 48px;
  font-style: italic;
  font-weight: 275;
  line-height: 105%;
}

.main-logo {
  position: absolute;
  left: calc(50vw - 37px);
  width: 74px;
  z-index: 999;
  padding: 45px 0px 107px 0px;
}

.vertical-line {
  position: absolute; /* Fix it so it spans the full viewport */
  left: 50%;
  top: 220px;
  width: 2px;
  height: 100vh; /* Full height of the viewport */
  background: #000;
  z-index: 10;
}

.logo {
  position: absolute;
  left: 50vw;
  top: 50vh;
  z-index: 11;
}

.small-line {
  width: 1px;
  height: 28px;
  background: #a05511;
  margin: 10px 0;
}

.heading-small {
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
}
.heading-medium {
  font-size: 36px;
  font-style: normal;
  font-weight: 275;
  line-height: 115%;
}

.body-text-large {
  font-size: 24px;
  font-style: normal;
  font-weight: 275;
  line-height: 115%;
}

.body-text-small {
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 135%;
}

.body-text-medium {
  font-family: Spectral;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 135%;
}

.body-text-yellow-underline-small {
  color: #a05511;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.body-text-yellow-underline-large {
  color: #a05511;
  font-family: Spectral;
  font-size: 24px;
  font-style: normal;
  font-weight: 275;
  line-height: 115%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.hospitality {
  font-size: 24px;
  font-style: italic;
  font-weight: 275;
  line-height: 115%;
}

.vertical-divider-image {
  animation: slideInFromBottom 2s ease-out;
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

p,
li {
  animation: slideInFromBottom 2s ease-out;
}

.that-has {
  font-size: 20px;
  font-style: italic;
  font-weight: 275;
  line-height: 115%;
}

.established-to-build-container {
  max-width: 422px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cloud-container {
  height: 202px;
  margin: 0px -112px 0px -94px;
  position: relative;
}

.cloud {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  animation: moveCloud 3s infinite alternate ease-in-out;
}

@keyframes moveCloud {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(40px);
  }
}

.value-creation-container {
  max-width: 422px;
  flex-shrink: 0;
  margin-top: 9px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.what-makes-container {
  display: flex;
  gap: 25px;
  flex-direction: column;
  z-index: 9;
}

.question-body {
  max-width: 293px;
  padding-left: 52px;
  display: flex;
  gap: 25px;
  flex-direction: column;
}

.share-your-ambitions-container {
  max-width: 278px;
  flex-shrink: 0;
  margin-top: 9px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.left-second-heading-layout {
  max-width: 325px;
}

.list {
  color: #000;
  font-family: Spectral;
  font-size: 20px;
  font-style: normal;
  font-weight: 275;
  line-height: 115%;
}

ul {
  list-style: none;
}

.btn-container {
  margin-top: 12px;
}

p {
  margin: 0;
}

.btn {
  max-width: 237px;
  display: flex;
  justify-content: center;
  padding: 14px 25px 14px 24px;
  background-color: #5c1b17;
  font-size: 14px !important;
  border-radius: 43px;
  font-family: Inter;
  flex-shrink: 0;
  color: white;
  text-decoration: none;
}

@media (max-width: 972px) {
  .question-body {
    padding-left: 0px;
  }
}

@media (max-width: 500px) {
  .left {
    grid-column: span 1 / span 1;
    grid-column-start: 1;
    padding-right: 48px;
    padding-left: 18px;
  }
  .right {
    grid-column: span 1 / span 1;
    grid-column-start: 1;
    padding-left: 18px;
    padding-right: 48px;
  }
}

@media (max-width: 888px) {
  .row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
  .left {
    grid-column: span 1 / span 1;
    grid-column-start: 1;
    padding: 0px;
  }
  .right {
    grid-column: span 1 / span 1;
    grid-column-start: 1;
    padding: 0px;
  }
  .btn-container {
    margin-top: 30px;
  }
  .logo {
    position: absolute;
    left: calc(100vw - 32px);
    top: 50vh;
    z-index: 11;
  }

  .vertical-line {
    position: absolute; /* Fix it so it spans the full viewport */
    left: calc(100vw - 32px);
    width: 2px;
    height: 100vh; /* Full height of the viewport */
    background: #000;
    z-index: 10;
  }
  .question-body {
    gap: 30px;
  }
  .cloud-container {
    display: none;
  }
  .cloud {
    display: none;
  }
  .stylish-text {
    font-size: 30px;
    font-style: italic;
    font-weight: 275;
    line-height: 105%;
  }
  .heading-large {
    font-size: 30px;
    margin-bottom: 80px;
    max-width: 254px;
  }
  .body-text-large {
    font-size: 20px;
  }
  .established-to-build-container {
    max-width: 300px;
  }
  li {
    font-size: 18px;
  }
  .that-has {
    font-size: 18px;
  }
  .list-layout {
    max-width: 245px;
  }
  .value-creation-container {
    max-width: 320px;
  }
  .body-text-yellow-underline-large {
    font-size: 20px;
  }
  ul {
    padding-left: 0px;
  }
  .mountain-bg {
    /* display: contents; */
    background-color: #e0e4db;
  }

  .share-your-ambitions-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    width: 100%;
    height: 573px;
    background: linear-gradient(
        to bottom,
        #e0e4db 10%,
        rgba(255, 255, 255, 0) 50%
      ),
      url("./images/bg-mountain-small.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .div-left-1 {
    max-width: 248px;
  }
}

/* Popup  Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.popup-content {
  background-color: #f7e8e5;
  padding: 70px;
  /* border-radius: 12px; */
  text-align: center;
  max-width: 600px;
  width: 90%;
  position: relative;
}

.popup-content h2 {
  font-size: 22px;
  font-weight: normal;
  color: #333;
  margin-bottom: 5px;
}

.popup-content p {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.publication-title {
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 20px;
}
.form-heading-layout {
  max-width: 595px;
  /* height: 160px; */
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 275;
}

.form-heading-layout p {
  margin: 0px;
  font-size: 28px;
  font-weight: 275;
  line-height: 1;
}
.what-make {
  margin: 0px;
  font-style: italic;
}

.please-text {
  font-size: 14px !important;
  font-weight: 300;
}

.line-img {
  font-size: 12px;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
}

input[type="text"],
input[type="email"] {
  width: 80%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

input[type="submit"] {
  background-color: #f4c5b9;
  border: none;
  padding: 12px;
  border-radius: 20px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  width: 80%;
}

#publicationPopup {
  display: none;
}

input[type="submit"]:hover {
  background-color: #e8a99a;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #f29273;
}

.btn-thankyou {
  width: 257px;
  background-color: #5c1b17;
  border: none;
  padding: 12px;
  border-radius: 20px;
  font-size: 14px;
  color: white;
  cursor: pointer;
  font-weight: 500;
  margin: 0 auto;
  display: block;
  transition: background-color 0.3s ease;
}

.btn-thankyou:hover {
  background-color: #5c1b17;
}

.btn-thankyou.disabled {
  background-color: #d8b1a8;
  cursor: not-allowed;
}

.thank-you {
  font-size: 28px !important;
  color: #000;
  text-align: center;
  font-style: italic;
  font-weight: 300;
  padding-left: 0;
}

.thank-text {
  max-width: 416px;
  font-size: 14px !important;
  font-family: "Inter";
  color: #000;
  text-align: center;
  font-weight: 300;
  padding-left: 0;
}

.thank-text a {
  color: #a05511;
  font-weight: 600;
  /* font-size: 16px;
  text-align: center;
  padding-bottom: 1rem;
  padding-left: 0; */
}

@media (max-width: 768px) {
  .popup-content {
    padding: 30px;
    width: 95%;
  }

  .popup-content h2 {
    font-size: 20px;
  }

  .popup-content p {
    font-size: 16px;
  }

  input[type="text"],
  input[type="submit"],
  .btn-thankyou {
    width: 90%;
  }

  .close-btn {
    font-size: 22px;
    top: 8px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    padding: 20px;
  }

  .popup-content h2 {
    font-size: 18px;
  }

  .popup-content p {
    font-size: 14px;
  }

  .publication-title {
    font-size: 18px;
  }

  input[type="text"],
  input[type="submit"],
  .btn-thankyou {
    width: 100%;
  }

  .thank-text {
    font-size: 14px;
    width: 100%;
    padding-left: 0;
  }

  .close-btn {
    font-size: 20px;
    top: 5px;
    right: 8px;
  }
}

.input-container {
  position: relative;
  width: 80%;
}

.input-container input {
  width: 100%;
  padding: 16px 12px 6px;
  border: 1px solid #858585;
  background-color: #f5f5f5;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.input-container label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #999;
  pointer-events: none;
}

.input-container input:focus + label,
.input-container input:not(:placeholder-shown) + label {
  top: 8px;
  left: 10px;
  font-size: 12px;
  color: #878787;
}
