* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  user-select: none;
}
body {
  background-image: linear-gradient(#1e141e 55.27%, #9048c4 135.64%);
  background-size: 100vw 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.page-container {
  font-family: "DM Sans", sans-serif;
  line-height: 25px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 10%; */
}

.welcome {
  width: 42%;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInFromBottom 0.5s ease forwards;
  max-height: 80vh;
}

.welcome h1 {
  font-size: 52px;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  color: #f0eaed;
}

.welcome p {
  color: #f0eaed;
  font-weight: 250;
  margin-top: 30px;
  line-height: 28px;
  font-size: 20px;
  letter-spacing: 1px;
}

.text-white {
  color: #ffffff !important;
}

.proceed {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
  /* align-items: center; */
  display: flex;
  flex-direction: column;
}

.proceed-start {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
  /* align-items: center; */
  display: flex;
  flex-direction: column;
}

.proceed button {
  border-radius: 7px;
  background-color: #c4b8ff;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 17pt;
  color: #1e141e;
  width: 177px;
  height: 55px;
}

.proceed-start button {
  border-radius: 7px;
  background-color: #c4b8ff;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 17pt;
  color: #1e141e;
  width: 177px;
  height: 55px;
}

.proceed p {
  font-size: 16px !important;
  color: #c4b8ff;
  margin: 0px;
}

.proceed-start p {
  font-size: 16px !important;
  color: #c4b8ff;
  margin: 0px;
}
.takes-1-minute {
  margin-top: 14px;
  display: flex;
}

.takes-1-minute .text {
  font-size: 13px;
  color: #cccccc;
  margin-left: 5px;
  padding-top: 6px;
}

.takes-1-minute svg {
  padding-top: 10px;
}

.footer {
  display: none !important;
}

.hidden {
  display: none;
}

.form-container {
  width: 45%;
}
.form-step {
  /* background-color: red; */
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-step.active {
  display: grid;
  grid-template-columns: 5% 95%;
  gap: 20px;
  align-items: stretch;
  animation: fadeInFromBottom 0.5s ease forwards;
}

.number-arrow {
  display: flex;
  gap: 5px;
  user-select: none;
  color: #ffffff;
}

.number-arrow .num {
  padding-top: 2px;
  font-size: 18px;
}

.number-arrow .arrow svg {
  padding-top: 5px;
  margin-left: 3px;
  width: 16px;
}

.label-input {
  display: flex;
  flex-direction: column;
}
.input-heading {
  font-size: 23px;
  font-weight: 600;
  align-self: self-start;
  text-align: left;
  color: #ffffff;
}
.input-description {
  color: #ffffff;
  text-align: left;
  padding-top: 12px;
  font-size: 18px;
}

.input-text {
  margin-top: 25px;
  background: none;
  padding: 16px 6px 8px 0px;
  outline: none;
  border-bottom: #c4b8ff 1px solid;
  box-sizing: border-box;
  font-size: 25px;
  color: #ffffff;
}

.input-text::placeholder {
  color: #686868;
}

.input-text,
.input-text:hover,
.input-text:focus {
  border-top: none; /* Hide top border */
  border-right: none; /* Hide right border */
  border-left: none; /* Hide left border */
}

.input-text:focus {
  /* box-shadow: 0 1px 0 0 #e7e7e7; */
  outline: none;
}

.validation-error-message {
  background-color: #ffffff;
  color: #b60428;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  display: none;
  margin-top: 20px;
  align-self: flex-start;
}

.submission {
  font-family: "Poppins", sans-serif;
}

.submission h2 {
  font-size: 40px;
}

.submission p {
  font-size: 18px;
  font-family: "DM Sans", sans-serif;
}

.submission#submission-success,
.submission#submission-failed {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInFromBottom 0.5s ease forwards;
  color: #ffffff;
}

.submission#submission-loading {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}
.custom-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-toggle {
  margin-top: 25px;
  width: 100%;
  padding: 15px 0px;
  border-bottom: 1px solid #c4b8ff !important;
  background: transparent;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 25px;
  color: #ffffff;
}

.dark-text {
  color: #ffffff;
}

.dropdown-toggle .arrow {
  transition: transform 0.1s ease;
  color: #ffffff;
  display: flex;
  align-self: flex-end;
  transform: rotate(180deg);
}
.dropdown-toggle .arrow svg {
  width: 16px;
}
.dropdown-toggle.open .arrow {
  transform: rotate(0deg);
}
.select-placeholder {
  color: #686868;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #1e141ee0 !important;
  /* border: 1px solid #ccc; */
  border-radius: 4px;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 40vh !important;
  overflow-y: scroll;
}

.dropdown-item {
  padding: 8px 20px;
  cursor: pointer;
  background-color: #422a51ef;
  margin: 5px 0px;
  border-radius: 3px;
  color: #ffffff;
  font-weight: 300;
  font-size: 20px;
}

.dropdown-item:hover {
  background-color: #6b378b;
}

.custom-dropdown.open .dropdown-menu {
  display: block;
  z-index: 1000;
}

.custom-options {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.custom-options > .custom-radio {
  width: 250px;
  padding: 15px 10px;
  background-color: #422a51;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  /* border: #cccccc 1px solid; */
  box-sizing: border-box;
  display: flex;
  user-select: none;
  color: #ffffff;
  border-radius: 5px;
}

.custom-options > .custom-radio:hover {
  background-color: #6b378b;
}
.custom-options > .custom-radio .check {
  visibility: hidden;
}
.custom-options > .custom-radio.active {
  /* border: #dedede 1px solid; */
  background-color: #6b378b;
}
.custom-options > .custom-radio.active .check {
  visibility: visible;
}

.custom-options > .custom-radio span.alphabet {
  font-weight: 800;
  margin-right: 10px;
  background-color: #c4b8ff4d;
  padding: 5px 10px;
  border-radius: 50%;
  /* border: #cccccc 1px solid; */
  font-size: 18px;
  margin-left: 5px;
}

.custom-options > .custom-radio.active span.alphabet {
  color: #000000;
  background-color: #cccccc !important;
}

.custom-options-multiple {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-options-multiple p {
  text-align: left;
  color: #ffffff;
  font-size: 18px;
}

.custom-options-multiple > .custom-radio-multiple {
  width: 600px;
  padding: 11px 15px;
  background-color: #422a51ef;
  font-size: 20px;
  cursor: pointer;
  /* border: #cccccc 1px solid; */
  box-sizing: border-box;
  display: flex;
  user-select: none;
  color: #ffffff;
  border-radius: 5px;
}

.custom-options-multiple > .custom-radio-multiple > .radio-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.custom-radio-other-input {
  width: 90%;
  height: 100%;
  text-indent: 1px;
  background: transparent;
  border: none;
  outline: none; /* Remove focus outline */
  background: transparent; /* Make background transparent */
  color: inherit; /* Inherit text color */
  box-shadow: none; /* Ensure no box shadow appears */
  resize: none; /* Prevent manual resizing */
  overflow: hidden; /* Hide scrollbar */
}

custom-radio-other-input:hover,
custom-radio-other-input:focus {
  border: none; /* No border on focus or hover */
  outline: none; /* Prevent focus outline */
  box-shadow: none; /* Prevent any box-shadow */
}

.custom-options-multiple > .custom-radio-multiple:hover {
  background-color: #6b378b;
}
.custom-options-multiple > .custom-radio-multiple .check {
  visibility: hidden;
  align-self: center;
  user-select: none;
}

.custom-options-multiple > .custom-radio-multiple .check-other {
  padding: 4px 8px;
}
.custom-options-multiple > .custom-radio-multiple.active {
  /* border: #dedede 1px solid; */
  background-color: #6b378b;
}
.custom-options-multiple > .custom-radio-multiple.active .check {
  visibility: visible;
}

.custom-options-multiple > .custom-radio-multiple span.alphabet {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  margin-right: 10px;
  background-color: #c4b8ff4d;
  border-radius: 50%;
  /* border: #cccccc 1px solid; */
  font-size: 18px;
  margin-left: 5px;
  width: 32px;
  height: 32px;
}

.custom-options-multiple > .custom-radio-multiple.active span.alphabet {
  color: #000000;
  background-color: #cccccc !important;
}

.contact-field {
  display: flex;
  gap: 20px;
}

.country-dropdown {
  margin-top: 40px;
}
.dropdown-toggle-country {
  width: 80px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #c4b8ff !important;
  padding-bottom: 15px;
}

.dropdown-toggle-country .flag {
  border: #818181 1px solid;
  height: 25px;
  width: 35px;
  border-radius: 4px;
}

.dropdown-toggle-country .arrow {
  transition: transform 0.1s ease;
  color: #ffffff;
  display: flex;
  align-self: flex-end;
  transform: rotate(180deg);
}
.dropdown-toggle-country .arrow svg {
  width: 16px;
}
.dropdown-toggle-country.open .arrow {
  transform: rotate(0deg);
}

.dropdown-menu-country {
  position: absolute;
  top: 199px;
  width: 25vw;
  max-height: 35vh;
  min-height: 30vh;
  height: auto;
  background: #1e141ee0 !important;
  z-index: 9999;
  border-radius: 0px 0px 6px 6px;
  /* border: #cccccc 2px solid; */
  padding: 15px 12px;
  margin-top: 5px;
  overflow-y: auto;
  display: none;
  border-top: 0;
  color: #ffffff;
}

.country-dropdown.open .dropdown-menu-country {
  display: block;
}

.dropdown-item-country {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #422a51ef;
  padding: 6px 8px;
  user-select: none;
  font-size: 18px;
  font-weight: 400;
  /* border: #C4B8FF 1px solid; */
  border-radius: 4px;
  position: relative; /* Add relative positioning */
  z-index: 9999999999; /* Ensure dropdown items are above other content */
  margin-bottom: 3px;
}

.dropdown-item-country:hover {
  background-color: #6b378b;
  cursor: pointer;
}

.dropdown-item-country.active {
  background-color: #6b378b;
  border: #c4b8ff 1px solid;
}
.country-search-input {
  background: none;
  border: none;
  border-bottom: 1px solid #c4b8ff !important;
  outline: none;
  box-sizing: border-box;
  font-size: 25px;
  padding-bottom: 10px;
  width: 25vw;
  max-height: 35vh;
  /* border: #cccccc 2px solid; */
  border-radius: 5px;
  padding: 10px 10px;
  position: absolute;
  display: none;
  background-color: #1e141e;
  margin-top: 13px;
  z-index: 100000;
}
.country-search-input.open {
  display: block;
  color: #ffffff;
}
.flag-name {
  display: flex;
  gap: 10px;
  align-items: center;
}

.flag-name .flag {
  border: #818181 1px solid;
  height: 25px;
  width: 35px;
  border-radius: 4px;
}

.submitting svg {
  height: 30vh;
  width: 30vh;
}

.arrows {
  position: absolute;
  right: 100px;
  bottom: 100px;
  /* display: flex; */
  z-index: 100000;
}
.arrows .item {
  cursor: pointer;
  padding: 6px 8px;
  background-color: #c4b8ff;
}

.arrows svg {
  height: 10px;
  width: 20px;
}

.arrows .item.next {
  border-radius: 0px 10px 10px 0px;
  border-left: 1px solid #a190f7;
}

.arrows .item.previous {
  border-radius: 10px 0px 0px 10px;
}

.arrows .disabled {
  cursor: auto;
}
.arrows .disabled svg {
  opacity: 0.6;
}

.proceed-previous {
  display: none;
}

.progress-container {
  width: 100%;
  height: 4px;
  background-color: #9b93c2;
  overflow: hidden;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  position: fixed;
}

.progress-bar-arc {
  height: 100%;
  width: 0%;
  background-color: #c4b8ff;
  text-align: center;
  line-height: 20px;
  color: white;
  transition: width 0.3s ease-in-out;
}

.bg-image-rocket {
  height: 30%;
  position: absolute;
  bottom: 0;
  right: 14%;
  z-index: -1;
}

.welcome-heading-container {
  display: flex;
  /* margin-top: 30px; */
}

.celebration-img {
  padding-left: 0.6rem;
  width: 60px;
  padding-top: 8px;
}

/* ---------------- Responsiveness with media queries ------------------- */
@media screen and (min-width: 1533px) {
  .welcome {
    width: 50vw;
  }
  .welcome h1 {
    font-size: 45px;
  }
  .bg-image-rocket {
    height: 38%;
  }
}

@media screen and (max-width: 1532px) {
  .welcome {
    width: 50vw;
  }
  .welcome h1 {
    font-size: 40px;
  }
  .celebration-img {
    width: 50px;
  }
  .bg-image-rocket {
    height: 25%;
  }
}

@media screen and (max-width: 1234px) {
  .welcome {
    width: 60vw;
  }
  .welcome h1 {
    font-size: 35px;
  }
  .celebration-img {
    width: 45px;
  }
  .bg-image-rocket {
    height: 20%;
  }

  .input-heading {
    font-size: 22px;
  }
}

@media screen and (max-width: 968px) {
  .arrows {
    right: 30px;
    bottom: 30px;
  }
  .container.nav-container,
  .navbar {
    position: static !important;
  }
  .page-container {
    /* height: 70vh; */
    overflow-y: auto;
    /* margin-top: 40px; */
  }
  .welcome {
    width: 85vw;
    /* max-height: 68vh; */
  }
  .dropdown-menu-country {
    width: 57vw;
  }
  .country-search-input {
    width: 57vw;
  }
  .welcome h1 {
    font-size: 50px;
  }
  .celebration-img {
    width: 55px;
  }
  .bg-image-rocket {
    height: 22%;
  }

  .custom-options-multiple > .custom-radio-multiple {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .arrows {
    display: none;
  }
  .welcome {
    width: 80vw;
    /* max-height: 59vh; */
  }

  .form-container {
    width: 80vw;
  }

  .dropdown-menu-country {
    width: 57vw;
  }
  .country-search-input {
    width: 57vw;
  }
  .dropdown-toggle {
    font-size: 20px;
  }

  .label-input {
    padding-right: 30px;
  }

  .custom-options-multiple > .custom-radio-multiple {
    width: 100%;
    font-size: 16px;
    padding: 5px 4px;
  }

  .custom-options-multiple
    > .custom-radio-multiple
    > .radio-content
    span.option-text {
    width: 86%;
    margin-left: 10px;
    font-size: 15px;
    line-height: 19px;
    text-align: left;
  }
  .custom-options-multiple > .custom-radio-multiple span.alphabet {
    font-weight: 600;
    margin-right: 0px;
    border-radius: 50%;
    font-size: 15px;
    margin-left: 0px;
    width: 28px;
    height: 28px;
  }

  .welcome h1 {
    font-size: 30px;
  }
  .celebration-img {
    width: 35px;
  }
  .bg-image-rocket {
    height: 23%;
    right: 0;
  }
  .dropdown-menu {
    max-height: 40vh !important;
    overflow-y: scroll;
  }
}

@media screen and (max-width: 540px), screen and (max-height: 650px) {
  /* Hide the rocket for small screens as per product team requirement */
  .bg-image-rocket {
    display: none !important;
  }
  .welcome h1 {
    font-size: 25px;
  }
  .celebration-img {
    width: 35px;
  }
  .welcome p {
    line-height: 20px;
    font-size: 18px;
  }
  .proceed-previous {
    display: block;
    padding: 15px 6px 15px 0px;
    background-color: #c4b8ff;
    border-radius: 7px;
  }
  .proceed-previous svg {
    transform: rotate(-90deg);
    height: 12px !important;
  }
  .proceed-start {
    flex-direction: row;
  }
}

@media screen and (max-width: 1040px) and (max-height: 677px) {
  .arrows {
    display: block;
    display: none;
  }
}

@media screen and (max-width: 1000px) and (max-height: 450px) {
  /* Mobile Landscape views css */
  .welcome h1 {
    font-size: 20px;
    margin: 0px;
  }
  .celebration-img {
    width: 25px;
  }
  .welcome p {
    line-height: 20px;
    font-size: 18px;
    margin: 5px 0px;
  }
  .welcome {
    width: 90vw;
    /* max-height: 70vh; */
  }
  .welcome-heading-container {
    /* margin-top: 25px */
  }
  .page-container {
    background-image: linear-gradient(#1e141e 55.27%, #9048c4 135.64%);
    min-height: 110vh;
    overflow-y: auto;
    margin-top: -90px;
  }
  .proceed {
    flex-direction: row;
  }
  .proceed button {
    font-size: 15pt;
    width: 140px;
    height: 35px;
    padding: 0px;
  }
  .proceed-starts {
    flex-direction: column;
  }
  .proceed-start button {
    font-size: 15pt;
    width: 140px;
    height: 35px;
    padding: 0px;
  }
  .takes-1-minute {
    margin-top: 0px;
    margin-right: 10px;
  }
  .page-container {
    margin-top: -40px;
  }
  /* .page-container{
    margin-top: 0px;
  } */
  .form-container {
    width: 70vw;
    margin-top: 80px;
    height: 90vh;
  }
  .submission {
    margin-top: 100px;
  }
  .submission h2 {
    font-size: 28px;
  }
  .submission p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .proceed-previous {
    display: block;
    padding: 15px 6px 15px 0px;
    background-color: #c4b8ff;
    border-radius: 7px;
  }
  .proceed-previous svg {
    transform: rotate(-90deg);
    height: 12px !important;
  }
  .proceed-previous {
    padding: 5px 5px 5px 0px;
  }
  .arrows {
    display: block;
    display: none;
  }
  .celebration-img {
    width: 30px;
    padding-top: 0px;
  }
  .proceed {
    flex-direction: row;
  }
}
/* for some small devices landscape mode */
@media screen and (max-width: 890px) and (max-height: 375px) {
  .welcome p {
    font-size: 15px;
  }
  .proceed {
    margin-top: 15px;
  }
}

@media screen and (max-width: 487px) {
  .hidden-in-mobile {
    display: none;
  }
  /* .page-container {
    padding-top: 10%;
  } */
  .welcome {
    width: 80vw;
    overflow-y: auto;
    /* min-height:70vh; */
  }

  .welcome h1 {
    font-size: 25px;
    margin-top: 20px;
  }

  .welcome p {
    font-size: 19px;
    margin-top: 18px;
    line-height: 27px;
  }

  .form-container {
    width: 80vw;
    margin-top: 120px;
    height: 70vh;
  }

  #submission-success,
  #submission-failed {
    width: 80vw;
  }

  .contact-field .input-text {
    width: 100%;
    margin-top: 20px;
  }
  .dropdown-menu-country {
    width: 77vw;
    max-height: 35vh;
    min-height: 30vh;
    top: 74%;
    padding-top: 30px;
  }
  .country-search-input.open {
    font-size: 18px;
  }
  .country-search-input {
    width: 77vw;
    margin-top: 3px;
  }

  .custom-radio-other-input {
    padding-left: 10px;
    width: 80%;
  }

  .custom-options-multiple > .custom-radio-multiple {
    width: 100%;
    font-size: 16px;
    padding: 5px 4px;
  }

  .custom-options-multiple
    > .custom-radio-multiple
    > .radio-content
    span.option-text {
    width: 86%;
    margin-left: 10px;
    font-size: 15px;
    line-height: 19px;
    text-align: left;
  }
  .custom-options-multiple > .custom-radio-multiple span.alphabet {
    font-weight: 600;
    margin-right: 0px;
    border-radius: 50%;
    font-size: 15px;
    margin-left: 0px;
    width: 28px;
    height: 28px;
  }

  .dropdown-toggle .arrow {
    transition: 0ms;
  }
  .form-step {
    grid-template-columns: 2% 97%;
    /* padding-top: 20%; */
  }

  .number-arrow .num {
    margin-top: -3px;
    padding-right: 5px;
  }
  .number-arrow .arrow svg {
    width: 13px;
    margin-left: -3px;
    margin-top: -2px;
  }

  .input-heading {
    font-size: 22px;
  }

  .page-container {
    background-image: linear-gradient(#1e141e 55.27%, #9048c4 135.64%);
    min-height: 110vh;
    overflow-y: auto;
    margin-top: -90px;
  }

  .proceed {
    padding-top: 0px;
    flex-direction: row;
  }

  .proceed-start {
    flex-direction: column;
  }

  .proceed-start button {
    width: 95%;
    margin: 0px 2px;
  }

  .proceed button {
    width: 95%;
    margin: 0px 2px;
  }
  .proceed p {
    display: none;
  }
  .takes-1-minute {
    text-align: center;
    justify-content: center;
  }

  .input-text {
    margin-top: 10px;
  }

  .welcome h1 {
    font-size: 24px;
  }

  .welcome p {
    font-size: 16px;
  }

  .input-description {
    font-size: 14px;
  }

  .custom-options-multiple p {
    font-size: 14px;
  }

  .submission h2 {
    font-size: 30px;
  }

  .submission p {
    font-size: 14px;
  }

  /* .bg-image-rocket {
    height: 20%;
  } */
}

/* @media screen and (max-width: 430px) {
  .bg-image-rocket {
    height: 23%;
  }
} */

@media screen and (max-width: 414px) {
  .input-text {
    font-size: 20px;
  }

  .welcome {
    width: 80vw;
    overflow-y: auto;
    /* max-height: 70vh; */
  }

  .welcome h1 {
    font-size: 22px;
  }

  .welcome p {
    /* font-size: 16px; */
    margin-top: 10px;
    line-height: 21px;
  }

  .form-container {
    width: 82vw;
    /* margin-top: 350px; */
  }

  /* .bg-image-rocket {
    height: 29%;
  } */
}

/* @media screen and (max-width: 391px) {
  .bg-image-rocket {
    height: 25%;
  }
} */

@media screen and (max-width: 375px) {
  .input-text {
    font-size: 18px;
  }

  /* .page-container {
    margin-top: 5px;
  } */
  .welcome {
    width: 80vw;
    overflow-y: auto;
    /* max-height: 70vh; */
  }

  .welcome h1 {
    font-size: 20px;
  }

  .welcome p {
    /* font-size: 14px; */
    margin-top: 10px;
    line-height: 21px;
  }

  .form-container {
    width: 82vw;
  }

  .bg-image-rocket {
    height: 13%;
  }

  .input-heading {
    font-size: 20px;
  }
}

/* @media screen (orientation: landscape) {
  .arrows{
    display: flex;
  }
} */

/* @media screen and (max-width: 768px) and (orientation: landscape) {
  .proceed{
    flex-direction: row;
  }
  .arrows{
    display: flex;
  }
} */

/* @media screen and (max-width: 344px) {
  .bg-image-rocket {
    height: 25%;
  }
} */

/* ------------------------------------------------------------ */

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Define the fade-in and move-up animation */
@keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(50px); /* Start 100px below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End at the normal position */
  }
}
