/*
1. GLOBAL STYLES
   A. General
   B. Line Animation
   C. Pre Loader
   D. Header
   E. Sliding Sidebar
   F. Layout
   G. Footer

2. SLIDER SECTION

3. FEATURES
	A. Tab
	B. Call to action
	C. Blog Item (List)
	D. Blog Item (Grid)
	E. SLD Plugin Template (Overwrite)

4. COMMON PAGE FEATURE
    A. Inner Page Title
    B. Contact form 7 Style
    C. Blog Page
    D. Blog Comments
    E. Homepage Section Title

5. WORDPRESS WIDGET
    A. Widget Common
    B. Widget Menu
    C. Widget Comments
    D. Widget Archives
    E. Widget Category
    F. Widget  Recent Post
    G. Widget Calendar
    H. Widget Tag Cloud
    I. Widget Search

6. START MEDIA QUERY

*/
/******************************************************************************
  1. Global Style
*******************************************************************************/
/****************
1(A) General
*****************/
::-webkit-scrollbar {
    width: 5px;
    background: transparent;
}

body.logged-in .main-header {
    transform: translateY(30px);
}

img {
    max-width: 100%;
    height: auto;
}

p {
    letter-spacing: 0.02em;
}

/****************
1(B) Line Animation
*****************/

.animation-lines {
    position: fixed;
    top: 0;
    font-size: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.animation-line {
    height: 100vh;
    box-shadow: 0 0 0 1px rgba(241, 241, 241, 0.5);
    display: inline-block;
    margin-right: 20%;
    position: relative;
}

.animation-line:nth-child(6) {
    margin-right: 0;
}

@keyframes lineAnimation {
    from {
        top: -50px;
        opacity: 1;
    }
    to {
        top: 100%;
        opacity: 1;
    }
}

.animation-line:after {
    position: absolute;
    content: "";
    opacity: 1;
    width: 3px;
    height: 50px;
    left: 0;
    top: 0;
    animation: lineAnimation 10s alternate infinite;
}

.animation-line:nth-child(2n+0):after {
    animation-delay: 2s;
}

.animation-lines.animation-all {
    display: block;
}

body.home .animation-lines.animation-homepage {
    display: block;
}

/****************
1(C) Header
*****************/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    z-index: 1001;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg); /* IE 9 */
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg); /* IE 9 */
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}

#loader-wrapper .loader-section {
    /*display: none;*/
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #222222;
    z-index: 1000;
    -webkit-transform: translateX(0); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0); /* IE 9 */
    transform: translateX(0); /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-100%); /* IE 9 */
    transform: translateX(-100%); /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(100%); /* IE 9 */
    transform: translateX(100%); /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(-100%); /* IE 9 */
    transform: translateY(-100%); /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

.no-js #loader-wrapper {
    display: none;
}

/****************
1(D) Header
*****************/
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    -webkit-transition: background 0.5s linear;
    -moz-transition: background 0.5s linear;
    -o-transition: background 0.5s linear;
    transition: background 0.5s linear;
}

#main {
    padding-top: 82px;
}

.home #main {
    padding-top: 0;
}

#main > section.page-section:nth-child(odd) {
    background-color: #fff;
}

.sbd-logo {
    display: table;
    padding: 10px;
}

.sbd-theme-nav {
    -webkit-transition: background 0.2s linear;
    transition: background 0.2s linear;
}

.sbd-theme-nav.sbd-theme-dark-nav {
    background-color: #fff;
}

.sbd-theme-dark-nav .logo-light, .sbd-theme-light-nav .logo-dark {
    display: none;
}

.sbd-theme-dark-nav .logo-dark, .sbd-theme-light-nav .logo-light {
    display: block;
}

.sbd-theme-main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sbd-theme-main-menu ul li {
    position: relative;
}

.sbd-theme-main-menu ul > li {
    display: inline-block;
    vertical-align: middle;
}

.sbd-theme-main-menu ul > li.menu-item-has-children > a:after {
    content: "\f107";
    font: normal 14px/1 FontAwesome;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -8px;
}

.sbd-theme-main-menu ul > li:after {
    content: "";
    display: table;
    height: 3px;
    width: 0px;
    bottom: -1px;
    margin: 0 auto;
    transition: 0.5s;
    transform: translateY(-2px);
}

.sbd-theme-main-menu ul > li:hover:after {
    width: 100%;
}

.sbd-theme-main-menu ul {
    text-align: right;
}

.sbd-theme-main-menu ul > li > a {
    display: block;
    padding: 29px 25px;
    overflow: hidden;
}

.sbd-theme-main-menu ul > li ul.sub-menu li {
    display: block;
}

.sbd-theme-main-menu ul > li > ul > li a {
    display: block;
    padding: 15px 25px;
}

.sbd-theme-main-menu ul > li ul {
    position: absolute;
    background: #ffffff;
    width: 200px;
    left: 0;
    text-align: left;
    visibility: hidden;
    transition: transform 0.5s;
    transform: translateY(10px);
}

.sbd-theme-main-menu ul li:hover > ul {
    visibility: visible;
    transform: translateY(0px);
}

.sbd-theme-main-menu ul > li:last-child ul {
    right: 0;
    left: initial !important;
}

.sbd-theme-main-menu ul > li ul.sub-menu ul {
    top: 0;
    right: 100%;
    left: auto;
}

.sliding-sidebar-open a span {
    width: 30px;
    position: relative;
    height: 1px;
    display: block;
    margin: 12px 0;
}

.sliding-sidebar-open a span:before, .sliding-sidebar-open a span:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    left: 0;
    right: 0;
}

.sliding-sidebar-open a span:before {
    top: -10px;
}

.sliding-sidebar-open a span:after {
    bottom: -10px;
}

/****************
1(E) Sliding Sidebar
*****************/
.sliding-sidebar {
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9999999;
    width: 350px;
    top: 0;
    right: -350px;
    bottom: 0;
    background-color: #ffffff;
    -webkit-transition: all 0.3s linear; /* Safari 3.2+, Chrome */
    -moz-transition: all 0.3s linear; /* Firefox 4-15 */
    -o-transition: all 0.3s linear; /* Opera 10.5-12.00 */
    transition: all 0.3s linear; /* Firefox 16+, Opera 12.50+ */
}

.sliding-sidebar:before, .sliding-sidebar:after {
    width: 300px;
    height: 300px;
    content: "";
    position: absolute;
    background-color: rgba(241, 241, 241, 0.63);
    border-radius: 50%;
    z-index: -1;
}

.sliding-sidebar:before {
    right: -150px;
    top: -2px;
}

.sliding-sidebar:after {
    right: 39px;
    top: 145px;

}

.sliding-sidebar-inner {
    padding: 30px;
}

.sliding-sidebar-close {
    width: 30px;
    height: 30px;
    position: absolute;
    cursor: pointer;
    right: 10px;
    top: 37px;
}

.sliding-sidebar-close:before, .sliding-sidebar-close:after {
    position: absolute;
    top: 10px;
    height: 3px;
    background: #999;
    width: 100%;
    content: "";
}

.sliding-sidebar-close:before {
    transform: rotate(45deg);
}

.sliding-sidebar-close:after {
    transform: rotate(-45deg);
}

.sliding-sidebar.sliding-sidebar-active {
    right: 0;
    box-shadow: 0 0px 39px 10px rgba(0, 0, 0, 0.2);
}

/****************
1(F) Layout
*****************/

.page-section {
    padding: 75px 0;
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.btn {
    border-radius: 10px;
    padding: 8px 25px;
    -webkit-transition: all 0.5s linear; /* Safari 3.2+, Chrome */
    -moz-transition: all 0.5s linear; /* Firefox 4-15 */
    -o-transition: all 0.5s linear; /* Opera 10.5-12.00 */
    transition: all 0.5s linear; /* Firefox 16+, Opera 12.50+ */
}

/****************
1(G) Footer
*****************/

.copyright {
    background: url("../images/footer-bg.png") repeat-x bottom;
    padding: 30px 0 60px;

}

@keyframes copyrightAnim {
    from {
        transform: translateX(0px);
    }
    to {
        transform: translateX(100px);
    }
}

.copy-right-txt-area {
    animation: copyrightAnim 4s infinite alternate;
}

.copy-right-txt-area:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.copy-right-txt-area span {
    vertical-align: middle;
}

.copy-right-txt-area .copyright-text {
    opacity: 0;
    -webkit-transition: all 1s linear; /* Safari 3.2+, Chrome */
    -moz-transition: all 1s linear; /* Firefox 4-15 */
    -o-transition: all 1s linear; /* Opera 10.5-12.00 */
    transition: all 1s linear; /* Firefox 16+, Opera 12.50+ */
}

.copy-right-txt-area:hover .copyright-text {
    opacity: 1;

}

.copy-right-txt-area .copyright-icon {
    font-size: 80px;
    cursor: pointer;
    line-height: 0;
}

/******************************************************************************
  2. Slider Style
*******************************************************************************/
.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
}

.slider:before, .slider:after {
    content: "";
    width: 900px;
    height: 900px;
    bottom: 0;
    border-radius: 50%;
    position: absolute;
}

.slider:before {
    left: 0;
    margin-left: -400px;
    margin-bottom: -200px;
    opacity: 0.8;
}

.slider:after {
    right: 0;
    margin-right: -600px;
    margin-bottom: -100px;
    opacity: 0.8;
}

.slider-overly {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
}

.slider-overly-inner {
    box-sizing: border-box;
    padding: 100px;
    display: table;
    width: 100%;
    height: 100%;
}

.slider-text-area {
    display: table-cell;
    vertical-align: middle;
}

.slider-title h1 {
    font-size: 60px;
    margin-bottom: 40px;
}

.slider-title h3 {
    font-weight: normal;
}

.hot-link {
    margin: 50px 0;
    display: block;
    padding: 30px 50px;
    border-radius: 50px;
    font-size: 20px;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;

}

.hot-link:hover {
    transform: translateX(-33px);
    background-position: 100%, 100%;
    letter-spacing: 3px;
    color: inherit;
}

/******************************************************************************
  3. Features
*******************************************************************************/
/****************
3(A) Tab
*****************/
.featured-block {
    margin-bottom: 30px;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #dadada;
}

.featured-block-img {
    background: #f5f6f7;
    color: #fff;
}

.featured-block-img .list-img {
    text-align: center;
    display: block;
    color: #464646;
    transition: 0.2s;
    padding: 15px;
}

.featured-block-img .list-img i.fa {
    font-size: 50px;
}

.featured-block-info {
    padding: 15px;
}

.featured-block-info h4 {
    margin: 2px 0 8px;
    font-weight: normal !important;
}

.featured-block-info h4 a {
    color: inherit;
}

.featured-block-info p {
    font-size: 13px;
}

.featured-block-info ul {
    padding: 0;
    margin: 0;
}

.featured-block-info ul li {
    display: block;
    list-style: none;
    position: relative;
    padding: 5px 0 5px 24px;
}

.featured-block-info ul li:before {
    display: inline-block;
    font-family: FontAwesome;
    font-size: 18px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    left: 0;
}

.featured-block-info ul li:first-child:before {
    content: "\f041";
}

.featured-block-info ul li:last-child:before {
    content: "\f2a0";
    transform: rotate(-45deg);
}

.featured-block-upvote {
    position: absolute;
    bottom: 4px;
    right: 6px;
    min-width: 40px;
    height: 20px;
    padding: 2px 10px;
    background-color: #cecece;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    font-size: 10px;
    line-height: 14px;
}

/*Grid*/
.grid-item {
    width: 25%;
    box-sizing: border-box;
    padding: 5px;
}

.grid-item--width2 {
    width: 50%;
}

.grid-featured-item {
}

.grid-featured-block {
    background-color: #fff;
    padding: 2px;
    border: 1px solid #e4e0e0;
    position: relative;
}

.grid-featured-block-img {
    text-align: center;
    transition: 0.5s;
    overflow: hidden;
}

.grid-featured-block-img img {
    transition: 0.2s;
}

.grid-featured-block.grid-featured-overly:hover .grid-featured-block-img img {
    transform: scale(1.3);
}

.grid-featured-overly .grid-featured-block-info {
    display: none;
    position: absolute;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.7);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    color: #ffffff;

    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-align: center;
}

.grid-featured-overly:hover .grid-featured-block-info {
    display: flex;
}

.grid-featured-block-info a {
    color: inherit;
    text-align: center;
}

/*Slider item*/
#popular-area {
    padding: 20px 0;
    position: relative;
}

.featured-slide-item {
    display: inline-block;
    position: relative;
    background-color: #0A246A;
    margin: 0px 5px;
}

.featured-slide-info {
    position: absolute;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.3);
    left: 0;
    right: 0;
    bottom: 0;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-align: center;

}

.featured-slide-info h4 {
    font-size: 16px;
    white-space: nowrap;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 35px;
    margin: 0;
}

.featured-slide-info h4 a {
    color: inherit;
}

.sbd-featured-item .slick-prev::before, .sbd-featured-item .slick-next::before {
    font-family: FontAwesome;
    font-size: 62px;
}

.sbd-featured-item .slick-prev::before {
    content: "\f104";
}

.sbd-featured-item .slick-next::before {

    content: "\f105";
}

button.slick-arrow {
    position: absolute;
    z-index: 99999;
    width: 40px;
    height: 40px;
    transition: 0.5s;
    opacity: 0;
    top: 50%;
    margin-top: -10px;
}

.sbd-featured-item .slick-next {
    right: 0px;
}

.sbd-featured-item .slick-prev {
    left: 0px;
}

.sbd-featured-item:hover button.slick-arrow.slick-next {
    right: 10px;
    opacity: 1;
}

.sbd-featured-item:hover button.slick-arrow.slick-prev {
    left: 10px;
    opacity: 1;
}

/*SBD List Category */
.qc-sbd-list-category-item {
    width: 33.33%;
    box-sizing: border-box;
    padding: 2px;
    background-color: #fff;
    visibility: hidden;
}

.qc-sbd-list-category-item-double {
    width: 66.66%;
}

.qc-sbd-list-category-item-inner {
    position: relative;
}

.qc-sbd-list-category-item-overly {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0));
    box-sizing: border-box;
    padding: 20px;
    transition: 1s;
}

.qc-sbd-list-category-item-overly:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.20));
}

.qc-sbd-list-category-item-overly h4 {
    color: #ffffff;
}

.qc-sbd-list-category-total-posts-item, .qc-sbd-list-category-total-lists-item {
    position: absolute;
    background-color: #000000;
    width: 80px;
    color: #ffffff;
    bottom: 30px;
    border-radius: 30px;
    text-align: center;
    padding: 3px;
}

.qc-sbd-list-category-total-posts-item {
    left: 30px;
}

.qc-sbd-list-category-total-lists-item {
    right: 30px;
}

/****************
3(B) Call to action
*****************/

.action-section {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding: 30px 0;
    font-size: 16px;
}

.socials-nav {
    padding: 5px 0;
}

.socials-nav span, .socials-nav ul {
    display: inline-block;
}

.socials-nav ul {
    margin: 0;
    padding: 0;
}

.socials-nav ul li {
    list-style: none;
    display: inline-block;
    margin-left: 10px;
}

.socials-nav ul li a {
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid #cccccc;
    text-align: center;
    line-height: 30px;
    border-radius: 2px;
}

.socials-nav ul li a:hover {
    background-color: #cccccc;
}

.hot-nav {
    text-align: right;
}

.hot-nav span {
    display: inline-block;
    margin-right: 10px;
}

/****************
3(C) Blog Item (List)
*****************/

.post-list-item {
    padding-bottom: 30px;
}

.post-list-info, .post-list-thumbnail {
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
}

.post-list-info {
    width: 60%;
    padding: 30px 30px 0 0;
}

.post-list-info h3 {
    line-height: 150%;
}

.post-list-info h3 a {
    color: inherit;
}

.post-list-info p {
    padding-bottom: 20px;
}

.post-list-thumbnail {
    width: 40%;
    margin-left: -6px;
}

.post-list-thumbnail-inner {
    max-width: 360px;
    position: relative;
    margin-left: 30px;
    margin-top: 30px;
    -webkit-transition: all 0.5s linear; /* Safari 3.2+, Chrome */
    -moz-transition: all 0.5s linear; /* Firefox 4-15 */
    -o-transition: all 0.5s linear; /* Opera 10.5-12.00 */
    transition: all 0.5s linear; /* Firefox 16+, Opera 12.50+ */
}

.post-thumbnail-inner, .post-thumbnail-inner a {
    position: relative;
}

.post-thumbnail-inner img {
    transition: transform 0.2s linear;
    border: 8px solid #ffffff;
    box-shadow: 0px 0px 3px #8a8a8a;
    transform-style: preserve-3d;
}

.post-thumbnail-inner img:nth-child(1) {
    transform: rotate(-30deg) translateZ(-1em);
    position: absolute;
    opacity: 0.1;

}

.post-thumbnail-inner img:nth-child(2) {
    transform: rotate(-15deg) translateZ(-1em);
    position: absolute;

    opacity: 0.2;
}

.post-thumbnail-inner:hover img {
    transform: rotate(0deg);
}

/****************
3(D) Blog Item (Grid)
*****************/
.post-grid-item {
    text-align: center;
    margin-bottom: 50px;
}

.post-grid-thumbnail {
    margin: 0 auto;
    display: table;
    position: relative;
}

.post-grid-item h3 {
    margin-top: 10px;
}

/****************
3(E) Custom Link Style
*****************/
.qcld_sbd_category_list {
}

.qcld_sbd_category_list ul {
}

.qcld_sbd_category_list ul li {
    list-style: none;
}

.sbd-main-content-area .panel-subtitle {
    align-items: center;
    bottom: -53px;
    display: flex;
    position: relative;
}

.qc-sbd-content p, .qc-sbd-content .sub-title {
    overflow-y: auto;
    max-height: 80px;
    /*text-align: justify;*/
}

.sbd-main-content-area:hover .qc-sbd-content p::-webkit-scrollbar-thumb, .qc-feature-container li:hover .sub-title::-webkit-scrollbar-thumb {
    background: #cccccc;
}

.sbd-main-content-area .feature-image img {
    width: auto;
    transition: 0.5s;
}

.sbd-main-content-area:hover .feature-image img {
    transform: scale(1.3) rotate(-40deg);
}

.sbd-main-content-area .feature-image {
    display: flex;
    justify-content: center;
    width: 120px;
    height: 120px;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    position: relative;

}

.sbd-main-content-area .feature-image:before, .sbd-main-content-area .feature-image:after {
    content: "";
    position: absolute;
    z-index: 999;
    width: 50%;
    top: 0;
    bottom: 0;
    transition: 0.3s;
}

.sbd-main-content-area .feature-image:after {
    right: 0;
}

.sbd-main-content-area .feature-image:before {
    left: 0;
}

.sbd-main-content-area:hover .feature-image:after {
    right: -50%;
}

.sbd-main-content-area:hover .feature-image:before {
    left: -50%;
}

.sbd-top-area.sbd-border-bottom, .filter-area {
    background: none !important;
}

.button-link {
    background-color: #fff !important;
}

.style-15-multipage .qc-sbd-main {
    padding-bottom: 15px;
}

.sbd_single_related_content h2 {
    font-size: 26px;
}

.main-title > h2 {
    color: inherit !important;
}

.sbd-main-content-area .sbd-hover-content a {
    border-bottom: none !important;
    font-size: 16px !important;
}

.pd_single_breadcrumb {
    display: none;
}

.sbd_total_items {
    position: absolute;
    background: #333;
    color: #fff;
    bottom: 13px;
    right: 13px;
    padding: 6px;
    line-height: 14px;
    font-size: 12px;
    border-radius: 10px;
}

.sbd_total_lists {
    position: absolute;
    background: #333;
    color: #fff;
    bottom: 13px;
    left: 13px;
    padding: 6px;
    line-height: 14px;
    font-size: 12px;
    border-radius: 10px;
}

.qc-sbd-single-item-11 .qc-sbd-content h4 {
    margin-top: 0;
}

.qc-sbd-main {
    background-color: #f9fcff !important;
}

.bottom-area-icon p {
    margin: 0;
    padding: 0;
}

.pd_single_content_multipage .pd_resource_action {
    margin-bottom: 25px;
}

/****************
4(A)Inner Page Title
*****************/
.innerpage-content {
    background-color: #fff;
}

.inner-page-title, .inner-page-author {
    background-color: rgba(220, 219, 219, 0.3);
    padding: 25px 0;
}

.inner-page-title .page-title h1 {
    font-size: 18px;
    margin: 0;
    padding: 0;
}

.sbd-breadcrumbs {
    margin: 0;
    font-size: 12px;
    text-align: right;
}

.sbd-breadcrumbs li {
    list-style: none;
    display: inline-block;
    padding: 0 5px;
    float: right;
}

.author-area {
    position: relative;
    padding-left: 70px;
}

.author-img {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    left: 0;
    top: 50%;
    margin-top: -25px;
}

.author-bio h5 {
    margin: 0;
    padding: 0;
}

.author-bio p {
    margin: 0;
    padding: 0;
    font-size: 12px;
}

.entry-content > h1:first-child, .entry-content > h2:first-child,
.entry-content > h3:first-child, .entry-content > h4:first-child,
.entry-content > h5:first-child {
    margin-top: 0;
}

header h1.page-title {
    margin-top: 0;
}

/****************
4(B)Contact form 7 Style
*****************/

.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 textarea {
    display: block;
    width: 100%;
    padding: 0 1.78571em;
    border: 1px solid #e9e9e9;
    border-radius: 3px;
    font-size: .92857em;
    letter-spacing: 0.025em;
    color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    line-height: 48px;
}

.wpcf7 input[type="text"]:focus, .wpcf7 input[type="email"]:focus, .wpcf7 input[type="tel"]:focus, .wpcf7 textarea:focus {
    outline: none;
    border-color: #c0c0c0;
}

.wpcf7 input[type="submit"] {
    display: table;
    width: 50%;
    padding: 5px 20px;
    border: none;
    color: #ffffff;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=8, Direction=180, Color=#a2a2a2)"; /*IE 8*/
    -moz-box-shadow: 0px 5px 8px #a2a2a2; /*FF 3.5+*/
    -webkit-box-shadow: 0px 5px 8px #a2a2a2; /*Saf3-4, Chrome, iOS 4.0.2-4.2, Android 2.3+*/
    box-shadow: 0px 5px 8px #a2a2a2; /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=8, Direction=180, Color=#a2a2a2); /*IE 5.5-7*/

}

/****************
4(C)Blog Page
*****************/
.entry-header h1 {
    margin-top: 0;
}

article.post {
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

.sbd-post-meta-data {
    /*border-bottom: 1px solid #cccccc;*/
    margin-bottom: 25px;
}

.sbd-post-meta-data .byline:before {
    content: "\f007";
    font: normal 14px/1 FontAwesome;
    margin: 0 8px;
}

.sbd-post-meta-data .posted-on:before {
    content: "\f017";
    font: normal 14px/1 FontAwesome;
    margin-right: 8px;
}

.sbd-post-meta-data .posted-on .updated {
    display: none;
}

.site-main article:first-child {
    padding-top: 0;
}

.site-main article:first-child h3 {
    margin-top: 0;
}

.site-main article h3 a {
    color: inherit;
}

article.post .blog-post-list-info, article.post .blog-post-list-thumbnail {
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
}

.blog-post-list-info {
    width: 60%;
    padding-right: 30px;
}

.blog-post-list-info h3 {
    font-family: 'Avenir LT Std', sans-serif;
    line-height: 150%;
    font-size: 24px;
    margin-top: 0;
}

.blog-post-list-info p {
    /*padding: 10px 0;*/
    /*font-size: 14px;*/
}

.blog-post-list-thumbnail {
    width: 40%;
    margin-left: -6px;
}

.blog-post-list-thumbnail-inner {
    max-width: 360px;
    position: relative;
    -webkit-transition: all 0.5s linear; /* Safari 3.2+, Chrome */
    -moz-transition: all 0.5s linear; /* Firefox 4-15 */
    -o-transition: all 0.5s linear; /* Opera 10.5-12.00 */
    transition: all 0.5s linear; /* Firefox 16+, Opera 12.50+ */
}

.pagination-wrapper {
    text-align: center;
}

.full-blog-image {
    margin-bottom: 30px;
}

/****************
4(D)Blog Comments
*****************/
.bypostauthor {
    display: block;
}

.comments-area ol li {
    list-style: none;
    position: relative;
}

.comments-area .comment-meta .comment-author {
    line-height: 20px;
}

.comments-area .comment-meta .comment-author .fn {
    text-transform: uppercase;
    font-size: 14px;
}

.comments-area .comment-meta .comment-author .avatar {
    position: absolute;
    left: -60px;
}

.comments-area .comment-metadata {
    font-size: 12px;
}

.comment-respond .comment-form input, .comment-respond .comment-form textarea {
    display: block;
    width: 100%;
    padding: 0 1.78571em;
    border: 1px solid #e9e9e9;
    border-radius: 3px;
    font-size: .92857em;
    letter-spacing: 0.025em;
    color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.comment-respond .comment-form input {
    height: 50px;
    line-height: 48px;
}

.comment-respond .comment-form input[type="checkbox"] {
    height: 16px;
    width: 16px;
    line-height: normal;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.comment-respond .comment-form input:focus, .comment-respond .comment-form textarea:focus {
    outline: none;
    border-color: #c0c0c0;
}

.comment-respond .comment-form input[type=submit] {
    color: #ffffff;
}

/****************
 4 (E) Homepage Section Title
*****************/
.section-title {
    display: table;
    margin: 0 auto 50px;
    text-align: center;
    border-bottom: 1px solid #cccccc;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    right: 50%;
    margin-right: -25px;
    width: 50px;
    height: 3px;
}

.section-title h2 {
    font-size: 40px;
    margin-top: 0;
}

/****************
5(A) Widget Common
*****************/
.widget {
    margin-bottom: 30px;
}

.widget .widget-title, h4.comments-title, h3.comment-reply-title {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.widget .widget-title::after, h4.comments-title::after, h3.comment-reply-title::after {
    display: block;
    content: '';
    margin-top: 5px;
    width: 15%;
    height: 1px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget:hover .widget-title::after {
    width: 20%;
}

/****************
1(B) Widget Menu
*****************/
.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget ul li {
    border-bottom: solid 1px #eee;
}

.widget ul a {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-weight: normal;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    font-size: 16px;
    display: inline-block;
}

.widget ul a:hover {
    /*color: #ff5555;*/
    padding-left: 10px;
}

/****************
1(C) Widget Menu
*****************/
.widget ul.menu li > ul {
    padding-left: 20px;
}

/****************
1(D) Widget Comments
*****************/
.comments {
    position: relative;
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.comments .image {
    overflow: hidden;
}

.comments .image img {
    max-width: 60px;
}

.comments .author {
    margin-bottom: 10px;
}

.comments .date {
    display: block;
    margin-bottom: 10px;
}

.comments .text {
    margin-bottom: 10px;
}

.comments li {
    margin-bottom: 30px;
}

.comments ul {
    padding-left: 70px;
}

.send-comment textarea {
    min-height: 150px;
    resize: vertical;
}

h4.author a,
.comments .date a {
    color: #333;
}

.comment-wrp {
    position: relative;
}

.reply {
    position: absolute;
    right: 0px;
    top: 0px;
}

h3.comment-reply-title {
    font-size: 16px;
    display: inline-block;
}

#form-submit .btn-default {
    background: none;
}

/****************
1(D) Widget Archives
*****************/
.widget_archive a {
    padding-right: 5px;
}

/****************
1(E) Widget Category
*****************/

.widget_categories ul li a {
    padding-right: 5px;
}

/****************
1(F) Widget  Recent Post
*****************/

.widget_recent_entries span {
    display: block;
    margin-bottom: 6px;
    line-height: 17px;
    font-size: 13px;
}

/****************
1(G) Widget Calendar
*****************/
.widget.widget_calendar {
    width: 100%;
}

.widget.widget_calendar caption {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.widget.widget_calendar table {
    position: relative;
    width: 100%;
    border-collapse: collapse;
}

.widget.widget_calendar thead th {
    padding: 2px 2px 10px 2px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.widget.widget_calendar table tbody td {
    text-align: center;
    cursor: pointer;
    font-size: 13px;
}

.widget.widget_calendar table tbody tr td {
    padding: 2px;
}

.widget.widget_calendar tfoot #next {
    position: relative;
    z-index: 2;
    text-align: right;
}

.widget.widget_calendar tfoot #prev {
    position: relative;
    z-index: 2;
    padding-top: 10px;
}

/****************
1(H) Widget Tag Cloud
*****************/

.widget.widget_tag_cloud .tagcloud {
    position: relative;
    display: inline-block;
}

.widget.widget_tag_cloud a, .post-tags a {
    position: relative;
    display: inline-block;
    float: left;
    cursor: pointer;
    margin: 8px 6px 0 0;
    padding: 0 12px !important;
    font-size: 13px !important;
    line-height: 28px !important;
    border: 1px solid #dadada;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;
    text-transform: capitalize;
    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

/****************
1(I) Widget Search
*****************/

.search-form input[type='search'] {
    width: 185px;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    font-size: 15px;
    font-weight: normal;
    background-color: #fff;
    border: 1px solid #ddd;
    outline: none;
    color: #333;
}

.search-form input[type='submit'] {
    width: 70px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    border: none;
    color: #fff;
    white-space: nowrap;
    vertical-align: top;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    height: 40px;
    line-height: 40px;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
}

/*************
Plugin CSS Overwrite
************/
.pd-main-content-area .pd-hover-content a {
    font-size: 14px !important;

}

body.page-template-template-home-v6 .sbd_maponly_top_part {
    top: 90px;
}

body.page-template-template-home-v6 .sbd-logo {
    margin: 0 auto;
}

body.page-template-template-home-v6 .main-header {
    left: 30%;
    right: 30%;
    z-index: 99999;
}

.map-sliding-sidebar-trigger {
    position: absolute;
    right: 0;
    top: 90px;
    z-index: 99999;
}

.map-sliding-sidebar-trigger button {
    border: none;
    background: #28b8db;
    font-size: 25px;
    color: #ffffff;
    padding: 7px;
    text-transform: uppercase;

}

.map-sliding-sidebar-trigger button:hover {
    background: #2195b3;
}

/*************
Start media query
************/
@media screen and (max-width: 1600px) {
    .slider:before, .slider:after {
        z-index: -1;
    }
}

@media screen and (max-width: 1100px) {
    .hot-link {
        padding: 10px 20px;
    }

    .slider-title h1 {
        font-size: 50px;
        margin-bottom: 40px;
    }

    .slider-overly-inner {
        padding: 0;
    }
}

@media only screen and (max-width: 801px) {
    .column-grid3 {
        width: 50%;
    }

    .column-grid4 {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {

    .mobile-menu-trigger {
        display: table;
        float: right;
        margin: 10px;
        cursor: pointer;
        font-size: 30px;
        text-align: center;
        line-height: 15px;
        padding: 10px;
        border: 2px solid #cccccc;
    }

    body.mobile-menu-loaded .mobile-menu-trigger {
        transform: rotate(90deg);
    }

    .sbd-theme-main-menu li.sliding-sidebar-open {
        display: none;
    }

    .sbd-theme-main-menu ul {
        background-color: #fff;
        display: none;
    }

    .sbd-theme-main-menu ul li {
        display: block;
    }

    .sbd-theme-main-menu ul li a {
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid #cccccc;
        display: block;
        color: #0b0b0b;
    }

    .sbd-theme-main-menu ul li ul {
        position: relative;
        width: 100%;
        display: none !important;
        left: 0 !important;
        right: 0 !important;
    }

    .sbd-theme-main-menu ul li:hover > ul {
        display: block !important;
    }

    .sbd-theme-main-menu ul li.menu-item-has-children > a {
        pointer-events: none;
        cursor: default;
    }

    .sbd-theme-main-menu ul li.menu-item-has-children > a:after {
        content: "+";
        position: absolute;
        width: 30px;
        height: 30px;
        right: 10px;
        font-size: 30px;
        line-height: 16px;
        cursor: pointer;
    }

    .sbd-theme-main-menu ul li.menu-item-has-children:hover > a:after {
        content: "-";
    }

    ul.tablist {
        padding: 10px 20px;
    }

    .copyright {
        overflow-x: hidden;
    }

    .navbar-inverse .navbar-collapse {
        background: #6f14f1;
    }
}

@media only screen and (max-width: 640px) {
    .column-grid3 {
        width: 100%;
    }

    .column-grid4 {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .post-list-info {
        padding: 0 30px;
        width: 100%;
    }

    .post-list-thumbnail {
        width: 100%;
        max-width: 380px;
        display: none;
    }

}