
/*default-btn*/
.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #c4161c;
  transition: 0.5s;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.default-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #c4161c;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
}
.default-btn:hover {
  color: #ffffff;
}
.default-btn:hover span {
  width: 225%;
  height: 562.5px;
}

/*================================================
/* Our Mission Area CSS ================================================ */
.our-mission-area {
  padding: 40px;
  width: 100%;
 
}

.mission-background {
  background-color: #242936;
  height: 40%;
}

.mission-image {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mission-image.bg-1 {
  background-image: url('../assets/img/mission-1.png'); /* Adjust the path based on your directory structure */
}

.mission-image.bg-2 {
  background-image: url('../assets/img/mission-2.png'); /* Adjust the path based on your directory structure */
}

.mission-text {
  text-align: center;
  padding-top: 50%;
  padding-bottom: 50%;
  padding-left: 30px;
  padding-right: 30px;
}

.mission-text .icon {
  color: #ff5d22;
  font-size: 60px;
  margin-bottom: 10px;
}

.mission-text h3 {
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.mission-text h3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 60px;
  margin: 0 auto;
  bottom: 0;
  background-color: #ff5d22;
  height: 1px;
  text-align: center;
}

.mission-text p {
  color: #ffffff;
  margin-bottom: 0;
  text-align: left;
}

.mission-text .default-btn {
  margin-top: 20px;
}

.mission-text .default-btn span {
  background-color: #000000;
}

.mission-text .default-btn:hover,
.mission-text .default-btn:focus {
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .mission-text {
      padding-top: 20px;
      padding-bottom: 20px;
  }

  .row.m-0.mt-4 {
      margin-top: 20px;
  }
}


/* start */
.experience-box {
  padding: 30px 30px 30px 65px;
  border: 1px solid #F1F1F1;
  overflow: hidden;
  position: relative;
  margin-bottom: -1px;
  margin-right: -1px;
}

.experience-box-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  box-shadow: 0px 13px 21px rgba(0, 0, 0, 0.03);
}

.experience-box_num {
  font-size: 12px;
  width: 60px;
  height: 60px;
  line-height: 65px;
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: -13px;
  left: -13px;
}

.experience-box_num::first-letter {
  font-size: 18px;
  font-weight: 600;
}

.experience-box_title {
  font-family: var(--title-font);
  font-size: 18px;
  margin-bottom: 4px;
  margin-top: -0.2em;
}

.experience-box_text {
  font-size: 14px;
  margin-bottom: -0.2em;
}

/* Large devices */
@media (max-width: 1199px) {
  .border-title {
    margin-bottom: 24px;
    padding-bottom: 15px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .experience-box {
    padding: 30px 30px 30px 50px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .experience-box {
    padding: 30px 30px 30px 65px;
  }
  .experience-box-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-card_img {
    padding: 20px;
  }
  .about-card_box {
    padding: -10px -20px;
  }
}
