*
{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    /* font-family: 'Roboto', sans-serif; */
    /* font-family: 'Ubuntu', sans-serif; */
}
/* Header  */
#headingcontact
{
    cursor: pointer;
}
nav 
{
    background-color: rgb(77, 202, 66);
    height: 80px;
    width: 100%;
    position: relative;
}
nav .row
{
    width: 100%;
}
.logo
{
    color: white;
    font-size: 36px;
    line-height: 80px;
    padding: 0 50px;
    font-weight: bold;
    text-shadow: 3px -3px blue;
}
#mobicon
{
    padding-right: 5px;
}
nav ul
{
    float: right;
    margin-right: 20px;
}
nav ul li
{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
    text-decoration: none;
}
nav ul li a
{
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    text-decoration-style: none;
}
a.active, a:hover
{
    background-color: rgb(150, 225, 255);
    transition: 0.5s;
    border-radius: 30px;
    text-decoration: none;
}

/* Contact  */
.contact_wrap
{
    width: 80%;
    box-sizing: border-box;
    margin: 10px auto;
    display: flex;
}
#contactme
{
    text-align: center;
    font-weight: bolder;
    font-style: oblique;
    font-size: 45px;
    cursor: pointer;
}
.social_contact
{
    display: block;
    text-decoration: none;
    box-sizing: border-box;
    padding: 4px 10px;
    text-align: center;
}
.social_contact a
{
    font-size: 30px;
    padding: 2px 6px;
    text-decoration: none;
    text-align: center;
}
.contact_text li
{
    text-decoration: none;
    list-style-type: none;
}
.contact_text a
{
    padding-right: 5px;
    text-decoration: none;
    font-size: 20px;
}
.contact_text
{
    text-align: left;
    padding-left: 5%;
}
.fa 
{
    padding-left: 10px;
}
.condetails
{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-left: 5px;
    line-height: 2;
}

/* Form  */
.form_section
{
    width: 50%;
    margin: 50px auto;
    text-align: center;
    display: block;
    box-sizing: border-box;
}
.form input
{
    margin-bottom: 10px;
    width: 100%;
    line-height: 2;
    border: 2px solid rgb(56, 54, 54);
    border-radius: 20px;
    padding: 4px 10px;
}
.form textarea
{
    width: 100%;
    line-height: 2;
    border: 2px solid rgb(56, 54, 54);
    border-radius: 20px;
    padding: 4px 10px;
    resize: none;
}
.sendmessage
{
    margin-top: 10px;
    width: 60%;
    height: 60px;
    border: none;
    background-color: greenyellow !important;
    border-radius: 30px;
}
.sendmessage:hover
{
    background-color: hotpink !important;
}

/* Footer  */
.footer
{
    width: 100%;
    position: fixed;
    bottom: 0;
    text-align: center;
    padding: 4px;
    background-color: rgb(255, 10, 10) !important;
    color: white;
}
#textfooter
{
    font-size: 20px;
}
#textfooter a 
{
    color: white;
}
#textfooter a:hover
{
    background-color: transparent;
    cursor: pointer;
    text-decoration: none !important;
}

/* Media Queries  */
@media (max-width: 1200px)
{
    label.logo 
    {
        font-size: 25px;
        padding-left: 20px;
    }
    nav ul li a
    {
        font-size: 16px;
        padding: 6px 6px;
    }
}
@media (max-width:870px)
{
    label.logo 
    {
        font-size: 22px;
        padding: 0 30px;
    }
    nav ul li a
    {
        font-size: 15px;
        padding: 6px 2px;
        margin: 0 3px;
    }
    nav ul 
    {
        margin-right: 0;
    }
}
@media (max-width: 767px)
{
    label.logo 
    {
        padding: 0 30px;
    }
    .contact_wrap
    {
        display: block;
        margin: 50px auto;
    }
    nav ul 
    {
        float: none;
    }
    .navcol1
    {
        height: 60px;
        text-align: center;
        background-color: rebeccapurple;
    }
    .navcol2
    {
        height: 60px;
        text-align: center;
        background-color: turquoise !important;
    }
    #con 
    {
        text-align: center;
        padding: 0;
        margin-top: 40px;
    }
    .contact_text {
        text-align: center;
        padding-left: 0;
    }
    #textfooter
    {
        font-size: 12px;
    }
    nav ul li a
    {
        font-size: 12px;
    }
}
@media (max-width: 360px)
{
    nav ul li a 
    {
        font-size: 10px;
    }
    label.logo 
    {
        font-size: 20px;
        padding: 0 20px;
    }
    .sendmessage
    {
        width: 70%;
    }
}