body {
    font-family: 'Playfair Display', 'Trebuchet MS', 'Arial', 'Open Sans', 'Nunito Sans', sans-serif;
    font-size: 16px;
    overflow-x: hidden !important;
    color: #2b2b2b;
    line-height: 1.42857143;
}

.iconfont {
    font-size: 14px;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

img {
    width: 100%;
}

.fix {
    zoom: 1;
    clear: both;
}

.fix:before,
.fix:after {
    display: table;
    clear: both;
    content: '';
}

a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: 0;
    color: #2b2b2b;
}

a:hover {
    color: #f07b3f;
}

.wrap {
    width: 1170px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.header-top {
    padding: 12px 0;
    background-color: #f0f2f5;
}

.header-top-links {
    float: right;
}

.header-top-links ul li {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    margin-left: 30px;
    line-height: 35px;
}

.header-top-links ul li a {
    color: #878787;
}

.header-top-links ul li a:hover {
    color: #f07b3f;
}

.header-top-social {
    float: left;
    width: 33%;
}

.header-top-social a {
    margin-right: 15px;
    display: inline-block;
    line-height: 35px;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
}

.header-top-logo {
    text-align: center;
    font-size: 30px;
}

.header-top-logo a {
    display: block;
    line-height: 35px;
}

.logo {
    display: none;
    float: left;
    font-size: 30px;
    padding: 20px 0;
}

.logo a {
    color: #000;
    display: inline-block;

}



#navBar ul li {
    float: left;
}

#navBar ul li>a {
    font-size: 14px;
    color: #525252;
    display: block;
    padding: 30px 15px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#navBar ul li:first-child>a {
    padding-left: 0;
}

#navBar ul li.active>a {
    color: #2b2b2b;
    letter-spacing: .4px;
    cursor: pointer;
}


#navBar ul li>a:hover {
    color: #f07b3f;
}

#header .header-bottom {
    position: absolute;
    width: 100%;
    left: 0;
    top: 59px;
    z-index: 10;
}

#header.fixed .header-bottom {
    position: fixed;
    top: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    z-index: 100;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}


@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}


.mobile_key {
    display: none;
}

.hot-news-title {
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 24px;
}

.hot-news-title a {
    color: #152535;
}

#footer {
    padding: 20px 0;
}

.footer-top .wrap {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ced0d4;
}


.footer-share span {
    font-size: 18px;
    font-weight: bold;
    margin-right: 20px;
}

.footer-share a {
    margin-right: 5px;
    display: inline-block;
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #f0f2f5;
}

.footer-share a:hover {
    background-color: #f07b3f;
    color: #fff;
}

.footer-bottom {
    margin-top: 25px;
}

.footer-bottom a {
    color: #878787;
    margin-right: 20px;
}

.footer-bottom a:hover {
    color: #f07b3f
}

.footer-logo {
    float: left;
}

.footer-logo a {
    font-size: 28px;
    font-weight: 600;
    display: block;
    color: #000;
    line-height: 1;
}


.l {
    float: left;
}

.r {
    float: right;
}

.hover-flip-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.hover-flip-item span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: transparent;
    -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: -o-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item span:after,
.hover-flip-item span:before {
    content: attr(data-text);
    display: block;
    position: absolute;
    color: #878787;
}

.hover-flip-item span::after {
    color: #f07b3f;
}

.hover-flip-item span:before {
    top: 0;
    -webkit-transform: skewY(0);
    -ms-transform: skewY(0);
    transform: skewY(0);
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transition: -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: -o-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-flip-item-wrapper:hover .hover-flip-item span {
    -webkit-transform: translateY(-105%);
    -ms-transform: translateY(-105%);
    transform: translateY(-105%);
}

.content-left {
    float: left;
    width: 65%;
    box-sizing: border-box;
}

.content-right {
    float: right;
    width: 31%;
    box-sizing: border-box;
}

.blog-news-single {
    transition: .5s ease;
    position: relative;
    margin-bottom: 30px;
}

.blog-news-single .blog-news-img {
    position: relative;
    font-size: 0;
}

.blog-news-single .blog-news-img a {
    display: block;
}

.blog-news-single .blog-news-title h2 {
    color: #2b2b2b;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: .3px;
}

.blog-news-single .blog-news-title h2 a {
    color: #2b2b2b;
    background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor));
    background-image: -webkit-linear-gradient(left, currentColor 0, currentColor 100%);
    background-image: -o-linear-gradient(left, currentColor 0, currentColor 100%);
    background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
    background-size: 0 2px;
    background-position: 0 95%;
    -webkit-transition: background-size .25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    -o-transition: background-size .25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    transition: background-size .25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    padding: .1% 0;
    background-repeat: no-repeat;
}

.blog-news-single:hover .blog-news-title h2 a {
    background-size: 100% 2px;
}

.blog-news-single:hover .blog-news-title {
    box-shadow: 0 4px 10px rgba(37, 47, 63, 0.1);
}

.blog-tool {
    margin-top: 46px;
}

.blog-tool .share {
    margin-top: 20px;
}

.blog-tool .share i {
    color: #666;
    margin-right: 3px;
}

.blog-tool .hover-flip-item span::before {
    color: #000;
}

.time {
    font-size: 12px;
    color: #666;
}

.time span {
    position: relative;
    margin-right: 10px;
}

.time span::after {
    right: -10px;
    position: absolute;
    background: #666;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
}

.time span:last-child::after {
    display: none;
}


.search-widget h2 {
    text-align: center;
    color: #fff;
    font-weight: 600;
}

.widget-form {
    position: relative
}

.search-widget form input {
    width: 100%;
    height: 38px;
    background-color: #f0f2f5;
    color: #656565;
    border: none;
    padding: 0 35px;
    box-sizing: border-box;
    outline: none;
    border-radius: 30px;
}

.search-widget form button {
    position: absolute;
    height: 40px;
    font-size: 16px;
    border: none;
    left: 10px;
    background-color: transparent;

}

.search-widget form button:hover,
.search-widget form button:focus {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    opacity: 0.8;
}

.sidebar-widget {
    margin-bottom: 30px;
    background: #FBFBFD;
    padding: 30px;
    border-radius: 10px;
}

.widget-title {
    font-weight: bold;
    font-size: 22px;
    border-bottom: 1px solid #ced0d4;
    padding-bottom: 7px;
    margin-bottom: 20px;
    text-align: center;
}


.widget-catg li i {
    color: #f07b3f
}

.blog-archive-area {
    padding: 50px 0;
}

.single-blog-post-details {
    margin-bottom: 50px;
    border-radius: 3px;
    background-color: #fff;
}

.blog-title h2 {
    font-size: 20px;
    color: #152535;
    line-height: 1.2;
    position: relative;
    margin-bottom: 20px;
}

.single-blog-post-details h2 {
    color: #152535;
    font-size: 20px;
    line-height: 1.2;
    position: relative;
    margin-bottom: 20px;
    ;
}

.detail .single-blog-post-details h2 {
    margin-bottom: 40px;
    font-weight: normal;
    font-size: 22px;
}


.single-blog-post-details .post-data {
    margin: 0 0 20px;
    display: inline-block;
}

.single-blog-post-details .post-data a:hover {
    color: #f07b3f;
}

.single-blog-post-content .img {
    margin-bottom: 20px;
}

.single-blog-post-content .tit {
    font-size: 20px;
    color: #152535;
    margin-bottom: 10px;
}

.add-post-btn {
    display: inline-block;
    min-width: 150px;
    height: 45px;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 45px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    background-color: #f07b3f;
    border: 1px solid #f07b3f;
    transition: .5s ease;
    cursor: pointer;
}

.add-post-btn:hover {
    color: #f07b3f;
    background-color: #fff;
}


.comments-box-area {
    margin-bottom: 30px;
}

.comments-box-area h2 {
    color: #152535;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    color: #777;
    background: #F0F2F5;
    font-size: 14px;
    border: none;
    box-sizing: border-box;
    outline: none;
    line-height: 45px;
    height: 45px;
}


.comments-form {
    margin-top: 10px;
}

.comments-form input {
    display: block;
    width: 100%;
    padding: 6px 15px;
    line-height: 1.42857143;
    font-family: inherit;
}

.comments-form textarea {
    height: 140px;
    padding: 10px;
    width: 100%;
    font-family: inherit;
    box-sizing: border-box;
}

.comments-form .form-control:focus {
    box-shadow: none;
    border-color: #f07b3f;
    outline: 0;
}

.comments-form .form-group {
    margin-bottom: 15px;
}

.form-group1 .form-box {
    float: left;
    width: 32%;
    margin-right: 2%;
}

.form-group1 .form-box:last-child {
    margin-right: 0;
}

.pagination-nav {
    float: left;
    width: 60%;
}

.form-group label .required {
    color: #E74C3C;
    font-weight: 600;
    font-size: 16px;
}

.form-group label .required:before {
    content: '*';
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
}

.blog-pagination {
    margin-top: 30px;
}

.pagination-nav li {
    display: inline-block;
    text-align: center;
}

.pagination-nav li a {
    background: 0;
    color: #2b2b2b;
    border-color: transparent;
    padding: 7px 10px;
    display: block;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.pagination-nav li a:hover {
    color: #f07b3f;
}

.pagination-nav li.active a,
.pagination-nav li a:focus {
    color: #f07b3f;
    text-decoration: none;
    outline: none;
    border: 1px solid #CECECE;
}

.pagination-nav .more a {
    margin: 0 20px;
}

.pagination-nav .next .iconfont {
    margin-left: 20px;
}

.widget-news li {
    transition: .5s ease;
    margin-bottom: 20px;
}

.widget-news li h4 {
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.2;
}


.widget-news li h4 a {
    color: #000;
    background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor));
    background-image: -webkit-linear-gradient(left, currentColor 0, currentColor 100%);
    background-image: -o-linear-gradient(left, currentColor 0, currentColor 100%);
    background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
    background-size: 0 2px;
    background-position: 0 95%;
    -webkit-transition: background-size .25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    -o-transition: background-size .25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    transition: background-size .25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    padding: .1% 0;
    background-repeat: no-repeat;
}

.widget-news li:hover h4 a {
    background-size: 100% 2px;
}

.single-blog-post-details .info {
    margin-bottom: 20px;
}

.single-blog-post-details .info .tit {
    font-size: 20px;
    color: #152535;
    margin-bottom: 10px;
}

#navBar {
    float: left;
}

.header-icons {
    float: right;
    margin-top: 20px;
}

.header-icons a {
    width: 40px;
    line-height: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f2f5;
    text-align: center;
    display: inline-block;
    margin-left: 10px;
    vertical-align: top;
}

.search-form {
    float: right;
    position: relative;
    margin-top: 20px;
    text-align: right;
}

.search-form .search-button {
    position: absolute;
    left: 0;
    display: inline-block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: auto;
    border: 0 none;
    padding: 0;
    left: 21px;
}

.search-form input {
    min-width: 180px;
    line-height: 38px;
    background-color: #f0f2f5;
    border-radius: 45px;
    border: none;
    padding-left: 50px;
}

.blog-news-wrapper .blog-news-img {
    float: left;
    width: 38.8%;
    overflow: hidden;
    border-radius: 10px;
}

.blog-news-wrapper .blog-news-img img {
    transition: .5s ease;
}

.blog-news-wrapper .blog-news-single:hover .blog-news-img img {
    transform: scale(1.1);
}

.blog-news-wrapper .blog-news-title {
    float: right;
    width: 57%;
    box-sizing: border-box;
    border: 1px solid #f0f2f5;
    padding: 32px 30px;
    border-radius: 10px;
}

.blog-cate .hover-flip-item span:before {
    color: #d93e40;
}

.widget-share {
    text-align: center;
}

.widget-share a {
    margin-right: 5px;
    display: inline-block;
    line-height: 35px;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50%;
    background-color: #f0f2f5;
}

.widget-share a:hover {
    background-color: #f07b3f;
    color: #fff;
}

.common-share {
    background: #F0F2F5;
    padding: 60px 0;
}

.common-share ul {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.common-share ul li {
    display: inline-block;
    margin: 5px;
}

.common-share ul li i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    background-color: #f0f2f5;
    border-radius: 50%;
    margin-right: 18px;
    transition: .5s ease;
}

.common-share ul li span {
    font-size: 16px;
}

.common-share ul li:hover i {
    color: #fff;
}

.common-share ul li:nth-child(1):hover i {
    background-color: #1BA1F2;
}

.common-share ul li:nth-child(2):hover i {
    background-color: #3B5997;
}

.common-share ul li:nth-child(3):hover i {
    background-color: #C231A1;
}

.common-share ul li:nth-child(4):hover i {
    background-color: #ED4141;
}

.common-share ul li:nth-child(5):hover i {
    background-color: #E60022;
}

.common-share ul li:nth-child(6):hover i {
    background-color: #7289da;
}


.newsletter-widget {
    position: relative;
    z-index: 1;
    text-align: center;
}

.newsletter-widget h2 {
    text-align: center;
    color: #fff;
    font-weight: 600;
}

.newsletter-widget form input {
    width: 100%;
    height: 38px;
    background-color: #f0f2f5;
    color: #656565;
    border: none;
    padding: 0 35px;
    box-sizing: border-box;
    outline: none;
    border-radius: 30px;
}

.newsletter-widget form button {
    height: 38px;
    background-color: #f07b3f;
    font-size: 14px;
    color: #fff;
    border: none;
    width: 37%;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid #f07b3f;
    border-radius: 30px;
    margin-top: 15px;
}

.newsletter-widget form button:hover,
.newsletter-widget form button:focus {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    opacity: 0.8;
}

.newsletter-widget .t {
    margin-bottom: 20px;
}

.widget-information {
    list-style: inherit;
}

.widget-information a {
    color: #656768;
    display: block;
    font-size: 18px;
    margin: 10px 0;
}

.widget-information a:hover {
    color: #f07b3f
}

.single-blog-tools {
    margin-top: 30px;
    border-bottom: 1px solid #CED0D4;
}

.single-blog-tools i {
    width: 40px;
    margin-right: 10px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border: 1px solid #CED0D4;
    border-radius: 50%;
    transition: .5s ease;
}

.single-blog-tools a:hover i {
    background-color: #f07b3f;
    color: #fff;
    border-color: #f07b3f;
}









@media only screen and (max-width:1240px) {

    .wrap {
        width: auto;
    }

}










@media only screen and (max-width:992px) {
    body {
        font-size: 14px;
    }

    .wrap {
        width: 750px;
        box-sizing: border-box;
    }

    #header .header-bottom {
        border: none;
        top: 0;
        background-color: #fff;
    }

    .logo {
        display: block;
        width: 100%;
        text-align: center;
        float: none;
    }

    .mobile_key {
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        float: right;
        z-index: 10;
        display: block;
        width: 40px;
        line-height: 40px;
        height: 40px;
        margin: 20px 0 0;
        border: none;
        background-color: #f0f2f5;
        border-radius: 50%;
        margin-left: 10px;
        margin-top: 18px;
    }

    .mobile_key span,
    .mobile_key:before,
    .mobile_key:after {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 17px;
        height: 2px;
        margin-left: -8px;
        background: #000;
        border-radius: 2px;
        display: inline-block;
        transition: all 0.3s ease-in-out;
    }

    .mobile_key span {
        margin-top: -8px;
    }

    .mobile_key:before {
        content: '';
        margin-top: 0;
    }

    .mobile_key:after {
        content: '';
        margin-top: 8px;
    }

    .menu-open .mobile_key:before {
        opacity: 0;
        transition: 0.2s ease 0.1s;
    }

    .menu-open .mobile_key:after {
        margin-top: 2px !important;
        -webkit-transform: rotateZ(-45deg);
        transform: rotateZ(-45deg);
        transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, -webkit-transform 0.25s ease 0.36s;
        transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, transform 0.25s ease 0.36s;
        transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, transform 0.25s ease 0.36s, -webkit-transform 0.25s ease 0.36s;
    }

    .menu-open .mobile_key span {
        margin-top: 2px !important;
        -webkit-transform: rotateZ(45deg);
        transform: rotateZ(45deg);
        transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, -webkit-transform 0.25s ease 0.36s;
        transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, transform 0.25s ease 0.36s;
        transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, transform 0.25s ease 0.36s, -webkit-transform 0.25s ease 0.36s;
    }

    .header-top {
        display: none;
    }

    #navBar {
        float: none;
        position: fixed;
        top: 0;
        left: -80%;
        z-index: 1000;
        width: 80%;
        height: 10000px;
        -webkit-transition-duration: .5s;
        transition-duration: .5s;
        padding: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
        overflow-x: hidden;
    }

    #navBar ul li:first-child>a {
        padding-left: 10px;
    }

    #navBar.on {
        left: 0;
    }

    #navBar ul {
        position: absolute;
        background-color: #fff;
        z-index: 100;
        width: 100%;
        height: 100%;
    }

    #navBar ul li {
        float: none;
        line-height: 30px;
        padding: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
    }

    #navBar ul li>a {
        padding: 10px;
        color: #666;
        display: block;
        font-size: 0.875em;
        transition: all 0.2s linear;
        line-height: 1.5;
    }

    #navBar ul li:hover>a {
        color: #f07b3f;
    }

    .content-left {
        width: 100%;
    }

    .content-right {
        width: 100%;
        margin-top: 20px;
    }


    #navBar {
        margin-top: 0;
    }

    #navBar ul {
        padding-top: 50px;
        box-sizing: border-box;
    }

    #navBar ul li>a:hover:before,
    #navBar ul li.active>a:before {
        width: 0;
    }







}

















@media only screen and (max-width:760px) {

    .wrap {
        width: auto;
        padding-left: 10px;
        padding-right: 10px;
    }

    h2 {
        font-size: 18px;
        line-height: 1.2;
    }


    .logo {
        font-size: 20px;
        padding: 15px 0;
    }

    .mobile_key {
        width: 40px;
        line-height: 40px;
        height: 40px;
        margin-top: 0;
        border: none;
        background-color: #f0f2f5;
        border-radius: 50%;
    }

    .header-icons {
        margin-top: 0;
    }

    .search-icon {
        width: 35px;
        line-height: 35px;
        height: 35px;
        margin-top: 10px;
    }

    .mobile_key span,
    .mobile_key:before,
    .mobile_key:after {
        width: 15px;
    }

    .mobile_key span {
        margin-top: -5px;
    }

    .mobile_key:after {
        margin-top: 5px;
    }

    #header.fixed #navBar ul li {
        padding: 0;
    }

    .content-left {
        padding: 0 0 10px;
    }

    .content-right {
        padding: 0;
    }

    #header .header-bottom {
        position: fixed;
        top: 0;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    }

    .header-bottom .wrap {
        padding-bottom: 20px;
    }

    .blog-archive-left .blog-news-single {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .blog-archive-left .blog-news-single h2 {
        font-size: 18px;
    }

    .widget-title {
        font-size: 18px;
    }

    .newsletter-widget form button {
        font-size: 15px;
    }

    .newsletter-widget h2 {
        font-size: 16px;
        padding: 15px 0;
    }

    .newsletter-widget form input,
    .newsletter-widget form button {
        height: 35px;
    }

    .widget-news span {
        font-size: 12px;
    }


    .sidebar-widget {
        margin-bottom: 20px;
        padding: 20px;
    }

    .blog-title h2 {
        font-size: 16px;
        padding-bottom: 0;
    }

    .single-blog-post-details h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .single-blog-post-details .post-data {
        margin-bottom: 10px;
    }

    .single-blog-post-details .post-data a {
        font-size: 12px;
    }

    .single-blog-post-content .img {
        margin-bottom: 10px;
    }

    .single-blog-post-content .tit {
        font-size: 16px;
    }

    .single-blog-post-content .dsc {
        font-size: 13px;
    }

    .single-blog-post-details {
        margin-bottom: 15px;
    }

    .add-post-btn {
        min-width: 90px;
        height: 35px;
        line-height: 35px;
        font-size: 15px;
    }

    .blog-archive-area {
        padding: 20px 0 0;
    }

    .comments-box-area h2 {
        font-size: 18px;

    }

    .form-group1 .form-control {
        width: 100%;
        margin-right: 0;
    }

    .comments-form .form-group {
        margin-bottom: 20px;
    }

    .form-control {
        height: 40px;
    }

    .comments-form textarea {
        height: 100px;
    }

    .single-blog-post-details .info .tit {
        font-size: 16px;
    }

    .single-blog-post-details .info .con {
        font-size: 13px;
    }

    .blog-news-single .blog-news-title .blog-catagory {
        margin-bottom: 10px;
    }

    .pagination-nav {
        margin-bottom: 20px;
    }

    .pagination-nav li a {
        font-size: 14px;
    }

    .single-blog-tools {
        margin-top: 15px;
    }

    .hot-news-title {
        margin-bottom: 15px;
        font-weight: bold;
        font-size: 18px;
    }

    .blog-pagination {
        margin-top: 20px;
    }

    .pagination-nav li a {
        padding: 7px;
    }

    .content-right {
        margin-top: 0;
    }

    .widget-news li h4 {
        font-size: 16px;
    }

    .newsletter-widget form input {
        font-size: 13px;
        margin-bottom: 0;
    }

    #footer {
        padding: 0;
    }

    .footer-share {
        float: none;
        width: 100%;
    }

    .footer-share span {
        font-size: 16px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .copyright {
        float: none;
    }

    .footer-bottom .links {
        float: none;
    }

    .footer-logo {
        float: none;
        width: 100%;
    }

    .footer-logo a {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .search-form {
        margin-top: 0;
    }

    .search-form input {
        min-width: 130px;
        width: 130px
    }

    .blog-news-wrapper .blog-news-single {
        border: 1px solid #f0f2f5
    }

    .blog-news-wrapper .blog-news-img {
        width: 100%;
        float: none;
    }

    .blog-news-wrapper .blog-news-title {
        float: none;
        width: 100%;
        padding: 20px;
        border: none;
    }

    .blog-tool {
        margin-top: 15px;
    }

    .common-share {
        padding: 20px 0;
    }

    .common-share ul {
        padding: 20px;
        justify-content: flex-start;
    }

    .common-share ul li {
        width: 45%;
        text-align: left;
    }

    .common-share ul li i {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .newsletter-widget form button {
        font-size: 15px;
    }

    .newsletter-widget h2 {
        font-size: 16px;
        padding: 15px 0;
    }

    .newsletter-widget form input,
    .newsletter-widget form button {
        height: 35px;
    }

    .widget-news span {
        font-size: 12px;
    }

    .detail .single-blog-post-details h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .single-blog-tools i {
        width: 35px;
        height: 35px;
        line-height: 35px;
        margin-right: 5px;
    }

    .form-group1 .form-box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .form-group1 .form-box:last-child {
        margin-bottom: 0;
    }

    .widget-information a {
        font-size: 14px;
    }

}

.positionFixed {
    bottom: 0px;
    left: 50%;
    position: fixed;
    transform: translate(-50%, 0%);
    z-index: 999;
    width: 100%;
    background-color: #e4e4e4;
    display: flex;
    justify-content: center;
}

.ad-div {
    margin-bottom: 50px;
    width: 100%
}

.t_de {
    height: 0.2rem;
    max-width: 100%;
    line-height: 0.3rem;
    font-size: 0.6rem;
    padding: 0.5rem 0 1rem 0;
    box-sizing: border-box;
    color: #707070;
    text-align: center;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* Modern Pagination Styles */
.basic-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 40px;
    padding: 0;
    list-style: none;
    gap: 8px;
  }

  .blog-page__pagination {
    margin: 50px 0 30px;
  }

  .basic-pagination li {
    display: inline-block;
    margin-right: 0 !important;
  }

  .basic-pagination li a,
  .basic-pagination li span {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    color: #2b2b2b;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    transition: all 0.3s ease-out;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(56, 88, 246, 0.1);
  }

  .basic-pagination li a::before,
  .basic-pagination li span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 88, 246, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .basic-pagination li a:hover::before {
    left: 100%;
  }

  .basic-pagination li a i {
    font-size: 16px;
    vertical-align: middle;
  }

  .basic-pagination li a:hover {
    border: 2px solid #d93e40;
    background-color: #d93e40;
    color: #fff;
    transform: translateY(-2px);
  }

  .basic-pagination li a.current {
    background-color: #d93e40;
    border: 2px solid #d93e40;
    color: #fff;
    font-weight: 400;
  }

  .basic-pagination li a.disabled,
  .basic-pagination li span.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
  }

  .basic-pagination li span.ellipsis {
    background-color: transparent;
    border: none;
    color: #d93e40;
    font-weight: 600;
    cursor: default;
    box-shadow: none;
  }

  .basic-pagination li span.ellipsis:hover {
    background-color: transparent;
    border: none;
    transform: none;
    box-shadow: none;
  }

  /* Enhanced hover effects for better UX */
  .basic-pagination li a:not(.disabled):not(.current):hover {
    animation: paginationPulse 0.6s ease-in-out;
  }

  @keyframes paginationPulse {
    0% { transform: translateY(-2px) scale(1); }
    50% { transform: translateY(-2px) scale(1.05); }
    100% { transform: translateY(-2px) scale(1); }
  }

  /* Responsive design */
  @media only screen and (max-width: 768px) {
    .basic-pagination {
      margin: 40px 0 30px;
      gap: 6px;
    }

    .blog-page__pagination {
      margin: 30px 0 20px;
    }

    .basic-pagination li a,
    .basic-pagination li span {
      width: 45px;
      height: 45px;
      line-height: 45px;
      font-size: 14px;
    }

    .basic-pagination li a i {
      font-size: 14px;
    }
  }

  @media only screen and (max-width: 480px) {
    .basic-pagination {
      gap: 4px;
    }

    .basic-pagination li a,
    .basic-pagination li span {
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 13px;
    }

    .basic-pagination li a i {
      font-size: 12px;
    }
  }
