a:focus, a:hover {
    text-decoration: none;
}

.axon-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    display: flex;
}

.axon-header .container {
    display: flex;
}

.axon-header .container .left-content {
    flex: 0 0 75%;
    display: flex;
    justify-content: flex-start;
    width: 75%;
    align-items: center;
}

.axon-header .container .right-content {
    flex: 0 0 25%;
    display: flex;
    justify-content: flex-end;
    width: 25%;
    align-items: center;
}

.axon-header .container .right-content .login-btn {
    background: var(--mainColor);
    color: #fff;
    padding: 10px 23px;
    border-radius: 50px;
    font-size: 18px;
}

.axon-header .container .left-content .logo {
    max-width: 180px;
    margin-right: 15px;
}

.axon-header .container .left-content .logo a {
    display: block;
}

.axon-header .container .left-content .logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
}

.axon-header .container .left-content .select-city {
    margin-right: 15px;
}

.axon-header .empty_desktop_projectname {
    top: 10px;
}

.slider-box {
    position: relative;
    height: 200px;
    border-radius: 10px;
    width: 100%;
    display: block;
    overflow: hidden;
}

.slider-box:before {
    content: '';
    background: linear-gradient(180deg, #fff0, #000c);
    bottom: 0;
    width: 100%;
    padding: 15px;
    height: 40%;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
}

.slider-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.slider-box .bottom-content {
    position: absolute;
    bottom: 0;
    padding: 15px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.slider-box .bottom-content h2 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    width: calc(100% - 130px);
}

.slider-box .bottom-content span {
    font-size: 14px;
    width: 130px;
    text-align: right;
    color: #fff;
}

.slider-box .new-lanuch {
    top: 10px;
    position: absolute;
    background: var(--mainColor);
    padding: 5px 13px;
    color: #fff;
    font-size: 14px;
    border-radius: 50px;
    left: 10px;
}

.top-project-slider {
    border-top: 1px solid #ebebeb;
    margin-top: 20px;
    padding-top: 20px;
}

.dash-page-menu {
    padding: 26px 15px;
    border-radius: 10px;
    text-align: center;
    background: #F7F7F8;
    display: flex;
    margin: 10px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.white-bg {
    background: #fff;
}

.dash-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    padding: 20px 0;
}

.dash-row .grid {
    flex: 0 0 25%;
    width: 25%;
    padding: 0 5px;
}

.dash-page-menu i {
    font-size: 40px;
    width: 80px;
    height: 80px;
    display: flex;
    margin: 0 auto;
    background: var(--mainColor);
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.dash-page-menu .img-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.dash-page-menu .name {
    font-size: 17px;
    padding-top: 15px;
    color: #000;
    font-weight: 600;
}

.project-listing-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.project-listing-row .grid {
    flex: 0 0 25%;
    width: 25%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.project-listing .slider-box {
    border-radius: 0;
}

.project-listing {
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px #D6D4D4;
    position: relative;
    height: 100%;
}

.top-project-slider .project-listing {
    box-shadow: none;
    border: 1px solid #cecece;
}

.project-listing .detail-container {
    display: block;
    padding: 15px;
    color: #000;
    text-decoration: none;
}

.project-listing .detail-container .name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.project-listing .detail-container p {
    margin-bottom: 5px;
    font-size: 15px;
    color: #575757;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.project-listing .detail-container .mid-content {
    display: flex;
    justify-content: space-between;
}

.project-listing .detail-container .bottom-content {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #cecece;
    padding-top: 10px;
    margin-top: 5px;
    align-items: center;
}

.project-listing .detail-container .bottom-content .view-detail {
    border-radius: 50px;
    padding: 5px 15px;
    font-size: 14px;
    color: var(--mainColor);
    background: #f4f2f1;
    font-weight: 600;
}

.project-listing .detail-container .price {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 16px;
    color: #000;
}

.project-listing .new-lanuch {
    top: 10px;
    position: absolute;
    background: red;
    padding: 5px 13px;
    color: #fff;
    font-size: 14px;
    z-index: 9;
    border-radius: 50px;
    left: 10px;
}

.project-listing .detail-container p.can-earn {
    background: var(--mainColor);
    padding: 0px 12px;
    display: inline-block;
    border-radius: 0 7px 0 7px;
    margin-bottom: 0;
    border-color: var(--mainColor);
    font-size: 13px;
    color: #fff;
    margin-top: 5px;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #ee7752, var(--mainColor));
    background-size: 400% 400%;
    animation: gradient 3s ease infinite;
    white-space: normal;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.img-icon {
    width: 25px;
    height: 25px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.common-icon-box .img-icon {
    width: 75px;
    height: 75px;
}

.icon-decisions {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/decisions.svg);
}

.icon-liquidity {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/liquidity.svg);
}

.icon-diversification {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/diversification.svg);
}

.icon-attractive-new {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/attractive.svg);
}

.icon-risk-management {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/risk-management.svg);
}

.icon-transparency {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/transparency.svg);
}

.icon-secure {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/secure.svg);
}

.icon-financial {
    background-image: url(../images/icons/financial.svg);
}

.icon-multiple-asset {
    background-image: url(../images/icons/multiple-asset.svg);
}

.icon-foward {
    background-image: url(../images/icons/foward.svg);
}

.icon-signup {
    background-image: url(../images/icons/signup.svg);
}

.icon-referrals {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/my-referrals.png);
}

.icon-referrals-user {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/my-referrals-XLR8User.png);
}

.icon-add-referrals {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/add-referrals.png);
}

.icon-add-referrals-XLR8User {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/add-referrals-XLR8User.png);
}

.icon-my-profile {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/my-profile.png);
}

.icon-my-income {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/my-income.png);
}

.icon-relationship-manager {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/relationship-manager.png);
}

.icon-how-to-earn {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/how-to-earn.png);
}

.icon-faq {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/faq.png);
}

.icon-low-ticket {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/low-ticket.svg);
}

.icon-attractive {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/attractive.png);
}

.icon-improved {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/improveds.png);
}

.icon-ownership {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/ownerships.png);
}

.icon-capital {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/capital.svg);
}

.icon-low {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/icon-low.png);
}

.icon-seamless {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/seamless.png);
}

.icon-browse {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/browse.svg);
}

.icon-invest {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/invest.svg);
}

.icon-monitor {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/monitor.svg);
}

.icon-testimonials {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/testimonials-new1.svg);
}

.icon-zero {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/zero-invest.png);
}

.icon-secondary-income {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/secondary-Income.png);
}

.icon-transparency {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/transparency.png);
}

.icon-sign-in {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/signIn.png);
}

.icon-add-r {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/add-referal.png);
}

.icon-play {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons/play-new.svg);
}
.icon-about {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/icons-new/about-us.png);
}

.new-detail-page {
    display: flex;
    flex-wrap: wrap;
}

.new-detail-page .detail-content {
    flex: 0 0 calc(100% - 369px);
    width: calc(100% - 369px);
    padding-right: 5px;
}

.right-fixed-form {
    width: 369px;
    flex: 0 0 369px;
}

.new-detail-page img {
    width: 100%;
}

.propertydetails {
    padding: 30px;
    border: 0;
    box-shadow: 0 0 10px #D6D4D4;
}

.whitebackground {
    background: #fff;
    margin-bottom: 20px;
}

.overviewtitle {
    font-size: 25px;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 25px;
    border-bottom: 1px solid #f3f3f3;
    line-height: 1.2;
    color: #000;
}

.overviewtitle:before {
    border-bottom: 3px solid var(--mainColor);
    content: '';
    position: absolute;
    left: 0;
    width: 50px;
    bottom: 0;
}

.prop-lead-form .act-btn .btn {
    width: 100%;
}

ul.overview-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 15px -5px 0;
}

ul.overview-list li {
    flex: 0 0 33.33%;
    padding: 0 5px;
    margin-bottom: 10px;
    width: 33.33%;
}

ul.overview-list li .box-grid {
    background: #fff;
    box-shadow: 0 0 2px #979797;
    border-radius: 5px;
    padding: 15px;
}

ul.overview-list li .heading {
    color: #6d6e70 !important;
    font-weight: 400;
    margin-bottom: 5px;
    font-size: 14px !important;
}

ul.overview-list li .txt {
    color: #000;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

.text_dis {
    margin-top: 15px;
}

.text_dis h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
}

.text_dis p {
    font-size: 15px;
    padding: 0 0 15px;
    color: #6D6E70;
}

.amenties-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px
}

.amenties-row .amenties-grid {
    flex: 0 0 33.33%;
    width: 33.33%;
    padding: 0 5px
}

.amenties-row .amenties-grid .amenties-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #edecec;
    height: 100%
}

.amenties-row .amenties-grid .fa {
    width: 55px;
    height: 55px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: initial!important;
    margin-right: 10px;
    font-size: 0;
}

.amenties-row .amenties-grid .amenties-txt {
    width: calc(100% - 65px);
}

.fa-twitter-new {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/twitter-new-black.png);
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: initial!important;
}

.amenties-grid .fa-home {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/club.png)
}

.amenties-grid .fa-child {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/kids-play.png)
}

.amenties-grid .fa-swinpool {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/swimming-pool.png)
}

.amenties-grid .fa-dumbbell {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/gym.png)
}

.amenties-grid .fa-tree {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/landscape.png)
}

.amenties-grid .fa-battery-full {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/power-backup.png)
}

.amenties-grid .fa-cloud-rain {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/rain-water-harvesting.png)
}

.amenties-grid .fa-parking {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/car-parking.png)
}

.amenties-grid .fa-building {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/multipurpose-hall.png)
}

.amenties-grid .fa-video {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/video-security.png)
}

.amenties-grid .fa-sewage {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/sewage.png)
}

.amenties-grid .fa-user {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/24X7-security.png)
}

.amenties-grid .fa-running {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/jogging-track.png)
}

.amenties-grid .fa-tennis-ball {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/tennis-court.png)
}

.amenties-grid .fa-bullseye {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/meditation-centre.png)
}

.amenties-grid .fa-braille {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/open-space.png)
}

.amenties-grid .fa-intercom {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/intercom.png)
}

.amenties-grid .fa-tint {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/water-supply.png)
}

.amenties-grid .fa-atom {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/vastu-compliant.png)
}

.amenties-grid .fa-credit-card {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/atm.png)
}

.amenties-grid .fa-forklift {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/lift.png)
}

.amenties-grid .icon-food {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/food-court.png)
}

.amenties-grid .fa-fire-extinguisher {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/firefighting-equipment.png)
}

.amenties-grid .fa-wifi {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/wifi.png)
}

.amenties-grid .fa-staff {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/property-staff.png)
}

.amenties-grid .fa-day-care {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/day-care-centre.png)
}

.amenties-grid .fa-film {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/theatre.png)
}

.amenties-grid .fa-person-booth {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/conference-room.png)
}

.amenties-grid .fa-golf-ball {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/golf-course.png)
}

.amenties-grid .fa-utensils {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/restaurant.png)
}

.amenties-grid .fa-paved {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/paved-compound.png)
}

.amenties-grid .fa-gas-pump {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/piped-gas.png)
}

.amenties-grid .fa-step-forward {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/esclators.png)
}

.amenties-grid .fa-coffee {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/cafeteria.png)
}

.amenties-grid .fa-globe-asia {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/earthquake-resistant.png)
}

.amenties-grid .fa-basketball {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/basketball-court.png)
}

.amenties-grid .fa-creche {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/creche.png)
}

.amenties-grid .fa-kabana {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/kabana.png)
}

.amenties-grid .fa-waiting-lounge {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/waiting-lounge.png)
}

.amenties-grid .fa-water-plant {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/water-plant.png)
}

.amenties-grid .fa-laundromat {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/laundromat.png)
}

.amenties-grid .fa-3tier-security {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/3tier-security.png)
}

.amenties-grid .fa-nursery-school {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/nursery-school.png)
}

.amenties-grid .fa-convenience-stores {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/convenience-stores.png)
}

.amenties-grid .fa-religious {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/religious.png)
}

.amenties-grid .fa-shopping-bag {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/shopping-centre.png)
}

.amenties-grid .fa-maintenance-staff {
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/amenities/maintenance-staff.png)
}

@media(max-width: 768px) {
    .dash-row {
        padding: 0;
        margin: 0 -5px;
    }

    .amenties-row .amenties-grid {
        flex: 0 0 50%;
        width: 50%;
    }

    .amenties-row .amenties-grid .fa {
        width: 40px;
        height: 40px;
    }

    .amenties-row .amenties-grid .amenties-txt {
        width: calc(100% - 50px);
    }

    .amenties-row .amenties-grid .amenties-box {
        font-size: 14px;
    }

    .fa-twitter-new {
        width: 12px;
        height: 12px;
    }

    .project-listing {
        display: flex;
    }

    .project-listing .img-container {
        flex: 0 0 35%;
        width: 35%;
    }

    .project-listing .detail-container {
        flex: 0 0 65%;
        width: 65%;
        padding: 10px;
    }

    .project-listing .detail-container .bottom-content .view-detail {
        display: none;
    }

    .project-listing .slider-box {
        height: 161px;
    }

    .project-listing .detail-container p.can-earn {
        position: absolute;
        bottom: 1px;
        left: 1px;
        max-width: 98px;
        white-space: normal;
        margin: 0;
        font-size: 12px;
        line-height: 1.3;
        padding: 3px 12px;
        z-index: 9;
    }
}

.specificationulli ul {
    list-style: disc;
}

.specificationulli ul li {
    font-size: 15px;
    color: rgb(109, 110, 112);
    line-height: 30px;
}

.sticky-aside-form {
    position: sticky;
    top: 95px;
    z-index: 9;
}

.new-detail-page .paymentstn th {
    background: #000;
    padding: 20px 10px !important;
    color: #fff;
}

.new-detail-page .paymentstn td {
    padding: 9px 10px !important;
    font-size: 14px;
}

.common-act-btn .btn {
    color: #fff;
}

.common-act-btn .btn:hover {
    color: var(--mainColor);
}

.discription-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.discription-row .loc {
    font-size: 18px;
    color: #6D6E70;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.discription-row .loc .map_icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: left;
    margin-right: 5px;
}

.discription-row .reratext {
    font-size: 13px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: none;
    text-align: center;
    line-height: 1;
    position: relative;
    background: #F1F1F2;
    padding: 3px;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.discription-row .reratext i {
    background: #02c802;
    color: #fff;
    border-radius: 100%;
    font-size: 12px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    line-height: 1;
}

.project-title {
    margin: 0;
    font-weight: 600;
    font-size: 40px;
    line-height: 1;
}

.discription-row .prop-des, .discription-row .prop-des a {
    font-size: 16px;
    color: #636363;
    display: inline-flex;
    align-items: center;
}

.discription-row .prop-des a {
    margin-left: 5px;
}

.discription-row .price {
    font-weight: 600;
    font-size: 20px;
}

.discription-row .prop-des img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    margin-right: 6px;
    opacity: 0.8;
}

.share-project {
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 9;
}

.share-project a {
    color: #333;
    font-size: 17px;
    width: 40px;
    height: 40px;
    background: rgb(255 255 255/95%);
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.share-project a img {
    width: 100%;
    height: 100%;
    padding: 11px;
    opacity: 0.8;
}

.heart_icon {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 9;
}

.heart_icon a {
    color: #fffdfe;
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgb(255 255 255/95%);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 18px;
    line-height: 1;
}

.property-detail-slider {
    position: relative;
}

.property-detail-slider .owl-item > img {
    height: 420px;
    width: 100%;
    object-fit: cover;
}

.new-breadcrumb .breadcrumb {
    background: #fff;
    margin: 5px 0;
}

.paddingzero {
    padding: 0;
}

.floorPlan img {
    max-height: 400px;
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.floorplanedetail {
    padding-left: 20px;
}

.floorplanedetail h4 {
    font-size: 14px;
    color: #6d6e70;
    margin-top: 0;
    line-height: 17px;
    margin-bottom: 10px;
}

.floorplanedetail p {
    font-size: 18px;
    color: #000;
    line-height: 20px;
    font-weight: 600;
}

.floorplanedetail hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #ccc;
}

.location-map {
    height: 400px;
    background-size: cover;
    padding: 15px;
    position: relative;
    background-color: #0000001a;
    background-repeat: no-repeat;
}

.location-tabs-new {
    position: absolute;
    top: 10px;
    left: 10px;
    min-width: 220px;
    padding: 10px 15px;
    background: #fff;
    border-radius: 8px;
    z-index: 1;
}

.location-tabs-new ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    border: 0;
}

.location-tabs-new ul li {
    display: block;
    margin: 0;
    padding: 9px 0;
}

.location-tabs-new ul>li.active>a, .location-tabs-new ul>li.active>a:focus, .location-tabs-new ul>li.active>a:hover {
    border: 0;
}

.location-tabs-new ul>li>a {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.location-tabs-new ul>li>a:hover {
    border-color: transparent;
    background: transparent;
}

.spacicationmenu {
    list-style: none;
    margin-bottom: 0;
    display: flex;
}

.spacicationmenu li {
    flex: 1;
}

.spacicationmenu li a {
    text-decoration: none;
    color: #6D6E70;
    padding: 20px;
    font-size: 17px;
    display: block;
    font-weight: 600;
    text-align: center;
}

.spacication {
    box-shadow: 0 0 10px #D6D4D4;
}

.reference-box {
    box-shadow: 0 0 10px #D6D4D4;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    min-height: 200px;
    max-height: 260px;
}

.reference-box .name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.reference-box .link {
    margin-bottom: 5px;
    font-size: 17px;
}

.reference-box .link a {
    display: flex;
    align-items: center;
}

.reference-box .link a i {
    margin-right: 8px;
}

.reference-box strong {
    font-weight: 600;
}

.reference-info {
    background: #f6f6f6;
    border-radius: 50px;
    margin: 0 0 5px;
    padding: 3px 10px;
    display: inline-block;
    font-size: 13px;
}

.reference-row {
    margin-top: 15px;
}

.my-income .panel-heading {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
}

.my-income table th {
    background: #ebebeb;
}

.modal-header h4 {
    line-height: 1;
}

.center-align-modal .modal-dialog {
    top: 50%;
    transform: translate(0, -50%) !important;
    margin: 0 auto;
}

.filter-btn a {
    background: #2b2b2b;
    color: #fff;
    padding: 10px 17px;
    display: inline-flex;
    border-radius: 50px;
    align-items: center;
    line-height: 1;
    transition: 0.3s;
}

.filter-btn a:hover {
    background: var(--mainColor);
}

.filter-btn {
    margin: 15px 0;
    text-align: right;
}

.filter-btn a i {
    margin-right: 5px;
}

.round-arrow.owl-carousel .owl-nav button.owl-prev {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    left: 10px;
    display: block !important;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 100%;
    margin-top: -22px;
}

.round-arrow.owl-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    right: 10px;
    display: block !important;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 100%;
    margin-top: -22px;
}

.round-arrow.owl-carousel .owl-nav button.owl-prev i, .round-arrow.owl-carousel .owl-nav button.owl-next i {
    font-size: 25px;
    padding: 0 !important;
    color: #979797;
    line-height: 1;
}

.round-arrow.owl-carousel .owl-nav button.disabled {
    display: none !important;
}

.mobileBackBtn {
    background: var(--mainColor);
    padding: 0 15px;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    color: #fff !important;
    height: 54px;
    font-weight: 600;
    z-index: 9;
}

.mobileBackBtn .back-btn {
    width: 30px;
    height: 30px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    justify-content: center;
    border-radius: 100%;
    color: #000;
    margin-right: 14px;
}

.spacication_fixed_top {
    position: sticky;
    top: 92px;
    z-index: 9;
}

.spacicationmenu li.active a {
    background: var(--mainColor);
    color: #fff;
}

.readMoreDiv a {
    color: var(--mainColor) !important;
    text-decoration: underline !important;
}

.readMoreDiv {
    margin-top: 8px;
}

.sort-txt-dis {
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.readmoreshort {
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.full-para {
    -webkit-line-clamp: inherit;
}

.rera-div {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    border: 1px solid #cecece
}

.rera-div .rera-content {
    background: #ebebeb;
    padding: 10px 15px;
    width: 100%;
    font-size: 15px
}

.rera-div .rera-no {
    padding-top: 25px;
    font-size: 15px;
}

.rera-div .qr-code {
    padding: 20px;
    text-align: center
}

.rera-div .qr-code img {
    width: 100px;
    height: 100px;
    object-fit: contain
}

.rera-div .qr-code p {
    font-size: 16px;
    padding-top: 20px;
    margin-bottom: 0
}

.dash_header .icon_right a {
    margin-left: 20px;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #000;
}

.dash_header .icon_right a.user-info span {
    font-size: 16px;
    margin-right: 7px;
}

.dash_header .icon_right li {
    display: flex;
    align-items: center;
}

.side-menu-common {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 340px;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
    -webkit-box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
    font-size: 16px;
    padding: 0;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 75%;
    transition-duration: 200ms;
    -webkit-transition-duration: 200ms;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fff;
    right: -100%;
    opacity: 0;
    visibility: hidden;
}

.menu-open .side-menu-common {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.side-menu-common .user-details {
    padding: 25px;
    color: #fff;
    text-align: center;
    background: linear-gradient(150deg, var(--mainColor),#ffaf73);
}

.closeMenu {
    position: absolute;
    font-size: 26px;
    color: #fff !important;
    right: 10px;
    top: 10px;
}

.side-menu-common .user-details .icon {
    font-size: 65px;
    color: #fff;
    margin-bottom: 6px;
    display: block;
}

.side-menu-common .user-details .name {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
}

.user-info {
    display: flex;
    text-align: left;
}

.user-info .img {
    width: 70px;
    border: 5px solid #fff;
    border-radius: 100%;
    height: 70px;
}

.user-info .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info .content {
    padding-left: 15px;
    width: calc(100% - 70px);
}

.user-info .content .user-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.side-menu-common .user-details .ref-code {
    font-size: 17px;
    background: #ffecf2;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    line-height: 1;
    color: #333;
    border: 1px dotted var(--mainColor);
    font-weight: bold;
}

.side-menu-common .share-code {
}

.side-menu-common .share-code p {
    margin-bottom: 10px;
    font-size: 14px;
}

.side-menu-common .share-code .share-icon a {
    font-size: 14px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    background: #fff;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    color: #000;
    line-height: 1;
    margin-right: 10px;
}

.side-menu-common .share-code .share-icon {
    margin-top: 0;
    display: flex;
    align-items: center;
}

.side-menu-common .share-code .share-icon a .bi.bi-link-45deg {
    font-size: 19px;
    line-height: 1;
    position: relative;
    top: 1px;
}

.main-side-menu {
    padding: 25px;
    overflow-y: auto;
}

.main-side-menu .menu li a {
    font-size: 17px;
    color: #000;
    padding: 0 0 15px;
    display: inline-flex;
    align-items: center;
}

.main-side-menu .menu li a i {
    width: 30px;
    display: inline-flex;
    margin-right: 10px;
    height: 30px;
    background: #F1F1F1;
    border-radius: 100%;
    color: #333;
    justify-content: center;
    align-items: center;
}

.main-side-menu .menu li.active a {
    color: var(--mainColor);
    font-weight: 600;
}

.main-side-menu .menu li.active a i {
    background: var(--mainColor);
    color: #fff;
}

.readMoreDiv a {
}

.disclamer p {
    font-size: 15px;
    padding: 0 0 15px;
    color: #6D6E70;
}

.similar-projects .project-listing {
    border: 1px solid #cecece;
    box-shadow: none;
}

@media(max-width: 768px) {
    .side-menu-common {
        right: auto;
        left: -100%;
    }

    .menu-open .side-menu-common {
    left: 0;
    width: 100%;
    max-width: 320px;
}

    .axon-header {
        display: none;
    }

    .dash-row .grid {
        flex: 0 0 50%;
        width: 50%;
        padding: 0 5px;
    }

    .dash-page-menu i {
        font-size: 25px;
        width: 50px;
        height: 50px;
    }

    .dash-page-menu .name {
        font-size: 13px;
        padding-top: 9px;
        line-height: 1.2;
    }

    .dash-page-menu {
        padding: 15px 5px;
        margin: 10px 0 0 0;
        min-height: 134px;
    }

    .dash-page-menu .img-icon {
        width: 55px;
        height: 55px;
    }

    .project-listing-row .grid {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 10px;
    }

    .project-listing .new-lanuch {
        display: none;
    }

    .project-listing .detail-container p {
        font-size: 13px;
    }

    .project-listing .detail-container .name {
        font-size: 17px;
    }

    .new-detail-page .detail-content {
        width: 100%;
        flex: 0 0 100%;
        padding-right: 0;
    }

    .right-fixed-form {
        width: 100%;
        flex: 0 0 100%;
    }

    .property-detail-slider .owl-item > img {
        height: 210px;
    }

    .propertydetails {
        padding: 15px;
    }

    .project-title {
        font-size: 25px;
    }

    .discription-row {
        display: block;
        margin: 10px 0;
    }

    .discription-row .reratext {
        display: inline-flex;
    }

    .discription-row .left-content {
        margin-bottom: 9px;
    }

    .overviewtitle {
        font-size: 20px;
    }

    ul.overview-list li {
        flex: 0 0 100%;
        width: 100%;
    }

    .text_dis h3 {
        font-size: 18px;
    }

    .floorPlan img {
        max-height: 240px;
        height: 240px;
    }

    .floorplanedetail p {
        font-size: 16px;
    }

    .spacicationmenu {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .spacicationmenu li {
        flex: 0 0 28%;
    }

    .spacicationmenu li a {
        padding: 10px 10px;
        font-size: 13px;
    }

    .location-tabs-new {
        background: transparent;
        max-width: 100%;
        padding: 0;
        top: 0;
        left: 5px;
        min-width: 100%;
    }

    .location-tabs-new .nav-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        flex-direction: row;
    }

    .location-tabs-new ul li {
        flex: 1;
        margin-right: 5px;
    }

    .location-tabs-new .nav>li>a {
        line-height: 1 !important;
        padding: 8px 15px;
        text-align: center;
        justify-content: center;
        border-radius: 5px;
        box-shadow: 0 0 5px #717171;
        flex-wrap: nowrap;
        white-space: nowrap;
        margin: 5px;
        background: #fff;
    }

    .location-tabs-new .nav>li>a span.arrowspan_left {
        display: none;
    }

    .locationAdvantage {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .reference-box {
        min-height: auto;
        margin-bottom: 10px;
    }

    .mpadding0 {
        padding: 0 !important;
    }

    .round-arrow.owl-carousel .owl-nav button.owl-next {
        width: 35px;
        height: 35px;
        right: 0;
    }

    .round-arrow.owl-carousel .owl-nav button.owl-prev i, .round-arrow.owl-carousel .owl-nav button.owl-next i {
        font-size: 18px;
    }

    .round-arrow.owl-carousel .owl-nav button.owl-prev {
        width: 35px;
        height: 35px;
        left: 0;
    }

    .mobile-top-padding {
        margin-top: 45px;
    }

    .spacication_fixed_top {
        top: 54px;
        box-shadow: none;
        border-bottom: 1px solid #cecece;
        border-top: 1px solid #cecece;
    }
}

.black-bg {
    background: #000;
}

.how-its-work .heading-top {
    padding: 50px 0;
}

.how-its-work .heading-top h1 {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 600;
}

.how-its-work .heading-top h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.how-its-work .heading-top p {
    font-size: 18px;
    line-height: 1.5;
    color: #5f5f5f;
}

.itswork-act-btn {
    display: flex;
    max-width: 850px;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    margin-top: 30px;
}

.itswork-act-btn p {
    font-size: 15px;
    flex: 0 0 75%;
    width: 75%;
    margin-bottom: 0;
}

.time-management-sec h2 {
    font-size: 48px;
    margin: 0 0 0;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 30px;
}

.time-management-sec .difference-row .difference-grid .difference-box {
    box-shadow: 0 0 6px #cecece;
    min-height: 290px;
}

.works-steps-row .step-no {
    background: var(--mainColor);
    width: 70px;
    height: 70px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 30px;
}

.works-steps-row h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.works-steps-row p {
    color: #fff;
    margin-bottom: 0;
}

.works-steps-row {
    display: flex;
    margin: 0 -20px;
}

.works-steps-row .grid {
    flex: 0 0 25%;
    width: 25%;
    padding: 0 20px;
}

.works-steps-row .step-no:after {
    content: '';
    background: #fff;
    height: 3px;
    width: 85%;
    position: absolute;
    right: -33px;
    top: 34px;
}

.works-steps-row .grid:last-child .step-no:after {
    display: none;
}

.works-steps-row .grid .box {
    position: relative;
}

.works-steps-sec {
    padding: 50px 0;
}

.how-its-video {
    padding: 50px 0;
}

.how-its-video .video-img, .how-its-videos-area {
    height: 700px;
    position: relative;
}

.how-its-video .video-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.how-its-videos-area .myVideo {
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
    background: #000;
}

.how-its-videos-area .rtopVideoPlayerWrapper {
    height: 100%;
}

.how-its-videos-area .rtopVideoPlayerWrapper .rtopVideoPlayer {
    height: 100%;
    border-radius: 30px;
}

.how-its-video .video-img .play-btn {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    bottom: 0;
    height: 100%;
    font-size: 100px;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(00,00,00,0.3);
    border-radius: 30px;
}

.how-txt-sec h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.how-txt-sec h3 {
    font-size: 20px;
    line-height: 1.7;
    color: #000;
    font-weight: normal;
    font-family: var(--siteFont);
}

.power-yours-sec h2 {
    font-size: 48px;
    font-weight: bold;
}

.power-yours-sec .sub-heading {
    font-size: 20px;
}

.power-yours-sec .difference-row {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}

.power-yours-sec {
    padding: 50px 0;
}

.power-yours-sec .difference-row .difference-grid {
    padding: 15px;
    flex: 0 0 25%;
}

.tech-edge-sec h2 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
}

.tech-edge-sec .sub-heading {
    font-size: 20px;
    color: #fff;
    margin-bottom: 35px;
    line-height: 1.5;
}

.have-questions-sec {
    text-align: center;
    padding-bottom: 50px;
}

.have-questions-sec h2 {
    font-size: 32px;
    font-weight: 600;
}

.have-questions-sec h2 a {
    text-decoration: none;
    color: var(--mainColor);
}

.tech-edge-sec {
    padding: 50px 0;
}

.how-txt-sec {
    padding-top: 50px;
}

.difference-row .difference-grid .difference-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.difference-row .difference-grid .difference-box p {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.7;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: #000;
}

.difference-row .difference-grid .difference-box .common-icon-box {
    margin-bottom: 20px;
}

.earnings-txt {
    margin-top: 15px;
}

.earnings-txt p {
    font-size: 14px;
}

.earnings-txt p strong, .earnings-txt p b {
    font-weight: 600;
}

.ref-code-div {
    border: 1px dashed var(--mainColor);
    border-radius: 5px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    background: #fdf5f7;
    margin-bottom: 20px;
}

.ref-code-div .code {
    font-weight: bold;
    font-size: 18px;
    color: var(--mainColor);
}

.ref-code-div .copy-link {
    color: #1d1d1d;
    font-weight: 500;
}

.profile-box .share-code {
}

.profile-box .share-code .text {
    text-transform: uppercase;
    margin-bottom: 5px;
}

.profile-box .share-code .share-icon a {
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    background: #0cbf0c;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1;
    margin-right: 10px;
}

.profile-box .share-code .share-icon a.copy-link {
    background: var(--mainColor);
}

.profile-box .share-code .share-icon a .bi.bi-link-45deg {
    font-size: 22px;
    line-height: 1;
    position: relative;
    top: 1px;
}

.profile-box .share-code .share-icon {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

@media(max-width: 768px) {
    .itswork-act-btn {
        max-width: 100%;
        margin-top: 15px;
    }

    .itswork-act-btn p {
        flex: 0 0 100%;
        width: 100%;
        font-size: 15px;
        margin-bottom: 15px;
    }

    .works-steps-row .step-no {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .works-steps-row {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .works-steps-row .grid {
        flex: 0 0 65%;
        width: 65%;
        padding-bottom: 15px;
    }

    .works-steps-row h3 {
        font-size: 18px;
    }

    .works-steps-row .step-no:after {
        height: 2px;
        top: 20px;
        width: 92%;
    }

    .how-its-video .video-img, .how-its-videos-area {
        height: 190px;
    }

    .how-its-video .video-img .play-btn {
        font-size: 60px;
    }

    .time-management-sec h2 {
        font-size: 30px;
    }

    .how-txt-sec h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .how-txt-sec h3 {
        font-size: 15px;
    }

    .power-yours-sec h2 {
        font-size: 30px;
    }

    .power-yours-sec .sub-heading {
        font-size: 15px;
    }

    .tech-edge-sec h2 {
        font-size: 40px;
    }

    .tech-edge-sec .sub-heading {
        font-size: 15px;
    }

    .have-questions-sec h2 {
        font-size: 20px;
    }

    .time-management-sec .difference-row .difference-grid .difference-box {
        min-height: 226px;
    }

    .how-its-work .heading-top h2 {
        font-size: 25px;
    }
    .how-its-work .heading-top p{
        font-size: 14px;
    }

    .how-its-work .heading-top h1 {
        font-size: 22px;
        color: var(--mainColor);
        margin-bottom: 15px;
    }

    .power-yours-sec .difference-row {
        flex-wrap: nowrap;
        overflow: auto;
    }

    .power-yours-sec .difference-row .difference-grid {
        flex: 0 0 75%;
    }

    .have-questions-sec {
        padding: 0 0 30px;
    }
}

.footer-heading h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: capitalize;
}

.footer-heading .act-btn .btn {
    margin-right: 15px;
}

.footer-heading .act-btn .btn i {
    margin-left: 0;
    margin-right: 5px;
    position: relative;
    top: 2px
}

.quick-link h5 {
    color: #6D6E70;
    margin-bottom: 15px;
    font-weight: 600;
}

.quick-link ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.quick-link ul li a {
    text-decoration: none;
    color: #000;
}

.quick-link ul li a:hover {
    color: var(--mainColor);
}

.quick-link ul li {
    margin-bottom: 15px;
}

.p-l-70 {
    padding-left: 70px;
}

footer.site-footer {
    background: #fff;
    padding: 50px 0;
}

.copy_txt {
    border-top: 1px solid #f1f1f1;
    padding-top: 40px;
    margin-top: 40px;
    text-align: center;
    color: #6D6E70;
}

.btn {
    font-size: 18px;
    font-weight: 600;
    transition: 0.5s;
}

.step-toearn h2 {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
}

.step-toearn .txt {
    color: #fff;
    margin-top: 50px;
    font-size: 20px;
}

.step-toearn .works-steps-row .grid {
    flex: 0 0 33.33%;
    width: 33.33%;
}

.paddingb0 {
    padding-bottom: 0 !important;
}

@media(max-width: 768px) {
    .step-toearn h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .step-toearn .works-steps-row .grid {
        flex: 0 0 65%;
        width: 65%;
        padding-bottom;}

    .step-toearn .txt {
        margin-top: 10px;
        font-size: 17px;
    }
}

.home-header .inner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.home-header {
    background: #fff;
    padding: 27px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    left: 0;
    right: 0;
    box-shadow: 0 0 1px #ACACAC;
}

.home-header .inner-content .logo {
    max-width: 200px;
}

.home-header .inner-content .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
}

.home-header .inner-content .menu {
    display: flex;
    align-items: center;
}

.home-header .inner-content .menu li {
    padding-left: 25px;
}

.home-header .inner-content .menu li a {
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
}

.home-header .inner-content .menu li.active a {
    color: var(--mainColor);
}

.home-header .inner-content .menu li a.btn {
    background: var(--mainColor);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    padding: 6px 22px;
}

.home-header .inner-content .menu li a.btn:hover {
    background: #fff;
    border-color: var(--mainColor);
    color: var(--mainColor);
}

.home-banner {
    background-image: url(../images/login_page_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    height: calc(100vh - 86px);
    margin-top: 86px;
}

.refer-earn-page {
    background-image: url(../images/login/login_final.png);
    position: relative;
}

.refer-earn-page:before {
    content: '';
    background: rgba(00,00,00,0.6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.refer-earn-page .inner-banner-text {
    position: relative;
    z-index: 9;
}

.home-banner .inner-banner-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.home-banner .inner-banner-text h1 {
    font-size: 80px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.home-banner .inner-banner-text h2 {
    font-size: 60px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.home-banner .inner-banner-text p {
    font-size: 33px;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
}

.home-banner .container {
    height: 100%;
}

.home-header .inner-content .mobile-menu.menu {
    display: none;
}

.homebtn {
    background: var(--mainColor);
    border-radius: 50px;
    border: 1px solid var(--mainColor);
    padding: 16px 40px;
    outline: none;
    color: #fff !important;
    margin-top: 50px;
    font-size: 20px;
    text-transform: uppercase;
}

.no_notification {
    box-shadow: 0 0 10px #D6D4D4;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    margin: 50px auto;
    max-width: 500px;
}

.no_notification .no-notification-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.no_notification .no-notification-inner i {
    font-size: 67px;
    margin-bottom: 20px;
    color: var(--mainColor);
}

.no_notification .no-notification-inner p {
    font-size: 18px;
    color: #505050;
}

.notification-box {
    box-shadow: 0 0 10px #D6D4D4;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.notification-row {
    margin: 50px 0;
}

.notification-box .img {
    width: 80px;
    height: 80px;
}

.notification-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.notification-box .content {
    width: calc(100% - 80px);
    padding-left: 15px;
}

.notification-box .content .txt {
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1.2;
    color: #000;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.notification-box .content .time {
    color: #787878;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.notification-box .content .time i {
    margin-right: 7px;
}

@media(max-width: 768px) {
    .notification-row {
        margin: 15px 0;
    }

    .notification-box {
        padding: 15px;
    }

    .home-banner .inner-banner-text h1 {
        font-size: 33px;
    }

    .home-banner .inner-banner-text h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .home-banner .inner-banner-text p {
        font-size: 17px;
    }

    .home-header .inner-content .menu {
        display: none;
    }

    .home-header .inner-content .logo {
        max-width: 160px;
    }

    .home-banner {
        margin-top: 60px;
        height: calc(80vh - 60px);
    }

    .home-header {
        padding: 15px 0;
    }

    .home-header .inner-content .mobile-menu.menu {
        display: flex;
    }

    .home-header .inner-content .menu li {
        padding-left: 15px;
    }

    .home-header .inner-content .menu li a.btn {
        padding: 4px 16px;
        font-size: 14px;
    }

    .home-header .inner-content .menu li a {
        font-size: 24px;
    }

    .homebtn {
        padding: 13px 40px;
        font-size: 17px;
        margin-top: 30px;
    }

    .no_notification {
        padding: 50px 20px;
    }

    .how-its-work {
    }
}

.about-top {
    background: #000;
    padding-top: 160px !important;
}

.about-top h5 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-top h2 {
    font-size: 48px;
    color: #fff;
    font-weight: bold;
    text-transform: capitalize;
}

.about-exp-content p {
    font-size: 23px;
    line-height: 1.5;
}

.about-exp ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #cecece;
}

.about-exp ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #cecece;
    padding: 25px 0;
}

.about-exp ul li strong {
    font-size: 32px;
    font-weight: 600;
}

.about-exp ul li span {
    font-size: 20px;
    font-weight: 600;
}

.about-exp-sec {
    padding-top: 50px;
}

.top-main-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.about-intro-sec .top-main-heading {
}

.about-intro-sec .top-main-heading .left-content {
    width: calc(100% - 147px);
}

.about-intro-sec .top-main-heading .right-content {
    width: 147px;
}

.about-intro-sec .top-main-heading .left-content {
}

.about-intro-sec .top-main-heading .left-content p {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-intro-sec .top-main-heading .left-content h2 {
    font-size: 48px;
    font-weight: bold;
}

.intro-row {
    background: #000;
    border-radius: 15px;
    display: flex;
}

.intro-row .grid {
    position: relative;
    flex: 0 0 25%;
    width: 25%;
}

.intro-row .grid:before {
    content: '';
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/arrow-bgnew.png);
    width: 37px;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    background-size: cover;
    z-index: 9;
}

.intro-row .grid:last-child:before {
    display: none;
}

.intro-row .grid .black-box {
    padding: 40px;
}

.intro-row .grid .black-box h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.intro-row .grid .black-box p {
    color: #fff;
    margin-bottom: 0;
    line-height: 1.5;
}

.about-intro-sec {
    padding-top: 100px;
}

.about-why {
    padding-bottom: 50px;
}

.about-why .top-heading-img {
    max-width: 55%;
    margin-bottom: 40px;
}

.about-why h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.why-content p {
    font-size: 18px;
    margin-bottom: 50px;
    line-height: 1.5;
}

.powered-by-develop {
    display: flex;
    align-items: center;
    padding-bottom: 100px;
}

.powered-by-develop label {
    margin-right: 15px;
    font-size: 16px;
    font-weight: 600;
}

.powered-by-develop img {
    max-width: 100px;
    margin-right: 25px;
}

.delivered-project {
}

.delivered-project h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
}

.delivered-project-box .img {
    height: 200px;
    width: 100%;
}

.delivered-project-box {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 0 35px 0 rgba(0,0,0,0.04);
    border: solid 1px #eaeaea;
    text-align: center;
}

.delivered-project-box .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.delivered-project-box .content {
}

.delivered-project-box .content h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.delivered-project-box .content .loc {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: bold;
}

.delivered-project-box .content p {
    line-height: 1.4;
}

.delivered-project-box .content {
    padding-top: 0;
    display: none;
}

.delivered-project-box .content .act-btn {
}

.delivered-project-box .content .act-btn a {
    color: var(--mainColor);
}

.trackrecord-box .img {
    height: 60px;
    margin-bottom: 10px;
    border: 1px solid #e4e4e4;
    padding: 10px;
    border-radius: 5px;
    width: 150px;
    margin: 0 auto 10px;
}

.trackrecord-box .img img {
    width: 100%;
}

.trackrecord-box .content h5 {
    font-size: 17px;
    margin-bottom: 0;
    color: #6e6e6e;
    font-weight: 500;
}

.our-mission h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.leadership-heading {
    display: flex;
    justify-content: space-around;
    margin-bottom: 70px;
}

.leadership-heading h2 {
    font-size: 48px;
    padding-right: 20px;
    margin-bottom: 0;
    font-weight: bold;
}

.leadership-heading p {
    font-size: 32px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.5;
}

.leadership-box {
    margin-bottom: 40px;
}

.leadership-box .img {
    height: 330px;
    width: 100%;
}

.leadership-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.leadership-box .content {
    padding: 30px 0 0;
}

.leadership-box .content .name {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.leadership-box .content .des {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.leadership-box .content .social-link {
    margin-top: 15px;
    display: none;
}

.leadership-box .content .social-link a {
    color: #6D6E71;
    margin-right: 20px;
    font-size: 20px;
}

.leadership-box .content .social-link a:hover {
    color: var(--mainColor);
}

.backed-box {
    height: 160px;
    width: 160px;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.backed-box img {
    object-fit: cover;
    max-width: 100%;
}

.backed-by h2 {
    text-align: center;
    font-size: 48px;
    font-weight: bold;
}

.press-sec h2, .press-sec h2 a {
    color: #fff;
    text-decoration: none;
    font-size: 48px;
    font-weight: bold;
}

.press-sec h2 {
    text-align: center;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.difference-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.difference-row .difference-grid {
    flex: 0 0 25%;
    padding: 10px;
}

.difference-row .difference-grid .difference-box {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    min-height: 278px;
    box-shadow: 0 0 35px 0 rgba(0,0,0,0.04);
    border: solid 1px #eaeaea;
}

.difference-row .difference-grid .difference-box .square-box {
    border: 3px dashed #000;
    float: none;
    margin-bottom: 60px;
}

.difference-row .difference-grid .difference-box .common-icon-box {
    margin-bottom: 20px;
}

.difference-row .difference-grid .difference-box .common-icon-box .icon-multiple-asset {
    width: 120px;
}

.difference-row .difference-grid .difference-box h3 {
}

.difference-row .difference-grid .difference-box p {
}

@media (max-width: 768px) {
    .about-top h5 {
        font-size: 20px;
    }

    .about-why h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .about-top {
        padding-top: 80px !important;
    }

    .about-top h2 {
        font-size: 25px;
    }

    .about-exp-sec {
        padding-top: 30px;
    }

    .about-exp-content p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .about-exp ul li strong {
        font-size: 20px;
    }

    .about-exp ul li span {
        font-size: 14px;
    }

    .about-intro-sec .top-main-heading {
        display: block;
    }

    .about-intro-sec .top-main-heading .right-content {
        width: 100%;
    }

    .about-intro-sec .top-main-heading .left-content {
        width: 100%;
    }

    .about-intro-sec .top-main-heading .left-content p {
        font-size: 14px;
    }

    .about-intro-sec .top-main-heading .left-content h2 {
        font-size: 25px;
        margin: 5px 0 20px;
    }

    .intro-row .grid {
        flex: 0 0 80%;
        width: 80%;
    }

    .intro-row .grid:before {
        width: 29px;
    }

    .intro-row {
        overflow: auto;
    }

    .intro-row .grid .black-box {
        padding: 20px 30px 20px 20px;
    }

    .about-why .top-heading-img {
        max-width: 95%;
        margin-bottom: 20px;
    }

    .intro-row .grid .black-box h3 {
        font-size: 20px;
    }

    .why-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .powered-by-develop label {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .powered-by-develop img {
        max-width: 140px;
    }

    .powered-by-develop {
        padding-bottom: 40px;
        display: block;
    }

    .delivered-project h2 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .delivered-project {
        padding-bottom: 0;
    }

    .our-mission {
        padding-top: 0;
    }

    .our-mission h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .leadership-heading {
        display: block;
        margin-bottom: 30px;
    }

    .leadership-heading h2 {
        font-size: 30px;
    }

    .leadership-heading p {
        font-size: 15px;
    }

    .leadership-box {
        margin-bottom: 0;
    }

    .leadership-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 0 -5px;
        overflow-y: hidden;
    }

    .leadership-row .col-md-3 {
        flex: 0 0 75%;
        width: 75%;
        padding: 0 5px;
    }

    .leadership-box .img {
        height: 220px;
    }

    .leadership-box .content {
        padding: 15px 0 0;
    }

    .leadership-box .content .name {
        font-size: 22px;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .leadership-box .content .des {
        font-size: 15px;
    }

    .backed-by h2 {
        font-size: 25px;
    }

    .backed-box {
        width: 100px;
        height: 100px;
    }

    .backed-by .row {
        flex-wrap: nowrap;
        overflow: auto;
        display: flex;
    }

    .backed-by .row .col-md-3 {
        width: 38%;
        flex: 0 0 38%;
    }

    .press-sec h2, .press-sec h2 a {
        font-size: 25px;
    }

    .about-intro-sec {
        padding-top: 40px;
    }

    .about-why {
        padding-bottom: 0;
    }

    .how-its-work .heading-top {
        padding: 30px 0;
    }
}

.sec-padding {
    padding: 100px 0;
}

.txt-green {
    color: var(--mainColor);
}

.container {
    width: 95%;
}

.company-review-row {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -10px;
}

.company-review-row .company-review-grid {
    flex: 1;
    padding: 0 10px;
}

.company-review-box {
    padding: 25px;
    border-radius: 5px;
    text-align: left;
    border: 0px solid #e2125a;
    background: #710228;
    height: 100%;
}

.company-review-box i {
    font-size: 43px;
    color: var(--mainColor);
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.company-review-box img {
    width: 70px;
    height: 70px;
    margin-bottom: 8px;
    display: none;
}

.company-review-box h5 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin: 5px 0 0;
    line-height: 1;
}

.company-review-box p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    padding-top: 5px;
}

@media(max-width: 768px) {
    .company-review-row {
        display: block;
        margin-bottom: 50px;
    }

    .company-review-box {
        display: flex;
        padding: 20px 15px;
        text-align: left;
        align-items: center;
        margin-bottom: 14px;
    }

    .company-review-box i {
        width: 60px;
        margin-bottom: 0;
        font-size: 40px;
    }

    .company-review-box img {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
    }

    .company-review-box .content {
        width: calc(100% - 50px);
        padding-left: 15px;
    }

    .company-review-box h5 {
        font-size: 20px;
    }

    .company-review-box p {
        font-size: 13px;
    }
}

.contact-page {
    padding: 50px 0;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 25px;
}

.contact-no {
    margin-bottom: 100px;
}

.contact-no label {
    color: #666666;
    display: block;
    margin-bottom: 5px;
}

.contact-no a {
    font-size: 32px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
}

.write-us h3 {
}

.write-us-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.write-us-row .grid {
    flex: 0 0 33.33%;
    width: 33.33%;
    padding: 0 10px 30px;
}

.write-us-row .grid label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
}

.write-us-row .grid a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.phone-no-div {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.phone-no-div label {
    color: #999999;
    flex: 0 0 20%;
    width: 20%;
    font-weight: normal;
}

.phone-no-div select {
    flex: 0 0 30%;
    width: 30%;
}

.phone-no-div input {
    flex: 0 0 70%;
    padding-left: 15px !important;
    width: 70%;
    border: 0;
    outline: 0;
}

.form-row .form-group .icon-input {
    position: relative;
}

.form-row .form-group .icon-input i {
    position: absolute;
    left: 0;
    top: 14px;
    font-size: 20px;
}

.form-row .form-group .form-control {
    height: 50px;
    padding: 10px 20px;
    border-radius: 0;
    background: transparent;
    border: 0;
    font-size: 15px;
    border-bottom: 2px solid #cecece;
    padding-left: 35px;
}

.form-row .form-group textarea.form-control {
    height: 160px;
    resize: none;
    padding: 10px 20px;
    padding-left: 35px;
}

.form-row .form-group .form-control:focus {
    box-shadow: none;
}

.btn-common {
    background: var(--mainColor);
    border-radius: 30px;
    border: 1px solid var(--mainColor);
    padding: 10px 30px;
    outline: none;
    color: #fff;
    font-size: 18px;
}

.btn-common:hover {
    background: #fff;
    color: var(--mainColor);
}

.gray-sm-txt {
    font-size: 13px;
    color: #919396;
}

.contact-form .act-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    margin-bottom: 15px;
    align-items: center;
}

@media(max-width: 768px) {
    .contact-info h3 {
        font-size: 22px;
    }

    .contact-info h2 {
        font-size: 30px;
    }

    .contact-no a {
        font-size: 30px;
    }

    .contact-no label {
        font-size: 16px;
    }

    .contact-no {
        margin-bottom: 40px;
    }

    .write-us h3 {
        font-size: 20px;
    }

    .write-us-row .grid {
        flex: 0 0 50%;
        width: 50%;
        padding: 0 5px 30px;
    }

    .write-us-row .grid label {
        font-size: 12px;
    }

    .write-us-row .grid a {
        font-size: 14px;
    }

    .write-us-row {
        margin: 0 -5px;
    }

    .contact-page {
        background: #fff;
        padding: 30px 0;
    }

    .phone-no-div label {
        flex: 0 0 20%;
        width: 20%;
    }

    .phone-no-div select {
        flex: 0 0 40%;
        width: 40%;
    }

    .phone-no-div input {
        flex: 0 0 60%;
        width: 60%;
    }

    .form-row .form-group .form-control {
        font-size: 14px;
        height: 40px;
    }

    .form-row .form-group .icon-input i {
        top: 8px;
    }

    .contact-form .form-check .form-check-label {
        font-size: 13px;
        width: calc(100% - 20px);
        padding-left: 10px;
    }

    .contact-form .form-check .form-check-input[type=radio] {
        width: 20px;
        height: 20px;
    }
}

.insights-top {
    padding: 30px 0 50px;
}

.insights-top h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.insights-top h2 {
    font-size: 48px;
    font-weight: bold;
    text-transform: capitalize;
}

.insights-search {
    position: relative;
    margin-bottom: 25px;
}

.insights-search i {
    position: absolute;
    left: 15px;
    top: 10px;
    color: #A7A9AC;
}

.insights-search .form-control {
    height: 45px;
    padding-left: 40px;
    border-radius: 15px;
}

.insights-tabs ul li a {
    display: block;
    font-size: 18px;
    padding: 5px 15px;
    border-left: 4px solid transparent;
    margin-bottom: 10px;
    cursor: pointer;
    color: #000;
}

.insights-tabs ul li.active a {
    border-left: 4px solid var(--mainColor);
    font-weight: 600;
}

.insights-box {
    box-shadow: 0 0 3px #ACACAC;
    padding: 3px;
    border-radius: 20px;
    margin: 2px;
    background: #fff;
    margin-bottom: 40px;
}

.insights-box .img {
    height: 169px;
    position: relative;
}

.insights-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

.insights-box .description {
    padding: 10px;
    position: relative;
}

.insights-box .overlay-bg-video {
    width: 100%;
    align-items: center;
    justify-content: center;
    background: rgba(00,00,00,0.3);
    border-radius: 17px;
}

.insights-box .overlay-bg-video .icon {
    width: 50px;
    height: 50px;
}

.insights-box a {
    text-decoration: none;
}

.insights-box .description h4 {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
}

.insights-box .description h3 {
    font-size: 20px;
    font-weight: 600;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #000;
}

.insights-box .description .description-para {
    color: #666666;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 0.5rem;
    min-height: 60px;
}

.insights-box .description .description-para p {
    line-height: 1.3;
}

.insights-box .description .min-read {
    font-size: 12px;
    color: #808285;
    display: none;
}

.insights-box .description .bottom-act {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.insights-box .description .bottom-act .left-content {
    flex: 0 0 50%;
    width: 50%;
}

.insights-box .description .bottom-act .left-content span {
    font-size: 10px;
    color: #808285;
    position: relative;
    display: inline-block;
    padding-right: 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
}

.insights-box .description .bottom-act .right-content {
    flex: 0 0 50%;
    width: 50%;
    text-align: right;
}

.insights-box .description .bottom-act .right-content a {
    font-size: 10px;
    color: var(--mainColor);
    text-decoration: none;
}

.insights-box .description .bottom-act .left-content span::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #808285;
    position: absolute;
    right: 0;
    top: 8px;
}

.insights-box .description .bottom-act .left-content span:last-child::before {
    display: none;
}

.overlay-bg-video {
    background: linear-gradient(180deg, rgba(00, 00, 00, 0.0), rgba(00, 00, 00, 1));
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: end;
    padding: 50px;
}

.overlay-bg-video .icon {
    width: 70px;
    height: 70px;
}

.overlay-bg-video .icon .img-icon {
    width: 100%;
    height: 100%;
    background-size: contain;
    display: block;
}

.overlay-bg-video .icon .content {
    width: calc(100% - 100px);
}

.overlay-bg-video .content {
    width: calc(100% - 70px);
    color: #fff;
    padding-left: 15px;
}

.overlay-bg-video .content h5 {
    font-size: 13px;
    color: var(--mainColor);
    font-weight: bold;
}

.overlay-bg-video .content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 7px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.overlay-bg-video .content .description-para {
    font-size: 13px;
    margin-bottom: 0;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-weight: 600;
}

.portfolio-sec {
    background: linear-gradient(150deg, #D91173, #b30a5c, #a80051, #9a004b, #700137, #620231, #500329, #410221, #15000b, #000000);
    border-radius: 6px;
    padding: 40px;
    color: #fff;
    margin: 80px 0 100px;
    position: relative;
}

.portfolio-sec h3 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.portfolio-sec p {
    font-size: 20px;
    margin-bottom: 27px;
}

.portfolio-sec::after {
    content: '';
    background-image: url(/themes/classic/360gyan_assets/xlr8/images/portfolio.png);
    position: absolute;
    right: 0;
    background-size: cover;
    width: 337px;
    height: 327px;
    top: -111px;
    background-repeat: no-repeat;
}

.portfolio-sec a {
    color: #480A4A;
    background: #fff;
    border-color: #fff;
}

.sticky-div {
    position: sticky;
    top: 110px;
    transition: .3s;
}

.asset_not_found_message, .record_not_found {
    font-size: 32px;
    padding: 60px 20px;
    border-radius: 15px;
    margin: 0 auto;
    text-align: center;
    background: #f8f8f8;
}

.asset_not_found_message img, .record_not_found img {
    max-width: 130px;
}

.insights-row {
    margin-bottom: 30px;
}

.insights-row .grid .box-bg {
    height: 413px;
    background: #F1F2F2;
    border-radius: 20px;
    padding: 50px;
    display: block;
    text-decoration: none;
}

.insights-row .grid .box-img {
    height: 352px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: block;
}

.insights-row .grid .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insights-row .grid .box-img .overlay-bg {
    position: absolute;
    background: linear-gradient(190deg, rgba(0, 0, 0, 100%), rgba(00, 00, 00, 47%), rgba(00, 00, 00, 0%));
    top: 0;
    height: 100%;
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.insights-row .grid .box-img .overlay-bg h5 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
}

.insights-row .grid .box-img .overlay-bg .read-art {
    color: #fff;
    text-decoration: none;
}

.insights-row .grid .box-bg .img-bg {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url(../images/news-letter.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 150px;
}

.insights-row .grid .box-bg .img-bg h5 {
    font-size: 32px;
    font-weight: 600;
}

.insights-row .grid .box-bg .img-bg .read-art {
    text-decoration: none;
}

.insights-row .grid .box-bg .img-bg .read-art i {
    margin-left: 10px;
}

.insights-row .grid .box-img .overlay-bg .read-art i {
    margin-left: 10px;
}

@media(max-width: 768px) {
    .insights-top h3 {
        font-size: 22px;
    }

    .insights-top h2 {
        font-size: 18px;
    }

    .insights-top {
        padding: 20px 0;
    }

    .insights-tabs ul {
        display: flex;
        overflow: auto;
        margin-bottom: 15px;
    }

    .insights-tabs ul li {
        flex: 1;
        white-space: nowrap;
    }

    .insights-tabs ul li a {
        font-size: 14px;
        padding: 5px 8px;
        margin-bottom: 0;
        border-left: 0;
        border-bottom: 4px solid transparent;
        text-align: center;
    }

    .insights-tabs ul li.active a {
        border-left: 0;
        border-bottom: 4px solid var(--mainColor);
    }

    .insights-box {
        margin-bottom: 20px;
    }
    .insights-box .img {
    height: auto;
}

    .overlay-bg-video .icon {
        width: 50px;
        height: 50px;
    }

    .overlay-bg-video .content {
        width: calc(100% - 50px);
    }

    .overlay-bg-video {
        padding: 20px;
    }

    .overlay-bg-video .content h4 {
        font-size: 16px;
    }

    .overlay-bg-video .content h5 {
        font-size: 10px;
    }

    .overlay-bg-video .content .description-para {
        font-size: 10px;
    }

    .portfolio-sec {
        padding: 20px;
        margin: 30px 0 50px;
    }

    .portfolio-sec h3 {
        font-size: 20px;
    }

    .portfolio-sec p {
        font-size: 14px;
    }

    .portfolio-sec::after {
        width: 100px;
        height: 100px;
        top: auto;
        bottom: 0px;
    }

    .asset_not_found_message, .record_not_found {
        font-size: 30px;
        padding: 30px 20px;
    }

    .asset_not_found_message img, .record_not_found img {
        max-width: 90px;
    }

    .insights-row .grid {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }

    .insights-row .grid .box-bg {
        padding: 20px;
        height: 250px;
    }

    .insights-row .grid .box-bg .img-bg h5 {
        font-size: 20px;
    }

    .insights-row .grid .box-bg .img-bg {
        background-size: 100px;
    }

    .insights-row .grid .box-img .overlay-bg {
        padding: 20px;
    }

    .insights-row .grid .box-img {
        height: 250px;
    }

    .insights-row .grid .box-img .overlay-bg h5 {
        font-size: 20px;
    }

    .fixed-tabsScroll {
        position: fixed;
        top: 52px;
        width: 100%;
        left: 0;
        right: 0;
        z-index: 99;
        background: #fff;
        padding: 0px 0;
        border-bottom: 1px solid #cecece;
        transition: .3s;
    }

    .fixed-tabsScroll .insights-tabs ul {
        margin-bottom: 0;
        padding: 5px 0 0;
    }
}

.faqs-tab-content h4 {
    font-size: 32px;
    color: #939598;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1;
}

.faqs-tab-content {
}

.faqs-tab-content .panel-title a {
    font-size: 25px;
    padding: 30px 0;
    outline: 0 !important;
    box-shadow: none;
    font-weight: 600;
    line-height: 1;
    display: flex;
    position: relative;
    padding-right: 25px;
}

.faqs-tab-content .panel-heading {
    background: transparent;
    padding: 0;
}

.faqs-tab-content .panel {
    background: transparent;
    border-radius: 0;
}

.faqs-tab-content .panel-body {
    padding: 0;
    padding-bottom: 30px;
    border: 0 !important;
}

.faqs-tab-content .panel-body p {
    color: #58595B;
    margin-bottom: 1rem;
    font-size: 18px;
    line-height: 1.4;
}

.faqs-tab-content .panel-title a:after {
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    content: "\f286";
    position: absolute;
    right: 0;
}

.faqs-tab-content .panel-title a.collapsed:after {
    content: "\f282";
}

@media(max-width: 768px) {
    .faqs-tab-content {
        padding-top: 0;
/*        height: calc(100vh - 90px);*/
    }

    .faqs-tab-content .panel-body p {
    font-size: 14px;
}

    .faqs-tab-content .panel-title a {
        padding: 15px 18px 15px 0;
        font-size: 18px;
    }

    .faqs-tab-content h4 {
        font-size: 17px;
    }
}

.content-wrapper {
    margin-top: 91px;
    padding-bottom: 50px;
    min-height: 62vh;
}

@media(max-width: 768px) {
    .sec-padding {
        padding: 30px 0;
    }

    .container {
        width: 100%;
    }

    .our-mission {
    }

    .difference-row {
        flex-wrap: nowrap;
        overflow: auto;
    }

    .difference-row .difference-grid {
        flex: 0 0 75%;
        width: 75%;
    }

    .difference-row .difference-grid .difference-box {
        padding: 15px;
        min-height: auto;
    }

    .difference-row .difference-grid .difference-box h3 {
        font-size: 17px;
    }

    .difference-row .difference-grid .difference-box p {
        font-size: 14px;
    }

    .content-wrapper {
        margin-top: 0;
        padding: 53px 0 0;
    }
}

.home-page-refer .container {
}

.home-page-bg {
}

.home-page-refer {
    padding: 50px 0;
    margin-top: 87px;
    overflow: hidden;
    position: relative;
    background: #dc8bff;
    background: linear-gradient(-45deg, #fa86c6, #970d42, #7e1866, var(--mainColor));
    background-size: 400% 400%;
    animation: gradient 4s ease infinite;
}

.home-page-bg:before {
    content: '';
    width: 600px;
    height: 600px;
    background: #ffe0eb;
    position: absolute;
    border-radius: 0 0 0 500px;
    top: 0;
    right: 0;
}

.home-page-refer .top-logo {
    max-width: 220px;
}

.home-page-refer img {
    max-width: 73%;
}

.home-page-refer .banner-txt {
}

.home-page-refer .banner-txt h1 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: bold;
    line-height: 1.2;
}

.home-page-refer .banner-txt h2 {
    font-size: 25px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
    padding: 10px 30px;
    z-index: 9;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.home-page-refer .banner-txt h2:after {
    position: absolute;
    content: '';
    background: #fff;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.home-page-refer .banner-txt h2 span {
    margin: 0 15px;
}

.home-page-refer .banner-txt p {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
}

.home-page-refer .banner-img {
    max-width: 100%;
    text-align: right;
}

.home-page-refer .bootom-btn a img {
    max-width: 160px;
}

.home-page-refer .bootom-btn {
    margin-top: 35px;
}

.home-page-refer .bootom-btn .btn {
    background: #000;
    border-radius: 50px;
    border: 1px solid #000;
    padding: 16px 40px;
    outline: none;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}

.home-page-refer .bootom-btn .btn:hover {
    background: var(--mainColor);
    border-color: var(--mainColor);
    transition: 0.5s;
    box-shadow: 0 0 50px #000000;
}

.home-page-refer .bootom-btn a {
    margin-right: 15px;
}

@media(max-width: 768px) {
    .home-page-bg {
    }

    .home-page-bg:before {
        width: 300px;
        height: 300px;
    }

    .home-page-refer {
        margin-top: 61px;
        padding: 40px 0;
    }

    .home-page-refer .top-logo {
        max-width: 200px;
        margin: 0 auto;
    }

    .home-page-refer .banner-txt {
        padding: 10px 0 0;
        text-align: center;
    }

    .home-page-refer .banner-txt h1 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .home-page-refer .banner-txt h2 {
        font-size: 13px;
        margin-bottom: 10px;
        padding: 10px 20px;
    }

    .home-page-refer .banner-txt h1 span {
        display: block;
        font-size: 17px;
        margin-top: 10px;
        font-weight: 600;
    }

    .home-page-refer .banner-txt h2 span {
        margin: 0 5px;
    }

    .home-page-refer .banner-txt p {
        font-size: 16px;
    }

    .home-page-refer .bootom-btn a img {
        max-width: 110px;
    }

    .home-page-refer .bootom-btn a {
        margin-right: 6px;
    }

    .home-page-refer .bootom-btn {
        margin-top: 20px;
    }

    .home-page-refer .banner-img {
        margin: 0px auto 0;
        max-width: 65%;
        text-align: center;
    }

    .home-page-refer img {
        max-width: 100%;
    }
}

.manager-div {
    max-width: 500px;
}

.manager-div h3 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
}

.manager-div p a {
    color: #767676;
    font-size: 19px;
}

.manager-div p a i {
    margin-right: 8px;
}

.my-referral-page {
    display: flex;
    margin-top: 25px;
}

.my-referral-page .tabs-left {
    width: 25%;
    flex: 0 0 25%;
}

.my-referral-page .right-tab-content {
    flex: 0 0 75%;
    width: 75%;
    padding-left: 25px;
}

.my-referral-page .tabs-left ul {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 35px;
}

.my-referral-page .tabs-left ul li {
}

.my-referral-page .tabs-left ul li a {
    padding: 17px 15px;
    display: flex;
    font-size: 18px;
    border-bottom: 1px solid #cecece;
    align-items: center;
    color: #898989;
    position: relative;
}

.my-referral-page .tabs-left ul li a i {
    font-size: 38px;
    margin-right: 15px;
}

.my-referral-page .tabs-left ul li:last-child a {
    border-bottom: 0;
}

.my-referral-page .tabs-left ul li.active a {
    background: var(--mainColor);
    color: #fff;
}

.my-referral-page .top-heading .left-txt {
    font-size: 22px;
    font-weight: 600;
}

.my-referral-page .top-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ededed;
    padding-bottom: 15px;
}

.my-referral-page .top-heading .right-btn .sec-btn {
    background: #000;
    border-color: #000;
}

.my-referral-page .tabs-left ul li.active a:after {
    content: '';
    background: var(--mainColor);
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    position: absolute;
    right: -10px;
}

.my-referral-page .tabs-left ul li.active:first-child a {
    border-radius: 10px 10px 0 0;
}

.my-referral-page .tabs-left ul li.active:last-child a {
    border-radius: 0 0 10px 10px;
}

.my-referral-page .input-group-addon {
    background: transparent;
    font-size: 20px;
    border: 0;
    border-bottom: 2px solid #cecece;
    border-radius: 0;
    padding: 10px 0;
    vertical-align: top;
}

.my-referral-page .bottm-act-btn {
    margin-top: 15px;
}

.my-referral-page .form-control {
    border: 0;
    border-bottom: 2px solid #cecece;
    border-radius: 0;
    height: 45px;
}

.my-referral-page .form-control:focus {
    box-shadow: none;
}

.my-referral-page .input-group textarea.form-control {
    height: 100px;
    resize: none;
}

@media(max-width: 768px) {
    .leads-content .heading_section h1 {
        text-align: center;
    }

    .my-referral-page {
        flex-wrap: wrap;
        margin-top: 5px;
    }

    .my-referral-page .tabs-left {
        width: 100%;
        flex: 0 0 100%;
    }

    .my-referral-page .right-tab-content {
        width: 100%;
        flex: 0 0 100%;
        padding-left: 0;
    }

    .my-referral-page .tabs-left ul {
        display: flex;
        margin-bottom: 15px;
    }

    .my-referral-page .tabs-left ul li {
        flex: 1;
    }

    .my-referral-page .tabs-left ul li a {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 15px;
        padding: 10px 12px;
        border: 0;
    }

    .my-referral-page .tabs-left ul li a i {
        font-size: 22px;
        margin-right: 10px;
    }

    .my-referral-page .tabs-left ul li.active:first-child a {
        border-radius: 10px;
    }

    .my-referral-page .tabs-left ul li.active:last-child a {
        border-radius: 10px;
    }

    .my-referral-page .tabs-left ul li.active a:after {
        right: 0;
        left: 0;
        top: auto;
        bottom: -7px;
        margin: 0 auto;
        width: 15px;
        height: 15px;
    }
    .my-referral-page .tabs-left ul li.active a:after {
    display: none;
}
}

.upload-doc-row {
    display: flex;
    margin: 0 -10px;
    flex-wrap: wrap ;
}

.upload-doc-row .grid {
    flex: 0 0 33.33%;
    width: 33.33%;
    padding: 0 10px;
}

.xlr8-kyc .upload-content {
    border: 1px dashed #aeaeae;
    border-radius: 10px;
    padding: 10px 40px 10px 15px;
    display: flex;
    position: relative;
    align-items: center;
    color: #787878;
}

.xlr8-kyc .upload-content input[type=file] {
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    cursor: pointer;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    z-index: 99;
}

.xlr8-kyc .upload-content i {
    font-size: 25px;
    margin-right: 10px;
}

.xlr8-kyc .upload-content .upload-done {
    position: absolute;
    right: 10px;
    z-index: 9;
    background: #25bc25;
    width: 25px;
    height: 25px;
    color: #fff;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}

.xlr8-kyc .uploaded-image {
    width: 264px;
    height: 149px;
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #cecece;
    position: relative;
}

.xlr8-kyc .uploaded-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.xlr8-kyc .remove-doc {
    position: absolute;
    font-size: 20px;
    top: 5px;
    right: 5px;
    cursor: pointer;
    background: rgba(00,00,00,0.5);
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    z-index: 9;
}

.add-Referrals-mobile {
    position: fixed;
    bottom: 58px;
    background: #000;
    left: 0;
    right: 0;
    padding: 10px 5px;
    display: none;
    justify-content: space-evenly;
    z-index: 9;
}

.add-Referrals-mobile a {
    padding: 0 7px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    border-right: 1px solid #6a6a6a;
    flex: auto;
}
.add-Referrals-mobile a:last-child {
    border-right: 0;
}

.add-Referrals-mobile a i {
    margin-right: 5px;
}

@media(max-width: 768px) {
    .upload-doc-row .grid {
        width: 100%;
        flex: 0 0 100%;
    }

    .upload-doc-row .grid .profile-box {
        margin-bottom: 15px;
        margin-top: 0;
    }

    .xlr8-kyc .uploaded-image {
        width: 100%;
    }

    .add-Referrals-mobile {
        display: flex;
        justify-content: center;
    }
}

.referral-earning-box .earning {
    flex: 1;
    padding: 30px;
    flex: 0 0 100%;
    width: 100%;
}

.referral-earning-box .earning .icons {
    background: #fedae6;
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--mainColor);
}

.referral-earning-box .earning .txt {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.referral-earning-box .earning .sub-txt {
    margin-bottom: 17px;
    color: #979595;
}

.referral-earning-box .earning .total {
    font-size: 35px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.referral-earning-box {
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px #D6D4D4;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
}

.referral-earning-box .earning-box {
    border-bottom: 1px solid #cecece;
}

.referral-earning-box .earning p {
    text-transform: uppercase;
}

.referral-earning-box .earning.referral-box .icons {
    background: #ffd2bb;
    color: #e6580e;
}

.rm-page {
    padding-top: 50px;
}

@media(max-width: 768px) {
    .rm-page {
        padding-top: 20px;
    }

    .rm-page .contact-info {
        margin-top: 0;
    }

    .manager-div {
        margin-bottom: 50px;
    }

    .referral-earning-box .earning .txt {
        font-size: 14px;
    }

    .referral-earning-box .earning p {
        font-size: 14px;
    }

    .referral-earning-box .earning .total {
        font-size: 20px;
    }

    .referral-earning-box .earning {
        padding: 0 20px;
        flex: 0 0 50%;
        width: 50%;
    }

    .referral-earning-box .earning-box {
        border-bottom: 0;
        border-right: 1px solid #f2f2f2;
    }

    .referral-earning-box {
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 20px 0;
    }

    .referral-earning-box .earning .sub-txt {
        margin-bottom: 10px;
    }
}

.my-income .referral-earning-box {
    margin-top: 0;
}

.my-income .top-heading {
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

.my-income .reference-box .name {
    font-size: 18px;
}

.my-income .reference-box {
    min-height: 168px;
    max-height: 168px;
}

@media(max-width: 768px) {
    .my-income .reference-box {
        min-height: inherit;
        max-height: max-content;
    }

    .p-l-70 {
        padding-left: 15px;
    }

    .copy_txt {
        padding-top: 30px;
        margin-top: 30px;
    }

    footer.site-footer {
        padding: 30px 0;
    }

    .footer-heading h2 {
        font-size: 30px;
    }

    .footer-quick-link {
        display: block;
    }

    .quick-link {
        padding: 10px 0 0;
    }
}

.rowmp0 {
    margin: 0 !important;
}

.rowmp0 .col-xs-4, .rowmp0 .col-xs-8, .rowmp0 .col-xs-5, .rowmp0 .col-xs-7 {
    padding: 0 !important;
}

.referral-earning-box.referral-earning-customer {
    margin-bottom: 15px;
}

.referral-earning-box.referral-earning-customer .earning {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
}

.referral-earning-box.referral-earning-customer .earning-box {
    border-bottom: 0;
    border-right: 1px solid #e9e9e9;
}

.referral-earning-box.referral-earning-customer .earning .icons {
    border-radius: 15px 15px 0 15px;
    background: #eeeeee;
    color: var(--mainColor);
}

.referral-earning-box.referral-earning-customer .earning .txt {
    font-size: 16px;
    text-transform: capitalize;
}

.referral-earning-box.referral-earning-customer .earning .sub-txt {
    font-size: 15px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.referral-earning-box.referral-earning-customer .earning .total {
    font-size: 15px;
    background: #454545;
    display: inline-block;
    color: #fff;
    padding: 4px 15px;
    border-radius: 0 50px 50px 50px;
}

.income-box {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #cecece;
    height: 100%;
    overflow: hidden;
}

.income-box.box-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.income-box .top-content {
    display: flex;
    padding: 15px 15px;
    position: relative;
    flex-wrap: wrap;
    height: calc(100% - 85px);
}

.income-box .top-content .left-img {
    width: 70px;
    height: 70px;
    box-shadow: 0px 2px 7px #979797;
    border-radius: 100%;
    background: #fff;
    padding: 3px;
    float: left;
    margin: 0 auto;
}

.income-box .top-content .left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.income-box .top-content .right-content {
    width: 100%;
    float: left;
}

.income-box .top-content .content-row {
    display: flex;
    margin-bottom: 3px;
    font-size: 15px;
}

.income-box .top-content .content-row .label-txt {
    flex: 0 0 115px;
    width: 115px;
    font-weight: 600;
}

.income-box .top-content .content-row .value {
    flex: 0 0 calc(100% - 115px);
    width: calc(100% - 115px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.income-box .top-content .content-row .value a {
    color: #000;
}

.income-box .top-content .content-row .value a.webshare {
    color: var(--mainColor);
}

.income-box .bottom-content {
    padding: 10px;
    text-align: center;
    font-size: 15px;
    background: #fff3f7;
}

.income-box .bottom-content .inspec-type span {
    font-weight: 600;
}

.income-box .bottom-content .inspec-type span.not-verify {
    color: #f51212;
}

.income-box .bottom-content .inspec-type span.verify {
    color: #1abd00;
}

.income-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.income-row .income-grid {
    flex: 0 0 33.33%;
    width: 33.33%;
    padding: 0 10px 20px;
}

.income-box h3 {
    font-size: 20px;
    color: #000;
    padding: 12px 10px;
    line-height: 1;
    font-weight: 600;
    background: #f8faf9;
    position: relative;
    
}

.income-box h3.text-nowrap{

    padding-right: 53px;
     
}

.text-nowrap {
   white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.income-box .edit-btn {
    position: absolute;
    right: 10px;
    font-size: 14px;
    top: 14px;
    color: #5e5e5e;
}

.no-data {
    flex: 0 0 100% !important;
    width: 100% !important;
    text-align: center;
}

.no-data img {
    max-width: 200px;
    display: block;
    margin: 0 auto 15px;
}

.no-data .inner-div {
    background: #fff;
    padding: 45px;
    font-size: 25px;
    border-radius: 10px;
    color: #7b7979;
}

.my-referral-page .income-box {
}

.editModalCustomer .modal-dialog {
    top: 50%;
    transform: translate(0, -50%) !important;
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
}

.editModalCustomer .bottm-act-btn .close-btn {
    background: gray;
    border-color: gray;
}

.editModalCustomer .bottm-act-btn .btn {
    margin: 0 5px;
}

.transparent-header {
    background: #fff;
}

.transparent-header .home-header {
    background: transparent;
}

.transparent-header .content-wrapper {
    margin-top: 0;
    padding: 0;
}

.transparent-header .home-header .inner-content .menu li a {
    color: #fff;
}

.home-header .inner-content .logo img.white-logo, .axon-header .container .left-content .logo a img.white-logo {
    display: none;
}

.transparent-header .home-header .inner-content .logo img.black-logo, .transparent-header .axon-header .container .left-content .logo a img.black-logo {
    display: none;
}

.transparent-header .home-header .inner-content .logo img.white-logo, .transparent-header .axon-header .container .left-content .logo a img.white-logo {
    display: block;
}

.transparent-header .dash_header {
    background: transparent;
    box-shadow: none;
}

.transparent-header .dash_header .icon_right a {
    color: #fff;
}

.number-icon {
    background: var(--mainColor);
    width: 70px;
    height: 70px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff;
    line-height: 1;
    font-weight: bold;
}

.step-to-earn-sec h2 {
    font-size: 32px;
    font-weight: 600;
}

.step-to-earn-sec .difference-row .difference-grid {
    flex: 0 0 50%;
    width: 50%;
}

.step-to-earn-sec .difference-row .difference-grid .difference-box p {
    font-size: 18px;
    color: #333;
}

.step-to-earn-sec .bottom-txt {
    font-size: 20px;
    margin-top: 25px;
}

.step-to-earn-sec .difference-row .difference-grid .difference-box {
    min-height: auto;
    background: #fff;
    position: relative;
    border-radius: 0;
}
.height-fix.step-to-earn-sec .difference-row .difference-grid .difference-box {
    height: 100%;
}

.step-to-earn-sec .difference-row .difference-grid .difference-box .common-icon-box .number-icon {
    background: transparent;
}

.step-to-earn-sec .difference-row .difference-grid .difference-box:before {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(281deg,var(--mainColor),#a136aa 71%);
    height: 5px;
}

.step-to-earn-sec .difference-row .difference-grid .difference-box h3 {
    font-size: 25px;
    color: #000;
}

.step-to-earn-sec .difference-row .difference-grid .difference-box .common-icon-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step-to-earn-sec .difference-row .difference-grid .difference-box .common-icon-box h5 {
    color: var(--mainColor);
    font-size: 30px;
    font-weight: 600;
    padding-left: 20px;
}

@media(max-width: 768px) {
    .profile-box .top-head .txt {
        font-size: 17px;
        margin-left: 5px;
    }

    .editModalCustomer .modal-dialog {
        top: 0;
        transform: none !important;
    }

    .profile-box .top-head .icon {
        width: 45px;
    }

    .income-row .income-grid {
        width: 100%;
        flex: 0 0 100%;
    }

    .transparent-header .dash_header {
        background: #fff;
    }

    .number-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .step-to-earn-sec .difference-row {
    overflow: visible;
    flex-wrap: wrap;
}

    .step-to-earn-sec .difference-row .difference-grid {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 10px 10px;
    }

    .step-to-earn-sec .difference-row .difference-grid .difference-box p {
        font-size: 14px;
    }

    .step-to-earn-sec .difference-row .difference-grid .difference-box {
        box-shadow: none;
        height: 100%;
    }

    .step-to-earn-sec .difference-row .difference-grid .difference-box h3 {
        font-size: 17px;
    }

    .step-to-earn-sec h2 {
        font-size: 25px;
    }

    .step-to-earn-sec .bottom-txt {
        font-size: 17px;
        margin-top: 10px;
    }

    .step-to-earn-sec .difference-row .difference-grid .difference-box .common-icon-box h5 {
        font-size: 20px;
        padding-left: 10px;
    }

    .step-to-earn-sec .top-main-heading {
        display: block;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1366px) {
    .home-page-refer .banner-txt {
        padding: 50px;
    }

    .home-page-refer .banner-txt h1 {
        font-size: 37px;
    }

    .home-page-refer .banner-txt h2 {
        font-size: 16px;
    }

    .home-page-bg:before {
        width: 500px;
        height: 500px;
    }

    .container {
        width: 98%;
    }

}

.tab_about .nav-tabs li.active {
    border-radius: 30px
}

.tab_about .nav-tabs li {
    float: left;
    display: inline-block;
    width: 50%;
    height: 42px;
    margin: 0;
}

.tab_about .nav-tabs {
    border: 1px solid #ddd;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 30px
}

.tab_about .nav-tabs>li>a {
    text-transform: uppercase;
    background: 0 0;
    line-height: 20px;
    border-bottom: none;
    cursor: pointer;
    height: 41px;
    border: 0;
    color: var(--mainColor);
}

.tab_about .nav-tabs>li.active>a,.tab_about .nav-tabs>li.active>a:focus,.tab_about .nav-tabs>li.active>a:hover {
    background: var(--mainColor);
    color: #fff;
    border-radius: 30px;
    cursor: pointer
}

img.globalmap {
    width: 100%;
}

img.indiamap {
    width: 100%;
}

.inner-tab .nav-tabs {
    width: 92%!important;
    border: none;
    max-width: 100%;
}

#ddDistr .nav-item li {
    float: none;
    display: inline-block;
    width: 100%;
    margin: 0 auto
}

#globaltabslider .nav-item li {
    width: 90%
}

.inner-tab .nav-tabs li {
    width: 90%;
    float: none;
    display: block;
    margin: 0 auto;
}

.inner-tab .nav-tabs li a {
    float: none;
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 30px;
    margin-bottom: 0;
    padding: 10px;
    color: var(--mainColor);
}

.inner-tab .nav-tabs li.active a {
    background: #000000;
    border: none;
    color: #fff;
}

.col-lg-12.text-center.inner-tab {
    margin: 20px 0
}

.inner-tab .nav-tabs>li.active>a,.inner-tab .nav-tabs>li.active>a:focus,.inner-tab .nav-tabs>li.active>a:hover {
    background: #000000;
    border: none
}

.inner-tab .nav-btn.prev-slide.treandingarrow {
    bottom: unset
}

.inner-tab .treandingarrow img {
    top: -18px;
    padding: 8px;
    width: 32px;
    height: 32px
}

.inner-tab .nav-btn.next-slide.treandingarrowleft {
    bottom: unset
}

.inner-tab .treandingarrowleft img {
    top: -18px;
    padding: 8px;
    width: 32px;
    height: 32px
}

.inner-tab .nav-btn.prev-slide.treandingarrow {
    margin-top: -25px;
    -webkit-box-shadow: -1px 0 30px 0 rgba(0,0,0,.03);
    -moz-box-shadow: -1px 0 30px 0 rgba(0,0,0,.03);
    box-shadow: -1px 0 30px 0 rgba(0,0,0,.05)
}

.inner-tab .nav-btn.next-slide.treandingarrowleft {
    margin-top: -28px;
    -webkit-box-shadow: -1px 0 30px 0 rgba(0,0,0,.03);
    -moz-box-shadow: -1px 0 30px 0 rgba(0,0,0,.03);
    box-shadow: -1px 0 30px 0 rgba(0,0,0,.05)
}

.wrapper-map_about h1 {
    font: 14px/20px Nunito Sans,sans-serif;
    margin-bottom: 10px;
    margin-top: 0;
    color: #fff;
}

.wrapper-map_about p {
    font: 14px/20px Nunito Sans,sans-serif;
    margin: 0;
}

.inner-tab .projctbox {
    padding-top: 20px;
    padding-bottom: 35px;
    contain: layout;
}

.wrapper-map_about {
    width: 100%;
    position: relative;
}

.tab_about.about-why {
}

.map_tool_container {
    width: 500px;
    margin: 0 auto;
    position: relative
}

.tooltip.tooltip {
    bottom: 343px
}

.wrapper-map_about .tooltip {
    background: #000000;
    bottom: 47%;
    color: #fff;
    display: block;
    left: 44px;
    margin-bottom: 15px;
    opacity: 0;
    padding: 15px;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    -webkit-box-shadow: 2px 2px 6px rgba(0,0,0,.28);
    -moz-box-shadow: 2px 2px 6px rgba(0,0,0,.28);
    -ms-box-shadow: 2px 2px 6px rgba(0,0,0,.28);
    -o-box-shadow: 2px 2px 6px rgba(0,0,0,.28);
    box-shadow: 2px 2px 6px rgba(0,0,0,.28);
    z-index: 1;
}

.wrapper-map_about .tooltip.tooltip_1 {
    bottom: 48.5%;
    left: 113px;
}

.wrapper-map_about .tooltip.tooltip_2 {
    bottom: -4.5%;
    left: 92px;
}

.wrapper-map_about .tooltip.tooltip_3 {
    bottom: 55%;
    left: 60px;
}

.wrapper-map_about .tooltip.tooltip_4 {
    bottom: 8%;
    left: 110px;
}

.wrapper-map_about .tooltip.tooltip_5 {
    bottom: 38%;
    left: 361px
}

.wrapper-map_about .tooltip.tooltip_6 {
    bottom: -0.3%;
    left: 150px;
}

.wrapper-map_about .tooltip.tooltip_7 {
    bottom: 29%;
    left: -14px;
}

.wrapper-map_about .tooltip.tooltip_8 {
    bottom: 16%;
    left: 10px;
}

.wrapper-map_about .tooltip.tooltip_9 {
    bottom: 13.8%;
    left: 19px;
}

.wrapper-map_about .tooltip.tooltip_9_1 {
    bottom: 13.8%;
    left: -10px;
}

.wrapper-map_about .tooltip.tooltip_10 {
    bottom: 22%;
    left: 255px
}

.wrapper-map_about .tooltip.tooltip_11 {
    bottom: 12.8%;
    left: -36px;
}

.wrapper-map_about .tooltip.tooltip_12 {
    bottom: 27.8%;
    left: 295px;
}

.wrapper-map_about .tooltip.tooltip_13 {
    bottom: 37.5%;
    left: 236px;
}

.wrapper-map_about .tooltip.tooltip_14 {
    bottom: 45%;
    left: 121px;
}

.wrapper-map_about .tooltip.tooltip_15 {
    bottom: 6.5%;
    left: -24px;
}

.wrapper-map_about .tooltip.tooltipworld_1 {
    bottom: 28%;
    left: 598px;
}

.wrapper-map_about .tooltip.tooltipworld_2 {
    bottom: 32.8%;
    left: 556px;
}

.wrapper-map_about .tooltip.tooltipworld_3 {
    bottom: 33.7%;
    left: 581px;
}

.wrapper-map_about .tooltip.tooltipworld_4 {
    bottom: 31%;
    left: 531px;
}

.wrapper-map_about .tooltip.tooltipworld_5 {
    bottom: 30%;
    left: 517px;
}

.wrapper-map_about .tooltip.tooltipworld_6 {
    bottom: 29%;
    left: 572px;
}

.wrapper-map_about .tooltip.tooltipworld_7 {
    bottom: 31%;
    left: 540px;
}

.wrapper-map_about .tooltip.tooltipworld_8 {
    bottom: 19%;
    left: 723px;
}

.wrapper-map_about .tooltip.tooltipworld_9 {
    bottom: 34%;
    left: 177px;
}

.wrapper-map_about .tooltip:before {
    bottom: -20px;
    content: " ";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%
}

.wrapper-map_about .tooltip:after {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-bottom-color: #000000;
    border-width: 13px;
    margin-left: -30px
}

.wrapper-map_about .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px)
}

.wrapper-map_about .tooltip {
    bottom: auto !important;
    top: 0;
    right: 0;
    width: 290px;
    left: auto !important;
}

.wrapper-map_about .tooltip:after{
    display:none;
}


.lte8 .wrapper-map_about .tooltip {
    display: none
}

.lte8 .wrapper-map_about:hover .tooltip {
    display: block
}

.default.container.default_container {
    width: 100%;
    max-width: 1230px;
}

.inner-tab .projctbox .round-arrow.owl-carousel .owl-nav button.owl-prev {
    left: -50px;
}

.inner-tab .projctbox .round-arrow.owl-carousel .owl-nav button.owl-next {
    right: -50px;
}

.team-box {
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
}

.team-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.align-center {
    display: flex;
    align-items: center;
}

.video-sec-about {
}

.about-video {
    height: 590px;
}

.about-video .video-img, .about-video .video-div {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.about-video iframe, .about-video .video-img img, .about-video .video-div video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    box-shadow: 0 0 35px 0 rgba(0,0,0,0.04);
    overflow: hidden;
}

.about-video .play-btn {
    position: absolute;
/*    background: rgba(00,00,00,0.5);*/
    width: 100%;
    height: 100%;
    z-index: 9;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.about-video .play-btn i {
    font-size: 69px;
    color: #fff;
    position: relative;
}

.about-video .play-btn i:after {
    content: '';
    background: #000;
    width: 20px;
    height: 29px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 19px;
    bottom: 0;
    z-index: -1;
}

.thanksModal .modal-dialog {
    margin: 0 auto;
    transform: translate(0,-50%) !important;
    top: 50%;
    width: 100%;
    max-width: 520px;
}

.thanks-message {
    padding: 40px;
    text-align: center;
}

.thanks-message .close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 25px;
}

.thanks-message h1 {
    font-size: 18px;
    line-height: 1.3;
    margin: 15px 0;
}

.thanks-message .icon {
    font-size: 75px;
    color: #05bb05;
    line-height: 1;
}

.thanksModal {
    z-index: 999999 !important;
}

.steps-earn-tree {
    text-align: center;
}

.steps-earn-tree .title {
    font-size: 48px;
    font-weight: bold;
    padding: 35px 50px;
    display: inline-block;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #ee7752, var(--mainColor));
    background-size: 400% 400%;
    animation: gradient 3s ease infinite;
    color: #fff;
    border-radius: 50px;
}

.steps-earn-tree .child-div {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    position: relative;
    margin: 0 -15px;
}

.steps-earn-tree .child-div .text-content {
    flex: 0 0 50%;
    width: 50%;
    padding: 50px 15px 0;
    position: relative;
}

.steps-earn-tree .child-div .text-content .color-box {
    background: #000;
    padding: 50px;
    border-radius: 20px;
}

.steps-earn-tree .child-div .text-content .color-box {
    text-align: left;
    height: 100%;
}

.steps-earn-tree .child-div .text-content .color-box h3 {
    color: #fff;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
    font-size: 40px;
}

.steps-earn-tree .child-div .text-content .color-box p {
    color: #fff;
    font-size: 21px;
    line-height: 1.3;
}

.steps-earn-tree .child-div:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 5px solid var(--mainColor);
    width: 0;
    height: 55px;
}

.steps-earn-tree .child-div .text-content:before, .steps-earn-tree .child-div .text-content:after {
    content: '';
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 5px solid var(--mainColor);
    width: 50%;
    height: 50px;
}

.steps-earn-tree .child-div .text-content:after {
    right: auto;
    left: 50%;
    border-left: 5px solid var(--mainColor);
}

.steps-earn-tree .child-div .text-content:first-child::after {
    border-radius: 5px 0 0 0;
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
}

.steps-earn-tree .child-div .text-content:first-child::before, .steps-earn-tree .child-div .text-content:last-child::after {
    border: 0 none;
}

.steps-earn-tree .child-div .text-content:last-child::before {
    border-right: 5px solid var(--mainColor);
    border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
}

.steps-earn-tree .child-div .text-content .color-box i {
    font-size: 70px;
    color: var(--mainColor);
    margin-bottom: 15px;
    display: inline-block;
}

.steps-earn-tree-small {
    margin: 20px 0;
}

.steps-earn-tree-small .title {
    font-size: 20px;
    padding: 13px 25px;
}

.steps-earn-tree-small .child-div {
    margin: 0 2px;
}

.steps-earn-tree-small .child-div .text-content {
    padding: 50px 2px 0;
}

.steps-earn-tree-small .child-div .text-content .color-box {
    padding: 15px;
}

.steps-earn-tree-small .child-div .text-content .color-box i {
    font-size: 30px;
}

.steps-earn-tree-small .child-div .text-content .color-box h3 {
    font-size: 15px;
    margin-bottom: 10px;
}

.steps-earn-tree-small .child-div .text-content .color-box p {
    font-size: 12px;
}

.steps-earn-tree-small .child-div:before {
    height: 52px;
    border-left: 3px solid var(--mainColor);
}

.steps-earn-tree-small .child-div .text-content:before, .steps-earn-tree-small .child-div .text-content:after {
    border-top: 3px solid var(--mainColor);
}

.steps-earn-tree-small .child-div .text-content:after {
    border-left: 3px solid var(--mainColor);
}

.steps-earn-tree-small .child-div .text-content:last-child::before {
    border-right: 3px solid var(--mainColor);
}

@media(max-width: 768px) {
    .wrapper-map_about {
    }

    .center-align-modal .modal-dialog {
        max-width: 95%;
    }

    .inner-tab .nav-tabs {
        display: none;
    }

    .wrapper-map_about .tooltip {
        display: none;
    }

    .tab_about .nav-tabs {
        max-width: 100%;
    }

    .tab_about .nav-tabs li {
        width: 50%;
    }

    .inner-tab .projctbox {
        display: none;
    }

    .aboutus-sec .how-its-work {
        padding-bottom: 0 !important;
    }

    .team-box {
        height: 135px;
        border-radius: 10px;
    }

    .align-center {
        display: block;
    }

    .video-sec-about {
    }

    .about-video {
        height: 220px;
    }

    .about-video .play-btn i {
        font-size: 55px;
    }

    .about-video iframe, .about-video .video-img img, .about-video .video-div video, .about-video .video-img, .about-video .video-div {
        border-radius: 25px;
        padding: 0;
    }

    .delivered-project-box {
        min-height: auto;
    }

    .steps-earn-tree .title {
        font-size: 25px;
        padding: 17px 28px;
    }

    .steps-earn-tree .child-div {
        margin: 0 -1px;
    }

    .steps-earn-tree .child-div .text-content {
        padding-right: 1px;
        padding-left: 1px;
    }

    .steps-earn-tree .child-div .text-content .color-box {
        padding: 15px;
    }

    .steps-earn-tree .child-div .text-content .color-box i {
        font-size: 30px;
    }

    .steps-earn-tree .child-div .text-content .color-box h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .steps-earn-tree .child-div .text-content .color-box p {
        font-size: 12px;
    }

    body {
        padding-bottom: 60px;
    }
}

.step-to-earn-common .top-main-heading {
    margin-bottom: 5px;
}

.step-to-earn-common .top-main-heading h2 {
    margin: 0 !important;
    font-size: 28px !important;
    font-weight: bold;
}

.step-to-earn-common .difference-row {
    display: block;
}

.step-to-earn-common .difference-row .difference-grid {
    width: 100%;
    padding: 10px;
}

.step-to-earn-common .difference-row .difference-grid .difference-box .common-icon-box .number-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.step-to-earn-common .difference-row .difference-grid .difference-box .common-icon-box h5 {
    padding-left: 10px;
    font-size: 25px;
}

.step-to-earn-common .difference-row .difference-grid .difference-box h3 {
    font-size: 18px;
}

.step-to-earn-common .difference-row .difference-grid .difference-box p {
    font-size: 13px;
}

.dashboard-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-heading h1 {
    font-size: 25px;
    font-weight: 600;
    background: var(--mainColor);
    color: #fff;
    padding: 5px 15px;
    border-radius: 10px 10px 0 10px;
}

.dashboard-heading a {
    background: var(--mainColor);
    color: #fff;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 13px;
    border: 1px solid var(--mainColor);
    font-weight: 600;
    transition: 0.3s;
}

.dashboard-heading a:hover {
    background-color: #fff;
    border-color: var(--mainColor);
    color: var(--mainColor);
}

.owl-carousel .owl-stage {
    padding: 0 !important;
}

.tabs-map-content {
    display: flex;
    flex-wrap: wrap;
    background: #e6e6e6;
    padding: 50px;
    border-radius: 10px;
}

.tabs-map-content .tab-content {
    flex: 0 0 75%;
    width: 75%;
    padding-right: 150px;
}

.map-feacture {
    flex: 0 0 25%;
    width: 25%;
}

.map-feacture ul {
    text-align: left;
}

.map-feacture ul li {
    display: flex;
    align-items: center;
    margin: 0 0 35px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 5px #cdcdcd;
}

.map-feacture ul li .icon {
    font-size: 26px;
    width: 60px;
    height: 60px;
    background: var(--mainColor);
    color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-feacture ul li .txt {
    font-size: 23px;
    line-height: 1.2;
    width: calc(100% - 60px);
    padding-left: 15px;
    color: #000000;
}

.insights-detail {
    padding: 50px 0;
}

.insights-detail h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
}

.insights-detail-img {
    width: 100%;
}

.insights-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.case-study h3 {
    color: #939598;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.case-study .case-study-detail {
    display: flex;
    justify-content: start;
    padding: 10px 0;
}

.case-study .case-study-detail label {
    color: #999999;
    flex: 0 0 20%;
    width: 20%;
}

.case-study .case-study-detail .value {
    flex: 0 0 80%;
    width: 80%;
    font-size: 15px;
    color: #333333;
}

.case-study .case-study-detail .social-link a {
    color: #333333;
    margin-right: 20px;
    text-decoration: none;
}

.case-study .case-study-detail .social-link a:hover {
    color: var(--mainColor);
}

.insights-detail-content p {
    color: #676767;
    margin-bottom: 30px;
}

.insights-detail-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.insights-detail-content p strong {
}

.insights-detail-content p a {
    color: var(--brownColor);
    font-style: italic;
}

.insights-detail-content ul {
    list-style: disc;
    padding-left: 20px;
}

.insights-detail-content ul li {
    color: #676767;
    margin-bottom: 15px;
}

.insights-detail-content h4 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 30px;
}

.insights-detail-img-sm {
    height: 390px;
    margin-bottom: 50px;
}

.related-articles h3 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 25px;
}

.insights-detail-content p:empty {
    display: none;
}

@media(max-width: 768px) {
    .step-to-earn-common .difference-row .difference-grid .difference-box {
    height: auto;
}
    .insights-detail h2 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .case-study .case-study-detail .value {
        font-size: 14px;
        flex: 0 0 70%;
        width: 70%;
    }

    .case-study .case-study-detail label {
        flex: 0 0 30%;
        width: 30%;
    }

    .case-study h3 {
        margin-bottom: 5px;
        font-size: 20px;
    }

    .case-study {
        margin-bottom: 15px;
    }

    .insights-detail-img {
        margin-bottom: 15px;
    }

    .insights-detail-img img {
        border-radius: 10px;
    }

    .insights-detail {
        padding: 30px 0;
    }

    .insights-detail-content h4 {
        font-size: 17px;
    }

    .insights-detail-img-sm {
        height: 230px;
        margin-bottom: 30px;
    }

    .related-articles h3 {
        font-size: 22px;
    }

    .insights-detail .row {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .column-order1 {
        order: 1;
    }

    .column-order2 {
        order: 2;
    }
}

.rera-sec strong {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #000;
}

.rera-sec p {
    text-align: center;
    color: #767676;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    display: block;
    flex-direction: column;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.group-companies-box {
    height: 70px;
    margin-bottom: 10px;
    border: 1px solid #e4e4e4;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    margin: 0 auto 10px;
    background: #fff;
}

.group-companies-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.group-companies-row {
    display: flex;
    margin: 0 -10px;
    flex-wrap: wrap;
}

.group-companies-row .grid {
    padding: 0 10px;
    flex: 0 0 14.28%;
}

@media(max-width: 768px) {
    .group-companies-row .grid {
        flex: 0 0 40%;
        padding: 0 5px;
    }

    .group-companies-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin: 0 -5px;
    }
}

@media(max-width: 768px) {
    .dashboard-heading h1 {
        font-size: 16px;
        padding: 5px 10px;
    }

    .tabs-map-content {
        display: block;
        padding: 15px 10px 10px;
        margin-top: 15px;
    }

    .tabs-map-content .tab-content {
        padding: 0;
        width: 100%;
    }

    .map-feacture {
        width: 100%;
    }

    .map-feacture ul li {
        margin: 0;
        flex: 0 0 48.50%;
        width: 48.50%;
        display: block;
        text-align: center;
        padding: 10px;
        margin: 2px;
    }

    .map-feacture ul {
        display: flex;
        flex-wrap: wrap;
        margin-top: 15px;
    }

    .map-feacture ul li .icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: 0 auto 10px;
    }

    .map-feacture ul li .txt {
        font-size: 16px;
        padding: 0;
    }

    .row.row-mobile {
        margin: 0 -5px;
    }

    .row.row-mobile .col-xs-6, .row.row-mobile .col-xs-12 {
        padding: 0 5px;
    }


}

@media screen and (min-width: 1000px) and (max-width: 1366px) {
    .step-to-earn-sec .difference-row .difference-grid .difference-box h3 {
        font-size: 14px;
    }

    .step-to-earn-sec .difference-row .difference-grid .difference-box p {
        font-size: 11px;
    }
    .step-to-earn-common .difference-row .difference-grid {
    padding-bottom: 0;
}

    .insights-box .img {
        height: 135px;
    }

    .insights-box .description h3 {
        font-size: 17px;
    }

    .insights-box .description .description-para {
        font-size: 12px;
    }

    .footer-heading h2 {
        font-size: 33px;
    }

    .step-to-earn-sec .difference-row .difference-grid .difference-box {
        padding: 20px;
    }

    .trackrecord-box .content h5 {
        font-size: 14px;
    }

    .team-box {
        height: 240px;
    }

    .leadership-box .img {
        height: 260px;
    }

    .leadership-heading p {
        font-size: 28px;
    }

    .leadership-box .content .name {
        font-size: 25px;
    }

    .leadership-box .content .des {
        font-size: 15px;
    }

    .about-video {
        height: 500px;
    }

    .sec-padding {
        padding: 70px 0;
    }

    .insights-row .grid .box-img {
        height: 310px;
    }
    .referral-earning-box.referral-earning-customer .earning .txt {
    font-size: 14px;
}

.slider-box {
    height: 170px;
}

}

@media only screen and (min-width: 481px) and (max-width: 768px){

   .home-page-refer .banner-txt h1 {
    font-size: 35px;
}
.home-page-refer .banner-txt h1 span {
    font-size: 22px;
}

.home-page-refer .banner-txt h2 {
    font-size: 15px;
}
.hidden-sm {
    display: block!important;
}

.hidden-xs {
    display: none !important;
}
.group-companies-row .grid {
    flex: 0 0 28%;
    width: 28%;
}
.team-box {
    height: 200px;
}
.leadership-row .col-md-3 {
    flex: 0 0 60%;
    width: 60%;
}
}


@media only screen and (min-width: 769px) and (max-width: 1024px){
.newsroom_section .row {
    margin: 0 -5px;
}

.newsroom_section .row .col-md-3 {
    padding: 0 5px;
}
.leadership-box .content .name {
    font-size: 22px;
}

.leadership-box .content .des {
    font-size: 14px;
}
.leadership-heading p {
    font-size: 24px;
}
.tabs-map-content .tab-content {
    padding-right: 30px;
    width: 70%;
    flex: 0 0 70%;
}

.map-feacture {
    flex: 0 0 30%;
    width: 30%;
}

.leadership-box .img {
    height: 220px;
}

.leadership-box .content {
    padding: 15px 0 0;
}

.about-video {
    height: 450px;
}
.team-box {
    height: 180px;
}

.insights-top h2,
.about-why h2,
.our-mission h2,
.leadership-heading h2,
.top-main-heading h2,
.how-txt-sec h2,
.contact-info h2 {
    font-size: 40px !important;
}

.insights-top h3, .faqs-tab-content h4,
.have-questions-sec h2,
.contact-info h3,
.contact-no a {
    font-size: 27px;
}

.faqs-tab-content .panel-title a {
    font-size: 22px;
}
.dash-page-menu .name {
    font-size: 15px;
}
.top-main-heading {
    margin-bottom: 20px !important;
}
.container {
    width: 100%;
}
.project-listing .detail-container p.can-earn {
    font-size: 11px;
}
.income-row .income-grid {
    width: 50%;
    flex: 0 0 50%;
}
.step-to-earn-common .difference-row .difference-grid .difference-box .common-icon-box h5 {
    font-size: 22px;
}
.referral-earning-box.referral-earning-customer .earning {
    padding: 15px;
}
.project-listing-row .grid {
    flex: 0 0 33.33%;
    width: 33.33%;
}
.sec-padding {
    padding: 50px 0;
}
}
