* {
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/*hi-div*/
.hi-div {
    height: 65px;
    width: 100%;
    padding: 10px;
    position: relative;
    background-color: #fff;
}
.hi-dp-name {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.hi-dp-name .hi-dp {
    width: 45px;
    height: 45px;
    margin-right: 10px;
}
.hi-dp-name .hi-dp img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.hi-dp-name .hi-name {
    margin: 0;
    font-size: 16px;
}
.hi-list {
    width: 100px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}
.hi-list .hi-item {
    margin: auto;
    position: relative;
}
.hi-list .hi-item a {
    text-decoration: none;
    color: rgba(14,71,161);
    font-size: 18px;
}
.hi-list .hi-item a .gift-box {
    width: 18px;
    height: 18px;
}
.hi-list .hi-item .item-tag {
    position: absolute;
    top: -5px;
    right: -10px;
    font-size: 7px;
    color: #ff0000;
    background-color: #eeeeee;
    border-radius: 5px;
    padding: 1px;
}

/*nav-menu*/
.nav-menu {
    width: 100%;
    height: 100px;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px 0;
    background-color: #fff;
    box-shadow: 0 -1px 2px #eee;
    z-index: 200;
}
.nav-list {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.nav-list .active i {
    color: #eee;
}
.nav-list .nav-link {
    display: inline-flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}
.nav-link i {
    font-size: 40px;
    color: rgba(14,71,161);
}
.nav-link .link-name {
    font-size: 16px;
    color: #333;
    padding-top: 5px;
}
.nav-cover {
    height: 100px;
}
.footer-div {
    width: 100%;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(14,71,161);
    background-color: #fff;
}
.footer-div p {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    color: rgba(14,71,161);
}
#scroll-btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background-color: rgba(14,71,161);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: 0.3s ease;
    animation: scrollbtn 0.5s ease-in-out;
}
@keyframes scrollbtn {
    from {right: -45px; opacity: 0;}
    to {right: 10px; opacity: 1;}
}


@media screen and (max-width: 768px) {
    /*hi-div*/
    .hi-div {
        height: 65px;
        width: 100%;
        padding: 10px;
        position: relative;
        background-color: #fff;
    }
    .hi-dp-name {
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .hi-dp-name .hi-dp {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }
    .hi-dp-name .hi-dp img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }
    .hi-dp-name .hi-name {
        margin: 0;
        font-size: 16px;
    }
    .hi-list {
        width: 100px;
        list-style-type: none;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
    }
    .hi-list .hi-item {
        margin: auto;
        position: relative;
    }
    .hi-list .hi-item a {
        text-decoration: none;
        color: rgba(14,71,161);
        font-size: 18px;
    }
    .hi-list .hi-item a .gift-box {
        width: 18px;
        height: 18px;
    }
    .hi-list .hi-item .item-tag {
        position: absolute;
        top: -5px;
        right: -10px;
        font-size: 7px;
        color: #ff0000;
        background-color: #eeeeee;
        border-radius: 5px;
        padding: 1px;
    }

    /*nav-menu*/
    .nav-menu {
      height: 70px;
    }
    .nav-link i {
        font-size: 20px;
        color: rgba(14,71,161);
    }
    .nav-link .link-name {
        font-size: 12px;
        padding-top: 3px;
    }
    .nav-cover {
        height: 70px;
    }
    .footer-div p {
        font-size: 12px;
    }
  }