/*!
Theme Name: Microbio BAS
Theme URI: http://underscores.me/
Author: Alexander Kourtev
Author URI: http://devup.bg
Description: Microbio BAS - WP theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: microbio
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Microbio BAS is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
    ## Links
    ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
    ## Comments
# Infinite scroll
# Media
    ## Captions
    ## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700|PT+Sans:400,400i,700,700i&subset=cyrillic,cyrillic-ext');

body,
button,
input,
select,
optgroup,
textarea {
    color: #404040;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    clear: both;
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: 1em;
}

dfn, cite, em, i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code, kbd, tt, var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr, acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark, ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff;
    /* Fallback for when there is no custom background color defined. */
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul, ol {
    margin: 0 0 1.5em 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

figure {
    margin: 1em 0;
    /* Extra wide images within figure tags don't overflow the content area. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
    padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}

select {
    border: 1px solid #ccc;
}

textarea {
    width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
    color: #449aea;
}

a:visited {
    color: purple;
}

a:hover, a:focus, a:active {
    color: midnightblue;
}

a:focus {
    outline: thin dotted;
}

a:hover, a:active {
    outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
    clear: both;
    display: block;
    float: left;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    left: 100%;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
}

.main-navigation li {
    float: left;
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

@media screen and (min-width: 1025px) {
    .menu-toggle {
        display: none;
    }
    .main-navigation ul {
        display: block;
    }
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
    margin: 0 0 1.5em;
    /* Make sure select elements fit in widgets. */
}

.widget select {
    max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
    display: block;
}

.hentry {
    margin: 0 0 1.5em;
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}


body { background-image: url('static/images-design/footer-bg.png'); }
a { transition: color 0.3s; }
a, a:visited { color: #449aea; }

.entry-title { margin: 0 0 10px; line-height: 24px; font-size: 20px; font-weight: 700; color: #636363; padding-bottom: 15px; border-bottom: solid 1px rgba(0,0,0,0.05); }
@media screen and (min-width: 1025px) {
    .entry-title { line-height: 36px; font-size: 28px; }
}
.page-title { margin: 0 0 15px; line-height: 24px; font-size: 20px; font-weight: 700; color: #636363; padding-bottom: 15px; border-bottom: solid 1px rgba(0,0,0,0.05); }
@media screen and (min-width: 1025px) {
    .page-title { line-height: 36px; font-size: 28px; }
}
.entry-meta { font-size: 13px; color: #999; }
.posted-on a { text-decoration: none; }
.entry-date { font-size: 12px; line-height: 12px; color: #363636; }
.category .entry-title a { color: #363636; text-decoration: none; }
.category .entry-title a:hover { color: #449aea; }
.category .entry-title { font-size: 18px; line-height: 22px; border-bottom: 1px solid rgba( 0, 0, 0, 0.05 ); }
.category .entry-image { height: 200px; overflow: hidden; display: block; border-bottom: solid 10px rgba( 0, 0, 0, 0.05 ); margin-bottom: 15px; }

.category-galeriya article.post .entry-image,
.category-gallery article.post .entry-image { margin-bottom: 0; }
.category-galeriya article.post .gallery-box-info,
.category-gallery article.post .gallery-box-info { padding-top: 15px; position: relative; min-height: 60px; }
.category-galeriya article.post .gallery-box-info .gallery-box-images,
.category-gallery article.post .gallery-box-info .gallery-box-images { position: absolute; left: 0; top: 15px; text-align: center; width: 65px; border-right: 1px solid rgba( 0, 0, 0, 0.05 ); }
.category-galeriya article.post .gallery-box-info .gallery-box-images-count-number,
.category-gallery article.post .gallery-box-info .gallery-box-images-count-number { color: #449aea; font-size: 25px; font-weight: bold; line-height: 25px; }
.category-galeriya article.post .gallery-box-info .gallery-box-images-count-text,
.category-gallery article.post .gallery-box-info .gallery-box-images-count-text { font-size: 13px; line-height: 12px; color: #999; }
.category-galeriya article.post .gallery-box-info .gallery-box-gallery-title,
.category-gallery article.post .gallery-box-info .gallery-box-gallery-title { padding-left: 75px; }
.category-galeriya article.post .gallery-box-info .gallery-box-gallery-title,
.category-gallery article.post .gallery-box-info .gallery-box-gallery-title a { font-size: 15px; line-height: 16px; color: black; text-decoration: none; }


body.single .entry-image { display: none; }

#content { background-color: #F9F9F9; border-top: 1px solid #F4F4F4; padding: 30px 0; }
#masthead { background-color: white; }
#primary { background-color: white; }
#secondary { background-color: #F1F1F1; }

@media screen and (max-width: 1024px) {
    #site-navigation .menu-toggle { outline: none; display: inline-block; padding: 5px 10px; margin: 0 0 10px; border: 0; background: transparent; }
    #site-navigation .menu-toggle-container { text-align: right; }
    #site-navigation .menu-toggle i { font-size: 30px; color: #999; }
    #site-navigation .menu-toggle i.fa-times { display: none; }
    #site-navigation.main-navigation.toggled .menu-toggle i.fa-times { display: inline-block; }
    #site-navigation.main-navigation.toggled  .menu-toggle i.fa-bars { display: none; }

    #primary-menu { margin-bottom: 10px; }
    #primary-menu a { display: block; color: black; font-family: 'PT Sans', sans-serif; font-size: 14px; text-transform: uppercase; color: #363636; }
    #primary-menu li { display: block; float: none; }
    #primary-menu > li > a { font-size: 14px; font-weight: 600; }
    #primary-menu li:not(:last-child) { margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid rgba( 0, 0, 0, 0.05 ); }
    #primary-menu ul.sub-menu { position: static; left: auto; top: auto; float: none; z-index: default; list-style: none outside none; margin-top: 10px; padding-left: 20px; box-shadow: none; }
    #primary-menu ul.sub-menu li.current-menu-item a { color: #449aea; }
}

@media screen and (min-width: 1025px) {
    #site-navigation { border-top: solid 5px #efefef; }
    .primary-menu-outer { display: table; width: 100%; }
    #primary-menu { display: table-row; }
    #primary-menu > li { display: table-cell; position: relative; float: none; padding: 0 15px; }
    #primary-menu a { display: block; color: black; font-size: 13px; color: #363636; }
    #primary-menu a:hover { color: #449aea; }
    #primary-menu > li > a { text-transform: uppercase; text-align: center; text-decoration: none; font-weight: bold; padding: 20px 0; }
    #primary-menu .sub-menu { background-color: white; box-shadow: none; border-left: solid 1px #efefef; border-right: solid 1px #e9e9e9; border-bottom: solid 1px #e9e9e9; border-top: none; }
    #primary-menu .sub-menu a { padding: 10px 15px; font-size: 15px; transition: background-color 0.6s; }
    #primary-menu .sub-menu a:hover { background-color: #f9f9f9; }
}

#top-menu { background-color: #F9F9F9; }
#top-menu-list { margin: 0; background-color: #F9F9F9; font-size: 11px; }
#top-menu-list li { float: left; padding: 3px 15px 3px 0; }
#top-menu-list li a { text-transform: uppercase; padding: 5px 0; display: block; color: black; }
#top-menu-list li.current_page_item a { font-weight: bold; }


/* Footer */
#colophon { padding-top: 60px; border-top: 1px solid #eee; }
#colophon .footer-title { position: relative; margin: 0 0 30px; padding: 2px 0 2px 30px; font-size: 13px; line-height: 20px; text-transform: uppercase; color: #999; font-weight: bold; }
#colophon .footer-title::before { width: 5px; background-color: #449aea; height: 20px; position: absolute; left: 0; top: 0; content: ''; }
#colophon .footer-content { margin: 0 0 60px 30px; }
#colophon ul { display: block; font-size: 13px; font-weight: bold; text-transform: uppercase; margin: 0; }
#colophon ul li { margin-bottom: 15px; }
#colophon ul a { color: black; text-decoration: none; }
#colophon ul a:hover { text-decoration: underline; }
#colophon ul li.current_page_item a { color: #449aea; }
#colophon .date { display: block; }
#colophon ul.announcements a:hover .title { text-decoration: underline; }
#colophon ul.announcements a:hover .date { color: black; text-decoration: none; }
#colophon .announcements .date { display: block; font-weight: normal; text-decoration: none; font-size: 11px; color: #999; }

.footer-socials { margin: 0; }
.footer-socials li { float: left; margin: 0 10px 0 0 !important; }
.footer-socials a { display: block; padding: 7px; }
.footer-socials i { font-size: 18px; color: #777; transition: color 0.3s; }
.footer-socials a:hover i { color: #449aea; }


/* Home page */
.homepage-column { background-color: white; }
.homepage-column { padding-top: 30px; padding-bottom: 30px; }
.homepage-news-block-title { position: relative; margin: 0 0 30px; padding: 0 0 0 30px; font-size: 13px; line-height: 18px; text-transform: uppercase; color: #999; font-weight: bold; }
.homepage-news-block-title::before { content: ''; position: absolute; left: 0; top: 0; width: 5px; background-color: black; height: 18px; content: ''; }
.homepage-news-block .homepage-news-list { margin: 0; padding: 0; }
.homepage-news-block li a { display: block; text-decoration: none; color: black; font-size: 14px; font-weight: bold; position: relative; padding-left: 100px; min-height: 90px; }
.homepage-news-block li:not(:last-child) { border-bottom: solid 1px #efefef; padding-bottom: 30px; margin-bottom: 30px; }
.homepage-news-block .news-image { position: absolute; left: 0; top: 0; width: 90px; height: 90px; overflow: hidden; }
.homepage-news-block .news-date { display: block; font-size: 11px; font-weight: normal; color: #999; padding-bottom: 5px; }
.homepage-news-block .news-title { line-height: 17px; display: block; }
.homepage-news-block li a:hover .news-title { text-decoration: underline; }

.homepage-links { margin: 0; padding: 0; }
.homepage-links li:not(:last-child) { margin-bottom: 15px; }
.homepage-links a { display: block; overflow: hidden; position: relative; background-color: #ddd; font-weight: bold; padding: 15px; font-size: 16px; line-height: 20px; text-decoration: none; transition: border-radius 0.20s; }
.homepage-links a .sub-title { padding-top: 2px; display: block; font-size: 12px; line-height: 13px; font-weight: 100; min-height: 13px; }
.homepage-links .corner { position: absolute; right: 0; bottom: 0; width: 0; height: 0; display: block; transition: 0.20s ease-in-out all; box-shadow: -5px 2px 5px rgba( 0, 0, 0, 0.3 ); }
.homepage-links a:hover { border-bottom-right-radius: 20px; }
.homepage-links a:hover .corner { width: 15px; height: 15px; transform: rotate(-10deg) translate3d( 0, 0, 0 ); }

.homepage-carousel { margin-bottom: 30px; }
.homepage-carousel .owl-carousel { position: relative; }
.homepage-carousel .owl-carousel .owl-dots { position: absolute; right: 10px; top: 10px; }
.homepage-carousel .owl-carousel.owl-theme .owl-dots .owl-dot { margin-left: 0px; }
.homepage-carousel .owl-carousel.owl-theme .owl-dots .owl-dot span { margin: 5px; display: block; width: 15px; height: 15px; background-color: rgba( 0, 0, 0, 0.1 ); border-radius: 15px; border: solid 2px white; }
.homepage-carousel .owl-carousel.owl-theme .owl-dots .owl-dot.active span { background-color: #ddd; border-color: #ddd; }
.homepage-carousel .owl-theme .owl-nav { margin: 0; }
.homepage-carousel .owl-theme .owl-nav [class*=owl-] { position: absolute; top: 50%; margin: -20px 0 0 0; font-family: 'FontAwesome'; font-size: 20px; line-height: 20px; width: 40px; height: 40px; border-radius: 0 !important; padding-top: 10px !important; background-color: rgba( 0, 0, 0, 0.7); color: #449aea; opacity: 0; transition: color 0.3s, opacity 0.5s, left 0.5s, right 0.5s; }
.homepage-carousel .owl-theme .owl-nav [class*=owl-]::before { font-size: 20px; line-height: 20px; }
.homepage-carousel .owl-theme .owl-nav [class*=owl-]:hover { color: white; }
.homepage-carousel .owl-prev { left: 40px; }
.homepage-carousel .owl-prev::before { content: "\f053"; }
.homepage-carousel .owl-next { right: 40px; }
.homepage-carousel .owl-next::before { content: "\f054"; }
.homepage-carousel .owl-carousel:hover .owl-nav [class*=owl-] { opacity: 1; }
.homepage-carousel .owl-carousel:hover .owl-prev { left: 0; }
.homepage-carousel .owl-carousel:hover .owl-next { right: 0; }



.gallery-box .gallery-box-preview { display: block; text-decoration: none; border-bottom: solid 10px rgba( 0, 0, 0, 0.05 ); }
.gallery-box .gallery-box-title { position: relative; margin: 0 0 30px; padding: 0 0 0 30px; font-size: 13px; line-height: 18px; text-transform: uppercase; color: #999; font-weight: bold; }
.gallery-box .gallery-box-title::before { content: ''; position: absolute; left: 0; top: 0; width: 5px; background-color: black; height: 18px; content: ''; }
.gallery-box .gallery-box-info { padding-top: 15px; position: relative; min-height: 60px; }
.gallery-box .gallery-box-info .gallery-box-images { position: absolute; left: 0; top: 15px; text-align: center; width: 65px; border-right: 1px solid rgba( 0, 0, 0, 0.05 ); }
.gallery-box .gallery-box-info .gallery-box-images-count-number { color: #449aea; font-size: 25px; font-weight: bold; line-height: 25px; }
.gallery-box .gallery-box-info .gallery-box-images-count-text { font-size: 13px; line-height: 12px; color: #999; }
.gallery-box .gallery-box-info .gallery-box-gallery-title { padding-left: 75px; }
.gallery-box .gallery-box-info .gallery-box-gallery-title a { font-size: 15px; line-height: 16px; color: black; text-decoration: none; }

#calendar-2 { border-bottom: solid 1px rgba( 0, 0, 0, 0.05 ); }
#calendar-2 .widget-title { display: none; }
#wp-calendar { color: #777; }
#wp-calendar thead th { text-align: center; padding: 3px 0;  }
#wp-calendar tbody td { font-size: 13px; text-align: center; padding: 3px 0; }
#wp-calendar caption { padding-bottom: 0; }

.page-gallery { margin-bottom: -30px; }
.page-gallery .row { margin-left: -30px; margin-right: -30px; position: relative; }
.page-gallery img { width: 100%; flex-shrink: 0; display: block; }
.page-gallery a { position: relative; padding-bottom: 65%; overflow: hidden; display: block; margin-bottom: 30px; border-bottom: solid 10px rgba( 0, 0, 0, 0.05 ); }
.page-gallery a span { position: absolute; display: block; width: 100%; height: 100%; text-align: center; align-items: center; display: flex; justify-content: center; }

.page-gallery-description { padding-top: 15px;  border-top: solid 1px rgba(0,0,0,0.05); margin-top: 15px; font-size: 13px; }
.page-gallery-description .row > div { padding-left: 0; padding-right: 0; }


.category .post-list-show-short-text .entry-title { border-bottom: 0; margin-bottom: 0; }
.category .post-list-show-short-text .entry-meta { border-top: 1px solid rgba( 0, 0, 0, 0.05 ); padding-top: 10px; }
/* .category .post-list-show-short-text .short-text { height: 215px; overflow: hidden; } */