/* reset css */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 48px;
}


/* main */

#main {}

#header {
    height: 46px;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

#nav {
    display: inline-block;
}

#nav>li {
    display: inline-block;
}

#nav li {
    position: relative;
}

#nav>li>a {
    text-transform: uppercase;
    color: #fff;
}

#nav li a {
    text-decoration: none;
    line-height: 46px;
    padding: 0 24px;
    display: block;
}

#nav .nav-arrow-down {
    font-size: 13px;
}

#navbar {
    color: red;
}

#navbar:hover {
    transform: translate(-35%, -140px);
    transition: transform 2s;
}

.repack {
    margin-top: 50px;
    padding: 10px 10px;
    text-align: justify;
}

.repack>h1>span {
    line-height: 46px;
    text-underline-offset: 10px;
    color: blue;
    text-decoration: underline overline rgb(182, 42, 42) solid 7px;
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.1;
    }
}

.repack ul {
    padding: 0 5%;
    margin-bottom: 50px;
}

.repack ul li {
    line-height: 30px;
}

.repack ul li a {
    text-transform: capitalize;
}

.home {
    text-align: center;
    padding-top: 100px;
    min-height: 1080px;
    background-color: #ccc;
}

.pitvn {
    min-height: 1080px;
}

.bas-team {
    min-height: 1080px;
    background-color: #ccc;
}

.congbang {
    min-height: 1080px;
}


/* .footer {
    min-height: 1080px;
    background-color: #ccc;
} */

.frame {
    width: 100%;
    min-height: 1080px;
}


/* responsive */

@media only screen and (max-width: 1024px) {
    #nav li a {
        text-decoration: none;
        line-height: 46px;
        padding: 0 5px;
        display: block;
    }
    #header {
        text-align: center;
    }
    #navbar:hover {
        transform: translateY( -170px);
        transition: transform 2s;
    }
}