.subscribe-area{
    position: relative;
    &::before{
        position: absolute;
        content: "";
        background: #FEF4F4;
        height: 45%;
        width: 100%;
        right: 0px;
        left: 0;
        bottom: 0;
        z-index: -1;
    }
    .subscribe-padding{
        padding: 75px 0;
        @media #{$xs}{
            padding: 40px 0;
        }
    }
    .subscribe-caption{
        span{
            text-transform: uppercase;
            font-size: 12px;
            color: $theme-color;
            margin-bottom: 10px;
            display: block;
        }
        h3{ 
            font-size: 40px;
            display: block;
            font-weight: 400;
            line-height: 1.4;
            margin-bottom: 22px;
            color:#fff;
            @media #{$lg}{
                font-size: 41px;
            }
            @media #{$md}{
                font-size: 43px;
            }
            @media #{$sm}{
                font-size: 31px;
            }
            @media #{$xs}{
                font-size: 32px;
            }
        }
        p{
            color: #9498A7;
            font-size: 16px;
            margin-bottom: 21px;
            
        }
        form{
            input{
                width: 39%;
                height: 50px;
                padding: 15px 24px;
                color: #232F55;
                font-size: 16px;
                border-radius: 25px;
                background: #fff;
                border: 0;
                &::placeholder{
                    color: #9498A7;
                    font-size: 16px;
                }
                @media #{$md}{
                    width: 52%;
                }
                @media #{$sm}{
                    width: 52%;
                }
                @media #{$xs}{
                    width: 90%;
                    margin-bottom: 20px;
                }

            }
            button.subscribe-btn{
                width: 21%;
                height: 50px;
                border: 0;
                background: #FF1616;
                border-radius: 25px;
                padding: 15px 26px;
                color: #fff;
                margin-left: 5px;
                cursor: pointer;
                font-size: 16px;
                font-weight: 500;
                @media #{$md}{
                    width: 26%;
                }
                @media #{$sm}{
                    width: 28%;
                }
                @media #{$xs}{
                    width: 90%;
                    margin-bottom: 20px;
                    margin-left: 0px;
                }
            }
        }
    }
}