/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --rounded-small: 4px;
  --rounded-normal: 8px;
  --body-padding: 50px;
  --body-container: 970px;
  --section-space: 15px;
  --bg-red: #9A1E23;
  --bg-red-2: #C23D38;
  --size-1: 5px;
  --size-2: 8px;
  --size-3: 13px;
  --size-4: 21px;
  --size-5: 34px;
  --size-6: 55px;
  --size-7: 89px;
  --headline-gap: 5px;
}
body {
  font-family: 'Lato', sans-serif;
  color: #444444;
}

a {
  color: #232323;
  text-decoration: none;
}

a:hover {
  color: #232323;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lato', sans-serif;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #000;
  padding: 25px 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}
#topbar .logo {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#topbar .logo a {
  color: #fff;
  border-left: 4px solid #089bfd;
  padding-left: 10px;
}

#topbar .logo img {
  max-height: 32px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #232323;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #232323;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #333;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
}

#header.header-scrolled {
  padding: 5px 0;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
}

#header .logo {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
  border-left: 4px solid #089bfd;
  padding-left: 10px;
}

#header .logo img {
  max-height: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: start;
  gap: 30px;
  width: 100%;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px 10px 0px;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-family: 'Prompt', sans-serif;
}
.navbar {
  width: 100%;
  padding: 0;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #232323;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #232323;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #232323;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  color: #232323;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #232323;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0b2341;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #232323;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #232323;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 86vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
  margin-top: 90px;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  /* background-color: rgba(4, 12, 21, 0.5); */
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: #232323;
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: #232323;
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #232323;
}

#hero .btn-get-started {
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #232323;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #232323;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f6f9fd;
}

/* .section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: 'Lato', sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
} */

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;;
  color: #0f2f57;
}
.btn:first-child:active {
  background-color: black;
}
/* .section-title h3{
  font-size: 32px;
  color: #232323;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-title h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #232323;
  bottom: 0;
  left: calc(50% - 20px);
} */

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: #0b2341;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta-btn {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #232323;
  color: #fff;
}

.cta-btn:hover {
  background: #232323;
  border: 2px solid #232323;
}

.cta-btn2 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #232323;
  color: #232323;
}

.cta-btn2:hover {
  background: #232323;
  color:#fff;
  border: 2px solid #232323;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #000;
  min-height: 40px;
  margin-top: 98px;
}

.breadcrumbs li {
  color:#fff;
}

.breadcrumbs li a{
  color:#fff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #232323;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 4px solid #232323;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Lato', sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #0a1e38;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #232323;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #FFF;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #232323;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #232323;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #232323;
}

#footer .copyright {
  /* border-top:1px solid #e5e7eb; */
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

.bg-grey{
  background:#F1F1F1;
}

/*--------------------------------------------------------------
# Base Style
--------------------------------------------------------------*/
.w-kly {
  width: 1056px !important;
  max-width: none !important;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.has-search .form-control {
  padding-left: 2.375rem;
}
.has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}
#main{
  margin-top:90px;
}
.wrap-headline .main-headline div:nth-of-type(1) {
  /* flex-basis: 80%; */
  height: 375px;
  overflow: hidden;
}

.wrap-headline .side-headline div:nth-of-type(1) {
  height: 185px;
  overflow: hidden;
}
.img-headline{
  position:relative;
}
.img-headline img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
}
.item-headline{
  height: 185px;
  position:relative;
  border-radius:8px;
  overflow: hidden;
}
.content-headline{
  position: absolute;
  z-index: 4;
  bottom: 0;
  padding: 15px;
  width: 100%;
}
.item-headline:hover{
  /* cursor:pointer; */
}
.img-headline a:before{
  content: "";
  background: rgb(0 0 0 / 10%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  -webkit-animation: loading-image .5s linear 0s infinite;
  -moz-animation: loading-image .5s linear 0s infinite;
  -o-animation: loading-image .5s linear 0s infinite;
  animation: loading-image .5s linear 0s infinite;
  z-index: 3;
}
.item-headline:hover .img-headline a:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient( to right,rgba(0,0,0,0) 10%,rgba(0,0,0,0.1) 50%,rgba(0,0,0,0) 90% );
  background-size: 650px auto;
  -webkit-animation: loading-image .5s linear 0s infinite;
  -moz-animation: loading-image .5s linear 0s infinite;
  -o-animation: loading-image .5s linear 0s infinite;
  animation: loading-image .5s linear 0s infinite;
}

.item-headline:hover img{
  opacity: 0.65;
}

.main-headline h2 a{
  font-size:34px;
  text-shadow: 2px 2px 5px #000;
  color:white;
}
.content-headline h2{
  z-index: 4;
  position:relative;
}
.content-headline span{
  position:relative;
  z-index: 4;
}
.content-headline span small:first-child a{
  color:white;
  border-right: 1px solid white;
  padding-right: 5px;
  font-weight:bold;
}
.content-headline span small{
  color:#BDBDBD;
  font-size:11px;
}
.side-headline h2{
  font-size:18px;
  color:white;
  text-shadow: 2px 2px 5px #000;
}
.side-headline h2 a{
  font-size:18px;
  color:white;
}
.content-headline:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  background-color: rgba(0,0,0,0.5);
  background: -moz-linear-gradient(bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
}
.beritaku .section-title {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 5px;
  color:#757575;
}
.beritaku  .section-title:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 50px;
  overflow: hidden;
  background: linear-gradient( to right,#000000 0%,#757575 100% );
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
.border-radius-8{
  border-radius: 8px;
}
.beritaku .wrap-img{
  height:120px;
  overflow:hidden;
  border-radius: 8px;
}
.border-dashed{
  border-bottom: 1px dashed #e0e0e0;
}
.beritaku .sub small:first-child a{
  border-right: 1px solid #bcbcbc;
  padding-right: 5px;
  font-weight:bold;
  color:#231f20;
}
.btnMore {
  border-radius: 8px;
	background-color:#1d1916;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:9px 23px;
	text-decoration:none;
  text-align:center
}
.btnMore:hover {
	background-color:#848280;
  color:#fff;
}
.btnMore:active {
	position:relative;
	top:1px;
}
.beritaku h2 a{
  font-size:16px;
  color:#231f20;
  font-weight: bold;
}
.beritaku h2{
  line-height: 0.65;
}
.beritaku .sub{
  font-size:11px;
}
.beritaku .desc{
  font-size:14px;
  color:#757575;
}
.ari-list{
  list-style: none;
  padding-left: 0;
}
.ari-list>li {
  position: relative;
  margin-top: 3px;
}
.ari-list>li:before {
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  color: #231f20;
  font-size: 12px;
  content: "\ea5c";
  font-family: boxicons!important;
  font-weight: 500;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 150%;
}
.ari-link {
  color: #231f20;
  display: block;
  margin-left: 11px;
  padding: 3px 0 3px 15px;
}
.ari-label, .ari-link h2 {
  font-size: 14px;
  line-height: 140%;
}
@-webkit-keyframes loading-image {
  0% {
      background-position: 0 0
  }

  100% {
      background-position: 650px 0
  }
}

@-moz-keyframes loading-image {
  0% {
      background-position: 0 0
  }

  100% {
      background-position: 650px 0
  }
}

@-o-keyframes loading-image {
  0% {
      background-position: 0 0
  }

  100% {
      background-position: 650px 0
  }
}

@keyframes loading-image {
  0% {
      background-position: 0 0
  }

  100% {
      background-position: 650px 0
  }
}
.sidebar{
  border: 1px solid #e5e7eb;
  border-radius:8px;
  /* padding:10px 20px; */
}
.sidebar .item-list{
  padding:15px;
  position:relative;
  padding-left: 80px;
  min-height: 108px;
  display: flex;
  justify-content: center;
  flex-flow: column;
  border-top: 1px solid #e5e7eb;
  padding-right: 40px;
}
body {
  /* Set "my-sec-counter" to 0 */
  counter-reset: popular;
}
.sidebar .item-list::before {
  counter-increment: popular;
  content: counter(popular);
  color: #ECECEC;
  font-style: italic;
  font-weight: 700;
  font-size: 42px;
  position: absolute;
  width: 30px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 0;
  margin-top: -25px;
  padding-left: 40px;
}
.item-desc-tag {
    font-weight: 700;
    text-transform: uppercase;
    color: #CA0000;
    font-size:14px;
}
.item-list h4{
  font-size:14px;
  color:#231f20;
  font-weight: 400;
}
.wp-pagenavi {
  width: 100%;
  /* clear: both; */
  font-size: initial;
  padding: 5px 0;
  text-align: center;
  margin: 5px auto;
  line-height: 45px;
}
.pages {
  color: #000;
  width: auto;
  height: auto;
  margin: 0 3px;
  border: 1px solid #e9e9e9;
  padding: 8px;
  background-color: #FFF;
}
.current-pag {
  color: #333;
  width: auto;
  height: auto;
  margin: 0;
  border: 1px solid #e9e9e9;
  padding: 8px;
  margin-right: 3px;
}
.current-pag {
  color: #FFFFFF;
  background-color: #000000;
}
.wp-pagenavi a:hover {
  border: 1px solid #e9e9e9;
  color: #FFF;
  background-color: #000000;
}
.wp-pagenavi a {
  color: #000;
  text-decoration: none;
  border: 1px solid #e9e9e9;
  padding: 8px;
  background-color: #FFF;
  margin: 5px 0;
}
.post-content .post-title{
  font-weight: 900;
  font-size: 32px;
  line-height: 42px;
  word-spacing: 233444444;
  letter-spacing: 0.1rem;
}
.post-content .section-title:before {
  display:none
}
.tagcloud {
  padding: 0
}

.tagcloud a {
  color: #231f20;
  padding: 9px 18px;
  background-color: #eee;
  border: 1px solid rgba(0,0,0,.05);
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px
}

.tagcloud a:hover {
  background-color: #231f20;
  color: #fff;
}
.bituli{
    display:none !important;
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 20px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 16px;
  color: #000;
  display: block;
  transition: 0.3s;
  text-transform: capitalize;
}

.sidenav a:hover {
  color: #9a1b1f;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
.bi.bi-x{
    font-size:28px !important;
}
.siki{
    position: sticky;
    top: 0;
    height: 100%;
}
.h-full{
    height:100%;
}
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
  
}
.piyu p:first-of-type, .piyu h1:first-child, .piyu span:first-child {
    display: contents;
}
.bakunil{
    display:none;
}
.linky{
    border-top: 1px solid #424242;
    border-bottom: 1px solid #424242;
    margin: 10px 0 15px;
}
.linky a{
    color:white;
    margin: 5px 10px;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
}
@media(max-width:768px){
    .bakunil{
        display:block;
    }
    .bakuki{
        display:none;
    }
  .puras{
     display: flex;
     justify-content: space-between;
     padding: 0 8px 0 32px;
     border-bottom: 1px solid #eee;
     align-items:center;
  }
  .w-kly {
    width: 100% !important;
  }
  #topbar{
    display:none !important;
  }

  .navbar ul {
    justify-content: flex-end;
  }

  #header{
    border-bottom: 1px solid #eee;
  }

  #header .logo img {
    max-height: 30px;
  }
  .navbar {
    width:auto;
    padding: 0 5px;
  }
  #main {
    margin-top: 60px;
  }

  .wrap-headline .main-headline div:nth-of-type(1) {
    height: auto;
    overflow: hidden;
    min-height: 180px;
  }

  .item-headline {
    margin-bottom: 4px;
  }

  .main-headline h2 a {
    font-size: 17px;
    text-shadow: 2px 2px 5px #000;
    color: white;
  }

  .beritaku .wrap-img {
    height: auto;
  }

  .breadcrumbs {
    margin-top: 44px;
  }

  .post-content .post-title {
    font-weight: 900;
    font-size: 20px;
    line-height: 30px;
  }

  .post-content{
    overflow: hidden;
  }

  #header,#header.header-scrolled {
    padding: 20px 0;
  }

  .navbar ul {
    width: 92%;
  }
  
  section {
    padding: 30px 0;
  }
  .px-s-2{
    padding-left: 5px;
    padding-right: 5px;
  }
  .pe-s-0{
      padding-right: 0 !important; 
  }
  .px-8 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .bakupi .desc {
    display:none;
 }
 .bandi{
     display: flex;
    flex-direction: column-reverse;
 }
 .beritaku .sub small:first-child a {
    color: #9a1b1f;
    text-transform: uppercase;
 }
 .bituli{
     display:block !important;
 }
 .bituli i{
    color: #0b2341 !important;
    font-size: 28px !important;
    cursor: pointer !important;
    line-height: 0 !important;
    transition: 0.5s !important;
 }
}
@media(min-width:769px){
  #header .logo{
    display:none;
  }
  .fixed-top{
      border-bottom: 1px solid #eee;
  }
      
}