.mainTitleAppeal{
    text-align: center;
    font-weight: 1000;
    color: #333;
    margin-top: 100px;
    padding: 20px 0;
}
.d_flex{
    display: flex;
}
.sub_d_flex{
    display: flex;
    margin: auto;
}
.contact_icon{
    width: 30px;
    height: 30px;
    margin-right: 20px;
}
.contact{
    padding: 10px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    text-decoration: none;
    background: #3333;
    align-content: center;
    align-items: center;
    color: #333;
    font-weight: bold;
    font-size: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: 300ms;
    margin: 0 20px;
    min-width: 220px;
}
.contact:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px 5px;
}
.mail_icon{
    width: 30px;
    height: 21px;
}

/* Correctiong feedbox for contacts page */
.feedback_box{
    margin-top: 40px !important;
}

@media screen and (max-width: 770px){
    .sub_d_flex{
        display: grid;
    }
    .contact{
        margin: 20px auto;
    }
}