  * {
      box-sizing: border-box;
  }

  /* The sticky class is added to the header with JS when it reaches its scroll position */
  /* .navbar-content{
    background-color: #34AD54;
  } */

  /* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */

  .btn {
      background-color: #2d8f49;
      border: #2d8f49;
  }

  .btn:hover {
      color: #2d8f49;
  }

  /* logo css */

  .logo {
      width: 100px;
  }

  .banner-img {
      max-width: 100%;
      height: 100%;
  }


  /*** Section Title ***/
  .section-title::before {
      position: absolute;
      content: "";
      width: 150px;
      height: 5px;
      left: 0;
      bottom: 0;
      background: #28a745;
      border-radius: 2px;
  }

  .section-title.text-center::before {
      left: 50%;
      margin-left: -75px;
  }

  .section-title.section-title-sm::before {
      width: 90px;
      height: 3px;
  }

  .section-title::after {
      position: absolute;
      content: "";
      width: 6px;
      height: 5px;
      bottom: 0px;
      background: #FFFFFF;
      -webkit-animation: section-title-run 5s infinite linear;
      animation: section-title-run 5s infinite linear;
  }

  .section-title.section-title-sm::after {
      width: 4px;
      height: 3px;
  }

  .section-title.text-center::after {
      -webkit-animation: section-title-run-center 5s infinite linear;
      animation: section-title-run-center 5s infinite linear;
  }

  .section-title.section-title-sm::after {
      -webkit-animation: section-title-run-sm 5s infinite linear;
      animation: section-title-run-sm 5s infinite linear;
  }

  @-webkit-keyframes section-title-run {
      0% {
          left: 0;
      }

      50% {
          left: 145px;
      }

      100% {
          left: 0;
      }
  }

  @-webkit-keyframes section-title-run-center {
      0% {
          left: 50%;
          margin-left: -75px;
      }

      50% {
          left: 50%;
          margin-left: 45px;
      }

      100% {
          left: 50%;
          margin-left: -75px;
      }
  }

  @-webkit-keyframes section-title-run-sm {
      0% {
          left: 0;
      }

      50% {
          left: 85px;
      }

      100% {
          left: 0;
      }
  }


  .images {
      margin-right: 650px;
  }


  /*** Service ***/
  .service-item {
      position: relative;
      height: 300px;
      padding: 0 30px;
      transition: .5s;
  }

  .service-item .service-icon {
      margin-bottom: 30px;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--primary);
      border-radius: 2px;
      transform: rotate(-45deg);
  }

  .service-item .service-icon i {
      transform: rotate(45deg);
  }


  .text-primary {
      color: #28a745 !important;
  }

  .text-uppercase {
      text-transform: uppercase !important;
  }

  .bg-dark {
      background-color: #174417 !important;
  }

  a {
      list-style-type: none;
      text-decoration: none;
  }

  .row-cols-lg-4>* {
      flex: 0 0 auto;
      width: 33%;
  }


  .enquire-text {
      color: #FFFFFF;
  }

  #container {
      padding: 10px;
      justify-content: center;
      align-items: center;
  }

  .form-container {
      max-width: 700px;
      width: 100%;
      background: #f3f3f3;
      padding: 20px 30px;
      border-radius: 5px;
      margin-left: 401px;
  }

  .form-container .titles {
      font-size: 25px;
      font-weight: 500;
      position: relative;
  }

  .form-container .titles::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      width: 30px;
      background: #2d8f49;
  }

  form .user-details {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin: 20px 0 12px 0;
  }

  form .user-details .input-box {
      margin-bottom: 15px;
      width: calc(100% / 2 - 20px);
  }

  .user-details .input-box .details {
      display: block;
      font-weight: 500;
      margin-bottom: 5px;
  }

  .user-details .input-box input {
      height: 45px;
      width: 100%;
      outline: none;
      border-radius: 5px;
      border: 1px solid #cccc;
      padding-left: 15px;
      font-size: 16px;
      border-bottom-width: 2px;
      transition: all 0.3s ease;
  }

  .user-details .input-box input:focus,
  .user-details .input-box input:valid {
      border-color: #28a745;
  }

  form .gender-details .gender-title {
      font-size: 20px;
      font-weight: 500;
  }

  form .gender-details .category {
      display: flex;
      width: 80%;
      margin: 14px 0;
      justify-content: space-between;
  }

  .gender-details .category label {
      display: flex;
      align-items: center;
  }

  .gender-details .category .dot {
      height: 18px;
      width: 18px;
      background: #d9d9d9;
      border-radius: 50%;
      margin-right: 10px;
      border: 5px solid transparent;
      transition: all 0.3 ease;
  }

  #dot-1:checked~.category .one,
  #dot-2:checked~.category .two,
  #dot-3:checked~.category .three {
      border-color: #d9d9d9;
      background: #2d8f49;
  }

  form input[type="radio"] {
      display: none;
  }

  form .button {
      height: 45px;
      margin: 45px 0;
  }

  form .button input {
      height: 100%;
      width: 100%;
      outline: none;
      color: #fff;
      border: none;
      font-size: 18px;
      font-weight: 500;
      border-radius: 5px;
      letter-spacing: 1px;
      background: linear-gradient(135deg, #28a745, #6ea17c);
  }


  .register-text {
      color: black;
      font-weight: 800;
  }

  .register-text:hover {
      color: black;
  }

  .form-background {
      background-color: #034415 !important;
  }

  .flex {
      display: flex;
  }

  .grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-gap: 10px;
      margin: 50px;
  }

  .book {
      margin-top: 5%;
      width: 100%;
      height: 50vh;
      color: white;
  }

  .book .input {
      background-color: #245a37;
      padding: 20px 20px 40px 20px;
  }

  input {
      width: 100%;
      padding: 15px;
      border: 2px solid #245a37;
      outline: none;
      background: #90c69e;
      margin-top: 20px;
      color: black;
  }

  ::placeholder {
      color: black;
  }

  /* .book .search {
    background: #2d8f49;
    padding: 20px;
  } */

  .top {
    margin-top: 80px;
  }

  .mtop {
    margin-top: 40px;
  }

  .heading {
    text-align: center;
  }

  .heading h5 {
    font-weight: 500;
    letter-spacing: 5px;
    color: #cc8c18;
    padding-top: 20px;
    text-transform: uppercase;
  }

  .heading h2 {
    color: #24416b;
    font-size: 45px;
    font-family: serif;
    font-weight: bold;
    margin: 10px 0 20px 0;
  }

  .left, .right {
    width: 50%;
  }

  h3 {
    font-size: 35px;
    font-family: serif;
    color: #24416b;
    margin-bottom: 20px;
  }

  p {
    line-height: 30px;
    /* color: #a4a4a4; */
    margin-bottom: 20px;
    font-size: 15px;
  }

  .about {
    position: relative;
    padding-bottom: 70px;
  }

  .about .right {
    position: relative;
  }

  .about .right::after {
    content: '';
    position: absolute;
    top: 0%;
    left: 0;
    background: #248d32;
    width: 95%;
    height: 450px;
    z-index: -1;
    margin: 50px;
  }
/* 

  .about::after {
    content: '';
    position: absolute;
    top: -5%;
    left: 0;
    background-image: url("imgs/line1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 50px;   
  }

  .about::before {
    content: '';
    position: absolute;
    bottom: -5%;
    left: 0;
    background-image: url("imgs/line2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 50px;
  } */

  .head {
    color: #248d32;
  }

  .contain {
    background-image: url("imgs/background3.jpg");
    height: 80vh;
  }

































  #back-to-top {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #174417;
      color: #fff;
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
  }

  #back-to-top:hover {
      background-color: #28a745;
  }