
/* sample banner */
/* --- HERO MASTER WRAPPER --- */
.hero-section-wrapper {
    position: relative;
    width: 100%;
    min-height: 80px;
    padding: 100px 4%;
    background-color: #FFFFFF;
    overflow: hidden;
    box-sizing: border-box;
}

/* Absolute positioning for the background shape vector (.img) */
.hero-bg-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* Pushes it completely behind text layers */
    pointer-events: none;
}

/* Two Column Flex Alignment Container */
.hero-inner-flex {
    position: relative;
    z-index: 5; /* Forces content to render cleanly above background graphic */
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* --- LEFT CONTENT COLUMN --- */
.hero-left-column {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.try-it-now-badge {
    background-color: #F0F0F0;
    color: #333333;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 24px;
    text-transform: normal;
}

.build-your-founder {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 500;
    color: #111111;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.build-your-founder .text-italic {
    font-style: italic;
    font-family: Georgia, serif; /* Changes 'founder' to a distinctive editorial style */
}

.build-your-founder .text-bold {
    font-weight: 700;
}

.div-2 .p {
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
    max-width: 480px;
    margin: 0 0 40px 0;
}

/* --- CTA ACTION BUTTON ROW --- */
.primary-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.primary-buttons {
    background-color: #0F5298; /* Custom dark sapphire blue matching layout specs */
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.primary-buttons:hover {
    background-color: #0A396B;
}

.primary-buttons .text-label {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
}

.secondary-buttons {
    background-color: transparent;
    border: 1px solid #B0B0B0;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.secondary-buttons:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.secondary-buttons .text-label-2 {
    color: #333333;
    font-weight: 600;
    font-size: 16px;
}

/* --- RATINGS FLOATING BADGE --- */
.ratings-inline-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.star-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    width: 95px;
    height: auto;
}

.text-wrapper-2 {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
}

.from-the-reviews {
    font-size: 14px;
    color: #777777;
    margin: 0;
}

/* --- RIGHT COLUMN MEDIA CONTAINER --- */
.hero-right-column {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
}

.video-frame-box {
    position: relative;
    border: 3px solid #0F5298; /* Matching the bright blue accent frame from the screenshot */
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
}
.presenter-video-cover {
    width: 100%;
    max-width: 440px;
    height: auto;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-frame-box:hover .video-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- RESPONSIVE MOBILE SCALING --- */
@media (max-width: 991px) {
    .hero-inner-flex {
        flex-direction: column-reverse; /* Places text layout under picture layout cleanly on phones */
        gap: 50px;
        text-align: center;
    }
    .hero-left-column {
        align-items: center;
    }
    .primary-cta-row, .ratings-inline-group {
        justify-content: center;
    }
    .build-your-founder {
        font-size: 38px;
    }
}
/* sample banner end  */
/* banner  start*/
/* --- HERO ROW FLEX GRID --- */
.hero-section-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.hero-flex-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Content Column Configuration */
.hero-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Right Media Column Configuration */
.hero-right-media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* --- TYPOGRAPHY ELEMENTS --- */
.badge-try-now {
    display: inline-block;
    background-color: #EAEAEA;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 20px;
}

.build-your-founder {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    color: #1A1A1A;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.build-your-founder .italic-text {
    font-style: italic;
    font-family: serif; /* Swaps to an elegant editorial font serif style if desired */
}

.build-your-founder .bold-text {
    font-weight: 700;
}

.div-2 .p {
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
    max-width: 520px;
    margin-bottom: 36px;
}

/* --- ACTION BUTTON PATTERNS --- */
.button-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.primary-buttons {
    background-color: #0B4E8C; /* Matches your explicit blue button tone */
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.primary-buttons:hover {
    background-color: #073561;
}

.primary-buttons .text-label {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
}

.secondary-buttons {
    background-color: transparent;
    border: 1px solid #0B4E8C;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.secondary-buttons:hover {
    background-color: rgba(11, 78, 140, 0.05);
}

.secondary-buttons .text-label-2 {
    color: #0B4E8C;
    font-weight: 600;
    font-size: 16px;
}

/* --- STAR RATING CHIPS --- */
.ratings-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.star-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    width: 100px;
    height: auto;
}

.text-wrapper-2 {
    font-weight: 700;
    font-size: 16px;
    color: #1A1A1A;
}

.from-the-reviews {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* --- VIDEO MEDIA EMBED FRAME --- */
.video-thumbnail-wrapper {
    position: relative;
    border: 4px solid #0B4E8C; /* Blue border framing your graphic spec */
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.main-presenter-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-button-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive breakpoint scaling down elegantly on mobile viewports */
@media (max-width: 991px) {
    .hero-flex-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    .hero-left-content, .hero-right-media {
        align-items: center;
        justify-content: center;
    }
    .button-row, .ratings-wrapper {
        justify-content: center;
    }
}
/* banner end */
.desktop {
  position: relative;
  width: 1441px;
  height: 1024px;
  background-color: #fcfaf8;
  overflow: hidden;
}

.desktop .subtract {
  position: absolute;
  top: 120px;
  left: 1px;
  width: 1440px;
  height: 904px;
}

.desktop .frame {
  position: absolute;
  top: 183px;
  left: 817px;
  width: 544px;
  height: 762px;
}

.desktop .navigation-bar {
  display: flex;
  width: 1441px;
  height: 121px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 80px;
  position: absolute;
  top: 0;
  left: calc(50.00% - 720px);
  background-color: #fcfaf8;
  backdrop-filter: blur(6px) brightness(100%);
  -webkit-backdrop-filter: blur(6px) brightness(100%);
}

.desktop .logo-files {
  position: relative;
  width: 132px;
  height: 73.5px;
  margin-top: -0.25px;
  margin-bottom: -0.25px;
}

.desktop .div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .nav-item-holder {
  height: 49px;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
  background-color: #082b4b14;
  border-radius: 4px;
}

.desktop .home {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #082b4b;
  font-size: 20px;
  letter-spacing: -0.2px;
  line-height: normal;
}

.desktop .div-wrapper {
  display: inline-flex;
  height: 49px;
  align-items: center;
  gap: 24px;
  padding: 12px;
  position: relative;
  flex: 0 0 auto;
  background-color: #fcfaf8;
  border-radius: 12px;
}

.desktop .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #535352;
  font-size: 20px;
  letter-spacing: -0.2px;
  line-height: normal;
}

.desktop .secondary-buttons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 8px;
}

.desktop .text-label {
  display: flex;
  align-items: center;
  margin-top: -1px;
  color: #082b4b;
  font-size: 18px;
  letter-spacing: 0;
  position: relative;
  width: fit-content;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  line-height: normal;
}

.desktop .primary-buttons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 4px;
  background: linear-gradient(
    96deg,
    rgba(8, 43, 75, 1) 0%,
    rgba(19, 101, 177, 1) 100%
  );
}

.desktop .text-label-2 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.desktop .frame-2 {
  display: flex;
  flex-direction: column;
  width: 652px;
  height: 762px;
  align-items: flex-start;
  justify-content: space-between;
  position: absolute;
  top: 183px;
  left: 80px;
}

.desktop .frame-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .home-wrapper {
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
  background-color: #082b4b14;
  border-radius: 4px;
}

.desktop .home-2 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #082b4b;
  font-size: 16px;
  letter-spacing: 1.2px;
  line-height: normal;
}

.desktop .build-your-founder {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 74px;
  letter-spacing: 1.2px;
  line-height: normal;
}

.desktop .span {
  font-weight: 600;
  letter-spacing: 0.89px;
}

.desktop .text-wrapper-2 {
  font-family: "Playfair Display-SemiBoldItalic", Helvetica;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.89px;
}

.desktop .frame-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .p {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Source Sans Pro-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 20px;
  letter-spacing: 1.2px;
  line-height: 32px;
}

.desktop .frame-5 {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .secondary-buttons-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 4px;
  border: 1px solid;
  border-color: #082b4b;
}

.desktop .chips {
  display: flex;
  flex-direction: column;
  width: 194px;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 0px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .frame-6 {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .rating-stars {
  position: relative;
  flex: 0 0 auto;
}

.desktop .text-wrapper-3 {
  color: #2b2b2b;
  font-size: 20px;
  letter-spacing: -0.2px;
  position: relative;
  width: fit-content;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  line-height: normal;
}

.desktop .from-the-reviews {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-Regular", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 16px;
  letter-spacing: -0.2px;
  line-height: normal;
}

.desktop .text-wrapper-4 {
  color: #8d8d8d;
  letter-spacing: -0.03px;
}

.desktop .text-wrapper-5 {
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #2b2b2b;
  letter-spacing: -0.03px;
}

.desktop .text-wrapper-6 {
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #2b2b2b;
  letter-spacing: -0.03px;
  text-decoration: underline;
}

.desktop .img {
  position: absolute;
  width: 1px;
  height: 1px;
  top: -131px;
  left: -271px;
}

/* start our program */
.frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  background-color: #ffffff;
}

.frame .div {
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px 80px;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  display: flex;
  position: relative;
  align-self: stretch;
}

.frame .text-wrapper {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #8d8d8d;
  font-size: 20px;
  text-align: center;
  letter-spacing: 1.2px;
  line-height: 32px;
}


.frame .div-2 {
  align-items: center;
  justify-content: space-between;
  padding: 24px 12px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
  align-self: stretch;
}

.frame .image {
  width: 107px;
  height: 36.2px;
  aspect-ratio: 2.96;
  position: relative;
  object-fit: cover;
}

.frame .img {
  width: 107px;
  height: 28.92px;
  aspect-ratio: 3.7;
  position: relative;
  object-fit: cover;
}

.frame .image-2 {
  width: 118.04px;
  height: 23.79px;
  aspect-ratio: 4.96;
  position: relative;
  object-fit: cover;
}

.frame .image-3 {
  width: 121px;
  height: 24.45px;
  aspect-ratio: 4.95;
  position: relative;
  object-fit: cover;
}

.frame .image-4 {
  width: 136px;
  height: 34.82px;
  aspect-ratio: 3.91;
  position: relative;
  object-fit: cover;
}

.frame .div-3 {
  flex-direction: column;
  align-items: flex-start;
  gap: 42px;
  padding: 62px 80px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
  align-self: stretch;
}
.frame .chips {
  display: flex;
  flex-direction: column;
  width: 194px;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 0px;
  position: relative;
  flex: 0 0 auto;
}
.frame .div-4 {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
  align-self: stretch;
}
.frame .rating-stars {
  position: relative;
  flex: 0 0 auto;
}


.frame .nav-item-holder {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #082b4b14;
  border-radius: 4px;
}

.frame .home {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #082b4b;
  font-size: 16px;
  letter-spacing: 1.2px;
  line-height: normal;
}

.frame .four-things-founders {
  position: relative;
  align-self: stretch;
  font-family: "Playfair Display-SemiBold", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 54px;
  letter-spacing: 1.2px;
  line-height: normal;
}

.frame .span {
  font-family: "Playfair Display-SemiBoldItalic", Helvetica;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.65px;
}

.frame .text-wrapper-2 {
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  letter-spacing: 0.65px;
}
.frame .from-the-reviews {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-Regular", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 16px;
  letter-spacing: -0.2px;
  line-height: normal;
}
.frame .p {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 20px;
  letter-spacing: 1.2px;
  line-height: 36px;
}

.frame .div-5 {
  height: 295px;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  display: flex;
  position: relative;
  align-self: stretch;
}

.frame .div-6 {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  flex: 1;
  flex-grow: 1;
  background-color: #fcfaf8;
  border-radius: 4px;
  border: 1px solid;
  border-color: #082b4b3d;
  display: flex;
  position: relative;
  align-self: stretch;
}

.frame .icon-holder {
  position: relative;
  width: 52px;
  height: 52px;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid;
  border-color: #c2c8cf;
}

.frame .mic-svgrepo-com {
  position: relative;
  top: calc(50.00% - 16px);
  left: calc(50.00% - 16px);
  width: 32px;
  height: 32px;
  display: flex;
  overflow: hidden;
  aspect-ratio: 1;
}

.frame .group {
  flex: 1;
  width: 32px;
  display: flex;
  background-image: url(./img/vector-6.svg);
  background-size: 100% 100%;
}

.frame .vector {
  flex: 1;
  width: 26.15px;
}

.frame .div-7 {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
  align-self: stretch;
}

.frame .text-wrapper-3 {
 
  color: #8d8d8d;
  letter-spacing: -0.03px;
}

.frame .text-wrapper-4 {

  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #2b2b2b;
  letter-spacing: -0.03px;
}

.frame .vector-wrapper {
  flex: 1;
  width: 32px;
  display: flex;
  background-image: url(./img/vector-7.svg);
  background-size: 100% 100%;
}

.frame .img-wrapper {
  flex: 1;
  width: 32px;
  display: flex;
  background-image: url(./img/image.svg);
  background-size: 100% 100%;
}

.frame .group-2 {
  flex: 1;
  width: 32px;
  display: flex;
  background-image: url(./img/vector-5.svg);
  background-size: 100% 100%;
}

/*end our program */

/*  walk through end  */
.frame {
  display: flex;
  flex-direction: column;
  width: 1440px;
  align-items: flex-end;
  gap: 42px;
  padding: 62px 80px;
  position: relative;
  background-color: #fcfaf8;
}

.frame .div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .nav-item-holder {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #082b4b14;
  border-radius: 4px;
}

.frame .home {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #082b4b;
  font-size: 16px;
  letter-spacing: 1.2px;
  line-height: normal;
}

.frame .what-you-walk-away {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 54px;
  text-align: center;
  letter-spacing: 1.2px;
  line-height: normal;
}

.frame .text-wrapper {
  font-weight: 600;
  letter-spacing: 0.65px;
}

.frame .span {
  font-family: "Playfair Display-SemiBoldItalic", Helvetica;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.65px;
}

.frame .p {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 20px;
  text-align: center;
  letter-spacing: 1.2px;
  line-height: 36px;
}

.frame .div-2 {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid;
  border-color: #cccccc;
}

.frame .div-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
}

.frame .text-wrapper-2 {
    
  color: #2b2b2b;
  font-size: 32px;
  letter-spacing: 0;
  position: relative;
  width:fit-content;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  line-height: normal;
}

.frame .div-4 {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .div-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 12px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid;
  border-color: #082b4b3d;
}

.frame .text-wrapper-3 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #2b2b2b;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 36px;
}

.frame .text-wrapper-4 {
  position: relative;
  width: fit-content;
  font-family: "Source Sans Pro-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 24px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .div-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  border-radius: 4px;
  border: 1px solid;
  border-color: #082b4b3d;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.frame .div-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .text-wrapper-5 {
 
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #8d8d8d;
  font-size: 18px;
  letter-spacing: -0.03px;
  text-decoration:underline;
}

.frame .text-wrapper-6 {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #2b2b2b;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 36px;
}

/* walk through end */
/* meet your start */
.frame {
  display: flex;
  flex-direction: column;
  width: 1441px;
  align-items: flex-end;
  gap: 42px;
  padding: 62px 80px;
  position: relative;
  background-color: #ffffff;
}

.frame .div {
  flex-direction: column;
  gap: 16px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
}

.frame .nav-item-holder {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #082b4b14;
  border-radius: 4px;
}

.frame .home {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #082b4b;
  font-size: 16px;
  letter-spacing: 1.2px;
  line-height: normal;
}

.frame .meet-your-mentor {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 54px;
  letter-spacing: 1.2px;
  line-height: normal;
}

.frame .text-wrapper {
  font-weight: 600;
  letter-spacing: 0.65px;
}

.frame .span {
  font-family: "Playfair Display-SemiBoldItalic", Helvetica;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.65px;
}

.frame .div-2 {
  justify-content: space-between;
  padding: 24px;
  width: 100%;
  flex: 0 0 auto;
  background-color: #fcfaf8;
  border-radius: 4px;
  border: 1px solid;
  border-color: #cccccc;
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
}

.frame .div-3 {
  flex-direction: column;
  width: 692px;
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
}

.frame .p {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Playfair Display-SemiBoldItalic", Helvetica;
  font-weight: 600;
  font-style: italic;
  color: #2b2b2b;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 36px;
}

.frame .div-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .text-wrapper-2 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #8d8d8d;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .text-wrapper-3 {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #2b2b2b;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 36px;
}

.frame .IMG {
  position: relative;
  width: 528px;
  height: 563px;
}

/* meet your end */
/* take away start */
.frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  padding: 62px 80px;
  position: relative;
  background-color: #ffffff;
}

.frame .div {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.frame .nav-item-holder {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #082b4b14;
  border-radius: 4px;
}

.frame .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #082b4b;
  font-size: 16px;
  letter-spacing: 1.2px;
  line-height: normal;
}

.frame .p {
  position: relative;
  align-self: stretch;
  font-family: "Playfair Display-SemiBoldItalic", Helvetica;
  font-weight: 600;
  font-style: italic;
  color: #2b2b2b;
  font-size: 54px;
  letter-spacing: 1.2px;
  line-height: normal;
}

.frame .text-wrapper-2 {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 20px;
  letter-spacing: 1.2px;
  line-height: 32px;
}

.frame .div-2 {
  align-items: center;
  gap: 24px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.frame .div-3 {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  background-color: #082b4b;
  border-radius: 4px;
  display: flex;
  position: relative;
}

.frame .div-4 {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.frame .text-wrapper-3 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .div-5 {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-Bold", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 54px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .span {
  font-weight: 700;
  color: #ffffff;
}

.frame .text-wrapper-4 {
  font-weight: 700;
  color: #2b2b2b;
}

.frame .text-wrapper-5 {
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #ffffffcc;
  font-size: 20px;
}

.frame .text-wrapper-6 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #ffffffcc;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .text-wrapper-7 {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 36px;
}

.frame .div-6 {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 12px;
  display: flex;
  position: relative;
}

.frame .primary-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 4px;
  background: linear-gradient(
    96deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.frame .text-label {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #082b4b;
  font-size: 18px;
  position: relative;
  letter-spacing: 0;
  line-height: normal;
}
.frame .secondary-buttons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 8px;
}

.frame .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  position: absolute;
  top: 0;
  left: 414px;
  background-color: #ffffff;
  border-radius: 0px 0px 4px 4px;
  border: 1px solid;
  border-color: #082b4b;
}

.frame .div-7 {
  flex-direction: column;
  height: 827px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  flex: 1;
  flex-grow: 1;
  background-color: #fcfaf8;
  border-radius: 4px;
  border: 1px solid;
  border-color: #cccccc;
  display: flex;
  position: relative;
}

.frame .founders-to-creators {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #2b2b2b;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .text-wrapper-8 {
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #2b2b2b;
  font-size: 32px;
}

.frame .text-wrapper-9 {
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #8d8d8d;
  font-size: 20px;
  text-decoration: line-through;
}

.frame .text-wrapper-10 {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-Regular", Helvetica;
  font-weight: 400;
  color: #8d8d8d;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .text-wrapper-11 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #8d8d8d;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .text-wrapper-12 {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #2b2b2b;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 36px;
}

.frame .div-8 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #fcfaf8;
  border-radius: 12px;
}

.frame .primary-buttons-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 4px;
  background: linear-gradient(
    96deg,
    rgba(8, 43, 75, 1) 0%,
    rgba(19, 101, 177, 1) 100%
  );
}

.frame .text-label-2 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .div-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  position: absolute;
  top: 0;
  left: 484px;
  background-color: #082b4b;
  border-radius: 0px 0px 4px 4px;
}

.frame .text-wrapper-13 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1.2px;
  line-height: normal;
}

/* take away end */

/* not ready start */

.frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  padding: 62px 80px;
  position: relative;
  background-color: #ffffff;
}
.frame .div {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}
.frame .nav-item-holder {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #082b4b14;
  border-radius: 4px;
}
.frame .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro", Helvetica;
  font-weight: 600;
  color: #082b4b;
}
.frame .p {
  position: relative;
  align-self: stretch;
  font-family: "Playfair Display", Helvetica;
  font-weight: 600;
  font-style: italic;
  color: #2b2b2b;
  font-size: 54px;
  letter-spacing: 1.2px;
  line-height: normal;
}

.frame .text-wrapper-2 {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 20px;
  letter-spacing: 1.2px;
  line-height: 32px;
}

.frame .div-2 {
  align-items: center;
  gap: 24px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}
.frame .div-3 {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  background-color: #082b4b;
  border-radius: 4px;
  display: flex;
  position: relative;
}

.frame .div-4 {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.frame .text-wrapper-3 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Source Sans Pro", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .div-5 {
  position: relative;
align-self:stretch;  
font-family:"Source Sans Pro-bold",Helvetica;
font-weight:400;
color:transparent;
font-size:54px;
letter-spacing:0;
line-height:normal;
}
.frame .span{
    font-weight:700;
    color:#ffffff;
}
.frame .text-wrapper-4{
    font-weight:700;
    color:#2b2b2b;
}

.frame .text-wrapper-5{
    font-family:"source sans pro semi-bold",Helvetica;
    font-weight:600;
    color:#ffffffcc;
    font-size:20px;
}
.frame .text-wrapper-6{
    position: relative;
    align-self:stretch;
    margin-top:-1px;
    font-family:"source sans pro-bold",Helvetica;
    font-weight:600;
    color:#ffffffcc;
    font-size:18px;
letter-spacing:0;
line-height:normal;
}
.frame .text-wrapper-7{
    position: relative;
align-self: stretch;
  font-family: "Source Sans Pro", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 36px;
}

.frame .div-6 {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 12px;
  display: flex;
  position: relative;
}

.frame .primary-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 4px;
  background: linear-gradient(
    96deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.frame .text-label {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1px;
  font-weight: 600;
  color: #082b4b;
  font-size: 18px;
  position: relative;
  font-family: "Source Sans Pro", Helvetica;
  letter-spacing: 0;
  line-height: normal;
}

.frame .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  position: absolute;
  top: 0;
  left: 414px;
  background-color: #ffffff;
  border-radius: 0px 0px 4px 4px;
  border: 1px solid;
  border-color: #082b4b;
}

.frame .div-7 {
  flex-direction: column;
  height: 827px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  flex: 1;
  flex-grow: 1;
  background-color: #fcfaf8;
  border-radius: 4px;
  line-height: normal;
}

.frame .text-wrapper-11 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Source Sans Pro", Helvetica;
  font-weight: 600;
  color: #8d8d8d;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .text-wrapper-12 {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro", Helvetica;
  font-weight: 600;
  color: #2b2b2b;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 36px;
}

.frame .div-8 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #fcfaf8;
  border-radius: 12px;
}
.frame .primary-buttons-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 4px;
  background: linear-gradient(
    96deg,
    rgba(8, 43, 75, 1) 0%,
    rgba(19, 101, 177, 1) 100%
  );
}

.frame .text-label-2 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.frame .div-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
  position: absolute;
  top: -14px;
  left: 24px;
  background-color: #082b4b;
  border-radius: 20px;
}

.frame .text-wrapper-13 {
  position: relative;
  width: fit-content;
  font-family: "Source Sans Pro", Helvetica;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0;
  line-height: normal;
}
/* not ready end */
/* trustedby start*/
.frame {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 42px;
  padding: 62px 80px;
  position: relative;
  background-color: #fcfaf8;
}

.frame .div {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}
.frame .nav-item-holder {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #082b4b14;
  border-radius: 4px;
}
.frame .home {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #082b4b;
  font-size: 16px;
  letter-spacing: 1.2px;
  line-height: normal;
}

.frame .trusted-by-leaders {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 54px;
  text-align: center;
  letter-spacing: 1.2px;
  line-height: normal;
}

.frame .text-wrapper {
  font-weight: 600;
  letter-spacing: 0.65px;
}

.frame .span {
  font-family: "Playfair Display-SemiBoldItalic", Helvetica;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.65px;
}

.frame .p {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-Regular", Helvetica;
  font-weight: 400;
  color: #2b2b2b;
  font-size: 20px;
  text-align: center;
  letter-spacing: 1.2px;
  line-height: 32px;
}

.frame .div-2 {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.frame .div-3 {
  align-items: center;
  gap: 24px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}
.frame .IMG {
  position: relative;
  width: 375px;
  height: 437px;
}

.frame .frame-wrapper {
  align-items: flex-start;
  padding: 24px;
  flex: 1;
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid;
  border-color: #cccccc;
  display: flex;
  position: relative;
}

.frame .div-4 {
  flex-direction: column;
  height: 389px;
  align-items: flex-start;
  justify-content: space-between;
  flex: 1;
  flex-grow: 1;
  display: flex;
  position: relative;
}

.frame .text-wrapper-2 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBoldItalic", Helvetica;
  font-weight: 600;
  font-style: italic;
  color: #2b2b2b;
  font-size: 32px;
  letter-spacing: 0;
  line-height: normal;
}
.frame .div-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.frame .text-wrapper-3 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #2b2b2b;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 36px;
}

.frame .text-wrapper-4 {
  position: relative;
  align-self: stretch;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  color: #8d8d8d;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
}
.frame .auto-scroll{
    position: relative;
  align-self: stretch;
  width:100%;
  flex:0 0 auto;
}
/* trustedby end*/
/* frequently start */
/* Container Layout */
.faq-section {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 42px;
  width: 100%;
  max-width: 1345px; /* Adjust based on parent container */
  padding: 62px 80px;
  background: #ffffff;
  box-sizing: border-box;
}

/* Header styling */
.faq-header {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}

/* Category Badge Wrapper */
.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 8px 16px;
  background: rgba(8, 43, 75, 0.08);
  border-radius: 4px;
}

.faq-badge .badge-text {
  color: #082b4b;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

/* Main Titles */
.faq-title {
  align-self: stretch;
  margin: 0;
  color: #2b2b2b;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.faq-title .title-italic {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
}

.faq-subtitle {
  align-self: stretch;
  margin: 0;
  color: #2b2b2b;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1.2px;
}

/* Accordion Engine Wrapper */
.faq-accordion-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

/* Individual Row Block */
.faq-item {
  align-self: stretch;
  padding: 24px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.54);
}

/* Target first element specifically to match your top border setup */
.faq-item:first-of-type {
  border-top: 1px solid rgba(204, 204, 204, 0.54);
}

/* Interactive Accordion Trigger */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #2b2b2b;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  cursor: pointer;
  list-style: none; /* Removes standard browser triangle indicator */
}

/* Removes default list bullet in Webkit systems */
.faq-question::-webkit-details-marker {
  display: none;
}

/* Clean Custom Icon placeholders (24x24px) */
.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Basic CSS plus/minus icon toggle mechanism */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: #2b2b2b;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease-in-out;
}

/* Horizontal bar */
.faq-icon::before {
  width: 14px;
  height: 2px;
}

/* Vertical bar */
.faq-icon::after {
  width: 2px;
  height: 14px;
}

/* Hides vertical line when panel is open, changing (+) to (-) */
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Answer Body Panel Styling */
.faq-answer {
  margin-top: 12px;
  padding-right: 36px; /* Prevents text colliding with icons */
}

.faq-answer p {
  margin: 0;
  color: #8d8d8d;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}
/* frequently end */
/* contact start */
/* Base Container Setting */
.contact-section {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 42px;
  width: 100%;
  padding: 62px 80px;
  background-color: #fcfaf8;
  box-sizing: border-box;
}

/* Master Headers Layout */
.contact-header {
  align-self: stretch;
  text-align: center;
}

.main-title {
  margin: 0;
  color: #2b2b2b;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.main-title .title-italic {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
}

/* Card Form Block Core styling */
.contact-form {
  align-self: stretch;
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
  outline: 1px solid #cccccc;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
}

/* Internal Headings inside the card wrapper */
.form-intro {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}

.form-intro h3 {
  margin: 0;
  align-self: stretch;
  color: #2b2b2b;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 32px;
  font-weight: 600;
}

.form-subtitle {
  margin: 0;
  align-self: stretch;
  color: #2b2b2b;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
}

/* Grid layout engine */
.form-grid {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 14fr));
  gap: 24px;
}

/* Single Field Component Layout block */
.form-group {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.form-group.full-width {
  grid-column: span 2;
}

/* Typography for label components */
.form-group label {
  align-self: stretch;
  color: #2b2b2b;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

/* Input Fields & Structure Controls styling */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea,
.input-wrapper {
  align-self: stretch;
  height: 53px;
  padding: 8px 12px;
  border-radius: 4px;
  outline: 1px solid #cccccc;
  border: none;
  background-color: #ffffff;
  color: #2b2b2b;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 400;
  box-sizing: border-box;
}

/* Textarea height variation overrides */
.form-group textarea {
  height: 149px;
  resize: none;
  padding: 12px;
}

/* Input placeholders color setup rules */
.form-group ::placeholder {
  color: #8d8d8d;
  opacity: 1;
}

/* Active Highlight/Focus State matching your outline parameters */
.form-group.active-field input,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid #082b4b;
}

/* Compound Field structure variant rule for prefix support */
.input-wrapper.whatsapp-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}

.input-wrapper.whatsapp-wrapper input {
  border: none;
  outline: none;
  padding: 0;
  height: 100%;
  width: 100%;
}

.country-code {
  color: #8d8d8d;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

/* Select wrapper drop icon indicator mask engine */
.select-wrapper {
  width: 100%;
  position: relative;
}

.select-wrapper select {
  width: 100%;
  appearance: none; /* Disables browser native arrows */
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px; /* Space for customized icon placement */
}

/* Drop icon layout architecture built on raw pure CSS vector rendering */
.select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 5px;
  background-color: transparent;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #8d8d8d;
  pointer-events: none;
}

/* Submission Button Controls */
.submit-btn {
  align-self: stretch;
  padding: 18px 36px;
  background: linear-gradient(135deg, #082b4b 0%, #1365b1 100%);
  border-radius: 4px;
  border: none;
  color: #ffffff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s ease-in-out;
}

.submit-btn:hover {
  opacity: 0.95;
}

/* Component Breakpoints fallback engine for mobile view optimization */
@media (max-width: 768px) {
  .contact-section {
    padding: 32px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .main-title {
    font-size: 36px;
  }
}
/* contact end */
/* claim start */
.floating-section {
  display: flex;
  flex-direction: column;
  width: 1440px;
  align-items: flex-start;
  gap: 32px;
  padding: 24px 80px;
  position: relative;
  background-color: #082b4b;
}

.floating-section .frame {
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.floating-section .div {
  flex-direction: column;
  width: 272px;
  align-items: flex-start;
  gap: 12px;
  display: flex;
  position: relative;
}

.floating-section .element {
  align-self: stretch;
  color: transparent;
  font-size: 24px;
  line-height: 36px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  letter-spacing: 0;
}

.frame .text-wrapper {
  color: #ffffff;
}

.frame .span {
  color: #ffffffcc;
  font-size: 16px;
  text-decoration: line-through;
}

.frame .p {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  font-family: "Source Sans Pro-Regular", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
}
.frame .primary-buttons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
 border-radius: 4px;
}

.frame .text-label {
  width: fit-content;
  color: #082b4b;
  font-size: 18px;
  line-height: normal;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: -1px;
  font-family: "Source Sans Pro-SemiBold", Helvetica;
  font-weight: 600;
  letter-spacing: 0;
}
/* claim end */
.navigation-bar{
    
}
.label{
    width:74px;
    height:25px;
}

.label .home{
    postion:fixed;
    top:12px;
    left:12px;
    font-family:"Source sans pro semi-bold",Helvetica;
      font-weight: 600;
        color: #082b4b;
        font-size: 20px;  
        letter-spacing: -0.2px;
  line-height: normal;


}
