
.blank{
    /* background-color: red; */
    width: 100%;
    height: 1px;
}

.tag{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #202939;
    border-radius: 100px;
    padding: 8px 16px 8px 16px;
}

.grey{
    background-color: #E3E8EF;
}

.purple{
    background-color: #DFD8FD;
}

.tick-text {
    position: relative;
    padding-left: 24px; /* Space for the icon */
    line-height: 1.6;
}

.tick-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px; /* Adjust this to align the icon vertically */
    width: 18px;
    height: 18px;
    background-image: url('../assets/home-page/tick.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-section-content{
    position: absolute;
    left: 35%;
    top: 20%;
    transform: translateX(-25%);
    text-align: center;
}

.hero-section-content h1{
    font-family: "Manrope", sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #202939;
    line-height: 82px;

}

.hero-section-content p{
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #697586 ;
    margin-top: 24px;
    margin-bottom: 40px;
    line-height: 32px;

}

.hero-section-video{
    width: 100%;
    height: 650px;
}

.video-desktop{
    width: 100%;
    object-fit: cover;
    height: 650px;
}

.video-mobile{
    display: none;
}

.numbers-section{
    background-color: #EEF2F6;
    padding-top: 30px;
    padding-bottom: 30px;
}

.numbers-section h2{
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    color: #003099;
    font-weight: 700;
    margin-bottom: 0;

}

.numbers-section p{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #202939;
    font-weight: 500;
    margin-bottom: 0;
}

.nationwide-section{
    margin-top: 80px;
    margin-bottom: 80px;
}

.nationwide-section h2{
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #202939;
    line-height: 60px;
    margin-top: 24px;
}

.nationwide-section-card{
    border: 1px solid #E3E8EF;
    border-radius: 24px;
}

.card-desc{
    margin-top: 16px;
}

.card-icon{
    margin-right: 24px;
}

.nationwide-section-card p{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #202939;
}

.card-heading h5{
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-heading p{
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #697586;
    margin-bottom: 0;
}

.card-points{
    margin-bottom: 24px;
}

.card-button a {
    width: 100%;
}

.how-works-section{
    background-color: #F3F0FF;
    padding-top: 80px;
    padding-bottom: 80px;
}

.how-works-section h2{
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #202939;
    line-height: 60px;
    margin-top: 24px;
}

.how-works-card{
    background-color: white;
    border-radius: 24px;
    border: 1px solid #E3E8EF;
}

.how-works-card-icon{
    background-color: #DFD8FD;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 24px;
}

.how-works-card-icon h2{
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #202939;
    margin-top: 0;
}

.how-works-section h5{
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.how-works-section p{
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #697586;
    margin-bottom: 0;
}

.how-works-section-button a{
    margin-top: 40px;
    width: 30%;
  }

.contact-banner{
    background-image: linear-gradient(to right, #0084F2, #D836DB);
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact-banner h2{
    font-family: "Manrope", sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.contact-banner p{
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: white;
    margin-bottom: 40px;
}



@media (max-width: 768px) {
  /* Styles for mobile and tablets */

  .blank{
    margin-top: 95px;
  }


  br{
    display: none;
  }

  .hero-section-content {
    position: absolute; /* or relative if needed */
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    padding: 16px; /* Optional: Adds space inside */
    box-sizing: border-box;
  }

  .hero-section-content h1{
    font-size: 32px;
    line-height: 40px;
  }

  .hero-section-content p{
    font-size: 16px;
    line-height: 26px;
  }

  .hero-section-video{
    width: 100%;
    overflow: hidden;
  }

  .video-desktop{
    display: none;
  }

  .video-mobile{
    width: 100%;
    display: block;
  }

  .nationwide-section h2{
    font-size: 32px;
    line-height: 48px;
  }

  .how-works-section-button a{
    width: 90%;
  }

  .contact-banner{
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-banner h2{
    font-size: 32px;
  }

  .contact-banner p{
    font-size: 16px;
  }

}