/* Start Above Section */

.above-section {
  background-image: url("../assets/section-bg/sec-bg1.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

/* ---> Story Text */

.above-section .story-text {
  margin-bottom: 50px;
}

.above-section .story-text .container .section-body {
  background-color: var(--color-tertiary);
  border: 1em solid var(--color-primary);
  padding: 1.3em;
}

.above-section .story-text .container .section-body h2 {
  margin: 0;
  background-color: white;
  color: var(--color-primary);
  width: fit-content;
  padding: 0 50px 0 10px;
  /*  */
  line-height: 1;
  font-size: 30px;
  /*  */
  height: 40px;
  position: relative;
}

.above-section .story-text .container .section-body h2::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background-color: var(--color-grey-medium);
}

.above-section .story-text .container .section-body p {
  margin: 0;
  /*  */
  background-color: var(--color-tertiary);
  color: white;
  padding: 10px 0;
  /*  */
  font-size: 20px;
}

/* ---> Story Experience */

.above-section .story-experience {
  padding-bottom: 50px;
}

.above-section .story-experience .container .section-body {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.above-section .story-experience .container .section-body .image {
  /* display: flex; */
  /*  */
  /* width: 650px; */
  flex-grow: 1;
  padding: 3em;
  background-color: var(--color-primary);
  position: relative;
}

.above-section .story-experience .container .section-body .image img {
  /* width: 100%; */
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.above-section .story-experience .container .section-body .info {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 2rem;
}

.above-section
  .story-experience
  .container
  .section-body
  .info
  .experience-years {
  font-size: 50px;
  text-align: center;
  color: white;
  line-height: 1.2;
  background-color: var(--color-tertiary);
  border: 20px solid var(--color-primary);
  /*  */
  padding: 0rem 1rem 1.5rem;
  /*  */
  min-width: 300px;
}

.above-section
  .story-experience
  .container
  .section-body
  .info
  .experience-years
  span {
  display: block;
  line-height: 1;
}

.above-section
  .story-experience
  .container
  .section-body
  .info
  .experience-years
  span.number {
  font-size: 120px;
  margin-bottom: 1rem;
}

.above-section .story-experience .container .section-body .info .certificates {
  background-color: var(--color-tertiary);
  border: 20px solid var(--color-primary);
  text-align: center;
  color: white;
  padding: 1rem;
  font-size: 20px;
}

@media (max-width: 767px) {
  .above-section .story-experience .container .section-body {
    flex-direction: column;
  }

  .above-section .story-experience .container .section-body .image {
    /* aspect-ratio: 1.5/1; */
    width: 250px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
  }

  .above-section
    .story-experience
    .container
    .section-body
    .info
    .experience-years {
    min-width: unset;
  }
}

/* End Above Section */

/* Start vision-mission */

.vision-mission {
  background-color: var(--color-primary);
  padding: 50px 0;
}

.vision-mission .container .section-body {
  display: flex;
  gap: 2rem;
}

@media (max-width: 767px) {
  .vision-mission .container .section-body {
    flex-direction: column;
  }
}
.vision-mission .vision,
.vision-mission .mission {
  background-color: var(--color-tertiary);
  padding: 20px;
}

.vision-mission .vision h2,
.vision-mission .mission h2 {
  margin: 0;
  background-color: white;
  color: var(--color-primary);
  width: fit-content;
  padding: 0 50px 0 10px;
  /*  */
  line-height: 1;
  font-size: 30px;
  /*  */
  height: 40px;
  position: relative;
}

.vision-mission .vision h2::before,
.vision-mission .mission h2::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background-color: var(--color-grey-medium);
}

.vision-mission .vision p,
.vision-mission .mission p {
  margin: 0;
  /*  */
  background-color: var(--color-tertiary);
  color: white;
  padding: 10px 0;
  /*  */
  font-size: 20px;
}

/* End vision-mission */
