:root {
  --cp-ff-body: 'Inter', sans-serif;
  --cp-ff-heading: 'Inter Tight', sans-serif;
  --cp-ff-p: 'Inter', sans-serif;
  --cp-fw-normal: normal;
  --cp-fw-thin: 100;
  --cp-fw-elight: 200;
  --cp-fw-light: 300;
  --cp-fw-regular: 400;
  --cp-fw-medium: 500;
  --cp-fw-sbold: 600;
  --cp-fw-bold: 700;
  --cp-fw-ebold: 800;
  --cp-fw-black: 900;
  --cp-fs-body: 18px;
  --cp-fs-p: 18px;
  --cp-fs-h1: 65px;
  --cp-fs-h2: 56px;
  --cp-fs-h3: 24px;
  --cp-fs-h4: 20px;
  --cp-fs-h5: 18px;
  --cp-fs-h6: 14px;
  --cp-color-common-white: #ffffff;
  --cp-color-common-black: #000000;
  --cp-color-heading-primary: #10551F;
  --cp-color-text-body: #383838;
  --cp-color-text-black: #111111;
  --cp-color-theme-primary: #00811F;
  --cp-color-theme-secondary: #C7DC49;
  --cp-color-bg-1: #F2F9F6;
  --cp-color-grey-1: #F2F9F6;
  --cp-color-border-1: #B5CBC5;
}

/**----------------------------------------
    START: Who We CSS
----------------------------------------*/
.who-we-section {
  position: relative;
  z-index: 1;
}
.who-we-section .image-wrap {
  position: relative;
  float: right;
  margin-right: 80px;
}
.who-we-section .image-wrap .image-1 {
  width: 872px;
  height: 707px;
}
.who-we-section .image-wrap .image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 10px 10px;
}
.who-we-section .author-wrap {
  background-color: var(--cp-color-theme-primary);
  padding: 40px 40px 32px;
  border-radius: 10px;
  width: max-content;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1399px) {
  .who-we-section .author-wrap {
    margin-right: 0;
  }
}
.who-we-section .author-wrap .desc {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 40px;
  color: var(--cp-color-heading-primary);
}
.who-we-section .author-wrap .name {
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 6px;
}
.who-we-section .author-img {
  position: relative;
  width: max-content;
}
.who-we-section .author-img img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid var(--cp-color-common-white);
}
.who-we-section .author-img .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--cp-color-heading-primary);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--cp-color-common-white);
  top: 0;
  left: 55px;
  border: 2px solid var(--cp-color-common-white);
}

.who-we-content .list {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 44px;
}
.who-we-content .list li {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
  font-family: var(--cp-ff-heading);
  color: var(--cp-color-heading-primary);
}
.who-we-content .list li i {
  margin-right: 10px;
}

.who-we-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.who-we-item {
  background-color: rgba(16, 85, 31, 0.1);
  padding: 28px 32px;
  border-radius: 10px;
  border: 1px solid rgba(16, 85, 31, 0.1);
}
.who-we-item .icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 129, 31, 0.1);
  border: 1px solid rgba(16, 85, 31, 0.1);
  color: var(--cp-color-heading-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.who-we-item .title {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px;
}

/* !END: Who We CSS */