: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: center;
}
.rsmm > ul li:first-child{
    display: none;
}
.rsmm a {
    display: block;
    color: #3b2a82;
    text-decoration: none;
    padding: 20px 15px;
    font-weight: 700;
    font-size: 1em;
    white-space: nowrap;
}

.rsmm a:hover {
    background: transparent;
    color: #ff3067
}
.rsmm a i {
    color: #3b2a82;
    text-decoration: none;
    padding-right: 4px;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}
.rsmm a:hover i{color: #ff3067}
.rsmm a.current {
    background: transparent;
    color: #ff3067
}

.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%;
    left: 0;
    background: #fff;
    list-style: none;
    padding-left: 0;
    min-width: 140px;
    min-width: 220px;
    display: none;
    border-top: solid #ff3067 4px;
    border-radius: 5px;
}
.rsmm li.has-sub > ul li:first-child{display: block;}
.rsmm li.has-sub > ul li a{
    padding: 8px;
    margin: 5px;
    background-color: #f5f5f5;
    border-radius: 4px;
}
.rsmm li.has-sub a:not(.hover):hover {
    color: #ff3067;
}

/*.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: 20px;
    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;
}
/*-----------*/
.testimonial {
  width: 100%;
  padding: 30px 0;
}
.testimonial-slide {
  padding: 40px 20px;
}
.testimonial_box-top {
  background-color: #e0fbfc;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 5px 5px 20px rgba(152, 193, 217, 0.493);
}
.testimonial_box-icon {
  padding: 10px 0;
}
.testimonial_box-icon i {
  font-size: 25px;
  color: #14213d;
}
.testimonial_box-text {
  padding: 10px 0;
}
.testimonial_box-text p {
  color: #293241;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}
.testimonial_box-img {
  padding: 20px 0 10px;
  display: flex;
  justify-content: center;
}
.testimonial_box-img img {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 2px solid #e5e5e5;
}
.testimonial_box-name {
  padding-top: 10px;
}
.testimonial_box-name h4 {
  font-size: 20px;
  line-height: 25px;
  color: #293241;
  margin-bottom: 0;
}
.testimonial_box-job p {
  color: #293241;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 0;
}
/*----------*/
.main-timeline{
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
}
.main-timeline:after{
    content: '';
    display: block;
    clear: both;
}
.main-timeline:before{
    content: '';
    height: 100%;
    width: 7px;
    border-left: 7px dashed #f298c6;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: 0;
}
.main-timeline .timeline{
    width: 50%;
    padding: 0 0 0 40px;
    margin: 0 0 0 20px;
    float: right;
    position: relative;
}
.main-timeline .timeline:after{
    content: '';
    background-color: #f7e2ec;
    height: 35px;
    width: 40px;
    position: absolute;
    left: 0;
    top: 60px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.main-timeline .timeline-content{
    color: #555;
    text-align: center;
    padding: 45px 45px 45px;
    display: block;
    position: relative;
    z-index: 1;
}
.main-timeline .timeline-content:hover{ text-decoration: none; }
.main-timeline .timeline-content:before,
.main-timeline .timeline-content:after{
    content: '';
    background-color: #fff;
    border-radius: 50px 0;
    box-shadow: 0 0 10px -3px rgba(0,0,0,0.5);
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 0;
    top: 0;
    z-index: -1;
}
.main-timeline .timeline-content:after{
    background-color: transparent;
    box-shadow: none;
    border: 2px solid #e0b7cc;
    left: 0;
    bottom: 0;
    right: 10px;
    top: 10px;
}
.main-timeline .timeline-icon{
    color: #fff;
    background-color: #000;
    font-size: 25px;
    text-align: center;
    line-height: 50px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}
.main-timeline .title{
    color: #6044F0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px;
}
.main-timeline .description{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    margin: 0 0 15px 10px;
}
.main-timeline .timeline:nth-child(even){
    float: left;
    padding: 0 40px 0 0;
    margin: 0 20px 0 0;
}
.main-timeline .timeline:nth-child(even):after{
    transform: rotateY(180deg);
    left: auto;
    right: 0;
}
.main-timeline .timeline:nth-child(even) .timeline-content:before,
.main-timeline .timeline:nth-child(even) .timeline-content:after{
    border-radius: 0 50px;
}
.main-timeline .timeline:nth-child(even) .timeline-icon{
    left: auto;
    right: 0;
}
/*.main-timeline .timeline:nth-child(4n+2):after{ background-color: #FF3754; }
.main-timeline .timeline:nth-child(4n+2) .timeline-content:after{ border-color: #FF3754; }
.main-timeline .timeline:nth-child(4n+2) .title{ color: #FF3754; }
.main-timeline .timeline:nth-child(4n+3):after{ background-color: #01C1E1; }
.main-timeline .timeline:nth-child(4n+3) .timeline-content:after{ border-color: #01C1E1; }
.main-timeline .timeline:nth-child(4n+3) .title{ color: #01C1E1; }
.main-timeline .timeline:nth-child(4n+4):after{ background-color: #10B175; }
.main-timeline .timeline:nth-child(4n+4) .timeline-content:after{ border-color: #10B175; }
.main-timeline .timeline:nth-child(4n+4) .title{ color: #10B175; }*/
@media screen and (max-width:767px){
    .main-timeline:before{ display: none; }
    .main-timeline .timeline,
    .main-timeline .timeline:nth-child(even){
        width: 100%;
        padding: 0 0 35px 0;
        margin: 0;
    }
    .main-timeline .timeline:last-child{ padding: 0; }
    .main-timeline .timeline:after,
    .main-timeline .timeline:nth-child(even):after{
        transform: translateX(-50%) rotate(-90deg);
        left: 50%;
        top: auto;
        bottom: 0;
    }
    .main-timeline .timeline:last-child:after{ display: none; }
}
@media screen and (max-width:576px){
    .main-timeline .title{ font-size: 18px; }
}
/*------------*/
.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;
}

.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;
  background-color: #fff;
  border-radius: 0 0 200px 0;
    background-image: url(../img/banner-overla_01.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.topBannerSec:after {
    width: 760px;
    height: 560px;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    background: url(https://broomees.com/assets/images/banner-after.png) no-repeat;
    opacity: .1;
    z-index: 1;
}
.topSliderImgSec{
    width: 100%;
    background-color: #fff;
    color: #495057;
    padding: 25px;
    border-radius: 5px;
    border: solid 1px #ddd;
    font-size: 18px;
}
.topSliderImgSec img{
    border-radius: 15px;
}
.topBnrSec h1{
    font-size: 60px;
}
.display-table {
    position: relative;
    padding: 8px 0;
    display: flex;
    border-bottom: 1px solid #e5e5e5;
}
.leftBlk {
    width: 60px;
    height: 50px;
}
.imgBlk {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    line-height: 40px;
    margin-right: 10px;
}
.colgTitle a{
  color: #fff;
}
.servBookin{
    width: 100%;
    padding: 50px 0;
    margin-bottom: 60px;
}
.price-main{
    width: 100%;
    padding: 50px 0;
}
.pp-main{
    width:100%;
    padding:25px;
    border-radius:10px;
}
.ppRow{
    display:flex;
}
.ppItem{
    width:100%;
    padding:5px;
    margin: 15px;
}
.pp-tt h2{
    font-weight: bold;
}
.pp-body{
    height:200px;
}
.pp-body .fa-check {
    color: #000;
    background: #e4dff7;
    border-radius: 100%;
    padding: 5px;
    font-size: 12px;
    margin-right: 5px;
}
.pp-body ul li{
    padding:3px 0;
    font-size: 14px;
}
.pp-footer a {
    background-color: #ffd700;
    color: #000;
    padding: 12px 32px;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Montserrat";
    text-transform: uppercase;
    display: inline-block;
    border-radius: 64px;
}
.pp-tt a {
    background-color: #022157;
    color: #FFFFFF;
    padding: 6px 15px;
    margin: 15px 0;
    font-size: 12px;
    font-weight: 600;
    font-family: "Montserrat";
    text-transform: uppercase;
    display: inline-block;
    border-radius: 64px;
}
.lightBtn {
    background-color: #222 !important;
}
.MostPopular{
    background:#022157;
    padding:15px;
    border-radius:10px;
    color:#fff;
}
.pp-tt h6{
    display: inline-block;
    background-color: #e4dff7;
    border-radius: 50px;
    color: #000;
    font-size: 12px;
    padding: 2px 10px;
    float: right;
}
.pp-footer{text-align: center;}
.contactPage {
    width: 100%;
    padding: 50px 0;
}
.cnt_add a{color: inherit;}
.contactPage i {
    width: 35px;
    color: #4a1e75;
    display: inline-block;
}
/*----*/
.card-city{
    border: 1px solid #ececec;
    border-width: 0px 1px 1px 1px;
    box-shadow: 0px 8px 20px -1px rgba(191 191 191 / 30%);
    border-radius: 11px;
    height: 100%;
    position: relative;
}
.card-city-head {
    font-size: 20px;
    font-weight: 400;
    background-color: white;
    padding: 30px 15px;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}
.selectCity {
    display: flex;
    justify-content:space-around;
    flex-wrap: wrap;
    margin: 25px;
    gap: 25px;
}
.city {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.cityImg{width: 100px;}
.cityName h4{margin-top: 10px;color: #222}
.subsection{
    width: 100%;
    padding: 50px 0 120px;
    background-color: #ffffff;
    background: url(../img/bg2.png) no-repeat;
    background-size: 100%;
    background-position: bottom;
}
.side-decoration{
    position: relative;
}
.side-decoration p{
    white-space: pre-line;
}
/*.side-decoration:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 150%;
    background: url(https://broomees.com/assets/images/yellow-blob@1.5x.png) no-repeat center;
    right: -51%;
    top: -4%;
    background-size: contain;
    z-index: -1;
    opacity: 0.6;
}*/
.service-parent {
    padding: 20px 100px;
    padding-bottom: 65px;
    overflow: hidden;
}
.parent-category {
    margin: 0px 10px 20px 10px;
}
.parent-category .category-head {
    margin: 0;
    font-size: var(--h2);
    font-weight: 400;
}
.parent-category .category-desc {
    margin: 0;
    font-size: var(--h3);
    color: #bdbdbd;
}
.service {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 5px;
}
.card-main-v3 {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    padding: 10px;
    background-color: white;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    border-radius: 10px;
    flex: 1 1 300px;
}
.card-img-v3 {
    width: 97px;
    height: 97px;
    border-radius: 6px;
    object-fit: cover;
    z-index: 1;
}
.card-body-v3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
}
.popup {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.font-text {
    color: #9e9e9e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: var(--h2);
    font-weight: 400;
}
.card-body-v3 .card-text {
    font-size: var(--h1);
    margin-bottom: 0px;
    padding: 0px !important;
}
.card-v3-p {
    margin: 0px;
    padding: 0px;
    font-weight: 400;
}
.starting-active {
    font-size: var(--h3);
    color: var(--primary-color);
}
.stating {
    font-size: var(--h4);
    color: #9B9B9B;
}
.sign {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    line-height: 15px;
    font-size: 23px;
}
.desc {
    /*font-size: var(--p);
    display: -webkit-box;
    color: #9e9e9e;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-height: 15px;
    margin-top: 1px;*/
}
.desc-i {
    color: grey;
    font-size: var(--h4);
    font-weight: 300;
}
.rdo-btn-sec {
    padding-bottom: 10px;
    float: left;
    width: 100%;
}
.rdo-btn-sec p{
    display: inline-block;
    margin-bottom: 5px;
}
button.btn.btn-warning.btn-xs {
    color: white;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    position: relative;
    line-height: -2px;
}
/*-------*/
.pkgRow{
    background: linear-gradient(to bottom, #21caab, #4a1e75);
    padding: 30px;
    border-radius: 9px;
    text-align: center;
}
.pkgRow h4{
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}
.featuredMain{
    display: flex;
    flex-wrap: wrap;
    border: dashed 1px #ca7528;
}
.fechr-item{
    width: 50%;
    text-align: center;
    padding: 15px;
    border: dashed 1px #ca7528;
}
.fechr-icon{
    font-size: 25px;
    color: #fff;
    margin-bottom: 10px;
}
.pkgRow .featuredMain h5{
    color: #fff;
}
.pkgRow .featuredMain p{
    color: #fff;
    margin-bottom: 15px;
}
.pkgRow .featuredMain i{
  margin-right: 15px;
}
.pkgRow ul{
  display: flex;
  flex-wrap: wrap;
}
.pkgRow ul li{
  width: 50%;
    padding: 20px 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
}
.pkgRow ul li i{
  margin-right: 15px;
}
.pkgRowPrice{
  display: inline-block;
    background-color: #fff;
    padding: 10px 35px;
    border-radius: 9px;
    margin-bottom: 20px;
}
.pkgItem{
    width:100%;
    padding:5px;
}
.popular {
    position: relative;
}
.popular .popularspan {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffda00;
    color: #282828;
    padding: 7px 12px 8px;
    font-size: 14px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 11;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 600;
}
.popular .trending {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: red;
    color: #fff;
    padding: 7px 12px 8px;
    font-size: 14px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 11;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 600;
}
.card{
  overflow:hidden;
  padding: 20px 20px;
}
.pkgItem:nth-child(1) .card ,
.pkgItem:nth-child(1) .card .title .fa{
  background: #eef7ff;

}
.pkgItem:nth-child(2) .card,
.pkgItem:nth-child(2) .card .title .fa{
  background: #eef7ff;

}
.pkgItem:nth-child(3) .card,
.pkgItem:nth-child(3) .card .title .fa{
  background: #eef7ff;
}

.pkgItem:nth-child(4) .card,
.pkgItem:nth-child(4) .card .title .fa{
  background: #eef7ff;
}

.pkgItem:nth-child(5) .card,
.pkgItem:nth-child(5) .card .title .fa{
  background: #eef7ff;
}

.pkgItem .card::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(255, 255, 255, .2);
z-index: 1;
-webkit-transform: skewY(-15deg) scale(1.5);
        transform: skewY(-15deg) scale(1.5);
}
.title h2 {
  position: relative;
  margin: 0px  0 0;
  padding: 0;
  color: #243238;
  font-size: 18px;
  z-index: 2;
  font-weight: bold;
}
.price,.option{
  position: relative;
  z-index: 2;
}
.price h4 {
margin: 0;
padding: 10px 0 ;
color: #ed5e3e;
font-size: 24px;
font-weight: 900;
}
.option ul {
  margin: 0 0 10px 0;
  padding: 0;

}
.option ul li {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    color: #243238;
    font-size: 14px;
    line-height:24px;
    font-weight: 300;
}
.h25{
    height:195px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}
.option ul li a{color:#243238;text-decoration: underline !important;font-weight: bold;}
.card .BuyNow {
  position: relative;
  z-index: 2;
  background: #fd5f00;
  color : #fff;
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-radius: 10px;
  display: block;
  text-align: center;
  margin: 10px auto 0 ;
  font-size: 16px;
  cursor: pointer;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, .1);

}
.card a:hover{
    text-decoration: none;
}
@media only screen and ( max-width: 767px ) {
    .pkgRow{padding: 40px 20px}
    .pkgItem{padding: 0;margin-bottom: 20px;}
    .pkgRow ul li{width: 100%;}
}