@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
:root {
  --primary-color: #099747;
}

body {
  background-color: white;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }


/*NAVigation*/

.navbar {
    background: white;
    margin-top: 1em;
  }


.navbar .container {
    display: flex;
    flex-direction: row;
    place-content: space-between;
    align-items: center;
  }

 .login-cta {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--primary-color);
    padding: 1em;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
  
  .login-cta:before {
    content: "";
    position: absolute;
    border-radius: 0.5em;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  
   .login-cta:hover, .login-cta:focus, .login-cta:active {
    color: white;
  }
  
  .login-cta:hover:before, .login-cta:focus:before, .login:active:before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }

  /*end of NAVigation */

  section {
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: center;
      padding: 0;
      margin: 0;
  }

  a {
    color: grey;
    text-decoration: none;
  }


  h1, h2 {
      text-transform: uppercase;
      color: rgb(88, 88, 88);
      font-size: 2.5em;
  }

  .line {
    border-bottom: 2px solid var(--primary-color);
    width: 30%;
  }
/* first section */
  h1 {
      padding: 1em;
      margin: 20px;
  }

  h1 span {
    color: var(--primary-color);
}

  .mainwords {
    color: #424242;
    text-transform: uppercase;
    padding: 1em;
  }

  .subhead-one {
    font-size: 1.5em;
}
  .subhead-two {
    margin-bottom: 2em;
  }

.order-cta {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    background-color: var(--primary-color);
    border-radius: 0.5em;
    color: white;
    text-align: center;
    padding: 1em;
    cursor: pointer;
  }
  
.order-cta:hover {
    opacity: 0.8;
  }

  .see-more {
    text-transform: uppercase;
    margin-top: 20px;
    font-size: 0.5em;
  }
  /*scroll */
.scroll-container {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
            transform: scale3d(0.5, 0.5, 0.5);
    -webkit-animation: move 3s ease-out infinite;
            animation: move 3s ease-out infinite;
  }
  
  .chevron:first-child {
    -webkit-animation: move 3s ease-out 1s infinite;
            animation: move 3s ease-out 1s infinite;
  }
  
  .chevron:nth-child(2) {
    -webkit-animation: move 3s ease-out 2s infinite;
            animation: move 3s ease-out 2s infinite;
  }
  
  .chevron:before,
  .chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: var(--primary-color);
  }
  
  .chevron:before {
    left: 0;
    -webkit-transform: skew(0deg, 30deg);
            transform: skew(0deg, 30deg);
  }
  
  .chevron:after {
    right: 0;
    width: 50%;
    -webkit-transform: skew(0deg, -30deg);
            transform: skew(0deg, -30deg);
  }
  
  @-webkit-keyframes move {
    25% {
      opacity: 1;
    }
    33% {
      opacity: 1;
      -webkit-transform: translateY(30px);
              transform: translateY(30px);
    }
    67% {
      opacity: 1;
      -webkit-transform: translateY(40px);
              transform: translateY(40px);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
              transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
  }
  
  @keyframes move {
    25% {
      opacity: 1;
    }
    33% {
      opacity: 1;
      -webkit-transform: translateY(30px);
              transform: translateY(30px);
    }
    67% {
      opacity: 1;
      -webkit-transform: translateY(40px);
              transform: translateY(40px);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
              transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
  }
  
  @-webkit-keyframes pulse {
    to {
      opacity: 1;
    }
  }
  
  @keyframes pulse {
    to {
      opacity: 1;
    }
  }
/* end scroll */
/* end first section */
/* about section start */

.about {
      margin-top:120px;
      text-align: center;
      display: flex;

  }

.about p {
    color: #424242;
    padding: 1em;
    line-height: 2em;

  }

.hero-img {
    margin: 0;
    padding: 1em;
    align-content: center;
  }
  
.hero-img img {
    width: 900px;
    max-width: 100%;
  }
  
/* about section end */

/* features section start */
  .features {
    padding: 1em;
    text-align: center;
  }
  
  .features h2 {
    padding: 1.3em;
  }

  .features ul {
    padding-left: .1em;
    display: -ms-grid;
    display: grid;
    padding: 0;
    -ms-grid-columns: (minmax(19rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  }
  
  .features ul li {
    font-size: 1em;
    margin: 1em 0.5em 1em 0.5em;
    position: relative;
    text-align: center;
  }
  
  .features ul li:before {
    content: "";
    left: -2em;
    position: absolute;
    width: 20px;
    height: 20px;
  }
  
  .features ul li .feature-head {
    background: var(--primary-color);
    color: white;
    padding: 1em;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: 3em;
    margin-right: 3em;
  }
  
  .features ul li .feature-head-two {
    background: gray;
    color: white;
    padding: 1em;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: 3em;
    margin-right: 3em;
  }
  
  .features ul li p {
    margin: 0em 2em 0 2em;
    padding: 1em;
  }
  
  .features ul li img {
    padding: 1em;
    width: 450px;
    height: 300px;
  }

  /* features section end */

  /*contact start */
  .contact {
    padding: 1em;
  }

  .contact h2 {
    padding: 1.3 0 0.5 0 ;
  }
  
  .contact-left label {
    display: block;
    margin-bottom: 0.5em;
    text-align: left;
  }
  
 .contact-left input, textarea {
    width: 100%;
    padding: .8em;
    margin-bottom: 1em;
    border-radius: .3em;
    border: 1px solid gray;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  
  .contact-left input[type="submit"] {
    background: var(--primary-color);
    border-radius: 5em;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 1em;
    display: inline-block;
    padding: .8em 2em;
    width: unset;
    cursor: pointer;
  }

  /*contact end*/

  /*footer*/

  footer {
        align-items: center;
        text-align: center;
        justify-content: center;
        padding: 0;
        margin: 0px;
  }

  footer img{
    width: 200px;
    max-width: 100%;
  }
  

  @media only screen and (min-width: 1920px) {
      
   
}