/* Start Three Column Lists */

.three-column-lists {
  position: relative;
  padding: 110px var(--sidePadding) 75px;
  background: var(--green);
}
.three-column-lists::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(
    360deg,
    rgba(160, 197, 57, 0) 51.2%,
    rgba(12, 99, 47, 0.8) 81.47%
  );
  z-index: 1;
  opacity: 0.95;
}
.three-column-lists__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 62.5%;
  object-fit: cover;
  clip-path: polygon(100% 0, 100% 86%, 55% 80%, 0 86%, 0 0);
}
.three-column-lists__wrapper {
  max-width: var(--maxScreenWidth);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.three-column-lists__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 300px;
  gap: 50px;
}
.three-column-lists__header h2 {
  font-size: var(--textFontSizeL);
  text-transform: uppercase;
  line-height: 1;
  max-width: 508px;
  color: white;
}
.three-column-lists__content {
  max-width: 754px;
  font-size: var(--textFontSizeS);
  font-family: var(--secondaryFont);
}
.three-column-lists__content strong {
  font-weight: 600;
}
.three-column-lists__content.three-column-lists__content-bottom {
  text-align: center;
  max-width: 100%;
  margin: 35px auto 0;
}
.three-column-lists__list {
  display: flex;
  gap: var(--sidePadding);
}
.three-column-lists__item {
  width: 100%;
}
.three-column-lists__item-header {
  background: var(--green3);
  height: 225px;
  text-align: center;
  padding: 35px var(--sidePadding);
  margin-bottom: 70px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 56px), 0% 100%);
}
.three-column-lists__list .three-column-lists__title {
  font-size: var(--textFontSizeM);
  font-family: var(--secondaryFont);
  font-weight: 600;
  color: var(--green);
  max-width: 220px;
  margin: 0 auto 10px;
}
.three-column-lists__content {
  font-size: var(--textFontSizeS);
  font-family: var(--secondaryFont);
  color: white;
  text-align: justify;
}
.three-column-lists__sublist {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.three-column-lists__sublist li {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: start;
}
.three-column-lists__sublist li svg {
  --iconColor1: var(--green3);
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.three-column-lists__subitem-content {
  font-size: var(--textFontSizeS);
  font-family: var(--secondaryFont);
  color: white;
  text-align: justify;
  width: calc(100% - 50px);
}
.three-column-lists__footer {
  text-align: center;
}
.three-column-lists__footer .button--primary {
  text-transform: uppercase;
  margin-top: 25px;
}
.three-column-lists__footer .button--primary:hover {
  background: white;
  color: var(--green3);
}
.three-column-lists__footer .button--primary:hover::after{
  background: var(--green3);
}
.three-column-lists__footer .button--primary:hover span{
  background: var(--green3);
}
.three-column-lists__footer .button--primary:hover span svg{
  filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
  .three-column-lists__bg-image {
    height: 57%;
    clip-path: polygon(100% 0, 100% 85%, 50% 77%, 0 85%, 0 0);
  }
  .three-column-lists__header {
    flex-direction: column;
    margin-bottom: calc(12vw + 80px);
  }
  .three-column-lists__header h2 {
    text-align: center;
    margin: 0 auto;
  }
  .three-column-lists__content {
    max-width: 800px;
  }
}
@media (max-width: 768px) {
  .three-column-lists__bg-image {
    height: 450px;
    clip-path: polygon(100% 0, 100% 100%, 50% 90%, 0 100%, 0 0);
  }
  .three-column-lists__header {
    margin-bottom: 50px;
  }
  .three-column-lists__list {
    flex-direction: column;
    max-width: 460px;
    margin: 0 auto;
    gap: 80px;
  }
  .three-column-lists__item-header {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0% 100%);
    height: 190px;
    margin-bottom: 35px;
  }
  .three-column-lists__content.three-column-lists__content-bottom {
    margin-top: 50px;
  }
}

/* End Three Column Lists */
