/* aboutFeatureSec */
.aboutFeatureSec .aboutUsSec {
  padding-bottom: 0px;
}

/* aboutUsSec */
.aboutUsSec .containerDS {
  display: flex;
  align-items: center;
  gap: 80px;
}

.aboutUsSec .leftImg {
  width: calc(52% - 40px);
}

.aboutUsSec .leftImg img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

/* Video Embed */
.aboutUsSec .leftImg .videoEmbed {
  position: relative;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  border-radius: 24px;
  overflow: hidden;
}

.aboutUsSec .leftImg .videoEmbed iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

/* Self Hosted Video */
.aboutUsSec .leftImg video {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}

/* Right Content */
.aboutUsSec .rightCN {
  width: calc(48% - 40px);
}

.aboutUsSec .rightCN .headingXL {
  color: var(--neutral900);
  margin-bottom: 40px;
	letter-spacing:-2px;
}

.aboutUsSec .rightCN p {
  color: var(--neutral700);
  font-size: 18px;
  font-family: var(--fontParagraphs);
  margin-bottom: 30px;
}

.aboutUsSec .rightCN p:last-child {
  margin-bottom: 0px;
}

.aboutUsSec .rightCN ul,
.aboutUsSec .rightCN li {
  list-style: none;
}

.aboutUsSec .rightCN li {
  color: var(--neutral700);
  margin-bottom: 20px;
  font-size: 20px;
  font-family: var(--fontParagraphs);
  position: relative;
  padding-left: 44px;
}

.aboutUsSec .rightCN li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0px;
  width: 24px;
  height: 24px;
  background-image: url(../images/rightTickGreenIcon.png);
  background-repeat: no-repeat;
  background-position: center;
}

.aboutUsSec .buttonsWrapper {
  gap: 16px;
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.aboutUsSec p + .buttonsWrapper {
  margin-top: 10px;
}

/* Dark Theme Variant */
.aboutFeatureSec.darkTheme {
  background-color: var(--secondaryBrand);
}

.aboutFeatureSec.darkTheme .rightCN .headingXL {
  color: var(--white);
}

.aboutFeatureSec.darkTheme .rightCN li {
  color: var(--white);
}

.aboutFeatureSec.darkTheme .rightCN li::before {
  filter: grayscale(1) brightness(10);
}

/* Flipped Layout */
.aboutUsSec.flipSec .rightCN {
  order: -1;
}

.aboutFeatureSec .aboutUsSec .rightCN  .buttonsWrapper .offsetOutlineBtn{
  color: var(--wp--preset--color--black);
}
.aboutFeatureSec.darkTheme .aboutUsSec .rightCN  .buttonsWrapper .offsetOutlineBtn{
  color: var(--white);
}
/* Responsive - 1199px */
@media (max-width: 1199px) {
  .aboutUsSec .containerDS {
    gap: 40px;
    align-items: flex-start;
  }

  .aboutUsSec .leftImg {
    width: calc(52% - 20px);
  }

  .aboutUsSec .rightCN {
    width: calc(48% - 20px);
  }

  .aboutUsSec .buttonsWrapper{
		flex-wrap:wrap;
	}
}

/* Responsive - 767px */
@media (max-width: 767px) {
  .aboutUsSec .containerDS {
    flex-wrap: wrap;
  }

  .aboutUsSec .leftImg,
  .aboutUsSec .rightCN {
    width: 100%;
  }
}

/* Responsive - 575px */
@media (max-width: 575px) {
  .aboutUsSec .rightCN .headingXL {
    margin-bottom: 32px;
    font-size: 36px;
    line-height: 46px;
  }

  .aboutUsSec .rightCN li {
    font-size: 18px;
    line-height: 26px;
    padding-left: 38px;
    margin-bottom: 14px;
  }

  .aboutUsSec .rightCN li:last-child {
    margin-bottom: 0px;
  }
	
	.aboutUsSec .buttonsWrapper{
		flex-wrap:wrap;
	}
	.aboutUsSec .buttonsWrapper .buttonRegular{
		width:100%;
	}
}
