@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: Poppins;
    font-size: 10px;
}

.nav{
    width: 100%;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    background-color:#FFD700;
    border-bottom: 1px solid rgb(255, 255, 255);
    margin-bottom: 5%;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    transition: 0.6s;
}

.logo{
    margin-left: 30px;
}
.logo img{
    width: 80px;
    height: 50px;
}

.nav .navs{
    margin-right: 30px;
}

.nav .navs ul{
    display: inline-flex;
}

.nav .navs ul li{
    margin: 0 15px;
    line-height: 60px;
}

.nav .navs ul li .sign{
    padding: 6px 10px;
    border-radius: 5px;
    background-color: #256E61;
    color: rgb(255, 255, 255);
    font-size: 12px;
}

.nav .navs ul li a{
    color: #256E61;
    font-size: 12px;
}

.drop_downs{
    height: 50px;
    margin-right: 30px;
    margin-top: 6px;
    display: flex;
    text-align: center;
    display: none;
}

.drop_downs_books img{
    width: 30px;
    height: 30px;
    margin-top: 10px;
    display: none;
}

.drop_downs img{
    width: 30px;
    height: 30px;
    margin-top: 10px;
    display: none;
}

.drop_downs .open.active{
    display: block;
}


.footer{
    width: 100%;
    margin-top: 10%;
    background-color: #256E61;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.footer .footer_block{
    width: 300px;
    margin: 10px;
    padding: 10px;
    color: #FFD700;
    font-size: 16px;
    font-weight: normal;
}

.footer_block .text_s{
    padding: 20px 0;
    color: white;
    font-size: 10px;
    font-weight: 200;
}

.text_s ul li{
    margin: 8px 0;
}

.text_s ul li a{
    color: white;
}

.last_footer{
    width: 100%;
    padding: 15px 0;
    text-align: center;
    background-color: #020807;
}

.last_footer span{
    color: white;
    font-size: 15px;
}