
/* MAIN PANEL BELOW THE NAV BAR STARTS HERE  */

.main_background_panel {
    min-height: 45rem;
    background-image: url(../../images/landing_page_images/cloud_lower_res.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding-top: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-items: start;
    overflow: hidden;
}


.main_background_panel h3 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    font-family: 'Baloo 2', sans-serif;
    padding: 0 0.5rem;
    margin-top: 2rem;
    
}

.prize_example_display_cards {
    min-height: 25rem;
    margin: 0 0.5rem;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
   
    gap: 0.5rem;
    padding-bottom: 0.4rem;
    align-items: center;
}

.prize_card_v2{ 
    background-color: white;
    height: 7rem;
    border: 1px solid #e5e7eb;
    border-radius: 4rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 0.5rem;
    gap: 0.8rem;
    overflow: hidden;
}

/* Section containning prize images */
.prize-pics-containers {
    height: 8rem;
    width: 8rem;
    border-radius: 100%;
}

.prize-pics-containers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

/* Section containning prize description text */


.prize-title {
    font-size: 1.3rem;
    font-family: 'Baloo 2', sans-serif;
}

@keyframes sideToSide {
  0% { transform: translateX(0); }
  100% { transform: translateX(0.5rem); }
}


#card-1 {
    grid-column: 3 / span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
   
}


 #card-2{
    grid-column:  5/ span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
}

#card-3 {
    grid-column: 2 / span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
}

#card-4 {
   grid-column: 4 / span 2;
   animation: sideToSide 1.2s ease-in-out infinite alternate;
}

#card-5 {
    grid-column: 6 / span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
}

#card-6 {
    grid-column: 3 / span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
}

#card-7 {
    grid-column:  5/ span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
}

#card-8 {
    grid-column:  4/ span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
}


/* ------------------HOW IT WORKS Explainer SECTION STARTS HERE---------------------------------  */
.how_it_works {
    color: #94A3B8;
    padding: 0rem;
    text-align: center;
    margin: 0;
    padding: 1rem;
}

.how_it_works h3 {
    padding: 0rem;
    text-align: center;
    margin: 0;
    font-size: 2.5rem;
    font-family: 'Baloo 2', sans-serif;
}

.explainer_cards {
    width: 100%;
    height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5rem;
    gap: 0.5rem;
    
}

.explainer_cards img{
    width: 50%;
    height: 100%;
    object-fit: fill;
    background-color: white;  
}

.explainer_text{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.explainer_text h3 {
    font-size: 2.5rem;
    color: #94A3B8;
    font-family: 'Baloo 2', sans-serif;
    margin: 0;
    line-height: 1.5;
}

.explainer_text p {
    font-size: 1.3rem;
    color: #94A3B8;
    font-family: 'Baloo 2', sans-serif;
    margin: 0;
    line-height: 1.1;
}

/* ------------------ CALL TO ACTION  section starts here---------------------------------  */

.cta-section {
    background: linear-gradient(135deg, #E5E7EB, #F3F4F6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 20rem;
    margin: 0;
}

.cta-section h3 {
    font-size: 2.5rem;
    font-weight: 1000;
    color: #6e7b8d;
    text-align: center;
    font-family: 'Baloo 2', sans-serif;
    line-height: 1.2;
    padding: 0;
    margin: 0;
}

#action-enticer {
    padding: 0;
    margin: 1rem 0 0 0;
    font-size: 1.3rem;
    font-family: 'Baloo 2', sans-serif;
    color: #6e7b8d;
}

.cta-section button {
    width: 12rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border-radius: 2rem;
    border: none;
    background: linear-gradient(135deg, #7367F0, #767CFF);
    color: white;
    font-family: 'Baloo 2', sans-serif;
    margin-top: 1.5rem;
}



/* ------------------ FOOTER section starts here---------------------------------  */

.footer-section {
 background: linear-gradient(135deg, #7367F0, #3057f6);
 height: 30rem;
 width: 100%;
 margin: 0;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: space-evenly;
}

.footer-info-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

/* Contact column */
.contact #email-info {
    font-size: 1.2rem;
    color: white;
    font-family: 'Baloo 2', sans-serif;
}

/* Extra details columns */
.extra {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.extra a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-family: 'Baloo 2', sans-serif;
}

.connect a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.2rem;
}

/* Social media column */
.footer-column-title{
    color: white;
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0;
}

#copyright {
    font-size: 1.2rem;
    color: white;
    font-family: 'Baloo 2', sans-serif;
}

/* ------------------ SCREEN SIZE RESPONSIVE  section starts here---------------------------------  */


@media (min-width: 650px) and (max-width: 1120px) {
  .prize_example_display_cards {
    min-height: 25rem;
    margin: 0 0.5rem;
    display: grid;
    /* grid-template-columns: repeat(8, 1fr); */
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    padding-bottom: 0.4rem;
    align-items: center;
}

#card-1 {
    grid-column: 2 / span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
   
}


 #card-2{
    grid-column: 4 / span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
}

#card-3 {
    grid-column:  1 / span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
}

#card-4 {
   grid-column: 3 / span 2;
   animation: sideToSide 1.2s ease-in-out infinite alternate;
}

#card-5 {
    grid-column: 5 / span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
}

#card-6 {
    grid-column: 2 / span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
}

#card-7 {
    grid-column: 4 / span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
}

#card-8 {
    grid-column:  3/ span 2;
    animation: sideToSide 1.2s ease-in-out infinite alternate;
}


}

@media (max-width: 650px) {
  .prize_example_display_cards {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    justify-content: center;
  }

  .prize_card_v2 {
    width: 9rem;
    height: 9rem;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    box-shadow: none; 
    gap: 0;
    border-radius: 1rem;
    
  }

  .prize-des-containers{
   background-color: none;
   width: 9rem;
  }

  .prize-title{
    margin: 0;
    text-align: center;
    height: auto;
    font-size: 1rem;
    color: gray;
     margin: 0;
  }

  .prize-pics-containers{
    width: 7rem;
    height: 7rem;
    
  }
  .prize-pics-containers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}


  .how_it_works {
    padding: 0rem;
    text-align: center;
    margin: 0;
    padding: 1rem;
    
}

.explainer_cards {
    width: 100%;
    height: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.explainer_cards:nth-child(2){
    flex-direction: column-reverse;
}

.explainer_cards img{
    width: 16rem;
    height: 50%;
    object-fit: fill;

}

.explainer_text{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.explainer_text h3 {
    font-size: 2rem;
    color: #94A3B8;
    font-family: 'Baloo 2', sans-serif;
    margin: 0;
    width: 16rem;
    line-height: 1.1;
    text-align: center; 
}

.explainer_text p {
    font-size: 1rem;
    color: #94A3B8;
    font-family: 'Baloo 2', sans-serif;
    margin: 0;
    line-height: 1.1;
    width: 16rem;
    text-align: center; 
}

.cta-section h3 {
    font-size: 2rem;
    padding: 0;
    margin:0;
}

#action-enticer {
    padding: 0 0 1rem 0;
    margin: 1rem 0 0 0;
    text-align: center;
    padding: 0 1rem;
}

/* ---- FOOTER SECTION --------- */

.footer-info-container {
display: flex;
flex-direction: column;
align-items: center;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.extra {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column-title {
    text-align: center;
}

#copyright {
    text-align: center;
    
}

}