:root {
    --h1: 1.1rem;
    --h2: 1rem;
    --h3: 0.8rem;
    --p: 0.7rem;
    --h4: 0.6rem;
    --h5: 0.4rem;
    --h6: 0.2rem;
    --primary-color: #ffa726;
}
.rsmm{width: 100%;}
.rsmm > ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: end;
}
.rsmm > ul li:first-child{
    display: none;
}
.rsmm a {
    display: block;
    color: #182128;
    text-decoration: none;
    padding: 20px 10px;
    font-weight: 600;
    font-size: 17px;
}

.rsmm a:hover {
    background: transparent;
    color: #ffd500
}

.rsmm a.hover {
    background: transparent;
    color: #ffd500
}

.rsmm li.has-sub {
    position: relative;
}

.rsmm li.has-sub > a > span {
    display: inline-block;
    background: url('../img/caret-down.png') center no-repeat;
    width: 10px;
    height: 16px;
    margin-left: 5px;
    vertical-align: middle;
    background-size: contain;
}

.rsmm li.has-sub > ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    list-style: none;
    padding-left: 0;
    min-width: 140px;
    width: 180px;
    display: none;
    border-top: solid #ffd500 2px;
}
.rsmm li.has-sub > ul li a{
    padding: 10px;
}
.rsmm li.has-sub a:not(.hover):hover {
    background: transparent;
    color: #ffd500;
}

/*.rsmm.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}*/

.rsmm-mobile-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    width: 300px;
    height: 100%;
    background: #000;
    -webkit-transform: translatex(300px);
    transform: translatex(300px);
    -webkit-transition: -webkit-transform .14s;
    transition: -webkit-transform .14s;
    -o-transition: transform .14s;
    transition: transform .14s;
    transition: transform .14s, -webkit-transform .14s;
}

.rsmm-mobile-wrapper.show {
    -webkit-transform: translatex(0px);
    transform: translatex(0px);
}

.rsmm-mobile {
    padding-top: 55px;
    overflow-y: auto;
    max-height: 100%;
}

.rsmm-mobile li.has-sub > a > span {
    display: inline-block;
    background: url('../img/caret-down.png') center no-repeat;
    background-size: contain;
    width: 6px;
    height: 12px;
    margin-left: 10px;
    vertical-align: middle;
}

.rsmm-mobile__close {
    width: 2rem;
    height: 2rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    overflow: hidden;
    text-indent: 1rem;
    font-size: .75rem;
    border: none;
    background: 0 0;
    color: transparent;
    cursor: pointer;
}

.rsmm-mobile__close::after,
.rsmm-mobile__close::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    background: #bdc3c7;
}

.rsmm-mobile__close::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.rsmm-mobile__close::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.rsmm-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rsmm-mobile > ul > li {
    border-bottom: 1px solid #3f3f3f;
}

.rsmm-mobile a {
    padding: 10px 20px;
    display: block;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.rsmm-mobile > ul > li > a:hover {
    background: #000;
}

.rsmm-mobile li.has-sub > ul {
    background: #000;
}

.rsmm-mobile li.has-sub > ul > li {
    border-top: 1px solid #3f3f3f;
}

.rsmm-mobile li.has-sub > ul > li > a {
    padding-left: 35px;
    font-size: 14px
}

.rsmm-mobile li.has-sub > ul > li > a:hover {
    background: #000;
}

.rsmm-mobile li.has-sub.hover > a {
    color: #fff;
}

.rsmm-mobile > ul > li > a {
    color: #fff;
}

.rsmm-open-button {
    position: absolute;
    top: 80px;
    right: 0;
    z-index: 1000;
    border: none;
    font-size: 1.5rem;
    color: transparent;
    background: 0 0;
    cursor: pointer;
    padding: 0;
    display: none;
}

.rsmm-open-button__icon {
    font-size: 30px;
    color: #000;
    margin-right: 1rem;
}

.rsmm-open-button:hover {
    opacity: .6;
}

.rsmm-mask {
    background: rgba(0, 0, 0, .4);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: opacity .14s, -webkit-transform 0s .14s;
    transition: opacity .14s, -webkit-transform 0s .14s;
    -o-transition: opacity .14s, transform 0s .14s;
    transition: opacity .14s, transform 0s .14s;
    transition: opacity .14s, transform 0s .14s, -webkit-transform 0s .14s;
    -webkit-transition-timing-function: cubic-bezier(.7, 0, .3, 1);
    -o-transition-timing-function: cubic-bezier(.7, 0, .3, 1);
    transition-timing-function: cubic-bezier(.7, 0, .3, 1);
}

.rsmm-mask.show {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-timing-function: cubic-bezier(.7, 0, .3, 1);
    -o-transition-timing-function: cubic-bezier(.7, 0, .3, 1);
    transition-timing-function: cubic-bezier(.7, 0, .3, 1);
    opacity: 1;
}
/*---------*/
.w4{
    width: 100%;
    text-align: center;
}
.w-img{width: 36%;margin-bottom: 25px;margin-right: auto;margin-left: auto;}
.w4 h3{font-size: 22px;font-weight: 600;}
.appSec{
    width: 100%;
    padding: 50px 0;
    background-color: #fff;
}
.appSec .apk_ps_icon{
    width: 200px;
}
/*----------*/
.loginelementor {
    background-image: url(../img/dots-shape.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 16% auto;
    opacity: 1;
    transition: background .3s,border-radius .3s,opacity .3s;
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
    padding: 70px 0 70px;
    background-color:#f7f2f9;
}
.authincation-content {
    padding: 20px 0 40px 0;
    color: #222;
}
.loginTT{font-weight: bold;margin: 20px 0;color: #7525aa;}
.loginelementorLogo{width: 50%;}
#msform .form-control, #msform .form-select {
    box-shadow: none !important;
    height: 40px !important;
    background-color: #E8F0FD !important;
    border: 1px solid #E8F0FD !important;
}
.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  font-size: 13px;
  line-height: 17px;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  background: white;
  border: solid 1px #7525aa;
}
.styled-checkbox:hover + label:before {
  background: #7525aa;
}
.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
  background: #7525aa;
}
.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
.checkbox label{padding-left: 30px !important;}
.mainsrv{
    width: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}
.ratting{
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    background-color: #fff;
    color: #222;
    position: absolute;
    left: 10px;
    top: 10px;
}
.svrName{
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #7525aa;
    display: inline-block;
    padding: 6px 20px;
    color: #fff;
    font-size: 18px;
    width: 100%;
    text-align: center;
}
/*------*/
.neetCP{
  background-image: url(../img/bg.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    transition: background .3s,border-radius .3s,opacity .3s;
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
    padding: 70px 0 70px;
    background-color:#4a1e75;
    color: #000;
    display: flex;
    position: relative;
}
.neetCPCard {
    background: #fff;
    box-shadow: 0 0 2.1875rem 0 rgb(154 161 171 / 15%);
    border-radius: 50px 0;
    padding: 3.125rem 3.125rem;
    color: #222;
}
/*------*/
.prd-itm {
  width: 100%;
  padding: 0;
  border-bottom: solid 1px #E8E8E8;
  margin-top: 10px;
  margin-bottom: 5px;
  padding-bottom: 15px;
  position: relative;
  float: left;
  border-radius: 0px;
  display: flex;
}
.prd-img{
  width: 15%;
  float: left;
  margin-right: 20px;
  overflow: hidden;
  position: relative;
}
.prd-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-height: 100%;
  max-width: 100%;
  padding: 20px;
}
.prd-cnt {
  float: left;
  width: 40%;
  margin-right: 20px;
  height: auto;
  overflow: hidden;
}
.prd-cnt p{font-size: 14px;margin-top: 10px;margin-bottom: 0;}
.prd-cnt .prd-tt{
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #4a1e75;
}
.cate-ttt {
    width: 100%;
    margin-bottom: 0;
}
.cate-ttt li {
    display: block;
    font-size: 16px;
    padding: 2px 0;
}
.prd-last{
  width: 25%;
}
.topBannerSec{
  width: 100%;
  padding: 80px 0;
  position: relative;
  background: url(../img/bannerbg.jpg) no-repeat;
  background-position: right;
}
/*.topBannerSec:after {
    width: 760px;
    height: 560px;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    
    opacity: .1;
    z-index: 1;
}*/
.div_ h2{
    font-size: 45px;
    line-height: 60px;
    color: #0d2333;
    font-weight: bold;
}
.div_ p {
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 1.5em !important;
    margin-bottom: 8px;
}
.button {
    padding: 6px 12px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #fff;
    border-radius: 5px;
}
.btn-13 { background-color: #ff9600; }
.btn-13:hover { background-color: #ffa21d; transform: translateX(10px); }
/*----*/

.testimonials{padding: 40px 0}
.shadow-effect {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  border:1px solid #ECECEC;
  box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}
#customers-testimonials .shadow-effect p {
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 17px 0;
  font-weight: 300;
}
.testimonial-name {
  margin: -17px auto 0;
  display: table;
  width: auto;
  background: #ff7350;
  padding: 9px 35px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
}
#customers-testimonials .item {
  text-align: center;
  padding: 0px;
  margin-bottom:80px;
  opacity: .2;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
  opacity: 1;
  -webkit-transform: scale3d(1.0, 1.0, 1);
  transform: scale3d(1.0, 1.0, 1);
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
  max-width: 90px;
  margin: 0 auto 17px;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
  background: #ff7350;
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}
#customers-testimonials.owl-carousel .owl-dots{
  display: inline-block;
  width: 100%;
  text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
  display: inline-block;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
  background: #ff7350;
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}

.cta-area{
  background: #fff9f9;
    height: auto;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

/*----*/
.timeline {
  padding: 0;
}
.stage {
  padding: 20px;
  border-radius: 0;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 3px 3px rgba(0,0,0,0.1), 0px 3px 3px rgba(0,0,0,0.1);
  border-bottom: solid 1px #ddd;
}
.stage .number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-bottom: 10px;
  font-size: 24px;
  color: #fff;
  background-color: #ff9600;
  border-radius: 50%;
  box-shadow: 0px 3px 3px rgba(0,0,0,0.1), 0px 3px 3px rgba(0,0,0,0.1);
}
.stage.active {
  background-color: #125875;
  color: #fff;
}
.stage.active .number {
  background-color: #ff7350;
  color: #fff;
}
@media only screen and ( max-width: 767px ) {
  .timeline {padding: 20px;}
  .button{padding: 8px 8px;font-size: 14px;}
  .topBannerSec{padding: 50px 0;}
}