/*-- -------------------------- -->
<---     ABOUT US Section      -->
<--- -------------------------- -*/
#About_Us {
  display: block;
  width: 100%;
  /* padding: 4rem 0; */
  background-color: #fff;
}

.about_showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.about_image {
  width: 484px;
  height: 322px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
}

.about_picture {
  width: 100%;
  height: 100%;
  display: flex;
}

.about_picture img {
  width: calc(100% - 16px);
  height: 120%;
  display: block;
  object-fit: cover;
}

.about_content {
  max-width: 700px;
  margin: auto;
}

.about_title {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  color: var(--bodyTextColor);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 100%;
  letter-spacing: 0%;
  overflow-x: unset;
}

.about_content p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0%;
  color: #000000;
  margin: 0 0 0 0;
}

/*-- -------------------------- -->
<---     Mobile About Us        -->
<--- -------------------------- -*/
@media only screen and (max-width: 63.9375rem) {
  #About_Us {
    display: block;
    height: auto;
    margin: 2rem 0.5rem 0rem 0;
  }

  .about_showcase {
    gap: 1.5rem;
  }

  .about_image {
    width: min(700px, 100%);
    height: 443px;
    margin: 0;
  }

  .about_title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bodyTextColor);
    margin: 0;
  }

  .about_content .button {
    border-radius: 5px;
  }

  .about_content .about_title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bodyTextColor);
    margin: 0;
  }

  .about_content .about_headline {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
  }

  .about_content .about_subheadline {
    font-size: 1rem;
    font-weight: 400;
    color: var(--bodyTextColor);
    margin: 0 0.75rem 0.75rem 0;
  }

  .about_content .point {
    font-weight: 600;
    margin: 0;
    padding: 0 1rem;
  }

  .about_content .point h3 {
    margin: 0.5rem 0;
  }

  .about_content .point p {
    color: var(--bodyTextColor);
  }
}


/*-- -------------------------- -->
<---     Tablet About Us        -->
<--- -------------------------- -*/
@media only screen and (min-width: 37.5625rem) and (max-width: 63.9375rem) {
  #About_Us {
    margin: 2rem 0.5rem 0rem 0;
  }

  .about_showcase {
    padding: 1rem;
  }

  .about_image {
    height: auto;
    align-self: stretch;
    margin: 0;
    margin: auto;
  }

  .about_content .about_title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bodyTextColor);
    margin: 0;
  }

  .about_content .about_headline {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
  }

  .about_content .about_subheadline {
    font-size: 1rem;
    font-weight: 400;
    color: var(--bodyTextColor);
    margin: 0 0 0.75rem 0;
  }

  .about_content .point {
    font-weight: 600;
    margin: 0;
    padding: 0 0 0 1rem;
  }

  .about_content .point h3 {
    margin: 0.5rem 0;
  }

  .about_content .point p {
    color: var(--bodyTextColor);
  }
}

/*-- -------------------------- -->
<---     Desktop About Us       -->
<--- -------------------------- -*/
@media only screen and (min-width: 64rem) {
  #About_Us {
    margin: 2rem 0.5rem 0rem 0;
  }

  .about_showcase {
    flex-direction: row;
    align-items: stretch;
    gap: 1.5rem;
    justify-content: space-between;
    padding: 1rem;
  }

  .about_image {
    width: 50%;
    height: auto;
    align-self: stretch;
    flex-shrink: 0;
  }

  .about_content {
    width: 50%;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .about_content .about_title {
    font-size: 1rem;
    overflow-x: unset;
    color: var(--bodyTextColor);
    font-weight: 600;
    margin: 0;
  }

  .about_headline {
    font-size: 2rem;
    font-weight: 700;
  }

  .about_content .about_subheadline {
    font-size: 1rem;
    font-weight: 400;
    color: var(--bodyTextColor);
    margin: 0 0 0.75rem 0;
  }

  .about_content .point {
    font-weight: 600;
    margin: 0;
    padding: 0 0 0 1rem;
  }

  .about_content .point h3 {
    margin: 0.2rem 0;
  }

  .about_content .point p {
    color: var(--bodyTextColor);
  }
}

/* Custom style for Why Choose Us on Services page */
@media only screen and (min-width: 64rem) {
  .why_showcase_services {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}

/*-- -------------------------- -->
<---   Our Services Detail     -->
<--- -------------------------- -*/
#Our_Services_Detail {
  background-color: #495B63;
  padding: 2rem 0;
  color: #fff;
}


.services_detail_wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services_image {
  width: 100%;
  overflow: hidden;
}

.services_image picture {
  display: block;
  width: 100%;
}

.services_image img {
  width: 100%;
  height: 550px;
  display: block;
  object-fit: cover;
}

.services_content {
  display: flex;
  flex-direction: column;

}

.services_subtitle {
  font-size: 0.875rem;
  font-weight: bold;
  
  color: #D0CCCC;
  margin: 0;
  text-transform: capitalize;
}

.services_heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.services_description {
  font-size: 0.875rem;
  font-weight: 400;
  color: #D0CCCC;
  margin: 0;
  line-height: 1.6;
}

.services_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  /* gap: 0.5rem; */
}

.services_list li {
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.services_list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 700;
}



.services_stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.stat_item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat_item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.stat_item p {
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
@media only screen and (max-width: 63.9375rem) {

#Our_Services_Detail {
  background-color: #495B63;
  padding: 2rem 1rem 2rem 0;
  color: #fff;
}


.services_detail_wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.services_image {
  width: 100%;
  overflow: hidden;
}

.services_image picture {
  display: block;
  width: 100%;
}

.services_image img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
}

.services_content {
  display: flex;
  flex-direction: column;

}

.services_subtitle {
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  
  color: #D0CCCC;
  margin: 0;
  text-transform: capitalize;
}

.services_heading {
  /* padding-right: 1rem; */
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.services_description {
  /* padding-right: 1rem; */
  font-size: 0.875rem;
  font-weight: 400;
  padding-top:1rem;
  padding-bottom:1rem;
  color: #D0CCCC;
  margin: 0;
  line-height: 1.6;
}

.services_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  /* gap: 0.5rem; */
}

.services_list li {
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.75;
}

.services_list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 700;
}

.services_divider {
  width: 95%;
  height: 1px;
  background-color: #fff;
  margin: 1.5rem 0 0;
}

.services_stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat_item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat_item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.stat_item p {
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  max-width: 50px;
}
}

/* Tablet */
@media only screen and (min-width: 37.5625rem) and (max-width: 63.9375rem) {
  #Our_Services_Detail {
    padding: 2.5rem 0;
  }

  .services_detail_wrapper {
    gap: 2rem;
  }

  .services_heading {
    font-size: 1.5rem;
  }

  .services_description {
    font-size: 1rem;
  }

  .services_list li {
    font-size: 1rem;
  }

  .stat_item h3 {
    font-size: 1.75rem;
  }

  .stat_item p {
    font-size: 0.875rem;
  }
  .services_divider {
  width: 95%;
  height: 1px;
  background-color: #fff;
  margin: 1.5rem 0;
}
}

/* Desktop */
@media only screen and (min-width: 64rem) {
  #Our_Services_Detail {
    padding: 4rem 0;
  }

  .services_detail_wrapper {
    flex-direction: row;
    gap: 2rem;
  }

  .services_image {
    width: 50%;
    flex-shrink: 0;
  }

  .services_content {
    max-height: 550px;
    height: 550px;
    width: 50%;
    flex: 1;
  }

  .services_subtitle {
    font-size: 1rem;
  }

  .services_heading {
    font-size: 1.75rem;
    max-width: 500px;
    padding-bottom: 1rem;
  }

  .services_description {
    font-size: 1rem;
    line-height: 1.7;
    padding-bottom: 0.5rem;
  }

  .services_list {
    /* gap: 0.625rem; */
  }

  .services_list li {
    font-size: 1rem;
  }

  .services_stats {
    gap: 3rem;
    margin-top: 1.5rem;
  }

  .stat_item h3 {
    font-size: 2rem;
  }

  .stat_item p {
    font-size: 0.875rem;
  }
  .services_image img {
    padding-left: 1rem;
  width: 90%;
  height: 550px;
  display: block;
  object-fit: cover;
}
.services_divider {
  width: 95%;
  height: 1px;
  background-color: #fff;
  margin: 1.5rem 0;
}
}

/*-- -------------------------- -->
<---      Our Promise          -->
<--- -------------------------- -*/
#Our_Promise {
  background-color: #fff;
  /* padding: 2rem 0; */
  padding: 0 1rem 1rem 0;
}

.promise_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* gap: 1.5rem; */
  /* margin-bottom: 2rem; */
}

.promise_logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 0.75rem; */
}

.promise_logo img {
  width: 250px;
  height: auto;
}

.promise_underline {
  /* width: 80px; */
  /* height: 3px; */
  /* background-color: #D32F2F; */
  /* border-radius: 2px; */
}

.promise_divider {
  display: none;
}

.promise_intro h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin: 0 0 0.75rem 0;
}

.promise_intro p {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1rem;
}

.promise_cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.promise_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.promise_card_image {
  width: 100%;
  overflow: hidden;
  /* border-radius: 8px; */
}

.promise_card_image picture {
  display: block;
  width: 100%;
}

.promise_card_image img {
  width: 100%;
  height: 283px;
  display: block;
  object-fit: cover;
}

.promise_card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  letter-spacing: 0.5px;
}

.promise_card p {
  font-size: 1rem;
  font-weight: 400;
  color: #444343;
  margin: 0;
  line-height: 1.5;
}

/* Tablet */
@media only screen and (min-width: 37.5625rem) and (max-width: 63.9375rem) {
  #Our_Promise {
    padding: 3rem 0;
  }

  .promise_header {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .promise_logo img {
    width: 600px;
    height: auto;
  }

  .promise_intro h2 {
    font-size: 36px;
  }

  .promise_intro p {
    font-size: 1rem;
  }

  .promise_cards {
    gap: 2.5rem;
  }

  .promise_card h3 {
    font-size: 1.125rem;
  }

  .promise_card p {
    font-size: 1rem;
  }
}

/* Desktop */
@media only screen and (min-width: 64rem) {
  #Our_Promise {
    padding: 2rem 0;
  }

  .promise_header {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    /* margin-bottom: 3rem; */
    text-align: left;
  }

  .promise_logo {
    align-items: flex-start;
  }

  .promise_logo img {
    width: 365px;
    height: auto;
  }

  .promise_underline {
    width: 100px;
  }

  .promise_divider {
    display: block;
    width: 1px;
    height: 165px;
    background-color: #000;
    align-self: center;
    margin-left: clamp(3rem, -8.45rem + 21.27vw, 8rem);

  }

  .promise_intro {
    max-width: 500px;
    text-align: left;
  }

  .promise_intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .promise_intro p {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .promise_cards {
    padding: 1rem;
    flex-direction: row;
    /* gap: 4rem; */
    justify-content: center;
    align-items: flex-start;
  }

  .promise_card {
    flex: 1;
    max-width: 350px;
  }

  .promise_card_image {
    width: 100%;
    height: 300px;
  }

  .promise_card_image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .promise_card h3 {
    font-size: 1.125rem;
  }

  .promise_card p {
    font-size: 0.9375rem;
  }
}
