﻿
#ContactBody
{
    margin:0;
}
/*---------------------------------------*/

.ContactWrap
{
    width:100%;
    min-height:100vh;
    color:#FFFFFF;
    background-color:#bdbdbd;
    font-family:Arial;
    text-align:center;
    box-sizing:border-box;
    display:table;
    padding:20vh 0;
}

/*---------------------------------------*/
.DescriptionBlock
{
    width:25%;
    text-align:left;
    border-bottom:3px solid white;  
    box-sizing:border-box;
    float:left;
    margin-left:10%;
    padding-bottom:20px;
}

    .DescriptionBlock h2
    {
        font-size:40px;
        margin-top:0;
        border-bottom:3px solid white;
    }

    .DescriptionBlock p
    {
        padding-bottom:20px;
        margin-bottom:50px;
        border-bottom:1px solid white;
    }

    .DescriptionBlock a
    {
        color:inherit;
        border:none;
        text-decoration:none;
    }

    .DescriptionBlock img
    {
        width:25px;
        height:auto;
        margin-right:5px;
        border:none;
    }

/*---------------------------------------*/
.ContactBlock
{
    width:50%;
    background-color:#FF5572;
    display:inline-block;
    box-sizing:border-box;
    float:left;
    margin-left:5%;
    padding:50px 0;
}


.ContactForm .txt
{
    color:white;
    background-color:#FF5572;
    box-sizing:border-box;
    float:left;
    display:inline-block;
    text-align:left;
    overflow:auto;
    border:none;
    border-bottom:1px solid white;
}

     
input, textarea
{
    margin-left:10%;
    margin-bottom:20px;
    border:none;
}

#txtName
{
    width:37%; 
}

#txtEmail
{
    width:37%;
    margin-left:6%;
}

#txtMessage
{
    width:80%;
    font-family:inherit;
}

#btnSubmit
{
    display:block;
    clear: both;
    color:#FF5572;
    background-color:White;
    font-weight:bold;
    border:none;
    padding:10px;
    margin-bottom:0px;
}

    #btnSubmit:hover
    {
        color:white;
        background-color:#fea6b6;   
    }


/*----------------------------------------- Tablet --------------------------------------*/
@media screen and (min-width:481px) and (max-width: 768px)
{
    .ContactWrap
    {
		min-height:50vh;
        padding:10vh 0;
    }

    .DescriptionBlock
    {
        width: 70%;
        border-bottom: 3px solid white;
        margin-left: 15%;
        margin-bottom:30px;
    }

    .DescriptionBlock h2
    {
        font-size:25px;
    }

/*---------------------------------------*/
.ContactBlock
{
    width:70%;
    margin-left:15%;
}

#txtName
{
    width:80%;
    margin-left:10%; 
}

#txtEmail
{
    width:80%;
    margin-left:10%; 
}

#txtMessage
{
    margin-left:10%; 
}

#btnSubmit
{
    display:block;
    clear: both;
    color:#FF5572;
    font-weight:bold;
    border:none;
    padding:10px;
    margin-bottom:0px;
}

    #btnSubmit:hover
    {
        color:white;
        background-color:#fea6b6;   
    }
}


/*------------------------------------------- Mobile ------------------------------------*/
@media screen and (max-width: 992px)
{
    .ContactWrap
    {
		min-height:30vh;
        padding:10vh 0;
    }
 
    .DescriptionBlock
    {
        width: 80%;
        border-bottom: 1px solid white;
        margin-left: 10%;
        margin-bottom: 30px;
    }

        .DescriptionBlock h2
        {
            font-size: 20px;
        }

        .DescriptionBlock p
        {
            font-size:smaller;
            margin-bottom: 20px;
        }

        .DescriptionBlock img
        {
            width: 20px;
        }
/*---------------------------------------*/
    .ContactBlock
    {
        width: 80%;
        margin-left: 10%;
        padding: 20px 0;
    }


    #txtName
    {
        width: 80%;
        margin-left: 10%;
    }

    #txtEmail
    {
        width: 80%;
        margin-left: 10%;
    }

    #txtMessage
    {
        margin-left: 10%;
    }

}