.main_page_title ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 0;
}
.main_page_title ul li {
  margin-right: 30px;
}
.main_page_title ul li:last-child {
  margin-right: 0;
}

/* About Us */
.aboutUs {
  position: relative;
}
.aboutUs-content p {
  max-width: 480px;
}
.whoweare-image img,
.aboutUs-image img {
  border-radius: 20px;
}
.aboutUs-content img,
.whoweare-content img {
  display: none;
}
.about-counter {
  margin-top: 120px;
}
.about-counter ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.about-counter ul li {
  width: 25%;
  text-align: center;
}
.about-counter ul li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}
/* About Us End */

/* Who we are */
.whoweare {
  background-color: #f8f8f8;
}
.whoweare-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Who we are End */

/* Our Values */
.our-values-box {
  padding-left: 24px;
  border-left: 1px solid #d9d9d9;
  height: 100%;
}
.our-values-box img {
  margin-bottom: 16px;
  transition: 0.4s;
}
/* .our-values-box:hover img {
    transform: rotateY(180deg);
    transition: 0.4s;
} */
/* .our-values-box .heading_six {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 8px;
} */
/* .our-values-box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  max-width: 223px;
} */
/* Our Values End */

/* Meet Our Team */
.meetourteam {
  background-color: #282828;
}
.meetourteam h2,
.meetourteam-box .heading_four,
.meetourteam-box .heading_five,
.meetourteam-box p {
  color: #ffffff;
}
.meet-our-team-list {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
}
.meetourteam-box {
  width: calc(20% - 18px);
  display: flex;
  flex-direction: column;
}
.meetourteam-box-img {
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 20px;
  height: 250px;
}
.meetourteam-box-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.7s;
}
.meetourteam-box:hover img {
  transform: scale(1.1);
  transition: 0.7s;
}
.meetourteam-box-content {
  height: calc(100% - 250px);
}
.meetourteam-box .heading_four,
.meetourteam-box .heading_five {
  margin-bottom: 4px;
}
.meetourteam-box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
/* Meet Our Team End */

/* FAQ */
.faq h2 {
  text-align: center;
  margin-bottom: 30px;
}
.faq .accordion-button {
  margin-bottom: 0;
  padding: 16px 28px 16px 24px;
}
.faq .accordion-item {
  border-color: rgba(0, 0, 0, 0.125);
}
.faq .accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.faq .accordion-button:not(.collapsed) {
  color: var(--secondary-color);
  background-color: #ffffff;
  box-shadow: none;
}
.faq .accordion-button:focus {
  z-index: 3;
  border-color: none;
  outline: 0;
  box-shadow: none;
}
.accordion-button::after {
  background-image: url("../images/icon_plus.svg");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("../images/icon_minus.svg");
}
.faq .accordion-body {
  padding: 12px 68px 24px 24px;
}
.faq .accordion-body p {
  font-size: 16px;
  line-height: 28px;
}
.faq .accordion-button:hover {
  color: #009ee3;
}
/* FAQ End */

/* Responsive */
@media only screen and (max-width: 1199px) {
  /* Meet Our Team */
  .meet-our-team-list {
    flex-wrap: wrap;
  }
  .meetourteam-box {
    width: calc(25% - 18px);
  }
  /* Meet Our Team End */
}
@media only screen and (max-width: 991px) {
  /* About Us */
  .aboutUs-content img,
  .whoweare-content img {
    display: block;
    margin-bottom: 20px;
    height: auto;
    border-radius: 20px;
  }
  .aboutUs-content p {
    max-width: 100%;
  }
  .aboutUs-image img,
  .whoweare-image img {
    display: none;
  }
  .about-counter {
    margin-top: 80px;
  }
  /* About Us End */

  /* Who we are */
  .whoweare-content {
    display: inline-block;
  }
  /* Who we are End */

  /* Our Values */
  .ourvalues {
    margin-bottom: -25px;
  }
  .our-values-col {
    margin-bottom: 25px;
  }
  .our-values-box p {
    max-width: 100%;
  }
  /* Our Values End */

  /* Meet Our Team */
  .meetourteam-box {
    width: calc(33.33% - 18px);
  }
  .meetourteam-box-img {
    height: 300px;
  }
  .meetourteam-box-content {
    height: calc(100% - 300px);
  }
  /* Meet Our Team End */
}
@media only screen and (max-width: 767px) {
  /* Meet Our Team */
  .meetourteam-box {
    width: calc(50% - 12px);
  }
  /* Meet Our Team End */
}
@media only screen and (max-width: 575px) {
  .main_page_title ul {
    flex-wrap: wrap;
    margin-bottom: -15px;
    margin-top: 20px;
  }
  .main_page_title ul li {
    margin-right: 0;
    width: 50%;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
  }
  /* About Us */
  .about-counter {
    margin-top: 40px;
  }
  .about-counter ul {
    flex-wrap: wrap;
    margin-bottom: -15px;
  }
  .about-counter ul li {
    width: 50%;
    margin-bottom: 15px;
  }
  /* About Us End */
  /* Our Values */
  .ourvalues {
    margin-bottom: 0;
  }
  .our-values-col {
    margin-bottom: 20px;
  }
  .our-values-col:last-child {
    margin-bottom: 0;
  }
  .our-values-box {
    border-left: 0;
    border-bottom: 1px solid #d9d9d9;
    padding-left: 0;
    padding-bottom: 20px;
  }
  .our-values-col:last-child .our-values-box {
    border-bottom: 0;
    padding-bottom: 0;
  }
  /* Our Values End */

  /* FAQ */
  .faq .accordion-button {
    padding: 16px 20px;
  }
  .faq .accordion-body {
    padding: 12px 20px 24px;
  }
  /* FAQ End */
  /* Meet Our Team */
  /* .meetourteam-box {
        width: 100%;
    } */
  .meetourteam-box-img {
    height: 320px;
  }
  .meetourteam-box-content {
    height: calc(100% - 320px);
  }
  /* Meet Our Team End */
}
@media only screen and (max-width: 480px) {
  /* Meet Our Team */
  .meetourteam-box {
    width: 100%;
  }
  /* Meet Our Team End */
}
/* Responsive End */
