@import url('https://fonts.googleapis.com/css2?family=Battambang:wght@100;300;400;700;900&family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: "Battambang", system-ui;
    color:rgb(255, 255, 255);
    background-color: #1C1B1B;
}
button{
    font-family: "Battambang", system-ui;
    cursor: pointer;
}
.container{
    width: 1200px;
    margin: auto;
}
section{
    padding-bottom: 120px;
}
.row{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bg-black{
    background-color: #000;
}
header{
    width: 100%;
    height: 70px;
    position: sticky!important;
    top: 0;
    z-index: 299;
    background: #000;    
}
/* topbar */
.topbar{
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.logo img{
    width: 160px;
    display: flex;
    align-items: center;
    
}
.navbar{
    display: flex;
}
.navbar-nav{
    display: flex;
    align-items: center;
    list-style-type: none;
}
.nav-item{
    padding:0 10px;
    position: relative;
    transition: 0.3s;
}
.nav-link{
    text-decoration: none;
    color: #FEA53D;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s;
}
.nav-item:hover .nav-link{
    color: #FFE193;
}

.nav-item:hover .navbar-dropdown{
    display: block;
}

.navbar-dropdown{
    width: 220px;
    background-color: #1b1a1a;
    list-style-type: none;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    top: 60px;
    display: none;
    z-index: 100;
}

.nav-item-profile .navbar-dropdown{
    /* left: -10px; */
    right: 0px;
    width: 180px;
}

.navbar-dropdown::before{
    content: "";
    position: absolute;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background-color: #1b1a1a;
    width: 25px;
    height: 20px;
    top: -12px;
    left: 10px;
}

.nav-item-profile .navbar-dropdown::before{
    content: "";
    position: absolute;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background-color: #1b1a1a;
    width: 25px;
    height: 20px;
    top: -12px;
    left: 140px;
}

.navbar-dropdown .hidden{
    position: absolute;
    top: -30px;
    width: 70px;
    height: 30px;
    background-color: transparent;
}

.nav-item-profile .navbar-dropdown .hidden{
    position: absolute;
    top: -30px;
    width: 210px;
    height: 30px;
    background-color: transparent;
}

.navbar-dropdown .nav-item{
    padding: 0 30px;    
    transition: 0.3s;
}
.navbar-dropdown .nav-item .nav-link{
    color: #FEA53D;
}

.navbar-dropdown .nav-item .nav-link span{
    font-size: 17px;
}

.navbar-dropdown .nav-item:hover .nav-link{
    color: #FFE193;
}

.btn{
    width: 120px;
    height: 40px;
    border-radius: 20px;
    border:0;
    font-size: 20px;
    font-weight: 600;
    color: #FEA53D;
    border: 2px solid #FEA53D;
    font-family: "Battambang", system-ui;
    background: transparent;
    transition: 0.3s;
}
.btn:hover{
   color: #fff;
    background-color: #FFC000;
}
.menu_icon{ 
    display: flex;
    list-style-type: none;
    color: #FEA53D; 
}
.menu_icon .nav-item{
    padding: 0 15px;
}
.menu_icon i{
    color: #FEA53D;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    transition: 0.3s;
}
.menu_icon i:hover{
    color: #FFE193;
}

.noti{
    position: relative;
}

.noti::before{
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 5px;
    right: 14px;
    background-color: red;
}

.hover-dropdown{
    display: flex;
    align-items: center;
    display: block;
}

.fa-caret-down{
    font-size: 15px;
    margin-left: 3px;
}
/* footer */
#footer{
    background-color: #000!important;
}
.top-footer{
    padding: 40px 0;
    width: 100%;
}
footer .top-footer .row .col-4{
    margin-right: 80px;
}
footer .top-footer .row{
    flex-wrap: nowrap;
}
footer .col-4{
    width: 30%;
}
footer .col-3{
    width: 25%;
}
footer .col-2{
    width: 20%;    
}
footer .top-footer .row img{
    height: 140px;
    object-fit: cover;
}
footer .top-footer .row p{
    margin-top: 10px;
    font-size: 20px;
    color: #FFE193;
}
footer .top-footer .row .app{
    display: flex;
    gap: 20px;
}
footer .top-footer .row .app a{
    width: 40px;
    height: 40px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFE193;
    border: 1px solid #FFE193;
    border-radius: 50%;
    margin-top: 40px;
    transition: 0.3s;
}
footer .top-footer .row .app a i{
    font-size: 20px;
}
footer .top-footer .row .app a:hover{
    color: #FEA53D;
    border: 1px solid #FEA53D;
}
footer .top-footer .row h2{
    padding: 20px 0px 15px 0px;
    font-size: 30px;
    color: #FEA53D;
    
}
footer .top-footer .row ul{
    display: block;
    list-style-type: none;
}
footer .top-footer .row ul li{
    padding: 6px 0;
}
footer .top-footer .row ul li a{
    text-decoration: none;
    font-size: 20px;
    color: #FFE193;
    transition: 0.3s;
}
footer .top-footer .row ul li span{
    font-size: 20px;
    color: #FFE193;

}
footer .top-footer .row ul li a:hover{
    text-decoration: underline;
    color: #FEA53D;
}
footer .top-footer .row ul li i{
    font-size: 22px;
    color: #FFE193;
    margin-right: 10px;
}
footer .copyright{
    padding: 0;
    border-top: 1px solid #666666;
}
footer .copyright h3{
    padding: 3px 0;
    text-align: center;
    font-weight: 500;
    color: #FFE193;

}

/*hero banner */
.section-banner{
    width: 100%;
    height: 660px;
    position: relative;
    padding: 0;
    /* margin-bottom: 60px; */
}
.section-banner img{
    display: block;
    width: 100%;
    height: 660px;
    position: absolute;
    object-fit: cover;
    filter: brightness(30%);
}
.section-banner .banner-text{
    width: 100%;
    height: 660px;
    position: absolute;
    z-index: 99;
}
.section-banner .content{
    width: 100%;
    height: 660px;
}
.section-banner .content .link{
    font-size: 20px;
    margin-bottom: 180px;
    display: flex;
    justify-content: center;
}
.section-banner .content a{
    text-decoration: none;
    color: white;
    transition: 0.3s;
}
.section-banner .content .link u{
    background-color: transparent;
    color: #FEA53D;
}
.section-banner .content a:hover{
    color: #FEA53D;
}
.section-banner .content h1{
    font-size: 70px;
    font-weight: 500;
    color: #FEA53D;
    text-align: center;
}
.section-banner .content h2{
    font-size: 40px;
    text-align: center;
    
}
