/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  
  /*========== Colors ==========*/
  --first-color: hsl(36, 72%, 48%);
  --first-color-alt: hsl(36, 72%, 44%);
  --black-color: hsl(206, 12%, 12%);
  --card-color: hsl(0, 0%, 90%);
  --title-color: hsl(206, 12%, 12%);
  --text-color: hsl(206, 4%, 42%);
  --text-color-light: hsl(206, 4%, 75%);
  --body-color: hsl(206, 4%, 97%);
  --container-color: #fff;

  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .738rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-bold);
}

h1, h2, h3, p {
  line-height: 140%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

/*=============== REUSABLE CSS CLASSES ===============*/

.grid {
  display: grid;
  gap: 1.5rem;
}
.section {
  padding: 4.5rem 0 2rem !important;
}


.section-title {
  position: relative;
  font-size: var(--h1-font-size);
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
}

.section-title::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 3px;
  height: 25px;
  background-color: var(--first-color);
}



/*===============  ===============*/

/* .feature-icon i{
  display: inline-block;
  line-height: 1 !important;
  font-size: 2.85em !important;
  color: #4a8b71 !important;
}
.feature-info-wrap h5{
    font-size: 20px;
    color: #333333;
    text-align: center;

} */
.feature-icon i{
  display: inline-block;
  line-height: 1 !important;
  font-size: 1.5em !important;
  color: #008dd2 !important;
}
.feature-info-wrap h5{
    font-size: 20px;
    color: #333333;
    text-align: center;

}
/*================= ===================*/
.contact-us-form{
  background-color: #fff;
}
.contact-us-form h2{
    font-size: 3.5rem;
    color: #333333;
    line-height: 1.1;
    text-align: left;
}
.input-group input,
.input-group textarea
{
    line-height: 1.1;
    font-size: 1rem;
    font-family: inherit;
    font-weight: inherit;
    color: rgb(159, 159, 159);
    background: 0px 0px;
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 1px solid rgb(183, 183, 183);
    border-radius: 0px;
    padding-top: 2rem;
    padding-bottom: 1.25rem;
    appearance: none;
    outline: none !important;
    background: transparent;
    transition: background-color 0.3s ease-in-out 0s, border-color 0.3s ease-in-out 0s, color 0.3s ease-in-out 0s;
}
.register-form .btn-primary {
  color: #fff;
  background-color: #4a8b71;
  border-color: #4a8b71;
}
@media (max-width: 767px) {
  .contact-us-form h2{
    font-size: 2rem !important;
}
}