/* Main Style */

.pkp_site_name {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pkp_site_name > a {
  padding-top: 0;
  padding-bottom: 0;
}

.pkp_site_name_wrapper {
  padding-left: 0;
  padding-right: 0;
}
/* .pkp_navigation_user_wrapper {top: 0; right: 0; padding-right:30px;} */
.pkp_brand_footer {
  display: none;
}

/* Navigation For Register and Login */
ul#navigationUser > li.profile {
  border-radius: 5px;
}

ul#navigationUser > li.profile > a:hover {
  color: #9271ff;
}

/* ul#navigationUser > li:first-child > a::before {
  content: '<span class="fa fa-user-circle-o"></span>&nbsp; Register';
} */
.pkp_nav_list > li > a {
  color: white;
  font-weight: bold;
}

.pkp_navigation_primary > li > a {
  border-bottom: 3px solid transparent;
}

.pkp_navigation_primary > li:first-child a {
  margin-left: 0.5em;
}

.pkp_navigation_primary > li:last-child a {
  margin-right: 0.5em;
}

.pkp_navigation_user > li:last-child > a {
  margin-right: 0;
}

.pkp_navigation_user .task_count {
  top: 0.1rem;
  background: #ff4d4d;
}

/* @media (min-width: 992px) {
} */

/* Navigation Sub Primary */
.pkp_navigation_primary ul a {
  margin-right: 0 !important;
}

#pkpDropdown3::before {
  content: "Howdy,";
}

.dropdown-menu {
  left: 0 !important;
}

/*.pkp_navigation_search_wrapper a {*/
/*  color: white;*/
/*}*/

/* Header */
.pkp_structure_head {
  background-color: transparent;
  border-bottom: none;
}

.pkp_head_wrapper {
  /*background-color: #00296B;*/
  border-bottom: 1px solid #ddd;
}

.pkp_structure_content {
  background: white;
}

.pkp_structure_footer_wrapper {
  background: transparent;
}

.pkp_footer_content {
  background: #ddd;
}

.pkp_site_nav_menu {
  background: #00509D;
}

/*.pkp_site_name .is_img {*/
/*  margin-bottom: 0;*/
/*}*/

/* .php_structure_page {
    width: 80vw;
} */

/* .pkp_structure_head, .pkp_structure_content, .pkp_structure_footer {
    box-shadow: 0 0px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
} */

/* Content Homepage */
@media only screen and (max-width: 600px) {
  .hide-small {
    display: none;
  }
}

@media (min-width: 601px) {
  .show-small {
    display: none;
  }
}

/* Custom Block Tools */
#customblock-tools img {
  max-width: unset;
  width: 70%;
}

#customblock-journal-template img {
  max-width: unset;
  width: 70%;
  border-radius: 3px;
}

/* Team */
.flag-img {
  max-width: unset;
  width: 50px;
}

/* Animation */
.dropdown {
  position: relative;
}
.dropdown a {
  text-decoration: none;
}
.dropdown [data-toggle="dropdown"] {
  display: block;
  color: white;
  background: #4682b4;
  -moz-box-shadow: 0 1px 0 #1f3a93 inset, 0 -1px 0 #1f3a93 inset;
  -webkit-box-shadow: 0 1px 0 #1f3a93 inset, 0 -1px 0 #1f3a93 inset;
  box-shadow: 0 1px 0 #1f3a93 inset, 0 -1px 0 #1f3a93 inset;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  padding: 10px;
}
.dropdown [data-toggle="dropdown"]:hover {
  background: #cd3d2e;
}
.dropdown [data-toggle="dropdown"]:before {
  position: absolute;
  display: block;
  content: "\25BC";
  font-size: 0.7em;
  color: #fff;
  top: 13px;
  right: 10px;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}
.dropdown > .dropdown-menu {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -moz-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -moz-transition: max-height 0.6s ease-out;
  -o-transition: max-height 0.6s ease-out;
  -webkit-transition: max-height 0.6s ease-out;
  transition: max-height 0.6s ease-out;
  animation: hideAnimation 0.4s ease-out;
  -moz-animation: hideAnimation 0.4s ease-out;
  -webkit-animation: hideAnimation 0.4s ease-out;
}
.dropdown > .dropdown-menu li {
  padding: 0;
}
.dropdown > input[type="checkbox"] {
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.dropdown > input[type="checkbox"]:checked ~ .dropdown-menu {
  max-height: 9999px;
  display: block;
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  animation: showAnimation 0.5s ease-in-out;
  -moz-animation: showAnimation 0.5s ease-in-out;
  -webkit-animation: showAnimation 0.5s ease-in-out;
  -moz-transition: max-height 2s ease-in-out;
  -o-transition: max-height 2s ease-in-out;
  -webkit-transition: max-height 2s ease-in-out;
  transition: max-height 2s ease-in-out;
}
.dropdown > input[type="checkbox"]:checked + a[data-toggle="dropdown"]:before {
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}

@keyframes showAnimation {
  0% {
    -moz-transform: scaleY(0.1);
    -ms-transform: scaleY(0.1);
    -webkit-transform: scaleY(0.1);
    transform: scaleY(0.1);
  }
  40% {
    -moz-transform: scaleY(1.04);
    -ms-transform: scaleY(1.04);
    -webkit-transform: scaleY(1.04);
    transform: scaleY(1.04);
  }
  60% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.04);
    -ms-transform: scaleY(1.04);
    -webkit-transform: scaleY(1.04);
    transform: scaleY(1.04);
  }
  100% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.02);
    -ms-transform: scaleY(1.02);
    -webkit-transform: scaleY(1.02);
    transform: scaleY(1.02);
  }
  100% {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@-moz-keyframes showAnimation {
  0% {
    -moz-transform: scaleY(0.1);
    -ms-transform: scaleY(0.1);
    -webkit-transform: scaleY(0.1);
    transform: scaleY(0.1);
  }
  40% {
    -moz-transform: scaleY(1.04);
    -ms-transform: scaleY(1.04);
    -webkit-transform: scaleY(1.04);
    transform: scaleY(1.04);
  }
  60% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.04);
    -ms-transform: scaleY(1.04);
    -webkit-transform: scaleY(1.04);
    transform: scaleY(1.04);
  }
  100% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.02);
    -ms-transform: scaleY(1.02);
    -webkit-transform: scaleY(1.02);
    transform: scaleY(1.02);
  }
  100% {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@-webkit-keyframes showAnimation {
  0% {
    -moz-transform: scaleY(0.1);
    -ms-transform: scaleY(0.1);
    -webkit-transform: scaleY(0.1);
    transform: scaleY(0.1);
  }
  40% {
    -moz-transform: scaleY(1.04);
    -ms-transform: scaleY(1.04);
    -webkit-transform: scaleY(1.04);
    transform: scaleY(1.04);
  }
  60% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.04);
    -ms-transform: scaleY(1.04);
    -webkit-transform: scaleY(1.04);
    transform: scaleY(1.04);
  }
  100% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.02);
    -ms-transform: scaleY(1.02);
    -webkit-transform: scaleY(1.02);
    transform: scaleY(1.02);
  }
  100% {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes hideAnimation {
  0% {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  60% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.02);
    -ms-transform: scaleY(1.02);
    -webkit-transform: scaleY(1.02);
    transform: scaleY(1.02);
  }
  100% {
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
@-moz-keyframes hideAnimation {
  0% {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  60% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.02);
    -ms-transform: scaleY(1.02);
    -webkit-transform: scaleY(1.02);
    transform: scaleY(1.02);
  }
  100% {
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}
@-webkit-keyframes hideAnimation {
  0% {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  60% {
    -moz-transform: scaleY(0.98);
    -ms-transform: scaleY(0.98);
    -webkit-transform: scaleY(0.98);
    transform: scaleY(0.98);
  }
  80% {
    -moz-transform: scaleY(1.02);
    -ms-transform: scaleY(1.02);
    -webkit-transform: scaleY(1.02);
    transform: scaleY(1.02);
  }
  100% {
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
  }
}

/* Desktop View */
@media only screen and (min-width: 992px) {
  .pkp_site_name .is_img img {
    max-height: 200px !important;
  }
  .show-on-mobile {
    display: none;
  }
}

/* Mobile View */
@media only screen and (max-width: 991px) {
  .pkp_nav_list > li > ul > li > a {
    color: white;
    margin-left: 1.5em;
  }
  .pkp_navigation_primary > li a {
    margin-left: 0.5em;
  }
  .pkp_navigation_search_wrapper, .pkp_navigation_user_wrapper {
    margin-left: 0.5em;
  }
  .pkp_nav_list > li {
    background: transparent;
  }
  .pkp_navigation_user .task_count {
    top: 0;
    background: #ff4d4d !important;
  }
}

/* Editorial Team (Custom Block) */
.editorial_team_block .profile .orcid {
    background: url('https://journal.diginus.id/public/site/images/pisces/orcid_logo.svg') no-repeat 2px;
    background-size: 15px;
    padding-left: 25px;
}

.editorial_team_block .profile .google_scholar {
    background: url('https://journal.diginus.id/public/site/images/pisces/google_scholar_logo.svg') no-repeat 2px;
    background-size: 15px;
    padding-left: 25px;
}

.editorial_team_block .profile div {
    line-height: 1.5;
    font-size: .92em;
    text-align: left;
}

.editorial_team_block div {
    padding: 0;
}

.editorial_team_block img {
    width: 85px!important;
    height: 90px!important;
    padding: 5px;
    border: 1px solid #d6cfcf46;
    float: left;
    box-shadow: 10px 10px 5px -13px rgb(105 98 98 / 75%);
}

.team td {
  vertical-align: top;
}

.dropdown-customblock {
    padding: 10px;
    border-bottom: 1px solid #aaa;
    background: #2e2458 !important;
    color: #fbfcfc;
}

.dropdown-customblock-item {
    padding: 10px !important;
    border-bottom: 1px solid #aaa; 
    background: #e6e2e2; 
    color: #fbfcfc;
}

.dropdown-customblock-item a {
    color: #6e45f3;
}

.dropdown-customblock-item a:hover {
    color: #170c47;
}


/*new-css*/



body, #navigationPrimary a, .pkp_structure_main h2{
    font-family: Poppins, sans-serif !important;
}

.hero-nav-header .pkp_site_name_wrapper {
    background: #0281E4BF;
}

html, body, .hero-nav-header {
    background: #fff;
}
.hero-nav-header .pkp_site_name .is_img {
    margin: 7px 0;
}
.hero-nav-header .pkp_site_name .is_img img {
    max-height: none !important;
    width: 100%;
}
.hero-nav-header ul#navigationUser {
    display: flex;
    gap: 16px;
}

.hero-nav-header ul#navigationUser li.profile a {
    border-radius: 6px;
    background: #0281E4;
    padding: 8px 16px;
}

.hero-nav-header .pkp_navigation_user_wrapper {
    width: auto;
    top: 30px;
}
.hero-nav-header ul#navigationUser::before, ul#navigationUser::after,
.pkp_structure_sidebar:before{
    display: none;
}
#navigationPrimary>li>a {
    color: #333;
    font-weight: 500;
    font-size: 17px;
    margin: 0;
    padding: 0;
    border-bottom-width: 2px;
}
.pkp_structure_page {
    box-shadow: 0px -1px 3px 4px #00000014;
}

.hero-nav-header .pkp_site_nav_menu {
    background: transparent;
}
.hero-nav-header .pkp_site_nav_menu #navigationPrimary {
    display: flex;
    gap: 15px 40px;
    flex-wrap: wrap;
    float: left;
}

.hero-nav-header #navigationPrimary>li:before {
    content: "";
    position: absolute;
    right: -20px;
    width: 1px;
    height: 15px;
    background: #333;
    top: calc(50% - 3px);
    transform: translateY(-50%);
}
.hero-nav-header #navigationPrimary li:last-child:before{
    display:none;
}
.hero-nav-header #navigationPrimary>li>a:hover, 
.hero-nav-header #navigationPrimary>li>a:focus {
    border-color: #0281E4;
}
.jts-page-wrap .pkp_structure_sidebar>.block_make_submission a {
    background-color: #0281E4;
    padding: 10px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    font-family: Poppins, sans-serif !important;
}
.jts-page-wrap .pkp_structure_sidebar > div:not(:first-child) {
    border-radius: 6px;
    box-shadow: 0px 0px 4px 1px #00000026;
    padding: 20px;
}
.jts-page-wrap .pkp_structure_sidebar>div>.content>div {
    padding: 0px !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0px !important;
    font-family: Poppins, sans-serif !important;
    text-align: unset !important;
        margin-top: 10px;
}
.jts-page-wrap .pkp_structure_sidebar > div .title {
    border: none;
    font-family: Poppins, sans-serif !important;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #333;
    padding-bottom: 5px;
    position: relative;
}
.jts-page-wrap .pkp_structure_sidebar > div .title:after {
    content: '';
    width: 64px;
    height: 3px;
    background-color: #0281E4;
    left: 0px;
    bottom: -4px;
    z-index: 1;
    position: absolute;
}
.jts-page-wrap .pkp_structure_sidebar>div>.content>div>div>a,.jts-page-wrap .pkp_structure_sidebar>div>.content>div>div>div {
    width:100% !important;
}

.jts-page-wrap .pkp_structure_sidebar > #customblock-visitors p a {
    display: block;
    text-align: center;
    border: 1px solid #949494;
    border-radius: 6px;
    padding: 10px;
    margin-top: 10px;
}
.jts-page-wrap .pkp_structure_sidebar > #customblock-visitors p a img {
    margin: auto;
}

.jts-page-wrap .content-wrap-cls {
    display: flex;
    padding: 40px 20px;
    flex-direction: column;
    gap: 40px;
}
.jts-page-wrap .content-wrap-cls>section,.content-wrap-cls>div {
    padding: 0px !important;
}

.jts-page-wrap .homepage_about h2, .jts-page-wrap .current_issue h2, .jts-page-wrap .sections h3,.jts-page-wrap .additional_content h2 {
    color: #333 !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    margin: 0px 0px 25px 0px !important;
    text-transform: uppercase;
    text-align: left !important;
    border: none !important;
    position: relative;
    padding: 0px 0px 4px 0px !important;
    line-height: 1.3 !important;
    left: 0px !important;
        font-family: Poppins, sans-serif !important;
}
.jts-page-wrap .homepage_about h2:before, .jts-page-wrap .current_issue h2:before, .jts-page-wrap .sections h3:before, .jts-page-wrap .additional_content h2:before {
    content: '';
    position: absolute;
    width: 64px;
    height: 3px;
    background-color: #0281E4;
    left: 0px;
    bottom: -3px;
}
.jts-page-wrap .additional_content {
    margin: 0px !important;
    border: none;
}
.jts-page-wrap .homepage_about p {
    font-size: 18px;
    line-height: 1.3;
    color: #333;
}
.jts-page-wrap .current_issue .current_issue_title {
    margin: 0px 0px 23px 0px !important;
    color: #333333;
    font-weight: 600 !important;
    font-size: 18px !important;
    text-transform: uppercase;
    font-family: Poppins, sans-serif !important;
}
.jts-page-wrap .issue-items {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    gap: 10px;
}
.jts-page-wrap .obj_issue_toc .heading:before,.obj_issue_toc .heading:after {
    display: none;
}
.jts-page-wrap .obj_issue_toc {
    display: flex;
    flex-direction: column;
}
.jts-page-wrap .issue-items .cover {
    float: unset !important;
    width: 100% !important;
    margin: 0px !important;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #EAEAEA;
}
.jts-page-wrap .issue-items .published {
    margin: 0px;
}
.jts-page-wrap .issue-items .published .label {
    color: #0281E4 !important;
    font-family: Poppins, sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px;
    text-transform: capitalize !important;
}
.jts-page-wrap .issue-items .published  .value {
    color: #000 !important;
    font-family: Poppins, sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    margin: 0px !important;
}
.jts-page-wrap .cmp_article_list.articles>li {
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.jts-page-wrap .cmp_article_list.articles>li .title a {
    color: #0281E4 !important;
    font-family: Poppins, sans-serif !important;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
}

.jts-page-wrap .cmp_article_list.articles>li  .authors {
    color: #333;
    font-family: Poppins, sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    padding: 0px;
}

.jts-page-wrap .cmp_article_list.articles>li .pages {
    position: absolute;
    top: 0px !important;
    right: 0px !important;
    font-family: Poppins, sans-serif !important;
    color: #333333;
    font-size: 16px;
    border: 1px solid #BDBDBD;
    border-radius: 6px;
    padding: 3px 8px;
    line-height: 1.1;
}

.jts-page-wrap .obj_article_summary .meta {
    position: inherit;
}

.jts-page-wrap .cmp_article_list.articles>li .title {
    padding-right: 62px !important;
}

.jts-page-wrap .obj_article_summary .obj_galley_link {
    background-color: #0281E4;
    border-radius: 6px;
}
.jts-page-wrap .current_issue .read_more {
    background-color: #0281E4;
    padding:5px 30px 5px 20px;
    color: #fff !important;
    border-radius: 6px;
     margin: 22px 0px 0px 0px;
}

.jts-page-wrap .current_issue .read_more::after {
    top: 50% !important;
    transform: translateY(-50%) !important;
    line-height: 1 !important;
    height: auto !important;
}
.jts-page-wrap .additional_content>div:last-child {
    margin-top: 30px;
    gap: 20px !important;
    flex-wrap: nowrap !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.jts-page-wrap .additional_content>div:last-child>div {
    width: 100% !important;
}
.jts-page-wrap .additional_content>div:last-child>div img {
    padding: 10px;
     padding: 10px;
    object-fit: contain;
    max-height: 100%;
    box-shadow: none !important;
    border: 1px solid #EAEAEA;
}
.jts-page-wrap .additional_content>div:last-child>div a {
    display: block;
    height: 300px;
}
.jts-page-wrap .additional_content>div:last-child>div>div {
        text-align: left;
    color: #333 !important;
    font-family: Poppins, sans-serif !important;
    font-weight: 400;
    font-size: 15px !important;
    line-height: 1.5;
}
.jts-page-wrap .additional_content>div:last-child>div>div strong {
    font-weight: 600;
    color: #333;
    font-family: Poppins, sans-serif !important;
}
.custom-footer .pkp_footer_content {
    background-color: #0281E4;
    padding-top: 50px;
    padding-bottom: 0px;
}

.custom-footer .pkp_footer_content>div {
    background-color: #0281E4 !important;
    border: none !important;
    padding: 0px !important;
}

.custom-footer h2 {
    color: #fff !important;
    font-family: Poppins, sans-serif !important;
    font-weight: 600;
    width: 100%;
    line-height: 1.8;
    margin-bottom: 35px !important;
}

.custom-footer .pkp_footer_content>div>div {
    display: flex;
    flex-wrap: wrap;
}

.custom-footer .pkp_footer_content>div>div p:nth-child(2){
    width: 50%;
    color: #fff !important;
    font-family: Poppins, sans-serif !important;
    font-size: 16px !important;
    padding-right: 51px;
    text-align: left;
}

.custom-footer .pkp_footer_content>div>div p:nth-child(3){
    width: 50%;
    color: #fff !important;
    font-family: Poppins, sans-serif !important;
    font-size: 16px !important;
    text-align: left;
    padding-left: 50px;
    position:relative;
}


.custom-footer .pkp_footer_content>div>div p:last-child {
    width: 100%;
    margin: 50px 0px 0px 0px !important;
    padding-top: 13px;
    border-top: 1px solid #EAEAEA;
    font-family: Poppins, sans-serif !important;
    font-weight: 500;
    font-size: 18px !important;
    line-height: 100%;
    color: #fff !important;
    padding-bottom: 15px;
}

.custom-footer .pkp_footer_content>div>div p:nth-child(3) a {
    color: #fff !important;
}

.custom-footer .pkp_footer_content>div>div p:nth-child(3) strong {
    margin-bottom: 8px !important;
    display: inline-block;
}

.custom-footer {
    border: none !important;
}
.custom-footer .pkp_footer_content>div>div p:nth-child(3):before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 1px;
    height: 100%;
    background-color: #fff;
}
.hero-nav-header .pkp_site_nav_menu a:focus {
    background-color: transparent;
}

.custom-footer .footer-flexbox {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.custom-footer .footer-menus ul {
    padding: 0px;
    list-style-type: none;
    margin: 0px;
}

.custom-footer .footer-menus ul li {
    text-align: left;
    margin-bottom: 5px;
}

.custom-footer .footer-menus ul li a {
    color: #fff;
    text-decoration: none;
    font-family: Poppins, sans-serif !important;
    font-size: 16px;
}

@media only screen and (min-width: 992px) {
   .hero-nav-header #navigationPrimary a:hover, 
   .hero-nav-header #navigationPrimary a:focus {
        color: #0281E4;
    }
    .hero-nav-header #navigationPrimary li a{
        padding-bottom: 5px;
    }
    .hero-nav-header .pkp_navigation_primary_row {
        background: #0281E41C;
        padding: 35px 50px 30px !important;
    }
    .jts-page-wrap .pkp_structure_sidebar{
        width: 350px;
        box-shadow: -2px 0px 4px 1px #0000001C;
        padding: 30px 20px;
        margin-bottom: 15px;
    }
    .jts-page-wrap .pkp_structure_main {
        width: calc(100% - 350px);
    }
    .jts-page-wrap .pkp_block {
        padding: 0;
    }
    .jts-page-wrap .pkp_block + .pkp_block{
        margin-top: 30px;
    }
    .hero-nav-header .pkp_navigation_primary>li:hover ul {
        transform: none;
        top: 26px;
    }
    
}

@media only screen and (min-width: 1600px) {
.jts-page-wrap.pkp_structure_page, .has_site_logo .jts-page-wrap .pkp_head_wrapper, .jts-page-wrap .pkp_site_name_wrapper, .jts-page-wrap .pkp_navigation_primary_wrapper, .jts-page-wrap .pkp_navigation_user, .jts-page-wrap .pkp_search_mobile, .jts-page-wrap .pkp_structure_content, .jts-page-wrap .pkp_structure_footer {
    max-width: 1440px !important;
    width: 100%;
}
}
@media only screen and (max-width: 992px) {
.jts-page-wrap .pkp_structure_sidebar>div>.content>div>div>a,.jts-page-wrap .pkp_structure_sidebar>div>.content>div>div>div {
    width: calc(50% - 10px) !important;
}
body.menu-open {
    overflow: hidden;
}
.jts-page-wrap .pkp_structure_sidebar>div>.content>div>div {
    flex-direction: unset !important;
    flex-wrap: wrap;
}
.hero-nav-header .pkp_site_nav_toggle {
    outline: none;
    cursor: pointer;
}
.jts-page-wrap .content-wrap-cls {
    padding: 15px 0px 0px 0px;
    gap: 20px;
}
.jts-page-wrap .pkp_block.block_make_submission {
    padding-right: 0px;
    padding-left: 0px;
}
.jts-page-wrap .pkp_structure_sidebar > div:not(:first-child) {
    margin-bottom: 20px;
}
.hero-nav-header #navigationPrimary>li:before {
    display: none;
}

.hero-nav-header .pkp_site_nav_menu #navigationPrimary {
    flex-direction: column;
    float: unset;
}
.hero-nav-header .pkp_navigation_search_wrapper a {
    padding-bottom: 6px;
    padding-top: 0px;
    color: #4b7d92;
    text-decoration: none;
    border-bottom: 4px solid transparent;
}
.hero-nav-header ul#navigationUser {
    padding-top: 0px;
}
.hero-nav-header .pkp_navigation_search_wrapper a:hover {
    border-bottom: 4px #4b7d92 solid;
}
.hero-nav-header #navigationPrimary>li>a {
    border: none;
    text-decoration: none;
}
.hero-nav-header #navigationPrimary>li>a:hover {
    color: #0281E4;
}
.hero-nav-header .pkp_nav_list ul {
           position: inherit;
    top: 100%;
    left: 0px;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #0281e430;
    border-radius: 3px;
    box-shadow: none;
    display: none;
    margin-top: 5px;
}
.hero-nav-header .pkp_nav_list li{
    position:relative;
}

.hero-nav-header .pkp_head_wrapper {
    padding: 0px;
}
.hero-nav-header .pkp_site_nav_menu {
    background-color: #fff;
    height: calc(100vh - 88px);
            overflow: auto;
}
 
.jts-page-wrap .additional_content>div:last-child {
    grid-template-columns: 1fr 1fr;
}
.hero-nav-header .pkp_site_name {
    position: relative;
    left: 0px;
    padding: 0px;
}
.hero-nav-header .pkp_site_name_wrapper {
    height: auto;
}
.hero-nav-header .pkp_nav_list .active ul {
    display: block;
}
.hero-nav-header .pkp_nav_list ul a {
    color: #333;
    font-weight: 400 !important;
    font-size: 16px !important;
    text-transform: capitalize !important;
}
}
@media only screen and (max-width: 767px) {
.jts-page-wrap .additional_content>div:last-child {
    grid-template-columns: 1fr;
}
}


