  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }

  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

  .container {
    width: 100%;
    margin: auto;
  }

  .row {
    display: flex;
  }

  body {
    font-family: "poppins";
    margin: 0;
    overflow-x: hidden;
    padding-top: 66px;
  }
  html{
    overflow-x: hidden;
  }

  .banner {
    position: absolute;
    bottom: 0;
    background-color: #0F3B4D;
    min-height: 219px;
    padding: 1rem 8rem;

    img {
      width: 49%;
      align-self: end;
    }
  }

  #top-section,
  #middle-section,
  #bottom-section {
    img {
      width: 100%;
      height: auto;
    }
  }

  #top-section {

    .bgImg {
      position: relative;
    }

    h1 {
      font-family: Poppins;
      font-size: 44px;
      font-weight: 600;
      line-height: 42px;
      letter-spacing: 1px;
      color: #A3CD39;
      text-align: left;
      text-transform: uppercase;
    }

    p {
      color: #ffffff;
    }

    button {
      width: 206px;
      height: 53px;
      border-radius: 8px;
      font-family: Poppins;
      font-size: 24px;
      font-weight: 500;
      line-height: 42px;
      text-align: center;
      color: #0F3B4D;
      background-color: #A3CD39;
      border: none;
      text-transform: uppercase;
    }

    button:hover {
      background-color: #89B231;
      color: #FFFFFF;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }

  }


  #middle-section {
    padding: 30px 8%;

    h6,
    p {
      font-family: Poppins;
      font-size: 32px;
      font-weight: 600;
      line-height: 42px;
      letter-spacing: 1px;
      text-align: center;
      text-transform: uppercase;
      color: #0F3B4D;
    }

    p {
      font-size: 16px;
      font-weight: 400;
      line-height: 27px;
      width: 60%;
    }
  }

  #bottom-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/bottom-section.png') no-repeat center center;
    background-size: cover;
  }

  #bottom-section .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  #bottom-section .banner {
    /* position: absolute; */
    /* bottom: 0; */
    width: 100%;
    background-color: rgba(15, 59, 77, 0.8);
    /* padding: 2rem 5%; */
    display: flex;
    min-height: 5vh;
    align-items: flex-end;
    justify-content: center;
  }

  #bottom-section .banner p {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #FFFFFF;
    margin-top: 1rem;
    text-transform: uppercase;
  }

  #bottom-section .banner h1 {
    font-family: 'Poppins';
    font-size: 32px;
    font-weight: 600;
    color: #A3CD39;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }

  #bottom-section .banner .d-flex {
    gap: 1rem;
    justify-content: center;
  }

  #bottom-section .banner .d-flex .button {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 27px;
    color: #A3CD39;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;

  }

  #bottom-section .banner .d-flex .button:hover {
    background-color: #A3CD39;
    color: #0F3B4D;
  }


  .fade-in {
    animation: fadeIn 3s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }







  /* Responsive design for small screens */
  @media (max-width: 768px) {
    .banner {
      padding: 0.5rem;
      display: flex;
      align-items: end;
      min-height: auto;
    }

    #top-section {
      .bgImg {
        img {
          width: 100%;
          height: 60vh;
        }
      }

      h1 {
        font-size: 28px;
        line-height: 32px;
        text-align: center;
      }

      p {
        font-size: 12px;
        text-align: center;
      }

      button {
        width: 120px;
        font-size: 16px;
        line-height: 20px;
        padding: 0.5rem;
      }
    }

    #middle-section {
      margin-top: 2rem;

      h6,
      p {
        font-size: 18px;
        line-height: 22px;
      }

      p {
        font-size: 12px;


      }
    }

    #bottom-section {
      height: 50vh;

      .banner {
        h1 {
          font-size: 20px;
          line-height: 24px;
          margin-bottom: 1rem;
        }

        p {
          font-size: 12px;
          line-height: 16px;
          margin-bottom: 0.5rem;
        }

        .d-flex span {
          font-size: 10px;
          padding: 0.2rem 0.5rem;
          line-height: 14px;
        }
      }
    }
  }


  @media (max-width: 480px) {
    .banner {
      display: flex;
      align-items: end;
      min-height: auto;

      img {
        width: 80%;
      }
    }

    #top-section {
      .bgImg {
        img {
          width: 100%;
          height: 60vh;
        }
      }

      h1 {
        font-size: 16px;
        line-height: 20px;
      }

      button {
        width: 100px;
        font-size: 14px;
        line-height: 18px;
        padding: 0.4rem;
      }
    }

    #middle-section {
      margin-top: 2rem;

      h6,
      p {
        font-size: 16px;
        line-height: 20px;
      }

      p {
        font-size: 12px;

        width: 100%;

      }
    }

    #bottom-section {
      height: 50vh;

      .banner {
        h1 {
          font-size: 18px;
          line-height: 22px;
          margin-bottom: 0.8rem;
        }

        p {
          font-size: 10px;
          line-height: 14px;
          margin-bottom: 0.4rem;
        }
      }
    }

  }





  main {
    min-height: 100%;
  }