@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");

body {
  max-width: 650px;
  margin: 0 auto;
  font-family: "Mulish", serif;
  background-color: #f8f8f9;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #103780;
  font-weight: 700;
}

header {
  background-color: #fff;
}

main {
  max-width: 100%;
  height: 100%;
  padding-bottom: 0px;
}

/* Hero */
.hero {
  margin: 6px 0px;
  position: relative;
  display: block;
}

/* Content Post */
.content-post {
  background-color: #fff;
}

.cta-button {
  text-align: center;
  text-decoration: none;
  border: 2px solid #103780;
  color: #103780;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
  transition: all 300ms ease-in-out;
}

.cta-button:hover {
  color: #fff;
  background-color: #08297a;
}

.content-box {
  background-color: #fff;
  padding: 20px;
  height: 100%;
  border-radius: 10px;
}

.container-slider .content-box {
  min-height: 250px;
}

.owl-stage {
  padding-top: 10px;
  padding-bottom: 30px;
}

.content-box h4 {
  margin: 15px 0;
}

.content-box .box-img {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e6eded;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: one-animated 10s infinite;
}

.content-box .box-img img {
  width: 40px;
  height: 40px;
}

@keyframes one-animated {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }

  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }

  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

.owl-theme .owl-nav {
  display: none;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
}

.owl-theme .owl-dots .owl-dot span {
  background: #e6eded9f;
}

.content-post h2 {
  font-size: 26px;
  margin: 0px 0px 15px 0px;
  font-weight: 900;
}

.content-post ol,
li {
  line-height: 1.7em;
}

.content-post p {
  margin-bottom: 10px;
}

.btn-1d7871 {
  background-color: #103780;
  color: #fff;
  border-color: #103780;
}

.list-container {
  list-style-type: none;
  padding: 0;
}

.list-container li {
  display: flex;
  gap: 10px;
}

.list-container li i {
  margin-top: 6px;
  color: #103780;
}

section {
  padding: 30px 0px;
}

.gejala,
.testimoni {
  background-color: #103780;
}

.gejala h2,
.gejala p,
.testimoni h2 {
  color: #fff;
}

.mengatasi .content-box {
  border: 1px solid #e6eded;
  background-color: #fff;
}

.mengatasi {
  background-color: #e6eded;
}

.marquee-container {
  width: 100%;
  background-color: #333;
  color: white;
  padding: 10px;
  overflow: hidden;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}
.highlight {
  color: red;
  font-weight: bold;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.list-testi {
  background-color: #fff;
  padding: 20px;
  height: 100%;
  border-radius: 10px;
}

.list-testi .profil-testi {
  display: flex;
  align-items: center;
  padding: 20px 0px;
}

.list-testi .profil-testi .img-profil img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

/* Chat Fitur */
.wrapper-profil-chat {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.wrapper-profil-chat .profil-dktr {
  position: relative;
}

.container-profil-chat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.wrapper-profil-chat .profil-dktr::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #00e092;
  animation: myAnim 2s ease 0s infinite normal forwards;
}

@keyframes myAnim {
  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.wrapper-profil-chat img {
  width: 60px;
  height: 60px;
}

.wrapper-profil-chat span {
  font-size: 24px;
  font-family: "poppins", sans-serif;
  font-weight: 600;
}

.chat {
  background-image: url("../img/bg.jpg");
  padding: 20px 0px 100px 0px;
}

.chat .jam {
  color: #333;
  text-align: center;
  font-size: 24px;
}

.content-text-chat {
  margin: 10px 10px 5px 20px;
  background-color: #fff;
  padding: 15px;
  border-radius: 5px 5px 5px 0px;
  position: relative;
}

.content-text-chat span {
  position: absolute;
  border-width: 0.5rem 0.5rem 1rem 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  top: 0;
  left: -8px;
  transform: rotateZ(0deg);
}

.content-text-chat a {
  text-decoration: none;
  color: #000;
}

.content-text-chat a:hover {
  text-decoration: underline;
}

.hidden {
  visibility: hidden;
}

/* Button Kirim Chat */
.tombol-chat {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  width: 100%;
  max-width: 41rem;
  padding: 0px;
}

.wrapper-tombol-chat {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.83em 0% 0.7em;
  background-color: #fff;
}

.form {
  width: 80%;
}

.form a {
  text-decoration: none;
}

.button a {
  color: #fff;
  text-decoration: none;
}

.button a:hover {
  border-bottom: 1px solid #fff;
}

.wrapper-tombol-chat .icon,
.button {
  padding: 8px;
}

/* POP UP */
.hide {
  display: none;
  visibility: hidden;
}

.popbox {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000000;
}

.pop-content {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -225px 0 0 -125px;
  z-index: 2;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.5);
}

.popcontent {
  display: block;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.pop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}

.popbox-close-button {
  position: absolute;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  top: -14px;
  right: -14px;
  background-color: #fff;
  box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 34px;
  font-weight: lighter;
  padding: 0;
}

.popcontent img {
  width: 100%;
  height: 100%;
  display: block;
}

.flowbox {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 840px) {
  .pop-content {
    width: 70%;
    height: auto;
    top: 20%;
    margin: 0 0 0 -35%;
  }

  .popcontent img {
    height: auto;
  }
}

@media screen and (min-width: 992px) {
  .content-box .box-desc h4 {
    font-size: 20px;
  }
}

@media screen and (min-width: 576px) {
  .content-text-chat {
    width: 80%;
  }
}

@media screen and (max-width: 576px) {
  .wrapper-profil-chat {
    padding: 10px;
  }
  .wrapper-profil-chat span {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .content-text-chat {
    width: 90%;
    margin-left: 15px;
  }

  .mobile-img {
    width: 100% !important;
    height: 250px !important;
    object-position: top !important;
  }
}
