#contact-page {
    margin-bottom: 400px;
}
#contact-page h1{
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    color: white;
    background: rgb(40,66,39);
    background: linear-gradient(180deg, rgba(40,66,39,1) 0%, rgba(40,66,39,1) 35%, rgba(50,93,48,1) 77%);
}
#contact-page p{
    width: 100%;
    text-align: center;
    padding: 0 25px;
    margin: 0;
}
#contact-page .socia-media{
    display: flex;
    justify-content: space-between;
    padding: 0 10px 15px;
}

#contact-page .socia-media .contact-info-item{
    border-radius: 3px;
    font-size: small;
    padding: 7px 15px;
    text-align: center;
    width: 32%;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 5px;
    transition: .3s;
    outline: none;
}
#contact-page .socia-media .contact-info-item:hover{
    background:#dcd0a8;
}

#contact-page .socia-media .contact-info-item img{
    width: 50px;
    filter: invert(22%) sepia(41%) saturate(449%) hue-rotate(69deg) brightness(88%) contrast(94%);
}

@media only screen and (max-width: 1199px) {
    #contact-page {
        margin-bottom: 100px;
    }
}