* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.constitution-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #f2f2f2;
    padding: 20px;
}

.constitution-item {
    border: 1px solid rgba(0, 0, 0, 0.131);
    height: 662px;
    width: 511px;
}

.constitution-item img {
    height: 100%;
    width: 100%;
    /* object-fit: cover; */
}

@media only screen and (max-width: 512px) {
    .constitution-item {
        height: auto;
        width: 90%;
    }
}
.dl-floating-btn{
    position: fixed; bottom: 5%; right: 5%;
}
.dl-floating-btn button{
    background-color: rgb(230, 72, 20); color:#fff; box-shadow: -6px 6px 15px rgba(0, 0, 0, 0.381); padding:7px 20px; border: 2px solid transparent; display: none;
}
.dl-floating-btn button:hover{border: 2px solid white;}

@media screen and (max-width:450px){
    .dl-floating-btn .mobile:last-child{
        display: block;border-radius: 50%; padding: 5px; text-align: center; width: 50px; height: 50px;
    }

        .floatingbtn{
            bottom: 14% !important; right: 5% !important;
        }
    
}
@media screen and (min-width:450px){
    .dl-floating-btn .desktop:first-child{
        display: block;
    }
    .floatingbtn{
            bottom: 14% !important; right: 5% !important;
        }
}