body {
    font-size: 16px;
    background-color: #efefef;
}
/**/
.content .btn-content{
    display: inline-block;
    padding: 8px 30px;
    color: white;
    background: #00A3AD;
    border-radius: 30px;
    margin: 15px 0;
    text-decoration: unset;
}
/**/
.box-pagination > nav {
    display: inline-flex;
}
/**/
.header-top{
    background: black;
}
.header-top .logo a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}
.header-top .logo img{
    display: block;
    max-height: 60px;
}
/**/

#search-form {
    position: fixed;
    width: 100%;
    height: 150px;
    top: 0;
    background: white;
    border-bottom: 1px solid #ccc;
    z-index: 9999;
}
#search-form .height {
    height: 150px;
}
#search-form .height .search {
    position: relative;
    box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}
#search-form .height .search input {
    height: 60px;
    text-indent: 25px;
    border: 2px solid #d6d4d4;
}
#search-form .height .search input:focus {
    box-shadow: none;
    border: 2px solid #1875a9;
}
#search-form .height .search i {
    position: absolute;
    top: 22px;
    left: 16px;
}
#search-form .height .search button {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 50px;
    width: 110px;
    background: #1875a9;
}
#search-form .btn_close {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
}

/**/
.main-menu .ul1{    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
    gap: 2rem;
    height: 80px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-menu .ul1 .li1{
    position: relative;
    z-index: 1;
}
.main-menu .ul1 .li-search{
    color: white;
    cursor: pointer;
    padding: 1rem;
}
.main-menu .ul1 .li1 a{
    color: white;
    text-decoration: none;
}
.main-menu .ul1 .li1:hover .ul2{
    display: block;
}
.main-menu .ul1 .li1 .ul2{
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    background-color: white;
    box-shadow: 0 0 10px #ccc;
    display: none;
    z-index: 1;
}
.main-menu .ul1 .li1 .ul2 .li2{
    margin: 0;
    padding: 0;
}
.main-menu .ul1 .li1 .ul2 .li2 a{
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #333;
    white-space: nowrap;
}
/**/
.pro-cate{
    margin-top: 1.5rem;
}
.pro-cate .head{
    display: flex;
    height: 44px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #424242;
}
.pro-cate .head .cate-title{
    position: relative;
    display: flex;
    justify-items: center;
    align-items: center;
    height: 44px;
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #094a82;
    text-transform: uppercase;
    z-index: 1;
}
.pro-cate .head .see-more{
    color: #333;
    text-decoration: unset;
}
.pro-cate .body{
    margin-top: 1.5rem;
}
.col-pro-item{
    overflow: hidden;
}
.product-item{
    transition: 0.3s;
    background-color: white;
}
.product-item:hover{
    transform: scale(1.05);
}
.product-item .name{
    font-size: 1rem;
    font-weight: normal;
}
.product-item .name a{
    margin: 0.5rem;
    text-decoration: unset;
    color: #333;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /* min-height: 72px; */
}
.product-item .star{
    text-align: center;
    color: gold;
}
.product-item .item-btn{
    text-align: center;
}
.product-item .btn-register{
    display: inline-block;
    margin: 0.5rem 0 1rem 0;
    padding: 0.5rem 1rem;
    border: 1px solid #333;
    border-radius: 0.5rem;
    color: #333;
    text-decoration: unset;
}
/* topic */
#topic{
    margin-top: 1.5rem;
}
#topic .line{
    width: 100px;
    height: 1px;
    background-color: #424242;
    margin: 0.5rem auto 1.5rem auto;
}
#topic .head{
    text-align: center;
}
#topic .head .title{
    text-transform: uppercase;
    font-size: 1.5rem;
}
.topic-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #dadada;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    background-color: white;
    padding: 1rem;
    color: #333;
    text-decoration: unset;
    text-align: center;
}
.topic-item:hover{
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}
.topic-item img{
    display: inline-block;
    width: 70px;
    height: 70px;
    object-fit: scale-down;
}
.topic-item .name{
    display: flex;
    flex-direction: row;
    margin: 0.5rem 0;
    font-size: 1rem;
}
.topic-item .name span{
    flex: 0 0 calc(100% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    text-transform: uppercase;
}

.topic-item .name i{
    flex: 0 0 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* docs */
#docs{
    margin-top: 1.5rem;
}
#docs .line{
    width: 100px;
    height: 1px;
    background-color: #424242;
    margin: 0.5rem auto 1.5rem auto;
}
#docs .head{
    text-align: center;
}
#docs .head .title{
    text-transform: uppercase;
    font-size: 1.5rem;
}
.doc-item{
    display: block;
    background-color: white;
    border-radius: 0.5rem;
    text-decoration: unset;
}
.doc-item .name{
    padding: 1rem;
    font-size: 1rem;
    color: #333;
}
/**/
#contact{
    margin-top: 1.5rem;
    background-color: white;
}
.contact-info{
    padding-top: 1.5rem;
}
.contact-info .head{
    text-align: center;
    color: #1875a9;
}
.contact-form{
    padding-top: 1.5rem;
}
.contact-form .btn-send{
    border-color: #094a82;
    background-color: #094a82;
}
/**/
#newsletter {
    background-color: black;
    padding: 1rem 0;
    color: white;
}
.newsletter-info{
    display: inline-block;
    line-height: 38px;
}
/* footer */
footer{
    border-top: 1px solid black;
}
.footer-social .social{
    margin-top: 1.5rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}
.footer-social .social span{
    font-weight: bold;
    font-size: 2.5rem;
    text-transform: uppercase;
}
.footer-social .social a{
    display: flex;
    width: 40px;
    height: 40px;
    background: black;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    text-decoration: unset;
    color: white;
}
.footer-content .policy span{
    font-size: 1.2rem;
    text-transform: uppercase;
}
.footer-content .policy a{
    text-decoration: unset;
    color: #333;
}
.footer-content .links a{
    text-decoration: unset;
    color: #333;
}
.footer-content .footer-img{
    display: flex;
    justify-content: center;
    align-items: center;
}