/* ============================================
   ABOUT PAGE
   ============================================ */

.page-hero {
  width: 100%;
  background: var(--gray-light);
  min-height: 200px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 30px;
  flex-wrap: wrap;
}
.page-hero img {
  height: auto;
  width: 100%;
  object-fit: contain;
}
.section-label {
  text-align: center;
}
.about-section {
  padding: 80px 0;
}
.about-content {
  display: block;
  align-items: center;
}
.about-text {
  font-size: 16px;
  color: #939393;
  margin-bottom: 16px;
  text-align: center;
  margin-top: 80px;
}
/* ============================================
   our_service
   ============================================ */
.our_service{
  background-color: #FF6C00;
  padding: 50px;
  color: #fff;
  font-size: 14px;
  display: flex;
  gap: 50px;
  margin-top: 100px;
}
.our_service h3::before{
  color: #fff;
  opacity: .16;
  font-size: 144px;
  position: absolute;
  right: 0;
  bottom: -35px;
}
.our_service_01 h3::before{
  content: "#01";
}
.our_service_02 h3::before{
  content: "#02";
}
.our_service_03 h3::before{
  content: "#03";
}
.our_service h3{
  font-size: 36px;
  margin-bottom: 30px;
  position: relative;
  /* height: 87px; */
  display: flex;
  align-items: flex-end;
}
.our_service img{
  width: 50%;
  object-fit: contain;
}
/* ============================================
   Case study
   ============================================ */
a {
  color: unset;
}
 .btn_aria{
  display: flex;
  justify-content: center;
  margin : 100px 0;
  padding: 0 20px;
 }
.flex_box {
  width: 1000px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
 }
 .box {
  border: 1px solid #FF6C00;
  font-size: 15px;
  color: #222222;
  border-radius: 50px;
  padding: 20px;
  width: calc(100% / 3.5);
  text-align: center;
  background-color: #fff;
 }
 .box:hover{
  background-color: #FF6C00;
  color: #fff;
  transition: background 0.2s;
 }
 .flex_box::after {
  display: block;
  content:"";
  width: calc(100% / 3.5);
  }
  .case_study{ 
    position: relative;
  }
  .case_study_detail{
    display: flex;
    gap: 16px;
    padding: 0 57px 50px 73px;
   flex-wrap: wrap;
  }
  .case_study_card{
    display: block;
    padding: 20px 10px;
    border: 2px solid #000;
    width: calc(100% / 3);
    border-radius: 25px;
    background-color: #fff;
  }
  .gray{
    background-color: #BCBCBC;
    color: #fff;
    font-size: 12px;
    display: inline-block;
    margin: 10px;
    padding: 0 10px;
  }
  .title{
    color: #000;
    margin: 10px;
  }
  .case_study_card a{
    color: #fff;
  }
  .card_btn{
    background-color: #FF6C00;
    border: 1px solid #000;
    font-size: 16px;
    display: block;
    padding: 10px 30px;
    border-radius: 50px;
    width: 65%;
    margin: 20px auto;
  }
  .card_btn:hover{
    color: #FF6C00;
    background-color: #fff;
    border: #FF6C00 1px solid;
    transition : all 0.3s;
  }
  .prev{
    position: absolute;
    left: 73px;
    bottom: 0;
    display: flex;
    align-items: center;
  }
  .prev::before{
    content: "<";
    color: #fff;
    background-color: #000;
    border-radius: 50%;
    margin-right: 5px;
    width: 19px;
    height: 19px;
    display: block;
    text-align: center;
    line-height: 1rem;
  }
  .prev:hover{
    color: #FF6C00;
    transition : all 0.2s;
  }
  .prev:hover::before{
    background-color:#FF6C00;
    transition : all 0.2s;
  }
  .next{
    position: absolute;
    right: 73px;
    bottom: 0;
    display: flex;
    align-items: center;
  }
  .next::after{
    content: ">";
    color: #fff;
    background-color: #000;
    border-radius: 50%;
    margin-left: 5px;
    width: 19px;
    height: 19px;
    display: block;
    text-align: center;
    line-height: 1rem;
  }
  .next:hover{
    color: #FF6C00;
    transition : all 0.2s;
  }
  .next:hover::after{
    background-color:#FF6C00;
    transition : all 0.2s;
  }
.case-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #000;
    transition: box-shadow 0.3s;
    margin: 0;
    width: calc(100% / 3.2);
}
  @media (max-width: 768px) {
    .our_service{
      margin: 0 calc(50% - 50vw);
      display: block;
      margin-bottom: 50px;
      padding: 20px;
    }
    .our_service h3 {
      font-size: 30px;
      padding-top: 20px;
    }
    .our_service h3::before {
      font-size: 115px;
      bottom: 0px;
  }
  .our_service img {
    width: 100%!important;
    margin: 50px 0;
}
.btn_aria {
  padding: 0;
}
.flex_box {
  gap: 10px;
}
.box {
  width: calc(100% / 2.1);
}
.case_study_detail {
  flex-direction: column;
    
}
.case_study_card {
  width: 100%;
}
.card_btn{
  text-align: center;
}
      .case-card{
          width: unset;      
      }
      .case_study_detail {
    display: flex;
    gap: 16px;
    padding: 0 20px 50px 20px;
    flex-wrap: wrap;
}
}

.case-pager {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}