body {
    background: #ffffff;
    color: #8c8c8c;
    margin: 0;
    padding: 0;
}

a {
    color: #222222;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: #7c7c7c;
    text-decoration: none;
}


/* 02. Typography --------------------------------------------------- */

body {
    font: 400 15px "Montserrat", sans-serif;
    line-height: 1.815;
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #222222;
    letter-spacing: .1px;
    text-transform: unset;
    font-style: normal;
}


/* 03. Header--------------------------------------------------- */

.site-header {
    display: block;
    position: relative;
    z-index: 999;
}

.site-header.fixed-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: none;
    width: 100%;
}

.site-header.fixed-header.uk-active {
    background-color: #fff;
}

.site-header.light:not(.uk-active) .site-logo>a,
.site-header.light:not(.uk-active) .primary-menu .menu>li>a,
.site-header.light:not(.uk-active) .secondary-menu>div>a,
.site-header.light:not(.uk-active) .search .toggle,
.site-header.light:not(.uk-active) .cart a {
    color: #fff;
}

.site-header.light:not(.uk-active) .mobile-menu .trigger div span {
    background-color: #fff;
}

.site-header.light:not(.uk-active) .mobile-menu .cart .count {
    background-color: #aaa;
    color: #fff;
}

.site-header.light:not(.uk-active) .search .uk-drop .uk-search-input {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.site-header.uk-active {
    background-color: #fff;
}

.site-header.uk-active .site-logo,
.site-header.uk-active .primary-menu {
    line-height: 70px !important;
}

.site-header .site-logo {
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -.04rem;
    max-width: 200px;
    line-height: 100px;
    margin: 0;
}

.site-header .primary-menu {
    font-size: 15px;
    /* text-transform: uppercase; */
    line-height: 100px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.site-header .primary-menu .menu,
.site-header .primary-menu .menu li {
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    position: relative;
}

.site-header .primary-menu .menu>li+li {
    margin-left: 20px;
}

.site-header .primary-menu .menu>li>a:not(:last-child):after {
    content: "\ea77";
    font-size: 10px;
    font-weight: 400;
    font-family: "Floicons";
    position: relative;
    margin-left: 5px;
    top: 1px;
}

.site-header .primary-menu .menu ul {
    display: block;
    position: absolute;
    margin: 0;
    padding: 20px 0;
    text-align: left;
    line-height: 1;
    list-style: none;
    background-color: #fff;
    z-index: 9999;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.site-header .primary-menu .menu>li:not(:last-child)>ul {
    display: none;
    top: 100%;
    left: 0;
}

.site-header .primary-menu .menu>li:not(:last-child):hover>ul {
    display: block;
}

.site-header .primary-menu .menu>li ul ul {
    visibility: hidden;
    top: -21px;
    left: 100%;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: translate3d(-0.5rem, 0, 0);
    transform: translate3d(-0.5rem, 0, 0);
}

.site-header .primary-menu .menu>li>ul li {
    display: inline-block;
    position: relative;
    padding: 0;
}

.site-header .primary-menu .menu>li>ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-width: 220px;
    font-size: 11px;
    padding: .6rem 1rem;
    color: #8c8c8c;
    text-decoration: none;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.site-header .primary-menu .menu>li>ul li a:not(:last-child):after {
    content: "\ea76";
    font-size: 9px;
    font-weight: 400;
    font-family: "Floicons";
    position: relative;
    top: 2px;
}

.site-header .primary-menu .menu>li>ul li a:hover {
    padding-left: 20px;
}

.site-header .primary-menu .menu>li>ul li a:hover {
    color: #222222;
}

.site-header .primary-menu .menu>li>ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.site-header .secondary-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    /* text-transform: uppercase; */
    letter-spacing: 2.5px;
}

.site-header .secondary-menu>div {
    margin-left: 3rem;
}

.site-header .secondary-menu>div:first-child {
    margin: 0;
}

.site-header .secondary-menu .membership {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site-header .secondary-menu .membership>a {
    margin-left: 3rem;
}

.site-header .secondary-menu .membership>a:first-child {
    margin: 0;
}

.site-header .search .toggle {
    font-size: 14px;
    position: relative;
    top: 2px;
    color: #8c8c8c;
}

.site-header .search .toggle:hover {
    color: #222222;
}

.site-header .search .uk-drop {
    padding-right: 1rem;
    width: 200px;
}

.site-header .search .uk-drop .uk-search-input {
    background-color: #fff;
    font-size: 12px;
    /* text-transform: uppercase; */
    letter-spacing: 1.2px;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.site-header .mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.site-header .mobile-menu .cart {
    display: block;
    position: relative;
}

.site-header .mobile-menu .cart .icon {
    font-size: 24px;
}

.site-header .mobile-menu .cart .count {
    display: block;
    width: 18px;
    height: 18px;
    font-size: 11px;
    background: #000;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: -5px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.site-header .mobile-menu .trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    margin-left: 2rem;
    cursor: pointer;
}

.site-header .mobile-menu .trigger div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.site-header .mobile-menu .trigger div span {
    width: 26px;
    display: block;
    height: 1px;
    background-color: #000;
    margin: 3px 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

body:not(.front-page) .site-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

body:not(.front-page) .site-header .site-logo,
body:not(.front-page) .site-header .primary-menu {
    line-height: 80px;
    max-height: 80px;
    overflow: hidden;
    margin-right: 10px;
}

#mobile-menu .inner {
    background-color: #fff;
    padding: 0;
}

#mobile-menu .inner .header {
    padding: .5rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

#mobile-menu .inner .header .site-logo {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -.02rem;
}

#mobile-menu .inner .header .site-logo a {
    color: #000;
}

#mobile-menu .inner .header .uk-offcanvas-close {
    color: #000;
    position: relative;
    top: auto;
    right: auto;
    padding: 0;
}

#mobile-menu .inner .content {
    padding: 1rem 0;
}

#mobile-menu .inner .content .mobile-nav {
    padding: 0;
    margin: 0;
}

#mobile-menu .inner .content .mobile-nav li {
    padding: 0 1rem;
}

#mobile-menu .inner .content .mobile-nav li a {
    /* text-transform: uppercase; */
    /* letter-spacing: 1.2px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#mobile-menu .inner .content .mobile-nav li.uk-parent>a::after {
    content: "\ea71";
    font-family: "Floicons";
    font-size: 10px;
    font-weight: 400;
    position: relative;
    background: none !important;
    width: auto;
    height: auto;
    float: none;
}

#mobile-menu .inner .content .mobile-nav li.uk-parent.uk-open>a::after {
    content: "\ea77";
}

#mobile-menu .inner .content .mobile-nav>li>a {
    font-size: 12px;
    color: #222;
}

#mobile-menu .inner .content .mobile-nav>li ul {
    padding: 0;
    margin: 0;
}

#mobile-menu .inner .content .mobile-nav>li ul>li>a {
    padding: 5px 0;
    font-size: 11px;
    color: #7c7c7c;
}


/* 04. Slider--------------------------------------------------- */

.site-slider {
    display: block;
    position: relative;
}

.site-slider .post {
    background-color: #fff;
}

.site-slider .post .entry-content {
    text-align: center;
    padding-top: 40px;
}

.site-slider .post .entry-content>* {
    opacity: 0;
    -webkit-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
}

.site-slider .post .entry-content .entry-category,
.site-slider .post .entry-content .entry-title {
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
}

.site-slider .post .entry-content .entry-meta {
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
}

.site-slider .post .entry-content .entry-divider {
    margin: 40px auto;
}

.site-slider.background-style .post .entry-thumb .cover-image {
    height: 80vh;
    padding: 0;
}

.site-slider.background-style .post .entry-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.site-slider.background-style .post .entry-inner .entry-content .entry-category a {
    color: #fff;
}

.site-slider.background-style .post .entry-inner .entry-content .entry-title {
    padding: 0 60px;
    font-size: 1.7rem;
}

.site-slider.background-style .post .entry-inner .entry-content .entry-title a {
    color: #fff;
}

.site-slider.background-style .post .entry-inner .entry-content .entry-meta {
    margin-top: 40px;
}

.site-slider.background-style .post .entry-inner .entry-content .entry-meta span {
    color: #fff;
}

.site-slider.background-style .post:hover .entry-inner {
    background-color: rgba(0, 0, 0, 0.6);
}

.site-slider.background-style .navigation button {
    color: #fff;
}

.site-slider.background-style .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 1;
}

.site-slider.background-style .owl-dots .owl-dot {
    background-color: rgba(255, 255, 255, 0.3);
}

.site-slider.background-style .owl-dots .owl-dot.active {
    background-color: #fff;
}

.site-slider.background-style.boxed-layout .post .entry-thumb .cover-image {
    height: 70vh;
}

.site-slider.background-style.grid-layout.two-cols .post .entry-thumb .cover-image {
    height: 80vh;
}

.site-slider.background-style.grid-layout.two-cols .post .entry-title {
    font-size: 2.2rem !important;
}

.site-slider.background-style.grid-layout.three-cols .post .entry-thumb .cover-image {
    height: 80vh;
}

.site-slider.background-style.grid-layout.three-cols .post .entry-title {
    font-size: 1.9rem !important;
}

.site-slider.background-style.grid-layout.four-cols .post .entry-thumb .cover-image {
    height: 70vh;
}

.site-slider.background-style.grid-layout.four-cols .post .entry-title {
    font-size: 1.7rem !important;
}

.site-slider .owl-item.active .entry-content>* {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.site-slider .navigation {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.site-slider .navigation button {
    display: block;
    background: none;
    border: 0;
    font-size: 11px;
    /* text-transform: uppercase; */
    letter-spacing: 10px;
    position: absolute;
    top: 50%;
    -webkit-transform: rotateZ(90deg);
    -ms-transform: rotate(90deg);
    transform: rotateZ(90deg);
    z-index: 9999;
    outline: 0;
    cursor: pointer;
}

.site-slider .navigation button.owl-next {
    right: 0;
}

.site-trending {
    display: block;
    position: relative;
    margin-top: 100px;
}

.site-trending .post .entry-content {
    padding-top: 20px;
}

.site-trending .post .entry-content .entry-title {
    margin-top: 0;
}

.site-trending .owl-dots {
    margin-top: 20px;
}

.owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 0;
    counter-reset: dots;
}

.owl-dots .owl-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 5px;
    background-color: #ececec;
    border-radius: 100%;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.owl-dots .owl-dot.active {
    background-color: #000;
}

.owl-dots.numbred .owl-dot {
    display: inline-block;
    margin: 0 5px;
    color: #acacac;
    background: none;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.owl-dots.numbred .owl-dot.active {
    color: #000;
}

.owl-dots.numbred .owl-dot:before {
    counter-increment: dots;
    content: counter(dots);
}


/* 05. Main--------------------------------------------------- */

.heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    margin-bottom: 30px;
    text-align: left;
}

.heading.center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.heading .title {
    font-size: 20pt;
    /* text-transform: uppercase; */
    margin-bottom: 0;
    letter-spacing: 1px;
}

.heading .text {
    font-size: 11px;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
}

.heading .more-link {
    font-family: "PT Serif", sans-serif;
    font-style: italic;
    border-bottom: 1px solid;
}

.post .entry-thumb {
    display: block;
    position: relative;
}

.post .entry-thumb .link-overlay {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.post .entry-thumb:hover .link-overlay {
    opacity: 1;
}

.post .entry-category {
    font-size: 14px;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.post .entry-category a {
    color: #7c7c7c;
}

.post .entry-category a:hover {
    color: #222222;
}

.post .entry-title {
    margin-top: 0;
}

.post .entry-meta {
    font-size: 16px;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.post .entry-meta>div>span {
    color: #8c8c8c;
}

.post .entry-meta>div>span:after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 2px;
    background-color: #ccc;
    border-radius: 100%;
    margin: 0 .5rem;
}

.post .entry-meta>div>span:last-child:after {
    display: none;
}

.post .entry-meta>div>span.meta-author span {
    color: #8c8c8c;
    margin-right: 5px;
}

.post .entry-meta>div>span.meta-author cite {
    color: #8c8c8c;
    font-style: normal;
}

.post .entry-meta>div>span.meta-author cite:hover {
    color: #222222;
}

.post .entry-content .entry-divider {
    width: 50px;
    margin: 40px 0 20px;
}

.post .entry-content .entry-snippet {
    font-family: "PT Serif", sans-serif;
    font-size: 14px;
    letter-spacing: .5px;
}


/* .post .entry-content>*:last-child {
    margin-bottom: 0;
} */

.post .entry-body {
    font-family: "PT Serif", sans-serif, sans-serif;
    font-size: 1.1rem;
    line-height: 1.815;
    color: #505050;
}

.post .entry-body blockquote {
    font-family: "PT Serif", sans-serif;
    font-size: 1.3rem;
    line-height: 1.415;
    border-left: 2px solid rgba(0, 0, 0, 0.07);
    padding: 20px 40px;
    font-style: normal;
    font-style: italic;
    clear: both;
}

.post .entry-body .wp-caption {
    display: block;
    margin: 40px 0;
}

.post .entry-body .wp-caption .wp-caption-text {
    display: block;
    font-size: 13px;
    padding-top: 15px;
    color: #acacac;
    font-style: italic;
}

.post .entry-body .wp-caption.alignleft {
    width: 50%;
    float: left;
    margin-right: 40px;
    margin-top: 10px;
}

.post .entry-body .wp-caption.alignright {
    width: 50%;
    float: right;
    margin-left: 40px;
    margin-top: 10px;
}

.post .entry-body .aligncenter {
    text-align: center;
}

.post .entry-body .alignleft {
    text-align: left;
}

.post .entry-body .alignright {
    text-align: right;
}

.post .entry-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.post .entry-footer>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post .entry-footer>div .entry-more {
    font-size: 11px;
    /* text-transform: uppercase; */
    letter-spacing: 1.2px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.post .entry-footer>div .entry-more .icon {
    font-size: 12px;
    position: relative;
    top: 1px;
}

.post .entry-footer>div .entry-share.mini-share {
    font-size: 12px;
}

.post .entry-footer>div .entry-share.mini-share a {
    margin-left: .7rem;
}

.post .entry-footer>div .entry-share.mini-share a:first-child {
    margin-left: 0;
}

.post .entry-footer>div .entry-comments {
    margin-left: 2rem;
    font-size: 11px;
    /* text-transform: uppercase; */
    letter-spacing: .5px;
}

.post .entry-footer>div .entry-comments i {
    margin-right: 5px;
}

.post .entry-footer>div .entry-tags {
    font-size: 12px;
}

.post .entry-footer>div .entry-tags a:not(:last-child)::after {
    content: ",";
}

.site-primary {
    display: block;
    position: relative;
    padding-top: 50px;
}

.site-primary .site-main {
    display: block;
    position: relative;
    padding-bottom: 50px;
}

.site-primary .block-listing {
    display: block;
    position: relative;
    margin-top: 50px;
    overflow: hidden;
}

.site-primary .block-listing .block-layout .post .entry-content {
    text-align: left;
    padding-top: 10px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.site-primary .block-listing .block-layout.classic-layout .post .entry-content {
    padding: 40px 0;
}

.site-primary .block-listing .block-layout.classic-layout .post .entry-content .entry-title {
    font-size: 2rem;
}

.site-primary .block-listing .block-layout.classic-layout .post .entry-content .entry-snippet {
    margin-top: 30px;
}

.site-primary .block-listing .block-layout.classic-layout .post .entry-content .entry-snippet p {
    margin: 0;
}

.site-primary .block-listing .block-layout.classic-layout .post .entry-content .entry-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


/* .site-primary .block-listing .block-layout.grid-layout.two-cols .post .entry-title {
    font-size: 1.5rem;
}

.site-primary .block-listing .block-layout.grid-layout.three-cols .post .entry-title {
    font-size: 1.3rem;
}

.site-primary .block-listing .block-layout.grid-layout.four-cols .post .entry-title {
    font-size: 1.1rem;
} */

.site-primary .block-listing:first-child {
    margin-top: 0;
}


/* .site-primary.has-sidebar .heading .title {
    font-size: 1.4rem;
}

.site-primary.has-sidebar .block-listing .block-layout.grid-layout.two-cols .post .entry-title {
    font-size: 1.4rem;
}

.site-primary.has-sidebar .block-listing .block-layout.grid-layout.three-cols .post .entry-title {
    font-size: 1.1rem;
}

.site-primary.has-sidebar .block-listing .block-layout.grid-layout.four-cols .post .entry-title {
    font-size: 1rem;
} */

.site-primary .pagination {
    margin-top: 50px;
}

.site-primary .pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-primary .pagination ul li {
    padding: 0;
    margin: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
}

.site-primary .pagination ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.site-primary .pagination ul li a i {
    font-size: 18px;
}

.site-primary .pagination ul li>* {
    color: #8c8c8C;
}

.site-primary .pagination ul li>*:hover {
    color: #222222;
}

.site-primary .pagination ul li.uk-active>* {
    color: #000;
}

.site-primary .pagination>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.site-primary .pagination>div a {
    font-weight: 700;
}

.post.single {
    position: relative;
    z-index: 1;
}

.post.single .entry-thumb {
    margin-bottom: 60px;
}

.post.single .entry-header {
    margin-bottom: 30px;
}

.post.single .entry-header .entry-title {
    font-weight: 700;
    margin: 0px 0 20px;
}

.post.single .entry-header .entry-meta {
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: .6px;
}

.post.single .entry-header .entry-share:not(.mini-share) {
    display: block;
    margin-top: 40px;
}

.post.single .entry-header .entry-share:not(.mini-share) a {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: #222222;
    color: #fff;
    margin: 0 1px;
    text-align: center;
    border-radius: 50%;
}

.post.single .entry-header .entry-share:not(.mini-share) a i {
    line-height: 40px;
}

.post.single .entry-header .entry-share:not(.mini-share) a.facebook {
    background-color: #4267b2;
}

.post.single .entry-header .entry-share:not(.mini-share) a.twitter {
    background-color: #1da1f2;
}

.post.single .entry-header .entry-share:not(.mini-share) a.gplus {
    background-color: #db4437;
}

.post.single .entry-header .entry-share:not(.mini-share) a:hover {
    opacity: .9;
}

.post.single .entry-footer {
    margin-top: 100px;
}

.post.single .entry-footer .entry-share.mini-share,
.post.single .entry-footer .entry-tags {
    font-size: 14px;
}

.related-posts {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.related-posts .heading .title {
    font-size: 14pt !important;
}

.related-posts .entry-thumb {
    margin-bottom: 20px !important;
}

.author-box {
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 60px;
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.author-box .author-avatar img {
    width: 80px;
    border-radius: 100%;
}

.author-box .author-info .author-name {
    font-size: 20px;
}

.author-box .author-info .author-name span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
    color: #8c8c8c;
    /* text-transform: uppercase; */
    display: block;
}

.author-box .author-info p {
    font-size: 16px;
    font-family: "PT Serif", sans-serif;
    margin: 0;
}

.float-pagination .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 9999;
}

.float-pagination .inner a {
    position: fixed;
    top: 50%;
    margin-top: -100px;
    background-color: #fafafa;
    padding: 20px;
    max-width: 360px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.float-pagination .inner a:before {
    font-family: "Floicons";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.float-pagination .inner a.prev {
    left: 0;
    text-align: right;
    padding-right: 80px;
    -webkit-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    transform: translateX(-300px);
}

.float-pagination .inner a.prev:before {
    content: "\ea71";
    right: 0;
}

.float-pagination .inner a.next {
    right: 0;
    padding-left: 80px;
    -webkit-transform: translateX(300px);
    -ms-transform: translateX(300px);
    transform: translateX(300px);
}

.float-pagination .inner a.next:before {
    content: "\ea76";
    left: 0;
}

.float-pagination .inner a span {
    font-size: 14px;
    letter-spacing: .2px;
    color: #acacac;
}

.float-pagination .inner a h5 {
    margin: 0;
    margin-top: 10px;
}

.float-pagination .inner a:hover {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    background-color: #f4f4f4;
}


/* 06. Sidebar--------------------------------------------------- */

.site-sidebar {
    display: block;
    position: relative;
    padding-bottom: 50px;
}

.site-sidebar.uk-sticky-fixed {
    z-index: 99;
}

.site-sidebar .widget {
    display: block;
    position: relative;
    background-color: #fafafa;
    padding: 2rem 1rem 1rem;
    margin-bottom: 40px;
    overflow: hidden;
}

.site-sidebar .widget:last-child {
    margin: 0;
}

.site-sidebar .widget>.title {
    font-family: "Montserrat", sans-serif;
    /* text-transform: uppercase; */
    text-align: center;
    padding: 20px 0;
    margin: 0;
}

.site-sidebar .widget .title {
    padding: 0;
    margin-bottom: 20px;
}

.widget.newsletter {
    text-align: center;
}

.widget.newsletter p {
    margin: 0 0 10px;
}

.widget.newsletter input[type="email"] {
    font-size: 10px;
    /* text-transform: uppercase; */
    letter-spacing: 1.2px;
}

.widget.newsletter input[type="submit"] {
    width: 100%;
    display: block;
    margin: 10px 0;
}

.widget.newsletter button {
    width: 100%;
    display: block;
    margin: 10px 0;
}

.widget.newsletter .spamMsg {
    font-size: 10px;
    /* text-transform: uppercase; */
    letter-spacing: 1.2px;
    color: #acacac;
}

.widget.categories-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.widget.categories-list ul li a {
    font-size: 11px;
    /* text-transform: uppercase; */
    letter-spacing: 1.2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.widget.categories-list ul li a span.count {
    color: #9c9c9c;
}


/* .widget.post-listing .post.type-post {
    margin-top: 20px;
} */

.widget.post-listing .post.type-post:first-child {
    margin: 0;
}

.widget.post-listing .post.type-post .entry-outer .entry-content {
    padding: 0;
}

.widget.post-listing .post.type-post .entry-outer .entry-content .entry-title {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.widget.post-listing .post.type-post .entry-outer .entry-content .entry-meta {
    font-size: 14px;
}

.widget.post-listing.popular>div {
    counter-reset: popular;
}


/* .widget.post-listing.popular .post.type-post {
    margin-top: 30px;
} */

.widget.post-listing.popular .post.type-post:first-child {
    margin: 0;
}

.widget.post-listing.popular .post.type-post .entry-outer .entry-thumb {
    margin-bottom: 10px;
}

.widget.post-listing.popular .post.type-post .entry-outer .entry-thumb .cover-image {
    padding-top: 66.6666667%;
}

.widget.instagram-feeds .thumbnail {
    position: relative;
}

.widget.instagram-feeds .thumbnail .cover-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.widget.instagram-feeds .thumbnail .cover-link span {
    line-height: 1;
    font-weight: 700;
    color: #fff;
}

.widget.instagram-feeds .thumbnail .cover-link:hover {
    opacity: 1;
    background-color: rgba(40, 40, 40, 0.125);
}

.widget.stay-connected ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.widget.stay-connected ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
    font-size: 16px;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 100%;
}

.widget.widget_products ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget.widget_products ul li {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.widget.widget_products ul li:first-child {
    margin: 0;
    padding: 0;
    border: 0;
}

.widget.widget_products ul li img {
    width: 80px;
    float: left;
    clear: left;
    margin-right: 10px;
}

.widget.widget_products ul li .product-title {
    display: block;
    font-size: 14px;
}

.widget.widget_products ul li .amount {
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
}

.widget.widget_products ul li del {
    margin-right: 5px;
    text-decoration: none;
    color: #8c8c8c;
}

.widget.widget_products ul li del span {
    text-decoration: line-through;
}

.widget.widget_products ul li ins {
    background-color: transparent;
    color: #000000;
}

.widget.widget_shopping_cart ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget.widget_shopping_cart ul li {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.widget.widget_shopping_cart ul li:first-child {
    margin: 0;
    padding: 0;
    border: 0;
}

.widget.widget_shopping_cart ul li img {
    width: 48px;
    float: left;
    clear: left;
    margin-right: 10px;
}

.widget.widget_shopping_cart ul li a {
    display: block;
    font-size: 14px;
}

.widget.widget_shopping_cart ul li a.remove {
    float: right;
    font-size: 20px !important;
    line-height: 1;
    color: #f0506e;
}

.widget.widget_shopping_cart ul li .quantity {
    display: block;
    font-size: 11px;
}

.widget.widget_shopping_cart ul li .amount {
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
}

.widget.widget_shopping_cart ul li del {
    margin-right: 5px;
    text-decoration: none;
    color: #8c8c8c;
}

.widget.widget_shopping_cart ul li del span {
    text-decoration: line-through;
}

.widget.widget_shopping_cart ul li ins {
    background-color: transparent;
    color: #000000;
}

.widget.widget_shopping_cart .total {
    font-size: 12px;
    /* text-transform: uppercase; */
    letter-spacing: 1.2px;
    text-align: right;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 10px;
    color: #000;
}

.widget.widget_shopping_cart .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
}

.widget.widget_shopping_cart .buttons a {
    background-color: #222;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    display: block;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    /* text-transform: uppercase; */
    -webkit-transition: all 0.2ss ease-in-out;
    -o-transition: all 0.2ss ease-in-out;
    transition: all 0.2ss ease-in-out;
}

.widget.widget_shopping_cart .buttons a:not(.checkout) {
    margin-bottom: 10px;
    background-color: #eee;
    color: inherit;
}

.widget.widget_shopping_cart .buttons a:not(.checkout):hover {
    background-color: #ddd;
    color: #000;
}

.widget.widget_shopping_cart .buttons a:hover {
    background-color: #000;
    color: #fff;
}


/* 07. Footer--------------------------------------------------- */

.site-footer {
    display: block;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    letter-spacing: .2px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.site-footer .inner .instagram-feeds {
    display: block;
    position: relative;
    overflow: hidden;
}

.site-footer .inner .instagram-feeds .title {
    font-size: 16px;
    /* text-transform: uppercase; */
    letter-spacing: 2.5px;
    margin-bottom: 40px;
    color: #8c8c8c;
}

.site-footer .inner .stay-connected {
    margin-top: 60px;
}

.site-footer .inner .stay-connected ul li a {
    font-size: 20px;
    width: 20px;
    height: 20px;
    margin: 0 1rem;
}

.site-footer .copyrights {
    padding-top: 60px;
    color: #8c8c8c;
}


/* 09. Other--------------------------------------------------- */

#loader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
}

#loader .loading,
#loader .loading>div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#loader .loading {
    display: block;
    font-size: 0;
    color: #222222;
    width: 40px;
    height: 40px;
}

#loader .loading>div {
    display: inline-block;
    float: none;
    border: 3px solid;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-color: transparent;
    border-radius: 100%;
    -webkit-animation: loading .75s linear infinite;
    -moz-animation: loading .75s linear infinite;
    -o-animation: loading .75s linear infinite;
    animation: loading .75s linear infinite;
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.page-heading {
    display: block;
    margin-bottom: 30px;
}

.page-heading .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

.page-heading .inner .title {
    text-transform: capitalize;
    margin: 0;
    line-height: 1;
}

.page-heading .inner .text {
    font-size: 11px;
    /* text-transform: uppercase; */
    letter-spacing: 2.5px;
}

.page-heading .inner .uk-breadcrumb {
    font-size: 16px;
    /* text-transform: uppercase; */
    /* letter-spacing: 1.2px; */
    margin: 20px 0 0;
    padding: 0;
}

.page-heading .inner .uk-breadcrumb a {
    font-size: 16px;
    color: #222222;
}

.page-heading.center .inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.page-heading.center .inner .uk-breadcrumb {
    margin-top: 20px;
}

.site-about {
    margin-top: 100px;
}

.site-about .inner {
    background-color: #fafafa;
    padding: 100px 20px;
    text-align: center;
}

.site-about .inner span {
    font-size: 11px;
    /* text-transform: uppercase; */
    letter-spacing: 2.5px;
    color: #acacac;
}

.site-about .inner p {
    margin-top: 10px;
    font-family: "PT Serif", sans-serif;
    letter-spacing: .5px;
    color: #8c8c8c;
    max-width: 768px;
    margin: auto;
}

.site-about .inner .title {
    margin-top: 20px;
    /* text-transform: uppercase; */
}

.site-about .inner .more {
    margin-top: 30px;
}

.site-newsletter {
    display: block;
    position: relative;
    margin-bottom: 100px;
}

.site-newsletter .inner {
    background-color: #fafafa;
    padding: 40px;
}

.site-newsletter .inner h4 {
    margin: 0;
}

.site-newsletter .inner p {
    margin-top: 5px;
    font-family: "PT Serif", sans-serif;
    font-size: 14px;
    letter-spacing: .5px;
    color: #8c8c8c;
}

.site-newsletter .inner .form-container {
    display: block;
}

.site-newsletter .inner .form-container .form-group {
    display: block;
}

.site-newsletter .inner .form-container .form-group input {
    height: 50px;
    font-size: 11px;
    letter-spacing: 1.2px;
    /* text-transform: uppercase; */
    margin-bottom: 20px;
    border-color: rgba(0, 0, 0, 0.05);
}

.site-newsletter .inner .form-container .form-group input:focus {
    border-color: rgba(0, 0, 0, 0.5);
}

.site-newsletter .inner .form-container .form-group input[type="submit"] {
    height: 50px;
    padding: 0 20px;
    width: 100%;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

#error-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

#error-page .title {
    font-size: 3rem;
    margin: 0;
    display: block;
}

#error-page .text {
    display: block;
    margin-top: 40px;
}

#error-page input {
    background-color: transparent;
    font-size: 12px;
    /* text-transform: uppercase; */
    letter-spacing: 1.2px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    max-width: 400px;
    margin-top: 20px;
    text-align: center;
}

#error-page .msg {
    font-size: 13px;
}

.screen-reader-text {
    display: none !important;
}


/* 10. Utilities--------------------------------------------------- */

.uk-container-no {
    max-width: none;
    padding: 0;
}

.uk-button {
    font-size: 11px;
    font-family: "Montserrat", sans-serif;
    /* text-transform: uppercase; */
    letter-spacing: 2.5px;
    padding: 0 20px;
}

.cover-image {
    background-color: #ececec;
    display: block;
    padding-top: 66.6666667%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cover-image.ratio-square {
    padding-top: 100%;
}

.cover-image.ratio-portrait {
    padding-top: 150%;
}

.uk-text-lead {
    font-size: 1.2rem;
    color: #000;
}

@media (max-width: 960px) {
    .col-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: 0;
        padding: 0;
        list-style: none;
    }
    .col-grid>* {
        width: 50% !important;
        padding-left: 30px;
        margin: 0;
    }
    .topimg_center {
        height: 220px;
    }
}

@media (min-width: 960px) {
    .site-slider.modern-layout .post .entry-content {
        padding: 0 14%;
    }
    .site-slider.modern-layout #slider-dots {
        display: none;
    }
    .site-slider.background-style .post .entry-inner .entry-content .entry-title {
        max-width: 960px;
        font-size: 2.7rem;
    }
    .page-heading .inner {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: left;
    }
    .page-heading .inner .uk-breadcrumb {
        margin: 0;
    }
    .site-newsletter .inner .form-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .site-newsletter .inner .form-container .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .site-newsletter .inner .form-container .form-group input {
        margin-bottom: 0;
        margin-left: 40px;
    }
    .site-newsletter .inner .form-container .form-group input:first-child {
        margin-left: 0;
    }
    .site-newsletter .inner .form-container .form-group:first-child {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        padding-right: 40px;
    }
}

@media (min-width: 1200px) {
    .site-primary:not(.has-sidebar) .post .entry-body .wp-caption.aligncenter {
        margin-left: -8.4em;
        margin-right: -8.4em;
    }
    .site-primary:not(.has-sidebar) .post .entry-body .wp-caption.alignleft {
        margin-left: -8.4em;
    }
    .site-primary:not(.has-sidebar) .post .entry-body .wp-caption.alignright {
        margin-right: -8.4em;
    }
}