footer{
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #151515;
}

#contact-item-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:flex-start;
    flex-wrap: wrap;
   
    margin-bottom: 4rem;
}

.contact-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
   width: 33%;
   color:#c4c4c4;;
}

.contact-item a{
    color:#c4c4c4;
}

.contact-item a:hover{
    color:white;
}

.contact-item i{
    margin-right: 1rem;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

#copyright{   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer-logo{
    height: 5rem;
    opacity: .8;
    margin-bottom: 2rem;
}

#sosyal-buttons{
    display: flex;
    flex-direction: row;
}

#sosyal-buttons a{
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 3.5rem;
    width: 3.5rem;
    margin-right: 1rem;
    transition: all .3s ease;
    color:#c4c4c4;;
    
}

#sosyal-buttons a:hover{
    color:white;
}
#sosyal-buttons a:last-child{
    margin:0;
}

#sosyal-buttons a:nth-child(1):hover{
    background-color: #1877F2;
}

#sosyal-buttons a:nth-child(2):hover{
    background: linear-gradient(45deg,#fdaa34,#8e00fa);
 
}





#copyright-icerik{
    color:#afafaf;;
    font-size: 1.3rem;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .contact-item{
        font-size: 2rem;
    }

    #footer-logo{
        height: 7rem;
    }

    #sosyal-buttons a{
        font-size:2rem;
        margin-right: 2rem;
        height:3.5rem;
        width: 3.5rem;
    }

   

     #copyright-icerik{
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    #contact-item-container{
    justify-content: center;
    }

    .contact-item{
        width: 100%;
        margin-bottom: 3rem;
        font-size: 2.3rem;
    }

    .contact-item:last-child{
        margin-bottom: none;
    }

    #sosyal-buttons a{
        font-size:2.5rem;
        margin-right: 2rem;
        height: 4.5rem;
        width: 4.5rem;
    }

    
}