/*!
 * style.css for wxdike.com
 * Author WelkinVan < fangwei@wzcoder.com >
 * @Copyright 2005-2018 wzcoder.com (http://www.wzcoder.com)
 * @version 1.0
 * @date 2018-09-10-12:45 PM
 */


/*video::-webkit-media-controls {*/
/*display: none !important;*/
/*}*/

#topbar .topbar-contact a:first-child {
    border-left: 0;
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
#logo {
    position: relative;
}

#logo .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#logo .logo a {
    color: var(--primary-color);
}

#logo .logo img {
    max-height: 80px;
}

#logo .name h3.company-name {
    font-size: 1.5rem;
}

#logo .name h5.top-keyword {
    font-size: 1rem;
    color: var(--primary-color);
}

@media (min-width: 768px) and (max-width: 991.98px ) {
    #logo .logo img {
        max-height: 60px;
    }
}

@media (max-width: 768px) {

    #logo .logo img {
        max-height: 30px;
    }

    #logo .name h3.company-name {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: transparent;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 2px 15px rgb(25 119 204 / 10%);
}

/*#header.header-scrolled {*/
/*    padding: 10px 0;*/
/*}*/


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar > ul > li {
    position: relative;
    /*padding: 8px 30px 8px 30px;*/
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    padding: 8px 30px 8px 30px;
}


.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, .8);
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    bottom: 0;
    background-color: var(--primary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
    z-index: -1;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 15px rgb(25 119 204 / 10%);
    transition: 0.3s;
    border-bottom: 2px solid var(--primary-color);
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: 0;
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/

.mobile-nav-toggle {
    color: var(--primary-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}


.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(4, 12, 21, 0.9);
    transition: 0.5s;
    z-index: 100;
}

.mobile-nav-toggle {
    position: absolute;
    right: 12px;
    z-index: 200;
}


.header-scrolled .navbar-mobile .mobile-nav-toggle {
    top: 25px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 75px;
    right: 0;
    bottom: 15px;
    left: 0;
    padding: 10px 0;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile ul li {
    padding: 0;
}

.navbar-mobile a {
    position: relative;

}

.navbar-mobile a, .navbar-mobile a:focus {
    text-align: right;
    padding: 10px 20px;
    font-size: 15px;
    color: #FFFFFF;
    border: none;
    justify-content: center;
}


.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 0 20px;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    border-bottom: none;
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 5px 0;
    font-size: 14px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

.top-contact {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
}

.top-contact i {
    font-size: 36px;
    color: var(--primary-color);
    margin-right: 5px;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.section-bg {
    background-color: #f6f6f6;
}

.back-to-top {
    visibility: hidden;
    opacity: 0;
    z-index: 996;
    transition: all 0.4s;
}

.img-resize_16x9 {
    position: relative;
    height: 0;
    padding-bottom: 56.25% !important;
    overflow: hidden;
}

.img-resize_16x10 {
    position: relative;
    height: 0;
    padding-bottom: 62.5% !important;
    overflow: hidden;
}

.img-resize_16x9 img {
    max-width: 100%;
    height: auto;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.wrapper-layer {
    position: absolute;
    width: 100%;
    background-color: rgba(0, 0, 0, .05);
}

.image-stripe {
    background-color: rgba(75, 79, 84, .6);
    height: 10px;
    display: block;
}

.product-item-image-stripe {
    background-color: rgba(0, 0, 0, .35);
    height: 10px;
    display: block;
}

.news-item-image-stripe {
    background-color: rgba(255, 255, 255, .35);
    height: 10px;
    display: block;
}

.item-mask-v1 {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    background: rgba(0, 0, 0, 0.4);
    z-index: 50;
}

.header-wrapper {
    margin-top: 10px;
}


.wrapper-layer {
    z-index: 10;
    bottom: -4px;
    height: 4px;
}

.logo-wrapper {
    padding: 15px 0;
    overflow: hidden;
}

.logo-wrapper .img-logo {
    max-height: 100%;
    width: auto;
}

.search-wrapper .btn-search {
    right: 0;
    top: 5px;
    width: 30px;
    height: 30px;
    background-image: url("/static/images/search.svg");
    background-size: 28px 28px;
    background-repeat: no-repeat;
    border: none;
    background-color: transparent;
}

.btn-global {
    line-height: 40px;
}

.btn-global i {
    display: inline-block;
    width: 48px;
    height: 48px;
    vertical-align: middle;
}

.btn-global .dropdown-menu {
    z-index: 999;
}

.language-switcher {
    height: 0;
    border-bottom: 5px solid #4b4f54;
}

.box-lang-v1 .language-item {
    display: block;
    padding: 0.5rem;
}

.language-switcher .language-item i {
    height: 17px;
    width: 47px;
    display: inline-block;
    vertical-align: middle;
}

.language-switcher-close {
    bottom: 5px;
}

.btn-lang-close {
    border: 1px solid transparent;
    background-color: #4b4f54;
    padding: 0.25rem 0.75rem;
}

.top-nav .dropdown-menu {
    border-radius: unset;
    border-radius: 0;
    border: none;
}

header .menu_span {
    float: right;
    width: 40px;
    height: 40px;
    text-align: center;
    position: relative;
}

header .menu_span em {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 0;
}

header .menu_span em i {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    opacity: 1;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}

header .active_span em i:nth-of-type(1) {
    -webkit-transform: rotate(45deg) translate(7px, 6px);
    transform: rotate(45deg) translate(7px, 6px);
}

header .active_span em i:nth-of-type(2) {
    opacity: 0;
}

header .active_span em i:nth-of-type(3) {
    -webkit-transform: rotate(-45deg) translate(7px, -6px);
    transform: rotate(-45deg) translate(7px, -6px);
}

.navbar-toggler {

    padding: 0;
    font-size: 0;

}


.top-nav .nav-item {
    border-right: 1px solid #fff;
}

.top-nav .nav-item:last-child {
    border-right: none;
}

.top-nav .navbar-nav .nav-link {
    padding: 0.5rem 1.5rem;
    font-size: 1.1rem;
    background: #F2F2F2;
}

.top-nav .nav-link span.fa {
    font-size: 0.75rem;
}

.sub-content {
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 1px solid #dadada !important;
}

.sub-content .prodcut-item-v1 .product-item-image-stripe {
    height: 3px;
}

.sub-content .prodcut-item-v1 a {
    padding: 0 !important;
    display: block;
    font-weight: initial;
    text-align: center;
}

.top-nav .nav-link:hover, .top-nav .active {
    background-color: rgba(0, 0, 0, .8) !important;
    color: #ffffff !important;
}

.top-nav .dropdown-toggle::after {
    display: none;
}

/*breadcrumb-v1*/
.breadcrumb-v1 {
    font-size: 14px;
}

.breadcrumb-v1 i.fa {
    margin-right: 0.5rem;
}

.video-v1 {
    z-index: 0;
}

/*index products*/
.prodcut-item-v1 .product-item-image-stripe {
    width: 100%;
    bottom: 0;
}

.prodcut-item-v1 .product-thumb {
    position: relative;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
    background: #FFFFFF;
}

.prodcut-item-v1 .product-thumb-big {
    padding-bottom: 35%;
}

.prodcut-item-v1 .product-thumb img {
    width: 100%;
    height: auto;
}

.prodcut-item-v1 {
    background: linear-gradient(-180deg, #ffffff 0%, #F1F1F1 99%);
}

.prodcut-item-v1 .product-info {
    color: #555555;
    padding: 0.3rem 10px;
}

.p-info-6 {
    min-height: auto;
}

.prodcut-item-v1:hover .product-info {
    background-color: rgba(0, 0, 0, .8);
    color: #FFFFff;
}

.prodcut-item-v1:hover .product-info a {
    color: #FFFFff;
}

.prodcut-item-v1 .product-new {
    left: 1rem;
    top: 1rem;
}

.prodcut-item-v1:hover .product-item-mask {
    background: rgba(0, 0, 0, 0);
}

.prodcut-item-v1:hover .product-item-mask {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    background: rgba(21, 151, 147, 0.6);
    z-index: 100;
}

.prodcut-item-v1 .product-item-href {
    opacity: 0;
}

.prodcut-item-v1:hover .product-item-href {
    display: block;
    z-index: 120;
    opacity: 1;
}

.prodcut-item-v1 .product-new span {
    background: #ff0000;
    padding: 0.25rem 0.75rem;
}

.prodcut-item-v2 .swiper-container {
    width: 100%;
    height: 360px;
}

/*news-item-v1*/
.news-item-v1 .news-item-image-stripe {
    left: 0;
    top: 0;
    width: 100%;
    z-index: 110;
}

.news-item-v1 .box-info {
    padding: 1rem 0;
}

.news-item-v1:hover .news-item-image-stripe {
    background-color: rgba(0, 0, 0, .35);
}

.news-item-v1:hover .news-item-mask {
    background: rgba(0, 0, 0, 0);
}

.news-item-v1:hover .news-item-mask {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    background: rgba(21, 151, 147, 0.6);
    z-index: 100;
}

.news-item-v1 .news-item-href {
    opacity: 0;
}

.news-item-v1:hover .news-item-href {
    display: block;
    z-index: 120;
    opacity: 1;
}

.news-list-v2 .news-list-item:first-child {
    padding-top: 0 !important;
}

.news-list-v2 .news-list-item {
    border-bottom: 1px solid;
}

.news-list-v2 .news-list-item i.fa {
    margin-right: 0.4rem;
}

.news-list-v2 .news-list-item .article-more li {
    margin-right: 1rem;
}

.section-get-in-touch {
    background-image: -webkit-gradient(linear, left top, right top, from(#266F97), to(#159793));
    background-image: -webkit-linear-gradient(left, #266F97, #159793);
    background-image: -moz-linear-gradient(left, #266F97, #159793);
    background-image: linear-gradient(to right, #266F97, #159793);
}

.btn-get-in-touch {
    border-radius: 0;
}

.icon-get-in-touch {
    display: inline-block;
    width: 60px;
    height: 60px;
}

.section-footer-nav {
    background: #4b4f54;
}

footer a, footer {
    color: #d9e1e2;
}

footer a:hover {
    color: #FFFFff;
}

.links-wrapper {
    border-top: solid 1px #7c878e;
    border-bottom: solid 1px #7c878e;
}

.box-article-v1 .box-caption {
    padding: 1.75rem 1rem 1.75rem;
}

.box-article-v1 .image-stripe {
    left: 0;
    bottom: -10px;
    width: 100%;
    z-index: 110;
}

.box-article-v1 .box-thumb {
    max-height: 300px;
}

/*文章组图*/
.article-thumbs {
    width: 100%;
}

.view .swiper-container {
    width: 100%;
    height: 100%;
}

.view .arrow-left {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23159793'%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -25px;
    width: 28px;
    height: 50px;
    z-index: 10;
}

.view .arrow-right {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23159793'%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -25px;
    width: 28px;
    height: 50px;
    z-index: 10;
}

.preview {
    width: 100%;
    margin-top: 10px;
    position: relative;
}

.preview .swiper-container {
    margin-left: 20px;
}

.preview .swiper-slide {
    padding-top: 5px;
    cursor: pointer;
}

.preview .arrow-left {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23159793'%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
    width: 9px;
    height: 18px;
    z-index: 10;
}

.preview .arrow-right {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23159793'%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -9px;
    width: 9px;
    height: 18px;
    z-index: 10;
}

.preview img {
    border: 1px solid transparent;
}

.preview .active-nav img {
    border: 1px solid rgb(21, 151, 147);
}

.preview .active-nav::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border: 5px dashed transparent;
    vertical-align: middle;
    border-bottom-style: solid;
    border-bottom-color: rgb(21, 151, 147);
    position: absolute;
    top: -5px;
    left: 50%;
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.article-content h2 {
    margin-bottom: 1rem !important;
}

.article-dl .files-list i {
    display: inline-block;
    width: 45px;
    height: 45px;
    vertical-align: middle;
    margin-right: 0.5rem;
    background-repeat: no-repeat;
}

.map-canvas {
    height: 500px;
}

.pagination .page-item {
    margin-bottom: 3rem;
}

.case-item-v1 {
    border-bottom: 1px solid #cccccc;
}

.content-body .case-item-v1:first-child {
    padding-top: 0;
}

.case-item-v2 .case-info {
    right: 20px;
    top: 20px;
    left: 20px;
    z-index: 100;
}

.case-item-v2 .case-info p {
    color: #fff;
    margin-bottom: 0;
}

.case-item-v2 .case-info ul {
    color: #FFFFff;
}

.case-item-v2 .case-btn {
    z-index: 100;
    left: 20px;
    bottom: 20px;
}

@media (min-width: 992px ) {
    .sub-navigation {
        padding-top: 127px;
    }
}

.sub-navigation {
    z-index: 20;
    background-color: #999999;
}


.sub-navigation .subnav-bg-wrapper {
    z-index: 30;
    background: #F2F2F2;
    height: 40px;
    line-height: 40px;
}

.active-background {
    background-color: #999999;
    position: absolute;
    height: 40px;
    left: 0;
    top: 0;
    width: 300px;
    -webkit-transition: width 2s;
    transition: width 2s;
}

.active-background:after {
    width: 0;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-left: 18px solid #999999;
    border-bottom: 40px solid #F2F2F2;
    height: 0;
}

.subnav-text-wrap {
    width: 100%;
}

.subnav-text-wrap a {
    margin: 0 1rem;

}

.subnav-text-wrap a.active {
    color: rgb(255, 255, 255);
}

.subnav-text-wrap .title {
    color: #FFFFff !important;
    margin-left: 0;
    margin-right: 1.5rem;
}

.article-block-wrap img {
    max-width: 100%;
    height: auto;
}

.footer-contact-wrapper {
    border-bottom: solid 1px #7c878e;

}

.section-foot-contact p {
    margin-bottom: 0;
}

.social-media a {
    margin-right: 0.5rem
}

.social-media i.fa {
    font-size: 2.4rem;
}

.section-copyright p, .section-copyright ul {
    margin-bottom: 0;
}

.form-wrapper {
    border: 1px solid #dadada;
    padding: 1rem;
}

.list-v1 {
    border-bottom: 1px solid;
}

.service-box {
    right: 5px;
    top: 25%;
}

.service-box ul > li {
    margin-bottom: 0.5rem;
}

.service-box .service-icon {
    width: 60px;
    height: auto;
}

.service-box .qrcode-wrap {
    display: none;
    width: 120px;
    height: 120px;
    left: -135px;
    border: 2px solid #f0f0f0;
    z-index: 9999;
}

.qrcode-wrap :hover {
    display: block;
}

.service-box .qrcode-wrap:after {
    content: "";
    position: absolute;
    top: 45%;
    right: -14px;
    z-index: 100;
    display: block;
    width: 0;
    height: 0;
    border: 7px dashed transparent;
    border-left-color: #f0f0f0;
}

.tooltips-wrap {
    display: none;
    height: 60px;
    line-height: 60px;
    left: -145px;
    background-color: #909090;
    padding: 0 .5rem;
}

.social-media a {
    display: inline-block;
}

.social-media .qrcode-wrap {
    display: none;
    width: 120px;
    height: 120px;
    top: -135px;
    border: 2px solid #f0f0f0;
    z-index: 9999;
}


@media (max-width: 575.98px) {
    body {
        padding-top: 60px;
    }

    .top-header {
        height: 60px;
    }

    .sub-navigation {
        padding-top: 60px;
    }

    .logo-wrapper .img-logo {
        max-height: 30px;
    }

    .btn-global i {
        width: 24px;
        height: 24px;
    }

    .contact-wrapper {
        margin-right: 30px;
    }

    .box-lang-v1 .box-head {
        margin-bottom: 0 !important;
    }

    .box-lang-v1 .box-head h3 {
        font-size: 1.3rem;
    }

    .box-lang-v1 .language-item {

        padding: 0.2rem;

    }

    .search-wrapper {
        width: 100%;
        margin-bottom: 1rem;
    }

    .navbar-form input {
        border-radius: unset;
        border-radius: 0;
    }

    .get-in-touch-wrapper {
        display: block !important;
    }

    .get-in-touch-wrapper h3 {
        font-size: 1.3rem;
    }

    .section-copyright p {
        font-size: 14px;
    }

    .article-content img, .article-content-wrapper img {
        max-width: 100% !important;
        height: auto !important;
    }

}

@media (min-width: 576px) and (max-width: 767.98px) {
    body {
        padding-top: 70px;
    }

    .sub-navigation {
        padding-top: 70px;
    }

    .logo-wrapper .img-logo {
        max-height: 40px;
    }

    .top-header {
        height: 70px;
    }

    .search-wrapper {
        width: 100%;
        margin-bottom: 1rem;
    }

    .navbar-form input {
        border-radius: unset;
        border-radius: 0;
    }

    .top-nav .navbar-nav .nav-link {
        font-size: 1rem;
    }

    .article-content img, .article-content-wrapper img {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }

    .logo-wrapper .img-logo {
        max-height: 50px;
    }

    .top-header {
        height: 75px;
    }

    .right-content .article-block-wrap {
        margin-left: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .logo-wrapper .img-logo {
        max-height: 50px;
    }

    .top-nav .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .news-list-v2 .news-list-item .image-box {
        max-height: 380px;
        overflow: hidden;
    }
}

@media (min-width: 1200px) {
    .logo-wrapper .img-logo {
        max-height: 50px;
    }

    .p-info-6 {
        min-height: 138px;
    }

    .news-list-v2 .news-list-item .image-box {
        max-height: 380px;
        overflow: hidden;
    }

    .right-content .article-block-wrap {
        margin-left: 2.5rem;
    }
}

.contact .info-item {
    width: 100%;
    background-color: #159793;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item:last-child {
    margin-bottom: 0;
}

.contact .info-item i {
    font-size: 20px;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h4 {
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: #fff;
    color: #4b4f54;
}
