/*
 imported styles
*/
@import url("animate.css");
@import url("bootstrap.min.css");
@import url("pagebar.css");
/*
common styles
*/
*{ box-sizing:border-box; padding:0; margin:0;}
body {
    font-family:"Microsoft YaHei", "sans-serif";
    color: #333333;
    font-size: 14px;
}

a:active,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}
ul,li{
    list-style: none;
}
.h-25px{
    height:25px;
}
.h-30px{
    height:30px;
}
.h-35px{
    height:35px;
}
.h-40px{
    height:40px;
}
.h-45px{
    height:45px;
}
.h-50px{
    height:50px;
}
.h-55px{
    height:55px;
}
.h-60px{
    height:60px;
}
.bg-none{
    background:none!important;
}
.hover-show .h-show{
    display: none;
}
.hover-show:hover .h-show{
    display: block;
}
/*bootstrap btn*/
.btn{
    border-radius: 0;
}
.btn-primary{
    background-color:#007bff;
}
.btn-outline-primary{
    border-color:#007bff;
    color:##007bff;
}
.btn-outline-primary:hover{
    background-color:#007bff;
    border-color:#007bff;
}


/*光标效果*/
.cursor{ cursor: pointer;}
.cursor-no{ cursor: default;}

/*加载动画*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-image: -webkit-gradient(linear, left top, right top, from(#f0f1f1), to(white));
    background-image: linear-gradient(90deg, #f0f1f1 0%, white 100%);
}

.preloader span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/resources/preloader.gif);
}
/*返回顶部*/
.scroll-to-top {
    display: inline-block;
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 99;
    width: 45px;
    height:45px;
    background-color: #007bff;
    text-align: center;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 50%;
}

.scroll-to-top i {
    font-size: 18px;
    line-height: 45px;
    color: #fff;
    position: relative;
    z-index: 10;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.scroll-to-top:hover {
    background: #222222;
}

.scroll-to-top:hover i {
    color: #fff;
}

.scrollup {
    background-color: #007bff;
    border-radius: 100%;
    bottom: 20px;
    color: #ffffff;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 40px;
    z-index: 99;
}
.scrollup:hover {
    background-color: #047cc4;
    color:#fff;
}
.scrollup:focus {
    color:#fff;
}

.scrollup.scrollup_style1:hover {
    background-color: #333;
}
/*ellipsis*/
.ellipsis-1row{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.ellipsis-2row{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.ellipsis-3row{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}



.bg-repeat-no {
    background-repeat: no-repeat;
}

.bg-coveer-sz {
    background-size: cover;
}
.bg-pos-top-center {
    background-position: top center;
}
.bg-pos-center-center {
    background-position: center center;
}

.bg-pos-left-center {
    background-position: left center;
}

.bg-pos-right-center {
    background-position: right center;
}

.bg-att-fixed {
    background-attachment: fixed;
}

.thm-gray-bg {
    background-color: #f2f4f7;
}

.large-title {
    font-size: 30px;
    font-weight: 600;
    color: #222222;
}

.normal-text {
    font-size: 14px;
    line-height: 26px;
    color: rgba(34, 34, 34, 0.5);
}

.img-fluid img{
    max-width: 100%;
    height: auto;
}
/*bootstrap thumbnail特效1207*/
.thumbnail{
    overflow: hidden;
    padding: 0;
    position: relative;
    border: 1px solid transparent;
    cursor: pointer;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.2);
}
.thumbnail:hover{
    text-decoration: none;
    border: 1px solid transparent !important;
}
.thumbnail img{
    cursor: pointer;
    transition: all 0.6s;
}
.thumbnail:hover img{
    transform: scale(1.05);
}
.thumbnail .badge,
.thumbnail:hover .badge{
    position: absolute;
    top:0;
    right:0;
    z-index: 10;
    font-weight: 100;
    border-radius: 0 0 0 10px;
}
.thumbnail.hover:hover{
    box-shadow: 0px 2px 10px rgba(58,166,255,0.5);
    border: 1px solid #d11515 !important;
    color:#d11515;
}
.thumbnail .caption{
    color:#333333;
}
.thumbnail .intro-2{
    color:#666666;
    height:50px;
}

/*设置box宽高为指定比例*/
.aspect-box {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.aspect-box > * /* This targets .aspect-box__content */ {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
}
.aspect-box:before /* This pseudo element uses the padding trick to set the height. */ {
    position: relative;
    display: block;
    content: "";

    box-sizing: border-box;
}
.square {
    aspect-ratio: '1:1';
}
.square:before {
    aspect-ratio: '1:1';
    padding-top: 100%;
}
.rectangle16-9{
    aspect-ratio: '16:9';
}
.rectangle16-9:before {
    padding-top: 56.25%;
}
.rectangle16-10{
    aspect-ratio: '16:10';
}
.rectangle16-10:before {
    padding-top: 62.5%;
}
.rectangle3-4{
    aspect-ratio: '3:4';
}
.rectangle3-4:before {
    padding-top: 120%;
}
.min-vh-50{min-height:50vh!important}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    padding:0!important;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

@media (max-width: 1280px) {
    .container {
        max-width: 960px;
    }
}



/*
header styles
*/
/*header navbar*/
.navbar-brand {
    padding: 0;
    vertical-align: top;
}
.navbar-brand img {
    max-width: 450px;
}
.navbar-nav a,
.navbar-toggler {
    color: #333333;
}
.navbar {
    padding: 0;
}
.header_wrap {
    padding:10px 0;
    transition: all 0.5s ease 0s;
    background:#ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.navbar .navbar-nav li {
    position: relative;
    list-style: none;
    transition: all 0.3s ease 0s;
}
.navbar-nav .dropdown-menu {
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: 0;
    min-width: 12rem;
}
.navbar-nav .dropdown-menu {
    background-color: rgba(255,255,255,1);
    box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
.navbar-nav .dropdown-menu .dropdown-menu {
    background-color: rgba(255,255,255,1);
}

.navbar .navbar-nav .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown-menu > ul > li:hover > a{
    padding-left: 25px;
}

.dropdown-toggle::after {
    border: 0 none;
    content: "\e927";
    font-family: "feather";
    height: auto;
    line-height: normal;

    vertical-align: middle;
    width: auto;
    transition: all 0.3s ease-in-out;
    font-weight: 100;
}

.navbar .navbar-nav > li > .nav-link {
    font-weight: normal;
    padding: 15px ;
    font-size: 16px;


}
.navbar .navbar-nav > li > .nav-link.active {
    color:#007bff;
}
.nav-fixed .navbar .navbar-nav > li > .nav-link {
    padding: 15px;
}
.navbar .navbar-nav > li > a.active,
.navbar .navbar-nav > li:hover > a{
    color:#007bff;
    border-bottom: 2px solid #007bff;
}

.navbar .navbar-nav .dropdown-item {
    padding: 15px 20px 10px 20px;
    color: #333;
    font-size: 14px;
    text-transform: capitalize;
    border-bottom: 1px solid #d8d8d8;
}
.navbar .navbar-nav li:last-child .dropdown-item {
    border-bottom: 0;
}
.navbar .navbar-nav .dropdown-item.dropdown-toggler {
    padding-right: 30px;
}
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
    background-color: transparent;
}

.navbar .navbar-nav .dropdown-menu li a.active,
.navbar .navbar-nav .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown-menu > ul > li:hover > a {
    color: #047cc4;
}

.nav-fixed .navbar-nav li > a,
.nav-fixed .navbar-toggler{
    color: #333333;
}
.header_wrap{
    position: relative;
    padding-right: 0 !important;

}
.header_wrap.fixed-top {
    position: relative;
    padding-right: 0 !important;

}
.header_wrap.transparent_header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1030;
}
.header_wrap.nav-fixed {
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 999;
    -webkit-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    -o-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-animation-fill-mode: none;
    -moz-animation-fill-mode: none;
    -o-animation-fill-mode: none;
    animation-fill-mode: none;
}

.header_wrap.fixed-top.nav-fixed.no-sticky,
.header_wrap.fixed-top.no-sticky {
    position: absolute;
}

.navbar-toggler {
    float: right;
    margin: 5px 0 0 5px;
    font-size: 24px;
    color: #333333;
    transition: all 0.5s ease 0s;
    border-radius: 0;
    height: 30px;
    width: 30px;
    padding: 0;
    line-height: 24px;
    transition: none;
}
.navbar-toggler[aria-expanded="true"] span::before {
    content: "\e9e6";
    font-size: 20px;
}
.navbar-toggler[aria-expanded="true"] {
    line-height: 30px;
    font-size: 20px;
}

.main_menu_uppercase .navbar-nav > li > .nav-link {
    text-transform: uppercase;
}
/*
carousel styles
*/
.carousel-control-prev,
.carousel-control-next{
    font-size: 40px;
}
@media screen and (max-width: 767.98px) {
    .carousel-control-prev,
    .carousel-control-next{
        font-size: 28px;
    }
    .carousel-indicators{
        bottom:-20px;

    }
    .carousel-indicators li{
        width:20px;
        height:2px;
    }
}

/*
footer styles
*/
.site-footer{
    background: #f9f9f9;
    margin:0!important;
    padding:0!important;
}
.site-footer-upper {
    background: #f9f9f9;
    border-top:1px solid #dfdfdf;
    color:#333333;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-text {
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 24px;
}

.footer-text a {
    color: inherit;
    transition: all .4s ease;
}

.footer-text a:hover {
    color: #229aff;
}


/*
block-title styles
*/

.block-title {
    padding:0;
    margin:0;
    position: relative;
}

.block-title-title {
    color: #222222;
    font-size: 32px;
    line-height: 32px;
    margin: 0;
}
.block-title-title.small{
    font-size: 24px!important;
    line-height: 24px!important;
}

@media screen and (max-width: 767px) {
    .block-title-title.small{
        font-size: 20px!important;
        line-height: 20px!important;
    }
}
.block-title-title+.block-title-line {

}

.hover-show:hover .block-title-title+.block-title-line.h-show{
    display: inline-block;
}
.block-title-line {
    display: inline-block;
    vertical-align: bottom;
    width: 46px;
    height: 2px;
    background-color: #0087ff;
    position: absolute;
    left:-55px;
    top:48%;
}
.block-title-line.small {
    display: inline-block;
    vertical-align: bottom;
    width: 30px;
    height: 2px;
    background-color: #0087ff;
    position: absolute;
    left:-35px;
    top:48%;
}
.block-title a.more {
    position: absolute;
    right:0;
    top:20%;
    color:#888888
}

/*
news style
*/

.news-slide{
    -webkit-box-shadow: 0px 30px 50px 0px rgba(8, 13, 62, 0.15);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.news-slide .carousel-indicators{
    bottom:-50px;
}
.news-slide .carousel-indicators .active{
    background-color:#0087ff;
}
.news-slide .carousel-caption{
    left:0;
    bottom: 0;
    height:40px;
    line-height: 20px;
    padding-top:10px;
    width:100%;
    background-color:rgba(0,0,0,0.5);
}





.list-text li{
    padding:15px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.2);

}
.list-text li:hover{
    background:rgba(0,135,225,0.05);
}
.list-text li:first-child{
    padding-top:0;
}
.list-text li:first-child a{
    color:orange;
    font-weight: bold;
}
.list-text li a{
    color:#ffffff;
    font-size: 17px;
}
.list-text li a:hover{
    color:#f8f2aa;
}

.list-text li .time{
    display: block;
    font-size:14px;
    font-weight: 200;
    height:18px;
    line-height:18px;
    margin-bottom:5px;
    width:76px;
}
.list-text2 li{
    margin-top:-1px;
}
.list-text2 li:hover{
    background: #f9f9f9;
}


.text-list3 li{
    margin:15px 0;
    padding:15px;
}
.text-list3 li .media-heading{
    color:#333333;
    font-size: 20px;
}
.text-list3 li:hover {
    background: #fafafa;
    cursor: pointer;
}
.text-list3 li:hover .media-heading{
    color:#0160b0;
}
.text-list3 img{
    width:240px;
    height:136px;
}
.text-list3 .time{
    display: block;
    font-size:12px;
    font-weight: 200;
    height:18px;
    line-height:18px;
    text-align: center;
    width:76px;
    color:#0087ff;
    background:rgba(0,135,225,0.1);
    border-radius: 3px;
}
@media screen and (max-width: 767px) {
    .text-list3 {
        margin-bottom: 15px;
        font-size: 12px;
        margin-left: 0;
        margin-right: 0;
    }
    .text-list3 li{
        margin:5px 0;
        padding:15px 10px;
    }
    .text-list3 img{
        width:120px;
        height:80px;
    }
    .text-list3 li .media-heading{
        font-size: 15px;
    }
}

.text-list1 p, .text-list-main p {
    color: #888888;
}

/*timeline*/
.timeline-track {
    border-left: 1px solid #e5e5e5;
    margin-left:200px;
}
.timeline-track ul{
    padding:0;
}
.timeline-track ul>li {
    list-style: none;
    margin-left: -6px;
}
.timeline-track .levellist li {
    padding-bottom:30px;
    line-height: 20px;
    padding-left: 20px;
    background: url(../images/time-line-dot2.png) 0 top no-repeat;
    color: grey;
}
.timeline-track .levellist li .info{
    margin-top:-55px;
}
.timeline-track .left{
    display: block;
    width:180px;
    margin-left:-200px;
    color:#ffffff;
    text-align: center;
}
.timeline-track .left .title{
    font-size: 24px;
    font-weight: bold;
    height:30px;
}
.timeline-track .left .time{
    margin-top:5px;
    font-size: 14px;
}
.timeline-track p{
    color:#ffffff;
    font-size: 16px;
    line-height: 30px;
}
.timeline-track p span{
    color:#ffa800;
}

.timeline-track .info{
    background:rgba(255,255,255,0.1);
    padding:20px;
}
@media screen and (max-width: 767px) {
    .timeline-track {
        border-left: 1px solid #e5e5e5;
        margin-left:100px;
    }
    .timeline-track .left .title{
        font-size: 16px;
        font-weight: bold;
        height:20px;
    }
    .timeline-track .left .time{
        margin-top:5px;
        font-size: 16px;
        height:30px;
    }
    .timeline-track .left{
        display: block;
        width:100px;
        margin-left:-120px;
        color:#ffffff;
        text-align: center;
    }
}

/*my-article*/
.my-article{
    min-height: 500px;
}

.my-article .title{
    padding:20px 0;
    text-align: center;
}
.my-article .title h3{
    font-size:30px;
}

.my-article .title .time-info{
    margin:30px 0;
    color:#666666;
    font-weight: 100;
}
.my-article .title .time-info span{
    padding:0 10px;
}
.my-article .title .time-info span:first-child{
    padding-left:0;
}
.my-article .content{

    font-size: 16px;
    line-height: 30px;
}

.my-article .more{
    margin:30px 0;
    padding:10px 0;
    font-size: 16px;
    border-top:1px solid #ebebeb;
    border-bottom:1px solid #ebebeb;
}
.my-article .more .item{
    padding:10px 0;
}
@media screen and (max-width: 767px) {
.my-article img{
max-width:100%;
}
    .my-article .title{
        text-align: left;
    }
    .my-article .title h3{
        font-size:24px;
        line-height: 30px;
    }
    .my-article .more{
        margin:20px 0;
        font-size: 14px;
    }
    .my-article .title .time-info{
        margin:10px 0;
    }
}

/*this project*/
.main-bg{
    background: #0147b0;
}
.block-title{
    height:190px;
}

.section-video{
    background-image: url(../images/s0-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    min-height:700px;
}

.section-video .text-box{
    padding:20px;
    background:rgba(0,0,0,0.1);
    color:#ffffff;

}
.section-video .text-box p{
    color:rgba(225,225,225,0.8);
    font-size: 16px;
}
.section-video .text-box h5{
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .section-video .block-title h4{
        font-weight: bold;
        font-size:16px;
        line-height: 28px;
    }
    .section-video .text-box p{
        font-size: 14px;
    }
    .section-video .text-box h5{
        font-size:16px;
    }
}

.event-two{
    margin:30px 0;
    padding:50px;
    background:rgba(0,0,0,0.1);
    color:#ffffff;
}
@media screen and (max-width: 767px) {
    .event-two{
        padding:0px;
    }
}
.event-two__single+.event-two__single {
    margin-top: 70px;
}

.event-two__single:nth-child(odd) .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

.event-two__single:nth-child(even) .row .event-two__content {
    padding-left: 50px;
}

.event-two__single:nth-child(odd) .row .event-two__content {
    padding-right: 50px;
}
.event-two__content{
    color:#ffffff;
}
.event-two__content p{
    color:rgba(225,225,225,0.7)
}
.event-two__image {
    position: relative;
}


.event-two__single:nth-child(odd) .event-two__image::before {
    left: auto;
    right: -75px;
}

.event-two__image {
    display: inline-block;
    box-shadow: 0px 20px 50px 0px rgba(33, 37, 43, 0.2);
}

.event-two__image-inner>img {
    position: relative;
    width:100%;
}

.event-two__image-inner {
    overflow: hidden;
    background-color: var(--thm-black);
}


.event-two__image-inner>img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.event-two__image:hover .event-two__image-inner>img {
    opacity: 0.5;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
/*.event-two__image-inner::after {*/
/*content: "";*/
/*width: 150%;*/
/*height: 200%;*/
/*position: absolute;*/
/*top: -100%;*/
/*left: -180%;*/
/*z-index: 11;*/
/*-webkit-transition: 1s;*/
/*transition: 1s;*/
/*-webkit-transform: rotate(30deg) scale(1.2);*/
/*transform: rotate(30deg) scale(1.2);*/
/*background: -webkit-gradient(linear,*/
/*left top, right top,*/
/*color-stop(50%, rgba(255, 255, 255, 0)),*/
/*to(rgba(255, 255, 255, 0.7)));*/
/*background: linear-gradient(90deg,*/
/*rgba(255, 255, 255, 0) 50%,*/
/*rgba(255, 255, 255, 0.7) 100%);*/
/*}*/

/*.event-two__single:hover .event-two__image-inner::after {*/
/*top: 100%;*/
/*left: 100%;*/
/*-webkit-transform: rotate(0);*/
/*transform: rotate(0);*/
/*}*/

.event-two__content .block-title {
    margin-bottom: 10px;
    height:auto;
    width:100%;
}

.event-two__content .block-title p {
    font-size: 15px;
}



.event-two__btn {
    padding:10px 15px;
    border: 1px solid rgba(225,225,225,0.4);
    background-color: transparent;
    color: rgba(225,225,225,0.8);
    margin-top: 30px;
}

.event-two__btn:hover {
    background-color: var(--thm-black);
    color: #fff;
    border-color: var(--thm-black);
}


@media(max-width: 1199px) {

    .event-two__image-inner>img {
        max-width: 100%;
    }
}

@media(max-width: 991px) {
    .event-two__content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .event-two__image {
        margin-bottom: 40px;
    }

}

@media(max-width: 767px) {

    .event-two__sculpture {
        right: -18%;
    }

    .event-two{
        padding:20px;
    }
}







.section-1{
    background-image: url(../images/s1-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    min-height:700px;
}
.section-1 .nav-item{
    padding:0 40px;
}
@media screen and (max-width: 767px) {
    .section-1 .nav-item{
        padding:0 20px;
    }
}
.section-1 .nav .nav-link{
    color:#ffffff;
    font-size: 18px;
    height:40px;
}
.section-1 .nav .nav-link:hover{
    color:#f8f2aa;
    background:url(../images/icon-tab-bg.png) center bottom no-repeat;
}
.section-2{
    background-image: url(../images/s2-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    min-height:1100px;
}
.text-text p{

    font-size: 16px;
    color:#ffffff;
}
.section-3{
    background-image: url(../images/s3-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    min-height:415px;
}
.section-4{
    background-image: url(../images/s4-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    min-height:908px;
}
.section-4 .card{
    background:#041cb0 url(../images/card-bg.jpg) top center no-repeat;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    color:#ffffff; 
    padding-bottom:30px;   
    
}
.section-4 .card .info{
    display:block;
    padding: 20px;
    height:280px;
}
.section-4 .card .info p{
    font-size: 16px;
    text-indent: 2rem;
}
@media screen and (max-width: 767px){
    .section-4 .card .info{
        font-size: 16px;
        padding: 30px;
        text-indent: 2rem;
        height:210px;
    }

}
.section-4 .card h3{
    padding: 0 30px;
    text-align: center;
}
.section-4 .card a{
    
    color:#ffa800;
}
.section-4 .card a:hover{
    text-decoration: underline;
}

.section-5{
    background-image: url(../images/s5-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    min-height:680px;
}
.section-6{
    background-image: url(../images/s6-bg.jpg);
    background-color:#014fb0;
    background-position: top center;
    background-repeat: no-repeat;

}
.section-6 .in-box{
    background-image: url(../images/s6-bg2.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    min-height:816px;
    padding-bottom:300px;
}
.section-6 img{
    width:80%;
}

.section-7{
    background-image: url(../images/s7-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    padding-bottom:0;
}
.section-7 .text{
    margin-top:20px;
    padding:30px 40px;
    background:rgba(255,255,255,0.1);
}
.section-7 .text p{
    line-height: 28px;
    color:#ffffff;
}
.section-7 .text p a{
    color:#ffa800;
}
.section-8{
    background-image: url(../images/s8-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    padding-bottom:80px;
}
.section-8 .text{
    margin-top:20px;
    padding:30px 40px;
    background:rgba(255,255,255,0.1);
}
.section-8 .text p{
    line-height: 28px;
    color:#ffffff;
}
.section-8 .text p a{
    color:#ffa800;
}
.footer{
    height:60px;
    line-height: 60px;
    text-align: center;
    background: #013582;
    color:rgba(255,255,255,0.5)
}
.mynav{
    width:120px;
    padding:0;
    position: fixed;
    top:200px;
    right:20px;
    background:#ffffff;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    border-radius: 5px;
    text-align: center;
}
.mynav .navbar-title{
    display: block;
    background: #0147b0;
    color:#ffffff;
    width:120px;
    height:50px;
    line-height: 50px;
    margin:0;
    border-radius: 5px 5px 0 0;
}
.mynav .mynavbar{
    width:100%;
    padding:0;
    text-align: center;
}
.mynav .nav-link{
    padding:0;
}
.mynav .mynav-link{
    display: block;
    width:120px;
    height:46px;
    line-height: 46px;
    border-bottom: 1px dashed rgba(0,0,0,0.3);
    color:#333333;
}
.mynav .mynav-link:last-child{
    border-bottom: none;
}
.mynav .mynav-link:hover{
    background:#0157d8;
    color:#ffffff;
    border-radius: 0;
}
.mynav .mynav-link.active{
    background:#0157d8;
    color: #fff;
    border-radius: 0;
}


.thumbnail{
    text-align: center;
    position: relative;
}

.thumbnail .ripple{
    position: absolute;
    top:calc(50% - 25px);
    left:calc(50% - 25px);
}
.thumbnail a:hover img{
    filter:alpha(opacity=80);
    -moz-opacity:80;
    opacity:80;
}
.ripple {
    background-color: rgba(0,0,0,0.3);
    border-radius: 100%;
    color: #ffffff;
    position: relative;
    display: inline-block;
    line-height: 50px;
    font-size: 30px !important;
    vertical-align: middle;

    height: 50px;
    width: 50px;
    text-align: center;
}
.ripple:hover {
    color: #01427a;
}
.ripple i {
    margin-right: 0;
    margin-left: 5px;
    font-size: 24px;
}

.ripple::before,.ripple::after {
    -webkit-animation: ripple 1.8s infinite ;
    -moz-animation: ripple 1.8s infinite ;
    -o-animation: ripple 1.8s infinite ;
    -ms-transition:ripple 1.8s infinite ;
    animation: ripple 1.8s infinite ;
    background-color: #fff;
    border-radius: 100%;
    margin: -15px;
    bottom: 0px;
    content: "";
    display: block;
    left: 0px;
    opacity: 0;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index:-1;
}
.ripple::before {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.ripple::after {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

