.subPage_contact{
    .contact_wrapper{
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        .contect_info{
            h4{
                color: $black;
                font-size: 32px;
                font-weight:700;
                line-height: 40px;
                text-align: center;
            }
             p{
                color: #464545;
                font-size: 16px;
                font-weight:400;
                line-height: 25px;
                text-align: center;
                padding: 0 200px 40px 200px;
            }
            ul{
                padding-left: 20px;
                li{
                    padding: 8px 0;
                    a{
                        font-size: 16px;
                        color: $black;
                        line-height: 26px;
                        font-weight: 400;
                    }
                    span{
                        padding-right: 10px;
                        i{
                            padding: 10px 10px;
                            background-color: $primaryColor;
                            border-radius: 50%;
                            color: $white;
                        }
                    }
                }
            }
            .form_wrapper{
                .massage{
                    height: 120px !important;
                }
              .form_control{
                  display: block;
                  margin-bottom: 12px;
                  width: 100%;
                  height: 45px;
                  padding:10px;
                  background-color:#ffffff;
                  background-clip: padding-box;
                  border: 1px solid #bdbdc0;
                  border-radius: 6px;
                  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
                  &:focus{
                     outline: 0;
                 } 
                  &::placeholder{
                      font-size: 15px;
                      color: #aeacac;
                      font-weight: 400;
                  }
              } 
             }
             .contact_btn{
                margin-top: 20px;
                a{
                    padding: 10px 35px;
                    background-image: linear-gradient(250deg, #4e95ed 0%, #03228f 100%); 
                    color: $white;
                    font-size: 16px;
                    border-radius: 5px;
                    -webkit-border-radius: 5px;
                    -moz-border-radius: 5px;
                    -ms-border-radius: 5px;
                    -o-border-radius: 5px;
                    &:hover{
                        background-color: $black;
                    }
}
             }
            .icons_linker{
                text-align: center;
                padding-top: 30px;
                ul{
                    li{
                        display: inline-block;
                        padding: 0 10px; 
                        a{
                            i{
                                font-size: 28px;
                                color: $primaryColor;
                                height: 45px;
                                width: 45px;
                                border: 1px solid $primaryColor;
                                border-radius: 8px;
                                text-align: center;
                                line-height: 45px;
                          &:hover{
                                    color: $black;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}