.content-section {
  display: flex;
  /*padding: 40px 16px;*/
}

.content-title {
  color: var(--gray-text-strong, #2c3059);

  /* Mobile/Display-2 */
  font-family: "Bellefair";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  text-transform: uppercase;
}

.content-text {
  color: var(--gray-text, #6a6d87);

  /* Body/Body — Regular */
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.join-button {
  width: auto;
  display: flex;
  height: 38px;
  padding: 8px var(--spacing-2xs, 4px);
  justify-content: center;
  align-items: center;
  flex: 1 0 0;

  color: var(--gray-text-invert, #fff);

  /* Body2/Body 2 — Bold */
  font-family: "InterBold";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 22.4px */

  border-radius: 30px;
  background: var(
    --Gradient-brand-surface,
    linear-gradient(99deg, #684b9b -27.72%, #381b6b 127.08%)
  );

  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.blue-bg-button {
  width: 285px;
  height: 50px;
  padding-top: 12px;
  /*padding-right: spacing/2xl;*/
  padding-right: 32px;
  padding-bottom: 12px;
  /*padding-left: spacing/2xl;*/
  padding-left: 32px;
  border-radius: 30px;
  border-width: 1px;
  color: #ffffff;
  background: linear-gradient(
    149.58deg,
    #ffffff -406.67%,
    rgba(255, 255, 255, 0) 187.19%
  );
  border: 1px solid;
  border-image-source: linear-gradient(
    221.5deg,
    #ffffff -99.13%,
    rgba(255, 255, 255, 0) 76.53%
  );
  box-shadow: 0px 1px 2px 0px #1018280d;
}

.enablebluebg-content {
  width: 100%;
  height: auto;
  min-height: 400px;
  display: flex;
  flex-direction: row;
  border-radius: 12px;
  padding-bottom: 10%;
}
.enablebluebg-content .left-content {
  width: 100%;
  height: 400px;
  min-height: 400px;
  padding: 0px !important;
  /*padding: 0px 40px 0px 40px;*/
  gap: 48px;
  /* background: linear-gradient(163.67deg, #503383 19.33%, #2D1656 78.92%); */
  /* border-top-left-radius: 8px;
    border-bottom-left-radius: 8px; */
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.enablebluebg-content .left-content-info {
  width: 100%;
  height: 100%;
  min-height: auto;
  display: flex;
  gap: 24px;
  margin: auto;
  position: relative;
}
.enablebluebg-content .content-info {
  width: 100%;
  /* min-width: 285px;*/ /*commented for width less than 350px on infliight Experience*/
  /* width: 285px; */
  min-height: auto;
  height: 100%;
    align-content: center;
  gap: 4px;
  position: absolute;
  padding: 0px 27px;
  /*top: 20%;*/
}
.enablebluebg-content .content-title {
  width: 100%;
  /* min-width: 285px; */
  height: auto;
  min-height: auto;
  font-family: "Bellefair", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 42px;
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: uppercase;
  /* padding-left: 10px; */
}
.enablebluebg-content .right-image {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 400px;
  border-radius: 0 8px 8px 0;
  object-fit: cover;
}
.enablebluebg-content .content-dec {
  width: 100%;
  height: auto;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0px;
  color: #ffffff;
  /* padding-left: 15px; */
}
.enablebluebg-content .view-entertainment-btn {
  width: fit-content;
  margin-top: 10px;
  min-width: auto;
  height: fit-content;
  padding: 12px 16px 12px 16px;
  border-radius: 30px;
  border-width: 1px;
  font-family: "InterBold";
  font-weight: 700;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0;
  box-shadow: 0px 1px 2px 0px #1018280d;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(45px);
  color: #ffffff;
  text-align: center;
  /* margin-left: 20px; */

  display: flex;
  gap: 8px;
  align-items: center;
}
.enablebluebg-content .left-image {
  width: 100%;
  height: 100%;
  min-height: auto;
  position: relative;
  border-radius: 8px 0px 0px 8px;
}
.enablebluebg-content .starairline {
  padding: 0px;
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: #fff;
  letter-spacing: 0px;

  display: flex;
  gap: 8px;
  align-items: center;
}
.arrow-icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 800px) {
  .enablebluebg-content {
    flex-direction: column;
  }
  .enablebluebg-content .left-content {
    border-radius: 8px 8px 0 0;
  }
  .enablebluebg-content .right-image {
    border-radius: 0 0 8px 8px;
  }

  .join-button {
    padding: 20px 10px;
  }
}

@media (min-width: 800px) {
  .enablebluebg-content .right-image {
    position: relative;
    width: 70%;
    height: auto;
    min-height: 400px;
    border-radius: 0 8px 8px 0;
  }
  .enablebluebg-content .left-content {
    width: 100%;
    height: auto;
    min-height: 400px;
    padding: 0px 40px 0px 40px;
    gap: 48px;
    /* background: linear-gradient(163.67deg, #503383 19.33%, #2D1656 78.92%); */
    /* border-top-left-radius: 8px;
        border-bottom-left-radius: 8px; */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
  }
  .enablebluebg-content .left-content-info {
    max-width: max-content;
  }
  .order-sm-1.blue-bg {
    background: linear-gradient(163.67deg, #503383 19.33%, #2d1656 78.92%);
    width: 363px;
    height: 400px;
    gap: 48px;
    padding-right: 40px;
    padding-left: 40px;
  }
  .order-sm-1.blue-bg .content-title {
    font-family: Bellefair;
    font-weight: 400;
    font-size: 28px;
    line-height: 42px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--gray-text-invert, #ffffff);
  }

  .order-sm-1.blue-bg .content-text {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: 0px;
    color: var(--gray-text-invert, #ffffff);
  }

  .content-section {
    display: flex;
    padding: 0;
  }

  .content-title {
    color: var(--gray-text-strong, #2c3059);

    /* Desktop/Display-2 */
    font-family: "Bellefair";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 48px */
    text-transform: uppercase;
  }

  .content-text,
  .table caption {
    color: var(--gray-text, #6a6d87);

    /* Body/Body — Regular */
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
  }

  .img-fluid.rounded {
    margin-bottom: 40px;
  }

  .join-button {
    margin-top: 24px;
    width: auto;
    display: flex;
    height: 48px;
    padding: 10px var(--spacing-md, 16px);
    justify-content: center;
    align-items: center;
    flex: 1 0 0;

    color: var(--gray-text-invert, #fff);

    /* Body1/Body 1 — Bold */
    font-family: "InterBold";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 25.6px */

    border-radius: 30px;
    background: var(
      --Gradient-brand-surface,
      linear-gradient(99deg, #684b9b -27.72%, #381b6b 127.08%)
    );

    /* Shadow/xs */
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  }
}
@media (min-width: 800px) {
  .leftImageWidth {
    width: 30% !important;
  }
}
@media (min-width: 800px) {
  .rightImageWidth {
    width: 70% !important;
  }
}
@media (min-width: 800px) {
  .contentTitleWidth {
    min-width: unset !important;
  }
}

/* for corporate guest */
.corporate-guest.inflight-hero {
  position: relative;
  width: 100%;
  height: 317px;
  overflow: hidden;
  background-size: cover;
  background-position: 80% 50%;
  background-repeat: no-repeat;
  color: #fff;
  font-family: "Bellefair";
}
.corporate-guest .inflight-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #471C76 0%,
    #471C76 30%,
    transparent 100%
  );
  width: 65%;
}
.corporate-guest .inflight-hero__content {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  max-width: 430px;
  z-index: 1;
}
.corporate-guest .inflight-hero__title {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.corporate-guest .inflight-hero__highlight {
  color: #FFE9A5;
}
.corporate-guest .inflight-hero__description p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  font-family: "Inter";
}

.corporate-guest .inflight-hero__button {
  width: 180px;
  height: 50px;
  position: relative;
  display: inline-block;
  font-family: "InterBold";
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 700;
  background: #7755a7;
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
  z-index: 1;
  overflow: hidden;
  border: none; /* Important: remove normal border */
}

/* Gradient border with rounded corners */
.corporate-guest .inflight-hero__button::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* border thickness */
  border-radius: inherit;
  background: linear-gradient(221.5deg, #FFFFFF -99.13%, rgba(255, 255, 255, 0) 76.53%);
  /* Magic mask so gradient is only on border */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}


/* Responsive */
@media (max-width: 768px) {
  .corporate-guest .inflight-hero {
    height: 260px;
  }
  .corporate-guest .inflight-hero__content {
    left: 24px;
    right: 20px;
    max-width: 276px;
  }
  .corporate-guest .inflight-hero__title {
    font-size: 20px;
  }
  .corporate-guest .inflight-hero__description p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .corporate-guest .inflight-hero__button {
    width: 111px;
    height: 42px;
    font-size: 14px;
    padding: 0px;
    align-content: center;
  }
  .corporate-guest .inflight-hero__gradient {
    width: 100%;
  }
}
