@charset "UTF-8";
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins/Poppins-Regular.ttf");
}
@font-face {
  font-family: Poppins-bold;
  src: url("../font/Poppins/Poppins-SemiBold.ttf");
}
@font-face {
  font-family: Roboto;
  src: url("../font/Roboto/Roboto-Regular.ttf");
}
@font-face {
  font-family: Roboto-black;
  src: url("../font/Roboto/Roboto-Black.ttf");
}
html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Poppins", Roboto, Arial !important;
  background: #fbfbfb !important;
}

.container {
  max-width: 1040px !important;
}

.row-content {
  display: flex;
  flex-wrap: warp;
}

.clearfix-content::after {
  content: "";
  clear: both;
  display: table;
}

.ads-rectangle {
  margin-bottom: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

header {
  background-color: #fff;
  padding: 16px 0px;
  border-bottom: 1px solid rgba(173, 173, 173, 0.2);
  transition: all 1s;
}

.head-logo {
  float: left;
  width: 20%;
}
.head-logo img {
  width: 200px;
}

.head-nav {
  float: left;
  width: 65%;
  position: relative;
}

.navigation {
  font-family: "Poppins", Roboto, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: right;
  margin: 0px;
  padding: 0px;
}

.navigation * {
  box-sizing: border-box;
  transition: all 0.35s ease;
}

.navigation li {
  display: inline-block;
  list-style: outside none none;
  margin: 0px 10px;
  overflow: hidden;
}

.navigation a {
  padding: 0.3em 0;
  color: #252525;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
  margin: 0;
}
.navigation a:hover {
  text-decoration: none;
}

.navigation li a.active {
  color: #3894E4;
}

.navigation a:before,
.navigation a:after {
  position: absolute;
  transition: all 0.35s ease;
}

.navigation a:before {
  bottom: 100%;
  display: block;
  width: 100%;
  content: "";
  background-color: #3894E4;
}

.navigation a:after {
  padding: 0.3em 0;
  position: absolute;
  bottom: 100%;
  left: 0;
  content: attr(data-hover);
  color: #3894E4;
  white-space: nowrap;
}

.navigation li:hover a,
.navigation .current a {
  color: #3894E4;
  transform: translateY(100%);
  text-decoration: none;
}

.head-search {
  float: left;
  width: 15%;
  text-align: right;
  font-family: "Poppins", Roboto, sans-serif;
  font-size: 16px;
  padding: 6px 0px;
}

.btn-animate {
  position: relative;
  background: #3894E4;
  padding: 5px 15px;
  border-radius: 50px;
  color: #fff;
}
.btn-animate:hover {
  background: #A3CD3C;
  color: #fff;
  text-decoration: none;
}

.btn-animate span {
  position: absolute;
  left: 0px;
  top: 4px;
  opacity: 0;
  margin-left: -20px;
  transition: 0.5s;
}

.btn-animate .icon-search {
  transition: 0.5s;
  margin-left: 0px;
}

.btn-animate:hover span {
  margin-left: 20px;
  opacity: 1;
}

.btn-animate:hover .icon-search {
  margin-left: 45px;
}

.sticky {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0px;
  animation: mymove 0.3s ease-in-out;
  border-bottom: 1px solid #fff;
  box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
}

.nav-fixed {
  height: 60px;
}

.nav-- {
  height: 0px;
}

@keyframes mymove {
  from {
    top: -60px;
  }
  to {
    top: 0px;
  }
}
.desktop {
  display: block;
}

.mobile {
  display: none;
}

.left-content {
  float: left;
  width: 700px;
  padding-right: 30px;
  margin-top: 30px;
}

.right-content {
  float: right;
  width: 300px;
  margin-top: 30px;
}

.pagination {
  margin: 50px 0px;
  display: block !important;
}
.pagination ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  text-align: center;
}
.pagination li {
  display: inline-block;
}
.pagination a {
  background: #fff;
  padding: 10px 13px;
  border-radius: 10px;
  border: 2px solid #3894E4;
  color: #3894E4;
  font-size: 14px;
  text-align: center;
  transition: all ease 0.5s;
  outline: none;
  min-width: 45px;
  height: 45px;
  display: inline-block;
}
.pagination a:hover {
  color: #fff;
  background: #3894E4;
  text-decoration: none;
}
.pagination .active {
  color: #fff;
  background: #3894E4;
}
.pagination .disabled {
  border: 2px solid #3894E4;
  color: #3894E4;
  background: #fff;
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  opacity: 0.5;
}

.title-side {
  font-family: "Poppins-bold", "arial", "tahoma";
  font-size: 20px;
  margin-bottom: 10px;
  color: #3894E4;
}

.wrap-not-found {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found-page {
  height: auto;
}

.btn-back-home {
  margin: 30px auto;
  text-align: center;
}
.btn-back-home a {
  font-size: 16px;
  color: #fff;
  background-color: #3894E4;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all ease 0.2s;
}
.btn-back-home a:hover {
  text-decoration: none;
  background-color: #A3CD3C;
  color: #fff;
}

.warp-title-kategori {
  position: relative;
  width: 100%;
}
.warp-title-kategori:after {
  position: absolute;
  content: "";
  left: 0;
  top: 16px;
  border-bottom: 2px solid #dedede;
  width: 100%;
  z-index: -1;
}
.warp-title-kategori:before {
  position: absolute;
  content: "";
  border-bottom: 4px solid #A3CD3C;
  right: 0;
  bottom: 20px;
  width: 60px;
}

.title-kategori {
  font-family: "Poppins-bold", "arial", "tahoma";
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 11px;
  padding-right: 11px;
  color: #3894E4;
  width: -moz-max-content;
  width: max-content;
  background-color: #fbfbfb;
}

.more-artikel {
  float: right;
  text-align: right;
}
.more-artikel a {
  font-size: 24px;
  font-weight: bold;
  color: #252525;
  transition: all ease 0.2s;
}
.more-artikel a:hover {
  text-decoration: none;
  color: #3894E4;
}

/* To Top */
.btn-2top {
  width: 28px;
  height: 28px;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 9;
  border: 1px solid rgb(56, 148, 228);
  border-radius: 50%;
  outline: none;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  background-color: rgb(56, 148, 228);
  transition: ease all 0.3s;
  color: #fff;
  font-size: 11px;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0px 0px 2px;
}

.top-block {
  visibility: visible;
  opacity: 1;
  transform: scale(2);
  transition: ease all 0.3s;
}
.top-block i {
  transition: ease all 0.3s;
}

.img-not-result {
  width: 100%;
}
.img-not-result img {
  display: block;
  margin: auto;
  width: 250px;
}

.title-not-result {
  width: 100%;
  font-size: 40px;
  text-align: center;
  color: #252525;
}

.headline {
  margin-bottom: 30px;
  box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
  border-radius: 10px;
  transition: all 0.35s ease;
}
.headline:hover {
  box-shadow: 0px 2px 8px 2px rgba(82, 86, 80, 0.3);
}
.headline:hover a {
  text-decoration: none;
}
.headline:hover a .title-headline {
  background-position: 0 100%;
}

.img-headline {
  width: 100%;
  height: 350px;
}
.img-headline img {
  width: 100%;
  height: 350px;
  border-radius: 10px 10px 0px 0px;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-headline a:hover .title-headline a {
  color: red;
}

.detail-headline {
  padding: 15px;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
}

.kategori-headline {
  font-size: 16px;
  font-weight: bold;
  color: #A3CD3C;
  margin-bottom: 10px;
}

.title-headline {
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  font-size: 25px;
  font-family: "Poppins-bold", "Roboto-black", "arial";
  color: #252525;
  overflow: hidden;
  background: linear-gradient(to right, #0698ef, #0698ef 50%, #252525 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 275ms ease;
}

.author {
  font-size: 12px;
  font-weight: bold;
  color: #A9A9A9;
}

.date {
  font-size: 12px;
  color: #A9A9A9;
}
.date:before {
  content: "•";
  margin: 0px 5px;
}

.box-artikel {
  margin: 0px -15px;
  display: flex;
  flex-wrap: wrap;
}

.list-artikel {
  width: 50%;
  float: left;
  padding: 0px 15px;
  margin-bottom: 30px;
}

.artikel {
  box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
  border-radius: 10px;
  transition: all 0.35s ease;
}
.artikel:hover {
  box-shadow: 0px 2px 8px 2px rgba(82, 86, 80, 0.3);
}
.artikel:hover a {
  text-decoration: none;
}
.artikel:hover a .title-artikel {
  background-position: 0 100%;
}

.img-artikel {
  width: 100%;
  height: 200px;
}
.img-artikel img {
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0px 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail-artikel {
  padding: 15px;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
}

.kategori-artikel {
  font-size: 14px;
  font-weight: bold;
  color: #A3CD3C;
  margin-bottom: 10px;
}

.title-artikel {
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-family: "Poppins-bold", "Roboto-black", "arial";
  color: #252525;
  overflow: hidden;
  background: linear-gradient(to right, #0698ef, #0698ef 50%, #252525 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 275ms ease;
}

.pencarian {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 100%;
  height: 100%;
}
.pencarian img {
  width: 400px;
  display: block;
  margin: 0px auto 30px;
}

.form-cari {
  width: 700px;
  text-align: center;
  position: relative;
}

.txt-cari {
  font-size: 20px;
  border-radius: 50px;
  border: 2px solid #dedede;
  padding: 20px 80px 20px 20px;
  width: 100%;
  color: #252525;
  transition: ease all 0.3s;
}
.txt-cari:focus {
  border: 2px solid #A3CD3C;
  outline: none;
}

.btn-cari {
  position: absolute;
  top: 2px;
  right: 2px;
  color: #3894E4;
  background: #fff;
  font-size: 30px;
  border-radius: 0px 50px 50px 0px;
  border: none;
  text-align: center;
  height: 69px;
  width: 75px;
}

.pencarian-populer {
  margin-top: 20px;
}
.pencarian-populer ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.pencarian-populer li {
  display: inline-block;
  margin: 0px 5px 5px 0px;
  padding: 8px 0px;
}
.pencarian-populer a {
  font-size: 16px;
  background: #A3CD3C;
  color: #fff;
  padding: 8px 15px;
  border-radius: 50px;
}
.pencarian-populer a:hover {
  background: #87B11F;
  text-decoration: none;
  color: #fff;
}

.title-pencarian-populer {
  font-size: 16px;
  color: #252525;
  margin-right: 10px;
  font-family: "Poppins-bold", "Roboto-black", "arial";
}

.close-pencarian {
  position: absolute;
  top: 70px;
  right: 70px;
  font-size: 30px;
  background: red;
  border-radius: 50px;
  color: #fff;
  padding: 5px 17px;
}
.close-pencarian:hover {
  color: #fff;
  text-decoration: none;
}

.ebook {
  margin: 0px;
}

.title-ebook-section {
  float: left;
  font-size: 24px;
  font-family: "Poppins-bold", "Roboto-black", "arial";
  color: #3894E4;
  text-align: left;
}

.list-ebook {
  padding-top: 30px;
}

.left-ebook-content {
  float: left;
  width: 60%;
  padding-right: 20px;
}

.right-ebook-content {
  float: right;
  width: 40%;
}
.right-ebook-content img {
  width: 100%;
  box-shadow: 0px 2px 8px 2px rgba(82, 86, 80, 0.3);
}

.title-ebook {
  color: #252525;
  font-size: 35px;
  font-family: "Poppins-bold", "Roboto-black", "arial";
}

.desc-ebook {
  color: #252525;
  font-size: 16px;
  margin-top: 20px;
}

.btn-unduh {
  margin-top: 40px;
}
.btn-unduh a {
  font-size: 16px;
  padding: 10px 40px;
  color: #fff;
  background-color: #3894E4;
  transition: all ease 0.2s;
}
.btn-unduh a:hover {
  text-decoration: none;
  background-color: #A3CD3C;
  color: #fff;
}

.travelling {
  margin: 80px 0px 0px;
  padding: 30px 0px;
  background-color: #EDEDED;
}

.title-travelling-section {
  float: left;
  font-size: 24px;
  font-family: "Poppins-bold", "Roboto-black", "arial";
  color: #25A353;
  text-align: left;
}

.box-artikel-travelling {
  position: relative;
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
}

.list-artikel-travelling {
  width: 25%;
  padding: 30px 0px 0px;
  margin-bottom: 30px;
}

.artikel-travelling {
  box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
  border-radius: 10px;
  transition: all 0.35s ease;
}
.artikel-travelling:hover {
  box-shadow: 0px 2px 8px 2px rgba(82, 86, 80, 0.3);
}
.artikel-travelling:hover a {
  text-decoration: none;
}
.artikel-travelling:hover a .title-artikel-travelling {
  background-position: 0 100%;
}

.img-artikel-travelling {
  width: 100%;
  height: 150px;
}
.img-artikel-travelling img {
  width: 100%;
  height: 150px;
  border-radius: 10px 10px 0px 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.title-artikel-travelling {
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: "Poppins-bold", "Roboto-black", "arial";
  color: #252525;
  overflow: hidden;
  background: linear-gradient(to right, #0698ef, #0698ef 50%, #252525 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 275ms ease;
}

.detail-artikel-travelling {
  padding: 15px;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
  min-height: 114px;
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 15px !important;
  font-weight: bold !important;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: -24px !important;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: -24px !important;
}

.swiper-button-next, .swiper-button-prev {
  background: #25a353 !important;
  color: #fff !important;
  border-radius: 50px !important;
  border: 3px solid #ededed !important;
  padding: 20px !important;
  top: 33% !important;
}

.artikel-baru {
  margin-bottom: 30px;
}

.list-artikel-side {
  margin-bottom: 15px;
}
.list-artikel-side:hover a .title-artikel-side {
  background-position: 0 100%;
  text-decoration: none;
}

.img-artikel-side {
  width: 100px;
  height: 100px;
  float: left;
  overflow: hidden;
  border-radius: 5px;
}
.img-artikel-side img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.detail-artikel-side {
  width: 200px;
  float: right;
  padding-left: 15px;
}

.title-artikel-side {
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: "Poppins-bold", "Roboto-black", "arial";
  color: #252525;
  overflow: hidden;
  background: linear-gradient(to right, #0698ef, #0698ef 50%, #252525 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 275ms ease;
}

.date-artikel-side {
  font-size: 10px;
  color: #A9A9A9;
}

.tag-populer {
  margin-bottom: 30px;
}

.list-tag-populer ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.list-tag-populer li {
  display: inline-block;
  padding: 8px 0px;
  margin-right: 5px;
}
.list-tag-populer a {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 10px;
  background: #A3CD3C;
  border-radius: 5px;
  transition: all ease 0.3s;
}
.list-tag-populer a:hover {
  background: #3894E4;
  color: #fff;
  text-decoration: none;
}

.video {
  margin-bottom: 30px;
}

.headline-video {
  border-radius: 10px;
  margin-bottom: 15px;
}
.headline-video img {
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0px 0px;
  -o-object-fit: cover;
     object-fit: cover;
}
.headline-video:hover a {
  text-decoration: none;
}
.headline-video:hover a .title-video {
  background-position: 0 100%;
}

.headline-detail-video {
  padding: 12px;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
  box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
}

.title-video {
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: "Poppins-bold", "Roboto-black", "arial";
  color: #252525;
  overflow: hidden;
  background: linear-gradient(to right, #0698ef, #0698ef 50%, #252525 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 275ms ease;
}

.date-video {
  font-size: 12px;
  color: #A9A9A9;
}

.list-video {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  width: 300px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
}
.list-video:hover a {
  text-decoration: none;
}
.list-video:hover a .title-video {
  background-position: 0 100%;
}

.img-list-video {
  width: 100px;
  height: 100%;
  float: left;
  border-radius: 10px 10px 10px 10px;
}
.img-list-video img {
  width: 100px;
  height: 100%;
  border-radius: 10px 0px 0px 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.list-detail-video {
  width: 200px;
  min-height: 100px;
  border-radius: 0px 10px 10px 0px;
  float: right;
  padding: 10px;
  background: #fff;
}

.more-youtube {
  background: #FF0000;
  text-align: center;
  width: 100%;
  border-radius: 10px;
  transition: all ease 0.3s;
}
.more-youtube:hover {
  box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
  background-color: #fff;
}
.more-youtube a {
  color: #fff;
  padding: 10px;
  display: block;
}
.more-youtube a:hover {
  color: #FF0000;
  text-decoration: none;
}
.more-youtube .fa-youtube {
  font-size: 25px;
  margin: 0px 5px;
}

.artikel-populer {
  margin-bottom: 30px;
}

.warp-list-artikel-populer {
  padding: 5px 15px;
  border-radius: 10px;
  background: #F2F2F2;
}
.warp-list-artikel-populer ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

.list-artikel-populer {
  border-bottom: 1px dashed #252525;
  display: flex;
  flex-wrap: wrap;
}
.list-artikel-populer .title-populer {
  width: 85%;
  padding-left: 5px;
}
.list-artikel-populer .title-populer a {
  position: relative;
  display: block;
  padding: 10px 0px;
  font-size: 16px;
  color: #252525;
  font-weight: bold;
  overflow: hidden;
  background: linear-gradient(to right, #0698ef, #0698ef 50%, #252525 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 275ms ease;
}
.list-artikel-populer .title-populer a:hover {
  text-decoration: none;
  background-position: 0 100%;
}
.list-artikel-populer .no-populer {
  width: 15%;
  font-family: "Poppins-bold", "arial", "tahoma";
  font-size: 18px;
  font-weight: bold;
  color: #3894E4;
  padding: 10px 0px;
}
.list-artikel-populer:last-child {
  border-bottom: 0px;
}

.read-artikel {
  margin-bottom: 30px;
  box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
  border-radius: 10px;
}

.img-read-artikel {
  width: 100%;
  height: 400px;
}
.img-read-artikel img {
  width: 100%;
  height: 400px;
  border-radius: 10px 10px 0px 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail-read-artikel {
  padding: 15px;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
}

.kategori-read-artikel {
  font-size: 16px;
  font-weight: bold;
  color: #A3CD3C;
  margin-bottom: 10px;
}

.title-read-artikel {
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  font-size: 35px;
  font-family: "Poppins-bold", "Roboto-black", "arial";
  color: #252525;
  overflow: hidden;
}

.box-auth-read-artikel {
  margin-bottom: 15px;
}

.author-read-artikel {
  font-size: 14px;
  font-weight: bold;
  color: #A9A9A9;
}
.author-read-artikel a {
  color: #3894E4;
}
.author-read-artikel a:hover {
  text-decoration: none;
  color: #A3CD3C;
}
.author-read-artikel a:active {
  text-decoration: none;
  color: #A3CD3C;
}

.date-read-artikel {
  font-size: 14px;
  color: #A9A9A9;
}
.date-read-artikel:before {
  content: "•";
  margin: 0px 5px;
}

.desc-read-artikel {
  color: #252525;
  font-size: 16px;
  line-height: 30px;
}
.desc-read-artikel img {
  width: 100% !important;
  height: auto !important;
  border-radius: 5px;
  display: block;
  margin: auto;
}
.desc-read-artikel h4 {
  font-size: 25px;
}
.desc-read-artikel h5 {
  font-size: 12px;
  font-weight: normal !important;
  color: #7b7b7b;
}
.desc-read-artikel img[alt*=smiley],
.desc-read-artikel img[alt*=crying],
.desc-read-artikel img[alt*=wink],
.desc-read-artikel img[alt*=laugh],
.desc-read-artikel img[alt*=cheeky],
.desc-read-artikel img[alt*=surprise],
.desc-read-artikel img[alt*=heart],
.desc-read-artikel img[alt*=sad] {
  height: 23px !important;
  width: 23px !important;
  display: inline !important;
}

.tag-read-artikel {
  margin: 60px 0px 50px;
  text-align: center;
}
.tag-read-artikel ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.tag-read-artikel li {
  display: inline-block;
  margin: 0px 5px;
}
.tag-read-artikel a {
  background-color: #fff;
  border: 1px solid #DCDCDC;
  padding: 8px 20px;
  color: #252525;
  font-size: 14px;
  transition: ease all 0.5s;
  border-radius: 50px;
}
.tag-read-artikel a:hover {
  text-decoration: none;
  border: 1px solid #3894E4;
  color: #3894E4;
}

.prev-next {
  margin: 0px -30px;
}

.warp-prev-next {
  width: 100%;
  display: table;
  border-collapse: separate;
  border-spacing: 30px 0px;
  margin: 30px 0px;
}

.row-prev-next {
  display: table-row;
  height: 100%;
}

.list-prev-next-artikel {
  width: 50%;
  height: 100%;
  display: table-cell;
  box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
  border-radius: 10px;
  transition: all 0.35s ease;
  background-color: #fff;
}
.list-prev-next-artikel:hover {
  box-shadow: 0px 2px 8px 2px rgba(82, 86, 80, 0.3);
}
.list-prev-next-artikel:hover a {
  text-decoration: none;
}
.list-prev-next-artikel:hover a .title-prev-next-artikel {
  background-position: 0 100%;
}
.list-prev-next-artikel:hover a .nav-prev {
  color: #A3CD3C;
}
.list-prev-next-artikel:hover a .nav-next {
  color: #A3CD3C;
}

.prev-next-artikel {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.img-prev-next-artikel {
  width: 40%;
  height: 162px;
}
.img-prev-next-artikel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-prev {
  float: left;
}
.img-prev img {
  border-radius: 10px 0px 0px 10px;
}

.img-next {
  float: right;
}
.img-next img {
  border-radius: 0px 10px 10px 0px;
}

.title-prev-next-artikel {
  font-size: 16px;
  font-family: "Poppins-bold", "Roboto-black", "arial";
  color: #252525;
  background: linear-gradient(to right, #0698ef, #0698ef 50%, #252525 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 275ms ease;
}

.desc-prev, .desc-next {
  width: 60%;
  padding: 15px;
  height: 100%;
}

.desc-prev {
  float: right;
  text-align: left;
}

.desc-next {
  float: left;
  text-align: right;
}

.nav-prev, .nav-next {
  font-size: 14px;
  color: #3894E4;
  margin-bottom: 15px;
  transition: ease all 0.5s;
}

.warp-title-keyword {
  width: 100%;
  margin-bottom: 20px;
}

.title-keyword {
  font-family: "Poppins-bold", "tahoma", "arial";
  font-size: 20px;
  color: #3894E4;
}

.keyword {
  font-size: 18px;
  color: #252525;
}

.artikel-search {
  box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
  border-radius: 10px;
  transition: all 0.35s ease;
  height: 100%;
}
.artikel-search a {
  display: flex;
  flex-wrap: wrap;
}
.artikel-search:hover {
  box-shadow: 0px 2px 8px 2px rgba(82, 86, 80, 0.3);
}
.artikel-search:hover a {
  text-decoration: none;
}
.artikel-search:hover a .title-artikel {
  background-position: 0 100%;
}

.list-artikel-search {
  margin-bottom: 20px;
}

.img-artikel-search {
  width: 30%;
}
.img-artikel-search img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 0px 0px 10px;
}

.detail-artikel-search {
  width: 70%;
  padding: 10px 10px 10px 20px;
}

footer {
  background-color: #fbfbfb;
  padding: 80px 0px;
  color: #707070;
}

.footer-col-bio {
  float: left;
  width: 40%;
  padding-right: 120px;
}

.footer-col {
  float: left;
  width: 30%;
}

.logo-footer {
  width: 90%;
  margin-bottom: 30px;
}

.desc-blog {
  font-size: 16px;
}

.title-footer {
  font-size: 20px;
  font-weight: bold;
  padding-top: 10px;
  margin-bottom: 40px;
}

.social-footer ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.social-footer li {
  margin-bottom: 20px;
}
.social-footer a {
  font-size: 16px;
  color: #707070;
  transition: ease all 0.5s;
}
.social-footer a:hover {
  text-decoration: none;
  color: #A3CD3C;
}
.social-footer a img {
  width: 45px;
  margin-right: 10px;
}

.kontak-footer {
  font-size: 16px;
  color: #707070;
}
.kontak-footer table {
  border: 0px;
}
.kontak-footer table tr td {
  vertical-align: top;
}

.copy {
  font-size: 13px;
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 575.98px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .btn-2top {
    width: 20px;
    height: 20px;
  }
  .left-content {
    float: none;
    width: 100%;
    padding: 0px;
    margin-top: 0px;
  }
  .right-content {
    float: none;
    width: 100%;
    padding: 0px;
    margin-top: 0px;
  }
  .pagination a {
    padding: 8px 12px;
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .more-artikel {
    float: right;
    text-align: right;
  }
  .more-artikel a {
    font-size: 20px;
    font-weight: bold;
    color: #252525;
    transition: all ease 0.2s;
  }
  .more-artikel a:hover {
    text-decoration: none;
    color: #3894E4;
  }
  .not-found-page {
    margin: 40% 0px;
  }
  .hide-body {
    margin-bottom: 100px;
  }
  .warp-header {
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    padding: 10px 0px;
    border-bottom: 1px solid #eaeaea;
    background-color: #fff;
    box-shadow: 0px 1px 5px 0px rgb(212, 212, 212);
  }
  .logo-head {
    width: 70%;
  }
  .logo-head img {
    width: 200px;
    display: block;
    margin: auto;
    padding: 12px 0px;
  }
  .search-icon {
    width: 15%;
    text-align: right;
    cursor: pointer;
    font-size: 24px;
    padding: 13px 0px;
  }
  .search-icon a {
    color: #3894E4;
  }
  .search-icon a:hover, .search-icon a:focus {
    text-decoration: none;
    color: #3894E4;
  }
  .nav-icon {
    width: 15%;
    display: inline-block;
    cursor: pointer;
    padding: 16px 0px;
  }
  .ico-drop-nav {
    padding-left: 5%;
  }
  .bar1, .bar2, .bar3 {
    height: 3px;
    background-color: #3894E4;
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 2px;
  }
  .bar1 {
    width: 22px;
  }
  .bar2 {
    width: 22px;
  }
  .bar3 {
    width: 22px;
  }
  .change .bar1 {
    width: 25px;
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  .change .bar2 {
    opacity: 0;
  }
  .change .bar3 {
    width: 25px;
    transform: rotate(45deg) translate(-6px, -6px);
  }
  .nav-slide {
    position: fixed;
    top: -1500px;
    left: 0px;
    padding: 0px 15px;
    background-color: #fff;
    width: 100%;
    height: 100%;
    z-index: 97;
    overflow-y: scroll;
    transition: all 0.5s ease-in-out;
  }
  .nav-slide-primary {
    margin: 24px 0px 58px;
  }
  .nav-slide-primary a {
    color: #252525;
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
    display: block;
  }
  .nav-slide-primary a:hover, .nav-slide-primary a:focus {
    text-decoration: none;
    color: #252525;
  }
  .nav-slide-social {
    font-size: 24px;
    color: #A3CD3C;
    text-align: center;
    margin-bottom: 70px;
  }
  .nav-slide-social ul {
    list-style-type: none;
    padding: 0px;
    margin: 20px 0px 0px;
  }
  .nav-slide-social li {
    display: inline-block;
    margin-right: 8px;
  }
  .nav-slide-social li:last-child {
    margin-right: 0px;
  }
  .nav-slide-social a {
    font-size: 25px;
  }
  .nav-slide-social img {
    width: 40px;
    height: 40px;
  }
  a.social-fb {
    color: #1877f2 !important;
  }
  a.social-tw {
    color: #1da1f2 !important;
  }
  a.social-ig {
    color: #f00073 !important;
  }
  a.social-yt {
    color: #ff0000 !important;
  }
  .img-not-result {
    width: 100%;
  }
  .img-not-result img {
    display: block;
    margin: 30px auto;
    width: 150px;
  }
  .title-not-result {
    width: 100%;
    font-size: 20px;
    text-align: center;
    color: #252525;
    margin-bottom: 30px;
  }
  .headline {
    margin-bottom: 30px;
    box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
    border-radius: 10px;
    transition: all 0.35s ease;
  }
  .headline:hover {
    box-shadow: 0px 2px 8px 2px rgba(82, 86, 80, 0.3);
  }
  .headline:hover a {
    text-decoration: none;
  }
  .headline:hover a .title-headline {
    background-position: 0 100%;
  }
  .img-headline {
    width: 100%;
    height: 230px;
  }
  .img-headline img {
    width: 100%;
    height: 230px;
    border-radius: 10px 10px 0px 0px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .img-headline a:hover .title-headline a {
    color: red;
  }
  .detail-headline {
    padding: 15px;
    background: #fff;
    border-radius: 0px 0px 10px 10px;
  }
  .kategori-headline {
    font-size: 16px;
    font-weight: bold;
    color: #A3CD3C;
    margin-bottom: 10px;
  }
  .title-headline {
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-family: "Poppins-bold", "Roboto-black", "arial";
    color: #252525;
    overflow: hidden;
    background: linear-gradient(to right, #0698ef, #0698ef 50%, #252525 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 275ms ease;
  }
  .author {
    font-size: 10px;
    font-weight: bold;
    color: #A9A9A9;
  }
  .date {
    font-size: 10px;
    color: #A9A9A9;
  }
  .date:before {
    content: "•";
    margin: 0px 5px;
  }
  .box-artikel {
    margin: 0px -15px;
    display: flex;
    flex-wrap: wrap;
  }
  .list-artikel {
    width: 100%;
    float: left;
    padding: 0px 15px;
    margin-bottom: 30px;
  }
  .artikel {
    box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
    border-radius: 10px;
    transition: all 0.35s ease;
  }
  .artikel:hover {
    box-shadow: 0px 2px 8px 2px rgba(82, 86, 80, 0.3);
  }
  .artikel:hover a {
    text-decoration: none;
  }
  .artikel:hover a .title-artikel {
    background-position: 0 100%;
  }
  .img-artikel {
    width: 100%;
    height: 200px;
  }
  .img-artikel img {
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0px 0px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .detail-artikel {
    padding: 15px;
    background: #fff;
    border-radius: 0px 0px 10px 10px;
  }
  .kategori-artikel {
    font-size: 12px;
    font-weight: bold;
    color: #A3CD3C;
    margin-bottom: 10px;
  }
  .title-artikel {
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-family: "Poppins-bold", "Roboto-black", "arial";
    color: #252525;
    overflow: hidden;
    background: linear-gradient(to right, #0698ef, #0698ef 50%, #252525 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 275ms ease;
  }
  .pencarian {
    padding: 0px 16px;
  }
  .pencarian img {
    width: 70%;
    display: block;
    margin: 0px auto 30px;
  }
  .form-cari {
    width: 100%;
    text-align: center;
    position: relative;
  }
  .txt-cari {
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid #dedede;
    padding: 10px 50px 10px 20px;
    width: 100%;
    color: #252525;
  }
  .txt-cari:focus {
    border: 2px solid #A3CD3C;
    outline: none;
  }
  .btn-cari {
    position: absolute;
    top: 2px;
    right: 3px;
    color: #3894E4;
    background: #fff;
    font-size: 20px;
    border-radius: 0px 50px 50px 0px;
    border: none;
    text-align: center;
    height: 44px;
    width: 46px;
  }
  .pencarian-populer {
    margin-top: 20px;
  }
  .pencarian-populer ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
  }
  .pencarian-populer li {
    display: inline-block;
    margin: 0px 5px 5px 0px;
    padding: 8px 0px;
  }
  .pencarian-populer a {
    font-size: 16px;
    background: #A3CD3C;
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
  }
  .pencarian-populer a:hover {
    background: #87B11F;
    text-decoration: none;
    color: #fff;
  }
  .title-pencarian-populer {
    font-size: 16px;
    color: #252525;
    margin-right: 10px;
    font-family: "Poppins-bold", "Roboto-black", "arial";
    display: inline-block !important;
    width: 100%;
  }
  .close-pencarian {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 16px;
    background: red;
    border-radius: 50px;
    color: #fff;
    padding: 5px 12px;
  }
  .close-pencarian:hover {
    color: #fff;
    text-decoration: none;
  }
  .ebook {
    margin: 0px;
  }
  .title-ebook-section {
    float: left;
    font-size: 20px;
    font-family: "Poppins-bold", "Roboto-black", "arial";
    color: #3894E4;
    text-align: left;
  }
  .list-ebook {
    padding-top: 30px;
  }
  .left-ebook-content {
    width: 100%;
    padding-right: 0px;
  }
  .right-ebook-content {
    width: 100%;
    margin: 30px 0px 50px;
  }
  .right-ebook-content img {
    width: 60%;
    box-shadow: 0px 2px 8px 2px rgba(82, 86, 80, 0.3);
    border-radius: 10px;
  }
  .title-ebook {
    color: #252525;
    font-size: 35px;
    font-family: "Poppins-bold", "Roboto-black", "arial";
  }
  .desc-ebook {
    color: #252525;
    font-size: 16px;
    margin-top: 20px;
  }
  .btn-unduh {
    margin-top: 40px;
  }
  .btn-unduh a {
    font-size: 16px;
    padding: 10px 40px;
    color: #fff;
    background-color: #3894E4;
    transition: all ease 0.2s;
  }
  .btn-unduh a:hover {
    text-decoration: none;
    background-color: #A3CD3C;
    color: #fff;
  }
  .artikel-baru {
    margin-bottom: 30px;
  }
  .list-artikel-side {
    margin-bottom: 15px;
  }
  .list-artikel-side:hover a .title-artikel-side {
    background-position: 0 100%;
    text-decoration: none;
  }
  .img-artikel-side {
    width: 30%;
    height: 100px;
    float: left;
    overflow: hidden;
    border-radius: 5px;
  }
  .img-artikel-side img {
    width: 100%;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 5px;
  }
  .detail-artikel-side {
    width: 70%;
    float: right;
    padding-left: 15px;
  }
  .title-artikel-side {
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-family: "Poppins-bold", "Roboto-black", "arial";
    color: #252525;
    overflow: hidden;
    background: linear-gradient(to right, #0698ef, #0698ef 50%, #252525 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 275ms ease;
  }
  .date-artikel-side {
    font-size: 10px;
    color: #A9A9A9;
  }
  .video {
    margin-bottom: 30px;
  }
  .headline-video {
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .headline-video img {
    width: 100%;
    height: 220px;
    border-radius: 10px 10px 0px 0px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .headline-video:hover a {
    text-decoration: none;
  }
  .headline-video:hover a .title-video {
    background-position: 0 100%;
  }
  .headline-detail-video {
    padding: 12px;
    background: #fff;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
  }
  .title-video {
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-family: "Poppins-bold", "Roboto-black", "arial";
    color: #252525;
    overflow: hidden;
    background: linear-gradient(to right, #0698ef, #0698ef 50%, #252525 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 275ms ease;
  }
  .date-video {
    font-size: 10px;
    color: #A9A9A9;
  }
  .list-video {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
  }
  .list-video:hover a {
    text-decoration: none;
  }
  .list-video:hover a .title-video {
    background-position: 0 100%;
  }
  .img-list-video {
    width: 30%;
    height: 100%;
    float: left;
    border-radius: 10px 10px 10px 10px;
  }
  .img-list-video img {
    width: 100%;
    height: 100%;
    border-radius: 10px 0px 0px 10px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .list-detail-video {
    width: 70%;
    min-height: 100px;
    border-radius: 0px 10px 10px 0px;
    float: right;
    padding: 10px;
    background: #fff;
  }
  .more-youtube {
    background: #FF0000;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    transition: all ease 0.3s;
  }
  .more-youtube:hover {
    box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
    background-color: #fff;
  }
  .more-youtube a {
    color: #fff;
    padding: 10px;
    display: block;
  }
  .more-youtube a:hover {
    color: #FF0000;
    text-decoration: none;
  }
  .more-youtube .fa-youtube {
    font-size: 25px;
    margin: 0px 5px;
  }
  .travelling {
    margin: 20px 0px 0px;
    padding: 30px 0px;
    background-color: #EDEDED;
  }
  .title-travelling-section {
    float: left;
    font-size: 20px;
    font-family: "Poppins-bold", "Roboto-black", "arial";
    color: #25A353;
    text-align: left;
  }
  .box-artikel-travelling {
    position: relative;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
  }
  .list-artikel-travelling {
    width: 100% !important;
    padding: 30px 0px 0px;
    margin-bottom: 30px;
  }
  .artikel-travelling {
    box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
    border-radius: 10px;
    transition: all 0.35s ease;
  }
  .artikel-travelling:hover {
    box-shadow: 0px 2px 8px 2px rgba(82, 86, 80, 0.3);
  }
  .artikel-travelling:hover a {
    text-decoration: none;
  }
  .artikel-travelling:hover a .title-artikel-travelling {
    background-position: 0 100%;
  }
  .img-artikel-travelling {
    width: 100%;
    height: 220px;
  }
  .img-artikel-travelling img {
    width: 100%;
    height: 220px;
    border-radius: 10px 10px 0px 0px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .title-artikel-travelling {
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-family: "Poppins-bold", "Roboto-black", "arial";
    color: #252525;
    overflow: hidden;
    background: linear-gradient(to right, #0698ef, #0698ef 50%, #252525 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 275ms ease;
  }
  .detail-artikel-travelling {
    padding: 15px;
    background: #fff;
    border-radius: 0px 0px 10px 10px;
    min-height: 114px;
  }
  .swiper-container {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .swiper-button-next::after, .swiper-button-prev::after {
    font-size: 15px !important;
    font-weight: bold !important;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: -13px !important;
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: -13px !important;
  }
  .swiper-button-next, .swiper-button-prev {
    background: #25a353 !important;
    color: #fff !important;
    border-radius: 50px !important;
    border: 3px solid #ededed !important;
    padding: 20px !important;
    top: 33% !important;
  }
  .read-artikel {
    margin-bottom: 30px;
    box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
    border-radius: 10px;
  }
  .img-read-artikel {
    width: 100%;
    height: 250px;
  }
  .img-read-artikel img {
    width: 100%;
    height: 250px;
    border-radius: 10px 10px 0px 0px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .detail-read-artikel {
    padding: 15px;
    background: #fff;
    border-radius: 0px 0px 10px 10px;
  }
  .kategori-read-artikel {
    font-size: 16px;
    font-weight: bold;
    color: #A3CD3C;
    margin-bottom: 10px;
  }
  .title-read-artikel {
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    font-size: 30px;
    font-family: "Poppins-bold", "Roboto-black", "arial";
    color: #252525;
    overflow: hidden;
  }
  .box-auth-read-artikel {
    margin-bottom: 15px;
  }
  .author-read-artikel {
    font-size: 12px;
    font-weight: bold;
    color: #A9A9A9;
  }
  .author-read-artikel a {
    color: #3894E4;
  }
  .author-read-artikel a:hover {
    text-decoration: none;
    color: #A3CD3C;
  }
  .author-read-artikel a:active {
    text-decoration: none;
    color: #A3CD3C;
  }
  .date-read-artikel {
    font-size: 12px;
    color: #A9A9A9;
  }
  .date-read-artikel:before {
    content: "•";
    margin: 0px 5px;
  }
  .desc-read-artikel {
    color: #252525;
    font-size: 16px;
    line-height: 30px;
  }
  .desc-read-artikel img {
    width: 100% !important;
    height: auto !important;
    border-radius: 5px;
    display: block;
    margin: auto;
  }
  .desc-read-artikel h4 {
    font-size: 19px;
    line-height: 1.5;
  }
  .desc-read-artikel h5 {
    font-size: 12px;
    font-weight: normal !important;
    color: #7b7b7b;
  }
  .desc-read-artikel img[alt*=smiley], .desc-read-artikel img[alt*=crying] {
    height: 23px !important;
    width: 23px !important;
    display: inline !important;
  }
  .tag-read-artikel {
    margin: 60px 0px 50px;
    text-align: center;
  }
  .tag-read-artikel ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
  }
  .tag-read-artikel li {
    display: inline-block;
    margin: 15px 5px;
  }
  .tag-read-artikel a {
    background-color: #fff;
    border: 1px solid #DCDCDC;
    padding: 8px 20px;
    color: #252525;
    font-size: 14px;
    transition: ease all 0.5s;
    border-radius: 50px;
  }
  .tag-read-artikel a:hover {
    text-decoration: none;
    border: 1px solid #3894E4;
    color: #3894E4;
  }
  .komentar {
    margin-bottom: 20px;
  }
  .prev-next {
    margin: 0px 0px;
  }
  .warp-prev-next {
    width: 100%;
    display: block;
    border-collapse: separate;
    border-spacing: 30px 0px;
    margin: 30px 0px;
  }
  .row-prev-next {
    display: block;
    height: 100%;
  }
  .list-prev-next-artikel {
    width: 100%;
    height: 100%;
    display: inline-block;
    box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
    border-radius: 10px;
    transition: all 0.35s ease;
    background-color: #fff;
    margin-bottom: 15px;
  }
  .list-prev-next-artikel:hover {
    box-shadow: 0px 2px 8px 2px rgba(82, 86, 80, 0.3);
  }
  .list-prev-next-artikel:hover a {
    text-decoration: none;
  }
  .list-prev-next-artikel:hover a .title-prev-next-artikel {
    background-position: 0 100%;
  }
  .list-prev-next-artikel:hover a .nav-prev {
    color: #A3CD3C;
  }
  .list-prev-next-artikel:hover a .nav-next {
    color: #A3CD3C;
  }
  .prev-next-artikel {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
  }
  .img-prev-next-artikel {
    width: 40%;
    height: 100%;
  }
  .img-prev-next-artikel img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .img-prev {
    float: left;
  }
  .img-prev img {
    border-radius: 10px 0px 0px 10px;
  }
  .img-next {
    float: right;
  }
  .img-next img {
    border-radius: 0px 10px 10px 0px;
  }
  .title-prev-next-artikel {
    font-size: 16px;
    font-family: "Poppins-bold", "Roboto-black", "arial";
    color: #252525;
    background: linear-gradient(to right, #0698ef, #0698ef 50%, #252525 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 275ms ease;
  }
  .desc-prev, .desc-next {
    width: 60%;
    padding: 15px;
    height: 100%;
  }
  .desc-prev {
    float: right;
    text-align: left;
  }
  .desc-next {
    float: left;
    text-align: right;
  }
  .nav-prev, .nav-next {
    font-size: 14px;
    color: #3894E4;
    margin-bottom: 15px;
    transition: ease all 0.5s;
  }
  .warp-title-keyword {
    width: 100%;
    margin-bottom: 20px;
  }
  .list-artikel-search {
    margin-bottom: 20px;
  }
  .title-keyword {
    font-family: "Poppins-bold", "tahoma", "arial";
    font-size: 18px;
    color: #3894E4;
  }
  .keyword {
    font-size: 16px;
    color: #252525;
  }
  .artikel-search {
    box-shadow: 0px 2px 8px 2px rgba(173, 173, 173, 0.2);
    border-radius: 10px;
    transition: all 0.35s ease;
    height: 100%;
  }
  .artikel-search a {
    display: flex;
    flex-wrap: wrap;
  }
  .artikel-search:hover {
    box-shadow: 0px 2px 8px 2px rgba(82, 86, 80, 0.3);
  }
  .artikel-search:hover a {
    text-decoration: none;
  }
  .artikel-search:hover a .title-artikel {
    background-position: 0 100%;
  }
  .img-artikel-search {
    width: 30%;
  }
  .img-artikel-search img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px 0px 0px 10px;
  }
  .detail-artikel-search {
    width: 70%;
    padding: 10px 10px 10px 20px;
  }
  footer {
    background-color: #fbfbfb;
    padding: 30px 0px;
    color: #707070;
  }
  .footer-col-bio {
    float: left;
    width: 100%;
    padding-right: 0px;
  }
  .footer-col-bio img {
    width: 300px;
    margin-bottom: 20px;
  }
  .footer-col {
    float: left;
    width: 100%;
    margin-top: 20px;
  }
  .logo-footer {
    width: 100%;
    margin-bottom: 30px;
  }
  .desc-blog {
    font-size: 16px;
  }
  .title-footer {
    font-size: 16px;
    font-weight: bold;
    padding-top: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .social-footer ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
  }
  .social-footer li {
    margin-bottom: 20px;
  }
  .social-footer a {
    font-size: 16px;
    color: #707070;
    transition: ease all 0.5s;
  }
  .social-footer a:hover {
    text-decoration: none;
    color: #A3CD3C;
  }
  .social-footer a img {
    width: 45px;
    margin-right: 10px;
  }
  .kontak-footer {
    font-size: 16px;
    color: #707070;
  }
  .kontak-footer table {
    border: 0px;
  }
  .kontak-footer table tr td {
    vertical-align: top;
  }
  .copy {
    font-size: 13px;
    margin-top: 40px;
    text-align: center;
  }
}