:root {
  --theme-font: "Poppins", sans-serif;
  --font-color: #4D4A4A;
  --theme-color: #214538;
  --theme-color-alt: #5FE0B7;
  --theme-color-grey: #EFEEE7;
  --theme-color-light-grey: #f5f5f5;
  --theme-color-light: #fff;
}

body {
  font-size: 16px;
  font-family: var(--theme-font);
  color: var(--font-color);
  line-height: 27px;
  font-weight: 300;
}

.container {
  max-width: 1140px !important;
  margin-left: auto;
  margin-right: auto;
}

a {
  text-decoration: none !important;
  color: var(--theme-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--theme-color);
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 2.188rem;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 1.375rem;
}

h6 {
  font-size: 1.25rem;
}

.btn_custom {
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  transition: 0.5s all ease-in-out;
}

.btn_custom_outline_success {
  background-color: transparent;
  border: 1px solid var(--theme-color-alt);
  color: var(--theme-color-alt);
}
.btn_custom_outline_success:hover {
  background-color: var(--theme-color-alt);
  color: var(--theme-color);
  border-color: var(--theme-color-alt);
}

.btn_custom_success {
  background-color: var(--theme-color-alt);
  border: 1px solid var(--theme-color-alt);
  color: var(--theme-color);
}
.btn_custom_success:hover {
  background-color: transparent;
  color: var(--theme-color-alt);
}

/******************padding*****************************/
.py-6 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.py-7 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.mb-6 {
  margin-bottom: 80px;
}/*# sourceMappingURL=global.css.map */