/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root{
  --color-main: #000;
  --color-second:#927717;
  --color-third:#1F3B35;
  --color-cream:#F4F2EC;
  --color-hijau:#45A834;
}

body {
  font-family: 'Rubik', sans-serif;
  color: #444444;
  font: normal 400 15px/1.8em Rubik;
}

.text-center{
  text-align: center;
}

.text-utama{
  color: var(--color-second);
}

.text-hitam{
  color: var(--color-main);
}

.bg-cream{
  background-color: var(--color-cream);
}
    
/*** Panah Merah ***/
@media screen and (max-width: 768px) {
    .arrow {
        left: 50%;
    }
    .arrow2 {
        left: 20%;
    }
    .arrow span {
        width: 25px;
        height: 25px;
    }
    .arrow2 span {
        width: 25px;
        height: 25px;
    }
}

@media screen and (min-width: 992px) {
    .arrow {
        left: 60%;
    }
    .arrow2 {
        left: 25%;
    }
    .arrow span {
        width: 1.5vw;
        height: 1.5vw;
    }
    .arrow2 span {
        width: 1.5vw;
        height: 1.5vw;
    }
}

.arrow {
    position: relative;
    top: 50%;
    transform: translate(-50%, -50%);
    transform: rotate(45deg);
    cursor: pointer;
}

.arrow span {
    display: block;
    border-bottom: 5px solid red;
    border-right: 5px solid red;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

.arrow2 {
    position: relative;
    top: 50%;
    transform: translate(-50%, -50%);
    transform: rotate(-45deg);
    cursor: pointer;
}

.arrow2 span {
    display: block;
    border-bottom: 5px solid red;
    border-right: 5px solid red;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.arrow2 span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow2 span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/*** Mouse Scroll ***/
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .mouse-scroll {
        bottom: 75px;
    }
}

.mouse-scroll {
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}

.mouse-scroll .mouse {
  height: 46px;
  width: 28px;
  border-radius: 16px;
  border: 2px solid #000;
}

.mouse-scroll .mouse-in {
  height: 9px;
  width: 2px;
  display: block;
  margin: 8px auto;
  background: #000;
  position: relative;
}

.mouse-scroll .mouse-in {
  -webkit-animation: animated-mouse 1.2s ease infinite;
  animation: animated-mouse 1.2s ease infinite;
}

.mouse-scroll span {
  display: block;
  width: 7px;
  height: 7px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  margin: 0 0 5px 10px;
}

.mouse-scroll .down-arrow-1 {
  margin-top: 8px;
}

.mouse-scroll .down-arrow-1,
.mouse-scroll .down-arrow-2,
.mouse-scroll .down-arrow-3 {
  -webkit-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
}

.mouse-scroll .down-arrow-1 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.mouse-scroll .down-arrow-2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.mouse-scroll .down-arrow-3 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@-webkit-keyframes animated-mouse {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@keyframes animated-mouse {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

/*** Back To Down ***/
#scrollButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.back-to-down {
    position: fixed;
    right: 24px;
    bottom: 30px;
    display: flex;
    width: 35px;
    /*height: 45px;*/
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.field {
	display: block;
	align-items: center;
	justify-content: space-around;
	width: 200px;
	bottom: 30px;
}

.mouse {
	width: 30px;
	height: 70px;
	border: 3px solid #333;
	border-radius: 60px;
	position: relative;
	&::before {
		content: '';
		width: 12px;
		height: 12px;
		position: absolute;
		top: 10px;
		left: 50%;
		transform: translateX(-50%);
		background-color: #333;
		border-radius: 50%;
		opacity: 1;
		animation: wheel 2s infinite;
		-webkit-animation: wheel 2s infinite;
	}
}

@keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}

@-webkit-keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}

/*** Galeri Start ***/
.galeri-item .progress {
  height: 5px;
  border-radius: 0;
  overflow: visible;
}

.galeri-item .progress .progress-bar {
  position: relative;
  overflow: visible;
  width: 0px;
  border-radius: 0;
  transition: 5s;
}

.galeri-item .progress .progress-bar span {
  position: absolute;
  top: -7px;
  right: 0;
  width: 40px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--color-main);
  color: #FFFFFF;
}

.galeri-item .galeri-overlay {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  overflow: hidden;
  opacity: 0;
  transition: .5s;
}

.galeri-item:hover .galeri-overlay {
  height: 100%;
  opacity: 1;
}

@media screen and (max-width: 768px) {
    .galeri-carousel .owl-nav {
        /*width: 300px;*/
        /*bottom: 50px;*/
        display: none;
    }
    
    .galeri-carousel:hover .owl-nav {
        /*width: 360px;*/
        display:none;
    }
}

@media screen and (min-width: 1200px) {
    .galeri-carousel .owl-nav {
        width: 1200px;
        bottom: 90px;
    }
    
    .galeri-carousel:hover .owl-nav {
        width: 1150px;
    }
}

.galeri-carousel .owl-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.galeri-carousel:hover .owl-nav {
    opacity: 1;
}

.galeri-carousel .owl-nav .owl-prev,
.galeri-carousel .owl-nav .owl-next {
    font-size: 30px;
    color: var(--color-main);
    background-color: rgba(255, 255, 255, .5);
    padding: 10px;
    border-radius: 30%;
}

.galeri-carousel .owl-nav .owl-prev:hover,
.galeri-carousel .owl-nav .owl-next:hover {
    color: var(--color-second);
    background-color: white;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rubik', sans-serif;
}

h1, h2, h3, h4, h5, h6, .heading-text {
  font-family: Rubik;
  font-weight: 700;
  font-style: normal;
}



@media screen and (min-width: 1200px) {
  .img-section1{
    height: 500px;
  }
  section{
    padding: 60px 0;
  }
}

@media screen and (max-width: 768px) {
  .img-section1{
    height: 300px;
  }
  section{
    padding: 30px 0;
  }
  .wrap-header p{
      margin-top: 20px;
  }
  .margin-mobile-bt{
      padding-top: 30px;
      margin-bottom: 50px;
  }
  .py-3-mobile{
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
  }
  .fs-mobile{
      font-size: 14px;
  }
  .font-desk h3{
      font-size: 20px;
  }
  .mb-5-mobile{
      margin-bottom: 30px;
  }
}

.font-desk h3{
  color: var(--color-second);
  padding-bottom: 10px;
  padding-left: 15px;
}

.font-desk li{
  padding: 0;
  font-size: 20px;
}

.rounded{
  border-radius:50%;
}

.rounded-small{
  border-radius:8px;
}

.custom-shape-divider-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 110px;
}

.custom-shape-divider-bottom .shape-fill {
  fill: #FFEEF8;
}

.fs-10{
  font-size:10px !important;
}
.fs-11{
  font-size:11px !important;
}
.fs-12{
  font-size:12px !important;
}
.fs-13{
  font-size:13px !important;
}
.fs-14{
  font-size:14px !important;
}
.fs-15{
  font-size:15px !important;
}
.fs-16{
  font-size:16px !important;
}
.fs-17{
  font-size:17px !important;
}
.fs-18{
  font-size:18px !important;
}
.fs-19{
  font-size:19px !important;
}
@media screen and (min-width: 992px) {
    .fs-20{
      font-size:20px !important;
    }
}
.fs-21{
  font-size:21px !important;
}
.fs-22{
  font-size:22px !important;
}
.fs-23{
  font-size:23px !important;
}
.fs-24{
  font-size:24px !important;
}
.fs-25{
  font-size:25px !important;
}
.fs-30{
  font-size:30px !important;
}
.fs-default{
  font-size:14px;
}
.fs-medium{
  font-size:18px;
}
.fs-large{
  font-size:22px;
}
.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-7 {
  margin-top: 7rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.justify-content-center{
  justify-content:center;
}
.w-100{
  width:100%;
}
.center{
  text-align:center;
}
.bold{
  font-weight:bold;
}
.bg-cover{
  background-size:cover;
}
.main-color{
  color: var(--color-main);
}
.flex{
  display:flex;
}
.align-center{
  align-items:center;
}
.overflow-hidden {
  overflow: hidden!important;
}
.mb-30{
  margin-bottom:30px;
}
.mb-50{
  margin-bottom:50px;
}
.mb-60{
  margin-bottom:60px;
}
.pt-60{
  padding-top:60px;
}
.pb-60{
  padding-bottom:60px;
}
.pb-100{
    padding-bottom:100px;
}
.pt-30{
  padding-top:30px;
}
.pb-30{
  padding-bottom:30px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
@media(max-width:768px){
  .fs-default{
    font-size:14px !important;
  }
  .fs-medium{
    font-size:18px !important;
  }
  .fs-large{
    font-size:22px !important;
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Landing Page Mulia Arsitek
--------------------------------------------------------------*/
@media screen and (min-width: 992px) {
    .wrap-header p{
      font-size: 20px;
      /* color: var(--color-main); */
      line-height: 1.2;
    }
}
.wrap-header h1{
  font-size:30px;
  /* color: var(--color-main); */
}
.text-soft-primary {
  color: transparent;
}
.divider:after {
  content: "";
  width: 100%;
  height: 5px;
  background: currentColor;
  display: block;
  margin-top: -5px;
}
.bg-cream{
  background-color:#FDFFF5;
}
.bg-white{
  background-color: #ffffff;
}
.wrap-check span{
  font-weight:bold;
  color: var(--color-main);
}

.wrap-check i{
  font-weight:bold;
  color: var(--color-main);
}
.wrap-check.failed i{
  font-weight:bold;
  color: var(--color-hijau);
}
.rotate{
  transform: rotate(180deg);
}
.section-titlex h4 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}
.section-titlex h4:before, .section-titlex h4:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-second);
  display: inline-block;
}
.section-titlex h4, .section-titlex  h3{
  color: var(--color-main)
}
.section-titlex  h3{
  font-size:25px;
}
.section-titlex h4{
  font-size:34px;
}
.section-titlex h4:before {
  margin: 0 15px 10px 0;
}
.section-titlex h4:after {
  margin: 0 0 10px 15px;
}
.wrap-why{

}
/* .wrap-why .why-img{
  background-color:var(--color-main);
  border-radius:50%;
  height: 80px;
  width: 80px;
} */
.wrap-why .why-img img{
  width:80px;
}
.justify-center{
  justify-content:center;
}
.wrap-profil p{
  color: var(--color-third);
  font-size:15px;
  text-align: justify;
}
.justify{
  text-align: justify;
}
.text-segera{
  font-weight:400;
}
.text-segera span{
  font-weight:bold;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -.01rem;
  color: #60697b;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 2px solid transparent;
  box-sizing: border-box;
  transform: translateY(0);
  padding: 0.5rem 1.2rem;
  font-size: .8rem;
  transition: all .2s ease-in-out;
}
.rounded-medium{
  border-radius:30px;
}
.btn-success{
  color: #fff;
  background-color: var(--color-hijau);
  border-color: var(--color-hijau);
}
.btn-success:hover{
  color: #fff;
  background-color: var(--color-second);
  border-color: var(--color-second);
}

.btn i{
  border-radius: 20px;
  background: #fff;
  color: var(--color-hijau);
  padding: 10px;
  position: absolute;
  left: 10px;
}

.btn i :hover{
  color: var(--color-second);
}

.relative{
  position:relative;
}

.img-testi{
    height: 100px;
    overflow: hidden;
    border-radius: 32px;
    width: 80px;
    border: 3px solid var(--color-main);
    position: absolute;
    top: -15%;
    left: 10px;
}
.card-testimoni{
    background:white;
    border-radius:10px;
    padding:10px 20px;
}
.card-testimoni h4{
    background:var(--color-main);
    border-radius:20px;
    color:white;
    padding:5px 10px;
}
.wrap-rate i{
    color:gold;
    font-size:10px;
    line-height:1.2;
}
.wrap-rate{
     line-height:1.2;   
}
.card-testimoni .jbt{
    line-height:1.5;
}
.card-testimoni .desc p{
    font-size:11px;
    line-height:1.2;
    text-align: justify;
    height:80px;
}
.img-testi img{
    height:100px;
}
.slick-testi::before, .slick-testi::after {
    width: 95px;
}
.slick-testi::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    background: linear-gradient( to left, rgb(234 236 237) 0%, rgba(240, 248, 254, 0) 100% );
    z-index: 1;
}
.slick-testi::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient( to right, rgb(236 238 239) 0%, rgba(240, 248, 254, 0) 100% );
    z-index: 1;
}

.image-play {
  position: relative;
}
.image-play .icon-wrap {
  z-index: 6;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100px;
  height: 65px;
  background: #ff0707d9;
  border-radius: 20%;
}
.image-play .icon-wrap > span {
  font-size: 40px;
  color: #fff;
  position: absolute;
  -webkit-transform: translate(-35%, -50%);
  -ms-transform: translate(-35%, -50%);
  transform: translate(-35%, -50%);
  top: 50%;
  left: 50%;
}
.image-play .icon-wrap > i {
    font-size: 25px;
    color: #fff;
    position: absolute;
    -webkit-transform: translate(-35%, -50%);
    -ms-transform: translate(-35%, -50%);
    transform: translate(-35%, -50%);
    top: 50%;
    left: 50%;
}
.slick-porto::before, .slick-porto::after {
    width: 180px;
}
.slick-porto::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    background: linear-gradient( to left, rgb(255 255 255) 0%, rgba(240, 248, 254, 0) 100% );
    z-index: 1;
}
.slick-porto::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient( to right, rgb(255 255 255) 0%, rgba(240, 248, 254, 0) 100% );
    z-index: 1;
}

.updown{
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
.mobile{
    display:none;
}
@media(max-width:768px){
    .desktop{
        display:none;
    }
    .mobile{
        display:block;
    }
    .slick-porto::before, .slick-porto::after {
        width: 50px;
    }
    .slick-testi::before, .slick-testi::after {
        width: 50px;
    }
    .slick-porto img{
        width:100%;
        height:auto;
    }
    .wrap-why h5.fs-14{
        font-size:18px !important;
    }
    .wrap-why p.fs-12{
        font-size:14px !important;
    }
}

footer {
  position: relative;
  z-index: 1;
}
footer .mil-shape {
  z-index: 0;
}
footer .mil-footer-content {
  position: relative;
  /* background-color: rgb(250, 255, 255); */
  width: 100%;
  border-radius: 20px 20px 0 0;
  -webkit-box-shadow: 0px 4px 20px rgba(32, 79, 94, 0.05);
  box-shadow: 0px 4px 20px rgba(32, 79, 94, 0.05);
}
footer .mil-footer-content .mil-logo {
  padding: 0;
  width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .mil-footer-content .mil-logo img {
  width: 100%;
}
.mil-footer-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.mil-footer-menu ul li {
  margin-bottom: 25px;
  list-style-type: none;
}
.mil-footer-menu ul li:last-child {
  margin-bottom: 0;
}
.mil-footer-menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: rgb(32, 79, 94);
  font-weight: 500;
  letter-spacing: -1px;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-footer-menu ul li a:hover {
  color: rgb(236, 185, 52);
}
.mil-footer-menu ul li a:after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mil-footer-menu ul li.mil-active {
  pointer-events: none;
}
.mil-footer-menu ul li.mil-active a:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(236, 185, 52);
}
.mil-menu-list li {
  list-style-type: none;
  margin-bottom: 10px;
}
.mil-menu-list li:last-child {
  margin-bottom: 0;
}
.mil-menu-list li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgb(32, 79, 94);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-menu-list li a:hover {
  color: rgb(236, 185, 52);
}
.mil-social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.mil-social-icons li {
  list-style-type: none;
  margin-right: 10px;
}
.mil-social-icons li:last-child {
  margin-bottom: 0;
}
.mil-social-icons li a {
  background-color: var(--color-hijau);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  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;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-social-icons li a svg {
  width: 18px;
  height: 18px;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-social-icons li a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.mil-galeri-container {
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  border: 8px solid white;
  border-radius: 20px;
}
.mil-galeri-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all .4s ease;
}
.mil-galeri-container:hover img {
  transform: scale(1.15);
}
.mil-top-bar {
    background: #6f5b4f;
    color: white;
    padding: 10px 0;
    font-size: 13px;
}
.mil-top-bar .mil-top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mil-top-bar .mil-top-bar-content .sosmed-top {
    color: white;
    font-size: 15px;
    padding: 0 5px;
}