* {
    box-sizing: border-box;
}

*{
    margin: 0;
    padding: 0;
}

body{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}



.container{
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Распределить пространство между элементами */
    height: 100vh; /* Занимать всю видимую высоту */
}

.content{
    margin-top: 40px;
    flex-grow: 1;
}

.right-content{
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.right-content-item{
    height: 60px;
    background-color: #efefef;


}

.head-top{
    background-color: #77BC1F;
    height: 60px;
}



.nav-head{
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    background-color: #243535 ;
    height: 60px;
    margin-top: 1px;
    padding-top: 12px;
}

.nav-item-mobile{
    display: none;
}

#news{
    border-bottom: darkgray solid 1px;
}

.data{
    margin-top: 40px;
}

.nav-item:hover .nav-link {
    text-decoration: underline;
}



.logo{
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    font-style: normal;
    color: white;
    font-size: 30px;
}


.top__ul{
    font-size: 13px;
    list-style-type: none;
    color: white;
}




.nav__ul{
    font-size: 14px;
    display: flex;
    list-style-type: none;
    padding-left: 0;
}

.nav-link:hover{
    color: red;
}

.footer {
    margin-top: 20px;
    border-top: #1a202c 1px solid;
    height: 70px;
}

.footer_ul{
    margin-top: 10px;
    text-decoration: none;
    font-size: 12px;
    color: gray;
    list-style-type: none;
}

.footer_ul_li{
    text-decoration: none;
}

h3{
    font-family: "Roboto Slab", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    color: #0047FC;
}

h5{
    font-size: 16px;
}

@media (max-width: 1000px) {
    .logo{
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .logo{
        font-size: 16px;
    }

    .top__ul{

    }

    .ul-admin{
        display: none;
    }

    .right{
        display: none;
    }

    .nav__ul{
        font-size: 12px;
        column-count: 2;
        display: block;
      margin-bottom: 0;
    }

    .nav-head{
        height: 150px;
    }

    .nav-item-mobile{
        display: block;
    }

    .footer{
        margin-top: 45px;
        border-top: 1px solid black;
        height: 75px;
        background-color: white;
    }

    .footer_ul{
        color: #6b7280;
    }

    .news_img{
        width: 100%;
    }

    .nav-head{
        padding-top: 8px;
    }
}





