.contact-box
{
    box-shadow: 0 0 10px 1px rgba(33, 33, 33, .2);
    background: #fff;
    overflow: hidden;
    padding: 30px 45px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-img-wrapper{
    position: relative;
    z-index: 1;
}

.contact-box .contact-img-wrapper:before
{
    position: absolute;
    content: "";
    top: -60%;
    left: -60%;
    width: 320px;
    height: 320px;
    border-radius: 100%;
    background: var(--main-color);
    opacity: .5;
    z-index: -1;
}

.contact-box .contact-img
{
    position: relative;
    z-index: 1;
    width: 250px;
    height: 250px;
    margin-right: 100px;
    border-radius: 100%;
    background-size: cover;
    background-position: center center;
    box-shadow: 0 0 7px rgba(83, 83, 83, 0.31);
}
.contact-box .form-main
{
    width: calc(100% - 400px);
}

.contact-box input,
.contact-box textarea
{
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #d9d9d9;
    box-shadow: none !important;
    outline: none !important;
    padding-left: 40px;
    font-size: .9rem;
    font-weight: 300;
}

.contact-box .form-group
{
    margin-bottom: 1.5rem;
}

.contact-box .form-group > i
{
    position: absolute;
    top: 7px;
    left: 15px;
}

.module-contact .module--title
{
    max-width: 100%;
}

.contact-image
{
    box-shadow: 0 0 10px 1px rgba(33, 33, 33, .2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /*border-radius: 6px;*/
    max-height: 487px;
    overflow: hidden;
}

@media screen and (max-width: 767px)
{
    .module-contact
    {
        padding: 30px 0;
    }

    .contact-image
    {
        display: none;
    }

    .contact-box
    {
        padding: 30px 20px;
        margin-top: 0;
        margin-left: 0;
        flex-direction: column;
    }

    .contact-box .contact-img:before
    {
        top: -60%;
        left: -94%;
        width: 200px;
        height: 200px;
    }

    .contact-box .contact-img
    {
        margin-right: 0;
        width: 150px;
        height: 150px;
    }

    .contact-box .contact-img img
    {
        width: 150px;
    }
    .module-contact .module--title{
        margin-bottom: 30px;
    }

    .contact-box .form-main
    {
        width: 100%;
        margin-top: 50px;
    }

    .contact-box .form-group
    {
        margin: 0;
        margin-bottom: 1.5rem;
    }

    .contact-box .form-group .position-relative
    {
        margin-bottom: 1.5rem;
    }
}
