:root {
    /* Colors */
    --color-primary: #F76922; 
 
    /* Font Families */
    --font-family-heading: 'Poppins', sans-serif; 
    --font-family-paragraphs: 'Poppins', sans-serif; 
    --font-family-general: 'Poppins', sans-serif; 
  
    /* Font Sizes */
    --font-size-heading-large: 50px; 

    /* Line Heights */
    --line-height-heading: 68px; 
    --line-height-body: 1.5; 
  
    --vertical-gutter: 4rem; 
  }
  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    overflow-x: hidden;
}


.home-container {
    background-color: transparent;
    max-width: 1200px;
    width: 100%;
    padding: 1rem 2rem;
    margin: 0 auto;
}

/* Hero section */

.hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: space-between;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero .hero-text {
    padding: 1rem 0;
    margin-top: 10rem;
    font-family: var(--font-family-general);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero .hero-text .hero-text_heading {
    font-size: var(--font-size-heading-large);
    line-height: var(--line-height-heading);
    font-family: var(--font-family-heading);
    margin-bottom: 1rem;
}

.hero .hero-text .hero-text_paragraph {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
}

.hero .hero-text .searchBox p {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.searchBox-input {
    display: flex;
    align-items: center;
}

.hero .hero-graphic {
    padding: 7rem 0 0 0;
    background-color: transparent;
}



@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr; 
        text-align: center; 
    }

    .hero-graphic {
        display: none;
    }

    .hero .hero-text {
        margin-top: 2rem; 
        align-items: center; 
        text-align: center;
    }

    .hero .hero-text .hero-text_heading {
        font-size: 28px; 
    }

    .hero .hero-text .hero-text_paragraph {
        font-size: 18px; 
        line-height: 28px;
    }

    .hero .hero-graphic {
        justify-content: center;
        padding: 0; 
    }

    .hero .hero-graphic img {
        width: 80%; 
    }
}


@media (max-width: 768px) {
    .hero {
        gap: 30px; 
        text-align: center;
    }

    .hero .hero-text {
        margin-top: 1rem; 
        text-align: center;
    }

    .hero .hero-text .hero-text_heading {
        font-size: 24px; 
        line-height: 32px;
    }

    .hero .hero-text .hero-text_paragraph {
        font-size: 16px; 
        line-height: 26px;
    }

    .hero .hero-graphic img {
        width: 100%; 
    }
}


@media (max-width: 480px) {
    .hero .hero-text .hero-text_heading {
        font-size: 20px;
    }

    .hero .hero-text .hero-text_paragraph {
        font-size: 14px; 
        line-height: 22px;
    }

    .hero .hero-graphic img {
        width: 90%; 
    }
}

/* ABOUT SECTION*/
.about {
    font-family: var(--font-family-general);
    /* margin-top: 8rem; */
}

.about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
    padding: var(--vertical-gutter) 0; 
}

.about-graphic-container {
    display: flex;
    justify-content: flex-end;
    padding-right: 3rem;
}

.about-graphic-container img {
    height: 100%;
    width: 80%;
}

.about-text {
    width: 80%;
}

.about-text h2 {
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 35px;
    line-height: 28px;
}

.about-text p {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.about-text__highlight {
    color: var(--color-primary);
    font-weight: 700;
}

.about-text .about-cta {
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .about {
        margin-top: 0rem;
    }

    .about-container {
        grid-template-columns: 1fr; 
        text-align: center; 
    }

    .about-graphic-container {
        justify-content: center; 
        padding-right: 0; 
    }

    .about-graphic-container img {
        width: 70%; 
    }

    .about-text {
        width: 90%; 
        margin: 0 auto; 
    }

    .about-text h2 {
        font-size: 28px; 
        line-height: 1.4;
    }

    .about-text p {
        font-size: 18px; 
    }
}


@media (max-width: 768px) {
    .about-graphic-container img {
        width: 60%; 
    }

    .about-text h2 {
        font-size: 24px; 
    }

    .about-text p {
        font-size: 16px; 
    }
}


@media (max-width: 480px) {
    .about-graphic-container img {
        width: 100%; 
    }

    .about-text {
        width: 100%; 
    }

    .about-text h2 {
        font-size: 20px;
    }

    .about-text p {
        font-size: 14px; 
        line-height: 1.4;
    }

    .about-text .about-cta {
        margin-top: 1.5rem; 
    }
}


/* WAYS TO USE */

.ways-to-use {
    font-family: var(--font-family-general);
}

.ways-to-use-header span {
    display: block;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: var(--color-primary);
}

.ways-to-use-header h2 {
    margin: 16px 0 50px 0;
    display: block;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 35px;
    line-height: 28px;
    color: #000;
}


.ways-to-use-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ways-to-use_card_graphic {
    height: 293px;
    width: 293px;
    display: flex; 
    align-items: flex-start;
    justify-content: flex-start; 
    padding: 0;
    margin: 0; 
}

.ways-to-use_card_graphic img {
    height: 100%;
    width: 100%;
    object-fit: cover; 
    margin: 0; 
    padding: 0; 
}

.ways-to-use_card h3 {
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
}

.ways-to-use_card p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

@media (max-width: 1024px) {
    .ways-to-use-container {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
    }

    .ways-to-use_card_graphic {
        height: 250px; 
        width: 250px;
    }

    .ways-to-use_card h3 {
        font-size: 22px; 
    }

    .ways-to-use_card p {
        font-size: 16px;
        line-height: 24px;
    }
}


@media (max-width: 768px) {
    .ways-to-use-container {
        grid-template-columns: 1fr; 
        gap: 10px;
    }

    .ways-to-use_card_graphic {
        height: 200px; 
        width: 200px;
        margin: 0 auto; 
    }

    .ways-to-use-header h2 {
        font-size: 28px; 
        line-height: 24px;
    }

    .ways-to-use-header span {
        font-size: 18px; 
    }

    .ways-to-use_card {
        text-align: center;
        width: 70%;
        margin: 0 auto;
    }

    .ways-to-use_card h3 {
        font-size: 20px; 
    }

    .ways-to-use_card p {
        font-size: 14px;
        line-height: 20px;
    }
}


@media (max-width: 480px) {
    .ways-to-use-header h2 {
        font-size: 24px; 
    }

    .ways-to-use-header span {
        font-size: 16px; 
    }

    .ways-to-use_card_graphic {
        height: 150px; 
        width: 150px;
    }

    .ways-to-use_card {
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }


    .ways-to-use_card h3 {
        font-size: 18px;
    }

    .ways-to-use_card p {
        font-size: 12px;
        line-height: 18px;
    }
}


/* HOW DOES IT WORK */

.how-does-it-work {
    font-family: var(--font-family-general);
}

.how-does-it-work-header span {
    display: block;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: var(--color-primary);
}

.how-does-it-work-header h2 {
    margin: 16px 0 50px 0;
    display: block;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 35px;
    line-height: 28px;
    color: #000;
}

.how-does-it-work-container__text  {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.how-does-it-work-container__text div h3 {
   font-weight: 600;
   font-size: 25px;
   line-height: 28px;
   color: var(--color-primary);
   margin-bottom: 10px;
}

.how-does-it-work-container__text div p {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #000;
}

.how-does-it-work-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


@media (max-width: 1024px) {
    .how-does-it-work-header h2 {
        font-size: 30px; 
        margin-bottom: 40px;
    }

    .how-does-it-work-container {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .how-does-it-work-container__text div:not(:first-child) {
       margin-top: 16px;
    }

    .how-does-it-work-container__text div {
        margin-bottom: 16px;
     }

    .how-does-it-work-container__text div h3 {
        font-size: 22px; 
    }

    .how-does-it-work-container__text div p {
        font-size: 14px; 
        line-height: 20px;
    }

    .how-does-it-work-video-container {
        width: 100%;
    }

    .how-does-it-work-video-container iframe {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .how-does-it-work {
        padding: var(--vertical-gutter-small) 0; 
    }

    .how-does-it-work-header h2 {
        font-size: 26px; 
        line-height: 26px;
        margin-bottom: 30px;
    }

    .how-does-it-work-header span {
        font-size: 18px; 
    }

    .how-does-it-work-container__text div h3 {
        font-size: 20px; 
        line-height: 24px;
    }

    .how-does-it-work-container__text div p {
        font-size: 13px; 
        line-height: 18px;
    }
}

@media (max-width: 480px) {
    .how-does-it-work-header h2 {
        font-size: 22px; 
        line-height: 24px;
    }

    .how-does-it-work-header span {
        font-size: 16px; 
    }

    .how-does-it-work-container__text div h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .how-does-it-work-container__text div p {
        font-size: 12px; 
        line-height: 16px;
    }
}

/* PITCH */

.pitch {
    padding: var(--vertical-gutter) 0;
    text-align: center; 
}

.pitch h2 {
    font-size: 35px; 
    font-weight: 700;
    margin-bottom: 40px; 
    color: #000; 
    font-family: var(--font-family-heading);
    line-height: 31px;
    font-style: italic;
}

.pitch-container {
    padding-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start; 
    justify-items: center; 
}

.pitch-card {
    max-width: 280px;
}

.pitch-card-header {
    width: fit-content;
}

.pitch-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%; 
    background-color: #e0e0e0; 
    margin-bottom: 20px; 
}

.pitch-card h3 {
    font-size: 20px; 
    margin-bottom: 15px; 
    color: #000; 
    font-weight: 600;
    text-align: left;
    font-family: var(--font-family-heading);
    line-height: 28px;
}

.pitch-card p {
    font-size: 15px; 
    line-height: 23px; 
    color: #000; 
    text-align: left;
    font-family: var(--font-family-paragraphs);
    font-weight: 400;
}

.pitch button {
    margin-top: 40px; 
    padding: 10px 25px; 
    font-size: 1rem;
    background-color: #F76922; 
    color: #fff;
    border: none;
    border-radius: 25px; 
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pitch button:hover {
    background-color: #cc5200; 
}

.pitch-cta-container {
    padding-top: 6rem;
}

@media (max-width: 1024px) {
    .pitch-container {
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px;
    }

    .pitch-card h3 {
        font-size: 18px; 
        line-height: 26px;
    }

    .pitch-card p {
        font-size: 14px;
        line-height: 21px;
    }
}

@media (max-width: 768px) {
    .pitch-container {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .pitch-card {
        max-width: 70%; 
        margin-bottom: 3rem;
    }

    .pitch-card-header {
        width: 100%;
        text-align: center;
    }

    .pitch h2 {
        font-size: 28px; 
        line-height: 28px;
    }

    .pitch-card h3 {
        font-size: 16px; 
        line-height: 24px;
        text-align: center;
    }

    .pitch-card p {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }

    .pitch-cta-container {
        padding-top: 3rem;
    }
}

@media (max-width: 480px) {
    .pitch-container {
        gap: 15px; 
    }

    .pitch h2 {
        font-size: 24px; 
        line-height: 26px;
        margin-bottom: 20px;
    }

    .pitch-card img {
        width: 60px; 
        height: 60px;
    }

    .cta-button {
        font-size: 14px; 
        padding: 10px 20px;
    }
}

/* GENERAL */

.cta-button {
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 18px;
    text-align: center;
    outline: none;
    text-decoration: none;
    font-family: var(--font-family-general);
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    opacity: .9;
    background-color: #f94e10; 
    text-decoration: none;
    color: #fff;
}

.cta-button:active {
    outline: none;
}

.cta-button:focus {
    outline: none;
}



  

/* EIGHT SHAPE HEADER GRAPHIC */
 #eightShapeContainer {
    position: relative;
    /*width: 90vw;*/    
    width: 700px;
    max-width: 1200px;
    /*height: 80vh;*/
    height: 700px;   
    max-height: 900px;
    background: transparent;
    /* border: 1px dashed #ccc; */
  }

  .platformMember-container {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .platformMember-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 1800px) and (min-width: 1601px) {
    #eightShapeContainer {
      width: 900px;
      height: 900px;
    }
  }

  @media (max-width: 1600px) and (min-width: 1500px) {
    #eightShapeContainer {
      width: 700px;
      height: 700px;
    }
  }

  @media (max-width: 1499px) and (min-width: 1366px) {
    #eightShapeContainer {
      width: 650px;
      height: 650px;
    }
  }
  
  @media (max-width: 1365px) and (min-width: 1280px) {
    #eightShapeContainer {
      width: 600px;
      height: 600px;
    }
  }
  
  @media (max-width: 1279px) and (min-width: 1152px) {
    #eightShapeContainer {
      width: 550px;
      height: 550px;
    }
  }
  
  @media (max-width: 1151px) and (min-width: 1024px) {
    #eightShapeContainer {
      width: 500px;
      height: 500px;
    }
  }
  


