:root {
  --energyst-white: #fff;
  --energyst-green: #00a443;
  --energyst-green-1: #007f33;
  --energyst-sand: #FFF5EC;
  --energyst-sand-1: #fffeff;
  --energyst-sand-3: #D8CFC7;
  --energyst-sand-6: #615D5A;
  --energyst-sand-7: #3A3735;
  --energyst-sunset: #FF9C1A;
  --energyst-forest: #00402a;
}

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

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

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

#energyst h2 {
  margin-top: 0 !important;
}

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

#energyst ul li:before {
  content: none !important;
  display: none !important;
}

#energyst img {
  display: block;
  width: 100%;
}

#energyst .energyst_title {
  color: var(--energyst-green-1) !important;
  font-size: 32px;
  line-height: 1.125;
  font-family: 'IberPangea' !important;
  font-style: normal;
  font-weight: normal;
  text-align: left;
  margin-bottom: 24px;
}

#energyst .energyst_title strong {
  font-family: 'IberPangea Bold' !important;
  font-style: normal;
  font-weight: normal;
}

#energyst .energyst_content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

#energyst .energyst_item {
  position: relative;
  padding-top: 34px;
  width: 100%;
}

#energyst .energyst_item_info {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 15px);
  max-width: 222px;
  z-index: 1;
}

#energyst .energyst_item_title {
  border-radius: 16px;
  background: var(--energyst-green-1);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  color: var(--energyst-sand-1) !important;
  font-family: "IberPangea Medium" !important;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.1;
  text-align: center;
  margin: 0 auto 8px;
}

#energyst .energyst_item_title strong {
  font-family: "IberPangea Bold" !important;
  font-style: normal;
  font-weight: normal;
}

#energyst .energyst_item_text {
  border-radius: 16px;
  background: var(--energyst-white);
  padding: 16px;
  color: var(--energyst-forest) !important;
  font-family: "IberPangeaText" !important;
  font-size: 12px;
  line-height: 1.2;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  text-wrap: balance;
}

#energyst .energyst_item picture {
  display: block;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 0;
}

@media (min-width: 700px) {

  #energyst {
    padding: 32px;
  }
  
  #energyst .energyst_item-2 {
    width: calc(50% - 12px);
  }
  
  #energyst .energyst_item-3 {
    width: calc(50% - 12px);
  }

}