
/* BREAD */
.c-page{
  height: 540px;
}
.c-page img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-bread {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 100px;
  padding-top: 28px;
}
.c-bread li a {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}
@media all and (max-width: 768px) {
  .c-bread {
    padding-top: 20px;
    margin-bottom: 60px;
  }
  .c-bread li a {
    font-size: 11px;
  }
}
/* END BREAD */
/* ======================================================== */
/* PAGE HEADING */
.c-heading{
  border-radius: 100px;
  background-color: #109F44;
  color: #fff;
  padding: 26px 80px;
  position: relative;
}
.c-heading::before{
  content: '';
  background-image: url('../images/common/ic-check.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  left: 50px;
}
.c-heading__txt{
  padding: 0 60px;
}
@media(max-width: 768px){
  .c-heading__txt{
    padding: 0 10px;
  }
  .c-heading{
    padding: 10px;
    padding-left: 45px;
  }
  .c-heading::before{
    width: 15px;
    left: 20px;
    height: 15px;
  }
}
/* END PAGE HEADING */
/* PAGINATION */
.c-pagination {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 70px;
  }
  .c-pagination .item {
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50px;
    font-weight: 500;
    font-size: 13px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    margin: 0 5px;
  }
  .c-pagination .item.prev {
    margin-right: 40px;
    margin-left: 0 !important;
  }
  .c-pagination .item.next {
    margin-left: 40px;
    margin-right: 0 !important;
  }
  .c-pagination .item-arrow img {
    display: block;
    width: 17px;
    height: 17px;
  }
  .c-pagination .item a {
    display: block;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
  }
  .c-pagination .item:not(.item-arrow) a:hover {
    opacity: 1;
  }
  .c-pagination .item:not(.item-arrow):hover,
  .c-pagination .item.current {
    background: #5ED6CA;
    color: white;
  }
  .c-pagination .item.current,
  .c-pagination .item.item-dot {
    pointer-events: none;
  }
  @media all and (max-width: 767px) {
    .c-pagination {
      margin-top: 30px;
    }
    .c-pagination .item {
      width: 30px;
      height: 30px;
      font-size: 10px;
    }
    .c-pagination .item.prev {
      margin-right: 10px;
    }
    .c-pagination .item.next {
      margin-left: 10px;
    }
  }
/* End PAGINATION */
/**Commitment*/
.p-commitment .c-info{
  gap: 40px;
}
.p-commitment .c-info .--img{
  width: 530px;
}
.p-commitment .c-info .--img img{
  border-radius: 50px;
}
.p-commitment .c-info .--content{
  padding-top: 20px;
}
.p-commitment-deatils{
  background-color: rgba(16,159,68,0.05);
  border-radius: 50px;
  padding: 50px;
}
.p-commitment-deatils .--title{
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-commitment-deatils .--title::before{
  background-image: url('../images/common/ic-check-g.png');
  width: 19px;
  height: 19px;
  margin-top: -1px;
}
.p-commitment-deatils .--subtitle{
  border-bottom: 1px solid #ccc;
  padding: 0 15px 8px;
  display: inline-block;
}
@media(max-width: 768px){
  .p-commitment .c-info{
    gap: 10px;
  }
  .p-commitment .c-info .--img{
    width: 100%;
    order: 1;
  }
  .p-commitment .c-info .--content{
    order: 2;
  }
  .p-commitment-deatils{
    border-radius: 20px;
    padding: 20px;
  }
  .p-commitment-deatils .--title::before{
    width: 15px;
    height: 15px;
  }
}