/* ============================================
   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;
}
/* ============================================
   case_detail
   ============================================ */
.case_detail{
  padding: 0 80px;
}
.sub_title{
  background-color: #FF6C00;
  padding: 5px 10px;
  color: #fff;
  font-size: 19px;
  display: inline-block;
}
h1{
  font-size: 48px;
  color: #222;
  margin: 10px 0;
}
hr{
  border: 2px solid #FF6C00;
}
.image{
  display: flex;
  margin: 50px 0;
  gap: 30px;
}
.image img{
  width: 48%;
}
table{
  font-size: 15px;
  color: #5A5A5A;
  border-collapse:collapse;
  width: 100%;
}
tr{
  border-bottom:1px #5A5A5A solid;
}
th{
  color: #FF6C00;
  width: 20%;
  padding: 15px;
}
td{

}
/* ============================================
   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{
    display: flex;
    gap: 20px;
    padding: 0 20px 50px;
    position: relative;
  }
  .case_study_card{
    display: block;
    padding: 20px 10px;
    border: 2px solid #000;
    width: calc(100% / 3);
    border-radius: 25px;
  }
  .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: 20px;
    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: 20px;
    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;
  }
  @media (max-width: 768px) {
    h1 {
      font-size: 35px;
    }
    .image {
      gap: 15px;
      flex-direction: column;
      align-items: center;
  }
  .image img {
    width: 90%;
}
  th {
    width: 33%;
}
.btn_aria {
  padding: 0;
}
.flex_box{
  gap: 10px;

}
.box {
  width: calc(100% / 2.1);
}
}


.multi-image {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px;
}

.single-image {
  display: flex;
  justify-content: center;
}

.single-image img,
.multi-image img {
  width: 65%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .multi-image {
    grid-template-columns: 1fr !important;
  }
.case_detail {
    padding: 0 18px;
}
}