@charset "UTF-8";
.elevation-0 {
  box-shadow: none !important;
}

.elevation-1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

.elevation-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
}

.elevation-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23) !important;
}

.elevation-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22) !important;
}

.elevation-5 {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22) !important;
}

.pa-custom-checkbox .custom-control-label {
  font-size: 1.15rem;
}
.pa-custom-checkbox .custom-control-label::before, .pa-custom-checkbox .custom-control-label::after {
  top: 50%;
  transform: translateY(-50%);
}

.select2-container .select2-dropdown .select2-results__options .select2-results__options--nested .select2-results__option {
  padding-left: 1rem;
}

#video_container {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  display: flex;
  padding-bottom: 56.25%;
  /* 16:9 */
  align-items: center;
  justify-content: center;
  background: #3c464a;
  border-radius: 1rem;
}
#video_container .btn-play {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #F37125;
  background: #fff;
  height: 45px;
  width: 55px;
  border-radius: 0.2rem;
}
#video_container #video-load {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 99;
}
#video_container #video-dummy {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  border-radius: 1rem;
  opacity: 0;
}

html {
  position: relative;
  min-height: 100%;
  padding-bottom: 76px;
  font-family: "Raleway";
}

body {
  font-family: "Raleway", sans-serif !important;
}

.ftco-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: unset;
  padding: 0;
}
.ftco-footer .footer-text {
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid #4D4D4D;
}
.ftco-footer .footer-text img {
  height: 25px;
  padding-right: 1rem;
}
.ftco-footer .footer-text p {
  color: #4D4D4D;
}

#map {
  width: 100%;
}

@media (max-width: 991.98px) {
  #map {
    height: 300px !important;
    margin-top: 1rem;
  }
}
#cookies-container {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 0.5rem;
  background: rgba(238, 238, 238, 0.8);
  z-index: 20;
  color: #000;
}

/* PasifAmal Radio */
.pa-radio {
  display: inline-flex;
  width: 100%;
}
.pa-radio .pa-radio-item {
  flex: 1;
  background: #f5f5f5;
}
.pa-radio .pa-radio-item label {
  width: 100%;
  margin: 0;
  padding: 0.5rem;
  text-align: center;
}
.pa-radio .pa-radio-item input[type=radio]:empty,
.pa-radio .pa-radio-item input[type=checkbox]:empty {
  display: none;
}
.pa-radio .pa-radio-item input[type=radio]:empty ~ label,
.pa-radio .pa-radio-item input[type=checkbox]:empty ~ label {
  position: relative;
}
.pa-radio .pa-radio-item input[type=radio]:hover:not(:checked) ~ label,
.pa-radio .pa-radio-item input[type=checkbox]:hover:not(:checked) ~ label {
  cursor: pointer;
  background: #0f826f;
  color: #F5F5F5;
}
.pa-radio .pa-radio-item input[type=radio]:checked ~ label,
.pa-radio .pa-radio-item input[type=checkbox]:checked ~ label {
  background: #13AB92;
  color: #F5F5F5;
}
.pa-radio .pa-radio-item input[type=radio]:focus ~ label:before,
.pa-radio .pa-radio-item input[type=checkbox]:focus ~ label:before {
  box-shadow: 0 0 0 3px #999;
}

/* Mobile Style */
@media only screen and (max-width: 400px) {
  .pa-radio {
    display: inline-block;
  }
}
/* Kuesioner Radio */
.kuesioner-radio .kuesioner-item {
  position: relative;
}
.kuesioner-radio .kuesioner-item label {
  width: 100%;
  border-radius: 0.3rem;
  border: 1px solid #CCC;
  font-weight: 600 !important;
}
.kuesioner-radio .kuesioner-item input[type=radio]:empty {
  display: none;
}
.kuesioner-radio .kuesioner-item input[type=radio]:hover:not(:checked) ~ label {
  color: #888;
}
.kuesioner-radio .kuesioner-item input[type=radio]:hover:not(:checked) ~ label::before {
  content: "\2714";
  color: #C2C2C2;
}
.kuesioner-radio .kuesioner-item input[type=radio]:checked ~ label {
  color: #777;
}
.kuesioner-radio .kuesioner-item input[type=radio]:checked ~ label::before {
  content: "\2714";
  color: #333;
  background-color: #ccc;
}
.kuesioner-radio .kuesioner-item input[type=radio]:focus ~ label {
  color: #777;
}
.kuesioner-radio .kuesioner-item input[type=radio]:focus ~ label::before {
  box-shadow: 0 0 0 3px #999;
}
.kuesioner-radio .kuesioner-item input[type=radio] ~ label {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.3rem;
  padding-left: 3.5rem;
  font-size: 16px;
}
.kuesioner-radio .kuesioner-item input[type=radio] ~ label::before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  width: 2.5em;
  background: #D1D3D4;
  border-radius: 0.3rem 0 0 0.3rem;
}

/* Tab Pils */
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

/* Modal */
.modal-dialog {
  padding-top: 75px;
}

/* Float - Contact */
#float-contact {
  position: fixed;
  background: #13AB92;
  right: 2.5rem;
  bottom: 0;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  z-index: 9;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
}
#float-contact a {
  color: #fff;
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
}

/* Share */
.share-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.share-container a {
  flex: 1;
  align-self: center;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem;
  background: #4d4d4d;
  margin: 0.5rem;
  line-height: 1rem;
  border-radius: 0.25rem;
  display: flex;
  color: #fff;
}
.share-container a i {
  margin-right: 0.5rem;
}
.share-container a.share-facebook {
  background: #3b5998;
}
.share-container a.share-twitter {
  background: #55acee;
}
.share-container a.share-telegram {
  background: #5682a3;
}
.share-container a.share-whatsapp {
  background: #00bfa5;
}
.share-container a.share-linkedin {
  background: #0976b4;
}
.share-container a.share-reddit {
  background: #ff4500;
}

/* Style - Background */
.pabg-primary {
  background-color: #F37125 !important;
}

.pabg-primary_light {
  background-color: #F7803B !important;
}

.pabg-secondary {
  background-color: #13AB92 !important;
}

.pabg-blue {
  background-color: #2196F3 !important;
}

.pabg-green {
  background-color: #B5DE06 !important;
}

.pabg-grey {
  background-color: #999999 !important;
}

.pabg-grey_light {
  background-color: #F5F5F5 !important;
}

.pabg-grey_darker {
  background-color: #4D4D4D !important;
}

.pabg-grey_half {
  background-color: #B3B3B3 !important;
}

/* Style - Color */
.patext-primary {
  color: #F37125 !important;
}

.patext-primary_light {
  color: #F7803B !important;
}

.patext-secondary {
  color: #13AB92 !important;
}

.patext-blue {
  color: #2196F3 !important;
}

.patext-green {
  color: #B5DE06 !important;
}

.patext-grey {
  color: #999999 !important;
}

.patext-grey_light {
  color: #F5F5F5 !important;
}

.patext-grey_darker {
  color: #4D4D4D !important;
}

.patext-grey_half {
  color: #B3B3B3 !important;
}

/* Style - Outline */
.paoutline-primary {
  border-color: #F37125 !important;
}

.paoutline-primary_light {
  border-color: #F7803B !important;
}

.paoutline-secondary {
  border-color: #13AB92 !important;
}

.paoutline-blue {
  border-color: #2196F3 !important;
}

.paoutline-green {
  border-color: #B5DE06 !important;
}

.paoutline-grey {
  border-color: #999999 !important;
}

.paoutline-grey_light {
  border-color: #F5F5F5 !important;
}

.paoutline-grey_darker {
  border-color: #4D4D4D !important;
}

.paoutline-grey_half {
  border-color: #B3B3B3 !important;
}

/* Style - Aspect Ration */
/* Position child elements relative to this element */
.aspect-ratio-box {
  position: relative;
}

/* Create a pseudo element that uses padding-bottom to take up space */
.aspect-ratio-box::after {
  display: block;
  content: "";
  /* 16:9 aspect ratio */
  padding-bottom: 56.25%;
}

/* Image is positioned absolutely relative to the parent element */
.aspect-ratio-box img {
  /* Image should match parent box size */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Plugins - Smoothproducts */
.sp-wrap {
  display: flex !important;
  flex-wrap: wrap;
  flex-direction: column;
}
.sp-wrap .sp-large {
  flex: 1;
  width: auto;
  overflow: hidden;
  height: auto;
}
.sp-wrap .sp-thumbs {
  display: flex;
  flex-direction: column;
  flex-flow: row wrap;
  min-height: 75px;
}
.sp-wrap .sp-thumbs a {
  flex: 20%;
  width: 100%;
  height: 100%;
  padding: 1px;
  max-width: 100%;
}

.pa-link {
  display: block;
  color: #000;
}
.pa-link:hover {
  color: #F37125 !important;
}

/* Style - Button */
.btn.pabg-primary:hover {
  background-color: #D8631F !important;
}
.btn.pabg-primary_light:hover {
  background-color: #E07435 !important;
}
.btn.pabg-secondary:hover {
  background-color: #108C78 !important;
}
.btn.pabg-blue:hover {
  background-color: #1F83D3 !important;
}
.btn.pabg-green:hover {
  background-color: #99BC04 !important;
}
.btn.pabg-grey:hover {
  background-color: #838181 !important;
}
.btn.pabg-grey_light:hover {
  background-color: #EAEAEA !important;
}
.btn.pabg-grey_darker:hover {
  background-color: #363636 !important;
}
.btn.pabg-grey_half:hover {
  background-color: #848484 !important;
}

btn:disabled {
  cursor: not-allowed;
}

/* Style - Heading Section */
.heading-section h1, .heading-section h2, .heading-section h3, .heading-section h4, .heading-section h5, .heading-section h6 {
  color: #4D4D4D;
}

/* Style - Pagination */
.pa-pagination ul {
  padding: 0;
  margin: 0;
}
.pa-pagination ul li {
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 400;
}
.pa-pagination ul li a, .pa-pagination ul li span {
  color: #999999;
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid #999999;
}
.pa-pagination ul li a.disabled, .pa-pagination ul li span.disabled {
  background: #4D4D4D;
  cursor: not-allowed;
}
.pa-pagination ul li a:not(.disabled):hover, .pa-pagination ul li span:not(.disabled):hover {
  background: #108C78;
  color: #fff;
}
.pa-pagination ul li.active a, .pa-pagination ul li.active span {
  background: #13AB92;
  color: #fff;
  border: 1px solid transparent;
}

/* Style - Modal System Login */
#sysLogin .wr-logo {
  height: 75px;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  margin: 0 auto;
}

/* Style - Accordion */
.accordion a:not(.collapsed) .icon {
  transform: rotate(180deg);
}

/* Style - Slideshow */
.slider-text h1 {
  font-size: 38px;
}
.slider-text .subheading {
  font-size: 20px;
  font-weight: 600;
}

/* Style - Small Box */
.small-box {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
  display: block;
  position: relative;
  padding: 2rem;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}
.small-box > .inner {
  color: #fff;
  z-index: 10;
}
.small-box > .inner span {
  display: block;
  font-size: 18px;
  font-weight: 600;
}
.small-box > .inner span.stats-counter {
  font-size: 30px;
}
.small-box > .icon img {
  height: 75px;
  margin-bottom: 0.5rem;
}
.small-box > .icon .overlay {
  position: absolute;
  content: "";
  top: -1rem;
  right: -3rem;
  height: 175px;
  width: 175px;
  filter: grayscale(100%) brightness(0.5);
  transform: rotate(25deg);
  opacity: 0.4;
  z-index: -1;
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
}

.box-user {
  padding: 1rem;
  border-radius: 0.5rem;
  height: unset;
  margin-bottom: 1rem;
}
.box-user img {
  height: 50px;
  padding-right: 1rem;
}
.box-user span {
  color: #1F83D3;
  font-size: 20px;
  font-weight: 600;
}

/* Style - Navbar */
.ftco_navbar {
  top: 0;
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent) !important;
}
.ftco_navbar.scrolled {
  padding: 0.5rem 1rem;
}

@media (max-width: 991.98px) {
  .ftco_navbar {
    background: #000000 !important;
  }
}
.navbar .navbar-logo {
  height: 45px;
}

.ftco-navbar-light {
  z-index: 1029;
}
.ftco-navbar-light.pa-navbar .navbar-nav > .nav-item.login-nav {
  display: flex;
  align-items: center;
}
.ftco-navbar-light.pa-navbar .navbar-nav > .nav-item.login-nav .login-btn {
  background-color: #F37125 !important;
  padding: 0.5rem 1rem !important;
  border: unset !important;
}
.ftco-navbar-light.pa-navbar .navbar-nav > .nav-item.login-nav .login-btn:hover {
  background-color: #E07435 !important;
  color: #fff !important;
}
.ftco-navbar-light.pa-navbar .navbar-nav > .nav-item:hover .nav-link {
  color: #F37125 !important;
}
.ftco-navbar-light.pa-navbar .navbar-nav > .nav-item > .nav-link {
  text-transform: uppercase;
}
.ftco-navbar-light.pa-navbar .navbar-nav > .nav-item > .nav-link .icon {
  font-size: 20px;
  vertical-align: middle;
}
.ftco-navbar-light.pa-navbar .navbar-nav > .nav-item .dropdown-menu {
  margin: 0;
}
.ftco-navbar-light.pa-navbar .navbar-nav > .nav-item .dropdown-menu .dropdown-item .nav-link {
  color: #F37125;
  padding: 0;
}

/* Step Section */
#step-section {
  position: relative;
  background: #F37125;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  padding: 1rem 0 !important;
  overflow: hidden;
}
#step-section::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 15rem;
  bottom: -2rem;
  left: -1rem;
  background-image: url("../images/extra/extra.png");
  background-size: cover;
  background-position: right;
}
#step-section .heading-section h1 {
  color: #fff !important;
  font-weight: 700;
}

/* Testimonial Section */
#testimonial-section {
  padding: 2rem 0 !important;
}
#testimonial-section .heading-section h1 {
  font-weight: 600;
  font-size: 33px;
}
#testimonial-section .testimonial-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#testimonial-section .testimonial-wrapper .testimonial-message {
  text-align: center;
  display: flex;
}
#testimonial-section .testimonial-wrapper .testimonial-person {
  display: inline-flex;
  flex-direction: column;
  padding: 0.5rem 2rem;
  background: #F37125;
  color: #F5F5F5;
  min-width: 10rem;
  width: auto;
  margin-top: 1.5rem;
  align-items: center;
  border-radius: 4rem;
}
#testimonial-section .testimonial-wrapper .testimonial-person .testimonial-name {
  font-size: 20px;
  font-weight: 500;
}
/* Project Section */
#project-section {
  padding: 2rem 0 !important;
}
#project-section .heading-section h1 {
  font-weight: 600;
  font-size: 33px;
}
#project-section .project-filter .form-control {
  height: unset !important;
  font-size: 16px;
  font-weight: 400;
  border: unset;
  color: #B3B3B3 !important;
}
#project-section .project-filter .list-item {
  list-style: none;
  padding: 0;
  margin: 0;
}
#project-section .project-filter .list-item li {
  border-bottom: 1px solid #b8b8b8;
  align-items: center;
}
#project-section .project-filter .list-item li .item-link {
  display: flex;
  padding: 1rem 0;
  align-items: center;
}
#project-section .project-filter .list-item li .item-link:hover {
  background: #b8b8b8;
}
#project-section .project-filter .list-item li:first-child {
  border-top: 1px solid #b8b8b8;
}
#project-section .project-filter .list-item li .list-img {
  padding: 0 1rem;
  width: 75px;
  text-align: center;
}
#project-section .project-filter .list-item li .list-img img {
  height: 35px;
  margin: 0 auto;
}
#project-section .project-filter.card {
  margin-bottom: 2rem;
  border: unset;
}
#project-section .project-filter.card .card-header {
  background: #F37125;
}
#project-section .project-filter.card .card-header .card-title {
  margin-bottom: 0;
  color: #fff;
  font-size: 20px;
  margin-bottom: 0;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
}
#project-section .project-filter.card .card-body {
  background: #eee;
}
#project-section.project-show .project-location {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 0.5rem;
  padding-left: 1.5rem;
  padding-bottom: 0.5rem;
  font-size: 14px;
  text-transform: uppercase;
}
#project-section.project-show .project-location::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/extra/extra-location.png");
  background-size: contain;
  background-repeat: no-repeat;
}
#project-section.project-show .project-location span {
  font-size: 13px;
}
#project-section.project-show .project-title {
  color: #4D4D4D;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
#project-section.project-show .project-progress .progress-title {
  color: #4D4D4D;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1rem;
}
#project-section.project-show .project-progress .progress {
  height: 0.5rem;
}
#project-section.project-show .project-progress .progress .progress-bar {
  background: #13AB92;
}
#project-section.project-show .project-progress .project-detail {
  display: flex;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}
#project-section.project-show .project-progress .project-detail .detail-progress {
  margin-right: auto;
}
#project-section.project-show .project-progress .project-detail .detail-progress:last-child {
  margin-right: unset;
  margin-left: auto;
  text-align: right;
}
#project-section.project-show .project-progress .project-detail .detail-progress span {
  color: #4D4D4D;
  display: block;
  margin-bottom: -0.5rem;
}
#project-section.project-show .project-progress .project-detail .detail-progress span:first-child {
  font-size: 14px;
}
#project-section.project-show .project-progress .project-detail .detail-progress span:last-child {
  font-weight: 600;
  font-size: 20px;
}
#project-section.project-show .small-box.nazhir-project {
  display: flex;
  padding: 1rem;
  background: #2196F3;
  color: #fff;
  border-radius: 0.5rem;
  position: relative;
  overflow: unset;
  z-index: unset;
  flex-direction: column;
  height: unset;
}
#project-section.project-show .small-box.nazhir-project .nazhir-info {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
#project-section.project-show .small-box.nazhir-project .nazhir-info img.nazhir-pict {
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
#project-section.project-show .small-box.nazhir-project .nazhir-info .box-content {
  padding: 0 1rem;
  align-self: center;
}
#project-section.project-show .small-box.nazhir-project .nazhir-info .box-content span:first-child {
  display: flex;
  font-size: 16px;
}
#project-section.project-show .small-box.nazhir-project .nazhir-info .box-content span:first-child img {
  height: 15px;
  align-self: center;
  padding: 0 0.5rem;
}
#project-section.project-show .small-box.nazhir-project .nazhir-info .box-content span:last-child {
  font-size: 13px;
  font-weight: lighter;
  font-style: italic;
  opacity: 0.5;
}
#project-section.project-show .small-box.nazhir-project .nazhir-pic {
  width: 100%;
  padding: 0.5rem 1rem;
  display: block;
  background: #1973bb;
  color: #fff;
  border-radius: 0.5rem;
}
#project-section.project-show .small-box.nazhir-project .nazhir-pic p {
  margin: 0;
}
#project-section.project-show .small-box.nazhir-project .nazhir-pic a {
  color: #ffdd1f !important;
}
#project-section.project-show .small-box.nazhir-project .nazhir-profile {
  padding-top: 1rem;
}
#project-section.project-show .small-box.nazhir-project .nazhir-profile .profile-detail {
  width: 100%;
  padding: 0.5rem 1rem;
  display: block;
  background: #1973bb;
  color: #fff;
  border-radius: 0.5rem;
}
#project-section.project-show .small-box.nazhir-project .nazhir-profile .profile-detail .info-detail {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#project-section.project-show .small-box.nazhir-project .nazhir-profile .profile-detail .info-detail:last-child {
  margin-bottom: unset;
  border-bottom: unset;
}
#project-section.project-show .small-box.nazhir-project .nazhir-profile .profile-detail .info-detail span {
  display: block;
}
#project-section.project-show .small-box.nazhir-project .nazhir-profile .profile-detail .info-detail span:first-child {
  font-size: 14px;
  color: #eee;
  line-height: 1.5;
  opacity: 0.75;
}
#project-section.project-show .small-box.nazhir-project .nazhir-profile .profile-detail .info-detail span:last-child {
  font-size: 18px;
  color: #fff;
  opacity: 1;
}
#project-section.project-show .small-box.nazhir-project .nazhir-profile .profile-detail .info-detail span a {
  color: #fff !important;
  text-decoration: underline;
}
#project-section.project-show .small-box.nazhir-project .nazhir-links {
  justify-content: center;
  display: flex;
  padding-top: 0.5rem;
  font-size: 13px;
  opacity: 0.75 !important;
  margin: 0;
}
#project-section.project-show .small-box.nazhir-project .nazhir-links a {
  color: #fff;
}
#project-section.project-show .document-project {
  display: flex;
  align-items: center;
}
#project-section.project-show .document-project .file-info, #project-section.project-show .document-project .file-action {
  flex: 1;
}
#project-section.project-show .document-project .file-info {
  font-size: 18px;
}
#project-section.project-show .detail-button {
  flex-direction: row;
  align-items: stretch;
}
#project-section.project-show .detail-button .btn {
  flex: 1;
  height: 100%;
  background: #F37125;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
#project-section.project-show .detail-button .btn:hover {
  background: #D8631F !important;
}
#project-section.project-show .detail-button .btn.pabg-primary:hover {
  background: #D8631F !important;
}
#project-section.project-show .detail-button .btn.pabg-secondary:hover {
  background: #108C78 !important;
}
#project-section.project-show .detail-button .btn:first-child {
  margin-right: 0.5rem;
}
#project-section.project-show .detail-button .btn:last-child {
  margin-left: 0.5rem;
}
#project-section.project-show .desc-text {
  color: #F37125;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
}
#project-section.project-show .project-desc .desc-info {
  display: flex;
  margin-bottom: 1rem;
}
#project-section.project-show .project-desc .desc-info h2 {
  color: #F37125;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  margin: 0;
}
#project-section.project-show .project-desc .desc-info span {
  color: #4D4D4D;
  margin-left: auto;
  font-weight: 200;
}
#project-section.project-show .project-desc .desc-content {
  position: relative;
  overflow: hidden;
  padding-bottom: 0rem;
  transition: all 0.5s;
  color: #4D4D4D;
}
#project-section.project-show .project-desc .desc-content.has-more {
  height: 250px;
}
#project-section.project-show .project-desc .desc-content.has-more.toggle {
  padding-bottom: 2rem;
}
#project-section.project-show .project-desc .desc-content.has-more.toggle::before {
  height: 0rem;
}
#project-section.project-show .project-desc .desc-content.has-more::before {
  position: absolute;
  content: "";
  background: linear-gradient(0deg, white 10%, transparent);
  bottom: 0;
  width: 100%;
  height: 10rem;
  transition: all 0.5s;
}
#project-section.project-show .project-desc .desc-content.has-more .more {
  width: 100%;
  text-align: center;
  color: #F37125;
  position: absolute;
  bottom: 0;
  display: block;
}
#project-section.project-show .project-desc .desc-content .more {
  display: none;
}
#project-section.project-show .project-wakaf .section-title {
  font-weight: 600;
  font-size: 24px;
}
#project-section.project-show .project-wakaf .wakaf-container .wakaf-item {
  display: flex;
  padding: 1rem;
  border-bottom: 1px solid #999999;
}
#project-section.project-show .project-wakaf .wakaf-container .wakaf-item:last-child {
  border-bottom: unset;
}
#project-section.project-show .project-wakaf .wakaf-container .wakaf-item img {
  height: 60px;
  align-self: center;
}
#project-section.project-show .project-wakaf .wakaf-container .wakaf-item .wakaf-content {
  width: 100%;
  padding: 0.5rem 1rem;
}
#project-section.project-show .project-wakaf .wakaf-container .wakaf-item .wakaf-content .wakaf-name {
  color: #F37125;
  font-weight: 600;
  line-height: 1;
}
#project-section.project-show .project-wakaf .wakaf-container .wakaf-item .wakaf-content .wakaf-info {
  line-height: 1;
  display: flex;
}
#project-section.project-show .project-wakaf .wakaf-container .wakaf-item .wakaf-content .wakaf-info span:last-child {
  margin-left: auto;
  font-weight: 100;
  font-size: 14px;
}
#project-section .project-container .pa-link {
  color: #4D4D4D;
}
#project-section .project-container .project-item {
  position: relative;
  padding-bottom: 0.5rem;
}
#project-section .project-container .project-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 15px;
  width: calc(100% - 30px);
  height: 1px;
  background: #B3B3B3;
  z-index: 1;
}
#project-section .project-container .project-item .card {
  background-color: #fff;
  border: unset;
}
#project-section .project-container .project-item .card .card-header {
  background-color: #fff;
  border: unset;
  padding-left: unset;
  padding-right: unset;
}
#project-section .project-container .project-item .card .card-header .card-title {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: unset;
  text-transform: uppercase;
}
#project-section .project-container .project-item .card .card-header .project-info {
  display: flex;
}
#project-section .project-container .project-item .card .card-header .project-info .info-owner {
  margin-right: auto;
  color: #4D4D4D;
  display: table;
}
#project-section .project-container .project-item .card .card-header .project-info .info-owner span {
  display: table-cell;
  vertical-align: middle;
}
#project-section .project-container .project-item .card .card-header .project-info .info-owner .is-verified {
  position: relative;
  height: 15px;
  width: 15px;
}
#project-section .project-container .project-item .card .card-header .project-info .info-date {
  color: #4D4D4D;
  font-weight: 100;
  font-size: 13px;
  align-self: baseline;
  text-align: right;
  flex: 110px;
}
#project-section .project-container .project-item .card .card-body {
  padding: 0;
}
#project-section .project-container .project-item .card .card-footer {
  background-color: #fff;
  padding: 0;
  border: unset;
}
#project-section .project-container .project-item .card .card-footer .project-location {
  position: relative;
  padding-top: 0.5rem;
  padding-left: 1.5rem;
  padding-bottom: 0.5rem;
  font-size: 14px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
#project-section .project-container .project-item .card .card-footer .project-location::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/extra/extra-location.png");
  background-size: contain;
  background-repeat: no-repeat;
}
#project-section .project-container .project-item .card .card-footer .project-location span {
  font-size: 13px;
  color: #4D4D4D;
}
#project-section .project-container .project-item .card .card-footer .progress {
  height: 0.5rem;
}
#project-section .project-container .project-item .card .card-footer .progress .progress-bar {
  background: #13AB92;
}
#project-section .project-container .project-item .card .card-footer .project-detail {
  padding: 0.5rem 0;
  padding-top: 0;
}
#project-section .project-container .project-item .card .card-footer .project-detail .detail-progress {
  margin-right: auto;
}
#project-section .project-container .project-item .card .card-footer .project-detail .detail-progress span {
  color: #000;
  display: block;
  margin-bottom: -0.5rem;
}
#project-section .project-container .project-item .card .card-footer .project-detail .detail-progress span:first-child {
  font-size: 14px;
}
#project-section .project-container .project-item .card .card-footer .project-detail .detail-progress span:last-child {
  font-weight: 600;
  font-size: 20px;
}
#project-section .project-container .project-item .card .card-footer .detail-button {
  display: flex;
  align-items: center;
}
#project-section .project-container .project-item .card .card-footer .detail-button .btn {
  background: #F37125;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
#project-section .project-container .project-item .card .card-footer .detail-button .btn:hover {
  background: #D8631F !important;
}
#project-section .project-container .project-item .card .card-footer .detail-button .btn.pabg-primary:hover {
  background: #D8631F !important;
}
#project-section .project-container .project-item .card .card-footer .detail-button .btn.pabg-secondary:hover {
  background: #108C78 !important;
}

/* Wakaf Section */
.no-input .form-control, .no-input .input-group-text {
  background: #dadada !important;
}

#wakaf-section.wakaf-tabarru, #proceed-section.wakaf-tabarru {
  position: relative;
}
#wakaf-section.wakaf-tabarru .pa-radio, #proceed-section.wakaf-tabarru .pa-radio {
  display: block;
}
#wakaf-section.wakaf-tabarru .pa-radio .pa-radio-content, #proceed-section.wakaf-tabarru .pa-radio .pa-radio-content {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
#wakaf-section.wakaf-tabarru .pa-radio .pa-radio-content:not(:last-child), #proceed-section.wakaf-tabarru .pa-radio .pa-radio-content:not(:last-child) {
  margin-bottom: 1rem;
}
#wakaf-section.wakaf-tabarru .pa-radio .pa-radio-content .extra, #proceed-section.wakaf-tabarru .pa-radio .pa-radio-content .extra {
  height: 100%;
  position: absolute;
  right: 0;
  min-width: 3rem;
}
#wakaf-section.wakaf-tabarru .pa-radio .pa-radio-content .extra .btn, #proceed-section.wakaf-tabarru .pa-radio .pa-radio-content .extra .btn {
  width: 100%;
  height: 100%;
}
#wakaf-section .section-title, #proceed-section .section-title {
  font-weight: 600;
  color: #4d4d4d;
  font-size: 28px;
}
#wakaf-section .section-desc, #proceed-section .section-desc {
  color: #F37125;
  display: block;
  margin: 0.5rem 0;
  font-size: 20px;
  font-weight: 500;
}
#wakaf-section .tabarru-group, #proceed-section .tabarru-group {
  padding: 1rem;
  background: #f5f5f5;
  margin-top: 1rem;
}
#wakaf-section .tabarru-group label, #proceed-section .tabarru-group label {
  margin-bottom: 0;
}
#wakaf-section .wakaf-sum, #proceed-section .wakaf-sum {
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
#wakaf-section .wakaf-sum label, #proceed-section .wakaf-sum label {
  font-weight: 600;
  font-size: 14px;
  color: #4d4d4d;
}
#wakaf-section .wakaf-sum .wakaf-group, #proceed-section .wakaf-sum .wakaf-group {
  display: flex;
}
#wakaf-section .wakaf-sum .wakaf-group .optional, #proceed-section .wakaf-sum .wakaf-group .optional {
  font-weight: 300;
  font-style: italic;
}
#wakaf-section .wakaf-sum .wakaf-group .form-control, #proceed-section .wakaf-sum .wakaf-group .form-control {
  background: #f5f5f5;
  border: unset;
  font-weight: 700;
  color: #4d4d4d !important;
  text-align: right;
}
#wakaf-section .wakaf-sum .wakaf-group .form-control.is-invalid, #proceed-section .wakaf-sum .wakaf-group .form-control.is-invalid {
  border: 1px solid #dc3545 !important;
  padding-right: 12px;
  background-repeat: no-repeat;
  background-position: center right 0.5625rem;
  background-size: 1.125rem 1.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
}
#wakaf-section .wakaf-sum .wakaf-group .sum-multiple, #wakaf-section .wakaf-sum .wakaf-group .sum-equal, #proceed-section .wakaf-sum .wakaf-group .sum-multiple, #proceed-section .wakaf-sum .wakaf-group .sum-equal {
  width: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 0.75rem;
}
#wakaf-section .wakaf-sum .wakaf-group .sum-multiple, #proceed-section .wakaf-sum .wakaf-group .sum-multiple {
  background-image: url("../images/extra/extra-multiple.png");
}
#wakaf-section .wakaf-sum .wakaf-group .sum-equal, #proceed-section .wakaf-sum .wakaf-group .sum-equal {
  background-image: url("../images/extra/extra-equal.png");
}
#wakaf-section .wakaf-sum .wakaf-group .input-group-text, #proceed-section .wakaf-sum .wakaf-group .input-group-text {
  background: #f5f5f5;
  border: unset;
  font-weight: 700;
}
#wakaf-section .wakaf-sum .wakaf-group .wakaf-admin, #proceed-section .wakaf-sum .wakaf-group .wakaf-admin {
  width: 55% !important;
  margin-right: 1rem;
}
#wakaf-section .wakaf-sum .wakaf-group .wakaf-infaq, #proceed-section .wakaf-sum .wakaf-group .wakaf-infaq {
  width: calc(45% - 1rem) !important;
}
#wakaf-section .wakaf-account .nav-tabs, #proceed-section .wakaf-account .nav-tabs {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: unset;
  border-bottom: 3px solid #13AB92;
}
#wakaf-section .wakaf-account .nav-tabs .nav-link, #proceed-section .wakaf-account .nav-tabs .nav-link {
  flex: 1;
  text-align: center;
  background: #f5f5f5;
  color: #4d4d4d;
  font-weight: 600;
  font-size: 18px;
  border: unset;
  border-radius: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
#wakaf-section .wakaf-account .nav-tabs .nav-link.active, #proceed-section .wakaf-account .nav-tabs .nav-link.active {
  background: #13AB92;
  color: #fff;
}
#wakaf-section .wakaf-account .tab-content, #proceed-section .wakaf-account .tab-content {
  padding: 1rem;
  background: #f5f5f5;
}
#wakaf-section .wakaf-account .method-btn, #proceed-section .wakaf-account .method-btn {
  position: relative;
}
#wakaf-section .wakaf-account .method-btn .pay-logo, #proceed-section .wakaf-account .method-btn .pay-logo {
  position: absolute;
  left: 5rem;
  top: 50%;
  transform: translate(-50%, -50%);
}
#wakaf-section #extra_muwakif, #proceed-section #extra_muwakif {
  padding: 1rem;
  background: #f5f5f5;
  margin-top: 1rem;
}

#payment-modal .modal-dialog .modal-content {
  background: #f5f5f5;
  padding: 1rem;
}
#payment-modal .payment_method-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 1rem;
}
#payment-modal .payment-content {
  background: #fff;
  padding: 1rem;
  margin: 1rem 0;
}
#payment-modal .payment-content .content-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
#payment-modal .payment-content .content-desc {
  color: #F37125;
  font-size: 16px;
  font-weight: 100;
}
#payment-modal .payment-content .payment-method {
  position: relative;
}
#payment-modal .payment-content .payment-method.method-inline {
  display: flex;
  flex-wrap: wrap;
}
#payment-modal .payment-content .payment-method.method-inline label {
  margin: 0 auto;
  width: auto;
  border-bottom: unset;
}
#payment-modal .payment-content .payment-method.method-inline label .method {
  background-position: center;
  margin: 1rem auto;
  padding: 0 3rem;
}
#payment-modal .payment-content .payment-method label {
  position: relative;
  line-height: 1;
  padding: 1rem 0px;
  width: 100%;
  display: flex;
  border-bottom: 1px solid #ccc;
}
#payment-modal .payment-content .payment-method label img {
  margin-right: 1rem;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
#payment-modal .payment-content .payment-method label:last-child {
  padding-bottom: 0;
  border-bottom: unset;
}
#payment-modal .payment-content .payment-method label:hover {
  cursor: pointer;
}
#payment-modal .payment-content .payment-method label input[type=radio] {
  display: none;
}
#payment-modal .payment-content .payment-method label .method {
  height: 32px;
  width: 100%;
  max-width: 3rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  padding: 1rem;
  margin-right: 2rem;
}
#payment-modal .payment-content .payment-method label span {
  align-self: center;
}

/* Wakaf Section - Proceed */
#proceed-section .invoice .invoice-heading {
  display: block;
  text-align: center;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 20px;
  color: #4d4d4d;
  border-bottom: 1px solid #ccc;
  width: 15rem;
  margin: 0 auto;
}
#proceed-section .invoice .invoice-title {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  color: #4d4d4d;
}
#proceed-section .card {
  border: unset;
  border-radius: 0;
}
#proceed-section .proceed-nominal .nominal-title {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
}
#proceed-section .proceed-nominal .nominal-desc {
  margin-bottom: 0;
  text-align: center;
  font-weight: 300;
}
#proceed-section .proceed-nominal .price {
  position: relative;
  text-align: center;
  display: block;
  padding: 1rem 0;
  font-size: 30px;
  color: #4d4d4d;
  font-weight: 600;
}
#proceed-section .proceed-nominal .price .unique {
  color: #F37125;
}
#proceed-section .proceed-nominal .price .price-copy {
  position: absolute;
  right: 0;
  font-size: 16px;
  top: 50%;
  transform: translateY(-50%);
}
#proceed-section .alert {
  position: relative;
  color: #4d4d4d !important;
  font-weight: 100;
}
#proceed-section .alert .alert-pointer {
  position: absolute;
  border-bottom: solid 1rem #F7803B;
  border-left: solid 1rem transparent;
  border-right: solid 1rem transparent;
  width: 0;
  height: 0;
  top: -1rem;
  left: 2rem;
}
#proceed-section .alert strong {
  font-weight: 700;
}
#proceed-section .proceed-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#proceed-section .proceed-list li {
  display: flex;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
#proceed-section .proceed-list li:last-child {
  padding-bottom: 0;
  border-bottom: unset;
}
#proceed-section .proceed-list li .list-detail {
  margin: 0;
  margin-right: auto;
}
#proceed-section .method-btn {
  position: relative;
  display: flex;
  width: 100%;
  background: #f5f5f5;
  border: 1px solid #ccc;
  font-weight: 600;
  color: #4d4d4d;
  padding: 0.5rem 0;
  justify-content: center;
  align-items: center;
}
#proceed-section .method-btn .pay-logo {
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#proceed-section .method-btn .method-copy {
  position: absolute;
  right: 1rem;
  font-size: 16px;
  top: 50%;
  transform: translateY(-50%);
}
#proceed-section .method-btn .qris {
  display: flex;
  flex-flow: column;
  align-items: center;
}
#proceed-section .method-btn .qris .pay-logo {
  position: relative;
  left: 0;
  top: 0;
  transform: unset;
}
#proceed-section .method-btn .qris img {
  margin: 1.5rem 0;
}
#proceed-section .method-btn .qris .method-show {
  position: relative;
  right: unset;
  top: unset;
  transform: unset;
}
#proceed-section .proceed-detail {
  padding-bottom: 1rem;
}
#proceed-section .proceed-detail .detail-info {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  line-height: 1.3;
}
#proceed-section .proceed-detail .detail-info-strong {
  text-align: center;
  display: block;
  font-weight: 600;
  font-size: 19px;
  color: #4d4d4d;
}
#proceed-section .proceed-share .share-title {
  display: block;
  text-align: center;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 24px;
  color: #4d4d4d;
}
#proceed-section .proceed-share .btn {
  display: block;
  text-align: center;
  width: 100%;
  margin: 1rem 0;
}
#proceed-section .proceed-share .btn:last-child {
  margin: 0;
}
#proceed-section .proceed-share .btn.share-fb {
  background: #3b5999;
  color: #fff;
}
#proceed-section .proceed-share .btn.share-wa {
  background: #26d367;
  color: #fff;
}
#proceed-section .proceed-accordion {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}
#proceed-section .proceed-accordion .card .card-header {
  background: transparent;
}
#proceed-section .proceed-accordion .accordion-title {
  font-weight: 700;
  font-size: 14px;
  color: #4d4d4d;
}

/* Contact Section */
#contact-section .contact-container {
  margin-top: 5rem;
}
#contact-section .contact-container .section-title {
  font-size: 24px;
  font-weight: 600;
  color: #4d4d4d;
}
#contact-section .contact-container .contact-list {
  display: flex;
}
#contact-section .contact-container .contact-list .list-img img {
  max-height: 75px;
  width: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  align-self: center;
}
#contact-section .contact-container .contact-list .list-content {
  margin-left: 1rem;
}
#contact-section .contact-container .contact-list .list-content .contact-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
}
#contact-section .contact-container .contact-list .list-content .contact-value {
  font-size: 12px;
  font-weight: 100;
}

/* Statistic Section */
#stats-section {
  padding: 2rem 0 !important;
}
#stats-section .heading-section h1 {
  font-weight: 600;
  font-size: 33px;
}

/* Information Section */
#information-section .information-support .support-img {
  height: 60px;
  margin: 1rem;
}
#information-section .information-support .support-img-long {
  width: 100%;
  height: unset;
  -o-object-fit: cover;
     object-fit: cover;
}
#information-section .partner-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
#information-section .partner-list .partner-item {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}
#information-section .partner-list .partner-item .partner-title {
  position: relative;
  font-size: 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  justify-content: center;
}
#information-section .partner-list .partner-item .partner-title span {
  display: block;
  text-transform: uppercase;
}
#information-section .partner-list .partner-item .partner-image {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
#information-section .partner-list .partner-item .partner-image img {
  position: relative;
  position: relative;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  padding: 0 0.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

/* Exception Section */
#exception-section .exception-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
#exception-section .exception-wrapper .exception-icon {
  position: relative;
  padding: 4rem;
  margin-right: -2rem;
}
#exception-section .exception-wrapper .exception-icon::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #F7803B;
  z-index: 0;
  top: 0;
  left: 0;
  border-radius: 100%;
  opacity: 0.5;
}
#exception-section .exception-wrapper .exception-icon i {
  position: relative;
  font-size: 10rem;
  color: #fff;
}
#exception-section .exception-wrapper .exception-message {
  position: relative;
  width: 30rem;
}
#exception-section .exception-wrapper .exception-message .exception-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}
#exception-section .exception-wrapper .exception-message span {
  color: #000;
}

/* Faq Section */
#faq-section .faq-item {
  box-shadow: 0 -20px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 3rem 0;
}
#faq-section .faq-item .faq-card {
  border: unset;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}
#faq-section .faq-item .faq-card .card-header {
  position: relative;
  display: flex;
  background: #F37125;
  border: unset;
  padding: 1.5rem 4rem;
}
#faq-section .faq-item .faq-card .card-header:hover {
  cursor: pointer;
}
#faq-section .faq-item .faq-card .card-header .card-title {
  line-height: 1;
  color: #fff !important;
  font-size: 1.5rem;
}
#faq-section .faq-item .faq-card .card-header::before {
  position: absolute;
  content: "Q";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 3rem;
  padding: 0 1rem;
  color: #13AB92;
  opacity: 0.7;
}
#faq-section .faq-item .faq-card .card-body {
  position: relative;
  text-shadow: 0px 2px 3px #fff;
  font-size: 1rem;
  padding: 4rem 1rem 1rem 1rem;
  background: #eee;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
#faq-section .faq-item .faq-card .card-body::before {
  position: absolute;
  content: "Answer";
  top: 0;
  left: 1rem;
  color: #f37125;
  font-size: 3rem;
  opacity: 0.3;
  font-weight: 600;
  text-shadow: unset;
}
#faq-section .faq-item .faq-card .card-body > p {
  margin-bottom: 0;
}

.waqf-image {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.waqf-image img {
  position: relative;
  position: relative;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  padding: 0 0.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.waqf-image img.img {
  position: relative;
  height: 105px;
  width: auto;
}
.waqf-image img.img-small {
  position: relative;
  height: 75px;
  width: auto;
}

/* WAQF Section */
#waqf-section .waqf-header .waqf-image {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
#waqf-section .waqf-header .waqf-image img {
  position: relative;
  position: relative;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  padding: 0 0.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
#waqf-section .waqf-header .waqf-image img.img {
  position: relative;
  height: 105px;
  width: auto;
}
#waqf-section .waqf-item {
  box-shadow: 0 -20px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 3rem 0;
}
#waqf-section .waqf-item .faq-card {
  border: unset;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}
#waqf-section .waqf-item .faq-card .card-header {
  position: relative;
  display: flex;
  background: #F37125;
  border: unset;
  padding: 1.5rem 4rem;
}
#waqf-section .waqf-item .faq-card .card-header:hover {
  cursor: pointer;
}
#waqf-section .waqf-item .faq-card .card-header .card-title {
  line-height: 1;
  color: #fff !important;
  font-size: 1.5rem;
}
#waqf-section .waqf-item .faq-card .card-header::before {
  position: absolute;
  content: "Q";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 3rem;
  padding: 0 1rem;
  color: #13AB92;
  opacity: 0.7;
}
#waqf-section .waqf-item .faq-card .card-body {
  position: relative;
  text-shadow: 0px 2px 3px #fff;
  font-size: 1rem;
  padding: 4rem 1rem 1rem 1rem;
  background: #eee;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
#waqf-section .waqf-item .faq-card .card-body::before {
  position: absolute;
  content: "Answer";
  top: 0;
  left: 1rem;
  color: #f37125;
  font-size: 3rem;
  opacity: 0.3;
  font-weight: 600;
  text-shadow: unset;
}
#waqf-section .waqf-item .faq-card .card-body > p {
  margin-bottom: 0;
}

/* WAQFRAISER Section */
#waqfraiser-section .waqfraiser-container {
  box-shadow: 0 -20px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 3rem 0;
}
#waqfraiser-section .waqfraiser-container .waqfraiser-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #F37125;
  padding: 1rem;
  color: #F5F5F5;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
#waqfraiser-section .waqfraiser-container .waqfraiser-list .waqfraiser-pict {
  margin: 0 1rem;
}
#waqfraiser-section .waqfraiser-container .waqfraiser-list .waqfraiser-pict img {
  height: 100px;
  width: 100px;
}
#waqfraiser-section .waqfraiser-container .waqfraiser-list .waqfraiser-information .waqfraiser-name {
  font-weight: 600 !important;
}
#waqfraiser-section .waqfraiser-container .waqfraiser-list .btn-action {
  margin-left: auto;
  margin-right: 1rem;
}
#waqfraiser-section .waqfraiser-container .waqfraiser-profile {
  padding: 1rem;
  background: #F37125;
  color: #F5F5F5;
  border-radius: 1rem;
}
#waqfraiser-section .waqfraiser-container .waqfraiser-profile .header {
  display: flex;
}
#waqfraiser-section .waqfraiser-container .waqfraiser-profile .header .pict img {
  width: 100px;
  height: 100px;
}
#waqfraiser-section .waqfraiser-container .waqfraiser-profile .header .information {
  margin-left: 1.5rem;
}
#waqfraiser-section .waqfraiser-container .waqfraiser-profile .header .information .regist-number {
  position: relative;
  line-height: 1;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
#waqfraiser-section .waqfraiser-container .waqfraiser-profile .header .information h1 {
  font-weight: 600;
}
#waqfraiser-section .waqfraiser-container .waqfraiser-profile .body table {
  width: 100%;
  margin-top: 1rem;
  background: #c16525;
  border-radius: 0.5rem;
}
#waqfraiser-section .waqfraiser-container .waqfraiser-profile .body table td, #waqfraiser-section .waqfraiser-container .waqfraiser-profile .body table th {
  padding: 0.5rem 1rem;
}

/* Mobile Style */
@media only screen and (max-width: 425px) {
  #waqfraiser-section .waqfraiser-container .waqfraiser-list {
    flex-direction: column;
    text-align: center;
  }
  #waqfraiser-section .waqfraiser-container .waqfraiser-list .waqfraiser-pict {
    margin: 0 0.5rem;
  }
  #waqfraiser-section .waqfraiser-container .waqfraiser-list .waqfraiser-pict img {
    height: 70px;
    width: 70px;
  }
  #waqfraiser-section .waqfraiser-container .waqfraiser-list .waqfraiser-information .waqfraiser-name {
    font-weight: 500 !important;
  }
  #waqfraiser-section .waqfraiser-container .waqfraiser-list .btn-action {
    margin: 0 auto;
  }
}
/* Certificate Section */
#certificate-section .certificate-wrapper {
  background: #383d40;
}
#certificate-section .certificate-wrapper .certificate-title {
  margin: 0;
  color: #fff;
  padding: 1rem;
  font-size: 18px;
}
#certificate-section .certificate-wrapper .certificate-content {
  background: #575c5f;
  text-align: center;
  padding: 3rem 0;
  max-height: 450px;
  overflow: auto;
}

/* Nazhir Section */
/* Tablet Styles */
@media only screen and (min-width: 401px) and (max-width: 960px) {
  /* Plugins - Smoothproducts */
  .sp-wrap .sp-thumbs a {
    flex: 33.3%;
  }

  /* Modal */
  .modal-dialog {
    padding-top: 90px;
  }

  /* Navbar */
  .navbar {
    padding: 1rem;
  }
  .navbar.scrolled.awake .navbar-nav.navbar-social {
    border-top: 1px solid #F37125;
  }
  .navbar .navbar-nav.navbar-social {
    display: inline-block;
    border-top: 1px solid #fff;
    width: 100%;
    padding: 0;
  }
  .navbar .navbar-nav.navbar-social .nav-item {
    display: inline-block;
    margin: 0.5rem;
    margin-bottom: 0;
  }
  .navbar .navbar-nav.navbar-social .nav-item:first-child {
    margin-left: 0;
  }
  .navbar .navbar-nav.navbar-social .nav-item .nav-link {
    display: inline;
  }

  /* Project */
  #project-section.project-show .project-desc .desc-info {
    margin-top: 1rem;
  }
  #project-section .project-container .project-item::before {
    content: unset;
    width: 0;
    height: 0;
  }
  #project-section .project-container .project-item .card {
    border-bottom: unset;
  }

  /* Information Section */
  #information-section .information-support .support-img-long {
    width: unset;
    height: 50px !important;
  }
}
/* Mobile Style */
@media only screen and (max-width: 400px) {
  /* Plugins - Smoothproducts */
  .sp-wrap .sp-thumbs a {
    flex: 50%;
  }

  /* Modal */
  .modal-dialog {
    padding-top: 95px;
  }

  /* Navbar */
  .navbar {
    padding: 1rem;
  }
  .navbar.scrolled.awake .navbar-nav.navbar-social {
    border-top: 1px solid #F37125;
  }
  .navbar .navbar-nav.navbar-social {
    display: inline-block;
    border-top: 1px solid #fff;
    width: 100%;
    padding: 0;
  }
  .navbar .navbar-nav.navbar-social .nav-item {
    display: inline-block;
    margin: 0.5rem;
    margin-bottom: 0;
  }
  .navbar .navbar-nav.navbar-social .nav-item.login-nav {
    margin: 0;
    margin-top: 0.5rem;
  }
  .navbar .navbar-nav.navbar-social .nav-item.login-nav .login-btn {
    width: 100%;
  }
  .navbar .navbar-nav.navbar-social .nav-item:first-child {
    margin-left: 0;
  }
  .navbar .navbar-nav.navbar-social .nav-item .nav-link {
    display: inline;
  }

  /* Project */
  #project-section.project-show .detail-button {
    display: block !important;
  }
  #project-section.project-show .detail-button .btn {
    width: 100%;
    margin-bottom: 1rem !important;
  }
  #project-section.project-show .detail-button .btn:first-child, #project-section.project-show .detail-button .btn:last-child {
    margin: unset;
  }
  #project-section.project-show .project-progress .project-detail {
    flex-direction: column;
  }
  #project-section.project-show .project-progress .project-detail .detail-progress {
    width: 100%;
    text-align: left !important;
  }
  #project-section.project-show .project-wakaf .wakaf-container .wakaf-item .wakaf-content .wakaf-info {
    display: block;
  }
  #project-section .project-container .project-item::before {
    content: unset;
    width: 0;
    height: 0;
  }
  #project-section .project-container .project-item .card {
    border-bottom: unset;
  }
  #project-section .project-container .project-item .card .card-header .project-info {
    display: block;
  }
  #project-section .project-container .project-item .card .card-header .project-info .info-owner, #project-section .project-container .project-item .card .card-header .project-info .info-date {
    display: block;
  }
  #project-section .project-container .project-item .card .card-header .project-info .info-date {
    text-align: left;
    flex: unset;
  }
  #project-section .project-container .project-item .card .card-footer .project-detail {
    display: block;
  }
  #project-section .project-container .project-item .card .card-footer .project-detail .detail-progress {
    margin-bottom: 0.5rem;
  }
  #project-section .project-container .project-item .card .card-footer .project-detail .detail-button .btn {
    width: 100%;
  }

  /* Wakaf Section */
  #wakaf-section .wakaf-sum .wakaf-group .wakaf-admin {
    width: 100%;
    margin: 0;
  }
  #wakaf-section .wakaf-sum .wakaf-group .wakaf-infaq {
    width: 100%;
  }

  /* Proceed Section */
  #proceed-section .proceed-nominal .price {
    padding-top: 3rem;
  }
  #proceed-section .proceed-nominal .price .price-copy {
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
  #proceed-section .method-btn .pay-logo {
    left: 15%;
  }
  #proceed-section .method-btn .pay-logo img {
    width: 32px !important;
    height: 16px !important;
  }
  #proceed-section .method-btn .method-copy {
    font-size: 12px;
  }

  /* Contact Section */
  #contact-section .contact-container {
    margin-top: 2rem;
  }
  #contact-section .contact-container .contact-list {
    display: flex;
    margin: 0.5rem 0;
  }
  #contact-section .contact-container .contact-list .list-img img {
    max-height: 50px;
  }

  #certificate-section .certificate-wrapper .certificate-title {
    font-size: 16px;
  }
  #certificate-section .certificate-wrapper .certificate-content {
    padding: 0.5rem;
    max-height: 350px;
  }

  /* Nazhir Section */
  #nazhir-section .small-box.nazhir-detail.nazhir-container img.nazhir-pict {
    left: 50%;
    transform: translateX(-50%);
  }
  #nazhir-section .small-box.nazhir-detail.nazhir-container .box-content .box-header {
    margin-left: 0;
    margin-top: 6rem;
  }

  /* Exception Section */
  #exception-section .exception-wrapper {
    flex-direction: column;
  }
  #exception-section .exception-wrapper .exception-icon {
    margin-right: unset;
  }
  #exception-section .exception-wrapper .exception-message {
    width: 100%;
  }
  #exception-section .exception-wrapper .exception-message .exception-link {
    display: flex;
    flex-direction: column;
  }
}