@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  max-width: 650px;
  margin: 0 auto;
  font-family: "poppins", sans-serif;
  background-color: #f1f5f8;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

/* .owl-theme .owl-nav, */
.owl-theme .owl-dots {
  display: none;
}

.owl-theme .owl-nav {
  margin-top: 0px;
}

#num {
  color: brown;
  font-weight: bold;
}
.breadcrumb {
  font-size: 14px;
}
.breadcrumb a {
  color: #015c80;
}

.breadcrumb .active {
  color: #000;
}

header {
  background-color: #fff;
}

main {
  max-width: 100%;
  height: 100%;
  padding-bottom: 0px;
  background: #fff !important;
}

/* .content {
  padding: 40px 0px;
  background-color: #dbcfc7;
} */

/* NAV BAR */
/* .nav-memu {
  display: flex;
  align-items: center;
  list-style: none;
  background-color: #015c80;
  padding: 15px !important;
}
.nav-memu li {
  width: 100%;
  text-align: center;
}

.nav-memu li a {
  text-align: center;
  text-decoration: none;
  color: #fff;
} */

/* OLD  */

.nav-memu {
  display: flex;
  gap: 10px;
  align-items: center;
  list-style: none;
  background-color: #015c80;
}
.nav-memu li {
  width: 100%;
}

.nav-memu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  padding: 10px;
  color: #fff;
}

.nav-memu li a:hover {
  background-color: #f5f5f5;
  color: #015c80;
}

.hero {
  position: relative;
}

section {
  padding: 40px 0px 0px 0px;
}

.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel .owl-nav button.owl-next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 35%;
  background-color: #015c80;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* .next {
  display: none;
} */

.owl-carousel .owl-nav button.owl-prev {
  left: 0;
}

.owl-carousel .owl-nav button.owl-next {
  right: 0;
  transform: rotate(180deg);
}

.title-content {
  background-color: #015c80;
  color: #fff;
  padding: 10px;
}

.title-content h2 {
  font-size: 20px;
  font-weight: bold;
}

.title-content .btn-link {
  text-decoration: none;
  background-color: #fff;
  color: #015c80;
  border-radius: 25px;
  padding: 5px 10px;
  font-size: 12px;
  text-align: center;
}

/* CONTENN JENIS */
.box-services {
  background-color: #015c80;
  height: 100%;
}
.box-services .content-box {
  text-decoration: none;
  color: #fff;
}

.box-services .content-box .box-text {
  padding: 30px 10px 10px 10px;
  text-align: center;
  position: relative;
}

.box-services .content-box .box-text .icon-box {
  background-color: #015c80;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: -25px;
  transition: all .3s ease-out;
}

.box-services:hover .content-box .box-text .icon-box img {
  animation: rubberband .8s ease-out;
}

@keyframes rubberband {
  0% {
      transform: scaleX(1)
  }

  40% {
      transform: scaleX(1.12) scaleY(.75)
  }

  55% {
      transform: scaleX(.85) scaleY(1)
  }

  65% {
      transform: scaleX(1.09) scaleY(.85)
  }

  75% {
      transform: scaleX(.9) scaleY(1)
  }

  90% {
      transform: scaleX(1.05) scaleY(.95)
  }

  to {
      transform: scaleX(1) scaleY(1)
  }
}

.box-services .content-box .box-text h4 {
  font-size: 16px;
}

.box-services .content-box .box-text .icon-box img {
  width: 40px;
  height: 40px;
}

.box-slide {
  position: relative;
  height: 100%;
}

.box-slide h4 {
  /* display: inline-block; */
  background-color: #015c80;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px 10px 10px;
  border-top-right-radius: 35px;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  height: 30%;
}

.why {
  padding-bottom: 40px;
}

.why .box {
  border: 1px solid #015c80;
  padding: 20px;
  height: 100%;
  align-items: center;
  border-radius: 10px;
  transition: all 600ms ease 0s;
}

.why .box:hover {
  background-color: #015c80;
  color: #fff;
}

.why .box:hover img {
  filter: brightness(0) invert(1);
  transition: all 600ms ease 0s;
}

.why .active {
  background-color: #015c80;
  color: #fff;
}

.why .active img {
  filter: brightness(0) invert(1);
}

.why .content-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.why .content-box .box-img img {
  width: 35px;
  height: 35px;
}

.why .content-box h4 {
  font-size: 14px;
  text-transform: capitalize;
}

.content-form {
  padding: 40px 0px 0px;
}

.title-page {
  padding-bottom: 20px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 18px;
  position: relative;
}

.title-page::before {
  content: '';
  width: 40px;
  height: 5px;
  background-color: #015c80;
  position: absolute;
  bottom: 0;
  left: 47%;
  margin-bottom: 10px;
}

.profil p {
  margin-bottom: 10px;
}

.profil img {
  border-radius: 10px;
  max-width: 100% !important;
  height: auto !important;
}

.blog-post .blog-post-title {
  font-size: 18px;
  color: #303133;
  font-weight: bold;
}

.blog-post .blog-post-title:hover {
  color: #015c80;
}

.blog-post .blog-post-thumbnail {
  position: relative;
}

.blog-post .blog-post-thumbnail::before {
  transition: all 600ms ease 0s;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.blog-post .blog-post-thumbnail::after {
  content: url('/img/pl.png');
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  opacity: 0;
  transform: rotate(180deg);
}

.blog-post .blog-post-thumbnail:hover::before {
  background-color: rgba(0,0,0,.75);
}
.blog-post .blog-post-thumbnail:hover::after {
  opacity: 1;
}

.blog-post .card-body {
  font-size: 14px;
}

.blog-post a {
  text-decoration: none;
}

.content-breadcrumb {
  background-color: #fff;
  padding-bottom: 25px;
  margin-bottom: 5px;
  flex-wrap: wrap;
  position: relative;
}

.content-breadcrumb::before {
  content: '';
  width: 35px;
  height: 5px;
  background-color: #015c80;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 10px;
}

.content-breadcrumb .breadcrumb-item.active {
  font-size: 12px;
}

.content-single-post img {
  width: 100%;
  height: auto;
}

.content-single-post h1 {
  font-size: 24px;
  margin-bottom: 15px;
}

.content-single-post h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.content-single-post h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.content-single-post h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.content-single-post h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.content-single-post p {
  margin-bottom: 10px;
}

.content-single-post a {
  text-decoration: none;
  color: #015c80;
}

/* FOOTER */
footer {
  background-color: #e6e7e8;
  /* color: #fff; */
  padding: 40px 20px 100px 20px;
}

footer p {
  text-align: center;
  /* font-size: 14px; */
}

/* Chat Fitur */
.chat-fitur {
  max-width: 650px;
  width: 100%;
  position: fixed;
  margin: 0 auto;
  bottom: 0;
  z-index: 9999;
}

.chat-fitur .overplow {
  background-color: #015c80;
  text-align: center;
  border-radius: 20px 20px 0px 0px;
  box-shadow: 0 10px 25px #333;
}

.chat-fitur .title-chat {
  margin-bottom: 15px;
  font-weight: bold;
}

.chat-fitur .wrapper-icon {
  width: 100%;
}

.chat-fitur .icon {
  display: flex;
  flex-direction: column;
  /* background-color: brown; */
  color: #fff;
  padding: 15px;
  font-size: 18px;
  text-decoration: none;
  width: 100%;
  gap: 5px;
  /* border-right: 1px solid #fff; */
}

.chat-fitur .icon:nth-child(3) {
  border-right: unset;
}

.chat-fitur .icon i {
  font-size: 24px;
}

.chat-fitur .icon .icon-teks {
  margin: 0px;
  font-size: 16px;
}

@media screen and (min-width: 320px) {
  .blog-post .blog-post-thumbnail img {
    height: 150px;
    object-fit: cover;
  }
}

@media screen and (max-width: 576px) {
  .nav-memu {
    padding-right: 0px;
    padding-left: 0px;
    overflow-x: scroll;
  }
}

@media screen and (max-width: 480px) {
  .nav-memu li a,
  .chat-fitur .icon .icon-teks, 
  .content p, 
  footer p {
    font-size: 14px;
  }
}

/* @media screen and (max-width: 360px) {
  .content-jenis .card h5 {
    font-size: 12px;
  }
} */

@media screen and (max-width: 320px) {
  .chat-fitur .icon {
    font-size: 14px;
    padding: 10px;
  }
  footer {
    padding: 40px 20px 80px 20px;
  }
}
