:root {
  --greenhouse-white: #fff;
  --greenhouse-border: #d8cfc7;
  --greenhouse-green: #00a443;
  --greenhouse-green-1: #007f33;
  --greenhouse-green-light: #5bd38c;
  --greenhouse-forest: #00402a;
  --greenhouse-black: #3a3735;
  --greenhouse-brown: #615d5a;
  --greenhouse-sand-1: #fffeff;
  --greenhouse-sand: #fff5ec;
  --greenhouse-sunset: #ff9c1a;
}

#greenhouse {
  width: 100%;
  max-width: 980px;
  padding: 11px 16px;
  margin: 20px auto;
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  background: var(--greenhouse-white);
  border: 1px solid var(--greenhouse-border) !important;
}

#greenhouse * {
  font-family: "IberPangeaText" !important;
  font-style: normal;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#greenhouse strong {
  font-family: "IberPangeaText Bold" !important;
  font-weight: normal;
}

#greenhouse h2,
#greenhouse h3,
#greenhouse h4 {
  margin-top: 0 !important;
}

#greenhouse ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#greenhouse ul li:before {
  content: none !important;
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#greenhouse img,
#greenhouse svg,
#greenhouse video {
  display: block;
  width: 100%;
}

#greenhouse .greenhouse_title {
  color: var(--greenhouse-green-1) !important;
  font-size: 32px;
  line-height: 1.125;
  font-style: normal;
  font-weight: normal;
  font-family: "IberPangea" !important;
  text-align: left;
  text-wrap: balance;
  margin-bottom: 15px;
}

#greenhouse .greenhouse_title strong {
  font-weight: normal;
  font-family: "IberPangea Bold" !important;
}

#greenhouse .greenhouse_description {
  color: var(--greenhouse-brown) !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  margin-bottom: 18px;
}

#greenhouse .greenhouse_info {
  width: 100%;
  border-radius: 15px;
  background: var(--greenhouse-sand);
  padding: 13px 17px;
  margin-bottom: 18px;
}

#greenhouse .greenhouse_info_title {
  color: var(--greenhouse-green-1) !important;
  font-size: 18px;
  line-height: 1.22;
  font-style: normal;
  font-weight: normal;
  font-family: "IberPangea Medium" !important;
  text-align: left;
  margin-bottom: 11px;
}

#greenhouse .greenhouse_info_item {
  color: var(--greenhouse-brown) !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: normal;
  text-align: left;
  position: relative;
  padding-left: 24px;
}

#greenhouse .greenhouse_info_item:after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: var(--greenhouse-brown);
  position: absolute;
  top: 8px;
  left: 10px;
}

#greenhouse .greenhouse_media {
  width: 100%;
}

#greenhouse .greenhouse_media video {
  display: none;
}

#greenhouse .greenhouse_media video.active {
  display: block;
}

#greenhouse .greenhouse_content {
  border-radius: 0px 0px 11.25px 11.25px;
  background: var(--greenhouse-green-light);
  padding: 12px;
}

#greenhouse .greenhouse_content_inner {
  border-radius: 11.25px;
  background: var(--greenhouse-sand);
  padding: 15px 12px;
}

#greenhouse .greenhouse_content_title {
  color: var(--greenhouse-green-1) !important;
  font-size: 18px;
  line-height: 1.22;
  font-style: normal;
  font-weight: normal;
  font-family: "IberPangea Medium" !important;
  text-align: left;
  margin-bottom: 6px;
}

#greenhouse .greenhouse_content_text {
  color: var(--greenhouse-brown) !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: normal;
  text-align: left;
  margin-bottom: 18px;
}

#greenhouse .greenhouse_content_graph {
  border-radius: 11.25px;
  background: var(--greenhouse-sand-1);
}

#greenhouse .greenhouse_content_graph-1 {
  margin-bottom: 18px;
}

@media (max-width: 699px) {
  #greenhouse .greenhouse_nav {
    width: 100%;
    margin-bottom: 18px;
    position: relative;
  }

  #greenhouse .greenhouse_nav_selected {
    width: 100%;
    border-radius: 30px;
    border: 1px solid var(--greenhouse-sand-1);
    background: var(--greenhouse-green-1) !important;
    padding: 6px 71px 6px 20px;
    color: var(--greenhouse-sand-1) !important;
    font-size: 16px;
    line-height: 1.25;
    font-style: normal;
    font-weight: 500;
    text-align: left;
    position: relative;
    cursor: pointer;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  #greenhouse .greenhouse_nav.active .greenhouse_nav_selected {
    border-radius: 30px 30px 30px 0;
  }

  #greenhouse .greenhouse_nav_selected:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--greenhouse-white);
    border-right: 1px solid var(--greenhouse-white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    right: 24px;
    margin-top: -2px;
  }

  #greenhouse .greenhouse_nav.active .greenhouse_nav_selected:before {
    transform: translateY(-50%) rotate(-45deg);
    margin-top: 4px;
  }

  #greenhouse .greenhouse_nav_selected:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: var(--greenhouse-white);
    position: absolute;
    top: 0;
    right: 50px;
  }

  #greenhouse .greenhouse_nav_list {
    display: none;
    width: calc(100% - 51px);
    transform: translateX(1px);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
  }

  #greenhouse .greenhouse_nav.active .greenhouse_nav_list {
    display: block;
  }

  #greenhouse .greenhouse_nav_item {
    display: block;
    padding: 12px 20px;
    border: 1px solid var(--greenhouse-green-1) !important;
    border-top: none;
    background: var(--greenhouse-sand-1);
    color: var(--greenhouse-forest) !important;
    font-size: 16px;
    line-height: 1.25;
    font-style: normal;
    font-family: "IberPangeaText Medium" !important;
    font-weight: normal;
    cursor: pointer;
  }

  #greenhouse .greenhouse_nav_item:last-child {
    border-radius: 0 0 15px 15px;
  }
}

@media (min-width: 700px) {
  #greenhouse {
    padding: 43px 32px;
  }

  #greenhouse .greenhouse_content_graph-1 {
    margin-bottom: 0;
  }

  #greenhouse .greenhouse_content_graph img {
    max-width: 441px;
    margin: 0 auto;
  }

  #greenhouse .greenhouse_content_graph-2 {
    display: none;
  }

  #greenhouse .greenhouse_description {
    margin-bottom: 20px;
  }

  #greenhouse .greenhouse_info {
    max-width: 440px;
    margin: 0 auto 20px;
    display: flex;
    flex-wrap: wrap;
  }

  #greenhouse .greenhouse_info_title {
    width: 100%;
  }

  #greenhouse .greenhouse_info_list {
    width: 50%;
  }

  #greenhouse .greenhouse_info_list:nth-of-type(1) {
    max-width: 172px;
    margin-right: 10px;
  }

  #greenhouse .greenhouse_nav {
    width: 100%;
    margin-bottom: 20px;
  }

  #greenhouse .greenhouse_nav_selected {
    display: none;
  }

  #greenhouse .greenhouse_nav_list {
    display: flex;
    gap: 20px;
  }

  #greenhouse .greenhouse_nav_item {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border-radius: 72px;
    border: 1px solid var(--greenhouse-green-1) !important;
    background: var(--greenhouse-sand-1);
    color: var(--greenhouse-forest) !important;
    font-size: 16px;
    line-height: 1.25;
    font-style: normal;
    font-family: "IberPangeaText Medium" !important;
    font-weight: normal;
    text-align: center;
    cursor: pointer;
    flex: 1;
  }

  #greenhouse .greenhouse_nav_item.active {
    color: var(--greenhouse-sand-1) !important;
    background-color: var(--greenhouse-green-1) !important;
  }
}
