/*-- -------------------------- -->
<---          Landing           -->
<--- -------------------------- -*/

.white-space {
    height: 80px; /* Specify the height of the block */
}

#landing {
    background-color: var(--backgroundGray);
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#landing picture {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#landing img {
    width: 100%;
    height: 100%;
}

#landing .content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 550px;
    margin: auto;
    z-index: 2;
}

#landing .cs-title{
    margin: 25px;
    color: #fff;
}

@media screen and (min-width: 1024px) {

    .white-space {
        height: 140px; /* Specify the height of the block */
    }

    #landing img {
        width: 100%;
        height: 100%;
    }
    
}
/*-- -------------------------- -->
<---          Landing-Content         -->
<--- -------------------------- -*/
#landing-content {
    position: relative;
    background-color: var(--backgroundGray); /* add the background color */
    text-align: center; /* center all text */
}

/* If you want the content to have some margin around it */
#landing-content .content {
    margin: 0 auto;
    max-width: 800px; /* adjust this value based on your design needs */
}

/* If you want the text to be centered within the .content div */
#landing-content .content .cs-title,
#landing-content .content .cs-text {
    text-align: center; /* center text */
}

#landing-content .cs-text:last-of-type {
    margin-bottom: 0rem;
}
.bottom-section-wave {
    width: 100%;
    opacity: 1;
    z-index: 4;
    margin-top: -10px;
    position: relative;
    display: none;
}

#landing-content #purple-circle {
    position: absolute;
    bottom: 2%; 
    left: 10px;
}

  @media screen and (min-width: 1024px) {

    #landing-content {
        padding: 1rem clamp(1rem, 1.5vw, 2rem) 1rem clamp(1rem, 1.5vw, 2rem) ;
        background-color: var(--backgroundGray); /* add the background color */
        text-align: center; /* center all text */
    }

    .bottom-section-wave {
      display: inline;
    }

    #landing-content #purple-circle {
        bottom: 20%; 
    }
  
  }

/*-- -------------------------- -->
<---            FAQ           -->
<--- -------------------------- -*/

#faq {
    position: relative;
}

#faq .cs-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}
#faq .cs-faq-group {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    max-width: 1100px;
}
#faq .cs-faq-item {
list-style: none;
width: 100%;
border-bottom: 1px solid #E8E8E8;
transition: border-bottom 0.3s;
background-color: #fff;
background-color: #F7F7F7;
border-radius: 4px;
}
#faq .cs-faq-item.active {
/* border-color: var(--primaryOrange); */
}
#faq .cs-faq-item.active .cs-button {
/* color: var(--primaryOrange); */
}
#faq .cs-faq-item.active .cs-button:before {
background-color: var(--secondary);
transform: rotate(315deg);
}
#faq .cs-faq-item.active .cs-button:after {
background-color: var(--secondary);
transform: rotate(-315deg);
}
#faq .cs-faq-item.active .cs-item-p {
height: auto;
/* 20px - 24px bottom */
/* 16px - 24px left & right */
padding: 1rem clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 1.3vw, 1.5rem);
opacity: 0.8;
}

#faq .cs-faq-item.active .cs-button {
    background-color: var(--primary);
    color: var(--secondary);
}
#faq .cs-button {
font-size: 1rem;
line-height: 1.2em;
text-align: left;
font-weight: bold;
/* 16px - 20px */
padding: clamp(1rem, 1.3vw, 1.25rem);
border: none;
background: transparent;
color: var(--primary);
opacity: 1;
display: block;
width: 100%;
position: relative;
transition: background-color 0.3s, color 0.3s;
}
#faq .cs-button:hover {
cursor: pointer;
}
#faq .cs-button:before {
/* left line */
content: '';
width: 0.5rem;
height: 0.125rem;
background-color: var(--bodyTextColor);
opacity: 1;
border-radius: 50%;
position: absolute;
display: block;
top: 45%;
right: 1.5rem;
transform: rotate(45deg);
/* animate the transform from the left side of the x axis, and the center of the y */
transform-origin: left center;
transition: transform .5s;
}
#faq .cs-button:after {
/* right line */
content: '';
width: 0.5rem;
height: 0.125rem;
background-color: var(--bodyTextColor);
opacity: 1;
border-radius: 50%;
position: absolute;
display: block;
top: 45%;
right: 1.3125rem;
transform: rotate(-45deg);
/* animate the transform from the right side of the x axis, and the center of the y */
transform-origin: right center;
transition: transform .5s;
}
#faq .cs-button-text {
    width: 90%;
    display: block;
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
}
#faq .cs-item-p {
text-align: left;
font-size: clamp(1rem, 1.5vw, 1.25rem);
line-height: 1.5em;
width: 90%;
height: 0;
margin: 0;
padding: 0 clamp(1rem, 2vw, 1.5rem);
opacity: 0;
color: var(--bodyTextColor);
overflow: hidden;
transition: opacity 0.3s, padding-bottom 0.3s;
transition: opacity 0.5s, padding-bottom 0.5s;
}

#faq .age {
    font-size: 1rem;
    opacity: 0.8;
}

#faq .cs-faq-img {
    opacity: 0; 
    transition: opacity 0.5s; 
    overflow: hidden;
    height: 0;
    display: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    width: 80%;
    max-width: 450px;
    max-height: 350px;
    object-fit: cover;
}

#faq .cs-faq-item.active .cs-faq-img {
    opacity: 1;
    height: auto;
    display: block;
}

#faq #blue-rectangle{
    position: absolute;
    left: -75px;
    bottom: 20%;
    display: none;
}

#faq #yellow-star {
    position: absolute; 
    top: 0px;
    right: 7%;
}


@media screen and (min-width: 1024px) {
    #faq .cs-faq-img {
        width: auto;
    }

    #faq.cs-section {
        padding-top: 1rem;
    }

    #faq .cs-title {
        margin-bottom: 2rem;
    }

    #faq #blue-rectangle{
        display: inline;
    }

}


/* <!-- ============================================ -->
<!--                 CTA                       -->
<!-- ============================================ --> */

#cta {
    width: 100%;
    background-color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

#cta .cs-title{
    text-align: center;
    color: #FFF;
    margin-bottom: 0;
}

#cta .cta-content {
    width: 90%; /* Adjust width as per your needs */
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 1024px) {
    #cta {
        height: 155px;
    }

    #cta .cta-content {
        flex-direction: row;
        justify-content: space-between;
    }
}




  
  