.features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  position: relative;
  padding
}

.features__image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.features-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.feature {
  min-height: 273px;
  max-width: 264px;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items:center;
  border-radius: 10px;
  border: 1px solid #000;
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 4px 4px 0px 0px #000;
}

.feature-text,
.feature-text p,
.feature-text span{
  text-align: center;
  font-weight: 500;
  line-height: normal;
  font-size: 1.125rem;
  line-height: 24px;
}

.feature-image-container {
  width: 100px;
  height: 100px;
  padding: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-content {
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.features-content p {
  max-width: 1105px;
}

.features-content p,
.features-content p span {
  font-weight: 400;
  font-size: 1.5rem;
}

.features-description {
  margin-top: -20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center; 
  position: relative;
}

.features-subcontent {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center; 
  max-width: 880px;
}

.features-bg-image--right,
.features-bg-image--left {
  position: absolute;
}

.features-bg-image--left {
  left: -1%;
  bottom: -2%;
}

.features-bg-image--right {
  right: 3%;
  bottom: 17%;
}

@media screen and (max-width: 1440px) {
  .features-bg-image--right,
  .features-bg-image--left {
    display: none;
  }
}


@media screen and (max-width: 767px) {
  .features__image {
    display: none;
  }
  .features {
    gap: 20px;
  }
  .features-content h2 {
    letter-spacing: -.1px;
  }
  .features-content p {
    max-width: 100%;
  }
  .features-content p,
  .features-content p span {
    font-size: .875rem;
    font-weight: 400;
  }
  
  .feature {
    max-width: 48%;
    width: 100%;
    min-height: 221px;
    height: 100%;
    padding: 14px 14px;
    gap: 12px;
  }
  
  .feature-text,
  .feature-text p ,
  .feature-text span {
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: -.28px !important;
  }
  
  .features-container {
    gap: 14px;
    justify-content: space-between;
  }
  
  .feature-image-container {
    padding: 12px;
    width: 60px;
    height: 60px;
  }
  
  .feature-image {
    width: 36px;
    height: 36px;
  }
  
  .features-content {
    gap: 20px;
  }
  
  .features-description {
    margin-top: 0;
    gap: 30px;
  }
  
  .features-subcontent {
    gap: 10px;
  }
  
  .features-subcontent div,
  .features-subcontent p,
  .features-subcontent span {
    font-size: 14px !important;
  }
} 