.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
     padding: 30px;
}
  .grid-item {
    padding: 20px;
    font-size: 30px;
    text-align: center;
  } 
  h1
  {
    font-family: "Poppins", sans-serif !important;
    font-size: 31px !important;
    text-align: left!important;
    font-weight: 500 !important;
}
  ul,li
  {
    font-family: "Roboto", sans-serif !important;
    font-weight: 400;
    font-size: 22px;
    text-align: left;
    color:#000000;
    margin-bottom: 10px;
  }
  ul.custom-icons {
    list-style: none; /* Remove the default bullet */
}

ul.custom-icons li {
    position: relative;
    padding-left: 30px; /* Create space for the icon */
}

ul.custom-icons li::before {
    content: url('images/list-icon.png');
    position: absolute;
    left: -15px;
    top: 0;
}

  .butn
  { 
    float:left;
    display: inline-block;
    padding: 12px 31px;
    color: #000;
    background: #F9CD59;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: bolder;
    border: none;
    cursor: pointer;
    margin: 10px;
    font-family: "Roboto", sans-serif !important;
    font-weight: 700;
    font-size: 22px;
  }
  .blue-bg
  {
    background: linear-gradient(to top, #fff 50%, #0066B3 50%);
    height: 110vh;
    margin-top: 70px;

  }
  .text-center
  {
    text-align: center;
  }
  .heading
  {
    padding: 30px;
    color: #fff;
    font-family: "Roboto", sans-serif !important;
    font-weight: 800;
    font-size: 32px;
    text-align: center !important;
  }
  .benefits h1
  {
    color: #000000;
    padding-bottom: 0px;
    margin-bottom: 0px;

  }
  .benefits .grid-container {
    padding-top: 0px;
}
  .video-container {
    position: relative;
    max-width: 1200px;
    height: 110vh;
    height: auto;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
}
.w-100 {
  width: 100% !important;
  height: 100vh;

}
.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text-left
{ 
  margin: 0 auto;
  text-align: left;
}
.form-container {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
}
.form-container {
    /* max-height: 0; */
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out, transform 0.5s ease-out;
  /* opacity: 0; */
  transform: translateY(20px);
  display: none;
}

/* When the form is visible */
.form-container.show {
  max-height: 1000px; /* Adjust this based on form size */
  opacity: 1;
  transform: translateY(0);
}

/* Button slide-up effect */
.button-container {
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out, transform 0.5s ease-out;
  max-height: 100px;
  transform: translateY(0);
  opacity: 1;
}

/* Hide button when form is visible */
.button-container.hide {
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
}
html
{
    scroll-behavior: smooth;
}
form {
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; */
  padding-top: 20px;
    padding-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-size: 16px;
  text-align: left;

}

.form-group label span {
  color: red;
}

.form-group input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
}
/* .registration-form
{
  display: none;
} */
/* form {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns */
  gap: 20px;
} */

/* Make the "Name" field span across two columns */
.form-group.full-width {
  grid-column: span 2;
}

.form-group.submit-btn {
  grid-column: span 1;
  display: flex;
  justify-content: center;
}

button {
  padding: 10px 20px;
  background-color: #ffcc00;
  color: #000;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #e6b800;
}
.error
{
  font-weight: 100;
    font-size: 15px;
    color: #de4c4c !important;
    line-height: initial;
    margin-bottom: 15px;
}
.benefits img
{
  position: sticky;
  top: 100px;
}
.thank-you-message {
  display: flex !important;
  align-items: center;
  justify-content: start;
  background-color: #F0F8E7; /* Light green background */
  color: #333; /* Dark text */
  padding: 15px 20px;
  border-radius: 20px;
  max-width: 600px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.thank-you-message .icon {
  font-size: 30px;
  color: #4CAF50; /* Green color */
  margin-right: 15px;
}

.thank-you-message .text {
  font-size: 20px;
  padding-left: 5%;
}

.thank-you-message .text .highlight {
  font-weight: bold;
}
@media (max-width: 600px) {
  form {
      grid-template-columns: 1fr; /* One column layout on small screens */
  }

  .form-group.full-width,
  .form-group.submit-btn {
      grid-column: span 1; /* Span only 1 column on small screens */
  }
}
/* Media query for tablets and smaller screens */
@media (min-width: 768px) {
  .grid-container {
      grid-template-columns: auto auto; /* Two columns for medium devices */
  }
  .blue-bg
{
  height: auto;
}
.butn
{
  float: none;
}
#mobile-banner-content
{
    display: none;
}
.w-100
{
height: 70vh;
}
}

/* Media query for mobile devices */
@media (max-width: 480px) {
  .grid-container {
      grid-template-columns: auto; /* Single column for mobile devices */
      padding: 15px; /* Adjust padding for smaller screens */
  }
  ul.custom-icons li::before
  {
    left: 0px;
  }
  ul.custom-icons li {
    position: relative;
    padding-left: 50px;
}
.blue-bg
{
  height: auto;
}
.butn
{
  float: none;
}
.w-100 {
  height: 40vh;
}
.banner-content .mt-5
{
    margin-top: 0px !important;
}

#banner-content h1
{
font-size: 26px !important;    
}
#desktop-banner-content
{
    display:none;
}
#desktop
{
flex-direction: column-reverse;
    
}
#mobile-banner-content h1
{
font-size: 26px !important; 
text-align: center !important;
}
.mpadding
{
    padding-left: 25px;
    padding-right: 25px;
}
.grid-item.mt-5 {
    margin-top: 0px !important;
}

}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1320px;
  }
}
@media (min-width: 1200px) 
{
#mobile-banner-content
{
display: none;
}
.butn
{
  float: left;
}

}


