
#footer-full{
    margin-top: 50px;
}

#footer-main{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-end;
    
}
#inner-footer-main{
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 3fr 3fr 3fr 3fr;
}

.footer-section{
    box-sizing: border-box;
    padding: 20px;
}
.footer-section-head{
    /* height: 70px; */
    position: relative;
    right: 10px;
}
.footer-section-head > img{
    position: relative;
    bottom: 5px;
    left: 10px;
}
.footer-section-head > h2{
    font-weight: 550;
    font-size: 30px;
}
#section-1 b{
    font-size: 25px;
}
#credits{
    background-color: rgba(0, 0, 0, 0.881);
}

#inner-credits, #social-credits{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0px;
}   
#credits ul li{
    color: white;
    font-weight: 600;
}
.links-rt li{
    padding-left: 20px;
}

@media screen and (max-width: 1600px){
    .footer-section-head > h2{
        font-size: 26px;
    }
    
    /* .footer-section-head{
        height: 57px;
    } */
}

@media screen and (max-width: 1250px){
    .footer-section{
        padding: 5px;
    }
    
    .footer-section-head > h2{
        font-size: 23px;
    }
    
}

@media screen and (max-width:950px) {
    #inner-footer-main{
        /* grid-template-columns: 1fr 1fr; */

        grid-template-columns: 1fr;
    }
    
    #section-2>.footer-section-head>h2, #section-2>ul, #section-4>.footer-section-head>h2, #section-4>p{
        text-align: right;
    }
    /* .footer-section-head{
        height: 40px;
    } */
    .footer-section{
        margin-bottom: 20px;
    }
}

@media screen and (max-width:600px) {
    #section-2,#section-4{
        display: none;
    }
    #section-1 .footer-section-head, #section-1 p, #section-3 h2, #section-3 li{
        text-align: center;
    }
    #section-1 b{
        font-size: 20px;
    }
    #inner-footer-main{
        margin: 30px 0px 15px 0px;
    }
    
    

    .footer-section-head>img{
        position: static;
    }
    #credits > ul{
        justify-content: center;
        padding:7px 0px;
        
    }
    #credits{
        padding: 2px 0px;
    }
    
    #social-credits{
        display: none;
    }
}