/* about page styles */

/* about page splash area styles */
.about-page-splash-area-dark-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 -1px 2px -2px rgba(0, 0, 0, 0.1);
}

/* about page content styles */
.about-page-makes-us-different {
  padding-top: 120px;
  margin-top: 0;
}

.about-page-makes-us-different h2 {
  font-size: 24px;
  line-height: 1.6;
  padding-left: 20px;
  padding-right: 20px;
}

.about-page-makes-us-different .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.about-content-services-item {
  padding: 20px;
  text-align: left;
}

.about-content-services-item .services-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content-services-item .services-img figure {
  width: 90%;
  height: auto;
}

.about-content-services-item .services-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 30px;
}

.about-content-services-item .services-text h4 {
  font-size: 30px;
  line-height: 40px;
}

.about-content-services-item .services-text p {
  font-size: 18px;
}

/* about page makes us different 4 cols row styles css */
.about-page-makes-us-different-4-col-content {
  padding: 52px 30px;
  border-radius: 4px;
  background-color: #f1f2f3;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.about-page-makes-us-different-4-col-content h4 {
  font-size: 26px;
}

.about-page-makes-us-different-4-col-content p {
  font-size: 16px;
  line-height: 22px;
}

.about-page-makes-us-different-4-col-content-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page-makes-us-different-4-col-content-img img {
  width: 90%;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.about-page-makes-us-different-4-col-content-img:hover img {
  transform: scale(1.1);
}

/*about page ecosystem section*/
.about-ecosystem-section {
  margin-top: 100px;
  padding: 50px;
  background-color: #F3F8FB;
}

.about-ecosystem h2 {
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.about-ecosystem h2 span {
  display: inline-block;
}

/*about page intro image block*/
.about-page-intro-block {
  height: 500px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.about-page-intro-block-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 170px 100px 140px 100px;
}

.about-page-intro-block-content .about-page-intro-block-logo {
  width: 17%;
}

.about-page-intro-block-content .about-page-intro-block-text {
  color: white;
  text-transform: uppercase;
  font-size: 34px;
  letter-spacing: 1px;
  align-items: flex-end;
  text-align: center;
}

.about-page-intro-block-content .about-page-intro-block-text span {
  font-weight: 600;
  display: inline-block;
  font-size: 60px;
}

/* about page ecosystem styles css */
.about-ecosystem-style {
  margin-bottom: 20px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}
.about-ecosystem-style img {
  max-height: 100%;
}

.about-deliver-item-title {
  font-size: 22px;
}

/*client review override */
.client-review h4 {
  color: #0d6efd;
}

.client-review p {
  text-align: left;
}

.client-review .client-name {
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.03);
}

/* about page splash area overwrite styles css */
.about-page-splash-area-reverse.splash-area {
  margin-top: -.7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-left: 50px;
}

.about-page-splash-area-reverse.splash-area h2,
.about-page-splash-area-reverse.splash-area p {
  color: white;
  width: 50%;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}

.about-page-splash-area-reverse.splash-area h2 {
  font-size: 46px;
  font-weight: bold;
}

.about-page-splash-area-reverse.splash-area p {
  margin-top: 10px;
  font-size: 32px;
  font-weight: normal;
  line-height: 1.6;
}

.about-page-splash-area-reverse.splash-area hr {
    width: 50%;
    border: 0;
    height: 1px;
    background: linear-gradient(to right, #fff, #666);
}

/* about page slider styles */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * (200px + 40px) * 7));
  }
}

.slider {
  background: white;
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track {
  animation: scroll 60s linear infinite;
  display: flex;
  gap: 40px;
  width: calc(200px * 14);
}

.slider .slide {
  height: auto;
  width: 200px;
}
