/* [project]/src/styles/aboutus/aboutus6.css [client] (css) */
.about-us6-section {
  color: #fff;
  background-color: #000;
  padding: 50px 0;
}

.about-us6-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-us6-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-us6-section .title {
  margin-bottom: 25px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
}

.about-us6-section .title .text-secondary {
  color: #54b248;
}

.about-us6-section .desc.centered {
  color: #eee;
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
}

.values-list-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  display: grid;
}

.value-item-card {
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-radius: 12px;
  flex-direction: column;
  gap: 15px;
  padding: 30px 25px;
  transition: all .4s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 25px #0000001a;
}

.value-item-card:before {
  content: "";
  opacity: 0;
  z-index: 5;
  background-color: #54b248;
  width: 6px;
  height: 100%;
  transition: opacity .2s;
  position: absolute;
  top: 0;
  right: 0;
}

.value-item-card:after {
  content: "";
  z-index: 5;
  background-color: #54b248;
  width: 0;
  height: 6px;
  transition: width .4s;
  position: absolute;
  bottom: 0;
  right: 0;
}

.value-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px #0003;
}

.value-item-card:hover:before {
  opacity: 1;
}

.value-item-card:hover:after {
  width: 100%;
}

.small-icon {
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
  display: flex;
}

.small-icon img {
  object-fit: contain;
  width: auto;
  height: 100%;
  transition: transform .3s;
}

.value-item-card:hover .small-icon img {
  transform: scale(1.1);
}

.value-item-card .subtitle {
  color: #54b248;
  margin-bottom: 5px;
  font-size: 26px;
  font-weight: 600;
}

.value-item-card .desc {
  color: #333;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .values-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .about-us6-header .desc.centered {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .about-us6-section .title {
    font-size: 32px;
  }

  .values-list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-item-card {
    text-align: center;
    align-items: center;
    padding: 25px 20px;
  }
}

/*# sourceMappingURL=src_styles_aboutus_aboutus6_css_65f1660e._.single.css.map*/