/*
Theme Name: Qualta (Trimmed)
Description: Minimal stylesheet for current Qualta templates.
*/

/************************************/
/* 01. Base */
/************************************/

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    font-family: "Roboto Slab", Georgia, serif;
    line-height: 1.6;
    color: #595959;
    background: #f8f8f8;
    overflow-x: hidden;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #595959;
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover,
a:focus {
    color: #d6ab60;
    text-decoration: none;
    outline: 0;
}

::-moz-selection {
    background: #d6ab60;
    color: #fff;
}

::selection {
    background: #d6ab60;
    color: #fff;
}

.screen-reader-text {
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    position: absolute;
    margin: -1px;
    padding: 0;
    height: 1px;
    width: 1px;
    border: 0;
}

/************************************/
/* 02. Header */
/************************************/

.top-bar {
    background: #333;
    padding: 10px 0;
}

.top-welcome {
    text-align: left;
}

.top-welcome p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #999;
}

.logo {
    padding: 34px 0;
    text-align: center;
    background: #fff;
}

.logo-brand a {
    display: inline-block;
    color: inherit;
}

.logo-brand img {
    max-height: 64px;
    width: auto;
    margin: 0 auto 10px;
}

.logo-brand h1 {
    font-size: 50px;
    color: #333;
    line-height: 1.1;
}

.logo-brand h1:first-letter {
    color: #d6ab60;
}

.logo-brand p {
    margin: 0;
    font-size: 12px;
    color: #595959;
    text-transform: uppercase;
    line-height: 1.35;
}

.navbar-menu {
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    background: #fff;
}

.navbar {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}

.navbar-collapse {
    padding-left: 0;
    padding-right: 0;
}

.navbar-default .navbar-nav > li > a {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #595959;
    padding: 18px 30px 16px 0;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.nav .current-menu-item > a {
    color: #d6ab60 !important;
    background: transparent !important;
}

.nav li {
    position: relative;
    margin: 0 2px;
}

.nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #333;
    z-index: 50;
}

.nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav ul li:last-child {
    border-bottom: none;
}

.nav ul li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav ul li:hover {
    background: #d6ab60;
}

.nav ul li:hover > a,
.nav ul li.current-menu-item > a {
    color: #fff !important;
}

.nav li:hover > ul,
.nav li:focus-within > ul {
    display: block;
}

.nav ul ul {
    left: 100%;
    top: 0;
}

.header-search {
    margin: 8px 0;
}

.searchform {
    margin: 0;
}

.searchform .form-control {
    border: 1px solid #e2e2e2;
    border-right: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    padding: 8px 16px;
    font-size: 14px;
}

.searchform .form-control:focus {
    border-color: #d6ab60;
    box-shadow: none;
}

.searchform .input-group-btn {
    background: #d6ab60;
}

.searchform .btn-search {
    background: transparent;
    border: 0;
    color: #fff;
    outline: 0;
    box-shadow: none;
}

.searchform .input-group-btn:hover {
    background: #212121;
}

.navbar-toggle {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 15px;
    width: 36px;
    height: 38px;
    border: 0;
    border-radius: 0;
    background: #333;
}

.navbar-toggle:focus {
    background: #333;
    outline: none;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
}

/************************************/
/* 03. Main Layout */
/************************************/

.page {
    padding: 40px 0;
}

.single-post .page {
    padding-top: 40px;
}

.main-title {
    text-align: center;
    margin-bottom: 60px;
}

.main-title h1 {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 24px;
}

.main-title h1 > span {
    display: inline-block;
    position: relative;
    padding: 16px 60px;
    border: 1px solid #e2e2e2;
    background: #fff;
}

.main-title h1 span:before,
.main-title h1 span:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background: #e2e2e2;
    transform: rotate(45deg);
}

.main-title h1 span:before {
    right: -10px;
}

.main-title h1 span:after {
    left: -10px;
}

.taxonomy-description {
    background: #f8f8f8;
    padding: 30px;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.5;
}

/************************************/
/* 04. Sidebar */
/************************************/

.default-style .sidebar-single {
    padding-top: 40px;
}

.default-style .sidebar-single.has-title {
    margin-top: 20px;
}

.sidebar-single {
    position: relative;
    margin-bottom: 60px;
    padding: 30px;
    background: #fff;
    border: 1px solid #f1f1f1;
}

.sidebar-title {
    position: absolute;
    top: -21px;
    left: 40px;
    right: 40px;
    background: #fff;
    border: 1px solid #f1f1f1;
}

.sidebar-title h3 {
    margin: 0;
    padding: 12px;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    color: #333;
}

.widget_recent_entries ul,
.widget_categories ul,
.widget_nav_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_recent_entries ul li,
.widget_categories ul li,
.widget_nav_menu ul li {
    color: #595959;
    font-size: 14px;
}

.widget_recent_entries ul li a,
.widget_categories ul li a,
.widget_nav_menu ul li a {
    display: inline-block;
    position: relative;
    padding: 4px 0;
    color: #595959;
    font-size: 14px;
}

.widget_recent_entries ul li a:before,
.widget_categories ul li a:before,
.widget_nav_menu ul li a:before {
    content: "\f101";
    font-family: FontAwesome;
    padding-right: 10px;
}

.widget_recent_entries ul li a:hover,
.widget_categories ul li a:hover,
.widget_nav_menu ul li a:hover {
    color: #d6ab60;
}

.keep-in-touch-widget {
    text-align: center;
}

.keep-in-touch-widget a {
    display: inline-block;
    margin: 4px;
    width: 32px;
    height: 32px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #e2e2e2;
    color: #565656;
    font-size: 14px;
}

.keep-in-touch-widget a:hover,
.keep-in-touch-widget a:focus {
    border-color: #d6ab60;
    background: #d6ab60;
    color: #fff;
}

/************************************/
/* 05. Article List */
/************************************/

.kelly-post-vertical {
    background: #fff;
    margin-bottom: 30px;
    padding: 20px;
}

.kelly-post-vertical:after {
    content: "";
    display: block;
    clear: both;
}

.kelly-post-vertical .post-body {
    width: 100%;
    float: none;
    padding: 0;
}

.kelly-post-vertical .post-body.width100 {
    width: 100%;
    float: none;
}

.kelly-post-vertical .post-body h2 {
    margin-bottom: 0;
    padding: 0 0 12px;
    font-size: 18px;
    color: #333;
}

.kelly-post-vertical .post-body h2 a {
    color: #333;
}

.kelly-post-vertical .post-body p {
    margin: 0;
    font-size: 13px;
    color: #595959;
    line-height: 1.5;
}

.kelly-post-vertical .post-meta {
    padding-bottom: 12px;
}

.kelly-post-vertical .post-meta ul {
    margin: 0;
    padding: 0;
}

.kelly-post-vertical .post-meta ul li {
    display: inline-block;
    margin-right: 4px;
    font-size: 14px;
    color: #d6ab60;
}

.kelly-post-vertical .post-meta ul li:after {
    content: "-";
    margin-left: 6px;
}

.kelly-post-vertical .post-meta ul li:last-child:after {
    display: none;
}

.kelly-post-vertical .post-meta ul li a {
    color: #d6ab60;
}

.kelly-post-vertical .post-meta ul li a:hover {
    color: #333;
}

.btn-custom {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 20px;
    border: 1px solid #d6ab60;
    border-radius: 0;
    color: #d6ab60;
    font-size: 14px;
}

.btn-custom:hover {
    background: #d6ab60;
    color: #fff;
}

/************************************/
/* 06. Article Detail */
/************************************/

.classic-blog-single {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #f1f1f1;
}

.classic-blog-single .entry-header {
    text-align: center;
    padding-top: 10px;
    margin-bottom: 30px;
}

.classic-blog-single .entry-header .cat-links {
    display: inline-block;
    margin: 0;
    background: #d6ab60;
    padding: 2px 20px 4px;
    border-radius: 4px;
}

.classic-blog-single .entry-header .cat-links a,
.classic-blog-single .entry-header .cat-links span {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}

.classic-blog-single .entry-header h1 {
    font-size: 30px;
    color: #333;
    padding: 8px;
    margin-bottom: 6px;
    word-wrap: break-word;
}

.classic-blog-single .entry-header .post-meta ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.classic-blog-single .entry-header .post-meta ul li {
    display: inline-block;
    font-size: 14px;
    color: #595959;
}

.classic-blog-single .entry-header .post-meta ul li:after {
    content: "-";
    padding: 0 4px 0 6px;
}

.classic-blog-single .entry-header .post-meta ul li:last-child:after {
    display: none;
}

.classic-blog-single .entry-header .post-meta ul li a {
    color: #595959;
}

.classic-blog-single .entry-header .post-meta ul li a:hover {
    color: #d6ab60;
}

.entry-body,
.entry-page {
    color: #595959;
    line-height: 1.7;
}

.entry-body:after,
.entry-page:after {
    content: "";
    display: block;
    clear: both;
}

.entry-page {
    border: 1px solid #f1f1f1;
    padding: 20px;
    background: #fff;
}

.entry-body h1,
.entry-body h2,
.entry-body h3,
.entry-body h4,
.entry-body h5,
.entry-body h6,
.entry-page h1,
.entry-page h2,
.entry-page h3,
.entry-page h4,
.entry-page h5,
.entry-page h6 {
    margin: 1.2em 0 0.7em;
    color: #333;
}

.entry-body h1,
.entry-page h1 {
    font-size: 24px;
}

.entry-body h2,
.entry-page h2 {
    font-size: 20px;
}

.entry-body h3,
.entry-page h3 {
    font-size: 18px;
}

.entry-body p,
.entry-page p,
.entry-body ul,
.entry-page ul,
.entry-body ol,
.entry-page ol {
    margin: 0 0 1em;
}

.entry-body ul,
.entry-page ul,
.entry-body ol,
.entry-page ol {
    padding-left: 20px;
}

.entry-body blockquote,
.entry-page blockquote {
    margin: 1em 0;
    padding: 10px 16px;
    border-left: 4px solid #d6ab60;
    background: #fafafa;
}

.entry-body pre,
.entry-page pre {
    overflow: auto;
    padding: 12px;
    background: #f5f5f5;
    border: 1px solid #e6e6e6;
}

.entry-body code,
.entry-page code {
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.9em;
}

.entry-body table,
.entry-page table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}

.entry-body table th,
.entry-body table td,
.entry-page table th,
.entry-page table td {
    border: 1px solid #e2e2e2;
    padding: 8px 10px;
}

.entry-body img,
.entry-page img {
    max-width: 100%;
    height: auto;
}

.classic-post-meta {
    padding: 20px;
    background: #fff;
    border: 1px solid #f1f1f1;
}

.classic-post-meta .post-navigation:after {
    content: "";
    display: block;
    clear: both;
}

.classic-post-meta .post-navigation a,
.post-navigation-empty {
    display: inline-block;
    max-width: 48%;
    padding: 8px 14px;
    font-size: 14px;
    background: #f1f1f1;
    color: #d6ab60;
}

.classic-post-meta .post-navigation a:hover {
    background: #d6ab60;
    color: #fff;
}

.classic-post-meta .post-navigation a[rel="prev"],
.post-navigation-empty--prev {
    float: left;
}

.classic-post-meta .post-navigation a[rel=prev]:before{
	content: '\f053';
	font-family: FontAwesome;
	margin-right: 10px;
}

.classic-post-meta .post-navigation a[rel="next"],
.post-navigation-empty--next {
    float: right;
}

.classic-post-meta .post-navigation a[rel=next]:after{
	content: '\f054';
	font-family: FontAwesome;
	margin-left: 10px;
}

.post-navigation-empty {
    color: #9b9b9b;
}

.single-title {
    position: relative;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 20px;
    color: #202020;
}

.single-title span {
    background: #fff;
    display: inline-block;
    padding-right: 10px;
}

.single-title:before {
    content: "";
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    z-index: -1;
    height: 1px;
    background: #f1f1f1;
}

.related-post-single {
    margin-bottom: 30px;
    text-align: center;
}

.related-post-single h2 {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #595959;
}

.related-post-single:hover h2 {
    color: #d6ab60;
}

.noimage-related-post {
    position: relative;
    height: 0;
    padding-top: 10px;
    padding-bottom: 53.25%;
    border-radius: 8px;
    background: #e2e2e2;
}

.noimage-related-post:hover {
    cursor: pointer;
}

.noimage-related-post__inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #8f8f8f;
    transition: all 0.3s;
}

.noimage-related-post__icon {
    font-size: 28px;
    line-height: 1;
    color: #b2b2b2;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.noimage-related-post__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.noimage-related-post:hover .noimage-related-post__inner,
.noimage-related-post:hover .noimage-related-post__icon {
    color: #d6ab60;
}

/************************************/
/* 07. Error */
/************************************/

.error-404 {
    padding: 40px 0 80px;
}

.error-404-box {
    text-align: center;
}

.error-404-box h1 {
    font-size: 300px;
    text-align: center;
    color: #2c2c2c;
    text-shadow: 2px 2px #d6ab60;
    line-height: 1;
}

.error-404-box h3 {
    display: block;
    font-size: 80px;
    text-transform: uppercase;
    text-align: center;
    color: #d6ab60;
    line-height: 1.1;
}

.error-404-box p {
    font-size: 30px;
    text-align: center;
    color: #595959;
}

.error-404-box .searchform {
    max-width: 480px;
    margin: 20px auto 0;
}

.error-404-box .searchform .input-group-btn:hover {
    background: #212121;
}

.error-404-box a.btn-go {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 30px;
    border: 1px solid #d6ab60;
    color: #d6ab60;
}

.error-404-box a.btn-go:hover {
    background: #d6ab60;
    color: #fff;
}

/************************************/
/* 08. Footer */
/************************************/

footer {
    background: #202020;
    padding: 30px 0;
}

.site-info p {
    margin-bottom: 0;
    color: #787878;
    font-size: 14px;
}

.site-info p a {
    color: #787878;
}

.site-info p a:hover {
    color: #d6ab60;
}

/************************************/
/* 09. Responsive */
/************************************/

@media only screen and (max-width: 991px) {
    .navbar-default .navbar-nav > li > a {
        padding-right: 20px;
    }

    .sidebar-single {
        margin-bottom: 40px;
    }

    .single-title {
        margin-top: 35px;
    }

    .error-404-box h1 {
        font-size: 220px;
    }

    .error-404-box h3 {
        font-size: 56px;
    }

    .error-404-box p {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .top-bar {
        display: none;
    }

    .logo {
        padding: 20px 0;
    }

    .logo-brand h1 {
        font-size: 42px;
    }

    .navbar {
        min-height: auto;
    }

    .navbar-menu {
        min-height: 57px;
    }

    .header-search {
        margin-right: 50px;
        margin-bottom: 10px;
    }

    .navbar-collapse {
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden !important;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-collapse.collapse.in {
        display: block !important;
    }

    .navbar-nav {
        float: none;
        margin: 0;
    }

    .navbar-nav > li {
        float: none;
        width: 100%;
        margin: 0;
        border-top: 1px solid #ececec;
    }

    .navbar-nav > li:first-child {
        border-top: none;
    }

    .navbar-default .navbar-nav > li > a {
        padding: 9px 12px;
        line-height: 1.4;
        letter-spacing: 0.02em;
    }

    .nav ul {
        position: static;
        display: block;
        min-width: 0;
        background: #333;
    }

    .nav ul li a {
        padding: 9px 12px;
    }

    .main-title {
        margin-bottom: 30px;
    }

    .main-title h1 > span {
        padding: 14px 34px;
    }

    .site-info,
    .site-info.text-right {
        text-align: center;
    }

    .site-info.text-right {
        padding-top: 10px;
    }

    .error-404-box h1 {
        font-size: 160px;
    }

    .error-404-box h3 {
        font-size: 40px;
    }

    .error-404-box p {
        font-size: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .logo-brand h1 {
        font-size: 34px;
    }

    .main-title h1 {
        font-size: 18px;
    }

    .main-title h1 > span {
        padding: 12px 24px;
    }

    .classic-post-meta .post-navigation a,
    .post-navigation-empty {
        float: none !important;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
        text-align: center;
    }

    .error-404-box h1 {
        font-size: 120px;
    }

    .error-404-box h3 {
        font-size: 30px;
    }

    .error-404-box p {
        font-size: 18px;
    }
}
