.contact{
     padding: 30px 0 100px 0;
    .headingOfSection{
        display: inline-block;
        position: relative;
        margin-bottom: 90px;
        .heading_overly{
            position: absolute;
            top: 60%;
            left: 50%;
            transform: translate(-50%, -60%);
            span{
                font-size: 21px;
                font-weight: 600;
                color: $primaryColor;
            }
        }
    }
  .contact_wrapper{
    .contact_wrap{
        h3{
            font-size: 18px;
            color: rgb(0, 0, 0);
            font-weight: 400;
            text-transform: uppercase;
        }
        .newslatterForm{
            margin-top: 30px;
           form{
            width: 100%;
            position: relative;
            .form_control{
                display: block; 
                margin-bottom: 10px;
                width: 100%;
                height: 50px;
                padding:23px;
                background-color:#ffffff;
                background-clip: padding-box;
                border: 1px solid #b2b2b3;
                border-radius: 10px;
                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: 15px;
                    color: #a1a1a1;
                    font-weight: 400;
                }
            }
            textarea{
                height: 180px !important;
            }
            .contactBtn{
                margin-top: 50px;
                a{
                  padding: 13px 26px;
                  background-color: $primaryColor;
                  font-size: 20px;
                  color: $white;
                  font-weight: 500;
                  border-radius: 4px;
}
            }
        }
    }
      }
  }
}