*{
    margin: 0;
    padding: 0;
}
html,body{
	width: 100%;
	height: 100%;
}
body {
	font-family: "Microsoft YaHei", MicrosoftJhengHei, STHeiti, MingLiu !important;
    background-color: #EFEFEF;
    overflow: hidden;
    touch-action: none;
}
*, ::after, ::before {
    box-sizing: border-box;
}
ol, ul {
    list-style: none;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}
.xs-visiable{
    display: none;
}
/* loading */
#wrapper {
    display: block;
    position: fixed;
    z-index: 999;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/bodyimg.png);
    background-position: center center;
    background-color: #EFEFEF;
    background-repeat: no-repeat;
}
/*header start*/
.navbar {
    background-color: transparent;
    min-height: 50px;
}
.navbar-fixed-top {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 999;
}
.navbar-toggle:focus {
    outline: 0;
}
.navbar-toggle {
    position: relative;
    float: right;
    padding: 14px 15px 17px;
    background-color: #004F9A;
    background-image: none;
    border: none;
    border-radius: 0px;
    z-index: 1037;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 37px;
    height: 2px;
    border-radius: 1px;
}
.navbar-toggle .icon-art {
    display: block;
    width: 35px;
    margin-top: 7px;
    color: #fff;
}
.navbar .navbar-header .navbar-toggle .icon-art{
    transition: all 0.5s;
    display: none;
}
.navbar .navbar-header .collapsed .icon-art{
    display: block;
}

.navbar .navbar-header .navbar-toggle span {
    transition: all 0.5s;
    background-color: #fff;
    border-radius: 0px!important;
}
.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 6px;
}

.navbar .navbar-header .collapsed span:nth-of-type(1) {
    -webkit-transform: none!important;
    transform: none!important;
}
.navbar .navbar-header .navbar-toggle span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
}

.navbar .navbar-header .navbar-toggle span:nth-of-type(2) {
    opacity: 0;
}
.navbar .navbar-header .collapsed span:nth-of-type(2) {
    opacity: 1;
}

.navbar .navbar-header .collapsed span:nth-of-type(3) {
    -webkit-transform: none!important;
    transform: none!important;
}
.navbar .navbar-header .navbar-toggle span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
}

.navbar-brand {
    display: block;
    padding-top: 18.5px;
    padding-left: 20px;
    float: left;
}

.navbar-header .navbar-brand img {
    width: 80%;
}

.navbar-collapse {
    height: 0px;
    width: 100%;
    position: fixed;
    top: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.49, 0.38, 0.23, 0.96) 0s;
    -o-transition: all 0.5s cubic-bezier(0.49, 0.38, 0.23, 0.96) 0s;
    transition: all 0.5s cubic-bezier(0.49, 0.38, 0.23, 0.96) 0s;
    overflow: hidden;
}
.navbar-collapse.in {
    height: 100%;
}

.navbar-main {
    width: 100%;
    height: 100%;
    padding-right: 400px;
    display: table;
    background-color: #004F9A;
}
.navbar-main>ul {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    background-color: #EDEDED;
    padding: 0;
    padding-right: 10%;
}
.navbar-main li.current+li.current {
    margin-top: 5px;
}
.navbar-main li.current p {
    position: relative;
    margin: 0;
}
.navbar-main li.current p:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #004F9A;
    transition: width .5s ease-out;
}
.navbar-main li.current p a {
    font-size: 32px;
    color: #000;
    display: inline-block;
    transition: color .5s linear;
    text-decoration: none;
    font-weight: bolder;
    font-style:italic;
    padding-left: 150px;
}
.navbar-main li.current p a span{
    font-size: 15px;
    display: inline-block;
    transition: color .5s linear;
    color: #000;
    margin-left: 18px;
    font-style: normal;
}
.navbar-main ul.child {
    display: block;
    padding: 0;
    margin-top: 5px;
    height: 35px;
    padding-left: 150px;
}
.navbar-main ul.child li {
    float: left;
    position: relative;
}
.navbar-main ul.child li:last-child {
    padding-right: 0;
    margin-right: 0;
}
.navbar-main ul.child li:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 3px;
    width: 2px;
    height: 15px;
    background: #464b4b;
    -ms-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}
.navbar-main ul.child li a {
    position: relative;
    display: inline-block;
    color: #000;
    padding: 0 20px;
    text-decoration: none;
}
.navbar-main ul.child li:first-child a {
    padding: 0 20px 0 0;
}
.navbar-main ul.child li:last-child:after {
    display: none;
}

@media (min-width: 768px){
    .navbar-main ul.child li {
        display: none;
    }
    .navbar-main>ul>li:hover .child li{
        display: block;
    }
    .navbar-main>ul>li:hover p:after{
        width: 100%;
    }
    .navbar-main>ul>li:hover p a{
        color: #004F9A;
    }
    .navbar-main>ul>li:hover p a span{
        color: #004F9A;
    }
    ul.gnav_sub ul li{
       min-height: 71px; 
   }
}


ul.gnav_sub {
    position: absolute;
    right: 140px;
    top: 50%;
    margin-top: -200px;
    z-index: 999;
}
ul.gnav_sub ul {
    padding-top: 10px;
}
ul.gnav_sub ul li {
    margin-top: 30px;

}
ul.gnav_sub ul li a {
    position: relative;
    border: 1px solid #fff;
    display: inline-block;
    text-align: center;
    padding: 15px;
}
ul.gnav_sub ul li a img{
    width: 35px;
    height: 35px;
}
/*header end*/
/*main start*/
#main {
 width: 100%;
 height: 100%;
}

#specs-image-1{
    background: url(../images/banner1.jpg);
    background-position: 84%; 
    background-size: cover;
}
#specs-image-2{
    background: url(../images/banner2.jpg);
    background-position: top right; 
    background-size: cover;
}
#specs-image-3{
    background: url(../images/banner3.jpg);
    background-position: center; 
    background-size: cover;
}
#specs-image-4{
    background: url(../images/banner4.jpg);
    background-position: center; 
    background-size: cover;
}
#specs-image-5{
    background: url(../images/banner5.jpg);
    background-position: center; 
    background-size: cover;
}

.sections-wrapper{
	position: relative;
}
.specs-pin-spacer{
	width: 100%;
	top: auto;
	left: auto;
	bottom: auto;
	right: auto;
	margin: 0px;
	display: block;
	position: relative;
	box-sizing: content-box;
	width: 100%;
	min-height: 100vh;
	height: 100vh;
	padding-top: 0px;
}
#specs-section {
	height: 100vh;
	width: 100%;
	background: transparent;
	overflow: hidden;
	position: fixed;
	margin: auto;
	top: 0px;
	left: 0px;
	bottom: auto;
	right: auto;
}
.specs-wrapper {
	position: relative;
	height: 100%;
	width: 100%;
}
.specs-wrapper .specs-images {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.specs-wrapper .specs-images .specs-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}
.specs-wrapper .d-flex{
	height: 100%;
}
.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}
.align-items-baseline {
    -ms-flex-align: baseline!important;
    align-items: baseline!important;
}
.justify-content-start {
    -ms-flex-pack: start!important;
    justify-content: flex-start!important;
}
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.specs-wrapper .d-flex .specs-main{
	position: relative;
    top: 20%;
    left: 10%;
    display: inline;
    width: 630px;
    height: 0px;
    z-index: 2;
}
.specs-wrapper .specs-main .row{
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	height: 100%;
	margin-right: 0;
	margin-left: 0;
}
.specs-wrapper .specs-pointers-block {
	position: relative;
	z-index: 1;
}
.no-gutters>.col, .no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}
.col-3{
	flex: 0 0 25%;
	max-width: 25%;
}
.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}
.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.specs-wrapper .specs-pointers-block .specs-pointers {
    position: absolute;
    top: 38px;
    right: 0;
    width: 135px;
    max-width: 100%;
    padding-left: 15px;
}
.align-items-baseline {
    -ms-flex-align: baseline!important;
    align-items: baseline!important;
}
.specs-wrapper .specs-pointers-block .specs-pointers .sp-left {
    position: relative;
    width: 50px;
    height: 20px;
    overflow: hidden;
    top:10px;
}
#specs-section .specs-wrapper .specs-pointers-block .specs-pointers .sp-left .sp-number, #specs-section .specs-wrapper .specs-pointers-block .specs-pointers .sp-left .sp-numbers-spacer {
    position: relative;
    display: block;
    font-size: 1.063rem;
    font-weight: 400;
    color: #004F9A;
    line-height: 1;
    height: 20px;
}
#specs-section .specs-wrapper .specs-pointers-block .specs-pointers .sp-left .sp-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
#specs-section .specs-wrapper .specs-pointers-block .specs-pointers .sp-left .sp-numbers .sp-number {
    position: relative;
    display: block;
}
.specs-wrapper .specs-pointers-block .specs-pointers .sp-right {
    position: relative;
}
.specs-wrapper .specs-pointers-block .specs-pointers .sp-right .sp-line {
    position: relative;
    height: 1px;
    background: #004F9A;
    z-index: 2;
}
.specs-wrapper .specs-pointers-block .specs-pointers .sp-right .sp-line:after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 100%;
    height: 1px;
    width: 125px;
    background: #004F9A;
}
.specs-wrapper .specs-pointers-block .specs-pointers .sp-right .sp-dashes {
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 1;
}
.specs-wrapper .specs-pointers-block .specs-pointers .sp-right .sp-dashes .sp-dash {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    border-top: 1px solid #7D868B;
}
#specs-section .specs-wrapper .specs-items-block {
    position: relative;
    z-index: 2;
}
.specs-wrapper .specs-items-block .specs-items {
    position: relative;
    height: 100%;
}
#specs-section .specs-wrapper .specs-items-block .specs-items .specs-item {
    position: absolute;
    top: 60px;
    left: 0;
    max-width: 100%;
    opacity: 0;
    display: none;
    padding-left: 15px;
    padding-right: 0;
}

#specs-section .specs-wrapper .specs-items-block .specs-items .specs-item p {
    position: relative;
    padding: 0;
    margin: 0;
    font-size: 38px;
    line-height: 1.44444;
    font-weight: 300;
    color: #000;
}
/*****swiper************************/
.product{
    width: 75%;
    right: 9%;
    float: right;
    top:33%;
    position: relative;
}
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
    position: relative;
}

.swiper-slide img{
    width: 100%;
}
.swiper-slide .hidden{
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,79,155,0.75);
}
.swiper-slide .hidden img{
    display: block;
    width: 90%;
    margin: auto;
    margin-top: 45%;
}
.swiper-slide:hover .hidden{
    display: block;
}
.swiper-pagination{
    bottom: 10px;

}
.swiper-pagination-bullet{
    margin-right: 5px;
    width: 10px;
    height: 10px;

    background: #004F9A;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #004F9A;
}
.more{
    float: right;
    display: block;
    margin-top: 50px;
    width: 146px;
    margin-bottom: 0;
    background-color: #2e8be8;
    padding: 6px;
    color: #fff;
    text-align: left;
    padding-left: 30px;
    position: relative;
    text-decoration: none;
}
.more:after{
    content: "";
    background-image: url(/shared/img/icon-05.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    width: 26px;
    height: 22px;
    right: 27px;
    top: 50%;
    margin-top: -11px;
    
}

.more:hover{
    background-color: #014e9c;
}
/*****************pursuit****************/
.pursuit{
    width: 60%;
    float: right;
    position: relative;
    top:20%;
    margin-right: 7%;
}
.pursuit-items{
    display: block;
}
.pursuit-item{
    margin-right: 1%;
    width: 48%;
    float: left;
    position: relative;
    margin-bottom: 0.7%;
    overflow: hidden;
}
.pursuit-item img{
    width: 100%;
}
.pursuit-item-cont{
    width: 100%;
    background-color: rgba(0,79,155,0.75);
    position: absolute;
    bottom: 0px;
    padding:10px 20px;
}

.pursuit-item:hover .pursuit-item-cont{
    height: 100%;
    padding: 18% 0 0 40px;
}
.pursuit-item:hover .pursuit-item-cont .art-hidden{
    display: block;
}

.pursuit-item-cont .art h2{
    color: white;
    line-height: 33px;
    font-size: 25px;
    margin: 0; 
}
.pursuit-item-cont .art h2:first-child{
    font-style:italic;
}
.pursuit-item-cont .art-hidden{
    display: none;
    margin-top: 30px;
}

.pursuit-item-cont .art-hidden p{
    margin: 0;
    color: white;
    position: relative;
    line-height: 1.3333;
    padding-left: 15px;
}
.pursuit-item-cont .art-hidden p:before{
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    position: absolute;
    background-color: white;
    left: 0;
    top:10px;
}
/********************dynamic******************/
.dynamic{
    position: relative;
    top: 33%;
    width: 100%;
}
.dynamic-items{
    width: 100%;
    max-width: 1100px;
    padding: 0 0px;
    margin: auto;
}
.dynamic-items a{
    text-decoration: none;
    color: #000;
}
.dynamic-item{
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
}
.dynamic-item:hover{
    background-color: rgba(255,255,255,.5);
}
.dynamic-item>div{
    display: inline-block;
}
.dynamic-item-time{
    color: #329AFE;
    width: 150px;
}
.dynamic-item-NEW{
    display: inline-block;
    font-size: 12px;
    width: 40px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    color: #fff;
    background-color: #E70012;
    margin-left: 10px;
    transform:skew(-16deg);
    -webkit-transform: skew(-16deg);   
    -moz-transform: skew(-16deg);   
    -o-transform:skew(-16deg);   
    -ms-transform:skew(-16deg);   
}
.dynamic-item:hover .dynamic-item-content{
    color: #014F9B;
}
.dynamic .more{
    float: right;
    color: #fff;
    margin-top: 100px;
}
/*main end*/
/**********************footer***********************/
.footer{
    position: absolute;
    bottom:20px;
    width: 100%;
}
.footer p{
    font-size: 15px;
    text-align: center;
    color: #595856;
    margin: 0;
    margin-bottom: 10px;
}
/**********************footer end*******************/
@media (min-width: 1501px) and (max-width: 1700px) {
    .pursuit {
        width: 55%;
    }
    .pursuit-item:hover .pursuit-item-cont {
        padding: 16% 0 0 40px;
    }
    .dynamic .more {
        margin-top: 80px;
    }
    .dynamic-items {
        width: 60%;
    }
    .footer {
        bottom: 20px;
    }
}
@media (min-width: 1201px) and (max-width: 1500px) {
    .navbar-brand {
        height: 55px;
    }
    #specs-section .specs-wrapper .specs-items-block .specs-items .specs-item p {
        font-size: 36px;
        line-height: 1.4333;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-right .sp-line:after {
        width: 119px;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers {
        top: 34px;
    }
    .pursuit-item-cont .art h2 {
        color: white;
        line-height: 30px;
        font-size: 22px;
        margin: 0;
    }
    .pursuit-item:hover .pursuit-item-cont {
        height: 100%;
        padding: 8% 35px 0 35px;
    }
    .dynamic-items {
        width: 68%;
    }
    .dynamic .more {
        margin-top: 70px;
    }
    .footer {
        bottom: 20px;
    }
    .pursuit {
        width: 55%;
        margin-right: 4%;
    }
    .pursuit-item-cont .art-hidden {
        margin-top: 25px;
    }
}
@media (max-width: 1200px) {
    .dynamic-item>div {
        display: block;
    }
    .more {
        margin-top: 30px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .navbar-main li.current p a {
        font-size: 28px;
        color: #000;
        display: inline-block;
        transition: color .5s linear;
        text-decoration: none;
        font-weight: bolder;
        font-style: italic;
        padding-left: 50px;
    }
    .navbar-main {
        padding-right: 300px;
    }
    ul.gnav_sub {
        right: 100px;
    }
    .navbar-main ul.child {
        padding-left: 50px;
    }
    .navbar-brand {
        height: 53px;
    }
    #specs-section .specs-wrapper .specs-items-block .specs-items .specs-item p {
        font-size: 34px;
        line-height: 1.4333;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-right .sp-line:after {
        width: 114px;  
    }
    .specs-wrapper .specs-pointers-block .specs-pointers {
        top: 29px;
        width: 110px;
    }
    .specs-wrapper .d-flex .specs-main {
        width: 575px;
        left: 5%;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-left {
        width: 40px;
    }
    .pursuit-item-cont .art h2 {
        color: white;
        line-height: 22px;
        font-size: 18px;
        margin: 0;
    }
    .pursuit-item:hover .pursuit-item-cont {
        height: 100%;
        padding: 7% 20px 0 20px;
    }
    .pursuit-item-cont .art-hidden {
        display: none;
        margin-top: 20px;
    }
    .dynamic-items {
        width: 68%;
    }
    .dynamic .more {
        margin-top: 70px;
    }
    .footer {
        bottom: 20px;
    }
    .pursuit {
        width: 55%;
        margin-right: 4%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .navbar-main li.current p a {
        font-size: 28px;
        color: #000;
        display: inline-block;
        transition: color .5s linear;
        text-decoration: none;
        font-weight: bolder;
        font-style: italic;
        padding-left: 50px;
    }
    .navbar-main {
        padding-right: 180px;
    }
    ul.gnav_sub {
        right: 60px;
    }
    .navbar-main ul.child {
        padding-left: 50px;
    }
    ul.gnav_sub ul li a img {
        width: 30px;
        height: 30px;
    }
    ul.gnav_sub ul li a {
        padding: 10px;
    }

    .navbar-brand {
        height: 53px;
    }
    #specs-section .specs-wrapper .specs-items-block .specs-items .specs-item p {
        font-size: 26px;
        line-height: 1.4333;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-right .sp-line:after {
        width: 91px;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers {
        top: 20px;
        width: 110px;
    }
    .specs-wrapper .d-flex .specs-main {
        width: 550px;
        left: 5%;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-left {
        width: 40px;
    }
    .product{
        width: 80%;
    }
    .pursuit {
        width: 80%;
        float: none;
        position: relative;
        top: 33%;
        margin: auto;
    }
    .pursuit-item {
        width: 49%;
        float: left;
        position: relative;
        margin-bottom: 0.7%;
        overflow: hidden;
    }
    .pursuit-item:nth-child(2n){
        margin-left: 0.5%;
        margin-right: 0;
    }
    .pursuit-item:nth-child(2n+1){
        margin-right: 0.5%;
    }
    .pursuit-item-cont .art h2 {
        color: white;
        line-height: 22px;
        font-size: 18px;
        margin: 0;
    }
    .pursuit-item:hover .pursuit-item-cont {
        height: 100%;
        padding: 10% 0 0 30px;
    }
    .dynamic-items {
        width: 68%;
    }
    .dynamic .more {
        margin-top: 70px;
    }
    .footer {
        bottom: 20px;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .navbar-main ul.not-child{
        height: 0px!important;
    }
    .navbar-brand {
        padding: 20px;
    }
    .navbar-header .navbar-brand img {
        width: 350px;
    }

    .navbar-main {
        padding-right: 0px;
        padding-top: 130px;
        display: block;
        width: 100%;
        height: 100%;
    }
    .navbar-main>ul {
        display: block;
        margin: 0;
        padding: 0;
        padding-top: 5%;
        overflow-y:auto; 
    }
    .navbar-main li.current p a {
        font-size: 22px;
        color: #000;
        display: inline-block;
        transition: color .5s linear;
        text-decoration: none;
        font-weight: bolder;
        font-style: italic;
        padding-left: 40px;
        line-height: 21px;
    }
    .navbar-main li.current p a span {
        display: block;
        font-size: 15px;
        transition: color .5s linear;
        color: #000;
        margin-left: 0px;
        font-style: normal;
        margin-bottom: 5px;
    }
    .navbar-main ul.child {
        margin-top: 0;
        height: 35px;
        padding-left: 40px;
    }
    ul.gnav_sub {
        position: absolute;
        right: 0;
        top: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 120px;
        padding-top: 50px;
        z-index: 999;
        text-align: center;
    }
    ul.gnav_sub li{
        display: inline-block;
    }
    ul.gnav_sub ul {
        padding: 0;
        margin: 0;
        display: block;
    }
    ul.gnav_sub ul li {
        margin-top: 0;
        margin-right: 30px;
        float: left;
    }
    ul.gnav_sub ul li:last-child {
        margin-right: 0;
    }
    ul.gnav_sub ul li a {
        padding: 15px;
    }
    ul.gnav_sub ul li a img {
        width: 25px;
        height: 25px;
    }
    #specs-section .specs-wrapper .specs-items-block .specs-items .specs-item p {
        font-size: 22px;
        line-height: 1.4333;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers {
        top: 18px;
        width: 90px;
    }
    .specs-wrapper .d-flex .specs-main {
        width: 550px;
        left: 5%;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-left {
        width: 35px;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-right .sp-dashes .sp-dash {
        position: relative;
        display: block;
        width: 15px;
        height: 15px;
        border-top: 1px solid #7D868B;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-right .sp-line:after {
        content: ' ';
        position: absolute;
        top: 0;
        left: 100%;
        height: 1px;
        width: 79px;
        background: #004F9A;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-left {
        width: 35px;
        height: 15px;
        top: 8px;
    }
    #specs-section .specs-wrapper .specs-pointers-block .specs-pointers .sp-left .sp-number, #specs-section .specs-wrapper .specs-pointers-block .specs-pointers .sp-left .sp-numbers-spacer {
        position: relative;
        display: block;
        font-size: 13px;
        font-weight: 400;
        color: #004F9A;
        line-height: 1;
        height: 20px;
    }
    .swiper-pagination {
        bottom: 10px;
        left: 0;
        margin-left: 0;
    }

    .pursuit {
        width: 101%;
        float: none;
        position: relative;
        top: 33%;
        margin-right: 0;
    }
    .pursuit-item {
        width: 49%;
        float: left;
        position: relative;
        margin-bottom: 0.7%;
        overflow: hidden;
    }
    .pursuit-item:nth-child(2n){
        margin-left: 0.5%;
        margin-right: 0;
    }
    .pursuit-item:nth-child(2n+1){
        margin-right: 0.5%;
    }
    .pursuit-item-cont .art h2 {
        color: white;
        line-height: 20px;
        font-size: 15px;
        margin: 0;
    }
    .pursuit-item-cont .art-hidden p {
        font-size: 13px;
    }
    .pursuit-item-cont .art-hidden p:before {
        top: 6px;
    }
    .pursuit-item-cont {
        padding: 10px 10px;
    }
    .pursuit-item:hover .pursuit-item-cont {
        height: 100%;
        padding: 10% 10% 0 10%;
    }
    .dynamic-items {
        width: 68%;
    }
    .dynamic .more {
        margin-top: 70px;
    }
    .footer {
        bottom: 20px;
    }
}
@media (max-width: 768px){
    #specs-image-1{
        background: url(../images/banner1-SP.jpg);
        background-position: center; 
        background-size: cover;
    }
    #specs-image-2{
        background: url(../images/banner2-SP.jpg);
        background-position: center; 
        background-size: cover;
    }
    #specs-image-3{
        background: url(../images/banner3-SP.jpg);
        background-position: center; 
        background-size: cover;
    }
    #specs-image-4{
        background: url(../images/banner4-SP.jpg);
        background-position: center; 
        background-size: cover;
    }
    #specs-image-5{
        background: url(../images/banner5-SP.jpg);
        background-position: center; 
        background-size: cover;
    }
    .navbar-main li.current+li.current {
        margin-top: 15px;
    }
}
@media (max-width: 479px) {

    .navbar {
        min-height: 40px;
    }
    .navbar-brand {
        height: 40px;
    }
    .xs-hidden{
        display: none;
    }
    .xs-visiable{
        display: block;
    }
    .navbar .navbar-header .navbar-toggle .icon-art{
        display: none;
    }
    .navbar .navbar-header .collapsed .icon-art{
        display: none;
    }
    .navbar-toggle .icon-bar {
        width: 28px;
    }
    .navbar-header .navbar-brand img {
        width: 270px;
    }
    .navbar-toggle {
        padding: 14px 10px;
    }
    .navbar-main {
        width: 100%;
        height: 100%;
        padding-right: 0px;
        padding-top: 110px;
        display: block;
    }
    .navbar-main>ul {
        display: block;
        background-color: #EDEDED;
        padding: 0;
        padding-top: 5%;
        overflow-y: auto;
    }
    .navbar-main li.current p a {
        font-size: 20px;
        padding-left: 30px;
        line-height: 18px;
    }
    .navbar-main li.current p a span {
        display: block;
        font-size: 15px;
        margin-left: 0px;
        margin-bottom: 5px;
    }
    .navbar-main ul.child {
        margin-top: 0px;
        height: 30px;
        padding-left: 30px;
    }
    .navbar-main ul.not-child{
        height: 0px!important;
    }
    .navbar-main ul.child li:first-child a {
        padding: 0 20px 0 0;
    }
    .navbar-main ul.child li a {
        padding: 0 20px;
        font-size: 15px;
    }

    ul.gnav_sub {
        position: absolute;
        right: 0;
        top: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100px;
        padding-top: 50px;
        z-index: 999;
        text-align: center;
    }
    ul.gnav_sub li{
        display: inline-block;
    }
    ul.gnav_sub ul {
        padding: 0;
        margin: 0;
        display: block;
    }
    ul.gnav_sub ul li {
        margin-top: 0;
        margin-right: 20px;
        float: left;
    }
    ul.gnav_sub ul li:last-child {
        margin-right: 0;
    }
    ul.gnav_sub ul li a {
        padding: 10px;
    }
    ul.gnav_sub ul li a img {
        width: 20px;
        height: 20px;
    }


    #specs-section .specs-wrapper .specs-items-block .specs-items .specs-item p {
        font-size: 22px;
        line-height: 1.4333;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers {
        top: 18px;
        width: 90px;
    }
    .specs-wrapper .d-flex .specs-main {
        width: 550px;
        left: 0%;
        top: 15%;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-left {
        width: 35px;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-right .sp-dashes .sp-dash {
        position: relative;
        display: block;
        width: 15px;
        height: 15px;
        border-top: 1px solid #7D868B;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-right .sp-line:after {
        width: 79px;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-left {
        width: 35px;
        height: 15px;
        top: 8px;
    }
    #specs-section .specs-wrapper .specs-pointers-block .specs-pointers .sp-left .sp-number, #specs-section .specs-wrapper .specs-pointers-block .specs-pointers .sp-left .sp-numbers-spacer {
        position: relative;
        display: block;
        font-size: 13px;
        font-weight: 400;
        color: #004F9A;
        line-height: 1;
        height: 15px;
    }
    .product {
        width: 80%;
        right: 0;
        float: none;
        margin: auto;
        top: 24%;
        position: relative;
    }
    .swiper-pagination {
        bottom: -40px;
        left: 0;
        margin-left: 0;
    }
    .more {
        width: 130px;
        
        font-size: 12px;
        margin-top: 20px;
    }
    .pursuit {
        width: 101%;
        float: none;
        position: relative;
        top: 26%;
        margin: auto;
        margin-left: 0;
    }
    .pursuit-item {
        width: 49%;
        float: left;
        position: relative;
        margin-bottom: 1%;
        overflow: hidden;
    }
    .pursuit-item:nth-child(2n){
        margin-left: 0.5%;
        margin-right: 0;
    }
    .pursuit-item:nth-child(2n+1){
        margin-right: 0.5%;
    }
    .pursuit-item:hover .pursuit-item-cont {
        padding: 20% 10% 0 10%;
    }
    .pursuit-item-cont .art h2 {
        color: white;
        line-height: 18px;
        font-size: 15px;
        margin: 0;
    }
    .pursuit-item-cont .art-hidden {
        /*margin-top: 10px;*/
    }
    .pursuit-item-cont .art-hidden p {
        margin: 0;
        color: white;
        position: relative;
        line-height: 1.3333;
        font-size: 15px;
        padding-left: 7px;
    }
    .pursuit-item-cont .art-hidden p:before {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        position: absolute;
        background-color: white;
        left: 0;
        top: 5px;
    }

    .dynamic {
        top: 25%;
    }
    .dynamic-items {
        width: 90%;
    }
    .dynamic-item {
        padding: 10px 15px;
        font-size: 15px;
    }
    .dynamic-item-NEW {
        width: 35px;
        height: 14px;
        line-height: 14px;
    }
    .dynamic .more {
        margin-top: 30px;
    }
    .footer {
        bottom: 10%;
    }
    .footer p {
        font-size: 12px;
    }
}
@media (max-width: 375px){
    .navbar-brand {
        padding: 18px 15px;
    }
    .navbar-header .navbar-brand img {
        width: 230px;
    }

    .navbar-main li.current p a {
        font-size: 18px;
        padding-left: 20px;
        line-height: 17px;
    }
    .navbar-main li.current p a span {
        font-size: 13px;
        margin-bottom: 3;
    }
    .navbar-main ul.child {
        padding-left: 20px;
    }

    .navbar-main ul.child li a {
        font-size: 13px;
    }
    .navbar-main ul.child li:after {
        top: 6px;
        height: 13px;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-right .sp-line:after {
        width: 63px;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers {
        top: 8px;
        width: 85px;
    }
    #specs-section .specs-wrapper .specs-items-block .specs-items .specs-item p {
        font-size: 16px;
        line-height: 1.4333;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-left {
        width: 32px;
        height: 15px;
        top: 7px;
    }
    .specs-wrapper .specs-pointers-block .specs-pointers .sp-right .sp-dashes .sp-dash {
        position: relative;
        display: block;
        width: 15px;
        height: 10px;
        border-top: 1px solid #7D868B;
    }
    .pursuit-item-cont {
        padding: 10px 15px;
    }
    .pursuit-item-cont .art h2 {
        color: white;
        line-height: 20px;
        font-size: 15px;
        margin: 0;
    }
    .pursuit-item:hover .pursuit-item-cont {
        padding: 20% 8% 0 8%;
    }
    .pursuit-item-cont .art-hidden {
        margin-top: 25px; 
    }
    .pursuit-item-cont .art-hidden p {
        line-height: 1.3333;
        font-size: 13px;
        padding-left: 7px;
    }
    .dynamic-item {
        padding: 10px 15px;
        font-size: 13px;
    }
    .dynamic-item-NEW {
        width: 35px;
        height: 14px;
        line-height: 14px;
    }
    .dynamic .more {
        margin-top: 30px;
    }
    .footer {
        bottom: 10%;
        padding: 0 6%;
    }
    .footer p{
        margin-bottom: 5px;
    }
}
@media (max-width: 320px){
    .navbar-main {
        padding-top: 100px;
    }
    .navbar-toggle {
        padding: 10px 10px;
    }
    .navbar-main li.current p a {
        font-size: 18px;
        color: #000;
        display: inline-block;
        transition: color .5s linear;
        text-decoration: none;
        font-weight: bolder;
        font-style: italic;
        padding-left: 20px;
    }
    .navbar-main ul.child {
        display: block;
        padding: 0;
        margin-top: 0px;
        height: 23px;
        padding-left: 25px;
    }
    .navbar-main ul.child li a {
        font-size: 12px;
    }
    .navbar-main ul.child li:after {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: 6px;
        width: 2px;
        height: 12px;
        background: #464b4b;
        -ms-transform: rotate(20deg);
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    ul.gnav_sub ul li {
        margin-right: 15px;
    }
    ul.gnav_sub {
        padding-top: 40px;
    }
    .pursuit-item-cont {
        padding: 10px 15px;
    }
    .pursuit-item-cont .art h2 {
        line-height: 18px;
        font-size: 12px;
        margin: 0;
    }
    .pursuit-item:hover .pursuit-item-cont {
        padding: 15% 8% 0 8%;
    }
    .pursuit-item-cont .art-hidden {
        margin-top: 25px; 
    }
    .pursuit-item-cont .art-hidden p {
        line-height: 1.3333;
        font-size: 12px;
        padding-left: 7px;
    }
    .dynamic-item {
        padding: 10px 15px;
        font-size: 13px;
    }
}

ul.gnav_sub ul li:hover {
    background: #fff;
}
.head_hover_s{
    display: none;
}

ul.gnav_sub ul li:hover .head_hover{
    display: none;
}
ul.gnav_sub ul li:hover .head_hover_s{
    display: block;
}
.header_logo{
    position: absolute;
    max-width: 80px;
    right: 120px;
    bottom: 25px;
    
}
@media (max-width: 1200px) and (min-width: 992px){
   .header_logo{
         right: 68px;
        
   } 
}


@media (max-width: 991px) and (min-width: 768px){
.header_logo{
   
  
    right:22px;
   
}

}
@media (max-width: 767px){
.header_logo{
    display: none;
}

}