.footer{
    background-color: $primaryColor;
    position: relative;
    padding: 30px 0;
    margin-top: 60px;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(37, 37, 37, 0.5);
        z-index: -1;
    }
    .footer_wrapper{
        h4{
            font-size: 28px;
            color: $white;
            font-weight: 500;
        }
        .spcial_icon{
             padding-top: 20px;
            ul{
                li{
                    display: inline-block;
                    margin-right: 15px;
                    a{
                        i{
                            font-size: 20px;
                            color: #181818;
                            height: 40px;
                            width: 40px;
                            border-radius: 50%;
                            text-align: center;
                            line-height: 40px;
                            background-color: $white;
                        }
                    }
                }
            }
        }
        p{
            font-size: 15px;
            color: #ebebeb;
            font-weight: 400;
            line-height: 24px;
            padding: 20px 0;
          }
        h4{
            font-size: 22px;
            color: #ebebeb;
            font-weight: 500;
            line-height: 32px;
            padding-bottom: 30px;
        }
        h5{
            font-size: 15px;
            color: #cfcfcf;
            font-weight: 400;
            line-height: 26px; 
            padding-top: 15px;
            i{
                font-size: 16px;
                color: #61c7f0;
            }
        }
        h6{
            font-size: 38px;
            color: #f0e73a;
            font-weight: 500;
            line-height: 48px;  
        }
        .get_touch{
            form{
                 position: relative;
                .form_control {
                    display: block;
                    margin-bottom: 10px;
                    width: 100%;
                    height: 55px;
                    padding: 20px;
                    color: $black;
                    background-color: #ffffff;
                    background-clip: padding-box;
                    border-radius: 35px;
                    border: 1px solid #dededf;
                    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: #aeacac;
                        font-weight: 400;
                    }
                }
                i{
                    height: 55px;
                    width: 55px;
                    background: #e9c708;
                    color: $white;
                    font-size: 25px;
                    border-radius: 50%;
                    text-align: center;
                    line-height: 55px;
                    position: absolute;
                    right: 0;
                    top: 49%;
                    transform: translateY(-49%);
                    cursor: pointer;
                }
            }
        }
    }
   }