/*** 

====================================================================
	Resources / Css Files
====================================================================

 ***/

@import url('baes1.css');
@import url('animate.css');
@import url('hover.css');
@import url('timeline.min.css');
@import url('owl.css');
@import url('swiper.min.css');
@import url('fontawesome-all.css');
@import url('flaticon.css');
@import url('jquery.fancybox.min.css');
@import url('custom-animate.css');
@import url('global1.css');

/***

==================================================================
		Blog Section
==================================================================

***/

.blog-section {
    position: relative;
    display: block;
}

.news-block-one {
    margin-bottom: 30px;
}

.news-block-one .inner-box {
    width: 100%;
    height: 273px;
    background: #eee;
}

.news-block-one .image {
    max-width: 378px;
    max-height: 273px;
    position: relative;
    overflow: hidden;
    float: left;
}

.news-block-one .image img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}

.news-block-one .inner-box:hover .image img {
    transform: scale(1.2);
}

.news-block-one .image a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.news-block-one .image a:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    width: 100%;
    height: 50%;
    display: block;
    opacity: 0;
    text-align: center;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: top;
    transition: all 0.5s;
}

.news-block-one .image a:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
    display: block;
    opacity: 0;
    text-align: center;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 0.5s;
}

.news-block-one .inner-box:hover .image a:before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 100ms;
}

.news-block-one .inner-box:hover .image a:after {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 300ms;
}

.news-block-one .lower-content {
    position: relative;
    padding: 7.5% 2% 0 5%;
    float: left;
    width: 55%;
}

.news-block-one .date {
    float: left;
    padding: 9% 0 0 26px;
    text-align: center;
}

.news-block-one .date .date_span {
    font-size: 48px;
    color: #666;
    margin-bottom: 20px;
}

.news-block-one .date .date_bottom {
    font-size: 18px;
    color: #666;
}

.news-block-one h3 {
    font-size: 22px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    /*表示文本超出时候用 “...” 来代替*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.news-block-one h3 {
    color: #000;
    transition: all .5s ease;
}

.news-block-one .inner-box:hover h3,
.news-block-one .inner-box:hover .text,
.news-block-one .inner-box:hover .date .date_span,
.news-block-one .inner-box:hover .date .date_bottom {
    color: #1a2980;
}

.news-block-one .text {
    overflow: hidden;
    text-overflow: ellipsis;
    /*表示文本超出时候用 “...” 来代替*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #666;
}


/***

==================================================================
		Blog Details
==================================================================

***/

.sidebar-page-container {
    position: relative;
}

.sidebar-page-container .news-sec-title {
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.sidebar-page-container .news-sec-title h1 {
    font-size: 24px;
    color: #000;
}

.page_sec_title {
    font-size: 14px;
    color: #666;
}

.page_sec_title span {
    margin: 0 20px;
}

.sidebar-page-container .lower-content {
    padding: 60px 0 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-page-container .lower-content p img {
    text-align: center;
    display: block;
    margin: 45px auto;
}

.sidebar-page-container .corner_mark {
    padding: 30px 0 30px;
}

.sidebar-page-container .corner_mark li {
    font-size: 14px;
    color: #000;
}

.sidebar-page-container .corner_mark li a {
    color: #000;
}

.sidebar-page-container .corner_mark li a:hover {
    color: #f3980f;
}

.sidebar-page-container .corner_mark .mark_left {
    float: left;
}

.sidebar-page-container .corner_mark .mark_right {
    float: right;
    text-transform: uppercase;
}

.sidebar-page-container .corner_mark .mark_right a i {
    font-size: 24px;
    color: #666;
    text-overflow: unset;
}

.sidebar-page-container .corner_mark .mark_right a {
    color: #666;
    font-size: 22px;
    text-overflow: ellipsis;
}

.sidebar-page-container .corner_mark .mark_right a:hover,
.sidebar-page-container .corner_mark .mark_right a:hover i {
    color: #f3980f;
}

@media (max-width: 1199.98px) {
    .news-block-one .date {
        display: none;
    }
    .news-block-one .lower-content {
        padding: 9% 0 0 5%;
    }
    .sidebar-page-container .lower-content {
        padding: 30px 0 10px;
        margin-bottom: 30px;
    }
    .sidebar-page-container .lower-content p img {
        margin: 25px auto;
    }
    .sidebar-page-container .corner_mark {
        padding: 0 0 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .news-block-one .lower-content {
        width: 42%;
        padding: 90px 0 0 20px;
    }
    .news-block-one h3 {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .news-block-one .inner-box {
        height: auto;
    }
    .news-block-one .lower-content {
        width: 100%;
        padding: 20px 0 0;
    }
    .sidebar-page-container .news-sec-title h1 {
        font-size: 18px;
    }
    .sidebar-page-container .corner_mark {
        margin-bottom: 60px;
    }
    .sidebar-page-container .corner_mark .mark_right {
        float: left;
        padding: 20px 0 30px;
    }
   .corner_mark .mark_right a{
    font-size: 14px !important
    }
    .sp-two{
        padding: 30px 0 30px !important
    }
}
.section3 {
    margin: 50px 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.section3 img {
    margin-bottom: 20px;
    height: 100%
}

.section3 .icon {
    width: 12px;
    height: 12px;
    margin: 5px 0 0 5px;
    padding: 0;
    float: right
}

.section3 .content .title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .6px;
    color: #043055
}

.section3 .content .text {
    max-width: 450px;
    margin: 30px 0;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: .6px;
    color: #5a5b5b
}

.section3 .content .button{
    margin: 0 0 20px
}

@media screen and (min-width: 48em) {
    .section3 {
        margin:110px 13%
    }

    .content {
        padding: 0 40px
    }

    .content .text{
        margin: 50px 0
    }

    img{
        padding: 0 40px
    }
}

.services-overview .description{
    margin: 60px 13%;
    font-size: 15px;
    color: #5a5b5b;
    letter-spacing: .38px;
    line-height: 27px
}
