

/* about info */
#about-info {
  padding: 60px 3% 90px;
}
.about-info-left {
  width: 55%;
}
.about-info-left p {
  margin: 15px 0 0;
}

.about-info-left ul{
  margin: 16px 0 0 0;
  padding: 0 0 0 0;
}
.about-info-left li{
  list-style: none;
  padding: 0 0 5px 0px;
  position: relative;
}
.about-info-left li:before{
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  margin: 0 12px 0 0;
  vertical-align: 4px;
  background-color: #21C0EC;
}
.about-info-left .detail{
  display: none;
}
.about-info-left .detail:nth-of-type(1){
  display: block;
}


.about-info-right {
  width: 40%;
  gap: 30px;
}

.info-card {
  width: 255px;
  height: 255px;
  position: relative;
  cursor: pointer;
  background-position: center center !important;
  background-size: cover !important;
}

.info-card:nth-child(1) {
  background: url(../assets/images/about/image-box1.jpg) no-repeat;
}
.info-card:nth-child(2) {
  background: url(../assets/images/about/image-box2.jpg) no-repeat;
  transform: translate(0, 30px);
}
.info-card:nth-child(3) {
  background: url(../assets/images/about/image-box3.jpg) no-repeat;
}
.info-card:nth-child(4) {
  background: url(../assets/images/about/image-box4.jpg) no-repeat;
  transform: translate(0, 30px);
}

.info-card h4 {
  z-index: 2;
  font-size: 26px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
.info-card-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 120, 165, 0.3);
  z-index: 1;
  transition: 0.5s;
  opacity: 1;
}
.info-card:hover .info-card-text {
  opacity: 0;
}
/* end about info */


/* mobi */
@media all and (max-width: 1440px) and (min-width: 992px){
  .about-info-right{
    width: 60%;
  }
  .about-info-left{
    width: 40%;
  }
}

@media (width: 992px){
  .about-info-res{
    flex-direction: row !important;
  }
}

@media all and (max-width: 992px){
  #about-info{
    padding: 40px 3%;
  }
  .about-info-right{
    width: 100%;
    margin: 30px 0 0;
    justify-content: center !important;
  }
  .about-info-left{
    width: 100%;
    text-align: center;
  }
  .info-card{
    transform: none !important;
  }
}
/* end mobi */
