﻿@charset "UTF-8";
/*
Theme Name: NextPage
Theme URI: http://solverwp.com/html/nextpage
Author: solverwp
Author URI: https://solverwp.com 
Description: NextPage - Blog, Magazine Html Template
Version: 1.0.0
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Global
    ## Global
    ## Mixins
    ## Theme
    ## Variables
    ## Common

# Sections
    ## Nav Bar
    ## Banner
    ## Brand Area
    ## Footer
    ## Widgets

# Elements
    ## accordion
    ## filter
    ## apartment
    ## blog
    ## city
    ## feature
    ## gallery
    ## intro
    ## main-search
    ## pricing
    ## service
    ## team
    ## user-list

--------------------------------------------------------------*/
/*** Template Main Color***/
/*-----------------
    # Typography
-----------------*/
@import url("https://fonts.googleapis.com/css?family=Rubik:400,400i,500,600,700,800display=swap");
/***transition***/
:root {
    --main-color: #097bed;
    --heading-color: #201654;
    --paragraph-color: #565872;
    --heading-font: "Rubik", sans-serif;
    --body-font: "Rubik", sans-serif;
    --body-font-size: 16px;
    --line-height30: 1.7;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    font-family: var(--body-font);
}

* {
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
}

body {
    margin: 0;
    font-family: var(--body-font);
    line-height: var(--line-height30);
    font-size: var(--body-font-size);
}




h1 {
    font-size: 60px;
    line-height: 1.3333333333;
}

h2 {
    font-size: 40px;
    line-height: 1.3380952381;
}

h3 {
    font-size: 36px;
    line-height: 1.3833333333;
}

h4 {
    font-size: 30px;
    line-height: 1.3380952381;
}

h5 {
    font-size: 24px;
    line-height: 1.3380952381;
}

h6 {
    font-size: 18px;
    line-height: 1.3380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 500;
}

p {
    color: var(--paragraph-color);
    -webkit-hyphens: auto;
    hyphens: auto;
    margin-bottom: 10px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.4s;
}

    a,
    a:hover,
    a:focus,
    a:active {
        text-decoration: none;
        outline: none;
        color: inherit;
    }

        a:hover {
            color: #eb3d00;
        }

pre {
    word-break: break-word;
}

a i {
    padding: 0 2px;
}

img {
    max-width: 100%;
}

ol {
    counter-reset: counter;
    padding-left: 0;
}

    ol li {
        list-style: none;
        margin-bottom: 1rem;
    }

        ol li:before {
            counter-increment: counter;
            content: counter(counter);
            font-weight: 500;
            margin-right: 10px;
        }

button:hover,
button:active,
button:focus {
    outline: 0;
}

/*input and button type focus outline disable*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #ddd;
}

.no-gutter.row,
.no-gutter.container,
.no-gutter.container-fluid {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.no-gutter > [class^=col-] {
    padding-left: 0;
    padding-right: 0;
}

.no-gutter[class^=col-] {
    padding-left: 0;
    padding-right: 0;
}

.h-100vh {
    height: 100vh;
}

code {
    color: #faa603;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .check-list li {
        display: block;
        padding-left: 20px;
        position: relative;
        z-index: 0;
    }

        .check-list li:after {
            position: absolute;
            left: 0;
            top: 0;
            font-family: "fontawesome";
            content: "";
            color: var(--main-color);
        }

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    clear: both;
}

.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%;
}

    .comment-navigation .nav-previous > a,
    .posts-navigation .nav-previous > a,
    .post-navigation .nav-previous > a,
    .comment-navigation .nav-next > a,
    .posts-navigation .nav-next > a,
    .post-navigation .nav-next > a {
        transition: 0.3s ease-in;
    }

    .comment-navigation .nav-previous:hover > a,
    .posts-navigation .nav-previous:hover > a,
    .post-navigation .nav-previous:hover > a,
    .comment-navigation .nav-next:hover > a,
    .posts-navigation .nav-next:hover > a,
    .post-navigation .nav-next:hover > a {
        color: var(--main-color);
    }

.comment-list li {
    list-style: none;
}

.h-100vh {
    height: 100vh;
}

.position-relative {
    position: relative;
}

.rowr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -7px;
}

.rowl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -7px;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    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;
        -webkit-clip-path: none;
        clip-path: none;
        color: #21759b;
        display: block;
        font-size: 15px;
        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 {
    float: left;
    clear: both;
    margin-right: 20px;
}

.alignright {
    float: right;
    clear: both;
    margin-left: 20px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.alignwide {
    max-width: 1100px;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
    display: block;
}

.updated:not(.published) {
    display: none;
}

/*--------------------------------------------------------------
# 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%;
    clear: both;
}

    .wp-caption img[class*=wp-image-] {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .wp-caption .wp-caption-text {
        margin: 0.8075em 0 0 0;
    }

.wp-caption-text {
    text-align: center;
}

/*----------------------------------------
    # Unit test
------------------------------------------*/
.wp-link-pages a {
    margin: 0 5px;
    transition: 0.3s ease-in;
}

.wp-link-pages {
    margin-bottom: 30px;
    margin-top: 25px;
}

    .wp-link-pages span,
    .wp-link-pages a {
        border: 1px solid #e2e2e2;
        padding: 5px 15px;
        display: inline-block;
    }

        .wp-link-pages .current,
        .wp-link-pages a:hover {
            background-color: var(--main-color);
            color: #fff;
            border-color: var(--main-color);
        }

        .wp-link-pages span:first-child {
            margin-right: 5px;
        }

dl,
ol,
ul {
    padding-left: 15px;
}

.post-password-form input {
    display: block;
    border: 1px solid #e2e2e2;
    height: 50px;
    border-radius: 3px;
    padding: 0 20px;
}

.post-password-form label {
    font-weight: 600;
    color: #333;
}

.post-password-form input[type=submit] {
    width: 100px;
    height: 50px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in;
}

    .post-password-form input[type=submit]:hover {
        background-color: #121A2F;
    }

.footer-widget .table td,
.footer-widget .table th {
    padding: 0.5rem !important;
}

.custom-gutters-14 > .col,
.custom-gutters-14 > [class*=col-] {
    padding-right: 7px;
    padding-left: 7px;
}

.custom-gutters-20 > .col,
.custom-gutters-20 > [class*=col-] {
    padding-right: 10px;
    padding-left: 10px;
}

@media all and (min-width: 1600px) {
    .container {
        max-width: 1580px !important;
    }
}
/*---------------------------------------
    ## Button
---------------------------------------*/
.btn {
    height: 48px;
    line-height: 48px;
    padding: 0 35px;
    overflow: hidden;
    position: relative;
    border: 0;
    transition: all 0.5s ease;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    transform: perspective(1px) translateZ(0);
    border-radius: 5px;
}

    .btn:focus, .btn:active {
        outline: 0;
        box-shadow: none;
    }

.btn-base {
    background: #097bed;
    color: #fff;
    border: 0;
}

    .btn-base:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #283f62;
        transform: scaleX(0);
        transform-origin: 0 50%;
        transition-duration: 0.4s;
    }

    .btn-base:hover, .btn-base:focus {
        color: #fff;
    }

        .btn-base:hover:before, .btn-base:focus:before {
            transform: scaleX(1);
        }

.btn-white {
    background: #fff;
    color: var(--heading-color);
    border: 0;
}

    .btn-white:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #283f62;
        transform: scaleX(0);
        transform-origin: 0 50%;
        transition-duration: 0.4s;
    }

    .btn-white:hover, .btn-white:focus {
        color: #fff;
    }

        .btn-white:hover:before, .btn-white:focus:before {
            transform: scaleX(1);
        }

.btn-blue {
    background: #283f62;
    color: #fff;
    border: 0;
}

    .btn-blue:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #097bed;
        transform: scaleX(0);
        transform-origin: 0 50%;
        transition-duration: 0.4s;
    }

    .btn-blue:hover, .btn-blue:focus {
        color: #fff;
    }

        .btn-blue:hover:before, .btn-blue:focus:before {
            transform: scaleX(1);
        }

.tag-base {
    height: 28px;
    line-height: 28px;
    padding: 0 14px;
    display: inline-block;
    border-radius: 3px;
    font-size: 15px;
}

    .tag-base .notice {
        height: 28px;
        width: 28px;
        line-height: 28px;
        display: inline-block;
        text-align: center;
        border-radius: 50%;
        font-size: 14px;
        position: absolute;
        right: -9px;
        top: -10px;
    }

.tag-blue {
    background: var(--main-color);
    color: #fff;
}

    .tag-blue:hover {
        background: #0f68c0;
        color: #fff;
    }

    .tag-blue .notice {
        background: #0f68c0;
    }

.tag-light-blue {
    background: #e6f2fd;
    color: var(--main-color);
}

    .tag-light-blue:hover {
        background: #cee3f6;
        color: #fff;
    }

    .tag-light-blue .notice {
        background: #cee3f6;
    }

.tag-orange {
    background: #fa6400;
    color: #fff;
}

    .tag-orange:hover {
        background: #fa2000;
        color: #fff;
    }

    .tag-orange .notice {
        background: #fa2000;
    }

.tag-purple {
    background: #7530ff;
    color: #fff;
}

    .tag-purple:hover {
        background: #6227da;
        color: #fff;
    }

    .tag-purple .notice {
        background: #6227da;
    }

.tag-red {
    background: #eb3d00;
    color: #fff;
}

    .tag-red:hover {
        background: #d21c23;
        color: #fff;
    }

    .tag-red .notice {
        background: #d21c23;
    }

.tag-green {
    background: #00bff3;
    color: #fff;
}

    .tag-green:hover {
        background: #18a9d1;
        color: #fff;
    }

    .tag-green .notice {
        background: #18a9d1;
    }

.tag-light-green {
    background: #8dc63f;
    color: #fff;
}

    .tag-light-green:hover {
        background: #74ad27;
        color: #fff;
    }

    .tag-light-green .notice {
        background: #74ad27;
    }

.tag-yellow {
    background: #f3b500;
    color: #fff;
}

    .tag-yellow:hover {
        background: #d4a10e;
        color: #fff;
    }

    .tag-yellow .notice {
        background: #d4a10e;
    }

/*---------------------------------------
    ## Post meta
---------------------------------------*/
.post-meta-single p {
    font-size: 14px;
}

    .post-meta-single p i {
        margin-right: 5px;
    }

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

    .post-meta-single ul li {
        display: inline-block;
        margin: 0 6px;
        color: var(--heading-color);
        font-size: 14px;
    }

        .post-meta-single ul li i {
            margin-right: 5px;
        }

        .post-meta-single ul li:first-child {
            margin-left: 0;
        }

        .post-meta-single ul li:last-child {
            margin-right: 0;
        }

/*------------------------------------------------
    ## Section title
------------------------------------------------*/
.section-title {
    position: relative;
    padding-bottom: 34px;
}

    .section-title .title {
        margin-bottom: 0;
        font-size: 20px;
        display: inline-block;
        color: #201654;
    }

    .section-title.style-two {
        padding-bottom: 15px;
        margin-bottom: 45px;
        border-bottom: 1px solid #b3b3b3;
    }

    .section-title.style-white .title {
        color: #fff;
    }

    .section-title.style-white p {
        color: #fff;
    }

    .section-title.style-white .btn-read-more {
        color: #fff;
    }

/*------------------------------------------------
    ## Back Top
------------------------------------------------*/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    color: #fff;
    background-color: var(--main-color);
    text-align: center;
    line-height: 49px;
    z-index: 99;
    font-size: 16px;
    transition: 0.4s;
    cursor: pointer;
    display: none;
    animation: backto-top-bounce 4s infinite ease-in-out;
}

    .back-to-top:hover {
        box-shadow: 0px 3px 7px 0px rgba(254, 242, 46, 0.35);
    }

@keyframes backto-top-bounce {
    0% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-5px);
    }
}
/*------------------------------------------------
    ## social area
------------------------------------------------*/
.social-area {
    padding: 0;
    margin: 0;
}

    .social-area li {
        list-style: none;
        display: inline-block;
        margin: 0 7px;
    }

        .social-area li a {
            color: rgba(255, 255, 255, 1);
        }

            .social-area li a:hover {
                color: rgba(0, 0, 0, 1);
            }

        .social-area li:first-child {
            margin-left: 0;
        }

        .social-area li:last-child {
            margin-right: 0;
        }

.social-area-2 li {
    margin: 0 6px;
}

    .social-area-2 li a {
        color: #ffffff;
        width: 32px;
        height: 32px;
        display: inline-block;
        line-height: 33px;
        text-align: center;
        border-radius: 50%;
    }

        .social-area-2 li a.facebook-icon {
            background: #3b5998;
        }

        .social-area-2 li a.twitter-icon {
            background: #55acee;
        }

        .social-area-2 li a.youtube-icon {
            background: #d42428;
        }

        .social-area-2 li a.instagram-icon {
            background: #6c27b3;
        }

        .social-area-2 li a.google-icon {
            background: #dc4e41;
        }

.social-area-list ul {
    margin: 0;
    padding: 0;
}

    .social-area-list ul li {
        list-style: none;
        border-bottom: 1px solid #ebebeb;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

        .social-area-list ul li .social-icon {
            height: 40px;
            width: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            display: inline-block;
            color: #fff;
        }

        .social-area-list ul li a {
            font-size: 14px;
        }

        .social-area-list ul li .facebook i {
            background: #3b5998;
        }

        .social-area-list ul li .twitter i {
            background: #55acee;
        }

        .social-area-list ul li .youtube i {
            background: #d42428;
        }

        .social-area-list ul li .instagram i {
            background: #6c27b3;
        }

        .social-area-list ul li .google-plus i {
            background: #dc4e41;
        }

        .social-area-list ul li span {
            margin-left: 18px;
        }

        .social-area-list ul li .fa-plus {
            color: #3b5998;
            font-size: 14px;
            float: right;
            padding-top: 13px;
            background: none !important;
        }

        .social-area-list ul li .sr-intro {
            color: #3b5998;
            font-size: 14px;
            float: right;
            margin: 8px 10px 0 0;
            padding-left: 6px;
            background: none !important;
            color: #fff;
            border-left: 1px solid rgba(255, 255, 255, 0.8);
        }

        .social-area-list ul li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: 0;
        }

.social-area-list.style-two ul {
    margin: 0;
    padding: 0;
}

    .social-area-list.style-two ul li {
        list-style: none;
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 10px;
    }

        .social-area-list.style-two ul li .social-icon {
            height: 40px;
            width: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            display: inline-block;
            color: #fff;
        }

        .social-area-list.style-two ul li a {
            display: block;
            color: #fff;
        }

        .social-area-list.style-two ul li .facebook {
            background: #3b5998;
        }

        .social-area-list.style-two ul li .twitter {
            background: #55acee;
        }

        .social-area-list.style-two ul li .youtube {
            background: #d42428;
        }

        .social-area-list.style-two ul li .instagram {
            background: #6c27b3;
        }

        .social-area-list.style-two ul li span {
            margin-left: 8px;
        }

        .social-area-list.style-two ul li .fa-plus {
            color: #3b5998;
            font-size: 14px;
            float: right;
            padding-top: 13px;
            background: none !important;
        }

        .social-area-list.style-two ul li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: 0;
        }

.post-slider .owl-nav {
    display: inline-block;
    position: absolute;
    top: -63px;
    right: -4px;
}

    .post-slider .owl-nav button {
        margin-left: 21px;
        background: transparent;
        border: 0;
        cursor: pointer;
        padding: 0;
        color: #097bed;
        font-size: 20px;
    }

/*-----------------------------------------
    ## Preloader Css
-------------------------------------------*/
.pre-wrap {
    position: fixed;
    content: "";
    transform: translate(-100%, -240%);
    font-size: 62px;
}

.preloader-inner {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999999999;
    background: rgba(16, 41, 80, 0.95);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .preloader-inner .cancel-preloader {
        position: absolute;
        bottom: 30px;
        right: 30px;
    }

        .preloader-inner .cancel-preloader a {
            background-color: #fff;
            font-weight: 600;
            text-transform: capitalize;
            color: var(--main-color);
            width: 200px;
            height: 50px;
            text-align: center;
            line-height: 50px;
            border-radius: 30px;
            display: block;
            transition: all 0.4s ease;
        }

            .preloader-inner .cancel-preloader a:hover {
                background-color: var(--heading-color);
                color: #fff;
            }

.spinner {
    margin: 120px auto;
    width: 60px;
    height: 60px;
    position: relative;
    text-align: center;
    animation: sk-rotate 2s infinite linear;
}

.dot1, .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: var(--main-color);
    border-radius: 100%;
    animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}
/*----------------------------------------
  ## Search Popup
----------------------------------------*/
.td-search-popup.active .search-form {
    visibility: visible;
    opacity: 1;
}

.td-search-popup .search-form {
    min-width: 600px;
    position: absolute;
    position: fixed;
    top: 50%;
    left: 50%;
    transition: 0.5s ease;
    visibility: hidden;
    opacity: 0;
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: translate(-50%, -50%);
    z-index: 999;
}

    .td-search-popup .search-form .form-group .form-control {
        border: none;
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
        height: 54px;
        line-height: 54px;
        padding: 0 100px 0 30px;
        font-size: 18px;
    }

    .td-search-popup .search-form .submit-btn {
        position: absolute;
        right: 0;
        top: 0;
        width: 60px;
        height: 54px;
        border: 0;
        border-radius: 0 5px 5px 0;
        background: var(--main-color);
        color: #fff;
        transition: 0.4s;
        padding: 0;
        text-align: center;
        cursor: pointer;
        z-index: 1;
    }

        .td-search-popup .search-form .submit-btn:hover:before {
            opacity: 0.5;
        }

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background: #1c3459;
    z-index: 991;
    content: "";
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

    .body-overlay.active {
        visibility: visible;
        opacity: 0.9;
    }

/*********** Magnific-popup style **************/
.mfp-zoom-in {
    /* animate in */
    /* animate out */
}

    .mfp-zoom-in .mfp-content {
        opacity: 0;
        transition: all 0.5s ease-in-out;
        transform: scale(0.7);
    }

    .mfp-zoom-in.mfp-bg {
        opacity: 0;
        transition: all 0.5s ease-in-out;
    }

    .mfp-zoom-in.mfp-ready .mfp-content {
        opacity: 1;
        transform: scale(1);
    }

    .mfp-zoom-in.mfp-ready.mfp-bg {
        opacity: 0.7;
    }

    .mfp-zoom-in.mfp-removing .mfp-content {
        transform: scale(0.7);
        opacity: 0;
    }

    .mfp-zoom-in.mfp-removing.mfp-bg {
        opacity: 0;
    }

/****** video play btn *******/
.play-btn-large {
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    padding-left: 3px;
    border-radius: 50%;
    display: inline-block;
    color: #fff;
    font-size: 20px;
}

.play-btn-small {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    padding-left: 3px;
    border-radius: 50%;
    display: inline-block;
    color: #fff;
    font-size: 14px;
}

.play-btn-yellow {
    background: rgba(255, 190, 0, 0.8);
    color: #fff;
}

    .play-btn-yellow:hover {
        color: #fff;
    }

.play-btn-gray {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
}

    .play-btn-gray:hover {
        color: #fff;
    }

.play-btn-blue {
    background: var(--main-color);
    color: #fff;
}

    .play-btn-blue:hover {
        color: #fff;
    }

/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.bg-black {
    background: #102950;
}

.bg-shad {
    background: #102950;
}

.bg-grey {
    background: #eeeeee;
}

.bg-lgrey {
    background: #f6f6f6;
}

.bg-yellow {
    background: #ffbe00;
}

.bg-blue {
    background: #097bed;
}

.bg-after-sky {
    position: relative;
}

    .bg-after-sky:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: #f7fbff;
        z-index: -1;
    }

.pd-top-25 {
    padding-top: 25px;
}

.pd-top-50 {
    padding-top: 50px;
}

.pd-top-70 {
    padding-top: 70px;
}

.pd-top-75 {
    padding-top: 75px;
}

.pd-top-80 {
    padding-top: 80px;
}

.pd-top-82 {
    padding-top: 82px;
}

.pd-top-90 {
    padding-top: 90px;
}

.pd-top-95 {
    padding-top: 95px;
}

.pd-top-100 {
    padding-top: 100px;
}

.pd-bottom-25 {
    padding-bottom: 25px;
}

.pd-bottom-50 {
    padding-bottom: 50px;
}

.pd-bottom-60 {
    padding-bottom: 60px;
}

.pd-bottom-70 {
    padding-bottom: 70px;
}

.pd-bottom-80 {
    padding-bottom: 80px;
}

.pd-bottom-90 {
    padding-bottom: 90px;
}

.pd-bottom-100 {
    padding-bottom: 100px;
}

.pd-bottom-150 {
    padding-bottom: 150px;
}

.mg-top--100 {
    margin-top: -100px;
}

/*------------------------------------------------
    ## widget-style
------------------------------------------------*/
.category-sitebar .widget {
    margin-bottom: 5px;
}

.category-sitebar .widget-title {
    border-bottom: 1px solid #b3b3b3;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.widget_tag_cloud .tagcloud a {
    margin-right: 5px;
    margin-bottom: 10px;
    display: inline-block;
    transition: 0.4s;
    border: 1px solid #393e75;
    height: 36px;
    line-height: 36px;
    padding: 0 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

    .widget_tag_cloud .tagcloud a:hover {
        background: var(--main-color);
        border: 1px solid var(--main-color);
    }

.widget-category .row {
    padding: 0 8px;
}

/*----------------------------------------------
    # top bar 
----------------------------------------------*/
.topbar-area {
    background: #eb3d00;
    padding: 6px 0;
}

    .topbar-area .topbar-menu ul {
        padding: 0;
        margin: 0;
        display: inline-block;
    }

        .topbar-area .topbar-menu ul li {
            display: inline-block;
            margin: 0 8px;
        }

            .topbar-area .topbar-menu ul li a {
                color: rgba(255, 255, 255, 1);
                font-size: 16px;
            }

                .topbar-area .topbar-menu ul li a:hover {
                    color: rgba(0, 0, 0, 1);
                }

            .topbar-area .topbar-menu ul li:first-child {
                margin-left: 0;
            }

            .topbar-area .topbar-menu ul li:last-child {
                margin-right: 0;
            }

    .topbar-area .lang-single-inner {
        display: inline-block;
    }

        .topbar-area .lang-single-inner .nice-select {
            padding: 0 25px 0 0;
            margin: 0;
            height: auto;
            line-height: 0.6;
            background: transparent;
            color: rgba(255, 255, 255, 0.8);
            border: 0;
        }

            .topbar-area .lang-single-inner .nice-select ul {
                margin: 0;
                padding: 0;
                margin-top: 6px;
                border-radius: 0;
            }

                .topbar-area .lang-single-inner .nice-select ul li {
                    display: block;
                    margin: 0;
                    font-size: 13px;
                    min-height: 36px;
                    line-height: 30px;
                    color: var(--main-color);
                }

    .topbar-area .topbar-social .social-area {
        display: inline-block;
    }

    .topbar-area .topbar-date {
        display: inline-block;
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        border-right: 1px solid #495d7a;
        padding-right: 20px;
        margin-right: 17px;
    }

        .topbar-area .topbar-date i {
            margin-right: 6px;
        }

/*----------------------------------------------
    # add bar 
----------------------------------------------*/
.adbar-area {
    padding: 25px 0;
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
.navbar-area {
    padding: 0;
    top: 0;
    z-index: 98;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    transition: all 0.4s;
    padding: 0;
}

    .navbar-area .navbar {
        background: #eb3d00;
    }

    .navbar-area .nav-container {
        background-color: transparent;
        transition: all 0.4s;
    }

        .navbar-area .nav-container .logo a {
            display: inline-block;
        }

            .navbar-area .nav-container .logo a img {
                height: auto;
            }

        .navbar-area .nav-container .navbar-collapse .navbar-nav {
            display: block;
            width: 100%;
            margin-left: 130px;
        }

.navbar-nav ul {
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    font-weight: 400;
    text-transform: capitalize;
}

    .navbar-area .nav-container .navbar-collapse .navbar-nav li:first-child {
        border: 0;
        padding-left: 0;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
        color: #fff;
        font-weight: 400;
        font-size: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li:hover a {
        color: #fff;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
        margin-left: 17px;
        padding-left: 16px;
        text-align: center;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
        position: relative;
        z-index: 0;
        padding-right: 14px;
        transition: all 0.4s ease-in;
        z-index: 9;
    }

        .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
            content: "";
            position: absolute;
            right: 3px;
            top: 50%;
            height: 10px;
            width: 2px;
            background: #fff;
            transform: translateY(-50%);
            transition: all 0.3s ease-in;
        }

        .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:after {
            content: "";
            position: absolute;
            right: -1px;
            top: 26px;
            height: 2px;
            width: 10px;
            background: #fff;
            transform: translateY(-50%);
            transition: all 0.3s ease-in;
        }

        .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
            transition: all 0.4s ease;
        }

            .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:before {
                opacity: 0;
            }

            .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
                visibility: visible;
                opacity: 1;
            }

        .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
            position: absolute;
            text-align: left;
            min-width: 210px;
            margin: 0;
            padding: 0;
            list-style: none;
            left: 0;
            top: 60px;
            box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
            background-color: #fff;
            z-index: 9;
            overflow: hidden;
            visibility: hidden;
            opacity: 0;
            transition: all 0.4s ease;
            border-radius: 0;
        }

            .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.border-bt0 {
                border-bottom: 0px !important;
            }

            .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
                display: block;
                margin-left: 0;
                line-height: 22px;
                font-size: 15px;
                transition: all 0.4s ease;
                border: 0;
                padding-left: 0;
                border-bottom: 1px solid #f5f5f5;
            }

                .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
                    display: block;
                    padding: 10px 20px;
                    white-space: nowrap;
                    transition: all 0.3s;
                    color: #767575;
                    font-size: 14px;
                    transition: all 0.4s ease;
                    position: relative;
                }

                    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:before {
                        position: absolute;
                        left: 17px;
                        top: 50%;
                        content: "";
                        font-family: "fontawesome";
                        /* IE 9 */
                        /* Chrome, Safari, Opera */
                        transform: translateY(-50%);
                        visibility: hidden;
                        opacity: 0;
                        transition: 0.4s;
                        color: #fff;
                    }

                .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
                    background: var(--main-color);
                }

                    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover a {
                        color: #fff;
                        padding: 10px 20px 10px 30px;
                    }

                        .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover a:before {
                            visibility: visible;
                            opacity: 1;
                        }

                .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
                    border-bottom: 0;
                }

            .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
                position: relative;
                z-index: 0;
                padding-right: 0px;
            }

                .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:before {
                    position: absolute;
                    right: 15px;
                    top: 50%;
                    content: "";
                    font-family: "fontawesome";
                    /* IE 9 */
                    /* Chrome, Safari, Opera */
                    transform: translateY(-50%);
                }

                .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
                    left: 100%;
                    top: 20px;
                }

                    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .sub-menu {
                        left: auto;
                        right: 100%;
                    }

                .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
                    visibility: visible;
                    opacity: 1;
                }

                    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
                        color: #fff;
                    }

.navbar-area.navbar-area-2 .nav-container {
    padding: 8px 0 8px 8px;
}

.navbar-area.navbar-area-2 .topbar-area {
    background: #eb3d00;
}

.navbar-area.navbar-area-2 .navbar {
    background: #fff;
}

.navbar-area.navbar-area-2 .nav-container .navbar-collapse .navbar-nav > li > a {
    color: #121213;
    font-weight: 600;
    text-align: center;
}

.navbar-area.navbar-area-2 .nav-container .navbar-collapse .navbar-nav > li.menu-item-has-children:before {
    display: none;
}

.navbar-area.navbar-area-2 .nav-container .navbar-collapse .navbar-nav > li.menu-item-has-children:after {
    content: "";
    color: #121213;
    font-family: "fontAwesome";
    top: 0px;
}

/********** navbar right part **********/
.menu-search-inner {
    background: #086ed5;
}

    .menu-search-inner input {
        height: 48px;
        padding: 0 0 0 20px;
        border: 0 !important;
        background: transparent;
        color: rgba(255, 255, 255, 0.7);
    }

        .menu-search-inner input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

    .menu-search-inner button {
        height: 48px;
        line-height: 48px;
        border: 0 !important;
        background: transparent;
        padding: 0 18px;
        color: rgba(255, 255, 255, 0.8);
        cursor: pointer;
    }

.menu-open {
    opacity: 1;
    margin-right: 0;
    visibility: visible;
}

.bar1 {
    width: 32px;
    height: 2px;
    margin-bottom: 5px;
    position: absolute;
    background: #fff;
    z-index: 9999;
    top: 10px;
    right: -5px;
}

.bar2 {
    width: 24px;
    height: 2px;
    margin-bottom: 5px;
    position: absolute;
    background: #fff;
    z-index: 9999;
    top: 17px;
    right: -5px;
}

.bar3 {
    width: 18px;
    height: 2px;
    margin-bottom: 5px;
    position: absolute;
    background: #fff;
    z-index: 9999;
    top: 24px;
    right: -5px;
}

.responsive-mobile-menu button:focus {
    outline: none;
    border: none;
}

.toggle-btn {
    left: auto;
    right: -10px;
    position: absolute;
    width: 40px;
    height: 40px;
    transition-duration: 0.5s;
    border: 0;
    background: transparent;
    top: 9px;
}

    .toggle-btn .icon-left {
        transition-duration: 0.5s;
        position: absolute;
        height: 2px;
        width: 11px;
        top: 18px;
        background-color: #ffffff;
        left: 7px;
    }

        .toggle-btn .icon-left:before {
            transition-duration: 0.5s;
            position: absolute;
            width: 11px;
            height: 2px;
            background-color: #ffffff;
            content: "";
            top: -7px;
            left: 0;
        }

        .toggle-btn .icon-left:after {
            transition-duration: 0.5s;
            position: absolute;
            width: 11px;
            height: 2px;
            background-color: #ffffff;
            content: "";
            top: 7px;
            left: 0;
        }

        .toggle-btn .icon-left:hover {
            cursor: pointer;
        }

    .toggle-btn .icon-right {
        transition-duration: 0.5s;
        position: absolute;
        height: 2px;
        width: 11px;
        top: 18px;
        background-color: #ffffff;
        left: 18px;
    }

        .toggle-btn .icon-right:before {
            transition-duration: 0.5s;
            position: absolute;
            width: 11px;
            height: 2px;
            background-color: #ffffff;
            content: "";
            top: -7px;
            left: 0;
        }

        .toggle-btn .icon-right:after {
            transition-duration: 0.5s;
            position: absolute;
            width: 11px;
            height: 2px;
            background-color: #ffffff;
            content: "";
            top: 7px;
            left: 0;
        }

        .toggle-btn .icon-right:hover {
            cursor: pointer;
        }

    .toggle-btn.open .icon-left {
        transition-duration: 0.5s;
        background: transparent;
    }

        .toggle-btn.open .icon-left:before {
            transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
        }

        .toggle-btn.open .icon-left:after {
            transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
        }

    .toggle-btn.open .icon-right {
        transition-duration: 0.5s;
        background: transparent;
    }

        .toggle-btn.open .icon-right:before {
            transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
        }

        .toggle-btn.open .icon-right:after {
            transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
        }

    .toggle-btn:hover {
        cursor: pointer;
    }

.navbar-area-fixed .icon-left {
    background-color: #fff;
}

    .navbar-area-fixed .icon-left:before {
        background-color: #fff;
    }

    .navbar-area-fixed .icon-left:after {
        background-color: #fff;
    }

.navbar-area-fixed .icon-right {
    background-color: #fff;
}

    .navbar-area-fixed .icon-right:before {
        background-color: #fff;
    }

    .navbar-area-fixed .icon-right:after {
        background-color: #fff;
    }

.nav-right-part-desktop {
    margin-left: 20px;
}

.nav-right-part-mobile {
    display: none;
}

.sopen {
    display: block !important;
}

@media all and (min-width: 992px) {
    .navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li:hover a,
    .navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before,
    .navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li a {
        color: #fff;
    }
}

@media all and (max-width: 991px) {
    .navbar-area .nav-container {
        padding: 15px;
    }

    .nav-right-part {
        margin-right: 50px;
    }

    .nav-right-part-desktop {
        display: none;
    }

    .nav-right-part-mobile {
        display: block;
    }

    .nav-right-part .btn .right {
        padding-left: 5px;
        font-size: 13px;
    }

    .navbar-area .nav-container {
        position: relative;
        z-index: 0;
    }

        .navbar-area .nav-container .navbar-toggler {
            padding: 0px;
        }

        .navbar-area .nav-container .navbar-collapse {
            margin-top: 13px;
            padding-right: 25px;
        }

            .navbar-area .nav-container .navbar-collapse .navbar-nav {
                display: block;
                margin-top: 20px;
            }

                .navbar-area .nav-container .navbar-collapse .navbar-nav li {
                    display: block;
                    text-align: left;
                    line-height: 30px;
                    padding: 10px 0;
                    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                }

                    .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
                        display: block;
                    }

                    .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
                        border-bottom: none;
                    }

                    .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
                        margin-left: 0;
                    }

                    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
                        top: 26px;
                        right: 3px !important;
                    }

                    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
                        position: initial;
                        display: block;
                        width: 100%;
                        border-top: none;
                        box-shadow: none;
                        margin-left: 0;
                        padding-bottom: 0;
                        height: auto;
                        overflow: hidden;
                        max-height: 250px;
                        overflow-y: scroll;
                        background-color: transparent;
                        border-radius: 10px;
                        padding: 0px;
                        border-bottom: none;
                        display: none;
                        transition: none;
                        visibility: visible;
                        opacity: 1;
                    }

                        .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
                            content: "";
                        }

                        .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
                            padding: 0;
                        }

                            .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
                                top: 30px;
                                color: #fff;
                            }

                            .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
                                border-top: none;
                            }

    .navbar-area-2 .nav-right-part .header-search {
        color: #102950;
    }

    .navbar-area-2 .toggle-btn .icon-left {
        background-color: #102950;
        left: 7px;
    }

        .navbar-area-2 .toggle-btn .icon-left:before {
            background-color: #102950;
        }

        .navbar-area-2 .toggle-btn .icon-left:after {
            background-color: #102950;
        }

    .navbar-area-2 .toggle-btn .icon-right {
        background-color: #102950;
    }

        .navbar-area-2 .toggle-btn .icon-right:before {
            background-color: #102950;
        }

        .navbar-area-2 .toggle-btn .icon-right:after {
            background-color: #102950;
        }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li:first-child {
        padding-left: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        color: #fff;
    }

    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        border-left: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

        .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
            margin-left: 0;
            padding-left: 0;
        }

    .navbar-area .nav-container .navbar-collapse {
        padding-right: 0;
    }

    .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        color: #102950;
    }
}
/********** banner style ************/
.banner-inner-1 {
    padding-bottom: 43px;
}

.banner-inner {
    padding-bottom: 70px;
}

    .banner-inner .thumb {
        position: relative;
    }

        .banner-inner .thumb img {
            position: relative;
            z-index: 3;
            border-radius: 5px;
        }

        .banner-inner .thumb.after-left-top {
            margin-left: 30px;
            margin-top: 30px;
        }

            .banner-inner .thumb.after-left-top:after {
                content: "";
                background: #ffbe00;
                position: absolute;
                left: -30px;
                top: -30px;
                width: 100%;
                height: 100%;
                z-index: 0;
                border-radius: 5px;
            }

    .banner-inner .banner-details {
        margin-left: 50px;
    }

        .banner-inner .banner-details .post-meta-single {
            margin-bottom: 38px;
        }

            .banner-inner .banner-details .post-meta-single li {
                color: #ffffff;
            }

                .banner-inner .banner-details .post-meta-single li .tag-base {
                    font-size: 20px;
                    height: 42px;
                    line-height: 42px;
                    padding: 0 28px;
                    border-radius: 5px;
                }

                .banner-inner .banner-details .post-meta-single li.date {
                    font-size: 14px;
                    margin-left: 17px;
                }

        .banner-inner .banner-details p {
            color: #fff;
            margin-top: 27px;
        }

        .banner-inner .banner-details h2 {
            color: #fff;
        }

        .banner-inner .banner-details .btn {
            margin-top: 32px;
        }

.banner-inner-3 {
    margin-bottom: 58px;
}

    .banner-inner-3 .thumb {
        margin-bottom: 20px;
        overflow: hidden;
    }

        .banner-inner-3 .thumb img {
            transform: scale(1.01);
            transition: 0.8s;
        }

        .banner-inner-3 .thumb:hover img {
            transform: scale(1.06);
        }

    .banner-inner-3 .author-meta span {
        color: var(--main-color);
    }

    .banner-inner-3 .author-meta .media-left img {
        border-radius: 50%;
    }

    .banner-inner-3 .single-post-wrap {
        margin-bottom: 20px;
    }

        .banner-inner-3 .single-post-wrap.style-overlay-bg .details {
            position: absolute;
            bottom: 0;
            padding: 18px 30px;
            z-index: 4;
            margin: 0;
            border: 5px solid var(--main-color);
            border-top: 0;
            background-color: rgba(0, 0, 0, 0.502);
            border-radius: 0 0 6px 6px;
            width: 100%;
        }

            .banner-inner-3 .single-post-wrap.style-overlay-bg .details p,
            .banner-inner-3 .single-post-wrap.style-overlay-bg .details .title {
                color: #fff;
            }

/*---------------------------------------
    ## Single Post Wrap
---------------------------------------*/

-area img {
    width: 100%;
}

.single-post-wrap {
    position: relative;
    margin-bottom: 28px;
    transition: 0.4s;
}

    .single-post-wrap .thumb {
        position: relative;
        margin-bottom: 27px;
        overflow: hidden;
        border-radius: 5px;
    }

        .single-post-wrap .thumb img {
            transition: 0.8s;
            transform: scale(1.01);
        }

        .single-post-wrap .thumb .tag-base {
            position: absolute;
            left: 17px;
            top: 19px;
            z-index: 3;
        }

        .single-post-wrap .thumb .btn-date {
            position: absolute;
            left: 17px;
            bottom: 19px;
            z-index: 3;
            height: 40px;
            line-height: 41px;
            padding: 0 22px;
            display: inline-block;
            border-radius: 40px;
            background: #fff;
            color: var(--heading-color);
            margin-bottom: 0;
        }

            .single-post-wrap .thumb .btn-date i {
                margin-right: 5px;
            }

        .single-post-wrap .thumb .play-btn-large {
            position: absolute;
            left: 50%;
            margin-left: -40px;
            top: 50%;
            margin-top: -40px;
            z-index: 5;
        }

        .single-post-wrap .thumb .play-btn-small {
            position: absolute;
            left: 50%;
            margin-left: -20px;
            top: 50%;
            margin-top: -20px;
            z-index: 5;
        }

    .single-post-wrap .details .title {
        margin-bottom: 0;
    }

    .single-post-wrap .details p {
        margin-bottom: 0;
        margin-top: 16px;
        color: var(--heading-color);
    }

    .single-post-wrap .details .btn {
        padding: 0 17px;
        height: 44px;
        line-height: 44px;
        font-weight: 400;
    }

    .single-post-wrap .spw-bottom {
        border-top: 1px solid #e0e0e0;
        margin-top: 15px;
        padding-top: 18px;
    }

        .single-post-wrap .spw-bottom ul {
            margin: 0;
            padding: 0;
        }

            .single-post-wrap .spw-bottom ul li {
                display: inline-block;
                margin: 0 5px;
            }

                .single-post-wrap .spw-bottom ul li:first-child {
                    margin-left: 0;
                }

                .single-post-wrap .spw-bottom ul li:last-child {
                    margin-right: 0;
                }

                .single-post-wrap .spw-bottom ul li p {
                    font-size: 14px;
                    margin-top: 0;
                }

        .single-post-wrap .spw-bottom .media .media-left {
            margin-right: 10px;
        }

            .single-post-wrap .spw-bottom .media .media-left img {
                height: 30px;
                width: 30px;
                border-radius: 50%;
            }

        .single-post-wrap .spw-bottom .media .media-body p {
            margin: 0;
        }

    .single-post-wrap:hover .thumb img {
        transform: scale(1.06);
    }

    .single-post-wrap.style-white .post-meta-single p,
    .single-post-wrap.style-white .post-meta-single li {
        color: rgba(255, 255, 255, 0.8);
    }

    .single-post-wrap.style-white .details .title {
        color: #fff;
    }

    .single-post-wrap.style-white .details p {
        color: #fff;
    }

    .single-post-wrap.style-overlay .thumb {
        margin-bottom: 0;
    }

        .single-post-wrap.style-overlay .thumb img {
            min-height: 119px;
        }

        .single-post-wrap.style-overlay .thumb:after {
            content: "";
            background: linear-gradient(to top,rgba(32,22,84,0.6) 52%,rgba(0,0,100,0));
            height: 70%;
            left: 0;
            position: absolute;
            bottom: 0;
            border-radius: 5px;
            width: 100%;
            z-index: 3;
            transition: .4s;
        }

        .single-post-wrap.style-overlay .thumb:before {
            content: "";
            background: linear-gradient(to top,rgba(32,22,84,0.38) 52%,rgba(0,0,100,0));
            height: 75%;
            left: 0;
            position: absolute;
            bottom: 0;
            border-radius: 5px;
            width: 100%;
            z-index: 4;
            transition: .4s;
            visibility: hidden;
            opacity: 0;
        }

    .single-post-wrap.style-overlay .details {
        position: absolute;
        bottom: 0;
        padding: 18px 20px;
        z-index: 4;
    }

        .single-post-wrap.style-overlay .details .title {
            color: #fff;
        }

            .single-post-wrap.style-overlay .details .title:hover a {
                color: #ffbe00;
            }

        .single-post-wrap.style-overlay .details p {
            color: #fff;
        }

    .single-post-wrap.style-overlay .post-meta-single {
        margin-bottom: 8px;
    }

        .single-post-wrap.style-overlay .post-meta-single p {
            margin-bottom: 10px;
        }

        .single-post-wrap.style-overlay .post-meta-single li {
            color: #fff;
        }

    .single-post-wrap.style-overlay:hover .thumb:before {
        visibility: visible;
        opacity: 1;
    }

    .single-post-wrap.style-overlay-bg .thumb {
        margin-bottom: 0;
    }

        .single-post-wrap.style-overlay-bg .thumb:after {
            content: "";
            background: linear-gradient(to top, rgba(32, 22, 84, 0.3) 52%, rgba(0, 0, 100, 0));
            height: 70%;
            left: 0;
            position: absolute;
            bottom: 0;
            border-radius: 5px;
            width: 100%;
            z-index: 3;
            transition: 0.4s;
        }

        .single-post-wrap.style-overlay-bg .thumb:before {
            content: "";
            background: linear-gradient(to top, rgba(32, 22, 84, 0.38) 52%, rgba(0, 0, 100, 0));
            height: 75%;
            left: 0;
            position: absolute;
            bottom: 0;
            border-radius: 5px;
            width: 100%;
            z-index: 4;
            transition: 0.4s;
            visibility: hidden;
            opacity: 0;
        }

    .single-post-wrap.style-overlay-bg .details {
        position: absolute;
        bottom: 0;
        padding: 18px 18px;
        z-index: 4;
        margin: 15px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
    }

    .single-post-wrap.style-overlay-bg:hover .thumb:before {
        visibility: visible;
        opacity: 1;
    }

    .single-post-wrap.style-box {
        border-radius: 5px;
        overflow: hidden;
        background: #fafafa;
    }

        .single-post-wrap.style-box .thumb {
            margin-bottom: 0;
            border-radius: 0;
        }

        .single-post-wrap.style-box .details {
            padding: 25px;
        }

        .single-post-wrap.style-box:hover {
            box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.09);
        }

/***trending post****/
.trending-post .single-post-wrap.style-overlay .post-meta-single p {
    margin-bottom: 7px;
}

.trending-post.style-box {
    background: #fff;
    padding: 33px 23px 23px;
    border-radius: 5px;
    box-shadow: 0px 6px 47px 3px rgba(37, 37, 37, 0.05);
}

/*****single-post-list-wrap*****/
.single-post-list-wrap {
    margin-bottom: 17px;
}

    .single-post-list-wrap .media-left {
        position: relative;
    }

    .single-post-list-wrap .play-btn-small {
        position: absolute;
        left: 50%;
        margin-left: -20px;
        top: 50%;
        margin-top: -20px;
        z-index: 5;
    }

    .single-post-list-wrap .media .media-left {
        margin-right: 13px;
    }

    .single-post-list-wrap .media img {
        border-radius: 5px;
    }

    .single-post-list-wrap .media .media-body .post-meta-single ul li {
        font-size: 10px;
        color: var(--heading-color);
        float: right
    }

    .single-post-list-wrap .media .media-body h6 {
        margin-bottom: 0;
    }

    .single-post-list-wrap .media .media-body p {
        margin-bottom: 0;
    }

    .single-post-list-wrap.style-white .media .media-body .post-meta-single ul li {
        color: #fff;
    }

    .single-post-list-wrap.style-white .media .media-body h6 {
        color: #fff;
    }

    .single-post-list-wrap.style-white .media .media-body p {
        color: rgba(255, 255, 255, 0.8);
        margin-top: 10px;
        margin-bottom: 0;
    }

    .single-post-list-wrap.style-two {
        margin-bottom: 30px;
    }

        .single-post-list-wrap.style-two .media .media-left {
            margin-right: 20px;
        }

/******** nxp-tab-inner *********/
.nxp-tab-inner ul {
    border: 0 !important;
}

    .nxp-tab-inner ul li a {
        background: none !important;
        border: 0 !important;
        padding: 0;
    }

        .nxp-tab-inner ul li a .single-post-list-wrap {
            display: block;
        }

.nxp-tab-inner .nav-link {
    display: block;
    overflow: hidden;
}

.nxp-tab-post ul {
    display: inline-block;
}

    .nxp-tab-post ul li {
        margin: 0 10px;
        display: inline-block;
    }

        .nxp-tab-post ul li:first-child {
            margin-left: 0;
        }

        .nxp-tab-post ul li:last-child {
            margin-right: 0;
        }

        .nxp-tab-post ul li a {
            border-radius: 0 !important;
        }

            .nxp-tab-post ul li a.active {
                color: #102950;
            }

.nxp-tab-post.style-two ul li {
    margin: 0 5px;
}

    .nxp-tab-post.style-two ul li:first-child {
        margin-left: 0;
    }

    .nxp-tab-post.style-two ul li:last-child {
        margin-right: 0;
    }

    .nxp-tab-post.style-two ul li a {
        height: 48px;
        line-height: 48px;
        background: #f4f4f4 !important;
        padding: 0 20px;
        display: inline-block;
    }

        .nxp-tab-post.style-two ul li a.active {
            background: var(--main-color) !important;
            color: #fff;
        }

.nxp-tab-post-two ul {
    border: 1px solid #f1f3f5 !important;
    line-height: 1;
}

    .nxp-tab-post-two ul li {
        margin: 0;
        display: inline-block;
        border-right: 1px solid #f1f3f5;
        line-height: 1;
        width: 33.33%;
    }

        .nxp-tab-post-two ul li:last-child {
            border-right: 0;
        }

        .nxp-tab-post-two ul li a {
            line-height: 40px;
            height: 40px;
            text-align: center;
            color: var(--heading-color);
            border-radius: 0 !important;
            background: #ddd !important;
        }

            .nxp-tab-post-two ul li a.active {
                background: #eb3d00 !important;
                color: #fff !important;
            }

.nxp-tab-content-2 {
    margin-bottom: 50px;
}

    .nxp-tab-content-2 .tab-pane .single-post-list-wrap {
        border-bottom: 1px solid #f0f2f3;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

        .nxp-tab-content-2 .tab-pane .single-post-list-wrap:last-child {
            border-bottom: 0;
            padding-bottom: 0;
            margin-bottom: 0;
        }

.single-category-inner {
    position: relative;
    margin-bottom: 15px;
}

    .single-category-inner .tag-base {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        margin-top: -14px;
        z-index: 4;
        border-radius: 30px;
        padding: 0 25px;
    }

    .single-category-inner .total-cat {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-25%);
        top: 50%;
        margin-top: -14px;
        z-index: 4;
        border-radius: 30px;
        padding: 0 25px;
        color: #fff;
        line-height: 1.4;
    }

/******* single-input-inner ********/
.single-newsletter-inner {
    padding: 22px 25px 30px 25px;
    border-radius: 5px;
}

    .single-newsletter-inner p {
        color: var(--heading-color);
        margin-bottom: 28px;
    }

    .single-newsletter-inner.bg-blue h5,
    .single-newsletter-inner.bg-blue p {
        color: #fff;
    }

    .single-newsletter-inner.bg-blue input {
        background: transparent;
        color: #fff;
    }

        .single-newsletter-inner.bg-blue input::placeholder {
            color: rgba(255, 255, 255, 0.702);
        }

    .single-newsletter-inner.bg-black h5,
    .single-newsletter-inner.bg-black p {
        color: #fff;
    }

    .single-newsletter-inner.bg-black input {
        background: transparent;
        color: #fff;
    }

        .single-newsletter-inner.bg-black input::placeholder {
            color: rgba(255, 255, 255, 0.702);
        }

.single-input-inner {
    margin-bottom: 12px;
}

    .single-input-inner input {
        height: 48px;
        width: 100%;
        border-radius: 5px;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        padding: 0 18px;
    }

/*---------------------------------------------
	cs-partner-slider-11
----------------------------------------------*/
.most-view-slider {
    width: 100%;
    margin: 0 auto;
}

    .most-view-slider .single-most-view-inner {
        transform: scale(0.85);
        transition: 0.4s;
        margin: 30px 0;
    }

        .most-view-slider .single-most-view-inner .thumb img {
            display: inline-block;
            transform: scale(1.07);
        }

    .most-view-slider .item {
        transition: 0.6s;
    }

    .most-view-slider .active.center .single-most-view-inner {
        transform: scale(1.1);
    }

    .most-view-slider .active.center {
        margin-right: 0;
        z-index: 2;
    }

        .most-view-slider .active.center .single-post-wrap.style-overlay .details {
            padding: 18px 20px;
        }

        .most-view-slider .active.center ~ .active {
            margin-left: -36px;
            position: relative;
            z-index: -1;
        }

            .most-view-slider .active.center ~ .active .single-post-wrap.style-overlay .details {
                padding: 18px 20px 18px 50px;
                transition: 0.4s;
            }

    .most-view-slider .owl-stage-outer {
        margin: 0 45px;
    }

    .most-view-slider .active {
        margin-right: -36px;
        position: relative;
        z-index: -1;
    }

        .most-view-slider .active .single-post-wrap.style-overlay .details {
            padding: 18px 50px 18px 20px;
            transition: 0.4s;
        }

    .most-view-slider .owl-nav {
        display: none;
    }

    .most-view-slider .owl-dots {
        text-align: center;
    }

        .most-view-slider .owl-dots .owl-dot {
            border: 1px solid #909cae;
            height: 12px;
            width: 12px;
            border-radius: 50%;
            margin: 0;
            padding: 0;
            background: transparent;
            margin: 0 5px;
            line-height: 0;
        }

            .most-view-slider .owl-dots .owl-dot span {
                height: 6px;
                width: 6px;
                background: transparent;
                display: inline-block;
                margin-top: -1px;
                border-radius: 50%;
            }

            .most-view-slider .owl-dots .owl-dot.active span {
                background: var(--main-color);
            }

.video-tab-inner-2 {
    padding: 35px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

    .video-tab-inner-2 li {
        border-bottom: 1px solid #53a3f2;
        margin-bottom: 10px !important;
        display: block;
        width: 100%;
    }

        .video-tab-inner-2 li .single-post-list-wrap {
            margin-bottom: 10px;
        }

        .video-tab-inner-2 li:last-child {
            margin-bottom: 0 !important;
            border-bottom: 0;
        }

            .video-tab-inner-2 li:last-child .single-post-list-wrap {
                margin-bottom: 0;
            }

.post-slider .single-post-wrap.style-overlay {
    margin-bottom: 25px;
}

.tag-area-shadow {
    box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.06);
    padding: 25px 30px 10px 30px;
    background: #fff;
    border-radius: 6px;
}

.error-area-inner {
    position: relative;
    padding: 230px 0;
}

    .error-area-inner h2 {
        color: #e6f2fd;
        font-size: 320px;
        font-weight: 800;
        position: absolute;
        left: 0;
        top: 0;
        line-height: 1;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        margin-bottom: 0;
        z-index: -1;
    }

    .error-area-inner h3 {
        margin-bottom: 30px;
    }

/*---------------------------------------------------
    #page-title-area
---------------------------------------------------*/
.pagination {
    display: inline-flex;
    text-align: center;
    margin: 0;
}

    .pagination .page-item {
        margin: 0 5px;
    }

        .pagination .page-item .page-link {
            height: 50px;
            width: 50px;
            line-height: 48px;
            padding: 0;
            background: #f3f4f9;
            border-radius: 4px;
            border: 0;
            color: var(--heading-color);
            box-shadow: none;
            background: transparent;
            border: 2px solid #e3e3e3;
        }

        .pagination .page-item.active .page-link, .pagination .page-item:hover .page-link {
            background: var(--main-color);
            color: #fff;
            border: 2px solid var(--main-color);
        }

        .pagination .page-item .page-link_rubr {
            height: 60px;
            width: 180px;
            line-height: 48px;
            padding: 0;
            background: #f3f4f9;
            border-radius: 4px;
            border: 0;
            color: var(--heading-color);
            box-shadow: none;
            background: transparent;
            border: 2px solid #e3e3e3;
        }

        .pagination .page-item.active .page-link_rubr, .pagination .page-item:hover .page-link {
            background: var(--main-color);
            color: #fff;
            border: 2px solid var(--main-color);
        }



        .pagination .page-item:first-child {
            margin-left: 0;
        }

        .pagination .page-item:last-child {
            margin-right: 0;
        }

.page-title-area {
    padding: 25px 0 22px;
    background: #e6f2fd;
}

    .page-title-area .breadcrumb-inner .page-title {
        margin-bottom: 5px;
    }

    .page-title-area .breadcrumb-inner .page-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .page-title-area .breadcrumb-inner .page-list li {
            font-size: 16px;
            color: #565872;
            font-weight: 400;
            display: inline-block;
        }

            .page-title-area .breadcrumb-inner .page-list li a {
                position: relative;
                margin-right: 9px;
                padding-right: 11px;
                color: var(--main-color);
            }

                .page-title-area .breadcrumb-inner .page-list li a:hover {
                    color: #565872;
                }

                .page-title-area .breadcrumb-inner .page-list li a:after {
                    position: absolute;
                    right: 0;
                    top: -4px;
                    content: "/";
                    height: 15px;
                    width: 1px;
                }

.single-blog-inner {
    margin-bottom: 55px;
}

    .single-blog-inner .thumb {
        position: relative;
    }

        .single-blog-inner .thumb .video-play-btn {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: white;
            display: inline-block;
            position: absolute;
            z-index: 1;
            left: 50%;
            text-align: center;
            line-height: 100px;
            top: 50%;
            margin: -50px 0 0 -50px;
        }

            .single-blog-inner .thumb .video-play-btn i {
                font-size: 18px;
                color: var(--main-color);
            }

    .single-blog-inner .single-blog-details {
        margin: 5px 0;
    }

        .single-blog-inner .single-blog-details .meta {
            color: #696969;
            font-size: 18px;
            margin-bottom: 10px;
        }

            .single-blog-inner .single-blog-details .meta span {
                margin-right: 25px;
            }

                .single-blog-inner .single-blog-details .meta span i {
                    color: var(--main-color);
                    margin-right: 7px;
                }

        .single-blog-inner .single-blog-details h3 {
            font-size: 34px;
            font-weight: 600;
        }

            .single-blog-inner .single-blog-details h3:hover {
                color: var(--main-color);
            }

        .single-blog-inner .single-blog-details p {
            font-size: 16px;
            color: #696969;
            margin-top: 14px;
        }

        .single-blog-inner .single-blog-details .btn {
            margin-top: 22px;
        }

.single-blog-details a,
.single-blog-detailsa:focus,
.single-blog-detailsa:active {
    color: #eb3d00;
}

    .single-blog-details a:hover {
        color: #201654;
    }


    .single-blog-inner .blockquote {
        padding: 14px 48px 35px 140px;
        background: #f2f8fe;
        position: relative;
    }

        .single-blog-inner .blockquote i {
            font-size: 70px;
            position: absolute;
            left: 40px;
            top: 50%;
            transform: translateY(-50%);
        }

        .single-blog-inner .blockquote p {
            margin-bottom: 0;
        }


    .single-blog-inner .block_fir {
        margin: 0px 0px 0px 20px;
        padding: 0px 20px 0px 20px;
        background: #fff;
        position: relative;
        float: right;
        width: 40%;
    }

        .single-blog-inner .block_fir a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
        }

        .single-blog-inner .block_fir a:hover {
            color: #eb3d00;
        }

        .single-blog-inner .block_fir p {
            margin-bottom: 10px;
        }

.single-blog-inner-2 {
    padding: 45px 25px 36px 50px;
}

    .single-blog-inner-2 .single-blog-details {
        margin: 0;
    }

        .single-blog-inner-2 .single-blog-details .meta span {
            color: #8394a2;
        }

            .single-blog-inner-2 .single-blog-details .meta span i {
                color: #ffffff;
            }

        .single-blog-inner-2 .single-blog-details h3 {
            color: #ffffff;
            font-size: 34px;
            font-weight: 500;
        }

            .single-blog-inner-2 .single-blog-details h3:hover {
                color: #27debf;
            }

.single-blog-inner-3 {
    border: 2px solid #eeeeee;
    padding: 7px 40px 15px 50px;
}

/***blog-details-page***/
.blog-details-page-inner .single-blog-inner h5 {
    margin-top: 35px;
    margin-bottom: 15px;
}

.blog-details-page-inner .single-blog-inner p {
    margin-bottom: 15px;
}

.blog-details-page-inner .meta {
    color: #696969;
    font-size: 18px;
    margin-top: 31px;
}

    .blog-details-page-inner .meta span {
        color: #14212b;
        font-size: 18px;
        font-weight: 500;
    }

    .blog-details-page-inner .meta a:hover {
        color: var(--main-color);
    }

    .blog-details-page-inner .meta .social-area-2 li {
        margin: 0 2px;
    }

.blog-details-page-inner .author-area {
    padding: 40px;
    margin-top: 70px;
}

.blog-details-page-inner .section-title {
    margin-bottom: 28px;
}

    .blog-details-page-inner .section-title h3 {
        font-weight: 600;
    }

.author-area {
    background: #f2f8fe;
    padding: 40px;
}

    .author-area .media-left img {
        border-radius: 50%;
    }

    .author-area .media-body {
        margin-left: 29px;
    }

        .author-area .media-body p {
            font-size: 15px;
            color: #696969;
            margin-bottom: 0;
        }

    .author-area.style-two {
        padding: 0;
        background: none;
    }

.dalsi-clanky {
    background: #fff;
    margin-top: 20px;
    padding: 15px;
}

.gal-cal-pres {
    position: relative;
    left: 0;
    top: 0;
    display: inline;
}

    .clanky-galerie {
    background: #fff;
    margin-top: 20px;
    padding: 15px;
    border-left: 8px solid #eb3d00;
}

.clanky-galerie-pres-1 {
    position: relative;
    top: 0;
    left: 0;
}

.clanky-galerie-pres-2 {
    position: absolute;
    top: -42px;
    left: 0px;
}

.related-post {
    margin-top: 70px;
}

    .related-post .recent-post-wrap:hover .post-details {
        background-color: white;
        box-shadow: 0px 10px 30px 0px rgba(203, 203, 203, 0.3);
    }

    .related-post .recent-post-wrap .post-details {
        padding: 34px 30px;
        position: relative;
        background: whitesmoke;
        transition: 0.4s;
    }

        .related-post .recent-post-wrap .post-details .meta {
            position: absolute;
            left: 30px;
            top: -68px;
            margin: 0;
        }

            .related-post .recent-post-wrap .post-details .meta span {
                font-size: 14px;
                background-color: #49009b;
                color: #ffffff;
                height: 38px;
                line-height: 40px;
                border-radius: 50px;
                font-weight: 400;
                padding: 0 20px;
            }

                .related-post .recent-post-wrap .post-details .meta span i {
                    margin-right: 10px;
                }

        .related-post .recent-post-wrap .post-details h5 {
            margin-bottom: 14px;
        }

            .related-post .recent-post-wrap .post-details h5 a {
                font-size: 24px;
                font-weight: 600;
            }

        .related-post .recent-post-wrap .post-details a {
            font-size: 18px;
            font-weight: 500;
        }

            .related-post .recent-post-wrap .post-details a:hover {
                color: var(--main-color);
            }

.blog-comment {
    margin-top: 67px;
}

    .blog-comment .media {
        align-items: center;
        margin-bottom: 35px;
    }

        .blog-comment .media a img {
            border-radius: 50%;
        }

        .blog-comment .media.nesting {
            margin-left: 60px;
        }

        .blog-comment .media .media-body {
            margin-left: 30px;
        }

            .blog-comment .media .media-body h5 {
                display: inline-block;
            }

                .blog-comment .media .media-body h5 a {
                    font-size: 18px;
                    font-weight: 700;
                    color: #14212b;
                }

            .blog-comment .media .media-body .date {
                font-size: 13px;
                color: #616161;
                margin-left: 14px;
            }

            .blog-comment .media .media-body p {
                font-size: 15px;
                color: #696969;
            }

            .blog-comment .media .media-body a {
                font-size: 18px;
                font-weight: 500;
                color: #696969;
            }

                .blog-comment .media .media-body a:hover {
                    color: var(--main-color);
                }

.comment-form {
    margin-top: 70px;
}
/*********** ***********/
.single-input-wrap {
    margin-bottom: 30px;
    border: 2px solid #dbdfe5;
}

    .single-input-wrap input {
        height: 60px;
        line-height: 60px;
        padding: 0 22px;
        border: 0;
    }

    .single-input-wrap textarea {
        padding: 18px 22px;
        border: 0;
    }

    .single-input-wrap .input-group-text {
        background: transparent;
        border: 0;
        padding: 0 20px;
    }

    .single-input-wrap.message .input-group-text {
        align-items: normal;
        margin-top: 18px;
    }

    .single-input-wrap .form-control:hover, .single-input-wrap .form-control:active, .single-input-wrap .form-control:focus {
        box-shadow: none !important;
        outline: 0;
    }

/*------------------------------------------------
    ## footer-style
------------------------------------------------*/
.footer-area .widget {
    margin-bottom: 70px;
}

.footer-area .widget-title {
    color: #fff;
    margin-bottom: 27px;
    font-weight: 500;
}

.footer-area .widget_about {
    margin-top: -7px;
}

    .footer-area .widget_about p {
        color: rgba(255, 255, 255, 0.8);
    }

.footer-area .contact_info_list {
    margin: 0;
    padding: 0;
    margin-top: -7px;
}

    .footer-area .contact_info_list li {
        list-style: none;
        color: rgba(255, 255, 255, 0.8);
        padding-left: 28px;
        position: relative;
        margin-bottom: 10px;
    }

        .footer-area .contact_info_list li i {
            position: absolute;
            left: 0;
            top: 7px;
        }

        .footer-area .contact_info_list li:last-child {
            margin-bottom: 0;
        }

.footer-area .widget_recent_post .media .media-body .post-meta-single ul li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-area .widget_recent_post .media .media-body h6 {
    color: rgba(255, 255, 255, 0.8);
}

.footer-area .widget_nav_menu {
    margin: 0 0 25px 0;
    padding: 0;
}

    .footer-area .widget_nav_menu li {
        display: inline-block;
        position: relative;
        padding: 0 15px 0 10px;
        color: rgba(255, 255, 255, 0.7);
    }

        .footer-area .widget_nav_menu li:after {
            content: "|";
            position: absolute;
            right: 0;
            top: 0px;
        }

        .footer-area .widget_nav_menu li:first-child {
            padding-left: 0;
        }

        .footer-area .widget_nav_menu li:last-child {
            padding-right: 0;
        }

            .footer-area .widget_nav_menu li:last-child:after {
                display: none;
            }

.footer-top {
    padding-bottom: 80px;
}

    .footer-top .social-area {
        margin-top: 42px;
    }

    .footer-top .widget_nav_menu {
        margin-top: 33px;
    }

        .footer-top .widget_nav_menu li:after {
            display: none;
        }

.footer-bottom {
    border-top: 0px solid #586a85;
    padding: 25px 0;
}

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 0;
        margin-top: 5px;
    }

.adve1 {
    font-size: 11px;
}

.advetop10 {
    margin-top: -12px;
}

.bolog {
    font-weight: 500;
}


.tb_widget_posts_big .item {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.widget .widget_title {
    background-color: #eee;
    height: 15px;
    line-height: 15px;
    margin-bottom: 15px;
}

    .widget .widget_title h3 {
        font-weight: 400;
        padding-right: 10px;
        font-size: 16px;
        height: 15px;
        line-height: 15px;
        text-transform: uppercase;
        background-color: #fff;
        display: inline-block;
        margin: 0;
    }

.tb_widget_posts_big .item {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

    .tb_widget_posts_big .item .item_content h4 {
        font-size: 14px;
        font-weight: 700;
        line-height: 18px;
        margin: 0 0 4px 0;
    }

span.format {
    margin-right: 5px;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    padding: 1px 4px;
    line-height: 1;
    display: inline;
    white-space: nowrap;
    vertical-align: 1px;
    font-weight: 400;
    background: var(--main-color);
}

.tb_widget_posts_big .item .item_content {
    font-size: 14px;
    line-height: 22px;
}

    .tb_widget_posts_big .item .item_content h4 {
        font-size: 14px;
        font-weight: 700;
        line-height: 18px;
        margin: 0 0 4px 0;
    }

.panel_title {
    margin-bottom: 20px;
}

    .panel_title div {
        background-color: #eee;
        height: 20px;
        line-height: 20px;
        margin-bottom: 5px;
    }

        .panel_title div h4 {
            font-weight: 300;
            letter-spacing: -1px;
            padding-right: 20px;
            font-size: 20px;
            height: 22px;
            line-height: 1;
            text-transform: uppercase;
            background-color: #fff;
            display: inline-block;
            margin: 0;
            margin-top: -4px;
        }

.panel_title_se {
    margin-bottom: 20px;
}

    .panel_title_se div {
        background-color: #ddd;
        height: 20px;
        line-height: 20px;
        margin-bottom: 5px;
    }

        .panel_title_se div h4 {
            font-weight: 300;
            letter-spacing: -1px;
            padding-right: 20px;
            font-size: 20px;
            height: 22px;
            line-height: 1;
            text-transform: uppercase;
            background-color: #eee;
            display: inline-block;
            margin: 0;
            margin-top: -4px;
        }

.panel_title_se_l {
    margin-bottom: 20px;
}

    .panel_title_se_l div {
        background-color: #ddd;
        height: 20px;
        line-height: 20px;
        margin-bottom: 5px;
    }

        .panel_title_se_l div h4 {
            font-weight: 300;
            letter-spacing: -1px;
            padding-right: 20px;
            font-size: 20px;
            height: 22px;
            line-height: 1;
            text-transform: uppercase;
            background-color: #f6f6f6;
            display: inline-block;
            margin: 0;
            margin-top: -4px;
        }

.subtitle {
    font-weight: 400;
    line-height: 16px;
    font-size: 12px;
    color: #999;
    text-align: center;
    text-transform: none;
}


a .subtitle {
    font-weight: 400;
    line-height: 16px;
    font-size: 12px;
    color: #999;
    text-align: center;
    text-transform: none;
}

.ekonomika {
    margin-bottom: 17px;
}

    .ekonomika .media-left {
        position: relative;
    }

    .ekonomika .media .media-left {
        margin-right: 13px;
    }

    .ekonomika .media img {
        border-radius: 5px;
    }

    .ekonomika .media .media-body h6 {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .ekonomika .media .media-body p {
        margin-bottom: 0px;
        color: var(--heading-color);
        font-size: 16px;
        line-height: 20px;
    }

    .ekonomika .media .media-body .post-meta-single ul li {
        color: #fff;
    }


.ekonomika {
    margin-bottom: 30px;
}

    .ekonomika .media .media-left {
        margin-right: 20px;
    }



.rubrika_seznam {
    margin-bottom: 17px;
}

    .rubrika_seznam .media-left {
        position: relative;
    }

    .rubrika_seznam .media .media-left {
        margin-right: 13px;
    }

    .rubrika_seznam .media img {
        border-radius: 5px;
    }

    .rubrika_seznam .media .media-body h6 {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .rubrika_seznam .media .media-body p {
        margin-bottom: 0px;
        color: var(--heading-color);
        font-size: 16px;
        line-height: 20px;
    }

    .rubrika_seznam .media .media-body .post-meta-single ul li {
        color: #fff;
    }


.ekonomika {
    margin-bottom: 30px;
}

    .ekonomika .media .media-left {
        margin-right: 20px;
    }




/*-----------------
    # V článku foto
-----------------*/

.wp-caption {
    border: 1px solid #eee;
    padding: 10px;
    max-width: 100%;
    background: #fff;
}

.alignleft {
    display: inline;
    float: left;
    margin: 5px 20px 10px 0;
}

.wp-caption img {
    margin: 0;
}

.visible {
    opacity: 1;
}

.animated {
    -webkit-animation: fadeIn 2s;
    -moz-animation: fadeIn 2s;
    animation: fadeIn 2s;
}

.wp-caption-text {
    text-align: center;
    color: #999;
    font-size: 12px;
    line-height: 18px;
    margin: 5px 0 0 0;
}


/*-----------------
    # rubriky
-----------------*/

.rubrika {
    position: relative;
    margin-bottom: 30px;
    transition: .4s;
}

    .rubrika.style-overlay .thumb {
        margin-bottom: 0;
    }

    .rubrika .thumb {
        position: relative;
        margin-bottom: 27px;
        overflow: hidden;
        border-radius: 5px;
    }

    .rubrika.style-overlay .thumb:before {
        content: "";
        background: linear-gradient(to top,rgba(32,22,84,0.38) 52%,rgba(0,0,100,0));
        height: 75%;
        left: 0;
        position: absolute;
        bottom: 0;
        border-radius: 5px;
        width: 100%;
        z-index: 4;
        transition: .4s;
        visibility: hidden;
        opacity: 0;
    }

rubrika.style-overlay .thumb img {
    min-height: 119px;
}

rubrika .thumb img {
    transition: .8s;
    transform: scale(1.01);
}

.rubrika .thumb .tag-base {
    position: absolute;
    left: 17px;
    top: 19px;
    z-index: 3;
}

.rubrika.style-overlay .thumb:after {
    content: "";
    background: linear-gradient(to top,rgba(32,22,84,0.6) 52%,rgba(0,0,100,0));
    height: 70%;
    left: 0;
    position: absolute;
    bottom: 0;
    border-radius: 5px;
    width: 100%;
    z-index: 3;
    transition: .4s;
}

.rubrika.style-overlay .details {
    position: absolute;
    bottom: 0;
    padding: 18px 20px;
    z-index: 4;
}

.rubrika.style-overlay .post-meta-single {
    margin-bottom: 8px;
}

    .rubrika.style-overlay .post-meta-single p {
        margin-bottom: 10px;
    }

.rubrika.style-overlay .details p {
    color: #fff;
}

.rubrika .details p {
    margin-bottom: 0;
    margin-top: 16px;
    color: var(--heading-color);
}

.meta-rurika p {
    font-size: 14px;
}

    .meta-rurika p i {
        margin-right: 5px;
    }

.rubrika.style-overlay .details .title {
    color: #fff;
}

.rubrika .details .title {
    margin-bottom: 0;
}





/*-----------------
    # detail čl
-----------------*/

.fright {
    float: right;
}

.cl-foto {
    color: #666;
    font-size: 12px;
    margin: -15px 0 0 0;
}

.cl-autor-foto {
    float: right;
    text-align: right;
}

.oblastclanky {
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin: 10px 0 0 0;
}

.oblastrubrika {
    font-weight: 500;
    text-transform: uppercase;
    color: #201654;
    font-size: 14px;
}


/*-----------------
    # region vyběr
-----------------*/

a.btn_okr, .btn_okr {
    border: none;
    color: #fff;
    background-color: #ddd;
    outline: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding: 10px 10px;
    margin: 5px 5px;
    color: #54555E;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    font-size: 12px;
}

    a.btn_okr:hover, .btn_okr:hover {
        background-color: #eb3d00;
        color: #222 !important;
    }

/*-----------------
    # strankovani
-----------------*/

#PagingRepeater1BottomPager a {
    position: relative;
    display: inline-block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
    cursor: pointer;
    height: 35px;
    width: 35px;
    line-height: 33px;
    padding: 0;
    background: #f3f4f9;
    border-radius: 4px;
    border: 0;
    color: var(--heading-color);
    box-shadow: none;
    background: transparent;
    border: 2px solid #e3e3e3;
}


.currentPage {
    display: inline-block;
    position: relative;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
    cursor: pointer;
    z-index: 1;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    height: 35px;
    width: 35px;
    line-height: 33px;
    padding: 0;
    background: #f3f4f9;
    border-radius: 4px;
    border: 0;
    color: var(--heading-color);
    box-shadow: none;
    background: transparent;
    border: 2px solid #e3e3e3;
    background: var(--main-color);
    color: #fff;
    border: 2px solid var(--main-color);
}


.add {
    text-align: center;
}

.pocasi {
    text-align: center;
}

.textrena {
        color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3380952381;

}


