header{
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
}

.head{
    padding: 20px 0;

}

.head>.head-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head__logo{
    flex-shrink: 0;
}

.head__logo a img{
    height: 60px;
}


.head-container{
    width: 1170px;
    margin: 0 auto;
}

header nav{
    border-top: 1px solid #777777;
    border-bottom: 1px solid #777777;
    position: relative;
    z-index: 999;
    background-color: #fff;
}
.nav__list{
    display: flex;
}

.nav__item a{
    display: block;
    font-size: 16px;
    line-height: 66px;
    height: 100%;
    padding: 0 15px;
    color: #282828;
}

.nav__item--lang{
    margin-left: auto;
}

.nav__item.haschlid{
    position: relative;
}

.sub__list{
    position: absolute;
    top: 100%;
    display: none;
    width: max-content;
    background-color: rgba(3, 57, 119, 1);
}

.sub__item{
    flex-shrink: 0;
}

.sub__item a{
    display: block;
    font-size: 14px;
    line-height: 66px;
    height: 100%;
    padding: 0 20px;
    color: #fff;
}

.nav__list::after{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 66px;
    content: "";
    background-color: rgba(3, 57, 119, 1);
    z-index: -1;
    overflow: hidden;
    opacity: 0;
    transition: .3s ease;
}

.nav__list.show-after::after{
    overflow: visible;
    opacity: 1;
}

.nav__item:hover .sub__list{
    display: flex;
}

.head__operation-open{
    display: none;
}

.head__operation-close{
    display: none;
}

.list-banner{
    margin-top: 172px;
}

@media (max-width:1399px) {
    .head-container{
        width: 90%;
    }
}

@media (max-width:1200px) {
    .nav__item a{
        padding: 0 12px;
    }
}

@media (max-width:1024px) {
    .nav__list{
        flex-direction: column;
        padding: 10px 0;
    }

    .head__operation-open{
        display: block;
    }

    .head__logo a img{
        height: 40px;
    }

    .nav__item a{
        line-height: 45px;
    }

    .nav__item--lang{
        margin-left: 0;
    }

    .nav__list::after{
        display: none;
    }

    header nav{
        width: 100%;
        height: calc(100vh - 84px);
        position: absolute;
        top: 100%;
        left: 0;
        transform: translateX(100%);
        transition: transform .3s ease;
        border-bottom: none;
    }

    .sub__list{
        position: static;
        display: block;
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        background-color: transparent;
        box-sizing: border-box;
        height: 0;
        overflow: hidden;
        transition: height .3s ease;
    }

    .sub__item a{
        color: #282828;
    }

    .list-banner{
        margin-top: 82px;
    }

}


.list-banner img{
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
    
}

.contact__card{
    margin-top: 20px;
}

.contact__card img{
    width: 100%;
}

.contact__menu-title{
    background-color: #033977;
    padding: 20px;
    text-align: center;
}

.contact__menu-title h1{
    font-weight: 400;
    font-size: 27px;
    color: #fff;
    line-height: 1.4;
}

.contact__menu-list{
    min-height: 310px;
    background: url(/Web/img/contact_cardbg.jpg) no-repeat;
    background-size: cover;
    padding: 12px 20px;
}

.contact__menu-item{
    border-bottom: 1px dashed #BCC6D1;
}

.contact__menu-item a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    gap: 30px;
}

.contact__menu-item a p{
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    color: #808080;
    transition: all .3s ease;
}

.contact__menu-item a svg{
    opacity: 0;
    transition: .3s ease;
    flex-shrink: 0;
}

.contact__menu-item:hover a p{
    font-weight: 600;
    color: #033977;
}

.contact__menu-item:hover a svg{
    opacity: 1;
}


.contact__menu-item.active a p{
    font-weight: 600;
    color: #033977;
}

.contact__menu-item.active a svg{
    opacity: 1;
}

.footer > p{
    line-height: 2;
    font-size: 12px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
}


.blogroll__wrapper{
    width: 100%;
    background-color: #fff;
}

.blogroll__container{
    width: 100%;
}

.blogroll__list{
    width: 100%;
    display: flex;
    align-items: center;

}

.blogroll__item{
    flex: 1;
    height: max-content;
}

.blogroll__item img{
    width: 100%;
    height: auto;
}

/* .page-content-main img{
    width: 100%;
} */


@media (max-width:768px) {
   .list-banner img{
        height: 150px;
    } 

    .contact__menu-title{
        padding: 20px;
    }

    .contact__menu-title h1{
        font-size: 22px;
    }

    .contact__card{
        display: none;
    }
    .footer p{
        flex-direction: column;
        gap: 5px;
    }

    .blogroll__list{
        flex-direction: column;
    }

    .blogroll__item img{
        height: 60px;
    }
}
