.flight_bg {
  background: url(../images/landing_pages/backgrounnd.png) no-repeat center center;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.flight_bg::after {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 80%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(51, 51, 51, 0.39) 50%, rgba(102, 102, 102, 0.00) 100%);
  content: '';
  z-index: 999;
  width: 100%;
}

.flightmain {

  bottom: -200px;
  /* Start the flight image below the screen */
  opacity: 0;
  /* Initially hidden */
  visibility: hidden;
  /* Initially hidden */
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Full width for flight image */

}



.flightmain_logo {
  width: 40%;
  opacity: 0;
  bottom: 0px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.bottom_page_row .col-lg-5 {
  opacity: 0;
  /* Initially hidden */
  transform: translateY(150px);
  /* Start from below */

  color: #FFF;
  font-family: "Inter", sans-serif;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

.bottom_page_row {
  position: fixed;
  bottom: 40px;
  width: 100%;
  z-index: 9999;
  left: 0px;
}

.bottom_page_row a {
  display: inline-block;
  text-decoration: none;
  border-radius: 8px;
  background: #FFF;
  color: #731A5B;
  padding: 10px 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.flight_bg::before {
  content: "";
  /* Create a pseudo-element for the shadow */
  position: absolute;
  bottom: 0;
  /* Start from the bottom of the element */
  left: 0;
  width: 100%;
  /* Cover the full width of the row */
  height: 50%;
  /* Shadow effect will end at 50% of the element's height */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  /* Shadow fades out */
  z-index: -1;
  /* Place behind the content */
  pointer-events: none;
  /* Allow clicks through the shadow */
}

@media screen and (max-width: 768px) {
  .bottom_page_row .col-lg-5 {
    font-size: 14px;
    text-align: center;
  }

  .bottom_page_row a {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .flightmain {
    width: 80%;
  }

  p {
    display: none !important;
  }

  .dooonone {
    display: none;
  }

  .bottom_page_row {
    left: auto;
  }

  .bottom_page_row a {
    width: 100%;
    font-size: 11px;
    padding: 10px 10px;
    text-align:center;

  }
  
  .bottom_page_row br{
      display:none;
  }
  
}