.nav__container{
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #fff;
    box-shadow: 0px 0px 10px black;
    padding-bottom: 1%;
}
body{
    margin: 0px;
}
.nav__userMenu{
    display: none;
}
#nav__top{
    display: none;
}
#nav__top__PC{
    display: block;
}
#block{
    display: block;
}
.responsiveMenu{
    display: none;
}
.nav__top{
    display: grid;
    width: 100%;
    grid-template-columns: 20% 1fr 17%;
    align-items: center;
}
.nav__bottom{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.bottom__link{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.bottom__list{
    list-style: none;
    background: #2064aa;
    min-width: 315px;
    min-height: 99px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bottom__list a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.bottom__list a img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
}
.nav__container img {
    width: 250px;
    height: 164px;
}
.nav__menu{
    display: none;
}
.contentBottom{
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.containerTitle{
    width: 100%;
    text-align: center;
}
.nav__title , .containerTitle h3{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin: 0px;
}

.containerTitle h3 {
    font-size: 23px;
}
.nav__userMenu .dropdown__list{
    width: 100%;
    margin-left: auto;
    display: grid;
    align-items: center;
    grid-template-rows: 88% 20%;
}
.nav__userMenu:has(:checked){
    --blockList : block;
}
.dropdown__list{
    list-style: none;
}
.dropdown__list:has(:checked){
    --block : block;
}
.dropdown__link__user {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dropdown__link__user img{
    width: 50px;
    height: 50px;
    background: #d5d5d5;
    border-radius: 100%;
    padding: 0.3em;
}
.dropdown__check{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.dropdown__content{
    width: 100%;
    height: 7vh;
    display: var(--blockList, none);
}
.dropdown__sub{
    display: var(--block , none);
    background-color: white;
    border: 1px solid #ccc;
    padding: 14px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.dropdown__sub__userContent{
    background-color: white;
    position: relative;
    padding: 2em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.dropdown__sub__userContent:has(:checked){
    --blockUserContent : block
}
.dropdown__li{
    list-style: none;
    margin-bottom: 4vh;
    position: relative;
    width: 100%;
    text-align: center;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.dropdown__li a {
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: bold;
}
.closeSession{
    display: block;
    width: 100%;
    background: #c35252;
    border: none;
    color: white;
    cursor: pointer;
    padding: 1em;
}
.dropdown__link__user .countPetitionsProducts{
    position: absolute;
    top: 0;
    left: 23vh;
    background: red;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.dropdown__li__subContent{
    position: relative;
    background: #c35252;
    padding: 1em;
}
.dropdown__anchor{
    color: black;
}
.dropdown__sub__petitionsContent{
    display: var(--blockUserContent , none);
    list-style: none;
    padding: 0;
    height: 45vh;
    overflow: scroll;
}
.dropdown__sub__petitionsContent::-webkit-scrollbar{
    width: 2px;
    color: #333;
}
.dropdown__contentAnchor{
    margin-bottom: 3vh;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1vh;
}
@media(max-width: 3000px){
    .bottom__list{
        min-width: 285px;
        min-height: 71px;
    }
    .bottom__span{
        font-size: 23px;
         font-weight: bold;
    }
}
@media(max-width:1350px){
    .nav__title{
        font-size: 35px;
    }
    .containerTitle h3 {
        font-size: 19px;
    }
    #img__title {
        width: 191px;
        height: 130px;
    }
}
@media(max-width: 1200px){
    .bottom__list {
        min-width: 252px;
    }
    .bottom__list a img {
        width: 50px;
        height: 50px;
    }
}
@media(max-width:1024px){
    .bottom__list {
        min-width: 226px;
        min-height: 69px;
    }
    .bottom__span{
        font-size: 12px;
    }
    .bottom__list a img {
        width: 50px;
        height: 50px;
    }
    .nav__title{
        font-size: 30px;
    }
    .containerTitle h3 {
        font-size: 17px;
    }
    #img__title{
        width: 209px;
        height: 135px;
    }
}

@media(max-width:1100px){
    .nav__top {
        grid-template-columns: 24% 1fr 17%;
    }
    .nav__title {
        font-size: 32px;
    }
}
@media(max-width:900px){
    .nav__userMenu{
        display: block;
    }
    .containerTitle{
        display: none;
    }
    .nav__top{
        display: none;
    }
    .nav__menu {
        display: flex;
        width: 100px;
        height: 64px;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .bars__responsive{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 0;
    }
    .nav__menu--second{
        display: none;
    }
    .responsiveMenu{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #img__title {
        width: 122px;
        height: 78px;
    }
    #barsForMobile{
        display: flex;
        justify-content: center;
        align-items: center;
        color: black;
        font-size: 50px;
        transform: rotate(90deg);
    }
    .nav__bottom {
        display: none;
        position: fixed;
        width: 100%;
        height: 92vh;
        background: #333;
    }
    .bottom__list{
        width: 90%;
        margin: 4% auto 6%;;
    }
    .bottom__link{
        display: grid;
        grid-template-columns: 1fr 25%;
        justify-content: center;
        align-items: center;
        margin-left: 20%;
    }
    .contentBottom{
        margin-top: 15vh;
        display: block;
    }
    #nav__top{
        display: block;
    }
}