.about-content-section{
  background: #f8f3e6;
  position: relative;
}

.about-content-section .jumbotron{
  background: url(../img/bg-about.jpg);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  border-radius: 10px;
  position: relative;
}

.about-content-section .jumbotron .img-valuemax-text-sm{
  height: 26px;
  margin-bottom: 10px;
}

.about-content-section .summary-section{
  position: relative;
  overflow-x: hidden;
}
.about-content-section .summary-section .img-watch{
  max-width: 400px;
  width: 100%;
  margin: auto;
  z-index: 2;
}
.about-content-section .summary-section .img-watch-ribbon{
  right: -180px;
  position: absolute;
  max-width: 600px;
  bottom: -40px;
  z-index: 0;
  width: 100%;
}

.about-content-section .our-culture-section{
  background: url(../img/bg-our-culture.png);
  padding: 30px 20px 20px;
  border: 2px solid #ffcc74;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-content-section .our-culture-section .img-culture{
  border-radius: 10px;
  margin-bottom: 10px;
  min-height: 180px;
  object-fit: cover;
}
.about-content-section .visi-section{
  background: url('../img/bg-visi.jpg');
  background-size: cover;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.about-content-section .shareholder-section .shareholder-item {
  display: flex;
}

.about-content-section .shareholder-section .img-shareholder-wrapper{
  margin-right: 15px;
}
.about-content-section .shareholder-section .img-shareholder{
  border-radius: 10px;
  object-fit: cover;
  width: 230px;
  height: 230px;
  max-height: 230px;
}

.about-content-section .faq-item{
  background: white;
  padding: 15px 15px 0 15px;
  border: 1px solid #c48e31;
  border-radius: 10px;
}

.about-content-section .faq-item .faq-item-header{
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}
.about-content-section .faq-item .faq-item-header:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6.5px 0 6.5px;
  border-color: #1f2c61 transparent transparent transparent;
  position: absolute;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  transition: transform .3s;
}
.about-content-section .faq-item .faq-item-header.active:after{
  transform: translateY(-50%) rotate(-180deg);
}
.about-content-section .faq-item .faq-item-header .faq-item-title{
  padding-right: 20px;
  height: 50px;
  display: flex;
  align-items: center;
}
.about-content-section .faq-item .faq-item-body{
  padding-left: 10px;
  margin-bottom: 20px;
  margin-left: 2px;
  border-left: 2px solid #c48e31;
}

@media(max-width: 991px){
  .about-content-section .faq-item .faq-item-header .faq-item-title{
    height: auto;
  }
  .about-content-section .our-culture-section .img-culture{
    min-height: 220px;
  }
}

@media(max-width: 576px){
  .about-content-section .summary-section .img-watch-ribbon{
    right: -100px;
  }
  .about-content-section .shareholder-item{
    flex-direction: column;
  }
  .about-content-section .shareholder-section .img-shareholder-wrapper{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }
}