.newslatter{
    padding: 10px 0 100px 0;
    .newsLatter_wrapper{
        background-color: #BEE1E6;
        height: 380px;
        border-radius: 10px;
        padding: 50px 50px;
        h3{
            font-size: 18px;
            color: #333;
            font-weight: 400;
            text-transform: uppercase;
        }
        h4{
            font-size: 35px;
            color: #000;
            font-weight: 600;
            text-transform: uppercase;
            padding: 10px 0;
            line-height: 45px;
        }
        h5{
            font-size: 15px;
            color: rgb(95, 95, 95);
            font-weight: 400;
            line-height: 25px;
        }
        .newslatterForm{
            margin-top: 30px;
           form{
            width: 80%;
            position: relative;
            .form_control{
                display: block; 
                margin-bottom: 10px;
                width: 100%;
                height: 60px;
                padding:23px;
                background-color:#ffffff;
                background-clip: padding-box;
                border: 1px solid #dededf;
                border-radius: 15px;
                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: 16px;
                    color: #aeacac;
                    font-weight: 400;
                }
            }
            i{
                height: 50px;
                width: 50px;
                font-size: 30px;
                text-align: center;
                line-height: 50px;
                color:#fff;
                background-color: $primaryColor;
                position: absolute;
                right: 5px;
                top: 50%;
                transform: translateY(-50%);
                border-radius: 50%;
                cursor: pointer;
                &:hover{
                    background-color: #000;
                }
            }
           }
        }
        .newslatterImg{
            img{
                animation: updown 5s infinite linear;
                border-radius: 15px;
            }
        }
    }
}

@keyframes updown{
    0% {
        transform: translate3d(0, 0, 0);
      }
      40% {
        transform: translate3d(0, -25px, 0);
        -moz-transform: translate3d(0, -25px, 0);
        -ms-transform: translate3d(0, -25px, 0);
        -o-transform: translate3d(0, -25px, 0);
      }
      100% {
        transform: translate3d(0, 0, 0);
      }
}