.contact{
     padding: 40px 0 20px 0;
    .contact_content{
        .section_heading{
            text-align: center;
            h4{
                font-size: 32px;
                font-weight: 600;
                color: $black;
                padding: 15px 0 0 0;
                span{
                    color: $primaryColor;
                }
            }
            p{
             text-align: center;
             font-size: 15px;
             font-weight: 400; 
             line-height: 24px;
             color: $text;
             padding: 20px 120px;
         }
        }
        .contact_form{
            form{
                .form_control {
                    display: block;
                    margin-bottom: 10px;
                    width: 100%;
                    height: 45px;
                    padding: 10px;
                    color: $black;
                    background-color: #ffffff;
                    background-clip: padding-box;
                    border-radius: 2px;
                    border: 1px solid #a4a4a4;
                    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
                    -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
                    -moz-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
                    -ms-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
                    -o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

                    &:focus {
                        outline: 0;
                    }

                    &::placeholder {
                        font-size: 14px;
                        color: #757171;
                        font-weight: 400;
                    }

                    &:optional {
                        color: #636262;
                    } 
                }
                textarea{
                    height: 200px !important;
                }
                .news_btn{
                    margin-top: 20px;
                    a{
                        padding: 12px 25px;
                        background-color: $primaryColor;
                        color: $white;
                        font-weight: 400;
                        font-size: 15px;
                        border-radius: 5px;
                    }
                }
            }
        }
        .contact_right{
            background-color: $primaryColor;
            height: 370px;
            width: 100%;
            padding: 20px;
            h4{
                font-size: 19px;
                color: $white;
                font-weight: 400;
            }
            h5{
                font-size: 16px;
                color: #e1dede;
                font-weight: 400;
            }
        }
    }
}