* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: Georgia, "Times New Roman", Times, serif;
}


.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 20vh;
}

.contact h3 {
    font-size: 36px;
    line-height: 2;
}

.contact-card {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 2rem 0 5rem 0;
}

.help {
    background-color: #f4f4f4bf;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    padding: 50px 50px;
    height: 25rem;
    border-radius: 5px 0 0 5px;
}

.help h3 {
    font-size: 28px;
    margin: 10px 0 5px 0;
}

.help p {
    margin: 20px 0;
}

.fb-grp {
    display: flex;
    justify-content: center;
    align-items: center;
}


.fb-grp button {
    background-color: #15803d;
    border: none;
    font-weight: 600;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 0 10px;
    cursor: pointer;
}






.detail {
    background-color: black;
    color: #fff;
    padding: 50px 50px;
    height: 25rem;
    border-radius: 0 5px 5px 0;
}

.detail h3 {
    margin: 20px 0;
}

.contact-detail {
    display: flex;
    align-items: center;
    justify-items: center;
    margin: 30px 0;

}

.contact-detail a {
    margin-left: 15px;
}

.contact-detail a:hover {
    color: #fff;
}


.social-icon svg {
    margin: 0 25px 25px 0;

}

@media only screen and (max-width:840px) {


    .contact {
        height: 5rem;
        margin: 20px;
    }

    .contact h3 {
        line-height: 1;
    }

    .contact p {
        width: 90%;
        margin: auto;
        text-align: center;
    }


    .contact-card {
        flex-direction: column;
        width: 90%;
        margin: auto;

    }


    .help {
        display: flex;
        justify-content: start;
        padding: 25px 25px;
        height: auto;
        border-radius: 5px 5 0 0;
        width: 100%;
    }

    .help h3 {
        font-size: 24px;
    }

    .help p {
        margin: 20px 0;
    }

    .fb-grp {
        flex-direction: column;
        align-items: flex-start;
    }

    .fb-grp h3 {
        font-size: 20px;
    }


    .fb-grp button {
        margin-top: 10px;
    }




    .detail {

        padding: 25px 25px;
        height: auto;
        border-radius: 0 0 5px 5px;
        margin-bottom: 10px;
        width: 100%;
    }


    .social-icon svg {
        margin: 0 25px 0 0;

    }



}