/* ==========================================
   NOUN Journal Custom Theme
   ========================================== */

/* Body */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f6f8fb;
    color: #333;
    line-height: 1.7;
}

/* ======================
   HEADER
   ====================== */

.pkp_site_name a {
    color: #ffffff !important;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.pkp_structure_head img {
    /* background-image: url(""); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* ======================
   Navigation
   ====================== */

.pkp_navigation_primary > li > a {
    color: #fff !important;
    font-weight: 600;
    padding: 15px 18px;
    transition: .3s;
}

.pkp_navigation_primary > li > a:hover {
    color: #FFD54F !important;
}

/* Search */

.pkp_navigation_search_wrapper a {
    color: white !important;
}

/* ======================
   Main content
   ====================== */

.pkp_structure_content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-top: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

/* ======================
   Buttons
   ====================== */

.obj_galley_link,
.cmp_button,
button,
input[type=submit] {

    background: #005792;
    color: white;
    border-radius: 6px;
    padding: 12px 20px;
    border: none;
    transition: .3s;
}

.obj_galley_link:hover,
.cmp_button:hover,
button:hover,
input[type=submit]:hover {

    background: #003f6d;
}

/* ======================
   Current Issue Card
   ====================== */

.obj_issue_summary {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    margin-bottom: 25px;
}

/* ======================
   Article Cards
   ====================== */

.obj_article_summary {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
    transition: .3s;
}

.obj_article_summary:hover {
    transform: translateY(-4px);
}

/* ======================
   Titles
   ====================== */

.page h1,
.page h2,
.page h3 {

    color: #003b6f;
    font-weight: 700;
}

/* ======================
   Links
   ====================== */

a {
    color: #005792;
    text-decoration: none;
}

a:hover {
    color: #f4b400;
}

/* ======================
   Sidebar
   ====================== */

.pkp_block {
    background: white;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    margin-bottom: 20px;
}

/* ======================
   Footer
   ====================== */

.pkp_structure_footer_wrapper {

    background: #003b6f;
    color: white;
    padding: 40px 0;
    margin-top: 40px;
}

.pkp_footer_content {
    color: white;
}

.pkp_footer_content a {
    color: #FFD54F;
}

/* ======================
   Tables
   ====================== */

table {

    border-collapse: collapse;
    width: 100%;
}

table th {

    background: #005792;
    color: white;
}

table th,
table td {

    padding: 12px;
    border: 1px solid #ddd;
}

/* ======================
   Forms
   ====================== */

input,
select,
textarea {

    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px;
}

input:focus,
textarea:focus,
select:focus {

    border-color: #005792;
    outline: none;
}

/* ======================
   OJS Footer Logo
   ====================== */

.pkp_brand_footer {
    opacity: .25;
    transition: .3s;
}

.pkp_brand_footer:hover {
    opacity: .8;
}

/* ======================
   Responsive
   ====================== */

@media (max-width:768px){

.pkp_site_name a{

font-size:24px;

}

.pkp_structure_content{

padding:20px;

}

}
.pkp_brand_footer {
    display: none !important;
}
.pkp_structure_footer_wrapper img {
    width: 250px !important;
    height: auto !important;
    display: block;
    margin-right: 20px;
    /* justify-content: right; */
}

