/* featureSec */
.featureRow {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.featureRow .featureCol {
  width: calc(33.3333% - 20px);
}
.featureRow.featureRow--2 {
  gap: 48px;
}
.featureSec.sectionPaddingSmall.darkTheme
{
	padding:0px;
}
.featureRow.featureRow--2 .featureCol {
  width: calc(50% - 24px);
}
.featureBox .iconWrapper {
  width: 62px;
  height: 62px;
  background-color: var(--primaryBrand300);
  margin-bottom: 24px;
  position: relative;
}
.featureBox .iconWrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.featureBox .iconBadge {
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  overflow: hidden;
  z-index: 1;
}
.featureBox .iconBadge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.featureBox .iconWrapper:has(.iconBadge) {
  margin-bottom: 32px;
}
.featureBox .headingM {
  margin-bottom: 16px;
  color: var(--neutral900);
}
.featureBox .paragraphL {
  color: var(--neutral700);
  width: 365px;
  max-width: 100%;
}
.featureSec.darkTheme .featureBox .paragraphL 
{
	width: 100%;
}

/* Dark Theme */
.featureSec.darkTheme {
  background-color: var(--secondaryBrand);
}
.featureSec.darkTheme .featureBox .iconWrapper {
  background-color: var(--secondaryBrand700);
}
.featureSec.darkTheme .featureBox .headingM {
  color: var(--white);
}
.featureSec.darkTheme .featureBox .paragraphL {
  color: var(--neutral);
}
/* featureSec end */

@media (max-width: 991px) {
  /* featureSec */
  .featureRow .featureCol,
  .featureRow .featureCol {
    width: calc(50% - 15px);
  }
  .featureRow.featureRow--2 .featureCol {
    width: calc(50% - 15px);
  }
  .featureRow.featureRow--2 {
    gap: 25px;
  }
  /* featureSec end */
}
@media (max-width: 767px) {
  .featureRow.featureRow--2 .featureCol {
    width: 100%;
  }
  .featureRow.featureRow--2 {
    gap: 32px;
  }
  .featureSec.darkTheme .featureRow.featureRow--2 {
    position: relative;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .featureSec.darkTheme .featureRow.featureRow--2::before,
  .featureSec.darkTheme .featureRow.featureRow--2::after {
    content: "";
    position: absolute;
    left: -15px;
    right: -15px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
  }
  .featureSec.darkTheme .featureRow.featureRow--2::before {
    top: 0;
  }
  .featureSec.darkTheme .featureRow.featureRow--2::after {
    bottom: 0;
  }
}

@media (max-width: 575px) {
  /* featureSec */
  .featureRow,
  .featureRow.featureRow--2 {
    gap: 25px;
  }
  .featureRow .featureCol,
  .featureRow.featureRow--2 .featureCol {
    width: 100%;
  }
  .featureBox .iconWrapper {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }
  .featureBox .iconBadge {
    width: 36px;
    height: 36px;
    bottom: -6px;
    left: -6px;
  }
	.featureSec.darkTheme .featureRow {
    position: relative;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .featureSec.darkTheme .featureRow::before,
  .featureSec.darkTheme .featureRow::after {
    content: "";
    position: absolute;
    left: -15px;
    right: -15px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
  }
  .featureSec.darkTheme .featureRow::before {
    top: 0;
  }
  .featureSec.darkTheme .featureRow::after {
    bottom: 0;
  }
  /* featureSec end */
}
