.contact{
    padding: 130px 0;
    .contact_wrapper{
        position: relative;
        margin-top: 30px;
        .contect_info{
            background-color: $primaryColor;
            padding: 59px 30px;
            border-top-left-radius: 5px;
            border-bottom-left-radius: 5px;
            box-shadow: 1px 1.732px 10px 0px #0000004d;
            h4{
                color: $white;
                font-size: 30px;
                font-weight:700;
                padding: 30px 0;
                font-family: $font1; 
                text-align: center;
            }
             p{
                color: $white;
                font-size: 16px;
                font-weight:400;
                line-height: 25px;
                padding: 10px 0;
                text-align: center;
            }
            ul{
                padding-left: 20px;
                li{
                    padding: 8px 0;
                    a{
                        font-size: 16px;
                        color: $white;
                        line-height: 26px;
                        font-weight: 400;
                    }
                    span{
                        padding-right: 10px;
                        i{
                            padding: 10px 10px;
                            background-color: #21948f;
                            border-radius: 50%;
                        }
                    }
                }
            }
            .icons_linker{
                text-align: center;
                padding-top: 20px;
                ul{
                    li{
                        display: inline-block;
                        padding: 0 10px;
                        a{
                            i{
                                font-size: 24px;
                            }
                        }
                    }
                }
            }
        }
        .contact_inner{
          background-color: #e8f1f1;
          box-shadow: 1px 1.732px 10px 0px #0000004d;
          padding: 50px 50px;
          border-top-right-radius: 5px;
          border-bottom-right-radius: 5px;
          .contact_img{
              position: absolute;
              top: 50%;
              left: 0;
              transform: translateY(-50%);
              -webkit-transform: translateY(-50%);
              -moz-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
              -o-transform: translateY(-50%);
              img{
                  border-top-right-radius: 30%;
                  border-bottom-left-radius: 30%;
                  box-shadow: 1px 1.732px 40px 0px rgba(0, 0, 0, 0.2);
              }
          }
          h3{
            color: $black;
            font-size: 36px;
            font-weight:700;
            padding: 10px 0;
            text-transform: uppercase; 
            span{
                color: $primaryColor;
            }
          }
          p{
            color: $text;
            font-size: 16px;
            font-weight:400;
            padding: 20px 0;
            line-height: 26px;
          }
          .contact_btn{
              padding-top: 50px;
            a{
                @include button;
            }

        }
          .form_wrapper{
            padding-top: 30px;
            .form_control{
                display: block;
                width: 100%;
                height: 60px;
                padding:23px;
                box-shadow: 1px 1.732px 40px 0px rgba(0, 0, 0, 0.1);
                background-color:#ffffff;
                background-clip: padding-box;
                border: 1px solid #e5edff;
                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;
                -webkit-border-radius: 10px;
                -moz-border-radius: 10px;
                -ms-border-radius: 10px;
                -o-border-radius: 10px;
                &:focus{
                   outline: 0;
               } 
                &::placeholder{
                    font-size: 18px;
                    color: #a7a5a5;
                    font-weight: 400; 
                }
            }
            .massage{
                height: 150px;
            }
           }
        }
    }
}