.contact_box_wrapper{
    width: 75%;
    background-color: $white;
    box-shadow: 0 0 15px #e1e1e1;
    height: 450px;
    margin: -100px auto 0;
    border-radius: 16px;
    overflow: hidden;
    .location_map{
        .location_wrap{
            height: 450px;
            width: 100%;
        }
    }
    .contact_box_item{
        display: flex;
        padding: 20px;
        .item_icon{
           i{
            font-size: 20px;
            color: $primaryColor;
            height: 40px;
            width: 40px;
            border: 1px solid $primaryColor;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
        }
        } 
        .item_text{
            padding-left: 10px;
            padding-top: 5px;
            h4{
                font-size: 16px;
                font-weight: 500;
                color: $black;
                line-height: 13px;
            }
            p{
                font-size: 14px;
            }
        }
    }
}

.contact_form_wrapper{
    width: 75%;
    margin: 0 auto;
    padding: 60px 0 30px 0;
    h4{
        font-size: 28px;
        color: $black;
        font-weight: 500;
        text-align: center;
    }

    .contact_form{
        padding-top: 30px;
        .form_control {
            display: block;
            width: 100%;
            height: 50px;
            padding: 10px;
            font-size: 16px;
            font-weight: 400;
            color: #60697b;
            background-color: #fefefe;
            background-clip: padding-box;
            border: 1px solid rgba(8,60,130,.07);
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-radius: .4rem;
            box-shadow: 0 0 1.25rem rgba(30,34,40,.04);
            transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            margin-bottom: 12px;
            &::placeholder{
                color: #6a6868de;
                font-size: 15px;
            }
        }
        .textarea_class{
            height: 140px;
        }
        .contact_form_btn{
            font-size: 18px;
            color: $white;
            padding: 15px 35px;
            background-color: $primaryColor;
            font-weight: 500;
            text-align: center;
            border-radius: 35px;
            cursor: pointer;
            &:hover{
                background-color: #F6F3EB;
                color: $black;
               box-shadow: 0 0 1.25rem rgba(30,34,40,.04);
            }
        }
    }
}