


/*===========================
      13.Newsletter css 
===========================*/

.newsletter-area{
    @media #{$md}{
        background-position: right center;
    }
    @media #{$xs}{
        background-position: right center;
        padding: 70px 0;
    }
}

.newsletter-content{
    & .newsletter-title{
        font-size: 24px;
        color: $black;
        font-weight: 500;
        text-transform: uppercase;
        
        @media #{$xs}{
            font-size: 18px;
        }
        @media #{$sm}{
            font-size: 20px;
        }
    }
    
    & p{
        font-size: 16px;
        color: $body-color;
        margin-top: 20px;
        
        @media #{$xs}{
            font-size: 14px;
            line-height: 24px;
            margin-top: 10px;
        }
        @media #{$sm}{
            font-size: 16px;
            line-height: 27px;
        }
    }
    
    & .newsletter-forn{
        margin-top: 35px;
        padding-right: 170px;
        position: relative;
        
        @media #{$xs}{
            padding-right: 0;
        }
        @media #{$sm}{
            padding-right: 170px;
        }
        
        & input{
            height: 60px;
            background: transparent;
            color: #a9a9a9;
            padding: 0 10px;
            line-height: 32px;
            display: inline-block;
            width: 100%;
            font-size: 14px;
            border: 2px solid $border-color;
        }
        
        & .main-btn{
            position: absolute;
            top: 0;
            right: 0;
            text-transform: capitalize;
            letter-spacing: 0;
            
            @media #{$xs}{
                position: relative;
                width: 100%;
                margin-top: 10px;
            }
            @media #{$sm}{
                position: absolute;
                width: auto;
                margin-top: 0;
            }
        }
    }
}

