/* @charset "utf-8"; */

/* @font-face {
    font-family: 'DIN-Black';
    src: url('../fonts/din-black.woff2') format('woff2'),
        url('../fonts/din-black.woff') format('woff'),
        url('../fonts/din-black.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;

} */

.mobile_bg {
    width: 100%;
    height: 100%;
    z-index: 90;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
}

.gp-menu {
    width: 100%;
    z-index: 12098;
    height: 100%;
    position: relative;
    display: none;
}

.gp-menu-header {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 996;
    width: 10%;
    display: none;
}

.gp-menu-link {
    float: left;
    line-height: 40px;
    height: 40px;
    padding-left: 15px;
}

.gp-menu-link a {
    color: #fff;
}

.gp-menu-header-icon {
    color: #821b1e;
    height: 40px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 40px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    margin-right: 5px;
    cursor: pointer;
}

.gp-menu-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 2px) / 3);
    width: 27px;
    height: 3px;
    background-color: #065895;
}

.gp-menu-header-icon-out span {
    width: 27px;
    height: 4px;
    background-color: #fff;
    display: block;
    border-radius: 4px;
}

.gp-menu-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.gp-menu-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

.gp-menu-header-icon-out span:nth-child(3) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outthird;
}

.gp-menu-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.gp-menu-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.gp-menu-header-icon span:nth-child(3) {
    transform: translateY(-4px) rotate(0deg);
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

@keyframes outthird {
    0% {
        transform: translateY(0) rotate(90deg);
    }

    100% {
        transform: translateY(12px) rotate(0deg);
    }
}

.gp-menu-header-icon-click span {
    background-color: #fff;
    top: calc((100% - 2px) / 2.1);
}

.gp-menu-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.gp-menu-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

.gp-menu-header-icon-click span:nth-child(3) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickthird;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

@keyframes clickthird {
    0% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

.gp-menu-nav {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0px;
    padding-top: 66px;
    padding-bottom: 20px;
    background: #314AD1;
    display: none !important;
}


.gp-menu-nav>ul {
    width: 100%;
}

.gp-menu-nav>ul li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

.gp-menu-nav>ul.gp-avg-1>li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.gp-menu-nav>ul.gp-avg-1>li>a {
    display: inline-block;
    padding: 14px 0 14px 25px;
    font-size: 1.6rem;
}

.gp-menu-nav>ul>li>ul {
    background: rgba(0, 0, 0, 0.1);
    padding: 0 25px
}

.gp-menu-nav>ul>li>ul a {
    display: inline-block;
    padding: 10px 0;
}

.gp-menu-arrow {
    cursor: pointer;
    width: 30px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 2rem;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.gp-menu-arrow img {
    display: inline-block;
    width: 8px;
    margin: 0 auto;
}

.gp-menu-nav>ul>li.on .gp-menu-arrow {
    transform: rotate(90deg);
}

.gp-menu-nav li ul {
    display: none;
}

.gp-menu-nav a {
    color: #fff;
}

.open .gp-menu-link {
    display: none;
}

.open .gp-menu-header {
    background: none;
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}



.bg-black span {
    background: #c7000a;
}

.gp-menu-nav.gp-menu-dropdown2 {
    background: #F5F5F5;
}

.gp-menu-nav.gp-menu-dropdown2>ul {
    position: relative;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li {
    border-bottom: none;
    position: static;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>a {
    padding: 0;
    display: block;
    text-align: center;
    height: 50px;
    line-height: 50px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0 5px;
    position: relative;
    z-index: 900;
    color: #333;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>a.icon-down:after {
    content: "\e73a";
    font-size: 1.4rem;
    margin-left: 5px;
    transition: all 0.3s;
    display: inline-block;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>a.icon-down:before {
    content: '';
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #000;
    position: absolute;
    left: 50%;
    bottom: -100%;
    margin-left: -5px;
    opacity: 0.2;
    transition: all 0.3s;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li.on>a.icon-down:before {
    bottom: 0;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>ul {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, .15);
    right: 5px;
    padding: 8px 0;
    text-align: center;
}

.gp-menu-nav.gp-menu-dropdown2>ul>li>ul a {
    color: #666
}

.gp-menu-nav.gp-menu-dropdown2>ul li {
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none
}

.gp-menu-nav.gp-menu-dropdown2>ul>li.on>a.icon-down:after {
    transform: rotate(180deg);
}


.gp-menu-nav.gp-menu-offcanvas1 {
    position: fixed;
    display: block;
    transform: translate(-150%, 0);
    transition: all 1s ease-in-out;
    width: 85%;
    right: auto;
    left: 0
}

.open .gp-menu-offcanvas1 {
    transform: translate(0, 0);
    position: absolute;
}


.gp-menu-nav.gp-menu-offcanvas2 {
    position: fixed;
    display: block;
    transform: translate(150%, 0);
    transition: all 1s ease-in-out;
    width: 100%;
}

.open .gp-menu-offcanvas2 {
    transform: translate(0, 0);
    position: absolute;
}

.gp-search {
    width: 206px;
    overflow: hidden;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
    background: #fff;
    border-radius: 30px;
    position: absolute;
    top: calc(50% - 15px);
    right: 0;
}

.gp-ser {
    width: 100%;
    height: 32px;
    z-index: 9999994;
    margin: 0 auto;
    position: relative;
}

.gp-search button {
    position: absolute;
    height: 37px;
    line-height: 37px;
    border: none;
    background: none;
    top: 0px;
    overflow: hidden;
    background: #E7E7E7 !important;
}

.gp-search input, .gp-search button {
    position: absolute;
    height: 32px;
    /* line-height: 32px; */
    border: none;
    background: none;
    top: 0px;
    overflow: hidden;
}

.gp-search input.notxt {
    color: #a4a4a4;
    width: calc(100% - 30px);
    left: 0;
    padding: 0 7%;
    box-sizing: border-box;
    outline: none;
}

.gp-search .notxt1 {
    position: absolute;
    width: 30px;
    right: 0;
    cursor: pointer;
    color: #666;
}


.nav ul li:hover .subNav {
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
    animation-duration: 0.6s;
    -webkit-animation-duration: 0.6s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
    display: block;
}

.fadeInUpSmall {
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
    animation-duration: 0.4s;
    -webkit-animation-duration: 0.4s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
    display: block;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes fadeInUpSmall {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20px, 0);
        -ms-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

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

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}


.nav li {
    display: block;
    /* text-align: center; */
    position: relative;
}


.subNav {
    width: 120px;
    position: absolute;
    padding-bottom: 4px;
    left: calc(50% - 60px);
    top: 43px;
    display: none;
    background: #314AD1;
    z-index: 100;
}

.subNav a {
    font-size: 15px;
    line-height: 20px;
    padding: 8px 10px;
    text-align: center;
    color: #fff;
    display: block;
    /* margin: 0px 12%; */
}

.nav li:hover .subNav {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    animation-duration: 0.6s;
    -webkit-animation-duration: 0.6s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
    display: block;
}

.header {
    background: #314AD1;
}

.header .gp-container {
    position: relative;
}

.logo {
    display: inline-block;
    padding: 30px 0 20px;
    box-sizing: border-box;
}

.logo span {
    display: inline-block;
    width: 2px;
    height: 45px;
    background: rgba(255, 255, 255, .1);
    margin: 0 5px;
}

.logo1, .logo2, .logo span {
    display: inline-block;
    vertical-align: middle;
}

.logo1 {
    max-width: 277px;
}

.logo2 {
    max-width: 454px;
    margin: 0 10px 0 0;
}

/* nav */
.nav1 {
    text-align: justify;
    position: relative;
    margin-bottom: -24px;
}

.nav1::after {
    content:
        '';
    display: inline-block;
    height: 0;
    width: 100%;
}

.nav ul li {
    display: inline-block;
    position: relative
}

.nav ul li>a {
    font-size: 1.8rem;
    display: block;
    width: 100%;
    color: #333;
    line-height: 1.28;
    padding: 11px 0;
    box-sizing: border-box;
    position: relative;
}

.nav ul li.on>a {
    background: #fff;
    color: #314AD1;
}



.nav ul li.on .subNav {
    display: block;

}

.nav ul li.on .subNav dl {
    overflow: hidden;
}

.nav ul li.on .subNav dl dd {
    height: auto;
    line-height: 20px;
    text-align: left;
}

.nav ul li.on .subNav dl dd a {
    display: block;
    line-height: 22px;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    padding: 8px 10px 8px 10px;
}



.nav ul li.on .subNav dl dd a:hover {
    color: #fff;
    background-color: #8c0000;
}

.subNav dd:hover a {
    font-weight: bold;
}


/* footer */
footer {
    padding: 23px 0 14px;
    box-sizing: border-box;
    background: #314AD1;
}

.footertxt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footertxt p {
    line-height: 1.28;
}

@media screen and (min-width: 996px) {
    .effect0 {
        opacity: 0;
        transition: all 0.8s ease-out;
    }

    .effect0.isView {
        opacity: 1;
        -webkit-animation-name: effect0;
        animation-name: effect0;
    }

    @-webkit-keyframes effect0 {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes effect0 {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .effect1, .effect11, .effect11 li {
        opacity: 0;
        transition: all 1.5s ease-out;
        transform: translateY(70px);
    }

    .effect1.isView, .effect11.isView, .effect11.isView li {
        opacity: 1;
        transform: none;
        -webkit-animation-name: effect1;
        animation-name: effect1;
    }

    @-webkit-keyframes effect1 {
        from {
            opacity: 0;
            transform: translateY(70px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    @keyframes effect1 {
        from {
            opacity: 0;
            transform: translateY(70px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    .effect2, .effect21, .effect21 li {
        opacity: 0;
        transition: all 1.5s ease-out;
        transform: translateX(50px);
    }

    .effect2.isView, .effect21.isView, .effect21.isView li {
        opacity: 1;
        transform: none;
        -webkit-animation-name: effect2;
        animation-name: effect2;
    }

    @-webkit-keyframes effect2 {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    @keyframes effect2 {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    .effect3, .effect31, .effect31 li {
        opacity: 0;
        transition: all 1.5s ease-out;
        transform: translateY(-70px);
    }

    .effect3.isView, .effect31.isView, .effect31.isView li {
        opacity: 1;
        transform: none;
        -webkit-animation-name: effect3;
        animation-name: effect3;
    }

    @-webkit-keyframes effect3 {
        from {
            opacity: 0;
            transform: translateY(-70px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    @keyframes effect3 {
        from {
            opacity: 0;
            transform: translateY(-70px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    .effect4, .effect41, .effect41 li {
        opacity: 0;
        transition: all 1.5s ease-out;
        transform: translateX(-50px);
    }

    .effect4.isView, .effect41.isView, .effect41.isView li {
        opacity: 1;
        transform: none;
        -webkit-animation-name: effect4;
        animation-name: effect4;
    }

    @-webkit-keyframes effect4 {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    @keyframes effect4 {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    .effect {
        transition: transform 1s, opacity 1s ease-in-out;
        animation-duration: 1s;
        -webkit-animation-duration: 1s;
        animation-timing-function: ease-in-out;
        -webkit-animation-timing-function: ease-in-out;
    }
}

@media screen and (max-width: 1460px) {
    .gp-container {
        width: 1280px !important;
    }
}

@media screen and (max-width: 1301px) {
    .gp-container {
        width: 1200px !important;
    }


}

@media screen and (max-width: 1201px) {
    .gp-container {
        width: 1090px !important;
    }


}



@media screen and (max-width: 1100px) {
    .gp-container {
        width: 900px !important;
    }

    .logo2 {
        max-width: 354px;
    }
}

@media screen and (max-width:1024px) {}



@media screen and (max-width:997px) {
    .gp-container {
        width: auto !important;
        margin: 0 15px;
    }

    .nav, .gp-search1 {
        display: none !important;
    }


    .gp-menu, .gp-menu-nav {
        display: block !important;
    }

    .gp-menu-header {
        width: 40px;
        top: 44px;
        right: 0;
        display: block;
    }

    .gp-search {
        position: static;
        margin: 14px 25px;
    }

    .footertxt {
        display: block;
        width: 40%;
        margin: 0 auto;
        text-align: center;
    }

    .footertxt p {
        margin-bottom: 10px;
    }
}

@media screen and (max-width:767px) {
    .gp-container {
        width: auto !important;
        margin: 0 15px;
    }


}

@media screen and (max-width:695px) {
    .logo1 {
        max-width: 150px;
    }

    .logo2 {
        max-width: 220px;
    }

    .gp-menu-header {
        top: 20px;
    }

    .logo {
        padding: 15px 0;
    }

    .logo1 {
        max-width: 115px;
    }

    .logo2 {
        max-width: 120px;
    }

    .logo span {
        height: 27px;
        margin: 0 3px;
    }

    .gp-menu-nav {
        padding-top: 40px;
    }
}

@media screen and (max-width:479px) {
    .gp-menu-header-icon {
        transform: scale(.8);
    }

    .footertxt {
        width: 96%;
    }

    .logo1 {
        max-width: 180px;
    }

    .logo2 {
        max-width: 220px;
    }
}

@media screen and (max-width:470px) {
    .logo1 {
        max-width: 150px;
    }

    .logo span {
        height: 18px;
        margin: 0 3px;
    }

    .logo2 {
        max-width: 180px;
    }

    .gp-menu-header {
        top: 15px;
    }
}

@media screen and (max-width:400px) {
    .logo1 {
        max-width: 115px;
    }

    .logo2 {
        max-width: 120px;
    }

    .gp-menu-header {
        top: 12px;
    }
}