*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    font-family: "Klee One", cursive;
    
    font-style: normal;
    /* font-family:'jdzhonyuanjian903a74bff1820d';
    font-size: 12px; */
    color:#000;

    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}
.zhi-mang-xing-regular {
    font-family: "Zhi Mang Xing", cursive;
    font-weight: 300;
    font-style: normal;
}
  
  
:root{
    --bg-color:#fff;
    --bg-second-color:#000;
    --text-color:#000;
    --text-second-color:#fff;
    --text-third-color:#DCFFFF;
    --main-color:#009FBE;
    --big-font:0.7rem;
    --h2-font:0.6rem;
    --p-font:0.4rem;
    --p-small-font:0.3rem;
}
body{
    background: var(--bg-color);
    color: var(--text-color);

}
/* start home */

#icon-menu{
    padding: 0 8px;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
    z-index: 1000;
    cursor: pointer;
    display: none;
}
header{
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    padding: 16px 13%;
    display: flex;
    flex-direction: row;
    /* justify-content: flex-end; */
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 1s ease;
}
header .logo img{
    /* width: 30px;
    height: 30px;
    padding: 4px; */
}
header.sticky{
    background: var(--bg-color);
    padding: 12px 13%;
    box-shadow: 0px 4px 15px rgb(0 0 0 / 8%);
}
header ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.navbar{
    display: flex;
}
.navbar li{
    position: relative;
}
/* start search css */
.search{
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 20px;
    border-radius: 50%;
    background-color: #EEF8F9;
    box-shadow:-11.729px -11.729px 32px rgba(58, 58, 58, 0.15);
    left: 13%;
}
.search:hover{
    cursor: pointer;
    background: #009FBE;
}
.search input{
    display: none;
}
.search a{
    display: none;
}
/* .search{
    position: relative;
    width: 200px;
    height: auto;
    padding: 0px;
    margin: 0;
    border-radius: 4px;
    display: block;
}

.search input{
    width: 100%;
    top: 0;
    padding: 2px  ;
    border: solid 1px #000 ;
    border-radius: 4px;
    outline: none;
    font-size: .75rem;
}
.search a{
    position: absolute;
    display: inline;
    top: 3px;
    right: 0px;
    font-size: .75rem;
    background: #000;
    padding: 2px;
    border-radius: 4px;
    color: #fff;
}

.search.show{
    display: block;
}
.search input::placeholder{
    font-size: 300;
} */

.show{
    display: block;
}
.navbar a{
    color: #000;
    padding: 10px 8px;
    transition: all .40s ease;
    font-size: 18px;
    font-weight: 600;
}
.header-icons a{
    color: var(--text-color);
    font-weight: 200;
    font-size: var(--p-font);
    padding: 4px 8px;
    transition: all .40s ease;
}
.header-icons li:first-child a{
    background: #889df8;
    border-radius: 8px;
    color: #fff;
}
.header-icons li:last-child a{
    background: #f8d588;
    border-radius: 8px;
    color: #fff;
}
.navbar a:hover{
    color: var(--main-color);
    cursor: pointer;
}

.test-list{
    position: absolute;
    width: 250px;
    top: 30px;
    left: 0;
    display: list-item;
    background: #33393F;
    padding: 12px 0px;
    border-radius: 4px;
    display: none;
}
.test-list li{
    width: 100%;
    
}
.test-list li a{
    display: inline-block;
    width: 100%;
    line-height: 100%;
    text-decoration: none;
}
.li1:hover .test-list{
    display: block;
}
.test-list li a:hover {
    background-color: #454546;
    color: #D4D9DD;
}
.test-list> li> a{
    font-size: 14px;
    color: #D4D9DD;
}
.test-list  li  a span{
    background-color:#009FBE;
    border-radius: 50%;
    color: #fff;
    margin: 0 8px;
    padding: 0px 4px;
}
