/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 01 2023 | 10:37:20 */
@charset "UTF-8";
.AboutCase {
  padding: 5% 0;
  --title-font-size: 36px;
  --title-text-color: var(--tej-color-secondary);
  --title-circle-color: var(--tej-color-accent);
  --title-circle-size: 30px;
  --border-color: var(--tej-color-secondary);
}
@media only screen and (max-width: 796px) {
  .AboutCase {
    padding: 7% 0;
  }
}
@media only screen and (max-width: 414px) {
  .AboutCase {
    padding: 10% 0;
  }
}
.AboutCase .list_row_t_top {
  margin-bottom: 60px;
  text-align: center;
}
.AboutCase .list_row_t_top .list_row_t_top_subtitle {
  color: var(--tej-color-dark);
}
.AboutCase .list_row_t_top_title {
  color: var(--title-text-color);
  font-size: var(--title-font-size);
  font-weight: bold;
  margin-bottom: 6px;
  position: relative;
  z-index: 0;
  display: inline-block;
}
.AboutCase .list_row_t_top_title::before {
  content: "";
  position: absolute;
  width: var(--title-circle-size);
  height: var(--title-circle-size);
  border-radius: 50%;
  background-color: var(--title-circle-color);
  left: -8px;
  top: 0;
  z-index: -1;
}
.AboutCase .flex_wrap {
  display: flex;
  flex-direction: column;
}
.AboutCase .flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f4f4;
  padding: 80px;
}
@media only screen and (max-width: 640px) {
  .AboutCase .flex {
    padding: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .AboutCase .flex {
    flex-direction: column;
  }
}
.AboutCase .flex:nth-child(odd) {
  margin-right: 15%;
}
@media only screen and (max-width: 768px) {
  .AboutCase .flex:nth-child(odd) {
    margin-right: 0;
  }
}
.AboutCase .flex:nth-child(even) {
  margin-left: 15%;
}
@media only screen and (max-width: 768px) {
  .AboutCase .flex:nth-child(even) {
    margin-left: 0;
  }
}
.AboutCase .flex::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #6da4aa;
  bottom: -10px;
  right: -10px;
  z-index: -1;
}
.AboutCase .flex + .flex {
  margin-top: 50px;
}
.AboutCase .img_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  padding-right: 80px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .AboutCase .img_box {
    width: 40%;
  }
}
@media only screen and (max-width: 640px) {
  .AboutCase .img_box {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .AboutCase .img_box {
    width: 100%;
    padding-right: 0;
  }
}
.AboutCase .icon_title {
  color: #24607d;
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
}
@media only screen and (max-width: 640px) {
  .AboutCase .icon_title {
    font-size: 20px;
  }
}
.AboutCase .content {
  width: 70%;
  padding-left: 7%;
  border-left: 1px solid var(--tej-color-secondary);
  /* 編輯器樣式 */
}
@media only screen and (max-width: 768px) {
  .AboutCase .content {
    width: 60%;
  }
}
@media only screen and (max-width: 500px) {
  .AboutCase .content {
    width: 100%;
    padding-left: 0;
    border-left: none;
    margin-top: 20px;
  }
}
.AboutCase .content .editor_text ol {
  counter-reset: list-number;
}
.AboutCase .content .editor_text li, .AboutCase .content .editor_text p {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 1.5px;
}
.AboutCase .content .editor_text ul li {
  background: url("/wp-content/uploads/icon_list_check.svg") no-repeat 0 5px;
  padding-left: 30px;
}
.AboutCase .content .editor_text ol li {
  position: relative;
  padding-left: 30px;
}
.AboutCase .content .editor_text ol li::before {
  background-color: #fff;
  color: var(--tej-color-accent);
  counter-increment: list-number;
  content: counter(list-number);
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 10px;
}
