.our-story .banner {
  min-height: 85vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.our-story .banner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to right,
    #002438 24%,
    rgba(0, 36, 56, 0.08)
  );
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.our-story .breadcrumb {
  font-weight: 800;
  color: #fff;
}

.our-story .breadcrumb img {
  width: 2%;
}

.our-story .content h2:last-of-type {
  color: #1fe39b;
}

/* start story section */
/* start about */
.story-section {
  padding: 80px 0;
  background-color: #f2f2f2;
}

.story-section h2 {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: 40px;
  color: #002538;
  font-weight: 800;
}

.story-section .content {
  width: 70%;
  margin: auto;
}

.story-section .content .desc1 {
  font-size: 20px;
  color: #002438;
  font-weight: 400;
}

.story-section .content .desc2 {
  font-size: 17px;
}

.story-section .content > a {
  width: fit-content;
  margin: auto;

  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  padding: 10px 20px;
  text-decoration: none;
  color: #002438;
  border: 1px solid #f7f7f7;
  font-size: 18px;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.3s all ease;
}

.story-section .content a:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 991px) {
  .story-section .content {
    width: 100%;
  }

  .story-section h2 {
    font-size: 28px;
  }

  .story-section .content .desc1,
  .desc2 {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .story-section {
    padding: 50px 0;
  }

  .story-section h2 {
    font-size: 22px;
  }

  .our-story .banner {
    min-height: 60vh;
  }
}

.story-section i {
  color: #1fe39b;
}

.story-section .leader-quote {
  background-color: #4e5c67;
  border-radius: 25px;
}

.story-section .leader-quote img {
  border-radius: 17px;
  width: 100%;
}

.story-section .leader-quote p {
  color: #fff;
  font-size: 21px;
}

.leader-content a {
  width: fit-content;
  padding: 13px 20px;
  background-color: #fff;
  border-radius: 8px;
  text-decoration: none;
  color: #002438;
  font-weight: 500;
}

.leader-content a span {
  font-size: 17px;
}

.leader-content a:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 991px) {
  .story-section .leader-quote p {
    font-size: 17px;
    margin-bottom: 20px;
  }
}

/* start our values */
.our-values {
  background-color: #e0e4e7;
  padding: 80px 0;
}

.our-values h2 {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: 40px;
  color: #002538;
  font-weight: 800;
}

.our-values .desc {
  width: 60%;
  margin: auto;
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  color: #002538;
}

@media (max-width: 991px) {
  .our-values h2 {
    font-size: 25px;
  }

  .our-values .desc {
    width: 100%;
    font-size: 17px;
  }
}

.our-values .our-values-content {
  background-color: #fff;
  border-radius: 15px;
  padding: 80px;
}

.our-values .our-values-content h3 {
  text-transform: uppercase;
  font-weight: 800;
}

.our-values .our-values-content p {
  font-size: 25px;
}

.our-values .right {
  padding-left: 40px;
}

.our-values .our-values-content .right::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #d7dde3;
  left: -40px;
}

.our-values .right ul li {
  color: #002538;
  font-size: 20px;
}

.our-values .right ul li img {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .our-values .our-values-content {
    padding: 20px;
  }

  .our-values .our-values-content h3 {
    font-size: 22px;
  }

  .our-values .our-values-content p {
    font-size: 19px;
  }

  .our-values .right::before {
    display: none;
  }

  .our-values .right {
    padding-left: 0 !important;
  }
}

.vision .left {
  background-color: #263846;
  color: #fff;
  padding: 80px 100px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.vision .left h3 {
  text-transform: uppercase;
  font-weight: 800;
}

.vision .left p {
  font-size: 20px;
}

.vision .right {
  position: relative;
  background-size: cover;
  background-position: center;

  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;

  height: 100%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.vision .right .overlay {
  background-color: rgba(0, 36, 56, 0.01);
  overflow: hidden;
  backdrop-filter: blur(4px);
  padding: 60px;
}

.vision .right .overlay ul li {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 991px) {
  .vision .left {
    padding: 40px;
    border-radius: 15px;
  }

  .vision .left p {
    font-size: 16px;
  }

  .vision .right {
    min-height: 300px;
    margin-top: 10px;
    border-radius: 20px;
    overflow: hidden;
  }
}

@media (max-width: 575px) {
  .vision .left {
    padding: 25px 20px;
  }

  .our-values {
    padding: 50px 0;
  }
}

:dir(rtl) {
  .story-section .content .desc1 {
    font-size: 18px;
    font-weight: lighter;
  }

  .story-section .content .desc2 {
    font-size: 15px;
    font-weight: lighter;
  }

  .story-section .content > a {
    font-size: 15px;
  }

  .story-section .leader-quote p {
    font-size: 19px;
    font-weight: lighter;
  }

  .leader-content a span {
    font-size: 14px;
  }

  .our-values .desc {
    font-size: 19px;
    font-weight: lighter;
  }

  .our-values .our-values-content p {
    font-size: 23px;
    font-weight: lighter;
  }

  .our-values .right ul li {
    font-size: 18px;
    font-weight: lighter;
  }

  .our-values .our-values-content .right::before {
    left: 0;
    right: -33px;
  }

  .vision .left {
    border-top-left-radius: 0px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 20px;
  }

  .vision .right {
    border-top-right-radius: 0px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 20px;
  }

  .vision .left p {
    font-size: 18px;
    font-weight: lighter;
  }

  .our-values .right ul li {
    font-size: 18px;
    font-weight: 500;
  }
}
