:root {
  --bs-body-font-family: "Inter", sans-serif;
  --theme-color: #fdbb2f;
  --theme-color-secondary: #fcad04;
}

.about-hero {
  min-height: 100vh;
  padding-top: 100px;
}

.about-hero .section-container {
  text-align: center;
  padding-block: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-hero .section-container h1 {
  font-size: 60px;
}
.about-hero .section-container p {
  max-width: 45rem;
}

.about-hero .section-container::after {
  content: "";
  width: 100%;
  height: 10rem;
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    #ffffff 75%
  );
}

* {
  box-sizing: border-box;
}

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}
.active-bg {
  position: absolute;
  /* transform: scaleY(0.73); */
  top: 9px;
  left: 50%;
  transform: translateX(-46%);
  z-index: -1;
  width: 300px;
  background-color: var(--theme-color);
  height: 380px;
  width: 327px;
  border-radius: 20px;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  align-items: center;
  position: relative;
}

.slide {
  background-repeat: no-repeat;
  min-width: 300px;
  margin: 0 20px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
  transform: scale(1);
  position: relative;
  /* cursor: grab; */
  height: 300px;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}
/* .slide:active{
  cursor: grabbing;
} */

.slide.active {
  height: 380px !important;
}
/* .slide::after{
  content: "";
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: -3;
  width: 100%;
  display: none;
  background-color: var(--theme-color);
  height: 100%;
  width: 300px;
  border-radius: 20px;

}
.slide.active::after{
  
  display: block;
} */

.slide-active-bg {
  position: absolute;
  /* transform: scaleY(0.73); */
  top: -12px;
  right: -12px;
  z-index: -5;
  width: 100%;
  display: none;
  background-color: var(--theme-color);
  height: 100%;
  width: 300px;
  border-radius: 20px;
}

.slide.active .slide-active-bg {
  display: block;
}

.slide img {
  width: 100%;
  border-radius: 12px;
}

.slide.active img {
  height: 380px;
}

/* ACTIVE CENTER SLIDE */
.slide.active {
  transform: scale(1.1);
  opacity: 1;
}

/* .main-vission .desc{
    width: 55%;
} */
.main-vission {
  /* display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start; */
  /* gap: var(--gap); */
  text-align: left;
  width: 100%;

  border-radius: 2.5rem;
  position: relative;
  background-size: cover;
  overflow: hidden;
  background-color: black;
  color: white;
}

.main-vission > h1 {
  font-weight: bold;
  margin-bottom: 2rem;
}
.main-vission .desc > p {
  font-weight: 500;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
}

.main-vission .counters {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-vission-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.vission-bg-image {
  max-width: 60%;
  width: 100%;
  height: auto;
      margin: 0px 0px 0px 40px;
}

.main-vision-txt {
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

  /* .main-vission::after {
    content: "";
    width: 38rem;
    aspect-ratio: 1 / 1;
    background-image: url("../assets/vision-bg-affect.svg");
    position: absolute;
    background-size: Contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.18;
    right: -5%;
    top: -40%;
    z-index: 1 !important;
    transform-origin: center;
  } */

.mission-section {
  margin-bottom: 3rem;
  background: #f1f1f1;
  padding: 3rem 0;
}

.mission-section h1 {
  font-weight: bold;
}

.mission-section .description {
  max-width: 700px;
  margin-inline: auto;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.values-section {
  margin-block: 3rem;
  /* background: #f1f1f1; */
  padding: 3rem 0;
}

.values-section .main-values .values-header h1 {
  font-weight: bold;
  text-align: center;
}
.values-section .main-values .values-header .desc {
  font-weight: 500;
  text-align: center;
  color: #626b78;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}

.values-section .value-items {
  row-gap: 1rem;
}


.values-section .value-items .value-item {
  padding: 2rem;
  background-color: #f1f1f1;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  
}

.values-section .value-items .value-item h5{
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}



.values-section .value-items .value-item img{
  position: absolute;
}
.values-section .value-items :nth-child(1) > .value-item {
height: 250px;
}
.values-section .value-items :nth-child(1) > .value-item img{
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}
.values-section .value-items :nth-child(2) > .value-item {
height: 250px;
}
.values-section .value-items :nth-child(2) > .value-item img{
  right: -20%;
  top: 0;
  bottom: 0;
  height: 100%;
}
.values-section .value-items :nth-child(3) > .value-item {
height: 250px;
text-align: end;
display: flex;
flex-direction: column;
justify-content: end;
align-items: end;
}
.values-section .value-items :nth-child(3) > .value-item p{
  margin: 0;
  max-width: 80%;
}
.values-section .value-items :nth-child(3) > .value-item img{
  left: 1rem;
  top: 1rem;
  width: 50%;
  border-radius: 10px;
}

.values-section .value-items :nth-child(4) > .value-item {
height: 250px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: end;
}

.values-section .value-items :nth-child(4) > .value-item p{
  margin: 0;
  max-width: 40%;
  text-align: end;
}
.values-section .value-items :nth-child(4) > .value-item img{
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  /* width: 150px; */
}
.values-section .value-items :nth-child(4) > .value-item img{
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  /* width: 150px; */
}


@media screen and (max-width: 991px) {
    .vission-bg-image {
    max-width: 40%;
        margin: 0px 0px 0px 0px;
}   

.main-vision-txt {
    padding: 0px 0px 50px 0px;
}

 }

@media screen and (max-width: 768px) {

 .main-vision-txt {
    text-align: center;
}

}

 @media screen and (max-width: 480px) {
    .vission-bg-image {
    max-width: 55%;
}   

    .main-vision-txt {
        padding: 0px 0px 30px 0px;
    }

 }
