/* * a{
  color: #48ba75;
}  */
* ::before,
::after {
  display: none;
}

/* body */
body {
  background: black;
}

/* running text */
marquee {
  color: #ffffff;
  background-color: #000000;
  font-size: 16px;
  padding: 10px 5px;
  font-weight: bold;
}


/* structure page */
.pkp_structure_page {
  background-color: #e0e0e0;
}

/* nav user */
ul#navigationUser {
  display: none;
}

/* Header */
.pkp_head_wrapper {
  padding: 0;
}

.has_site_logo .pkp_head_wrapper {
  padding-top: 0;
  width: 100%;
}

/* site name */
.pkp_site_name {
  text-align: center;
}

.pkp_site_name a img:focus {
  border: none;
}

@keyframes suy {
  from {
    filter: brightness(1);
  }

  to {
    filter: brightness(1.2);
    transform: scale(1.2);
  }
}

.pkp_site_name_wrapper {
  padding: 20px 0;
  background-color: #000000;
  width: 100%;
}

.pkp_site_name a img:hover {
  animation-name: suy;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}


/* navbar */
.pkp_site_nav_menu {
  background: rgb(0, 0, 0);
  padding-bottom: 30px;
}

#navigationPrimary li a {
  color: rgb(255, 255, 255);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

#navigationPrimary li a:focus {
  color: black;
}

ul#navigationPrimary li a:hover {
  border: none;
}

ul#navigationPrimary li a::after {
  content: "";
  display: block;
  position: absolute;
  width: 80%;
  height: 3px;
  background: #ffffff;
  transition: transform 0.2s;
  transform: scale(0);
}

ul#navigationPrimary li a:hover::after {
  transform: scale(1);
}

.pkp_navigation_search_wrapper a {
  color: rgb(255, 255, 255);
  font-weight: bold;
  display: none;
}

.pkp_navigation_primary {
  display: inline-block;
  max-width: 100%;
  text-align: center;
  width: 100%;
}

.pkp_navigation_primary_wrapper {
  width: 1106px !important;
  display: flex;
  justify-content: center;
}

/* structure content */
.pkp_structure_main {
  width: 100%;
}

.pkp_structure_main>p,
a {
  color: black;
}

.page.page_about>a,
p {
  color: black;
  text-align: justify;
}

.pkp_page_index .current_issue .read_more {
  color: #45986c;
}

/* Custom Page */
.page-custom {
  display: grid;
  grid-template-columns: 300px 300px 300px 300px;
  width: 100%;
}

.page-custom a img {
  width: 90%;
  padding: 10px;
}


/* footer */
.pkp_structure_footer_wrapper {
  background-color: #000000;
  background-size: cover;
}

.pkp_brand_footer a {
  display: none;
}

.pkp_footer_content p {
  color: white;
  text-align: center;
}

.pkp_footer_content a {
  color: white;
  text-align: center;
}


@media (max-width: 920px) {
  .pkp_structure_content {
    padding: 0 30px 30px 30px;
  }

  .pkp_site_nav_toggle>span {
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }

  .has_site_logo .pkp_head_wrapper {
    padding: 0;
  }

  .pkp_site_name_wrapper {
    padding: 0;
    height: 50px;
  }

  #navigationPrimary li a:focus {
    color: rgb(255, 255, 255);
  }

  ul#navigationPrimary li a:hover::after {
    transform: scale(0);
  }

  .pkp_navigation_primary {
    text-align: center;
  }

  .pkp_navigation_primary_wrapper {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .page-custom {
    display: grid;
    grid-template-columns: 100%;
  }

  .page-custom a img {
    width: 90%;
    padding: 2px;
  }
}