.text-utama {
  color: var(--bs-primary);
}

.text-kedua {
  color: var(--bs-secondary);
}

.text-ketiga {
  color: var(--bs-third);
}

.text-utama-gradient {
    background: linear-gradient(to right, var(--bs-primary), var(--bs-third), var(--bs-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-putih {
  color: white;
}

.text-hitam {
  color: black;
}

.bg-utama {
  background: var(--bs-primary);
}

.bg-kedua {
  background: var(--bs-secondary);
}

.bg-utama-gradient {
  background: linear-gradient(to right, var(--bs-primary), var(--bs-third), var(--bs-primary));
}

.bg-gradient-2-hitam {
  background: linear-gradient(to right, black, var(--bs-secondary));
}

.bg-ketiga {
  background: var(--bs-third);
}

.bg-soft{
  background-color: #FBF8F3;
}

.bg-putih {
  background: white;
}

.bg-hitam {
  background: black;
}

.bg-card-yellow {
  background: linear-gradient(rgb(254,243,228,.8), rgb(254,243,228,.8)), url('../../../images/card.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-card-blue {
  background: linear-gradient(rgb(224,233,250,.8), rgb(224,233,250,.8)), url('../../../images/card.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-card-red {
  background: linear-gradient(rgb(250,230,231,.8), rgb(250,230,231,.8)), url('../../../images/card.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-card-ash {
  background: linear-gradient(rgb(240,240,248,.8), rgb(240,240,248,.8)), url('../../../images/card.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-cta {
  background: linear-gradient(rgb(13,29,96,.8), rgb(13,29,96,.6)), url('../../../images/kota.png');
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-size: contain;
}

.bg-flower-1 {
  background: url(../../../images/flower-1.png);
}

.bg-flower-2 {
  background: url(../../../images/flower-2.png);
}

.bg-flower-3 {
  background: url(../../../images/flower-3.png);
}

/* ==========================================
   SANDBOX BUTTON GLOW EFFECT
   ========================================== */

.btn-glow{
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: all .3s ease;
    animation: btnGlow 2s ease-in-out infinite;
}

/* Efek kilau */
.btn-glow::before{
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 45%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.75), transparent);
    transform: skewX(-25deg);
    animation: btnShine 2.5s linear infinite;
    pointer-events: none;
    z-index: 2;
}

/* Glow mengikuti warna button */
.btn-glow{
    --glow-color: rgba(242,212,105,.55);
}

.btn-primary.btn-glow{
    --glow-color: rgb(174,132,11,.55);
}

.btn-green.btn-glow{
    --glow-color: rgba(34,197,94,.55);
}

.btn-red.btn-glow{
    --glow-color: rgba(239,68,68,.55);
}

.btn-yellow.btn-glow{
    --glow-color: rgba(255,194,52,.60);
}

.btn-aqua.btn-glow{
    --glow-color: rgba(6,182,212,.60);
}

.btn-gradient.btn-glow{
    --glow-color: rgba(72, 209, 148,.60);
}

.btn-white.btn-glow{
    --glow-color: rgba(44, 147, 78,.60);
}

.btn-black.btn-glow{
    --glow-color: rgba(44, 147, 78,.60);
}

/* Animasi glow */
@keyframes btnGlow{
    0%,100%{
        box-shadow:
            0 0 10px var(--glow-color),
            0 0 20px rgba(0,0,0,0);
    }

    50%{
        box-shadow:
            0 0 20px var(--glow-color),
            0 0 40px var(--glow-color);
    }
}

/* Animasi kilau */
@keyframes btnShine{
    100%{
        left: 180%;
    }
}

.satisfy {
  font-family: "Satisfy", serif;
}

.bunga-1 {
  position: absolute;
  right: 20px;
  left: auto;
  bottom: 40px;
  width: 250px;
}

.bunga-1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .25;
}

@media only screen and (max-width: 600px) {
  .bunga-1 {
    position: absolute;
    right: 20px;
    left: auto;
    bottom: 550px;
    width: 150px;
  }
}

.bunga-2 {
  position: absolute;
  right: auto;
  left: 20px;
  bottom: 200px;
  width: 150px;
}

.bunga-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .25;
}

@media only screen and (max-width: 600px) {
  .bunga-2 {
    position: absolute;
    right: 0;
    left: -50px;
    top: 0;
    bottom: -800px;
    width: 250px;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid black;
}

th, td {
  text-align: left;
  padding: 16px;
}

tr:nth-child(even) {
  color: black;
  background-color: #DDDDDD;
}

.fz-10 { font-size: 10px; }
.fz-11 { font-size: 11px; }
.fz-12 { font-size: 12px; }
.fz-14 { font-size: 14px; }
.fz-16 { font-size: 16px; }
.fz-17 { font-size: 17px; }
.fz-18 { font-size: 18px; }
.fz-20 { font-size: 20px; }
.fz-22 { font-size: 22px; }
.fz-24 { font-size: 24px; }
.fz-26 { font-size: 26px; }
.fz-28 { font-size: 28px; }
.fz-30 { font-size: 30px; }
.fz-32 { font-size: 32px; }
.fz-34 { font-size: 34px; }
.fz-35 { font-size: 35px; }

.fz-fasilitas {
  font-size: 14px;
}

.fw-600 {
    font-weight: 600 !important;
}

.f-lecker {
    font-family: "Leckerli One", sans-serif;
}

.f-yellow {
  font-family: "Yellowtail", sans-serif;
}

@media (max-width:768px) {
  .fz-fasilitas {
      font-size: 12px;
  }
}

.judul-wisata {
  /* font-family: Bangers; */
  font-size: 25px;
  color: black;
}

@media (max-width: 768px) {
    .judul-wisata {
        font-size: 18px;
    }
}

.top-stop {
  scroll-margin: 60px;
}

.border-utama {
  --bs-border-opacity: 1;
  border-color: var(--bs-primary) !important;
}

.border-left-utama {
  border-left: 5px solid var(--bs-primary);
}

.border-left-kedua {
  border-left: 5px solid var(--bs-secondary);
}

.border-left-putih {
  border-left: 5px solid white;
}

.border-bottom-utama {
  border-color: var(--bs-primary) !important;
  border-radius: 10% 30%;
  border-bottom: 1px solid var(--bs-primary) !important;
}

.border-bottom-kedua {
  border-bottom: 1.5px solid var(--bs-secondary);
}

.scroll-top{
  scroll-margin: 70px;
}

.scroll {
	display: block;
	height: 80px;
	overflow: auto;
	margin-bottom: 15px;
    /* direction: rtl;
    text-align: left; */
}

@media (max-width: 768px) {
    .scroll {
        height: 80px;
    }
}

.simplescroll::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}
.simplescroll::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.1);
}
.simplescroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--bs-secondary);
}
.simplescroll::-webkit-scrollbar-thumb:hover {
    background: var(--bs-secondary);
}
.simplescroll::-webkit-scrollbar-thumb:active {
    background: var(--bs-secondary);
}

/* list style 02 */
.list-style-02 li { list-style: none; line-height: 30px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-align: start; -ms-flex-align: start; align-items: start; }
.list-style-02 li i { line-height: 30px; }

.cta-container {
  background: var(--bs-primary);
  color: white;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}

.cta-container .bg-image {
  position: absolute;
  filter: grayscale(1);
  z-index: 0;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.cta-container .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(11, 10, 74, 0.9) 0%,
    rgba(11, 10, 74, 0.9) 50%,
    rgba(11, 10, 74, 0.5) 100%
  );
}

.cta-container .overlay2 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(11, 10, 74, 0.9) 0%,
    rgba(239, 172, 40, 0.9) 50%,
    rgba(11, 10, 74, 0.4) 100%
  );
}

.cta-container .content {
  position: relative;
  z-index: 2;
}

.cta-container h2 {
  font-weight: 600;
}

.cta-container p {
  font-size: 0.9rem;
}

/* **** Slider Zoom Animate with Overlay Background **** */
.home-slider {
  /*height: calc(100vh - 140px) !important;*/
  height: 85vh;
}
.home-slider .slider-home {
  height: 100%;
  width: 100%;
}
.home-slider .slider-home .slider-home-item {
  height: 100%;
  position: relative;
}
.home-slider .slider-home .slider-home-item .background {
  position: absolute;
  inset: 0;
}
.home-slider .slider-home .slider-home-item .background:after {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(45deg, black 50%, transparent 50%);*/
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5));
  /*background: transparent;*/
}
.home-slider .slider-home .slider-home-item .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-slider .slider-home .slider-home-item .content {
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
}
.home-slider .slider-home .slider-home-item .content .sup-title {
  font-weight: 600;
}
.home-slider .slider-home .slider-home-item .content h1 {
  color: white;
  font-size: 60px;
}
.home-slider .slider-home .swiper-pagination {
  right: 0;
  top: 0;
  left: auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 10px;
}
.home-slider .slider-home .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 40px;
  border-radius: 10px 0 0 10px;
  width: 35px;
  line-height: 1;
  font-weight: 600;
  opacity: 1;
  color: white;
  transition: 0.3s;
}
.home-slider
  .slider-home
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--bs-primary);
  color: white;
  width: 50px;
}
.home-slider .slider-home .slider-home-item .animate-zoom {
  animation: animatedBackground 10s linear infinite alternate;
}
@keyframes animatedBackground {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}

@media (max-width: 768px) {
    .home-slider .slider-home .swiper-pagination {
        justify-content: end;
    }
}
/* **** Slider Zoom Animate with Overlay Background **** */

.link-custom {
  border-radius: 30px;
  height: 48px;
  padding-right: 40px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: fit-content;
}

.link-custom .link-text {
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  z-index: 2;
}

.divider-style1 {
  position: relative;
  /* max-width: var(--main-container); */
  margin-left: auto;
  margin-right: auto;
}
.divider-style1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  width: 100%;
  z-index: 2;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0, var(--bs-primary) 50%, rgba(255, 255, 255, 0) 100%);
}
.divider-style1 .divider-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  color: var(--bs-primary);
  background: linear-gradient(to right, var(--bs-primary), var(--bs-third), var(--bs-primary));
  border-radius: 50%;
  margin: 0 auto;
  display: block;
  z-index: 3;
}

.divider-style1 .divider-icon img {
    filter: brightness(0);
}

.banner-style2 {
  position: relative;
  /* margin-bottom: 30px; */
}
.banner-style2 .banner-img img {
  width: 100%;
}
.banner-style2 .banner-content {
  position: absolute;
  width: 100%;
  max-width: 280px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.banner-style2 .banner-label {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--bs-secondary);
  font-weight: 700;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 3px;
}
.banner-style2 .banner-title {
  margin-bottom: 21px;
}
.banner-style2.layout2 .banner-content {
  right: auto;
  left: 10%;
}
.banner-style2.layout2 .vs-btn {
  background-color: white;
  color: var(--bs-primary);
}
.banner-style2.layout2 .vs-btn:hover {
  color: var(--bs-secondary);
}

@media (max-width: 1199px) {
  .banner-style2 .banner-content {
    max-width: 250px;
  }
}

@media (max-width: 991px) {
  .banner-style2 .banner-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .banner-style2 .banner-label {
    font-size: 12px;
  }
  .banner-style2 .banner-content {
    max-width: 180px;
  }
  .banner-style2 .vs-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

@media (max-width: 344px) {
    .banner-style2 .banner-content {
        max-width: 165px !important;
    }
}

@media (min-width: 345px) and (max-width: 360px) {
    .banner-style2 .banner-content {
        max-width: 170px !important;
    }
}

@media (min-width: 362px) and (max-width: 390px) {
    .banner-style2 .banner-content {
        max-width: 180px !important;
    }
}

@media (min-width: 391px) and (max-width: 430px) {
    .banner-style2 .banner-content {
        max-width: 200px !important;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .banner-style2 .banner-content {
        max-width: 250px !important;
    }
}

@media (min-width: 1282px) and (max-width: 1920px) {
    .banner-style2 .banner-content {
        max-width: 280px !important;
    }
}

@media (max-width: 768px) {
  .w-50 {
    width: 45% !important;
  }
}

.mega-hover {
  position: relative;
  overflow: hidden;
}
.mega-hover img {
  transition: all 2s ease;
  transform: scale(1);
}
.mega-hover:after, .mega-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3;
  transform: rotate(5deg);
}
.mega-hover:before {
  top: -10%;
  right: 51%;
  bottom: -10%;
  left: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.mega-hover:after {
  top: 50%;
  right: -10%;
  bottom: 50%;
  left: -10%;
  background: rgba(255, 255, 255, 0.6);
}
.mega-hover:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 900ms linear;
}
.mega-hover:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 900ms linear;
}
.mega-hover:hover img {
  transform: scale(1.05);
}

/*** layanan Start ***/
.layanan .layanan-item {
  transition: 0.5s;
  height: 250px;
}

@media (max-width: 768px) {
  .layanan .layanan-item {
    transition: 0.5s;
    height: 100%;
  }
}

.layanan .layanan-item:hover {
  /* background: var(--bs-primary) !important; */
  background: linear-gradient(rgba(90,58,128, .8), rgba(90,58,128,.8)), url('../../../images/bg-card.jpg') center center;
  background-size: cover;
  border-color: var(--bs-secondary) !important;
}

.layanan .layanan-item .layanan-img img {
  transition: 0.5s;
}

.layanan .layanan-item:hover .layanan-img img {
  transform: scale(1.3);
}

.layanan .layanan-item:hover .layanan-content p,
.layanan .layanan-item:hover .layanan-content h3 {
  color: var(--bs-light);
  transition: 0.5s;
}

.layanan .layanan-item:hover .layanan-content a.btn {
  background: var(--bs-light);
  color: var(--bs-primary) !important;
}

.layanan .layanan-item:hover .layanan-content a.btn:hover {
  background: var(--bs-secondary);
  color: var(--bs-light) !important;
}

.layanan .layanan-item .layanan-img {
  overflow: hidden;
}
/*** layanan End ***/

/*** Keunggulan CSS ***/
/* .keunggulan {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
} */

.keunggulan-item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transition: .3s;
  background: #e5e5e5;
  box-shadow: 0 0 10px rgba(196,83,209, .4);
}

.keunggulan-item:hover {
  box-shadow: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .keunggulan-item {
    height: 230px;
  }
}

@media (min-width: 992px) {
  .keunggulan-item {
    height: 180px;
  }
}

.keunggulan-icon {
  position: relative;
  width: auto;
}

.keunggulan-icon img {
  position: relative;
  display: block;
  /* color: var(--primary); */
  font-size: 60px;
  line-height: 60px;
  margin-top: 5px;
}

/* .keunggulan-icon img:hover{
    transform: scale(1.1);
} */

.keunggulan-text {
  position: relative;
  margin-left: 10px;
  padding-left: 10px;
}

.keunggulan-text::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 10px);
  top: 5px;
  left: 0;
  background: rgba(0, 0, 0, .1);
}

.keunggulan-text::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 40px;
  top: calc(50% - 20px);
  left: -1px;
  background: var(--bs-primary);
}

.keunggulan-text h3 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.keunggulan-text p {
  margin: 0;
  font-size: 12px;
}

/*** List Check Start ***/
.list-checked {
  padding-left: 0;
  text-align: left;
  list-style-type: none;
}

.list-checked>li {
  position: relative;
  padding: 19px 0;
  padding-left: 2.25rem;
}

.list-checked>li+li,
.list-order>li+li {
  margin-top: 0;
}

.list-checked>li::before {
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  font-size: .75rem;
  border-radius: 50%;
  background-color: rgb(22, 59, 222, .1);
  color: var(--bs-primary);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-weight: 900;
}
.list-checked.lokasi {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  padding: 0;
}
.list-checked.lokasi li span {
  padding: 0 0 5px 0;
  /* border-bottom: 3px solid var(--bs-primary); */
}
.list-checked.lokasi>li::before {
  top: 50%;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  line-height: normal;
  text-align: center;
  font-size: .75rem;
  border-radius: 50%;
  background-color: rgb(179, 179, 179, .3);
  color: red;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-weight: 900;
}

.border-bawah {
  border-bottom: 2px var(--bs-primary) solid;
  display: inline;
}

.wdt-20 {
  width: 20% !important;
}

@media (max-width: 768px) {
  .list-checked.lokasi {
    gap: 20px;
  }
  .list-checked.lokasi>li::before {
    position: absolute;
  }
  .wdt-20 {
    width: 50% !important;
  }
}

.list-checked.centang>li::before {
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f02c";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  line-height: normal;
  text-align: center;
  font-size: .75rem;
  border-radius: 50%;
  background-color: var(--bs-primary);
  color: white;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-weight: 900;
}

.list-checked.silang>li::before {
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f00d";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  line-height: normal;
  text-align: center;
  font-size: .75rem;
  border-radius: 50%;
  background-color: rgb(220, 53, 75, .3);
  color: rgb(220, 53, 75);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-weight: 900;
}

.v-light:not(.no-light) .link-custom .link-text {
  color: #000;
}
.link-custom .link-circle {
  -webkit-transition: width 200ms;
  -o-transition: width 200ms;
  transition: width 200ms;
  top: 0;
  right: 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  mix-blend-mode: exclusion;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 30px;
  z-index: 2;
}
.v-light:not(.no-light) .link-custom .link-circle {
  background-color: #e6e6e6;
  z-index: 0;
}
.link-custom .link-circle i {
  position: absolute;
  right: 20px;
  top: 17px;
  font-size: 15px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.link-custom:hover {
  padding-left: 40px;
}

.link-custom:hover .link-text {
  color: #fff;
}
.link-custom:hover .link-text {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
}
.link-custom:hover .link-circle {
  width: 100%;
}
.link-custom:hover .link-circle i {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
}
.link-custom.scroll-down i {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.link-custom.scroll-down:hover .link-text {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
}
.link-custom.scroll-down:hover .link-circle i {
  -webkit-transform: translateX(-9px) translateY(2px) rotate(90deg);
  -ms-transform: translateX(-9px) translateY(2px) rotate(90deg);
  transform: translateX(-9px) translateY(2px) rotate(90deg);
}

.link-custom-red {
  border-radius: 30px;
  height: 48px;
  padding-right: 40px;
  color: #e61b33;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: fit-content;
}
.link-custom-red .link-text {
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  z-index: 4;
  color: #e61b33;
}
.link-custom-red .link-circle {
  -webkit-transition: width 200ms;
  -o-transition: width 200ms;
  transition: width 200ms;
  top: 0;
  right: 0;
  text-align: center;
  background: rgba(0, 0, 0, .1);
  /*mix-blend-mode: color-dodge;*/
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 30px;
  z-index: 2;
}
.link-custom-red .link-circle i {
  position: absolute;
  right: 20px;
  top: 17px;
  font-size: 15px;
  color: #e61b33;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.link-custom-red:hover {
  padding-left: 40px;
}

.link-custom-red:hover .link-text {
  color: #fff !important;
}
.link-custom-red:hover .link-text {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
}
.link-custom-red:hover .link-circle {
  width: 100%;
  background: #e61b33;
}
.link-custom-red:hover .link-circle i {
  -webkit-transform: translateX(-9px);
  -ms-transform: translateX(-9px);
  transform: translateX(-9px);
  color: #fff;
}

.contact-btn {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
}

.with-ts {
  width: fit-content;
}

.with-ts .text-shadow {
  position: absolute;
  right: -200px;
  color: black;
  opacity: 0.05;
  font-size: 100px;
  z-index: -1;
  top: -50px;
}
@media (max-width: 767.98px) {
  .with-ts .text-shadow {
    position: absolute;
    right: -75px;
    color: black;
    opacity: 0.05;
    font-size: 65px;
    z-index: -1;
    top: -25px;
  }
}

.with-ts .text-shadow-2 {
  position: absolute;
  right: -200px;
  color: var(--bs-white);
  opacity: 0.05;
  font-size: 100px;
  z-index: -1;
  top: -50px;
}

@media (max-width: 767.98px) {
  .with-ts .text-shadow-2 {
    position: absolute;
    right: -75px;
    color: var(--bs-white);
    opacity: 0.05;
    font-size: 65px;
    z-index: -1;
    top: -25px;
  }
}
.products-tab {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}
.custom-testimoni {
  background: linear-gradient(
    -45deg,
    transparent,
    #ebebeb,
    transparent
  );
  box-shadow: none;
}
.testimoni-line {
  background: linear-gradient(
    90deg,
    #ebebeb,
    transparent
  );
  height: 3px;
  margin-top: 15px;
}
.produk-item {
  position: relative;
}
.produk-item
  .produk-img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: block;
}
.produk-item
  .produk-img
  img {
  aspect-ratio: 1 /
    1;
  object-fit: cover;
  transform: scale(
    1
  );
  opacity: 1;
  transition: all
    1s
    ease;
}
.produk-item
  .produk-img
  .fade-on-hover {
  opacity: 1;
  position: relative;
  transition: opacity
    0.3s
    ease;
}
.produk-item:hover
  .produk-img
  .fade-on-hover {
  opacity: 0;
}
.produk-item:hover
  .produk-img
  img {
  aspect-ratio: 1 /
    1;
  object-fit: cover;
  transform: scale(
    1.1
  );
}
.produk-item
  .produk-img
  .second-thumbs-product {
  position: absolute;
  inset: 0;
}
.produk-item
  .produk-img
  .overlay-produk-btn {
  position: absolute;
  z-index: 99;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: rgba(
    0,
    0,
    0,
    0.75
  );
  color: white;
  text-align: center;
  padding: 7.5px;
  border-radius: 7.5px;
  font-weight: bold;
  transform: translateY(
    50px
  );
  opacity: 0;
  transition: all
    0.5s
    ease;
}
.produk-item:hover
  .produk-img
  .overlay-produk-btn {
  transform: translateY(
    0
  );
  opacity: 1;
}
.produk-item.sold-item .produk-img .overlay-sold {
  position: absolute;
  z-index: 99;
  inset: 0;
  background: rgba( 0, 0, 0, 0.5 );
  color: white;
  text-align: center;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.produk-item.sold-item
  .produk-desc {
  opacity: 0.25;
}
.produk-item
  .produk-desc
  .title {
  color: black !important;
  font-weight: 800;
  font-size: 16px;
  margin: 0;
  margin-bottom: 5px;
  text-align: center;
  line-height: 1;
}
.produk-item
  .produk-desc
  .title
  a {
  color: black !important;
  font-weight: 500;
  font-size: 16px;
}
.produk-item
  .produk-desc
  .title
  a:hover {
  text-decoration: underline;
}
.produk-item
  .produk-desc
  .product-info {
  text-align: center;
}
.produk-item
  .produk-desc
  .product-info
  .discount {
  opacity: 0.75;
  text-decoration: line-through;
  margin-right: 5px;
}
.catalog-info-count {
  margin-top: 20px;
  padding: 10px;
  border-bottom: 1px
    solid
    rgba(
      0,
      0,
      0,
      0.1
    );
}
.catalog-info-count
  p {
  margin: 0;
  font-style: italic;
  color: rgba(
    0,
    0,
    0,
    0.3
  );
}

.keunggulan-item {
  display: flex;
  gap: 15px;
  align-items: start;
  padding: 20px;
  position: relative;
}
.keunggulan-item::after {
  content: "";
  position: absolute;
  min-width: 1px;
  top: 15%;
  bottom: 15%;
  right: -0.5px;
  background: rgba(
    0,
    0,
    0,
    0.1
  );
}
.keunggulan-item::before {
  content: "";
  position: absolute;
  min-height: 1px;
  top: -0.5px;
  right: 15%;
  left: 15%;
  background: rgba(
    0,
    0,
    0,
    0.1
  );
}
@media (min-width: 992px) {
  .keunggulan-container:nth-child(
      1
    )
    .keunggulan-item::before,
  .keunggulan-container:nth-child(
      2
    )
    .keunggulan-item::before {
    display: none;
  }
  .keunggulan-container:nth-child(
      even
    )
    .keunggulan-item::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .keunggulan-container:nth-child(
      1
    )
    .keunggulan-item::before {
    display: none;
  }
  .keunggulan-container
    .keunggulan-item::after {
    display: none;
  }
  .keunggulan-container
    .keunggulan-item {
    padding: 20px
      0px;
  }
}
.keunggulan-item
  .keunggulan-img
  img {
  height: 50px;
  min-width: 50px;
  object-fit: contain;
}
.keunggulan-item
  .keunggulan-desc
  .desc {
  margin: 0;
}

.latest-product-slider-container {
  background: #f5f5f5;
  padding: 20px;
}
.slider-latest-product
  .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: relative;
  margin: 20px
    0;
}
.slider-latest-product
  .swiper-scrollbar-drag {
  background: var(
    --bs-primary
  );
}
.hover-text-dark:hover {
  color: black !important;
}

.contact-btn {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 99999;
	display: flex;
	gap: 10px;
}
.button-33 {
	background-color: #39B54A;
	border-radius: 30px;
	color: white;
	cursor: pointer;
	display: inline-block;
	padding: 5px 25px;
	text-align: center;
	text-decoration: none;
	transition: all 250ms;
	border: 0;
	font-size: 14px;
	font-weight: 500;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
}
.button-33:hover {
	box-shadow: rgba(57, 181, 74, 0.35) 0 -25px 18px -14px inset,
	  rgba(57, 181, 74, 0.25) 0 1px 2px, rgba(57, 181, 74, 0.25) 0 2px 4px,
	  rgba(57, 181, 74, 0.25) 0 4px 8px, rgba(57, 181, 74, 0.25) 0 8px 16px,
	  rgba(57, 181, 74, 0.25) 0 16px 32px;
	transform: scale(1.05) rotate(-1deg);
	color: white;
}

/************************************/
/***     06. Our Services css     ***/
/************************************/
.service-slider{
	height: 100%;
}

.service-slider .swiper{
	height: 100%;
	padding-bottom: 70px;
}

.service-item{
	position: relative;
	height: 100%;
	min-height: 450px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	background: white;
	border-radius: 20px;
	padding: 40px;
	overflow: hidden;
}

.service-item-header{
	position: relative;
	z-index: 2;
}

.service-item-number h2{
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item-content{
	border-top: 1px solid black;
	padding-top: 20px;
	margin-top: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item-content h2{
	font-size: 20px;
}

.service-item-content h2 a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.service-item-content p{
	margin: 10px 0 0;
	transition: all 0.4s ease-in-out;
}

/* .service-slider .swiper-slide.swiper-slide-next .service-item-number h2,
.service-slider .swiper-slide.swiper-slide-next .service-item-content h2,
.service-slider .swiper-slide.swiper-slide-next .service-item-content p{
	color: white;
} */

.service-item:hover .service-item-number h2,
.service-item:hover .service-item-content h2,
.service-item:hover .service-item-content p{
	color: white;
}

/* .service-slider .swiper-slide.swiper-slide-next .service-item-content{
	border-color: var(--bs-secondary);
} */

.service-item:hover .service-item-content{
	border-color: var(--bs-secondary);
}

.service-item .icon-box{
	padding-top: 90px;
}

.service-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
	z-index: 2;
  filter: brightness(0);
}

/* .service-slider .swiper-slide.swiper-slide-next .icon-box img{
	filter: brightness(0) invert(1);
} */

.service-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.service-item-image{
	position: absolute;
	right: 0;
	bottom: 0;
	transform: translate(40px, 40px);
	width: 240px;
	height: 240px;
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

/* .service-slider .swiper-slide.swiper-slide-next .service-item-image{
	top: auto;
	left: auto;
	width: 100%;
	height: 100%;
	transform: translate(0, 0);
	border-radius: 0px;
} */

.service-item:hover .service-item-image{
	top: auto;
	left: auto;
	width: 100%;
	height: 100%;
	transform: translate(0, 0);
	border-radius: 0px;
}

.service-item-image figure{
	position: relative;
    display: block;
    height: 100%;
}

.service-item-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;	
	background-color: black;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

/* .service-slider .swiper-slide.swiper-slide-next .service-item-image figure::before{
	opacity: 50%;
} */

.service-item:hover .service-item-image figure::before{
	opacity: 50%;
}

.service-item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-pagination.swiper-pagination-bullets{
	position: absolute;
	bottom: 0;
	text-align: center;
}

.service-pagination .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background: var(--bs-secondary);
	border-radius: 20px;
	opacity: 1;
	margin: 0 3px;
	transition: all 0.3s ease-in-out;
}

.service-pagination .swiper-pagination-bullet-active{
	width: 30px;
	background: var(--bs-dark);
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	color: black;
	margin-bottom: 0;
}

.section-footer-text p span{
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	background: var(--accent-color);
	color: var(--white-color);
	line-height: 1em;
	padding: 5px 12px;
	border-radius: 100px;
	margin-right: 10px;
}

.section-footer-text p a{
	display: inline-block;
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: black;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--bs-secondary);
}

.section-footer-text ul{
	width: 100%;
	padding: 0;
	margin: 20px 0 0;
	list-style: none;
}

.section-footer-text ul li{
	display: inline-block;
	line-height: normal;
	color: black;
	margin-right: 10px;
}

.section-footer-text .section-footer-border-list li{
	border-right: 1px solid black;
	padding-right: 15px;
}

.section-footer-text .section-footer-border-list li:last-child{
	padding-right: 0;
	border-right: none;
}

.section-footer-text ul li b{
	font-weight: 600;
}

.section-footer-text ul li i{
	color: var(--bs-secondary);
}

.section-footer-text.section-footer-contact{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
}

.section-footer-text.section-footer-contact span{
	width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
	align-items: center;
    margin-right: 10px;
}

.section-footer-text.section-footer-contact span img{
	width: 100%;
	max-width: 16px;
}

.section-footer-text.section-satisfy-img{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img{
	max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more{
	width: 32px;
	height: 32px;
    margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img{
	max-width: 16px;
}

.section-footer-text.section-satisfy-img ul{
	margin: 0;
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li,
.dark-section .section-footer-text ul li i{
	color: var(--white-color);
}

.dark-section .section-footer-text p a:hover{
	color: var(--white-color);
}

.dark-section .section-footer-text ul li{
	border-color: var(--dark-divider-color);
}

.our-services .section-footer-text{
	margin-top: 40px;
}

/************************************/
/***     07. Why Choose Us css    ***/
/************************************/

.why-choose-image-box{
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	background-image: url('../../../images/why-choose-bg-image.png');
	background-repeat: no-repeat;
	background-position: bottom 60px left 178px;
	background-size: auto;
}

.why-choose-image-box-1{
	position: relative;
    width: 47%;
	padding: 0 0 143px 60px;
}

.why-choose-image-box-2{
	position: relative;
	width: 53%;
	z-index: 1;
}

.why-choose-image{
	position: relative;
    z-index: 1;
}

.anime-updown {
    animation: movestyle2 4s infinite ease-in-out !important;
}

@keyframes movestyle2{
	0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); /* Naik */
    }
    100% {
        transform: translateY(0); /* Kembali */
    }
}

.why-choose-image figure{
	display: block;
	border-radius: 20px;
}

.why-choose-image-box-1 .why-choose-image figure{
	margin-right: -210px
}

.why-choose-image figure img{
	width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.why-choose-image-box-1 .why-choose-image figure img{
	aspect-ratio: 1 / 1.1781;
}

.why-choose-image-box-2 .why-choose-image figure{
	border: 6px solid #FBF8F3;
	border-radius: 26px 110px;
}

.why-choose-image-box-2 .why-choose-image figure img{
	aspect-ratio: 1 / 1.2571;
	border-radius: 20px 110px;
}

.why-choose-cta-box{
	position: absolute;
    top: 60px;
    left: 0;
    max-width: 192px;
    background: var(--bs-secondary);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    animation: movestyle 4s infinite alternate linear;
    z-index: 1;
}

@media (max-width: 768px){
    .why-choose-image-box-1{
        padding: 0 0 143px 10px;
    }
    
    .why-choose-image-box-1 .why-choose-image figure{
    	margin-right: -180px
    }
}

@keyframes movestyle{
	50%{
		transform: translateX(20px);
	}
}

.why-choose-cta-box .icon-box{
	margin-bottom: 30px;
}

.why-choose-cta-box .icon-box img{
	width: 100%;
	max-width: 50px;
}

.why-choose-cta-content p{
	line-height: normal;
	color: white;
	margin: 0 0 10px;
}

.why-choose-cta-content h3{
	font-size: 40px;
	color: white;
}

.why-choose-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-info-box,
.why-choose-counter-box{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	border-radius: 20px;
	padding: 30px;
}

.why-choose-info-box{
	width: calc(57% - 15px);
	background: var(--bs-secondary);
}

.why-choose-info-content h3{
	font-size: 20px;
}

.why-choose-info-content p{
	margin: 10px 0 0;
}

.why-choose-info-list{
	border-top: 1px solid black;
	padding-top: 20px;
}

.why-choose-info-list ul{
	list-style: none;
	padding: 0;
	margin: 0 ;
}

.why-choose-info-list ul li{
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.why-choose-info-list ul li:last-child{
	margin-bottom: 0;
}

.why-choose-info-list ul li::before{
	content: "\2a";
    position: absolute;
    font-family: "Font Awesome 7 Free";
    font-size: 18px;
    font-weight: 900;
    color: var(--bs-secondary);
    top: 0px;
    left: 0px;
}

.why-choose-counter-box{
	width: calc(43% - 15px);
	background: var(--bs-primary);
}

.why-choose-counter-header{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid black;
	padding-bottom: 20px;
}

.why-choose-counter-header h2{
	font-size: 34px;
	color: white;
}

.why-choose-counter-header p{
	max-width: 85px;
	color: white;
	line-height: 1.3em;
	margin: 0;
}

.why-choose-counter-body .icon-box{
	margin-bottom: 40px;
}

.why-choose-counter-body .icon-box img{
	width: 100%;
	max-width: 40px;
}

.why-choose-counter-content p{
	color: white;
	margin: 0;
}

.why-choose-btn{
	border-top: 1px solid black;
	padding-top: 40px;
	margin-top: 40px;
}

.service-block .inner-box {
  -webkit-box-shadow: -5px 5px 40px 0px rgba(190, 188, 188, 0.15);
          box-shadow: -5px 5px 40px 0px rgba(190, 188, 188, 0.15);
  position: relative;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 991.98px) {
  .service-block .inner-box {
    margin-bottom: 10px;
  }
}

.service-block .inner-box:hover:after {
  border-color: var(--bs-primary);
} 

.service-block .inner-box:hover:before {
  height: 100%;
}

.service-block .inner-box:hover .image-box .bg-image-unggul {
  opacity: 1;
} 

.service-block .inner-box:hover .content-box .icon {
    -webkit-filter: brightness(0) invert(1);
         filter: brightness(0) invert(1);
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	    animation: heartbeat 1.5s ease-in-out infinite both;
  /*-webkit-transform: scale(-1) rotate(180deg);*/
  /*        transform: scale(-1) rotate(180deg);*/
  color: var(--bs-primary);
}

.service-block .inner-box:hover .content-box .title a {
  color: black;
}
.service-block .inner-box:after {
  border: 1px dashed var(--bs-secondary);
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  right: 9px;
  bottom: 10px;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block .inner-box:before {
  background-color: rgba(194, 167, 78, 0.85);
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
} 
.service-block .inner-box .image-box {
  position: relative;
}

.service-block .inner-box .image-box .bg-image-unggul {
  width: auto;
  height: 300px;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
} 

.service-block .inner-box .image-box .bg-image-two {
  position: absolute;
  width: 205px;
  height: 95px;
  top: 10px;
  right: 9px;
  z-index: 1;
}
.service-block .inner-box .content-box {
  position: absolute;
  padding: 0px 15px 15px 15px;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2;
}
.service-block .inner-box .content-box .icon {
  color: var(--theme-color1);
  font-size: 81px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block .inner-box .content-box .title {
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 15px;
}
.service-block .inner-box .content-box .title a {
  color: var(--bs-primary);
}

/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
