.contact{
      padding-bottom: 50px;
      .contact_wrapper{
        background-color: #eaeaea;
        padding: 30px 0 60px 0;
        background-image: url(../images/contactBg.png);
        border-radius: 5px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        z-index: 1;
        &::after{
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: rgba(0,0,0,0.4);
            border-radius: 5px;
            z-index: -1;
        }
        h4{
            font-size: 28px;
            color: $white;
            font-weight: 600;
            text-align: center;
        }
        
        .contactForm{
            padding-top: 50px;
            text-align: end;
            .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: 150px !important;
            }
        }
        .contactBtn{
            text-align: center;
            margin-top: 50px;
          a{
            font-size: 20px;
            color: $white;
            font-weight: 500;
            background-color: $primaryColor;
            padding: 15px 50px;
            border-radius: 10px;

            }
        }

      }
}
.copuright{
    background-color: $primaryColor;
    .copyRight_Wrapper{
        padding: 18px 0 8px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        h5{
            font-size: 15px;
            font-family: $font-1;
            font-weight: 400;
            color: $white;
            img{
                width: 75px;
                padding: 0 10px;
            }
        }
    }
}