/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #527e60;
  --secondary-color: #cbe2b5;
  --section-bg-color: #e8efcf;
  --custom-btn-bg-color: #cbe2b5;
  --custom-btn-bg-hover-color: #86ab89;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #e7fbe6;
  --link-hover-color: #86ab89;
  --title-font-color: #674636;

  --body-font-family: "LXGW WenKai Mono TC", monospace;
  --title-font-family: "Kosugi Maru", sans-serif;

  --h1-font-size: 58px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --menu-font-size: 20px;
  --btn-font-size: 18px;
  --copyright-font-size: 18px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 800;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

h1,
.h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--title-font-color);
}

h3,
.h3 {
  font-size: var(--h3-font-size);
}
.navbar {
  background: transparent;
  border-bottom: 1px solid #a1d6b2;
  z-index: 9;
}

.list-group-item.active {
  color: var(--primary-color);
  background-color: var(--custom-btn-bg-color);
  border-color: var(--custom-btn-bg-color);
}

.alert-main {
  --bs-alert-color: var(--primary-color);
  --bs-alert-bg: var(--section-bg-color);
  --bs-alert-border-color: var(--custom-btn-bg-color);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-bg {
  background-color: var(--section-bg-color);
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: linear-gradient(15deg, #637e76 0%, #e7fbe6 100%);
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-overlay {
  background-image: linear-gradient(15deg, #78ac88 0%, #f1f3c2 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer-link {
  color: var(--primary-colorlor);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 100px 100px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
}

/*---------------------------------------
  Customize        
-----------------------------------------*/
#business-items {
  list-style: none;
}

#business-items i {
  width: 10%;
}

#business-items li {
  color: #233528;
  line-height: 2.5rem;
}
