@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
/* font-family: 'Manrope', sans-serif; */

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: #000;
    font-size: 17px;
    line-height: 1.5;
    background-color: #fff;
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px 0;
    padding: 0;
    color: #000;
    font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}



h1{
    font-weight: 700;
    font-size: 90px;
    line-height: 1;
}

h2 {
    font-weight: 700;
    font-size: 70px;
    line-height: 1;
}

h3 {
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
}

h4 {
    font-size: 24px;
    line-height: 1.2;
   
}

h5 {
    font-size: 20px;
    line-height: 1.2;
   
}




a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: #ecb61e;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: red;
}

img {
    max-width: 100%;
}


input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.7);
    height: 58px;
    padding: 0 16px;
    outline: none !important;
}

textarea {
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    width: 100%;
    color: #000;
    height: 158px;
    outline: none !important;
}

select {
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 100%;
    padding: 0 11px;
    background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: #eab71e;
    color: #000000;
    height: 58px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;

    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background: #000;
    color: #eab71e;
}

 ::-webkit-input-placeholder {
    opacity: 0.7;
    color: #000;
}

 :-ms-input-placeholder {
    opacity: 0.7;
    color: #000;
}

 ::-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

 :-moz-placeholder {
    opacity: 0.7;
    color: #000;
}







/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}



/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 40px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    border: 1px solid #3E3E42;
    background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio end */

/* back to top */

#scroll {
    position:fixed;
    right:20px;
    bottom:20px;
    cursor:pointer;
    width:55px;
    height:55px;
    background-color:#bdd653;
    display:none;
    -webkit-border-radius:100%;
    -moz-border-radius:100%;
    border-radius:100%;
    line-height: 68px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
z-index: 9;
}
#scroll:hover{
    background: #88a725;
}
#scroll i{
    color: #fff;
    font-size: 44px;
    -webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
-webkit-transform: translateY(0);
transform: translateY(0);
}

#scroll:hover i{
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
-webkit-transform: translateY(-6px);
transform: translateY(-6px);
}




/* navbar*/

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 170px;
    display: inline-block;
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav>li {
    margin: 0 15px;
    padding: 20px 0;
    position: relative;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav>li:first-child {
    margin-left: 0;
}

.navbar-nav>li>a {
    color: #000;
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    font-weight: normal;
}

.navbar-nav>li>a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #3B61DC;
    /* opacity: 0; */
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
    color: #3B61DC;
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
}


/* navbar submenu*/

.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: 140px;
    padding: 0;
}

.sub-menu>li>a {
    color: #000;
    display: block;
    width: 100%;
    padding: 6px 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.sub-menu>li {
    width: 100%;
    display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
    background: #eab71e;
    color: #fff;
}



.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}


/* for push-menu */
.navbar-collapse .navbar-toggler{
    display: none;
}
#navoverlay{
       display: block;
       pointer-events: none;
       position: fixed;
       left: 0;
       top: 0;
       width: 100%;
       height: 100%;
       background: transparent;
       margin: 0;
       padding: 0 !important;
       z-index: 99;
       -webkit-transition: background-color 0.5s linear;
        transition: background-color 0.5s linear;
}
/* for push-menu end*/

.rj_all_body_wrap{
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: #545454;
    font-size: 16px;
    line-height: 1.5;
    background-color: #FAF6FC;
}
.rj_container{
    margin: 0 auto;
    padding: 0 12px;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.rj_cmn_gap{
    padding: 200px 0;
}
figure{
    margin: 0;
}
.rj_cmn_row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -12px;
}
/* rj_head_sec start */
.rj_main_head{
    padding: 35px 0 26px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.rj_head_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rj_head_wrap ul{
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.rj_head_wrap ul li{
    margin-right: 40px;
}
.rj_head_wrap ul li:last-child{
    margin-right: 0;
}
.rj_head_wrap ul li a{
    display: inline-block;
    color: #22063C;
    text-transform: uppercase;
}
.rj_head_wrap ul li a:hover{
    color: #E8733D;
}
.rj_hd_logo a{
    display: inline-flex;
    width: 100px;
}
.rj_hd_logo a img{
    width: 100%;
}
.rj_hd_login ul li a span{
    display: inline-flex;
    margin-right: 8px;
    line-height: 1;
}
.rj_hd_login ul li a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.rj_hd_menu{
    padding: 0 30px;
}
/* rj_head_sec end */


/* rj_ban_sec start */
.rj_banner_main{
    padding: 104px 0 143px; 
    background: #DDC8EC;
    position: relative;
}
.rj_ban_shape{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    line-height: 0;
}
.rj_ban_shape img{
    width: 100%;
}
.rj_banner_wrap{
    padding: 114px 64px 54px;
    background: rgba(255,255,255,0.9);
    border-radius: 32px;
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.rj_h1{
    font-weight: 700;
    color: #22063C;
    line-height: 1.2;
    font-size: 56px;
    margin-bottom: 12px;
}
.rj_banner_left{
    max-width: 57%;
    width: 100%;
    padding: 0 12px;
}
.rj_banner_right{
    max-width: 43%;
    width: 100%;
    padding: 0 12px;
}
.rj_banner_left ul{
    padding-left: 0;
    list-style: none;
    margin: 0;
}
.rj_banner_left ul.rj_ban_list li{
    position: relative;
    margin-bottom: 13px;
    line-height: 1.2;
    padding-left: 25px;
}
.rj_banner_left ul.rj_ban_list li:last-child{
    margin-bottom: 0;
}
.rj_banner_left ul.rj_ban_list li::before{
    position: absolute;
    left: 10px;
    top: 7px;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #545454;
}
.rj_pg_btn{
    margin-top: 52px;
}
.rj_cmn_btn{
    padding: 16px 64px;
    background: #E8733D;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
}
.rj_cmn_btn:hover{
    background: #000;
    color: #fff;
}
.rj_ban_ggl_rate ul{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}
.rj_ban_ggl_rate ul li{
    padding: 0 16px;
    position: relative;
}
.rj_ban_ggl_rate ul li:after{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 1px;
    height: 43px;
    background: rgba(0,0,0,0.1);
}
.rj_ban_ggl_rate ul li:last-child{
    padding-right: 0;
}
.rj_ban_ggl_rate ul li:last-child:after{
    display: none;
}
.rj_ban_ggl_rate ul li:first-child{
    padding-left: 0;
}
.rj_ggl{
    display: flex;
    align-items: center;
}
.rj_ban_ggl_rate{
    margin-top: 38px;
}
.rj_ban_ggl_rate ul li:first-child{
    max-width: 165px;
}
.rj_ggl_left_icon{
    max-width: 32px;
    width: 100%;
    line-height: 1;
    display: block;
    margin-right: 9px;
}
.rj_ggl_left_icon img{
    width: 100%;
}
.rj_ggl_left p{
    max-width: calc(100% - 41px);
    width: 100%;
    font-size: 11px;
    font-weight: 600;
    color: #22063C;
    line-height: 1.2;
}
.rj_ggl_right_icon{
    max-width: calc(100% - 91px);
    width: 100%;
}
.rj_ggl_right_rating{
    max-width: 75px;
    width: 100%;
    font-size: 48px;
    color: #63288D;
    line-height: 1.4;
    text-transform: uppercase;
    display: block;
    margin-right: 16px;
    font-weight: 700;
}
.rj_ban_img_1{
    max-width: 496px;
    width: 100%;
}
.rj_ban_img_1 img, .rj_ban_cartoon img{
    width: 100%;
}
.rj_ban_cartoon{
    position: absolute;
    right: 0;
    bottom: 0;
    line-height: 0;
    max-width: 312px;
}
.rj_ban_top_2, .rj_ban_top_1{
    line-height: 0;
}
.rj_ban_top_1{
    position: absolute;
    top: -45px;
    left: 130px;
    max-width: 79px;
    width: 100%;
}
.rj_ban_top_2{
    position: absolute;
    top: -70px;
    right: 110px;
    max-width: 79px;
    width: 100%;
}
.rj_ban_top_1 img, .rj_ban_top_2 img{
    width: 100%;
}
.rj_ban_icon_list ul{
    display: flex;
    align-items: center;
}
.rj_ban_icon_list ul li{
    margin-right: 20px;
}
.rj_ban_icon_list ul li:last-child{
    margin-right: 0;
}
.rj_ban_icon_list ul li img{
    max-width: 60px;
}
.rj_ban_icon_list{
    margin-top: 20px;
}
.rj_fav_software.rj_cmn_gap{
    padding: 57px 0 100px;
}
.rj_sec_hd{
    margin-bottom: 40px;
    text-align: center;
}
.rj_fav_software .rj_sec_hd, .rj_payroll_sol .rj_sec_hd{
    max-width: 633px;
    margin-left: auto;
    margin-right: auto;
}
.rj_h2{
    font-weight: 700;
    font-size: 40px;
    color: #22063C;
    line-height: 1.4;
}
.rj_software_list{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.rj_software_list li{
    line-height: 1;
}
.rj_software_list li:not(:last-child){
    margin-right: 36px;
}
.rj_payroll_sol.rj_cmn_gap{
    padding: 163px 0 219px;
}
.rj_payroll_sol{
    background: #fff;
    position: relative;
}
.rj_powerful_payd_col{
    width: 50%;
    padding: 0 12px;
}
.rj_powerful_payd_left figure img{
    width: 100%;
}
.rj_powerful_payd_row{
    align-items: center;
}
.rj_accordion_hd p{
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 1.4;
}
.rj_accordion_hd{
    padding: 16px 24px;
    position: relative;
}
.rj_accordion_list li{
    background: #CAA9E1;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}
.rj_accordion_list li .rj_accordion_hd:after{
    width: 16px;
    height: 8px;
    content: "";
    background: url(images/rj_wh_arw.svg) no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}
.rj_accordion_list li.active .rj_accordion_hd:after{
    transform: translateY(-50%) rotate(180deg);
}
.rj_accordion_answer{
    padding: 0 24px 17px;
}
.rj_accordion_answer p{
    color: #FFFFFF;
}
.rj_accordion_list li{
    margin-bottom: 8px;
}
.rj_accordion_list li:last-child{
    margin-bottom: 0;
}
.rj_powerful_payd_left figure{
    padding-right: 56px;
}
.rj_powerful_payd .rj_sec_hd{
    margin-bottom: 50px;
}
.rj_powerful_payd .rj_pg_btn{
    text-align: center;
    margin-top: 64px;
}
.rj_paydco_testimonial{
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
}
.rj_paydco_testi_box{
    max-width: 732px;
    width: 100%;
}
.rj_paydco_testimonial .rj_h2{
    font-weight: 500;
    color: #FFFFFF;
}
.rj_paydco_testimonial.rj_cmn_gap{
    padding: 145px 0 167px; 
}
.rj_paydco_testimonial .rj_h2 span{
    display: inline-block;
    color: #63288D;
}
.rj_testi_name{
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.rj_clnt_icon{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow-x: hidden;
    margin-right: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.rj_clnt_icon img{
    width: 100%;
}
.rj_clinet_name{
    font-weight: 700;
    font-size: 13px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 0;
}
.rj_testi_dtls p{
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 0;
}
.rj_wh_star{
    display: inline-flex;
    width: 100%;
    max-width: 68px;
}
.rj_wh_star img{
    width: 100%;
}
.rj_paydco_testimonial:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 1064px;
    content: "";
    bottom: 0;
    z-index: 1;
    background: linear-gradient(89.65deg, #CAA9E1 48.97%, rgba(202, 169, 225, 0.7) 75.82%, rgba(202, 169, 225, 0) 98.57%);
}
.rj_paydco_testi_box{
    position: relative;
    z-index: 4;
}
.rj_paydco_testimonial .rj_container{
    position: relative;
}
.rj_testi_coma{
    position: absolute;
    left: -84px;
    top: -71px;
    max-width: 180px;
    opacity: 0.3;
    width: 100%;
    z-index: 2;
}
.rj_testi_coma img{
    width: 100%;
}
.rj_hr_manager .rj_sec_hd{
    margin-bottom: 185px;
}
.rj_hr_manager .rj_h2{
    color: #000000;
}
.rj_bsns_plan_row{
    align-items: center;
    margin: 0 -16px;
    position: relative;
    z-index: 4;
}
.rj_bsns_plan_col{
    padding: 0 16px;
    width: 33.3%;
    flex: 0 0 33.3%;
    
}
.rj_bsns_plan_col_box{
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 36px 26px;
    text-align: center;
    min-height: 780px;
}
.rj_bsns_plan_col_scnd{
    position: relative;
}
.rj_h5{
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 13px;
}
.rj_h4{
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 8px;
}
.rj_price_sec{
    margin: 35px auto 38px;
    max-width: 151px;
}
.rj_bsns_plan_col_box_top p{
    font-size: 14px;
}
.rj_bsns_plan_col_box_top .rj_price{
    font-weight: 800;
    font-size: 32px;
    color: #22063C;
    line-height: 1.35;
    margin-bottom: 11px;
}
.rj_facility li{
    font-weight: 600;
    font-size: 14px;
    color: #E8733D;
}
.rj_facility{
    margin-bottom: 35px;
}
.rj_ready_buy{
    display: inline-block;
    color: #63288D;
    font-size: 10px;
    margin: 27px 0 32px;
}
.rj_bsns_facility li{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 3px;
    text-align: left;
    padding-left: 24px;
    position: relative;
}
.rj_bsns_facility li:last-child{
    margin-bottom: 0;
}
.rj_bsns_facility li:before{
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    content: "";
    background: url(images/rj_tick_plan.svg) no-repeat center center;
    background-size: 10px;
}
.rj_bsns_plan_col_scnd .rj_bsns_plan_col_box{
    outline: 6px solid #63288D;
}
.rj_bsns_plan_col_scnd .rj_bsns_plan_col_box .rj_price{
    font-size: 40px;
    color: #E8733D;
    margin-bottom: 0;
}
.rj_bsns_plan_col_scnd .rj_h5{
    font-size: 24px;
    margin-bottom: 8px;
}
.rj_bsns_plan_col_scnd .rj_bsns_plan_col_box p{
    font-size: 16px;
}
.rj_bsns_plan_col_scnd .rj_facility li{
    font-size: 16px;
}
.rj_bsns_plan_col_scnd .rj_bsns_facility li{
    font-size: 16px;
}
.rj_bsns_plan_col_scnd .rj_bsns_plan_col_box{
    padding: 40px 36px 36px;
}
.rj_bsns_plan_col_scnd .rj_price_sec{
    margin: 32px auto;
}
.rj_bsns_plan_col_scnd .rj_bsns_facility li{
    margin-bottom: 2px;
}
.rj_bsns_plan_col_scnd .rj_facility{
    margin-bottom: 32px;
}
.rj_bsns_plan_col_box_btm a{
    font-weight: 400;
    font-size: 13px;
    line-height: 1.35;
    display: inline-block;
    color: #63288D;
}
.rj_bsns_plan_col_box_btm a:hover{
    color: #E8733D;
}
.rj_pcs_of_mind .rj_sec_hd{
    margin-bottom: 75px;
}
.rj_pcs_of_mind{
    background: #F0E7F7;
    position: relative;
}
.rj_pcs_mind_list_box figure{
    margin-bottom: 15px;
}
.rj_pcs_mind_list_box figure img{
    max-width: 104px;
}
.rj_pcs_mind_list li:nth-child(2n) .rj_pcs_mind_list_box{
    padding: 16px 5px;
    width: 160px;
    background: #fff;
    border-radius: 8px;
}
.rj_pcs_mind_list li:nth-child(2n) .rj_pcs_mind_list_box figure{
    margin-bottom: 31px;
}
.rj_pcs_mind_list li:nth-child(2n) .rj_pcs_mind_list_box figure img{
    max-width: 80px;
}
.rj_pcs_mind_list_box{
    text-align: center;
}
.rj_pcs_mind_list_box .rj_h4{
    margin-bottom: 16px;
    color: #63288D;
    line-height: 1.2;
}
.rj_pcs_mind_list li:nth-child(2n) .rj_pcs_mind_list_box .rj_h4{
    margin-bottom: 32px;
}
.rj_pcs_mind_list_box p{
    color: #63288D;
    line-height: 1.2;
    font-size: 24px;
    font-weight: 700;
}
.rj_pcs_mind_list{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 -20px;
    flex-wrap: wrap;
}
.rj_pcs_mind_list li{
    padding: 0 20px;
}
.rj_pcs_of_mind.rj_cmn_gap{
    padding-bottom: 148px;
    padding-top: 100px;
}
.rj_time_money .rj_sec_hd{
    margin-bottom: 87px;
}
.rj_time_money .rj_sec_hd h2{
    margin-bottom: 0;
}
.rj_time_money .rj_sec_hd p{
    font-size: 20px;
    line-height: 1.4;
}
.rj_time_money_box{
    border-radius: 8px;
    background: #63288D;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 32px 64px 24px 24px;
    position: relative;
    overflow: hidden;
}
.rj_time_money_box:after{
    position: absolute;
    left: -180px;
    width: 403px;
    height: 403px;
    border-radius: 50%;
    background: #CAA9E1;
    opacity: 0.2;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    z-index: 2;
}
.rj_time_money_box:before{
    background: #fff;
    opacity: 0.5;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    content: "";
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.rj_time_money_left{
    max-width: 230px;
    padding-right: 36px;
    width: 100%;
    position: relative;
    z-index: 4;
}
.rj_time_money_right{
    max-width: calc(100% - 230px);
    width: 100%;
}
.rj_time_money_box_wrap{
    padding: 0 28px;
}
.rj_time_money_roll .slick-list{
    width: 100%;
    order: 1;
    margin-bottom: 40px;
}
.rj_time_money_box_wrap.slick-active .rj_time_money_box:before{
    opacity: 0;
}
.rj_time_money_left_top span{
    display: block;
    font-size: 40px;
    color: #FFFFFF;
    line-height: 1.35;
    font-weight: 700;
}
.rj_time_money_left_top p{
    font-weight: 700;
    color: #fff;
}
.rj_time_money_right p{
    font-size: 24px;
    color: #fff;
}
.rj_time_money_right figure{
    margin-bottom: 32px;
    width: 180px;
}
.rj_time_money_right figure img{
    width: 100%;
}
.rj_slide_btn{
    display: inline-flex;
    text-align: right;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 5;
}
.rj_slide_btn:hover{
    color: #E8733D;
}
.rj_slide_btn span{
    display: inline-flex;
    line-height: 1;
    width: 8px;
    margin-left: 16px;
}
.rj_slide_btn span img{
    width: 100%;
}
.rj_time_money_box .pg_btn{
    text-align: right;
}
.rj_time_money_roll{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.rj_time_money_roll .slick-arrow{
    position: static;
    transform: inherit;
    -webkit-transform: inherit;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0px 20px 100px rgba(0, 17, 43, 0.1);
    transition: all 0.3s ease-in-out;
}
.rj_time_money_roll .slick-arrow:before{
    display: none;
}
.rj_time_money_roll .slick-prev{
    order: 2;
    margin-right: 14px;
    background: url(images/rj_slide_left_arw.svg) no-repeat center center;
    background-size: 8px;
}
.rj_time_money_roll .slick-next{
    order: 4;
    margin-left: 14px;
    background: url(images/rj_slide_right_arw.svg) no-repeat center center;
    background-size: 8px;
}
.rj_time_money_roll .slick-next:hover{
    background: #63288D url(images/rj_slide_right_arw_wh.svg) no-repeat center center;
    background-size: 8px;
}
.rj_time_money_roll .slick-prev:hover{
    background: #63288D url(images/rj_slide_left_arw_wh.svg) no-repeat center center;
    background-size: 8px;
}
.rj_time_money_roll .slick-dots{
    order: 3;
    display: inline-block;
    width: auto;
    position: static;
    line-height: 0;
}
.rj_time_money_roll .slick-dots li{
    width: auto;
    height: auto;
    margin: 0 4px;
}
.rj_time_money_roll .slick-dots li button{
    padding: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #A8A6A5;
}
.rj_time_money_roll .slick-dots li button:before{
    display: none;
}
.rj_time_money_roll .slick-dots li.slick-active button{
    background: #63288D;
}
.rj_time_money .pg_btn{
    margin-top: 64px;
    text-align: center;
}
.rj_time_money .pg_btn .rj_cmn_btn{
    color: #fff;
    background: linear-gradient(101.66deg, #8232A8 5.62%, #562DAC 95.35%);
}
.rj_time_money .pg_btn .rj_cmn_btn:hover{
    background: linear-gradient(101.66deg, #562DAC 5.62%, #8232A8 95.35%);
}
.rj_free_consult_wrap{
    align-items: center;
}
.rj_consult_col{
    width: 50%;
    padding: 0 12px;
}
.rj_consult_left figure{
    text-align: center;
}
.rj_consult_left figure img{
    max-width: 381px;
}
.rj_consult_right .rj_h2{
    color: #000;
    margin-bottom: 28px;
}
.rj_consult_right .pg_btn{
    margin-top: 64px;
}
.rj_consult_left{
    line-height: 0;
}
.rj_fav_top, .rj_consult_top, .rj_coffe_top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}
.rj_fav_btm, .rj_coffe_btm, .rj_consult_btm{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}
.rj_fav_top img, .rj_fav_btm img, .rj_coffe_btm img, .rj_consult_top img, .rj_consult_btm img, .rj_coffe_top img{
    width: 100%;
}
.rj_hr_manager.rj_cmn_gap{
    padding-bottom: 100px;
}
.rj_time_money.rj_cmn_gap{
    padding-top: 52px;
}
.rj_free_consult{
    position: relative;
    background: rgba(255,255,255,0.7);
}
.rj_consult_col{
    position: relative;
    z-index: 1;
}
.rj_consult_right{
    z-index: 3;
}
.rj_consult_btm{
    z-index: 2;
}
.rj_free_consult.rj_cmn_gap{
    padding-bottom: 50px;
    padding-top: 0;
}
.rj_coffe_top{
    top: -310px;
}
.rj_speak_main.rj_cmn_gap{
    padding-top: 60px; 
}
.rj_speak_top .rj_sec_hd{
    margin-bottom: 50px
}
.rj_spk_top_left{
    width: 58%;
    padding: 0 12px;
}
.rj_spk_top_right{
    width: 42%;
    padding: 0 12px 0 100px;
}
.rj_spk_top_left_cont{
    max-width: 450px;
    margin-bottom: 24px;
}
.rj_speak_top_wrap .counter, .rj_count_sec .counter-box-wrap strong{
    font-weight: 700;
    font-size: 64px;
    color: #63288D;
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: center;
}
.rj_speak_top_wrap .counter-box span{
    display: block;
    font-size: 24px;
    line-height: 1.2;
}
.rj_count_sec{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.rj_speak_top_wrap .counter-box:not(:last-child){
    margin-right: 18px;
}
.rj_spk_top_right figure img{
    width: 100%;
}
.rj_count_sec .counter-box-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.rj_spk_top_left .rj_pg_btn{
    margin-top: 64px;
}
.rj_speak_top_wrap_main{
    padding: 74px 104px 74px 63px;
    border-radius: 32px;
    background: rgba(255,255,255,0.8);
}
.rj_speak_main{
    background: linear-gradient(180deg, #DDC8EC 25%, rgba(226, 207, 239, 0) 93.44%);
    position: relative;
}
.rj_speak_top_shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}
.rj_speak_top_shape img{
    width: 100%;
}
.rj_speak_top{
    position: relative;
    z-index: 4;
}
.rj_speak_mid .rj_sec_hd{
    margin-bottom: 61px;
}
.rj_speak_mid_left{
    width: 60%;
    padding: 0 32px;
}
.rj_speak_mid_right{
    width: 40%;
    padding: 0 32px;
}
.rj_speak_mid_main, .rj_demo_vid_row{
    align-items: center;
    margin: 0 -32px;
}
.rj_speak_mid_left{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.rj_mid_bx_1{
    max-width: 52%;
    width: 100%;
    background: #fff;
    border: 4px solid #63288D;
    border-radius: 16px;
    position: relative;
}
.rj_mid_bx_2{
    max-width: 48%;
    width: 100%;
    background: rgba(255,255,255,0.4);
    border-radius: 0px 8px 8px 0px;
    position: relative;
}
.rj_payd_logo img{
    width: 160px;
}
.rj_speak_mid_left ul{
    padding: 63px 30px;
}
.rj_speak_mid_left ul li{
    text-align: center;
}
.rj_speak_mid_left ul li:first-child{
    margin-bottom: 40px;
}
.rj_speak_mid_left ul li{
    margin-bottom: 10px;
}
.rj_mid_bx_1 ul li{
    font-size: 24px;
    font-weight: 500;
}
.rj_mid_bx_2 ul li{
    font-size: 20px;
    font-weight: 400;
}
.rj_mid_bx_2 ul li:first-child{
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 40px;
    line-height: 2;
    text-transform: uppercase;
    color: #22063C;
}
.rj_mid_icon{
    position: absolute;
    right: 24px;
    top: 24px;
    max-width: 24px;
    width: 100%;
}
.rj_mid_icon img{
    width: 100%;
}
.rj_mid_bx_2 .rj_mid_icon{
    max-width: 16px;
}
.rj_speak_mid_right .pg_btn{
    margin-top: 64px;
}
.rj_demo_vid_left{
    width: 47%;
    padding: 0 12px;
}
.rj_demo_vid_right{
    width: 53%;
    padding: 0 12px 0 50px;
}
.rj_demo_vid_left figure img{
    max-width: 363px;

}
.rj_demo_vid_left figure{
    margin-bottom: 100px;
}
.rj_demo_vid_left{
    text-align: center;
}
.rj_demo_vid_row{
    align-items: flex-start;
    margin: 0 -12px;
}
.rj_demo_vid_right ul li:not(:last-child){
    margin-bottom: 40px;
}
.rj_demo_vid_right ul li h3{
    font-weight: 700;
    font-size: 24px;
    color: #22063C;
    line-height: 1.4;
    margin-bottom: 16px;
}
.rj_demo_vid_right ul li p{
    margin-bottom: 16px;
}
.rj_demo_vid_right ul li p:last-child{
    margin-bottom: 0;
}
.rj_uptodate .rj_sec_hd {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.rj_uptodate .rj_sec_hd .rj_h2{
    text-align: left;
    max-width: 428px;
    width: 100%;
}
.rj_blog_hd_cont{
    max-width: 515px;
    width: 100%;
    text-align: left;
}
.rj_blog_btn{
    background: linear-gradient(101.66deg, #8232A8 5.62%, #562DAC 95.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.rj_blog_btn:hover{
    background: linear-gradient(101.66deg, #E8733D 5.62%, #E8733D 95.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.rj_blog_btn span{
    display: inline-flex;
    margin-left: 16px;
    width: 8px;
}
.rj_blog_btn span img{
    width: 100%;
}
.rj_blog_top_left{
    width: 44%;
    padding: 0 12px;
}
.rj_blog_top_right{
    width: 56%;
    padding: 0 12px;
}
.rj_blog_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -12px;
}
.rj_blog_top_wrap{
    background: #fff;
    box-shadow: 0px 20px 100px rgba(0, 17, 43, 0.07);
    border-radius: 16px;
    overflow: hidden;
}
.rj_blog_top_left{
    line-height: 0;
}
.rj_blog_top_left img{
    width: 100%;
}
.rj_blog_top_right_inner{
    padding: 0 63px 0 38px;
}
.rj_blog_top_wrap{
    margin-bottom: 52px;
}
.rj_blog_img{
    display: block;
}
.rj_blog_col{
    padding: 0 26px;
    width: 33.3%;
}
.rj_blog_box{
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 20px 100px rgba(0, 17, 43, 0.07);
    overflow: hidden;
}
.rj_blog_btm_wrap{
    align-items: center;
    margin: 0 -26px;
}
.rj_blog_box_inner{
    padding: 16px 24px;
}
.rj_dt{
    margin-bottom: 8px;
}
.rj_big_blog_hd{
    font-weight: 700;
    font-size: 40px;
    line-height: 1.4;
    color: #22063C;
    display: inline-block;
    max-width: 347px;
}
.rj_big_blog_hd:hover{
    color: #E8733D;
}
.rj_blog_top_right_inner .rj_blog_btn{
    display: inline-flex;
}
.rj_sm_blog_hd{
    display: block;
    font-weight: 700;
    line-height: 1.4;
    color: #22063C;
    font-size: 24px;
}
.rj_blog_box_inner h3{
    margin-bottom: 16px;
}
.rj_sm_blog_hd:hover{
    color: #E8733D;
}
.rj_blog_box_inner p{
    margin-bottom: 16px;
}
.rj_blog_box_inner .rj_dt{
    margin-bottom: 8px;
}
.rj_uptodate.rj_cmn_gap{
    padding-top: 0;
}
.rj_faq .rj_accordion_hd p{
    color: #22063C;
}
.rj_faq .rj_accordion_list li{
    background: #FFFFFF
}
.rj_faq .rj_accordion_answer p{
    color: #545454;
}
.rj_faq .rj_accordion_list li{
    margin-bottom: 16px;
}
.rj_faq .rj_accordion_hd{
    padding: 32px 70px 32px 24px;
}
.rj_faq .rj_accordion_list li .rj_accordion_hd:after{
    background: url(images/rj_faq_arw.svg) no-repeat center center;
    width: 24px;
    height: 12px;
    background-size: 24px;
}
.rj_faq .rj_accordion_answer{
    padding: 0 146px 46px 24px;
}
.rj_faq.rj_cmn_gap{
    padding-top: 0;
}
.rj_faq .rj_sec_hd{
    margin-bottom: 58px;
}
.rj_faq .rj_sec_hd .rj_h2{
    color: #092332;
}
.rj_main_footer{
    background: #CAA9E1;
}
.rj_footer_top{
    padding: 80px 0 64px;
    position: relative;
}
.rj_top_ftr_col_1{
    width: 24%;
}
.rj_ftr_logo{
    display: inline-flex;
    width: 120px;
    margin-bottom: 16px;
}
.rj_ftr_logo img{
    width: 100%;
}
.rj_top_ftr_col_1 p{
    font-weight: 400;
    line-height: 1.6;
    font-size: 15px;
    color: #fff;
}
.rj_ftr_scl_icon{
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.rj_ftr_scl_icon li:not(:last-child){
    margin-right: 16px;
}
.rj_ftr_scl_icon li a{
    display: inline-block;
    height: 24px;
}
.rj_ftr_scl_icon li a img{
    height: 100%;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease-in-out;
}
.rj_ftr_scl_icon li a:hover img{
    filter: brightness(0);
}
.rj_top_ftr_col_2{
    width: 22%;
}
.rj_top_ftr_col_3{
    width: 28%;
}
.rj_top_ftr_col{
    padding: 0 12px;
}
.rj_top_ftr_col_4{
    width: 26%;
    padding-left: 44px;
}
.rj_ftr_hd{
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 8px;
}
.rj_ftr_adr li{
    display: flex;
    align-items: flex-start;
}
.rj_ftr_adr_icon{
    width: 12px;
    display: inline-flex;
    margin-right: 10px;
    margin-top: 6px;
}
.rj_ftr_adr_icon img{
    width: 100%;
    filter: brightness(0) invert(1);
}
.rj_ftr_adr li p{
    max-width: calc(100% - 22px);
    width: 100%;
    color: #fff;
}
.rj_ftr_adr li p strong{
    display: block;
}
.rj_ftr_abt{
    margin-top: 24px;
}
.rj_top_ftr_col ul li a{
    color: #FFFFFF;
    display: inline-block;
}
.rj_top_ftr_col ul li:not(:last-child){
    margin-bottom: 4px;
}
.rj_top_ftr_col ul li a:hover{
    color: #000;
}
.rj_ftr_tech{
    margin-top: 24px;
}
.rj_fot_map{
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
}
.rj_fot_map iframe{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: none;
    outline: none;
}
.rj_footer_top:after{
    position: absolute;
    left: -48px;
    right: -48px;
    height: 1px;
    background: #fff;
    bottom: 0;
    content: "";
}
.rj_footer_btm{
    padding: 24px 0;
}
.rj_footer_btm ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.rj_footer_btm ul li:not(:last-child){
    margin-right: 44px;
}
.rj_footer_btm ul li a{
    display: inline-block;
    color: #fff;
    opacity: 0.8;
}
.rj_footer_btm ul li a:hover{
    color: #000;
    opacity: 1;
}
.rj_most_pop{
    position: absolute;
    top: -80px;
    right: -95px;
}
.rj_most_pop span{
    background: #F7CC48;
    border-radius: 8px;
    padding: 9px 13px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    line-height: 1.35;
    max-width: 100px;
    text-align: center;
    text-transform: uppercase;
}
.rj_hd_logo{
    line-height: 0;
}
.rj_navigation{
    display: none;
}
.rj_ban_img_wrap{
    position: relative;
}
.rj_blog_img img{
    width: 100%;
}
.rj_blog_top_right_inner h3{
    margin-bottom: 16px;
}


/*support 24/3/2023*/
.rj_uptodate .rj_blog_top_right_inner{
    padding: 50px 63px 50px 38px;
}
.rj_uptodate .rj_blog_top{
    align-items: inherit;
}
.rj_uptodate .rj_big_blog_hd{
    max-width: 100%;
}
.rj_uptodate .rj_blog_top_left .rj_blog_img{
    height: 100%;
}
.rj_uptodate .rj_blog_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rj_uptodate .rj_blog_btm_wrap .rj_blog_img{
    height: 282px;
    width: 100%;
}
.rj_uptodate .rj_blog_btm_wrap .rj_blog_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rj_uptodate .rj_blog_btm_wrap.rj_cmn_row{
    align-items: inherit;
  }
  .rj_uptodate .rj_blog_btm_wrap .rj_blog_box{
    height: 100%;
  }
/*support 24/3/2023*/


/* ========== responsive css =========== */



@media(min-width:1025px) {
    /* navbar*/
    .navbar-nav .clickD {
        display: none;
    }
    .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        display: block;
    }
}
@media(min-width:1200px){
    .rj_container{
        max-width: 1170px;
    }
}
@media(min-width:1280px){
    .rj_container{
        max-width: 1208px;
    }
}
@media(max-width: 1499px){
.rj_coffe_top {
    top: -270px;
}
}
@media(max-width: 1299px){
    .rj_time_money_box_wrap{
        padding: 0 20px;
    }
    .rj_footer_top:after{
        right: 0;
        left: 0;
    }
    .rj_speak_mid_left, .rj_speak_mid_right{
        padding: 0 20px;
    }
    .rj_speak_mid_main{
        margin: 0 -20px;
    }
    .rj_coffe_top {
        top: -230px;
    }
}

@media(max-width:1199px) {
.rj_cmn_gap {
    padding: 130px 0;
}
.rj_head_wrap ul li {
   margin-right: 30px;
}
.rj_banner_wrap{
    padding: 90px 40px 35px;
}
.rj_ban_top_2, .rj_ban_top_1{
    max-width: 70px;
}
.rj_ban_top_1{
    top: -45px;
    left: 100px;
}
.rj_ban_top_2{
    right: 90px;
    top: -60px;
}
.rj_ban_cartoon{
    max-width: 290px;
}
.rj_h1{
    font-size: 50px;
}
.rj_pg_btn {
    margin-top: 45px;
}
.rj_ggl_right_rating{
    font-size: 42px;
}
.rj_ggl_right_rating{
    max-width: 68px;
}
.rj_banner_main{
    padding: 104px 0 125px;
}
.rj_fav_software.rj_cmn_gap {
    padding: 45px 0 85px;
}
.rj_h2{
    font-size: 35px;
}
.rj_software_list li:not(:last-child) {
    margin-right: 32px;
}
.rj_payroll_sol.rj_cmn_gap {
    padding: 145px 0 178px;
}
.rj_powerful_payd_left figure {
    padding-right: 40px;
}
.rj_accordion_hd p{
    font-size: 22px;
}
.rj_paydco_testimonial.rj_cmn_gap {
    padding: 120px 0 140px;
}
.rj_paydco_testimonial:before{
    width: 85%;
}
.rj_testi_coma{
    top: -40px;
    left: 12px;
    max-width: 120px;
}
.rj_hr_manager .rj_sec_hd {
    margin-bottom: 150px;
}
.rj_bsns_plan_col{
    padding: 0 12px;
}
.rj_bsns_plan_row{
    margin: 0 -12px;
}
.rj_bsns_plan_col_box{
    padding: 24px;
}
.rj_coffe_top {
    top: -170px;
}
.rj_pcs_mind_list li{
    margin-bottom: 25px;
    padding: 0 12px;
}
.rj_pcs_mind_list_box figure img{
    max-width: 80px;
}
.rj_h4, .rj_pcs_mind_list_box p{
    font-size: 20px;
}
.rj_pcs_of_mind.rj_cmn_gap {
    padding-bottom: 110px;
}
.rj_time_money .rj_sec_hd {
    margin-bottom: 60px;
}
.rj_time_money_right figure{
    width: 150px;
}
.rj_time_money_right p{
    font-size: 20px;
}
.rj_time_money_left_top span{
    font-size: 35px;
}
.rj_time_money_box{
    padding: 28px 40px 20px 20px;
}
.rj_time_money_roll .slick-list{
    margin-bottom: 20px;
}
.rj_time_money .pg_btn, .rj_consult_right .pg_btn, .rj_spk_top_left .rj_pg_btn, .rj_speak_mid_right .pg_btn, .rj_powerful_payd .rj_pg_btn{
    margin-top: 50px;
}
.rj_free_consult.rj_cmn_gap{
    padding-bottom: 30px;
}
.rj_speak_top_wrap_main{
    padding: 60px 30px 50px 40px;
}
.rj_speak_top_wrap .counter, .rj_count_sec .counter-box-wrap strong{
    font-size: 50px;
}
.rj_speak_top_wrap .counter-box span{
    font-size: 20px;
}
.rj_spk_top_right{
    padding: 0 12px 0 60px;
}
.rj_speak_mid_main{
    margin: 0 -12px;
}
.rj_speak_mid_left, .rj_speak_mid_right{
    padding: 0 12px;
}
.rj_demo_vid_right{
    padding: 0 12px 0 30px;
}
.rj_demo_vid_left figure{
    margin-bottom: 70px;
}
.rj_demo_vid_right ul li:not(:last-child) {
    margin-bottom: 21px;
}
.rj_demo_vid_right ul li p{
    margin-bottom: 10px;
}
.rj_demo_vid_right ul li p strong{
    font-size: 22px;
}
.rj_blog_col{
    padding: 0 12px;
}
.rj_blog_btm_wrap{
    margin: 0 -12px;
}
.rj_sm_blog_hd{
    font-size: 20px;
}
.rj_big_blog_hd{
    font-size: 32px;
}
.rj_blog_top_right_inner {
    padding: 0 50px 0 25px;
}
.rj_payd_logo img {
    width: 140px;
}
.rj_mid_bx_1 ul li{
    font-size: 20px;
}
.rj_speak_mid_left ul {
    padding: 50px 18px;
}
.rj_mid_icon{
    right: 15px;
    top: 15px;
}
.rj_speak_mid_left ul li:first-child {
    margin-bottom: 28px;
}
.rj_mid_bx_2 ul li:first-child{
    font-size: 26px;
    margin-bottom: 20px;
}
.rj_mid_bx_2 ul li{
    font-size: 18px;
}
.rj_speak_mid_left ul li {
    margin-bottom: 10px;
}
.rj_faq .rj_accordion_hd {
    padding: 25px 70px 25px 20px;
}
.rj_faq .rj_accordion_list li .rj_accordion_hd:after{
    width: 20px;
    height: 12px;
    background-size: 20px;
}
.rj_ftr_logo{
    width: 110px;
}
.rj_ftr_scl_icon{
    margin-top: 30px;
}
.rj_ftr_scl_icon li a{
    height: 20px;
}
.rj_ftr_hd{
    font-size: 20px;
}
.rj_top_ftr_col_4{
    padding-left: 24px;
}
.rj_fot_map{
    height: 260px;
}
.rj_footer_btm {
    padding: 20px 0;
}
.rj_pcs_mind_list{
    margin: 0 -12px;
}
.rj_pcs_mind_list li:nth-child(2n) .rj_pcs_mind_list_box{
    width: 140px;
}
.rj_pcs_mind_list li:nth-child(2n) .rj_pcs_mind_list_box .rj_h4 {
    margin-bottom: 24px;
}
.rj_demo_vid_right ul li h3{
    font-size: 22px;
    margin-bottom: 10px;
}

   /*support 24/3/2023*/
   .rj_uptodate .rj_blog_top_right_inner{
    padding: 40px 50px 40px 25px;
  }
    /*support 24/3/2023*/
}

@media(max-width:1024px) {
    /* navbar*/
    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 17px;
        width: 20px;
        height: 20px;
        background: url(images/sort-down.svg) center center no-repeat;
        display: block;
        background-size: 10px;
        cursor: pointer;
    }
    .navbar-nav .clickD.toggled{
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .sub-menu > li.menu-item-has-children .clickD{
        top: 8px;
        right: 5px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .sub-menu > li.menu-item-has-children .clickD.toggled{
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav >li.menu-item-has-children {
        padding-right: 20px;
    }
    .sub-menu >li.menu-item-has-children > a{
        padding-right: 20px;
    }
    
    .sub-menu.show {
        display: block;
    }

    .navbar-nav > li{
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:after,
    .navbar-nav>li.menu-item-has-children>a:after{
        width: 100%;
        opacity: 0;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:hover:after,
    .navbar-nav>li.menu-item-has-children:hover>a:after {
        width: 100%;
        opacity: 1;
    }

/* navbar end*/


}


@media (max-width: 991px) {
    /* navbar*/
    .navbar-toggler {
        position: relative;
        width: 33px;
        margin-left: auto;
        height: 28px;
        padding: 0;
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    .stick,
    .stick:after,
    .stick:before {
        width: 30px;
        height: 2px;
        background: #000;
        position: absolute;
        left: 0;
        top: auto;
        transition: all 0.6s;
        border-radius: 5px;
    }
    .stick:before {
        content: '';
        top: -10px;
        left: 0;
    }
    .stick:after {
        content: '';
        top: 10px;
        left: 0;
    }
    .stick.open {
        transform: translateX(-50px);
        background: transparent;
    }
    .stick.open:before {
        transform: rotate(45deg) translate(42px, -28px);
        left: 2px;
    }
    .stick.open:after {
        transform: rotate(-45deg) translate(42px, 28px);
        left: 2px;
    }

    .navbar-nav .clickD {
        top: 8px;
        right: 10px !important;
        -webkit-transform: rotate(0) !important;
        transform: rotate(0) !important;
    }
    .navbar-nav .clickD.toggled{
        -webkit-transform: rotate(180deg) !important;
        transform: rotate(180deg) !important;
    }
    .sub-menu,
    .navbar-nav>li>.sub-menu .sub-menu {
        position: relative;
        width: 100%;
        left: inherit;
        top: inherit;
        border: none;
        right: inherit;
    }
    .navbar-nav>li.menu-item-has-children {
        padding-right: 0;
    }
    .navbar-nav>li {
        margin: 0;
        padding: 0;
    }
    .navbar-nav li.menu-item-has-children > a{
        padding-right: 30px !important;
    }
    .navbar-nav>li>a {
        padding: 8px 20px;
        display: inline-block;
        width: 100%;
    }
    .sub-menu>li>a {
        padding-left: 40px;
    }
    .sub-menu .sub-menu>li>a {
        padding-left: 60px;
    }
    .sub-menu .sub-menu .sub-menu>li>a {
        padding-left: 80px;
    }
    
    .navbar-nav>li>a:after{
        bottom: 0;
    }
 /* navbar end*/

/* push nav */

.navbar-collapse{
    background: #fff;
    position: fixed;
    top: 0;
    height: 100% !important; 
    width: 290px;
    overflow-y: auto;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    z-index: 100;
}
.navbar-collapse.show,
.navbar-collapse.collapsing{
    display: block !important;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
}
.navbar-collapse .navbar-nav{
    margin: 80px 0 0 !important;
    padding: 0 0 40px 0;
}
.navbar-collapse .navbar-toggler{
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
}
#navoverlay.open{

   background-color: rgba(0,0,0,0.4);
   pointer-events: all;
   -webkit-transition: background-color 0.5s linear;
   transition: background-color 0.5s linear;
}
body.open-nav,
html.open-nav{
    height: 100%;
    overflow: hidden !important;
}
/* push nav end */


/* responsive start RN */
.rj_navigation{
    display: block;
    max-width: 40px;
    width: 100%;
}
.rj_navigation img{
    width: 100%;
}
.rj_head_wrap ul.rj_menu_list{
    position: absolute;
    right: 12px;
    background: #fff;
    top: 80px;
    flex-direction: column;
    min-width: 200px;
    display: none;
}
.rj_head_wrap ul.rj_menu_list.active{
    display: block;
}
.rj_hd_menu{
    padding: 0;
    order: 3;
}
.rj_hd_login{
    margin-left: auto;
    margin-right: 15px;
}
.rj_head_wrap ul li{
    margin-right: 0;
    width: 100%;
    text-align: left;
}
.rj_head_wrap ul li a{
    padding: 10px 12px;
}
.rj_head_wrap ul li a:hover{
    background: #E8733D;
    color: #fff;
}
.rj_menu_list li a{
    display: block !important;
}
.rj_banner_right, .rj_banner_left{
    max-width: 100%;
}
.rj_banner_left{
    margin-bottom: 30px;
}
.rj_ban_img_1{
    max-width: 95%;
}
.rj_banner_wrap {
    padding: 40px 25px 30px;
}
.rj_h1 {
    font-size: 40px;
}
.rj_banner_left {
    margin-bottom: 90px;
}
.rj_ban_top_1 {
    top: -20px;
    left: 200px;
}
.rj_ban_top_2 {
    right: 200px;
    top: -55px;
}
.rj_h2 {
    font-size: 32px;
}
.rj_software_list li{
    margin-bottom: 15px;
}
.rj_fav_software.rj_cmn_gap {
    padding: 40px 0 70px;
}
.rj_payroll_sol.rj_cmn_gap{
    padding: 100px 0;
}
.rj_cmn_gap {
    padding: 80px 0;
}
.rj_accordion_hd p {
    font-size: 20px;
}
.rj_paydco_testimonial:before {
    width: 100%;
}
.rj_bsns_plan_col {
    width: 50%;
    flex: 0 0 50%;
    margin-bottom: 45px;
}
.rj_bsns_plan_col:last-child{
    margin-bottom: 0;
}
.rj_bsns_plan_row{
    justify-content: center;
}
.rj_most_pop {
    top: 0px;
    right: 12px;
}
.rj_most_pop figure{
    display: none;
}
.rj_most_pop span{
    max-width: 150px;
    font-size: 12px;
}
.rj_bsns_plan_col_scnd .rj_bsns_plan_col_box, .rj_bsns_plan_col_box{
    padding: 50px 24px 24px 24px;
}
.rj_bsns_plan_col_scnd .rj_h5{
    font-size: 20px;
    margin-bottom: 13px;
}
.rj_bsns_plan_col_scnd .rj_bsns_plan_col_box .rj_price{
    font-size: 32px;
    margin-bottom: 11px;
}
.rj_price_sec, .rj_bsns_plan_col_scnd .rj_price_sec{
    margin: 25px auto;
}
.rj_bsns_plan_col_scnd .rj_bsns_plan_col_box p, .rj_bsns_plan_col_scnd .rj_facility li{
    font-size: 14px;
}
.rj_coffe_top {
    top: -135px;
}
.rj_pcs_mind_list li{
    width: 33.3%;
    margin-bottom: 35px;
}
.rj_pcs_mind_list li:nth-child(2n) .rj_pcs_mind_list_box{
    width: 100%;
}
.rj_pcs_mind_list li .rj_pcs_mind_list_box{
    padding: 16px 5px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    min-height: 198px;
}
.rj_pcs_of_mind .rj_sec_hd {
    margin-bottom: 45px;
}
.rj_time_money_box_wrap {
    padding: 0 12px;
}
.rj_time_money_right figure {
    width: 120px;
    margin-bottom: 20px;
}
.rj_time_money_right p {
    font-size: 18px;
}
.rj_time_money_left_top span {
    font-size: 30px;
}
.rj_time_money_left_top{
    margin-bottom: 20px;
}
.rj_time_money_left{
    max-width: 200px;
}
.rj_time_money_right {
    max-width: calc(100% - 200px);
}
.rj_time_money_box:after{
    width: 300px;
    height: 300px;
    left: -95px;
}
.rj_time_money_roll .slick-arrow{
    width: 55px;
    height: 55px;
}
.rj_consult_left figure img {
    max-width: 301px;
}
.rj_free_consult.rj_cmn_gap {
    padding-bottom: 25px;
}
.rj_spk_top_left, .rj_spk_top_right{
    width: 100%;
}
.rj_spk_top_right{
    order: 1;
    padding-left: 12px;
}
.rj_spk_top_left{
    order: 2;
    margin-top: 35px;
}
.rj_spk_top_left_cont{
    max-width: 100%;
}
.rj_speak_mid .rj_sec_hd {
    margin-bottom: 40px;
}
.rj_payd_logo img {
    width: 115px;
}
.rj_speak_mid_left ul li:first-child {
    margin-bottom: 12px;
}
.rj_mid_bx_1 ul li {
    font-size: 16px;
}
.rj_mid_bx_2 ul li{
    font-size: 14px;
}
.rj_mid_bx_2 ul li:first-child {
    font-size: 22px;
    margin-bottom: 6px;
}
.rj_speak_mid_left ul {
    padding: 40px 18px;
}
.rj_time_money .pg_btn, .rj_consult_right .pg_btn, .rj_spk_top_left .rj_pg_btn, .rj_speak_mid_right .pg_btn, .rj_powerful_payd .rj_pg_btn{
    margin-top: 35px;
}
.rj_demo_vid_left, .rj_demo_vid_right{
    width: 100%;
}
.rj_demo_vid_right{
    padding-left: 12px;
}
.rj_demo_vid_left{
    margin-bottom: 35px;
}
.rj_uptodate .rj_sec_hd .rj_h2, .rj_blog_hd_cont{
    max-width: 100%;
}
.rj_uptodate .rj_sec_hd .rj_h2{
    margin-bottom: 25px;
}
.rj_blog_top_left, .rj_blog_top_right{
    width: 100%;
}
.rj_blog_top_right{
    padding: 30px 12px;
}
.rj_blog_top_wrap {
    margin-bottom: 35px;
}
.rj_blog_col{
    width: 50%;
    margin-bottom: 30px;
}
.rj_blog_box_inner {
    padding: 14px 12px;
}
.rj_sm_blog_hd {
    font-size: 18px;
}
.rj_blog_btm_wrap{
    justify-content: center;
}
.rj_top_ftr_col_1, .rj_top_ftr_col_2, .rj_top_ftr_col_3, .rj_top_ftr_col_4{
    width: 50%;
}
.rj_top_ftr_col{
    margin-bottom: 35px;
}
.rj_top_ftr_col_3, .rj_top_ftr_col_4{
    margin-bottom: 0;
}
.rj_top_ftr_col_2, .rj_top_ftr_col_4{
    padding-left: 50px;
}
   /*support 24/3/2023*/
   .rj_uptodate .rj_blog_top_right_inner{
    padding: 0px 50px 0 25px;
  }
  .rj_uptodate .rj_blog_top_left .rj_blog_img{
    width: 100%;
    height: auto;
  }
  .rj_uptodate .rj_blog_img img{
    width: 100%;
    height: auto;
    object-fit: fill;
  }

    /*support 24/3/2023*/
}

@media (max-width: 767px) {
    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        clear: both;
        margin-bottom: 24px;
    }
/* responsive start RN */
.rj_h1 {
    font-size: 35px;
}
.rj_pg_btn {
    margin-top: 35px;
}
.rj_ban_top_1 {
    top: -20px;
    left: 135px;
}
.rj_ban_top_2 {
    right: 200px;
    top: -40px;
}
.rj_ban_top_2, .rj_ban_top_1 {
    max-width: 60px;
}
.rj_main_head{
    padding: 25px 0;
}
.rj_banner_main {
    padding: 97px 0 100px;
}
.rj_h2 {
    font-size: 28px;
}
.rj_fav_software.rj_cmn_gap {
    padding: 35px 0 55px;
}
.rj_cmn_gap {
    padding: 65px 0;
}
.rj_powerful_payd_col{
    width: 100%;
    margin-bottom: 35px;
}
.rj_powerful_payd_col:last-child{
    margin-bottom: 0;
}
.rj_testi_coma {
    top: -35px;
    max-width: 100px;
}
.rj_testi_name{
    margin-top: 25px;
}
.rj_paydco_testimonial.rj_cmn_gap {
    padding: 90px 0 120px;
}
.rj_hr_manager .rj_sec_hd {
    margin-bottom: 80px;
}
.rj_bsns_plan_col {
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 45px;
}
.rj_bsns_plan_col:last-child{
    margin-bottom: 0;
}
.rj_coffe_top {
    top: -90px;
}
.rj_pcs_of_mind.rj_cmn_gap {
    padding-bottom: 80px;
}
.rj_time_money_left_top span {
    font-size: 26px;
}
.rj_time_money_right figure {
    width: 90px;
    margin-bottom: 10px;
}
.rj_time_money_right p {
    font-size: 16px;
}
.rj_time_money_box{
    padding: 20px;
}
.rj_time_money_left {
    max-width: 170px;
    padding-right: 16px;
}
.rj_time_money_right {
    max-width: calc(100% - 170px);
}
.rj_time_money_box:after{
    left: -130px;
}
.rj_consult_left figure img {
    max-width: 240px;
}
.rj_cmn_btn{
    padding: 16px 50px;
}
.rj_free_consult.rj_cmn_gap {
    padding-bottom: 15px;
}
.rj_speak_main.rj_cmn_gap {
    padding-top: 120px;
}
.rj_speak_top_wrap .counter, .rj_count_sec .counter-box-wrap strong {
    font-size: 35px;
}
.rj_speak_top_wrap .counter-box span {
    font-size: 18px;
}
.rj_speak_mid_left, .rj_speak_mid_right{
    width: 100%;
}
.rj_speak_mid_left{
    margin-bottom: 35px;
}
.rj_big_blog_hd {
    font-size: 28px;
}
.rj_faq .rj_sec_hd {
    margin-bottom: 40px;
}
.rj_accordion_hd p {
    font-size: 18px;
}
.rj_footer_btm ul li:not(:last-child) {
    margin-right: 28px;
}







}

@media (max-width: 575px) {
.rj_h1 {
    font-size: 32px;
}
.rj_cmn_btn {
    padding: 16px 36px;
}
.rj_ban_top_1 {
    top: -25px;
    left: 110px;
}
.rj_ban_top_2 {
    right: 140px;
    top: -40px;
}
.rj_ban_top_2, .rj_ban_top_1 {
    max-width: 55px;
}
.rj_ban_cartoon {
    max-width: 240px;
}
.rj_hr_manager .rj_sec_hd {
    margin-bottom: 50px;
}
.rj_price_sec{
    max-width: 100%;
}
.rj_bsns_plan_col_box .rj_cmn_btn{
    width: 100%;
}
.rj_bsns_plan_col_box{
    min-height: inherit;
}
.rj_bsns_facility{
    margin-bottom: 35px;
}
.rj_pcs_mind_list li {
    width: 50%;
}
.rj_time_money_left{
    max-width: 140px;
}
.rj_time_money_right {
    max-width: calc(100% - 140px);
}
.rj_time_money_box:after {
    left: -250px;
    width: 400px;
    height: 400px;
}
.rj_consult_col{
    width: 100%;
    margin-bottom: 35px;
}
.rj_consult_col:last-child{
    margin-bottom: 0;
}
.rj_speak_top_wrap .counter-box:not(:last-child) {
    margin-right: 10px;
}
.rj_speak_top_wrap .counter, .rj_count_sec .counter-box-wrap strong {
    font-size: 32px;
}
.rj_speak_top_wrap .counter-box span {
    font-size: 16px;
}
.rj_speak_top_wrap_main {
    padding: 40px 16px 30px 16px;
}
.rj_blog_col {
    width: 100%;
}
.rj_cmn_gap {
    padding: 50px 0;
}
.rj_faq .rj_accordion_hd {
    padding: 20px 50px 20px 16px;
}
.rj_faq .rj_accordion_answer {
    padding: 0 20px 30px 20px;
}
.rj_faq .rj_accordion_list li .rj_accordion_hd:after {
    width: 16px;
    height: 8px;
    background-size: 16px;
}
.rj_top_ftr_col_2, .rj_top_ftr_col_4 {
    padding-left: 20px;
}
.rj_fot_map {
    height: 215px;
}
.rj_footer_btm ul{
    justify-content: center;
}
.rj_footer_btm ul li:first-child{
    width: 100%;
    margin-bottom: 10px;
}
.rj_footer_btm ul li{
    margin-right: 10px;
    text-align: center;
}
.rj_footer_btm ul li:first-child, .rj_footer_btm ul li:last-child{
    margin-right: 0;
}

.rj_footer_top{
    padding: 60px 0 45px;
}


/*support 24/3/2024*/
.rj_uptodate .rj_blog_btm_wrap .rj_blog_box{
    height:auto;
  }
/*support 24/3/2024*/


}

@media (max-width: 479px) {
.rj_h1 {
    font-size: 30px;
}
.rj_banner_wrap {
    padding: 24px 14px 20px;
}
.rj_cmn_btn {
    padding: 16px 10px;
    text-align: center;
    width: 100%;
}
.rj_ban_ggl_rate ul li{
    padding: 0;
    margin-bottom: 10px;
}
.rj_ban_ggl_rate ul li:after{
    display: none;
}
.rj_ban_top_2{
    right: 100px;
}
.rj_ban_top_1{
    left: 80px;
}
.rj_ban_top_2, .rj_ban_top_1 {
    max-width: 45px;
}
.rj_ban_cartoon {
    max-width: 190px;
}
.rj_banner_left {
    margin-bottom: 50px;
}
.rj_h2 {
    font-size: 26px;
}
.rj_pcs_mind_list li {
    width: 100%;
}
.rj_time_money_left{
    max-width: 100%;
    margin-bottom: 15px;
}
.rj_time_money_right {
    max-width: 100%;
}
.rj_time_money_box:after {
    left: -100px;
    top: 0;
    transform: none;
    width: 200px;
    height: 200px;
}
.rj_count_sec{
    flex-direction: column;
}
.rj_speak_top_wrap .counter-box:not(:last-child){
    margin-right: 0;
}
.rj_count_sec .counter-box-wrap{
    justify-content: flex-start;
}
.rj_mid_icon{
    max-width: 16px;
}
.rj_mid_bx_2 .rj_mid_icon{
    max-width: 12px;
}
.rj_mid_icon {
    right: 12px;
    top: 12px;
    line-height: 0;
}
.rj_speak_mid_left ul {
    padding: 30px 10px;
}
.rj_speak_mid_left ul li {
    margin-bottom: 8px;
}
.rj_payd_logo img {
    width: 100px;
}
.rj_mid_bx_2 ul li:first-child{
    font-size: 20px;
}
.rj_demo_vid_right ul li p strong {
    font-size: 18px;
}
.rj_top_ftr_col_1, .rj_top_ftr_col_2, .rj_top_ftr_col_3, .rj_top_ftr_col_4 {
    width: 100%;
}
.rj_top_ftr_col_2, .rj_top_ftr_col_4 {
    padding-left: 12px;
}
.rj_top_ftr_col_1, .rj_top_ftr_col_2, .rj_top_ftr_col_3{
    margin-bottom: 25px;
}
.rj_coffe_top {
    top: -58px;
}
.rj_demo_vid_left figure img {
    max-width: 100%;
}
.rj_software_list li img{
    max-height: 20px;
}
.rj_software_list li{
    padding: 0 10px;
}
.rj_software_list li:not(:last-child){
    margin-right: 0;
    margin-bottom: 15px;
}
.rj_pcs_mind_list li .rj_pcs_mind_list_box{
    min-height: inherit;
}
.rj_pcs_mind_list li:nth-child(2n) .rj_pcs_mind_list_box figure {
    margin-bottom: 20px;
}
.rj_demo_vid_right ul li h3{
    font-size: 18px;
}
.rj_big_blog_hd {
    font-size: 24px;
}
.rj_banner_wrap{
    border-radius: 20px;
}
}

@media(max-width: 374px){
.rj_ban_top_1 {
    left: 70px;
}
.rj_ban_top_2 {
    right: 75px;
}
.rj_ban_cartoon {
    max-width: 165px;
}
.rj_slide_btn{
    font-size: 14px;
}
.rj_h1 {
    font-size: 26px;
}
.rj_h2 {
    font-size: 24px;
}
}


