:root {
  --primary-color: #130d37;
  /*secondary-color: ;
      tertiary-color: ;*/
  --pg-border-color: #8e328f;
}

* {
  padding: 0;
  margin: 0;
}

body {
  color: white;
  font-family: "Titillium Web", sans-serif;
  overflow: hidden;
}

.chatbot {
  position: absolute;
  background-color: black;
  border: 2px solid #eebdff;
  border-radius: 15px;
  bottom: 0;
  z-index: 10;
  right: 0;
  padding: 5px 10px 5px 10px;
  margin: 20px;
  cursor: pointer;
  animation: slideInRight 1s;
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.chatbot.out {
  transform: translateX(100%);
}

@keyframes slideInBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutBottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

.chatbot img {
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.chatbot img:hover {
  animation: zoomAndShake 1s;
}

@keyframes zoomAndShake {
}

.chatbot-popup {
  position: absolute;
  background-color: black;
  border: 2px solid #eebdff;
  border-radius: 10px;
  bottom: 0;
  z-index: 10;
  right: 0;
  padding: 5px 10px 5px 10px;
  margin: 20px;
  width: 300px;
  /* by default */
  display: none;
}

.chatbot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 2px solid #eebdff;
}

.chatbot-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-header-left img {
  width: 50px;
  height: 50px;
}

.chatbot-header-right i {
  cursor: pointer;
}

.chatbot-messages {
  margin-top: 10px;
  max-height: 300px;
  overflow-y: scroll;
  height: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 7px;
  margin-bottom: 5px;
}

.chatbot-messages::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}

.chatbot-message {
  display: flex;
  align-items: flex-start;
  padding: 10px;
  flex-direction: column;
  max-width: 70%;
  border: 2px solid #686768;
  border-radius: 10px;
}

.chatbot-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.chatbot-message p {
  font-size: 0.9em;
}

.chatbot-message h2 {
  color: #c3c3c3;
  font-size: 0.9em;
  font-weight: 300;
}

.chatbot-message a {
  /* link color */
  color: #8ab4f8ff;
  text-decoration: none;
}

.chatbot-message a:hover {
  text-decoration: underline;
}

.from-self {
  align-items: flex-end;
  align-self: flex-end;
  border: 2px solid #5164e0;
  text-align: right;
}

.chatbot-input input {
  width: 70%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  outline: none;
}

.chatbot-input button {
  padding: 10px;
  border: none;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  /* background-color: #eebdff; */
  background-color: transparent;
  color: #eebdff;
  border: 2px solid #eebdff;
}

.chatbot-input button:hover {
  background-color: #eebdff;
  color: black;
  transition: all 0.5s ease;
}

input,
textarea,
button {
  font-family: "Titillium Web", sans-serif;
}
.wrapper {
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  /* scroll-snap-type: y mandatory;
      scroll-snap-points: repeat(100vh); */
}

main {
  background-color: var(--primary-color);
  height: 100vh;
  position: relative;
}

main .bg {
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

main .hue {
  z-index: 1;
  background-color: rgb(0, 0, 0);
  opacity: 0.6;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: fadeIn 1s;
}

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

main nav {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  z-index: 10;
  width: calc(100% - 7px);
  height: 80px;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
}

main nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 7px);
}

nav h1 {
  font-size: 2em;
  padding-left: 40px;
}

.navbar {
  display: flex;
  width: 600px;
  padding-right: 70px;
  justify-content: space-between;
}

.navbar a {
  text-decoration: none;
  color: white;
}

.navbar a div {
  padding: 5px;
  border-bottom: 2px solid transparent;
}

.navbar a div:hover {
  border-bottom: 2px solid white;
  animation: fadein 0.5s;
}

@keyframes fadein {
  0% {
    border-bottom: 2px solid transparent;
  }

  100% {
    border-bottom: 2px solid white;
  }
}

main .content {
  height: calc(100% - 80px);
  width: 100%;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 5;
}

.content-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
}

.content-wrapper .content-left {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 80px;
}
.content-left .left-container {
  animation: popupLeftContainer 1s;
}

@keyframes popupLeftContainer {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.content-wrapper .content-right {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: left;
}

.rocketimg {
  width: 80%;
  padding-right: 30px;
  transform: rotate(-20deg) translateX(-100px);
  animation: popupRightContainer 1s;
}

@keyframes popupRightContainer {
  0% {
    transform: rotate(0deg) translateX(100px);
  }

  100% {
    transform: rotate(-20deg) translateX(-100px);
  }
}

.left-container h1 {
  font-size: 3em;
  font-weight: 600;
}

.left-container h3 {
  font-size: 1.5em;
  font-weight: 400;
  margin-bottom: 20px;
  color: #b0b0b0;
}

.left-container button {
  background-color: transparent;
  border: 1px solid #eebdff;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  font-family: "Titillium Web", sans-serif;
  font-size: 1em;
}

.left-container button:hover {
  background-color: #eebdff;
  color: black;
  animation: fade-up 0.7s;
}

@keyframes fade-up {
  0% {
    background-color: transparent;
    color: white;
  }

  100% {
    background-color: #eebdff;
    color: black;
  }
}

#programs {
  height: 100vh;
  background-color: #000;
  overflow: hidden;
}

.programs-wrapper {
  height: calc(100% - 80px);
  width: calc(100% - 30px);
  padding-top: 80px;
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-bottom: 80px;
}

.program {
  border: 2px solid #eebdff;
  width: 300px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
  height: 80%;
  justify-content: space-between;
  transform: translateY(75%);
  box-shadow: 0 0 20px 0 #eebdff;
}

.program-fly-in {
  animation: pg-flyIn;
  transform: translateY(0%);
}

@keyframes pg-flyIn {
  0% {
    transform: translateY(75%);
  }

  100% {
    transform: translateY(0);
  }
}

.program h1 {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.program p {
  font-size: 1.15em;
  font-weight: 400;
  margin-bottom: 20px;
  color: #c2c2c2;
}

.program .features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  /* align-items: flex-start; */
  justify-content: flex-start;
}

.program .features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
}

.program .features .feature .check {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  border: 1px solid #a372b5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nov {
  color: #eebdff;
}

.program .features .feature .check::before {
  content: "\2713";
  color: #a372b5;
}

.program .features .feature h3 {
  color: #a372b5;
  font-size: 0.85em;
  width: 80%;
}

.program-bottom {
  width: 100%;
}

.program-bottom button {
  background-color: transparent;
  border: 1px solid #eebdff;
  color: #eebdff;
  padding: 10px 20px;
  width: 100%;
  height: 50px;
  cursor: pointer;
  border-radius: 10px;
  font-family: "Titillium Web", sans-serif;
}

.program-bottom button:hover {
  background-color: #eebdff;
  color: black;
  animation: fade-pg 0.7s;
}

@keyframes fade-pg {
  0% {
    background-color: transparent;
    color: #eebdff;
  }

  100% {
    background-color: #eebdff;
    color: black;
  }
}

.on-program-div {
  background: black;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  color: white;
  transition: color 0.5s ease-in-out;
}

.on-program-link {
  color: white !important;
  transition: all 0.5s ease-in-out;
}

.fly-away-image {
  width: 80%;
  padding-right: 30px;
  transform: rotate(-20deg) translate(600px, -300px);
  animation: flyAway 1.5s !important;
}

@keyframes flyAway {
  0% {
    transform: rotate(-20deg) translate(-100px, 0);
  }

  100% {
    transform: rotate(-20deg) translate(600px, -300px);
  }
}

#vehicles {
  /* height: calc(100vh - 80px); */
  height: 100vh;
  background-image: linear-gradient(to right, #4b1948, #442f69);
  /* background: black; */
  overflow: hidden;
}

.vehicle-carousel {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
}

.vehicle-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
}

.vehicle-carousel-item {
  display: none;
}

.vehicle-carousel-item-wrapper {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.vehicle-carousel-item-left img {
  width: 650px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  border: 2px solid #eebdff;
  box-shadow: 0 0 10px 0 #eebdff;
}

.vehicle-carousel-item-right h1 {
  font-size: 2.5em;
  font-weight: 700;
}

.vehicle-carousel-item-right p {
  font-size: 1.15em;
  font-weight: 400;
  color: #c2c2c2;
}

.vehicle-carousel-scroll {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 50px;
  align-items: center;
}

.vehicle-carousel-scroll-circle {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #d9d9d9;
  cursor: pointer;
}

.vehicle-carousel-scroll-circle:hover {
  background-color: #d9d9d9;
  transition: all 0.2s ease-in;
}

.set-active {
  background-color: #d9d9d9 !important;
}

.carousel-show {
  animation: showItem 1s;
  display: flex;
}

.carousel-show-left {
  animation: showItemLeft 1s;
  display: flex;
}

.arrow-left {
  user-select: none;
}

.arrow-right {
  user-select: none;
}

.arrow-left:hover {
  cursor: pointer;
}

.arrow-right:hover {
  cursor: pointer;
}

@keyframes showItem {
  0% {
    transform: translateX(100%);
    display: none;
  }

  100% {
    transform: translateX(0);
    display: flex;
  }
}

@keyframes showItemLeft {
  0% {
    transform: translateX(-100%);
    display: none;
  }

  100% {
    transform: translateX(0);
    display: flex;
  }
}

.carousel-leave {
  animation: leaveItem 1s;
  display: none;
}

@keyframes leaveItem {
  0% {
    transform: translateX(0%);
    display: flex;
  }

  100% {
    transform: translateX(-100%);
    display: none;
  }
}

@keyframes showItem {
  0% {
    transform: translateX(100%);
    display: none;
  }

  100% {
    transform: translateX(0);
    display: flex;
  }
}

footer {
  background-color: black;
  color: white;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
}

.footer-sections {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.footer-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.footer-section h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #c2c2c2;
  text-align: left;
}

.foooter-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li a {
  color: #c2c2c2;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 400;
  margin-bottom: 5px;
}

.footer-section li a:hover {
  color: #eebdff;
  border-bottom: 1px solid #eebdff;
  transition: all 0.2s ease-in;
}

#safety {
  background: #240d33;
  height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#safety .safety-wrapper {
  padding: 80px;
  position: relative;
  display: flex;
  width: 1000px;
  justify-content: right;
}

#safety h1 {
  font-size: 2em;
}

#safety h3 {
  font-weight: normal;
  font-size: 1.05em;
}

#safety button {
  border: 2px solid #eebdff;
  color: #eebdff;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
  margin-top: 5px;
}

#safety button:hover {
  background-color: #eebdff;
  color: #240d33;
  animation: pulse 1s ease-in-out infinite;
}

#destinations {
  min-height: 650px;

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: black;
  overflow-y: hidden;
}

.destinations-hue {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.destinations-bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.destinations-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  flex-direction: column;
  transform: translateY(75%);
}

.destination-scroll-animation-on {
  animation: destinationflyin 1s;
  transform: translateY(0);
}

@keyframes fadeOutDestinations {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeInDestinations {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.destinations-fadeOut {
  animation: fadeOutDestinations 0.5s ease-in-out;
}

.destinations-fadeIn {
  animation: fadeInDestinations 0.5s ease-in-out;
}

.destinations-grid {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: black;
}

.destinations-grid h1 {
  color: #fff;
  padding: 20px;
  font-size: 2.2em;
  margin-top: 20px;
}

.grid-wrapper {
  width: 1100px;
  height: calc(100%);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: black;
}

.destination {
  background-color: #000;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

@keyframes backgroundopacity {
  0% {
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
  }
}

.destination:hover .destination-info {
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  animation: backgroundopacity 1s;
  cursor: pointer;
}

.destination img {
  margin-bottom: 100px;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  justify-content: center;

  align-items: center;
  flex-direction: column;
  color: white;

  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.destination-info .text-container {
  text-align: center;
  padding-top: 300px;
  padding: 300px 10px 10px 10px;
}

@keyframes destinationflyin {
  0% {
    opacity: 0%;
    transform: translateY(75%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.destinations-wrapper h1 {
  padding: 30px 20px 30px 20px;
  font-size: 2.5em;
  width: 60%;
  text-align: center;
  margin-bottom: 5px;
}

.destinations-wrapper button {
  border: 2px solid #eebdff;
  color: #eebdff;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
}

.destinations-wrapper button:hover {
  background-color: #eebdff;
  color: #240d33;
  transition: 0.5s all;
}

#faq {
  min-height: 622px;
  background-color: #240d33;
}

.faq-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  padding-top: 20px;
}

.faq-left {
  width: 70%;

  padding: 20px;
  overflow-y: scroll;
}

.faq ul {
  list-style: none;
  padding: 0;
}

.faq-left li {
  color: #eebdff;
  width: fit-content;
}

.faq-left li:hover {
  text-decoration: underline;
  cursor: pointer;
  transition: 0.5s all ease;
}

.faq-left::-webkit-scrollbar {
  display: none;
}

.faq-left {
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* border-right: 1px solid black; */
}

.faq-left h1,
.contact h1 {
  text-align: center;
}

.faq-left .faq-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.faq {
  width: 90%;
}

.faq .faq-head {
  background-color: black;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border: 1px solid transparent;
}

.faq-head:hover {
  cursor: pointer;
  border: 1px solid var(--pg-border-color);
}

@keyframes toggleOn {
  0% {
    padding: 0px 20px;
    /* height: 0px; */
    max-height: 0px;
  }

  100% {
    padding: 20px;
    /* height: 90px; */
    max-height: 1000px;
  }
}

@keyframes toggleOff {
  0% {
    padding: 20px;
    /* height: 90px; */
    max-height: 1000px;
  }

  100% {
    padding: 0px 20px;
    /* height: 0px; */
    max-height: 0px;
  }
}
.faq-body {
  background-color: black;
  padding: 20px;
  overflow: hidden;

  border: 1px solid transparent;
  /* height: 80px; */
  padding-bottom: 500px;
}

.faq-body.open {
  padding: 20px;
  /* height: 80px; */
}

.faq-body.closed {
  padding: 0px 20px;
  height: 0px;
}

@keyframes faq-flyIn {
  0% {
    transform: translateY(200px);
  }

  100% {
    transform: translateY(0);
  }
}

.faq-animation {
  animation: faq-flyIn 1s;
  transform: translateY(0);
}

.faq-initial {
  transform: translateY(200px);
}

.contact {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.contact-form {
  width: 90%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-form input {
  padding: 10px;
  border-radius: 5px;
  outline: none;
  border: none;
  background-color: white;
}

.contact-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-form textarea {
  outline: none;
  border: none;
  resize: none;
  border-radius: 5px;
  height: 200px;
  padding: 10px;
}

.contact-form button {
  padding: 10px;
  border-radius: 10px;
  outline: none;
  border: none;
  margin-top: 10px;
  background-color: transparent;
  border: 3px solid #b06fb1;
  color: #b06fb1;
}

.contact-form button:hover {
  cursor: pointer;
  background-color: #b06fb1;
  color: white;
  transition: all 0.5s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.safety-left {
  position: absolute;
  /* background-color: #240d33; */
  width: 600px;
  left: 100px;
  z-index: 3;
  height: calc(50vh - 160px);
}

.safety-right {
  width: 500px;
  z-index: 2;
  position: relative;
}

.safety-hue {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
  border-radius: 10px;
}

.safety-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  object-position: center;
}

.safety-right-hidden {
  display: none;
}

.safety-left-show {
  animation: zoomIn 1s ease-in-out;
}

.safety-right-show {
  animation: zoomIn 1s ease-in-out;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* scrollbar styling */
::-webkit-scrollbar {
  width: 7px;
  background-color: black;
}

::-webkit-scrollbar-thumb {
  background-color: #333;
  width: 7px;
  border-radius: 5px;
}

/* mobile responsiveness */
@media screen and (max-width: 1200px) {
  .destinations-wrapper h1 {
    font-size: 2em;
    width: 90%;
    margin-bottom: 10px;
    padding: 0px;
  }

  .destinations-wrapper button {
    /* padding: 1 13px; */
    font-size: 12px;
    margin-top: 10px;
  }

  .faq-wrapper {
    flex-direction: column;
  }

  .faq-left {
    width: 100%;
    padding: 0px;
    padding-top: 40px;
  }

  .contact {
    width: 100%;
    margin-top: 50px;
    padding: 0px;
    /* padding-bottom: 20px; */
  }

  .contact-form {
    margin-top: 0px;
  }

  .destinations-grid {
    height: auto;
  }

  .destinations-grid h1 {
    font-size: 2em;
  }

  .grid-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px;
    margin-bottom: 20px;
  }

  #destinations {
    /* margin-bottom: 250px; */
  }

  .destination {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .destination:hover .destination-info {
    display: flex;
    background-color: transparent;
    animation: none;
    cursor: default;
  }

  .destinations-grid {
    position: relative;
  }

  .destination img {
    width: 200px;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    object-position: center;
    margin: 0px;
  }

  .destination-info {
    display: block;
    position: relative;
    width: 80%;
  }

  .destination-info .text-container {
    padding: 10px;
  }

  .destination-info .text-container p {
    color: #c3c3c3;
  }

  .destination-info .text-container h3 {
    color: #eebdff;
  }

  .faq-left h1,
  .contact h1 {
    font-size: 2em;
  }

  .left-container h1 {
    font-size: 2.5em;
  }

  .left-container h3 {
    font-size: 1em;
  }

  .left-container button {
    padding: 10px 20px;
    font-size: 0.8em;
  }

  .content-left,
  .content-right {
    width: 50% !important;
  }

  .rocketimg {
    width: 100%;
  }

  #programs {
    height: auto;
  }

  .programs-wrapper {
    flex-direction: column;
    padding-bottom: 80px;
    width: 100%;
  }

  .program {
    height: 100%;
  }

  .program-upper {
    margin-bottom: 20px;
  }

  .vehicle-carousel-item-left img {
    width: 500px;
    height: 300px;
  }

  .vehicle-carousel-item-right h1 {
    font-size: 2em;
  }

  .vehicle-carousel-item-right p {
    font-size: 1em;
  }

  .vehicle-carousel-scroll {
    margin-top: 30px;
  }

  .vehicle-carousel-scroll-circle {
    width: 15px;
    height: 15px;
  }

  .vehicle-carousel-item-wrapper {
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }

  #safety {
    /* height: 100vh; */
    height: auto;
  }

  .safety-hue {
    display: none;
  }

  .safety-wrapper {
    justify-content: center !important;
    flex-direction: column;
    width: 100% !important;
    align-items: center;
    text-align: center;
  }

  .safety-left {
    width: 80% !important;
    left: 0 !important;
    position: static;
    height: auto;
  }

  .safety-right {
    display: none;
  }

  .safety-right-hidden {
    display: block;
    width: 100%;
    margin-bottom: 25px;
  }

  .safety-right-hidden img {
    border-radius: 10px;
    width: 600px;
    height: 400px;
  }

  #safety h1 {
    font-size: 2em;
  }

  #safety h3 {
    font-size: 0.9em;
  }

  #safety button {
    font-size: 0.7em;
  }
}

@media screen and (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .content-left,
  .content-right {
    width: 100% !important;
    align-items: center;
    justify-content: center !important;
    padding: 0 !important;
  }

  .content-right {
    margin-top: 100px;
  }

  .rocketimg {
    width: 65%;
    padding-right: 0 !important;
    padding-left: 100px;
  }
}

@media screen and (max-width: 850px) {
  main nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 20px 0 !important;
  }

  main nav div h1 {
    padding: 0 !important;
  }

  .navbar {
    padding: 10px 0px 0px 0px !important;
    width: 80%;
  }
}

@media screen and (max-width: 650px) {
  .left-container h1 {
    font-size: 2em;
  }

  .left-container h3 {
    font-size: 0.8em;
  }

  .left-container button {
    padding: 10px 20px;
    font-size: 0.7em;
  }

  .rocketimg {
    width: 350px;
    padding-left: 150px;
  }

  .program {
    width: 65%;
  }

  .program-upper h1 {
    font-size: 1.5em;
  }

  .program-upper p {
    font-size: 0.9em;
  }

  .program .features .feature .check {
    width: 20px;
    height: 20px;
  }

  .program .features .feature h3 {
    font-size: 0.75em;
  }

  .program-bottom button {
    padding: 10px;
    font-size: 0.7em;
    height: 40px;
  }

  .vehicle-carousel-item-left img {
    width: 400px;
    height: 250px;
  }

  .vehicle-carousel-item-right h1 {
    font-size: 1.5em;
  }

  .vehicle-carousel-item-right p {
    font-size: 0.8em;
  }

  .vehicle-carousel-scroll-circle {
    width: 10px;
    height: 10px;
  }

  .footer-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
  }

  .footer-sections {
    margin-top: 20px;
  }

  #safety {
    /* height: 100vh; */
    padding: 50px;
  }

  #safety .safety-wrapper {
    padding: 0 !important;
  }

  .safety-right-hidden img {
    width: 90%;
    height: 90%;
  }

  .safety-left {
    width: 90% !important;
  }
}

@media screen and (max-width: 420px) {
  .navbar {
    display: none;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px !important;
    background-color: #000;
    width: 100%;
  }

  .hamburger-nav {
    background-color: #000;
  }

  .upper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 40px !important;
    overflow: hidden;
    /* fix overflow issue */
    width: calc(100% - 80px);
  }

  .hamburger-menu {
    display: block;
    cursor: pointer;
  }

  .hamburger-menu .bar {
    width: 30px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
  }

  .content-left {
    width: 80%;
  }

  .left-container h1 {
    font-size: 1.5em;
  }

  .left-container h3 {
    font-size: 0.7em;
  }

  .left-container button {
    padding: 10px 20px;
    font-size: 0.6em;
  }

  .rocketimg {
    width: 300px;
    padding-left: 175px;
  }

  .program-upper h1 {
    font-size: 1.2em;
  }

  .program-upper p {
    font-size: 0.8em;
  }

  .program .features .feature h3 {
    font-size: 0.7em;
  }

  .program-bottom button {
    padding: 10px;
    font-size: 0.6em;
    height: 40px;
  }

  .vehicle-carousel-wrapper {
    width: 100%;
  }

  .vehicle-carousel-item-left img {
    width: 90%;
  }

  .vehicle-carousel-item-right {
    width: 80%;
  }

  .footer-wrapper {
    width: 80%;
    text-align: center;
  }

  .footer-top {
    padding: 0px !important;
  }

  .footer-sections {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
  }

  .footer-section h3 {
    font-size: 1.1em;
  }

  .footer-section li a {
    font-size: 0.8em;
  }

  .footer-bottom p {
    font-size: 0.85em;
  }

  #safety h1 {
    font-size: 1.3em;
  }

  #safety h3 {
    font-size: 0.8em;
  }

  .chatbot img {
    width: 35px;
    height: 35px;
  }

  .chatbot {
    padding: 5px 10px 0px 10px;
  }

  .chatbot-popup {
    /* margin: 0px; */
    width: 250px;
  }

  .chatbot-messages {
    max-height: 200px;
    height: 200px;
  }

  .destinations-wrapper h1 {
    font-size: 1.4em !important;
  }

  .destinations-wrapper button {
    font-size: 0.7em;
    padding: 10px;
  }

  .faq-left h1,
  .contact h1 {
    font-size: 1.4em;
  }

  .faq .faq-head {
    height: 50px;
  }
}

@media screen and (max-height: 775px) and (min-width: 1200px) {
  #programs {
    height: auto;
  }

  .program {
    height: calc(750px - 100px);
  }

  .program-bottom {
    margin-top: 20px;
  }
}

@media screen and (max-height: 650px) {
  #vehicles {
    height: auto;
  }

  .vehicle-carousel {
    padding: 80px 0;
  }
}
