.subscribe{
    background-color: $primaryColor;
    position: relative;
    margin-top: 60px;
    &::after{
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        height: 100%;
        width: 20%;
        background-color: #2459A8;
    }
   .subscribe_wrapper{
       background-color: $primaryColor;
       padding: 60px 0;
       position: relative;
       z-index: 2;
       display: flex;
       align-items: center;
       justify-content: space-evenly;
        .subscribe_left{
            font-size: 28px;
            font-weight: 500;
            color: $white;
            line-height: 38px;
        }
        .subscribe_input{
            position: relative;
            display: flex;
            align-items: center;
            justify-content: end;
            .from_control{
                background-clip: padding-box;
                background-color: #ffffff13;
                border: 1px solid #d5d5d57a;
                color: #f8f8f8;
                display: block; 
                height: 55px;
                padding: 0 15px;
                width: 400px;
                &:focus{
                    outline: 0;
                }
                &::placeholder{
                    color: #ffffffbd;
                    font-size: 16px;
                }
            }
           .subscribe_btn{
              height: 55px;
              padding: 0 30px;
              display: flex;
              justify-content: center;
              align-items: center;
              background-color: $white;
              color: $black;
           }
        }
   }
}