/*
Theme Name: Prime-mlm-software
Theme URI: primemlmsofteare.com
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Our 2019 default theme...
Requires at least: WordPress 4.9.6
Version: 1.5.4
License: GNU General Public License v2 or later
Text Domain: twentynineteen
*/

/*** ====================================================================
  Global Settings
====================================================================
***/

body {
  font-size: 1.0625rem;
  color: #555;
  line-height: 1.8;
  font-weight: 400;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji" !important;
  font-display: swap; 
}
html { scroll-behavior: smooth; }
.bordered-layout .page-wrapper { padding: 0 50px; }
a { text-decoration: none; cursor: pointer; }
a:hover { text-decoration: none !important; }
button, a:hover, a:focus, a:visited { text-decoration: none; outline: none !important; }
h1, h2, h3, h4, h5, h6 { position: relative; font-weight: normal; margin: 0; background: none; line-height: 1.6em; }
textarea { overflow: hidden; }

.auto-container { position: static; max-width: 1200px; padding: 0 15px; margin: 0 auto; }
.medium-container { max-width: 850px; }
.page-wrapper { position: relative; margin: 0 auto; width: 100%; min-width: 300px; }
ul, li { list-style: none; padding: 0; margin: 0; }
img { display: inline-block; width: 100%; }
.theme-btn { display: inline-block; transition: all 0.3s ease; }
p { margin-top: 0; margin-bottom: 1rem; color: #433d3d; font-size: 1.0625rem; line-height: 32px; }
.centered { text-align: center; }
.bg-gray { background-color: #f4f4f4; }

/* Utilities */
.mt-10 { margin-top: 10px; }
.mt-20, .mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mb-10 { margin-bottom: 10px; }
.mt-3, .my-3 { margin-top: 0 !important; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.height100 { height: 50px; }

.first-class-area:before { content: ""; background-image: url(../images/bg3.png); }
.question-bx.phone.heith-mode:hover::before {
  opacity: 1; right: 0; bottom: 0;
  transition: opacity .001s, right .125s linear .001s, bottom .125s linear .126s;
}
.question-bx.phone.heith-mode:before {
  content: ""; position: absolute; top: 0; left: 0; bottom: 100%; right: 100%;
  opacity: 0; border-top: 1px solid #24262b; border-right: 1px solid #24262b;
}
section.first-class-area .new-grid-marketing { min-height: 300px; }
section.prime-mlm-ease .question-bx.new-height.phone { min-height: 332px; }
.question-bx.phone.heith-mode:hover::after {
  transition: opacity .001s linear .251s, left .125s linear .252s, top .125s linear .377s;
  opacity: 1; left: 0; top: 0;
}
.question-bx.phone.heith-mode::after {
  content: ""; position: absolute; bottom: 0; right: 0; top: 100%; left: 100%;
  opacity: 0; border-bottom: 1px solid #af3e37; border-left: 1px solid #af3e37;
}

/*** ====================================================================
  Modern Header Settings (Tailwind Aesthetics -> Pure CSS)
====================================================================
***/

/* Floating Header Container */
header { 
    width: 96%; 
    max-width: 1280px; 
    position: fixed; 
    top: 20px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 999; 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid #fff; 
    border-radius: 50px; 
    box-shadow: 0 10px 30px -10px rgba(49, 46, 129, 0.1); 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
}

header.shrink { 
    top: 10px; 
    background: rgba(255, 255, 255, 0.98); 
    box-shadow: 0 15px 40px -10px rgba(49, 46, 129, 0.15); 
}

.main-menu { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 75px; 
    padding: 0 20px;
    position: relative; /* Crucial for mobile menu icon positioning */
}

header.shrink .main-menu { height: 65px; }

.logo img { width: auto; height: 40px; transition: transform 0.3s ease; }
.logo a:hover img { transform: scale(1.05); }

/* Desktop Navigation */
@media only screen and (min-width: 992px) {
    .menu-icon { display: none !important; }
    
    /* 1. Make nav fill remaining space for proper centering */
    nav { display: block !important; flex: 1; margin: 0; }
    
    /* 2. Center the links inside the ul */
    nav > ul { display: flex; align-items: center; justify-content: center; margin: 0; padding: 0; gap: 5px; width: 100%; }
    
    /* 3. Invisible flex spacer to balance the CTA on the right */
    nav > ul::before { content: ""; margin-right: auto; display: block; }
    
    /* 4. Push CTA and Language flags to the far right */
    nav > ul > li.schedule-free-demo { margin-left: auto; }

    nav li { list-style: none; position: relative; }
    
    nav > ul > li > a { 
        color: #1e1b4b;
        font-size: 16px; 
        font-weight: 700; 
        padding: 10px 15px; 
        transition: color 0.3s ease;
        position: relative;
        white-space: nowrap; /* Prevents menu links from breaking onto two lines */
    }
    nav > ul > li > a:hover { color: #ff2500; text-decoration: none; }
    
    /* Responsive adjustment for smaller laptops */
    @media (max-width: 1200px) {
        nav > ul > li > a { padding: 10px 8px; font-size: 13px; }
        nav > ul { gap: 2px; }
    }
    
    /* Dropdown Arrow Indicator */
    nav .menu-item-has-children > a::after {
        content: "\f107";
        font-family: "FontAwesome";
        margin-left: 6px;
        font-size: 12px;
        transition: transform 0.3s;
        display: inline-block;
    }
    nav .menu-item-has-children:hover > a::after { transform: rotate(180deg); }

    /* Dropdown Base */
    nav .menu-item-has-children > ul { 
        position: absolute; 
        top: 100%; 
        left: 0; 
        background: rgba(255, 255, 255, 0.98); 
        backdrop-filter: blur(16px);
        min-width: 240px; 
        border-radius: 20px; 
        box-shadow: 0 20px 50px -10px rgba(49, 46, 129, 0.15); 
        padding: 15px; 
        opacity: 0; 
        visibility: hidden; 
        transform: translateY(15px); 
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border: 1px solid #fff;
        z-index: 50;
    }
    
    nav .menu-item-has-children:hover > ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(5px);
    }
    
    nav .menu-item-has-children ul li { width: 100%; display: block; margin-bottom: 2px; }
    nav .menu-item-has-children ul li a {
        display: block;
        padding: 10px 15px;
        color: #000;
        font-size: 14px;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.2s ease;
        white-space: normal;
    }
    nav .menu-item-has-children ul li a:hover {
        background-color: #f5f3ff;
        color: #ff2500;
        transform: translateX(4px);
        text-decoration: none;
    }

    /* Mega Menu Specific (Requires CSS Class 'mega-menu' in WP Dashboard) */
    nav li.mega-menu { position: static; }
    nav li.mega-menu > ul {
        left: 50%;
        transform: translateX(-50%) translateY(15px);
        width: 700px;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 20px;
        padding: 30px;
    }
    nav li.mega-menu:hover > ul {
        transform: translateX(-50%) translateY(5px);
    }
    
    /* CTA Button (Requires CSS Class 'schedule-free-demo' in WP Dashboard) */
    nav li.schedule-free-demo a {
        background: linear-gradient(135deg, #FF2500 0%, #FF7100 100%);
        color: #fff !important;
        padding: 10px 25px;
        border-radius: 50px;
        box-shadow: 0 10px 25px -5px rgba(255, 37, 0, 0.4);
        margin-left: 10px;
    }
    nav li.schedule-free-demo a:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px -5px rgba(255, 37, 0, 0.6);
        text-decoration: none;
    }
    nav li.schedule-free-demo > a::after { display: none; }
}

/* Mobile Navigation */
@media only screen and (max-width: 991px) {
    header { width: 100%; top: 0; border-radius: 0; border: none; }
    .main-menu { height: 70px; }
    .logo img { width: 120px !important; } /* Reduce logo slightly on tablet */
    
    .menu-icon { 
        display: flex !important; 
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px !important;  /* Overrides inline HTML styles */
        height: 40px !important; /* Overrides inline HTML styles */
        background: #fff;
        border-radius: 50%;
        cursor: pointer; 
        z-index: 60;
        border: 1px solid #e2e8f0;
        padding: 0 !important; /* Overrides padding to perfectly center */
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    .menu-icon span { 
        background: #1e1b4b !important; 
        height: 2px !important; 
        width: 18px !important; 
        margin-bottom: 4px !important; 
        display: block; 
        transition: all 0.3s ease; 
        border-radius: 2px;
    }
    .menu-icon span:last-child { margin-bottom: 0 !important; }
    
    /* Pixel Perfect X Animation */
    .menu-icon.active .first { transform: translateY(6px) rotate(45deg) !important; margin: 0 !important;}
    .menu-icon.active .second { opacity: 0 !important; }
    .menu-icon.active .third { transform: translateY(-6px) rotate(-45deg) !important; margin: 0 !important;}
    
    nav { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px; 
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 0 0 20px 20px;
    }
    
    nav ul { display: flex; flex-direction: column; gap: 10px; width: 100%; padding: 0; }
    nav li { width: 100%; }
    
    nav > ul > li > a { 
        display: flex; 
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px; 
        background: #f8fafc; 
        color: #000; 
        font-weight: 700; 
        border-radius: 12px;
        font-size: 15px;
    }

    nav .menu-item-has-children > a::after {
        content: "\f107";
        font-family: "FontAwesome";
        font-size: 14px;
        transition: transform 0.3s ease;
    }
    nav .menu-item-has-children.open > a::after { transform: rotate(180deg); }
    
    nav .menu-item-has-children > ul { 
        display: none; 
        padding: 5px 10px 0 20px; 
        background: transparent;
    }
    
    nav .menu-item-has-children.open > ul { display: block; }
    
    nav .menu-item-has-children ul li a {
        padding: 10px 15px;
        color: #475569;
        font-weight: 600;
        font-size: 14px;
        display: block;
    }
    
    nav li.schedule-free-demo { margin-top: 10px; }
    nav li.schedule-free-demo a {
        background: linear-gradient(135deg, #FF2500 0%, #FF7100 100%);
        color: #fff !important;
        text-align: center;
        justify-content: center;
    }
    nav li.schedule-free-demo > a::after { display: none; }
}

@media only screen and (max-width: 767px) {
    .logo img { width: 105px !important; } /* Further reduce logo on mobile */
}

/* THE NUCLEAR OPTION: Kill Twenty Nineteen Ghost Menus */
button.menu-item-link-return, div.main-menu-more { display: none !important; }
.main-menu nav > ul > li { display: block !important; }

/*** ====================================================================
  Banner Section
====================================================================
***/

.bg-header {
  background-repeat: no-repeat; background-size: cover; background-attachment: fixed;
  height: 100%; background-position: center; position: relative; overflow: hidden; top: 72px;
}
.home-bg-img { z-index: 1; position: relative; padding: 50px 0; }
.bg-header::after {
  content: ""; position: absolute; top: 0; left: 0; height: 100%; width: 100%;
  z-index: 0; background-color: #061b38;
}
.video-area { position: relative; }
.content-banner-new { text-align: left; margin: 0 auto; }
.content-banner-new h2 { font-size: 29px; font-weight: 700; color: #fff; letter-spacing: 1px; text-transform: uppercase; line-height: 42px; }
.content-banner-new p { color: #fff; font-size: 15px; }
.theme-btn {
  color: #fff; font-weight: 600; font-size: 15px; letter-spacing: 1px;
  text-transform: uppercase; border: 2px solid #af3e37; background-color: #af3e37; padding: 10px 15px;
}
.banner-img-02 img { max-width: 70%; z-index: 1; position: relative; }
.banner-img-02 { text-align: center; }

@media (max-width: 768px) {
  .banner-img-02 img { max-width: 100%; }
}
@media (max-width: 767px) {
  .content-banner-new h2 { font-size: 18px; line-height: 28px; }
  .new-head-banner { width: 100% !important; }
  .home-bg-img { padding: 50px 0; }
  .content-banner-new { width: 100%; }
  .prime-banner { top: 40px; }
}

/*** ====================================================================
  First class Section
====================================================================
***/

.first-class-area { position: relative; padding: 40px 0; background-repeat: no-repeat; background-size: cover; }
.first-class-area .question-bx {
  display: flex; align-items: center; margin-bottom: 25px; padding: 10px 20px;
  border: 1px solid #ececec; transition: all .5s;
}
section.first-class-area:before {
  background: rgba(228, 228, 228, 0.24); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: -1;
}
.first-class-area .question-bx:hover { transform: scale(1); }
.first-class-area .question-bx img { margin-top: 5px; margin-right: 15px; width: 50px; }
.first-class-area .question-bx .number { line-height: 15px; }
.question-bx.phone.heith-mode { min-height: 86px; }
.first-class-area .question-bx h4 { font-size: 16px; color: #433d3d; line-height: 27px; margin-top: 8px; text-align: left; }
.first-class-area p { text-align: center; margin-bottom: 25px; }

/*** ====================================================================
  Second class Section
====================================================================
***/

.second-class-area { position: relative; padding: 70px 0 30px; top: 35px; }
.head-class span { color: #f8b102; }
.head-class h1 { text-align: left; font-size: 30px; font-weight: 400; font-family: 'Poppins', sans-serif; color: rgb(36, 38, 43); text-transform: capitalize; }
.img-class-area img { transition: all .5s; max-width: 100%; }
.img-class-area img:hover { transform: scale(1.2); }
.img-class-area { transition: all .5s; }
.over-flw { overflow: hidden; cursor: pointer; }
.question-bx:hover .number h4 { color: #24262b; }
.head-class span { color: #af3e37; }
.browser-image { position: absolute; left: -50%; top: -70px; }
.img-fluid { position: relative; }

@media (max-width: 992px) {
  .browser-image { position: relative; left: 0; }
}
@media(max-width: 767px){
  .head-class h1 { font-size: 20px; line-height: 32px; }
  .second-class-area { position: relative; padding: 60px 0; }
}

/*** ====================================================================
  Third class Section
====================================================================
***/

.third-class-area { position: relative; background-color: #061b38; }
.text-area-3 { padding-top: 40px; padding-bottom: 40px; width: 100%; }
.text-area-3 p { color: #fff; margin-bottom: 0; text-align: center; }
.head-class-3 h1 { text-align: center; font-size: 2rem; font-weight: 500; color: #fff; text-transform: capitalize; }
.img-class-area:before {
  position: absolute; content: ""; box-shadow: 0 0 0 7PX RGBA(0, 0, 0, 0.78);
  width: calc(100% - 50px); height: calc(100% - 15px); bottom: 40px; left: 55px; z-index: -1;
}
section.our-goal-area ul li i { color: #af3e37; font-size: 21px; margin-right: 10px; }
section.our-goal-area ul li { margin-top: 4px; }

@media(max-width: 767px){
  .text-area-3 { width: 100%; }
  .head-class-3 h1 { text-align: center; font-size: 20px; line-height: 32px; }
  .img-class-area:before { left: 39px; }
  header .container .logo img { width: 110px; height: 50px; }
}

/*** ====================================================================
  Fourth class Section
====================================================================
***/

.fourth-class-area { position: relative; padding: 50px 0; }
.h1-new-seo { font-size: 30px; font-weight: 400; font-family: 'Poppins', sans-serif; color: rgb(36, 38, 43); text-transform: capitalize; }
.head-class h2 { text-align: left; font-size: 30px; font-weight: 400; color: #333; font-family: 'Poppins', sans-serif; text-transform: capitalize; }
.number.new-h4 p { margin-bottom: 0; }
.fourth-class-area .prime-mlm ul li {
  display: flex; align-items: center; position: relative; color: #212529;
  font-size: 15px; font-weight: 500; padding: 8px 0; width: 100%; transition: 0.3s;
}
.fourth-class-area .prime-mlm ul li i {
  width: 30px; height: 30px; display: inline-block; text-align: center;
  background: #2f8ba8; line-height: 32px; font-size: 14px; color: #fff; margin-right: 19px;
}

@media (max-width: 767px){
  .head-class h2 { font-size: 20px; }
  .h1-new-seo { font-size: 25px; }
}

/* ============================================================== 
     # Our Goal
=================================================================== */
.default-padding { padding-top: 60px; padding-bottom: 60px; }
.goal-items .info { padding-left: 30px; }
.our-goal-area .goal-items .info h2 { text-transform: uppercase; font-weight: 400; margin-top: -5px; margin-bottom: 0px; text-align: left; }
.our-goal-area .goal-items .info h4 { margin-bottom: 0px; text-transform: uppercase; color: #0cb8b6; font-weight: 500; letter-spacing: 0.6px; text-decoration: underline; }
.our-goal-area .goal-items .info blockquote {
  letter-spacing: 0.6px; line-height: 30px; font-size: 16px; border-left: 5px solid #e7e7e7;
  padding: 0; margin-top: 25px; margin-bottom: 25px; font-style: italic;
}
.our-goal-area .goal-items .info ul > li { position: relative; z-index: 1; font-size: 15px; border-bottom: 1px solid #e7e7e7; padding-bottom: 5px; margin-bottom: 5px; }
.our-goal-area .goal-items .info ul > li i { padding-right: 15px; }
.our-goal-area .goal-items .info ul > li:last-child { margin: 0; padding-bottom: 0; border: none; }
.our-goal-area .goal-items.goal-carousel .owl-nav { margin: 0; }
.our-goal-area .goal-items.goal-carousel .owl-nav .owl-prev, 
.our-goal-area .goal-items.goal-carousel .owl-nav .owl-next {
  background: transparent; color: #2f8ba8; font-size: 30px; height: 40px; left: -40px;
  line-height: 40px; margin: -20px 0 0; padding: 0; position: absolute; top: 50%; width: 40px;
}
.our-goal-area .goal-items.goal-carousel .owl-nav .owl-next { left: auto; right: -50px; }
.our-goal-area .goal-items.goal-carousel .owl-dots { margin-top: 20px; margin-bottom: 8px; }
.our-goal-area .goal-items.goal-carousel .owl-dots .owl-dot span { height: 8px; background: #666666; width: 25px; margin: 0 5px; opacity: 1; border-radius: 30px; }
.our-goal-area .goal-items.goal-carousel .owl-dots .owl-dot.active span { background: #0cb8b6; width: 40px; }

@media (max-width: 1024px){ .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 { float: left; } }
@media (min-width: 992px){ .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 { float: left; } }
@media (max-width: 767px){
  .owl-nav { display: none; }
  .our-goal-area .goal-items .info h2 { margin-top: 15px; }
}

/* ============================================================== 
     # prime-mlm-ease
=================================================================== */
.prime-mlm-ease { position: relative; padding: 40px 0; }
div.bhoechie-tab-container { z-index: 10; background-color: #ffffff; padding: 0 !important; border-radius: 4px; margin-top: 20px; background-clip: padding-box; opacity: 0.97; }
a.list-group-item h4 { font-size: 16px; margin-bottom: 0; }
div.bhoechie-tab-menu { padding: 0; }
div.bhoechie-tab-menu div.list-group { margin-bottom: 0; }
div.bhoechie-tab-menu div.list-group>a { margin-bottom: 20px; }
div.bhoechie-tab-menu div.list-group>a .glyphicon, div.bhoechie-tab-menu div.list-group>a .fa { color: #5A55A3; }
div.bhoechie-tab-menu div.list-group>a:first-child { border-top-right-radius: 0; }
div.bhoechie-tab-menu div.list-group>a:last-child { border-bottom-right-radius: 0; }
.bhoechie-tab-menu .list-group-item { border-radius: 4px !important; padding: 15px 30px; text-align: left !important; }
div.bhoechie-tab-menu div.list-group>a.active, div.bhoechie-tab-menu div.list-group>a:hover, 
div.bhoechie-tab-menu div.list-group>a.active .glyphicon, div.bhoechie-tab-menu div.list-group>a.active .fa {
  background-image: linear-gradient(to right, #FF2500 0%, #FF7100 51%, #FF2500 100%);
  color: #fff; border: 1px solid transparent;
}
div.bhoechie-tab-menu div.list-group>a.active h4, div.bhoechie-tab-menu div.list-group>a:hover h4 { color: #fff; }
a.list-group-item.text-center { color: #656464; }
div.bhoechie-tab-menu div.list-group>a.active:after, div.bhoechie-tab-menu div.list-group>a:hover:after {
  content: ''; position: absolute; left: 100%; top: 50%; margin-top: -13px; border-left: 0;
  border-bottom: 13px solid transparent; border-top: 13px solid transparent; border-left: 10px solid #FF2500; color: #fff;
}
.bhoechie-tab-content h3 { text-align: left; text-transform: uppercase; font-size: 24px; color: #444; }
.head-class-left h1 { text-align: left; font-size: 30px; font-weight: 400; font-family: 'Poppins', sans-serif; color: rgb(36, 38, 43); }
h1, h2, h3, h5, h6, .display-1 { font-family: 'Poppins', sans-serif !important; color: #555; }
div.bhoechie-tab-content { background-color: #ffffff; padding-left: 20px; padding-top: 10px; }
div.bhoechie-tab div.bhoechie-tab-content:not(.active) { display: none; }
.width-50 { width: 60%; }

@media (max-width: 768px) { .width-50 { width: 100%; } }
@media (max-width: 767px) {
  .width-50 { width: 100%; }
  div.bhoechie-tab-content { padding-left: 0px; }
  div.bhoechie-tab-menu div.list-group>a.active:after { display: none; }
  .tab h3 { font-size: 15px; }
  .head-class-left h1 { font-size: 20px; }
  .bhoechie-tab-content h3 { font-size: 20px; }
  div.bhoechie-tab-menu div.list-group>a { width: 96%; margin: 3px auto; }
}

/* ============================================================== 
     sailent-feature
=================================================================== */
.sailent-feature { position: relative; padding: 170px 0 50px; background-repeat: no-repeat; background-size: cover; }
.head-class p { text-align: left; margin-top: 20px; }
.question-bx.phone {
  box-shadow: 0px 0px 40px 0px rgba(0,0,0,.1); background: #fff; text-align: center;
  padding: 20px; border-radius: 15px; margin-bottom: 2rem; transition: all .2s linear;
}
.question-bx.new-height.phone:hover { box-shadow: 0 0.15rem 1.75rem 0 rgba(31,45,65,.1); transform: translateY(-10px); }
.goal-items ul li { position: relative; z-index: 1; border-bottom: 1px solid #e2dcdc; padding-bottom: 10px; margin-bottom: 10px; }
.goal-items ul li i { margin-right: 10px; color: #af3e37; font-size: 18px; }
.bottom-border { width: 100%; height: 35px; background: url(../images/download.png) center no-repeat; opacity: .2; background-size: cover; margin-top: 50px; }
.question-bx.new-height.phone { min-height: 312px; }
.question-bx.new-height.phone img { width: 45%; }
.question-bx.phone .number.new-h4 h4 { font-size: 18px; margin-top: 10px; margin-bottom: 15px; color: rgb(36, 38, 43); font-weight: 600; text-transform: uppercase; }

button { position: relative; display: inline-block; cursor: pointer; outline: none; border: 0; vertical-align: middle; background: transparent; padding: 0; font-size: inherit; font-family: inherit; }
button.learn-more { width: 12rem; height: auto; }
button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1); position: relative; margin: 0; width: 3rem; height: 3rem;
  background-image: linear-gradient(to right, #FF2500 0%, #FF7100 51%, #FF2500 100%); background-size: 200% auto; border-radius: 1.625rem;
}
button.learn-more .circle .icon { transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1); position: absolute; top: 0; bottom: 0; margin: auto; background: #fff; }
button.learn-more .circle .icon.arrow { left: 0.625rem; width: 1.125rem; height: 0.125rem; background: none; }
button.learn-more .circle .icon.arrow::before {
  position: absolute; content: ''; top: -0.25rem; right: 0.0625rem; width: 0.625rem; height: 0.625rem;
  border-top: 0.125rem solid #fff; border-right: 0.125rem solid #fff; transform: rotate(45deg);
}
button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1); position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  padding: 0.75rem 0; margin: 0 0 0 2.85rem; color: rgb(36, 38, 43); font-weight: 700; line-height: 1.6; text-align: center; text-transform: uppercase;
}
button:hover .circle { width: 100%; }
button:hover .circle .icon.arrow { background: #fff; transform: translate(1rem, 0); }
button:hover .button-text { color: #fff; }

/* ============================================================== 
     mlm-plans
=================================================================== */
.mlm-plans { position: relative; padding: 50px 0 0px; }
.tab__content::before, .tab__content::after { content: ' '; display: table; }
.tab__content::after { clear: both; }
.tabs { position: relative; top: -4px; height: 32px; margin-top: 50px; width: 100%; }
.features_img.mt-3 img { width: 65%; }
.scapable.mt-3 img { width: 60%; }

@media (max-width: 960px) { .tabs { display: none; } }
.tabs__item {
  float: left; cursor: pointer; padding: 6px 11px; line-height: 31px;
  border: 1px solid DarkGray; border-bottom: 1px solid DarkGray; background-color: #e72216;
  color: #fff; overflow: hidden; position: relative; width: 24%; text-align: center; font-size: 18px; margin-right: 10px;
}
.tabs__item:hover { background-color: #af3e37; }
.tabs__item--active { background-color: white; color: DimGray; border-bottom: 1px solid #b1aeae; display: block; }
.tabs__item--active:hover { background-color: white; color: DarkGray; }
.tabs__item--last { border-right: 1px solid DarkGray; }
.tab { width: 100%; overflow: auto; }
@media (max-width: 960px) { .tab { border-top: none; } }
.tab__content { padding: 50px 0 0; display: none; width: 80%; margin: 0 auto; }
.tab__content img { float: left; padding-right: 2em; max-width: 100%; }
.tab__drawer { display: none; }

@media (max-width: 960px) {
  .tab__drawer {
    display: block; background-color: #24262b; color: #fff; border-top: 1px solid DarkGray;
    margin: 0; padding: 5px 20px; cursor: pointer; user-select: none; text-align: center;
  }
  .tab__drawer--active { background-color: #666; color: #fff; text-align: center; }
}

@media (max-width: 767px) {
  .tab__content img { padding-right: 0em; margin-bottom: 15px; }
  .tab__content { padding: 5px; }
  .tab__drawer { padding: 11px 20px; margin-bottom: 5px; }
}

/* Start Tab1 */
.affordable-tab { border-radius: 12px; padding: 24px 40px 36px 40px; background: #f3f8ff; margin: 50px auto; display: inline-block; }
.affordable-tab .tab h2 { color: #2966BE !important; font-size: 38px; margin-top: 18px; }
.affordable-tab .tab { width: 73%; display: block; float: left; padding-top: 2px; }
.affordable-tab .plan-tab { width: 27%; top: 0px; height: auto; margin-top: 24px; float: left; }
.tabs__item1 {
  float: left; cursor: pointer; padding: 11px 20px; line-height: 22px; background-color: #fff;
  color: #333; border-radius: 2px; box-shadow: 0px 1px 2px rgba(0,0,0,0.1); overflow: hidden;
  position: relative; width: 100%; text-align: left; font-size: 16px; margin-bottom: 6px; font-weight: 400; transition: 0.3s;
}
.tabs__item1:hover { background-color: #2966BE; color: #fff !important; transition: 0.3s; }
.tabs__item1--active { background-color: #2966BE; transition: 0.3s; color: #fff !important; display: block; }
.tabs__item1--active:hover { background-color: #2966BE; transition: 0.3s; color: #fff !important; }
.tab__content1 { padding: 24px 0 0; display: none; width: 85%; margin: 0 auto; }
.tab__content1 img { float: left; padding-right: 2em; max-width: 100%; }
.tab__drawer1 { display: none; }

@media (max-width: 960px) {
  .affordable-tab { border-radius: 12px; padding: 0px; background: transparent; margin: 50px auto; display: inline-block; }
  .tab__content1 {
    width: 96%; margin: auto; background: #fff; margin-top: -22px; padding: 24px 24px 16px 24px;
    margin-bottom: 20px; text-align: center; border-bottom-right-radius: 8px; border-bottom-left-radius: 8px; box-shadow: 2px 0px 15px rgba(0,0,0,0.3);
  }
  .tab__drawer1 {
    display: block; background-color: #ffffff; color: #7c7c7c; border-top: 0px solid white; margin: auto; padding: 15px !important;
    cursor: pointer; user-select: none; text-align: center; font-weight: 400 !important; font-size: 16px; border-radius: 4px;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.3); margin-bottom: 13px; width: 96%; position: relative; z-index: 9;
  }
  .tab__drawer1--active, h3.tab__drawer1--active {
    background-image: linear-gradient(to right, #FF2500 0%, #FF7100 51%, #FF2500 100%); background-size: 200% auto;
    color: #ffffff !important; font-weight: 500 !important;
  }
  .affordable-tab .tab h2 { font-size: 28px; }
}

@media (max-width: 767px) {
  .tab__content1 img { padding-right: 0em; margin-bottom: 15px; }
}

/* ============================================================== 
     Get in touch
=================================================================== */
.get-in-touch { position: relative; padding: 50px 0 50px; background-repeat: no-repeat; background-size: cover; }
.contact_area { background-image: url(../images/contact/c1.jpg); padding-top: 22px; background-repeat: no-repeat; position: relative; background-attachment: fixed; }
.contact_area:before {
  position: absolute; background: rgba(0, 0, 0, 0.75); content: ""; top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%; opacity: 1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.contact_title { margin-top: 58px; margin-bottom: 40px; }
.tiamat_contact_form {
  background: rgba(0, 0, 0, 0.4); padding: 50px 30px; box-shadow: 0 2px 15px 0 rgba(0, 0, 0, .05);
  z-index: 999; margin-bottom: 80px; width: 80%; margin: 0 auto;
}
.form_filed { width: 100%; }
.form_filed_inner { float: left; width: 48.80%; margin-bottom: 20px; }
.form_filed_inner:nth-child(odd) { margin-right: 1.20%; }
.form_filed_inner:nth-child(even) { margin-left: 1.20%; }
.form_filed_inner input, .tiamat_form_filed_inner textarea { text-transform: capitalize; padding-left: 10px; height: 50px; width: 100%; font-size: 14px; font-weight: 500; color: #999; border: 1px solid #fff; }
.form_filed_inner input:focus, .tiamat_form_filed_inner textarea:focus { border-color: #f33c3c; }
.tiamat_form_filed_inner textarea { height: 217px; padding-top: 10px; border-bottom: 1px solid #ddd; }
.tiamat_form_batton { text-align: center; margin-top: 54px; margin-bottom: 25px; }
.tiamat_form_batton a { text-transform: uppercase; background: #f33c3c; padding: 14px 52px; border-radius: 30px; border: 1px solid transparent; transition: .5s; color: #fff; font-weight: 500; font-size: 14px; letter-spacing: 2px; }
.tiamat_form_batton a:hover { background: #cd0022; }

@media (max-width: 767px){
  .form_filed_inner input, .tiamat_form_filed_inner textarea { height: 35px; font-size: 12px; }
  .form_filed_inner { width: 100%; margin-bottom: 20px; margin-right: 0; margin-left: 0; }
  .tiamat_contact_form { width: 100%; padding: 30px 15px; margin-bottom: 45px; }
  .form_filed_inner:nth-child(even) { margin-left: 0%; }
  .tiamat_form_filed_inner textarea { height: 180px; }
}

/* Conversion Area css */
.conversion_area { padding-top: 80px; }
.conversion_area .conversion_inner { box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.18); border-top: 5px solid #af3e37; margin-bottom: -80px; z-index: 2; position: relative; background: #fff; padding: 20px 0px 35px; }
.conversion_area .conversion_inner .conversion_text { padding-left: 45px; padding-top: 45px; }
.conversion_area .conversion_inner .conversion_text h3 { color: #444; font-size: 26px; font-family: "Poppins", sans-serif; font-weight: 400; margin-bottom: 15px; }
.conversion_area .conversion_inner .conversion_text h4 { font-size: 26px; font-weight: normal; font-style: italic; margin-bottom: 25px; }
.conversion_area .conversion_inner .conversion_text .nice-select { margin-bottom: 65px; width: 100%; border: none; border-bottom: 1px solid #797979; border-radius: 0px; padding-left: 0px; padding-right: 0px; height: 45px; }
.conversion_area .conversion_inner .conversion_text .nice-select span { font-size: 18px; font-family:'Poppins', sans-serif; font-weight: normal; color: #797979; }
.conversion_area .conversion_inner .conversion_text .nice-select:after { border: none; transform: rotate(0); content: "\f0d7"; font: normal normal normal 14px/1 FontAwesome; color: #000; }
.conversion_area .conversion_inner .conversion_subs { padding-left: 50px; padding-right: 50px; }
.conversion_area .conversion_inner .conversion_subs p { font-size: 16px; line-height: 28px; padding-right: 20px; margin-top: 45px; margin-bottom: 35px; }
.submit_btn { background: #f14141; color: #fff; line-height: 48px; display: inline-block; padding: 0px 25px; text-transform: uppercase; font-size: 13px; font-weight: 400; letter-spacing: .65px; transition: all 300ms linear 0s; border: 1px solid #e8e6ee; border-radius: 0px; outline: none !important; box-shadow: none !important; }
.conversion_area .conversion_inner .conversion_subs .input-group input { border-radius: 0px; border-color: #e8e6ee; height: 50px; background: #f7f7f7; padding: 0px 20px; font-size: 16px; font-family: 'Poppins', sans-serif; font-weight: inherit; color: #797979; outline: none; box-shadow: none; }
.conversion_area .conversion_inner .conversion_subs .input-group input::placeholder { font-size: 16px; font-family: 'Poppins', sans-serif; font-weight: inherit; color: #797979; }
.left p { color: #ccc8c8; }
aside.f_widget.news_widget p { color: #ccc8c8; }

/* Footer Area css */
.prime-footer-bs{background-color:#1e1b4b;position:relative;padding:4rem 0 0;overflow:hidden;border-top:1px solid rgba(49,46,129,.5);font-family:'Poppins',sans-serif}@media(min-width:992px){.prime-footer-bs{padding:8rem 0 0}}.footer-aurora-blob{position:absolute;bottom:0;left:0;width:100%;height:300px;background:rgba(255,37,0,.08);border-radius:50%;filter:blur(80px);transform:translateY(50%);pointer-events:none;z-index:0}@media(min-width:992px){.footer-aurora-blob{height:500px;filter:blur(120px)}}.brand-gradient-line{width:2.5rem;height:.25rem;background:linear-gradient(to right,#ff2500,#ff7100);border-radius:50rem}.footer-desc{font-size:.875rem;line-height:1.8;color:rgba(165,180,252,.9);font-weight:300}@media(min-width:576px){.footer-desc{font-size:1rem;line-height:2}}.footer-socials{gap:1rem}.footer-icon-btn{width:2.5rem;height:2.5rem;border-radius:50%;background:rgba(49,46,129,.4);border:1px solid rgba(49,46,129,.5);display:flex;align-items:center;justify-content:center;color:#818cf8;font-size:1.125rem;text-decoration:none;transition:all .3s ease}@media(min-width:576px){.footer-icon-btn{width:3rem;height:3rem;font-size:1.25rem}}.footer-icon-btn:hover{background:#ff7100;border-color:#ff7100;color:#fff;transform:translateY(-4px)}.footer-icon-btn.shrink-0{flex-shrink:0}.mr-lg-3{margin-right:1rem}.footer-heading{color:#fff;font-weight:700;text-transform:uppercase;letter-spacing:.2em;font-size:.625rem;opacity:.5;margin-bottom:1.5rem}@media(min-width:576px){.footer-heading{margin-bottom:2rem}}.footer-links li{margin-bottom:.75rem}@media(min-width:576px){.footer-links li{margin-bottom:1rem}}.footer-links a{color:#a5b4fc;text-decoration:none;font-size:.875rem;font-weight:500;display:inline-flex;align-items:center;transition:color .3s ease}.footer-links a::before{content:"";display:none;width:0;height:2px;background:#ff7100;margin-right:0;border-radius:50rem;transition:all .3s ease}@media(min-width:576px){.footer-links a::before{display:block}}.footer-links a:hover{color:#fff}.footer-links a:hover::before{width:1rem;margin-right:.75rem}.footer-contact-list{display:flex;flex-direction:column;gap:1rem}@media(min-width:576px){.footer-contact-list{gap:1.5rem}}.footer-contact-item{display:flex;align-items:center;gap:.75rem;text-decoration:none}@media(min-width:992px){.footer-contact-item{align-items:flex-start;gap:1rem}}.contact-text{color:#a5b4fc;font-size:.875rem;font-weight:500;letter-spacing:.025em;transition:color .3s ease}.footer-contact-item:hover .contact-text{color:#fff}.footer-contact-item:hover .footer-icon-btn{background:#ff7100;border-color:#ff7100;color:#fff}.address-details{display:flex;flex-direction:column;gap:1rem}.country-label{display:block;color:#fff;font-weight:700;font-size:.625rem;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.25rem}.address-text{color:#a5b4fc;font-size:.75rem;line-height:1.6}@media(min-width:576px){.address-text{font-size:.875rem}}.address-divider{width:3rem;height:1px;background-color:rgba(49,46,129,.5);margin:.5rem 0}.footer-bottom{border-top:1px solid rgba(49,46,129,.6);padding-top:2rem;padding-bottom:2rem;margin-top:1rem}@media(min-width:576px){.footer-bottom{padding-top:2.5rem;padding-bottom:2.5rem}}.copyright-text{color:rgba(165,180,252,.8);font-size:.6875rem;font-weight:500;letter-spacing:.025em}@media(min-width:576px){.copyright-text{font-size:.8125rem}}.footer-legal-links{gap:1.5rem;row-gap:.75rem}@media(min-width:576px){.footer-legal-links{gap:2.5rem}}.footer-legal-links a{color:rgba(165,180,252,.8);text-decoration:none;font-size:.6875rem;font-weight:500;letter-spacing:.025em;transition:color .3s}@media(min-width:576px){.footer-legal-links a{font-size:.8125rem}}.footer-legal-links a:hover{color:#fff}.whatsapp-fab{bottom:-50px;right:24px;background-color:#25d366;z-index:9999;padding:10px 20px;gap:8px;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .6s ease,bottom .6s ease,transform .3s ease,box-shadow .3s ease;border-radius:50px}.whatsapp-fab.show-fab{opacity:1;visibility:visible;pointer-events:auto;bottom:24px}@media(max-width:767px){.whatsapp-fab{display:none!important}}.whatsapp-fab:hover{transform:scale(1.05);box-shadow:0 1rem 3rem rgba(0,0,0,.25)!important;color:#fff}.whatsapp-icon{width:20px;height:20px}.whatsapp-text{font-size:14px}@media(min-width:768px){.whatsapp-fab.show-fab{bottom:30px}.whatsapp-fab{right:30px;padding:12px 24px}.whatsapp-icon{width:24px;height:24px}.whatsapp-text{font-size:16px}}.cookie-banner-container{position:fixed;bottom:30px;left:50%;width:90%;max-width:950px;background-color:#fff;box-shadow:0 10px 40px rgba(0,0,0,.15);border-radius:12px;padding:24px 32px;display:flex;align-items:center;justify-content:space-between;gap:24px;z-index:100000;transform:translate(-50%,150%);opacity:0;visibility:hidden;transition:transform .6s cubic-bezier(.16,1,.3,1),opacity .6s ease,visibility .6s ease;will-change:transform,opacity}.cookie-banner-container.show-banner{transform:translate(-50%,0);opacity:1;visibility:visible}.cookie-content-wrapper{display:flex;align-items:flex-start;gap:16px}.cookie-icon svg{width:32px;height:32px;margin-top:2px}.cookie-text h4{margin:0 0 6px 0;font-size:18px;font-weight:700;color:#1a1b1e}.cookie-text p{margin:0;font-size:14px;line-height:1.5;color:#4b5563}.cookie-text a{color:#ea580c;text-decoration:underline;font-weight:500}.cookie-buttons{display:flex;align-items:center;gap:12px;flex-shrink:0}.cookie-btn{padding:10px 20px;font-size:14px;font-weight:600;border-radius:6px;cursor:pointer;transition:all .2s ease;border:none}.pref-btn{background:transparent;border:1px solid #d1d5db;color:#374151}.pref-btn:hover{background:#f3f4f6}.decline-btn{background:#f3f4f6;color:#374151}.decline-btn:hover{background:#e5e7eb}.accept-btn{background:#ea580c;color:#fff}.accept-btn:hover{background:#c2410c}@media(max-width:991px){.cookie-banner-container{flex-direction:column;padding:20px;bottom:20px}.cookie-buttons{width:100%;justify-content:flex-end;flex-wrap:wrap}.cookie-btn{flex:1;text-align:center;min-width:120px}}.cookie-modal-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(15,23,42,.6);z-index:100001;opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease;display:flex;align-items:center;justify-content:center;padding:20px}.cookie-modal-overlay.show-modal{opacity:1;visibility:visible}.cookie-modal-box{background:#fff;width:100%;max-width:550px;border-radius:12px;padding:32px;box-shadow:0 25px 50px -12px rgba(0,0,0,.25);transform:translateY(30px) scale(.95);transition:transform .4s cubic-bezier(.16,1,.3,1);max-height:90vh;overflow-y:auto}.cookie-modal-overlay.show-modal .cookie-modal-box{transform:translateY(0) scale(1)}.cookie-modal-header h3{margin:0 0 10px 0;font-size:22px;font-weight:700;color:#1a1b1e}.cookie-modal-header p{margin:0 0 24px 0;font-size:14px;color:#64748b;line-height:1.5}.cookie-modal-header a{color:#ea580c;text-decoration:underline}.cookie-option-row{display:flex;align-items:center;justify-content:space-between;padding:16px 0;border-bottom:1px solid #f1f5f9;gap:16px}.cookie-option-row:last-of-type{border-bottom:none;margin-bottom:20px}.cookie-option-text h5{margin:0 0 4px 0;font-size:15px;font-weight:600;color:#1a1b1e}.cookie-option-text p{margin:0;font-size:13px;color:#64748b;line-height:1.4}.cookie-toggle{position:relative;display:inline-block;width:44px;height:24px;flex-shrink:0}.cookie-toggle input{opacity:0;width:0;height:0}.cookie-toggle .slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#cbd5e1;transition:.3s;border-radius:24px}.cookie-toggle .slider:before{position:absolute;content:"";height:18px;width:18px;left:3px;bottom:3px;background-color:#fff;transition:.3s;border-radius:50%;box-shadow:0 2px 4px rgba(0,0,0,.2)}.cookie-toggle input:checked+.slider{background-color:#ea580c}.cookie-toggle input:checked+.slider:before{transform:translateX(20px)}.cookie-toggle input:disabled+.slider{opacity:.6;cursor:not-allowed}.cookie-modal-footer{display:flex;justify-content:flex-end;gap:12px;margin-top:10px}@media(max-width:576px){.cookie-modal-box{padding:24px}.cookie-modal-header h3{font-size:20px}.cookie-option-text h5{font-size:14px}.cookie-option-text p{font-size:12px}.cookie-modal-footer{flex-direction:column-reverse;width:100%;gap:8px}.cookie-modal-footer .cookie-btn{width:100%;text-align:center}}
/* Contact Us CSS */
.contact-area.area-padding { padding: 180px 0 60px; position: relative; }
.contact-icons { background-color: #7855fa; padding: 50px 20px; }
.office-city { box-shadow: 0 5px 25px rgba(0,0,0,0.1); padding: 40px 30px 20px; max-width: 800px; margin: 50px auto; border-radius: 8px; }
.office-city h4 { margin-bottom: 30px; font-weight: 700; color: #444; font-size: 32px; }
.single-icon { margin-bottom: 30px; display: flex; align-items: start; gap: 10px; }
.contact-page { margin-bottom: 100px; }
.contact-icon { display: grid; overflow: hidden; grid-template-columns: 1fr 1fr; column-gap: 50px; row-gap: 15px; }
.single-icon p { color: #444; font-size: 15px; line-height: 22px; }
.contact-page-area { background: #f1f1f1 none repeat scroll 0 0; padding: 50px 0 70px; }
.contact-form input, .contact-form input { border: 1px solid #ccc !important; border-radius: 8px !important; height: 55px !important; margin-bottom: 22px !important; padding-left: 20px; width: 100% !important; background: transparent !important; }
.contact-form textarea#message { border: 1px solid #ccc !important; border-radius: 0px !important; height: 125px; padding: 20px !important; width: 100% !important; background: transparent !important; }
.add-btn.contact-btn { color: #ffffff !important; background-image: linear-gradient(to right, #FF2500 0%, #FF7100 51%, #FF2500 100%); background-size: 200% auto; border: 0px solid #7855fa; border-radius: 8px; padding: 13px 30px; transition: 0.5s; float: left; }
.add-btn.contact-btn:hover { border: 0px solid #7855fa !important; transition: 0.5s !important; color: #ffffff !important; background-position: right center; }
.captcha { display: grid; grid-template-columns: 100px 1fr; max-width: 300px; align-items: stretch; margin-bottom: 15px; margin-top: 15px; }
.captcha div:first-child { display: flex; align-items: center; border: 1px solid #ccc !important; border-radius: 8px !important; text-align: center; justify-content: center; margin-right: -11px; background: #fff; z-index: 1; position: relative; }
.captcha div:first-child input { display: none; }
.captcha div:last-child input { margin-bottom: 0px !important; }

/* Pricing */
.pricing-area { padding: 170px 0 60px; position: relative; }
.pricing-area-1 { padding: 40px 0 40px; position: relative; }
.table { width: 100%; max-width: 100%; margin-bottom: 1rem; background-color: transparent; border: 1px solid #dee2e6; }
.table thead th { vertical-align: bottom; border-bottom: 2px solid #dee2e6; border-right: 1px solid #ddd; }
.table td, .table th { padding: .75rem; vertical-align: top; border-top: 1px solid #dee2e6; border-right: 1px solid #ddd; }

/* Custom Reg */
.custom-register { padding: 150px 0 60px; position: relative; }
.custom-register .col-sm-8 .demo-new-sec:first-child { padding-top: 0px; }
.custom-register .col-sm-8 .demo-new-sec:first-child .content-box { margin-top: 0px; }
.select-new { border: 1px solid #ccc; border-radius: 0 !important; height: 40px !important; margin-bottom: 15px; padding-left: 20px; width: 100%; background: transparent; }
.bg-reg { box-shadow: 0 5px 10px rgba(78, 75, 75, 0.48); padding: 30px 30px; background-color: #fff; }
ul.breadcrumb.bg-transparent { float: right; }


.custom-gradient-bg{background-image:linear-gradient(to right,#FF2500 0,#FF7100 51%,#FF2500 100%);background-size:200% auto;color:#fff;transition:background-position .5s ease}.custom-gradient-bg:hover{background-position:right center}.home-banner-modern{padding:120px 0 80px;background-color:#fff3f1}.pill-label{display:inline-block;padding:.6rem 1.5rem;background-color:#fff;color:#FF2500;border-radius:50px;font-size:.85rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;border:1px solid #e2e8f0;box-shadow:0 4px 6px -1px rgba(0,0,0,.05)}.page-title{color:#1a2b48;font-size:3.5rem;font-weight:800;line-height:1.2;letter-spacing:-1px}.tagline-text{font-size:1.5rem;color:#475569;font-weight:500;letter-spacing:.5px;margin:0}.enterprise-overview-section{padding:5rem 0;background-color:#fff}.section-heading{color:#1a2b48;font-size:2.25rem;font-weight:700;line-height:1.2}.lead-text{font-size:1.15rem;color:#475569;line-height:1.7}.pill-link{display:flex;align-items:center;justify-content:center;padding:.85rem 1rem;background-color:#fff;color:#1a2b48;text-decoration:none;border-radius:50px;font-weight:600;font-size:.85rem;transition:all .3s ease;border:1px solid #cbd5e1;text-align:center}.pill-link:hover{background-color:#1a2b48;color:#fff;border-color:#1a2b48}.strategic-box-card{background:#fff;border:1px solid #e2e8f0;padding:3rem;border-radius:12px;height:100%;box-shadow:0 4px 6px -1px rgba(0,0,0,.05);transition:transform .3s ease,box-shadow .3s ease}.strategic-box-card:hover{transform:translateY(-5px);box-shadow:0 10px 15px -3px rgba(0,0,0,.1)}.icon-wrapper{height:55px;width:55px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin-bottom:1.5rem}.block-title{color:#1a2b48;font-size:1.5rem;font-weight:700;margin-bottom:1rem}.strategic-box-card p{color:#475569;line-height:1.7;font-size:1.05rem;margin-bottom:0}.about-wrapper{max-width:1150px;margin:70px auto;padding:0 20px}.about-section{background:#fff;border-radius:14px;padding:45px;margin-bottom:50px;box-shadow:0 15px 35px rgba(0,0,0,.07);border-top:6px solid #ff6a00}.about-section.highlight{border-top-color:#0b2b4c}.about-section h2{font-size:32px;font-weight:700;color:#0b2b4c;margin-bottom:18px}.intro-text{font-size:16px;line-height:1.85;color:#444;max-width:900px;margin-bottom:35px}.info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:25px}.info-item{background:#f9fafc;padding:22px;border-radius:10px;border-left:4px solid #ff6a00}.info-item span{display:block;font-size:13px;text-transform:uppercase;letter-spacing:.6px;color:#777;margin-bottom:6px}.info-item p{font-size:16px;font-weight:600;color:#222}.info-item.full{grid-column:span 3}.feature-list{list-style:none;padding:0;margin:0}.feature-list li{display:flex;flex-direction:column;padding:18px 0 18px 32px;position:relative;border-bottom:1px dashed #e1e1e1}.feature-list li:last-child{border-bottom:none}.feature-list li::before{content:"✓";position:absolute;left:0;top:18px;font-size:18px;color:#ff6a00;font-weight:700}.feature-list strong{font-size:17px;color:#0b2b4c;margin-bottom:4px}.feature-list span{font-size:15px;color:#555}.team-section{background-color:#121212;color:#fff;padding:60px 20px}.team-section h2{text-align:center;font-size:32px;margin-bottom:40px;font-weight:600;text-transform:uppercase;letter-spacing:1px;color:#fff}.team-section hr{border:0;height:1px;background:#333;margin:60px auto;max-width:80%}.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;max-width:1200px;margin:0 auto}.ceo-grid{display:flex;justify-content:center;margin-bottom:60px}.team-card{background-color:#1e1e1e;border-radius:16px;padding:40px 25px;text-align:center;display:flex;flex-direction:column;align-items:center;box-shadow:0 10px 30px rgba(0,0,0,.2);transition:transform .3s ease,box-shadow .3s ease;border:1px solid #2a2a2a}.team-card:hover{transform:translateY(-5px);box-shadow:0 15px 35px rgba(0,0,0,.4)}.ceo-card{max-width:400px;width:100%}.team-card img{width:140px;height:140px;border-radius:50%;object-fit:cover;padding:4px;background:linear-gradient(to right,#FF2500 0,#FF7100 51%,#FF2500 100%);background-size:200% auto;margin-bottom:20px;transition:transform .4s ease}.ceo-card img{width:160px;height:160px}.team-card:hover img{transform:scale(1.05)}.team-card h3{margin:0 0 5px 0;font-size:22px;font-weight:600;color:#fff}.team-card h4{margin:0 0 5px 0;font-size:18px;font-weight:500;color:#fff}.role{font-size:13px;color:#4da6ff;text-transform:uppercase;font-weight:600;letter-spacing:1px;margin-bottom:15px}.bio{font-size:14px;color:#a0a0a0;line-height:1.6;margin-bottom:25px}.social-links{margin-top:auto}.linkedin-icon{display:inline-block;width:24px;height:24px;fill:#888;transition:fill .3s ease}.linkedin-icon:hover{fill:#0077b5}@media (max-width:1024px){.team-grid{grid-template-columns:repeat(3,1fr);padding:0 20px}}@media (max-width:991px){.home-banner-modern{padding:100px 20px 60px}.page-title{font-size:2.5rem}.enterprise-overview-section{padding:4rem 0}.strategic-box-card{padding:2rem}}@media (max-width:768px){.about-section{padding:30px}.about-section h2{font-size:26px}.info-grid{grid-template-columns:1fr}.team-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width:480px){.team-grid{grid-template-columns:1fr}}


/* Why Choose */
.why-choose { position: relative; padding: 170px 0 60px; }
.why-choose-1 { position: relative; padding: 40px 0 40px; }
blockquote { border-radius: 3px; position: relative; font-style: italic; text-align: center; padding: 1rem 1.2rem; width: 80%; margin: 11px auto !important; color: #4a4a4a; background: #E8E8E8; }
blockquote p { margin-bottom: 0; }
blockquote:before, blockquote:after { font-family: FontAwesome; position: absolute; top: 13px; color: #E8E8E8; font-size: 34px; }
blockquote:before { content: "\f10d"; margin-right: 13px; right: 100%; }
blockquote:after { content: "\f10e"; margin-left: 13px; left: 100%; }
.why-choose-area h3 { font-size: 30px; margin-bottom: 30px; text-transform: capitalize; }
.why-choose-squad h3 { font-size: 21px; margin-bottom: 20px; color: #af3e37; }
.why-choose-squad { background-color: whitesmoke; text-align: center; padding: 30px 30px; }

.contact-link li { margin-bottom: 12px; }
.contact-address-icon { float: left; margin-right: 11px; }
.contact-link li :last-child { margin-bottom: 0; line-height: 20px; font-weight: 400; }
.contact-address-icon i { font-size: 15px; color: #af3e37; position: relative; top: 0px; }
.contact-address-icon img {width: 20px;}
.contact-address-text { overflow: hidden; }
.footer-2-wrapper .contact-address-text h4 { color: #b8b8b8; }
.contact-address-text h4 { font-size: 15px; color: #696969; margin-bottom: 0; }

i.fa.fa-phone-square { color: #af3e37; font-size: 22px; bottom: -3px; position: relative; }
i.fa.fa-envelope-open { color: #af3e37; font-size: 20px; bottom: -2px; position: relative; }
i.fa.fa-skype { color: #3992ef; font-size: 23px; bottom: -4px; position: relative; }
i.fa.fa-map-marker, i.fa.fa-phone { font-size: 23px; bottom: -4px; position: relative; }
i.fa.fa-envelope-o { font-size: 21px; bottom: -4px; position: relative; }

.abs-box-bg span { color: #af3e37; }
.demo-btn-area { padding: 50px 0 50px; text-align: center; background-repeat: repeat; background-attachment: fixed; }
.demo-btn { padding: 8px 21px; margin-right: 20px; color: #f7f6f6; font-weight: 600; text-transform: uppercase; font-size: 15px; background-color: #e72216; }
.demo-btn:hover { background-color: #af3e37; color: #fff; text-decoration: none; border: none; }
.top-header i { color: #000 !important; }
.demo-btn-1 { padding: 8px 21px; margin-right: 20px; color: #fff; font-weight: 600; text-transform: uppercase; font-size: 15px; background-color: #000; }
.demo-btn-1:hover { background-color: #af3e37; color: #fff; text-decoration: none; border: none; }
.pricing-areas { position: relative; padding-top: 100px; }

@media (max-width: 767px) {
  .abs-box-bg { position: relative; top: 0; left: 0; height: 100%; }
  .tree-about { margin-bottom: 5px; }
  .demo-btn, .demo-btn-1 { display: block; width: 100%; }
  .demo-btn { margin-bottom: 60px; }
  .demo-btn-1 { margin-bottom: 30px; }
}

.country-select .country-list, .intl-tel-input .country-list { width: 225px; }
@media (max-width: 415px) { .country-select .country-list, .intl-tel-input .country-list { width: 322px; } }
@media (max-width: 380px) { .country-select .country-list, .intl-tel-input .country-list { width: 285px; } }
@media (max-width: 361px) { .country-select .country-list, .intl-tel-input .country-list { width: 270px; } }

/* Team */
.team-member, .team-member .team-img { position: relative; }
.team-member { overflow: hidden; }
.team-hover { position: absolute; top: 0; left: 0; bottom: 0; right: 0; margin: 0; border: 20px solid rgba(0, 0, 0, 0.1); background-color: rgba(255, 255, 255, 0.90); opacity: 0; transition: all 0.3s; }
.team-member:hover .team-hover .desk { top: 35%; }
.team-member:hover .team-hover, .team-member:hover .team-hover .desk, .team-member:hover .team-hover .s-link { opacity: 1; }
.team-hover .desk { position: absolute; top: 0%; width: 100%; opacity: 0; transform: translateY(-55%); transition: all 0.3s 0.2s; padding: 0 20px; }
.desk, .desk h4, .team-hover .s-link a { text-align: center; color: #222; }
.team-member:hover .team-hover .s-link { bottom: 50%; }
.team-hover .s-link { position: absolute; bottom: 0; width: 100%; opacity: 0; text-align: center; transform: translateY(45%); transition: all 0.3s 0.2s; font-size: 35px; }
.team-member .s-link a { margin: 0 10px; color: #333; font-size: 16px; }
.team-title { padding: 20px; letter-spacing: 2px; width: 100%; border: 1px solid #ddd; min-height: 154px; margin-bottom: 20px; display: grid; align-items: center; text-align: center; box-shadow: 0 8px 6px rgba(0,0,0,0.48); }
.team-title a { display: block; margin-top: 10px; }
.team-title h5 { margin-bottom: 0px; display: block; text-transform: uppercase; }
.team-title span { font-size: 12px; text-transform: uppercase; color: #a5a5a5; letter-spacing: 1px; }

ul.bullet-icon li { color: #433d3d; line-height: 32px; }
section.third-class-area ul li { color: #dcdbdb; }
.mlm-plan h2 { font-size: 1.75rem; text-align: center; margin-bottom: 30px; }

.onload-head h3 { font-size: 20px; font-weight: 400; }
.onload-head img { margin-right: 10px; }
.modal-dialog.width-modal { width: 26%; top: 56%; left: 38%; }
.onload-head a { color: #af3e37; text-decoration: none; }
.onload-head p { margin-bottom: 0; font-size: 14px; }

@media (max-width: 768px) { .modal.show .modal-dialog { display: none; } }
@media (max-width: 767px) {
  .modal-dialog.width-modal { width: 100%; top: 40%; left: 0; }
  .modal-dialog { margin: 0; }
  .modal.show .modal-dialog { display: none; }
}

.vdo-blog iframe { width: 100%; }
.new-pricing .plan-head { background: #eee; padding: 8px 15px; margin-bottom: 8px; }
.new-pricing .plan-head h3 { font-size: 1.3rem; font-weight: 600; margin: 0; }
.hand-icon { width: 20px; margin-right: 6px; }
.new-table { border: 1px solid #e8e8e8; margin-bottom: 30px; background: #fff; padding-bottom: 10px; }
.plan-area h5 { font-size: 17px; margin-left: 10px; font-weight: 400; margin-bottom: 18px; line-height: 30px; }
span.usd-price { color: #af3e37; margin-left: 10px; margin-right: 10px; }
span.text-br { text-decoration: line-through; opacity: .7; margin-left: 0; white-space: nowrap; }
.plan-area i { color: #8e8d8d; }
span.new-year { background-color: #e6161d; padding: 5px 7px; color: #fff; font-size: 14px; border-radius: 2px; margin-left: 10px; }
.open-cnt ul { padding-left: 15px; }
.faq-head { padding: 0 !important; border-bottom: 0px solid rgba(0,0,0,.125) !important; }
.faq-head button:hover { color: #af3e37; text-decoration: none; }
.faq-head button { color: #333; font-size: 20px; margin-left: 19px; }
.card { border-radius: 0rem !important; }
.new-table-right { position: sticky; float: left; width: 100%; height: auto; top: 100px; border: 1px solid #e8e8e8; margin-bottom: 30px; background: #fff; padding-bottom: 10px; }
.free-demo-area { text-align: center; margin-bottom: 15px; }
.free-demo-area a { padding: 8px 21px; margin-right: 20px; color: #fff; font-weight: 600; text-transform: capitalize; font-size: 15px; background-color: #000; }
.free-demo-area a:hover { color: #fff; }
.free-demo-right p { width: 90%; margin: 0 auto; text-align: center; margin-bottom: 20px; }
.schedule-free-demo a { color: #ffffff !important; background-image: linear-gradient(to right, #FF2500 0%, #FF7100 51%, #FF2500 100%); background-size: 200% auto; border-radius: 4px; transition: 0.5s; }
.schedule-free-demo a:hover { background-position: right center; color: #ffffff; }
.standerd-plan-not { width: auto; display: inline-block; position: relative; border-left: 40px solid #e00c13; padding: 15px 30px 0 20px; background: #ebecec; border-radius: 4px; box-shadow: 1px 2px 7px rgba(0,0,0,.2); }
.standerd-icon { position: absolute; left: -30px; top: 50%; margin-top: -13px; font-size: 15px; color: #fff; border: 1px solid rgba(255,255,255,.7); line-height: 0; width: 23px; height: 23px; border-radius: 50%; text-align: center; padding-top: 3px; }

/* Home Banner */
.home-banner-v2 { position: relative; padding-top: 90px; }
.banner-v2 { width: 100%; position: relative; display: grid; grid-template-columns: 70% auto; }
.banner-v2-cnt { background: #000 url(images/banner-usd.png) repeat; position: relative; z-index: 1; display: grid; align-items: center; clip-path: polygon(0% 0%, 70% 0%, 74% 50%, 70% 100%, 0% 100%); }
.banner-v2-cnt-area { color: #eee; text-align: left; max-width: 560px; margin-left: 9%; padding: 50px 0 50px; }
.banner-v2-cnt-area h1 { color: #ffc107; margin-top: 0; line-height: 40px; }
.home-banner-01 h1 { font-size: 30px; font-weight: 600; }
.home-banner-01 h2 { color: #fff; font-size: 17PX; }
.banner-v2-cnt-area p { color: #dbdde2; text-align: left; float: none; width: 100%; line-height: 22px; }
.home-banner-01 p { max-width: 100%; font-weight: 300; line-height: 30px; }
.home-banner-v2-button a { background: #ea4335; color: #fff; padding: 5px 20px; margin: 10px 3px 0; display: inline-table; border-radius: 2px; font-size: 14px; font-weight: 400; }
.banner-v2-img div, .banner-v2-img { height: 372px; }
.banner-v2-img { position: relative; z-index: 0; height: 100%; }
.banner-v2-img div { position: absolute; overflow: hidden; width: 170%; left: -70%; height: 100%; }
.banner-v2-img div img { position: relative; top: 0px; left: 0px; width: 100%; height: 100%; }
.home-banner-v2-button a:hover { background: #fff; color: #000; text-decoration: none; }

@media (max-width: 1024px) {
  .banner-v2-cnt-area { margin-left: 2%; max-width: 500px; }
  .home-banner-01 h1 { font-size: 25px; }
  .home-banner-01 h2 { font-size: 18PX; }
}
@media (max-width: 768px) {
  .home-banner-01 h1 { font-size: 25px; }
  .banner-v2-cnt-area { margin-left: 1%; max-width: 80%; text-align: center; }
  .home-banner-01 h2 { font-size: 18PX; }
  .home-banner-01 p { text-align: center; line-height: 21px; }
}
@media (max-width: 767px) {
  .banner-v2-cnt { clip-path: polygon(50% 0%, 100% 0, 100% 100%, 50% 100%, 0 100%, 0 0); }
  .banner-v2-img div, .banner-v2-img { height: auto; }
  .banner-v2-img div { top: -130px; }
  .banner-v2-img div img { margin: auto; display: block; left: auto; top: auto; }
  .banner-v2 { grid-template-columns: 1fr; }
  .banner-v2-cnt-area { margin: 25px 2% 50px 2%; max-width: 100%; text-align: center; }
  .home-banner-01 h1 { font-size: 30px; }
  .home-banner-01 h2 { font-size: 20PX; }
  .home-banner-01 p { text-align: center; }
  .home-banner-v2 { padding-top: 45px; }
  .navbar-nav img { width: 16px; }
}
@media (max-width: 680px) { .banner-v2-img div { top: -80px; height: 365px; } }
@media (max-width: 580px) { .banner-v2-img div { top: 0; height: auto; left: 0; width: 100%; } }

#cssmenu ul ul li img { width: 15px; }
.tree-width img { width: 100%; }
.mlm-img img { position: relative; z-index: 1; width: 100%; }
.dashboard-img { position: relative; padding-left: 30px; }
.dashboard-img img { width: 100%; border-radius: 2px; }
.mlm-plan { margin-bottom: 60px; }
.version-tag a { position: absolute; background-color: #1a9510; color: #ffff; padding: 5px 10px; line-height: 20px; left: 7%; top: -6%; font-size: 13px; box-shadow: 1px 1px 5px rgba(0,0,0,.3); text-align: center; align-items: center; text-shadow: 0px 0px 1px rgba(0,0,0,.5); transition: all .3s ease; z-index: 1; }
.version-tag a:hover { background-color: #264275; color: #fff; }
.text-area-3 h2 { color: #fff; }
.plan-work h2 { text-align: center; }
.mobile { display: none; }

@media (max-width: 767px) {
  .mobile { display: none; margin-bottom: 20px; }
  .mobile img { box-shadow: 0px 1px 15px rgba(0,0,0,.8); border-radius: 2px; }
  .desktop { display: none; }
  .reg-img { height: 541px; }
  .custom-register { padding: 90px 0 60px; }
  .reg-text h3 { font-size: 20px; }
  .reg-text p { width: 100%; }
  .link_widget { padding-left: 0px; }
  .version-tag a { left: 12%; top: -14%; }
}

section.mlm-software-plan { position: relative; padding: 50px 0; top: 72px; margin-bottom: 60px; }
.mlm-all-soft h4 { margin-top: 20px; margin-bottom: 20px; font-size: 19px; }
.mlm-all-soft { text-align: center; border: 1px solid #ddd; padding: 20px; position: relative; overflow: hidden; margin-bottom: 20px; min-height: 639px; }
.mlm-all-soft img { width: 70px; margin: 0 auto; }
.mlm-all-soft a { background-color: #af3e37; padding: 6px 15px; color: #fff; position: absolute; bottom: 12px; left: 13px; }
.mlm-all-soft-img { border: 2px solid #af3e37; width: 80px; height: 80px; display: grid; align-items: center; margin: 0 auto; }
.mlm-all-soft a:hover { color: #fff; }
.mlm-all-soft:before { position: absolute; content: ""; background-color: #f7f7f7; height: 350px; width: 350px; left: 50%; top: -11%; border-radius: 50%; transition: .7s; transform: translate(-50%,-50%); z-index: -1; }
.icon-soc { text-align: center; margin-bottom: 40px; }
i.fa.fa-whatsapp { color: #22d61f; }
.icon-soc h4 { font-weight: 400; font-size: 18px; }
.free-offer h1 { font-size: 25px; text-transform: uppercase; margin-bottom: 40px; color: #b33a30; font-weight: 700; }
.contact-address-text a { color: #c7c7c7 !important; }
.content-banner-new h1 { font-size: 30px; margin-bottom: 10px; }
.free-offer { text-align: center; }
i.fa.fa-envelope-o { color: #16a4f7; }

/* Modals */
.home-modal .modal-dialog { z-index: 9999; position: fixed; top: 73%; left: 8px; }
.home-modal .modal-body { background-color: rgba(255, 255, 255, 0.73); border-radius: 5px; }
.home-modal .modal-header { border-bottom: 0; padding: 16px 10px 0px; }
.home-modal .modal-header button { padding: 0; margin-top: 10px; margin-right: 15px; }
.home-modal p { margin-bottom: 0; }
button.close { color: #e80d0d; border: 1px solid #f31818 !important; width: 20px; height: 20px; border-radius: 20px; font-size: 14px; margin-top: 10px; z-index: 99; }
.modal-content { background-color: rgba(255, 255, 255, 0.75) !important; }
.modal-backdrop { z-index: -1 !important; display: none; }
.modal.show .modal-dialog { background-color: rgba(255, 255, 255, 0.75); }
.modal-open .modal { width: fit-content; height: fit-content; top: 70%; position: fixed; }

.home-bottom-button a { color: #FF2500; padding: 5px 0px; margin: 10px 3px 0; display: inline-table; border-radius: 2px; font-size: 16px; font-weight: 600; transition: 0.5s; }
.home-bottom-button a:hover { color: #FF7100; }
.home-bottom-button a i { position: relative; right: 0px; transition: all 0.3s ease; }
.home-bottom-button a:hover i { right: -6px; }

@media(max-width: 1024px) {
  .mlm-all-soft { min-height: auto; }
  .mlm-all-soft a { position: relative; left: 0; }
}
@media(max-width: 767px) {
  .mlm-all-soft { min-height: auto; }
  .icon-soc span { display: block; margin-bottom: 10px; }
  .home-modal .modal-dialog { display: block; }
  .third-class-area:before { width: 0; }
}

.box-grid h3 { display: inline-block; font-size: 18px; text-transform: capitalize; }
.box-grid span { display: inline-block; margin-right: 10px; }
.new-grid-marketing {
  box-shadow: 0px 0px 40px 0px rgba(0,0,0,.1); background: #fff; text-align: center;
  padding: 20px; border-radius: 15px; margin-bottom: 2rem; transition: all .2s linear;
  position: relative; overflow: hidden; z-index: 1; background-image: url(https://primemlmsoftware.com/wp-content/themes/prime-mlm-software/images/bg-prime.png);
  background-repeat: no-repeat; background-position: center; background-size: cover;
}
.question-bx.new-height.phone { background-image: url(https://primemlmsoftware.com/wp-content/themes/prime-mlm-software/images/bg-prime.png); background-repeat: no-repeat; background-position: center; background-size: cover; }
.new-grid-marketing:hover { box-shadow: 0 0.15rem 1.75rem 0 rgba(31,45,65,.1); transform: translateY(-10px); }
.box-grid { margin-bottom: 10px; }
.text-contnt p { margin-bottom: 0; }
.prime-btn a { background-color: #e72216; padding: 7px 15px; color: #fff; }

/* Main */
section.main-prime { position: relative; padding: 170px 0 60px; }
.prime-main-new { text-align: center; }
.prime-main-new h1 { font-size: 30px; font-weight: 600; }
.prime-main-new img, .text img { width: 60%; }
.prime-btn { margin-top: 15px; }
.prime-btn a:hover { color: #fff; text-decoration: none; }
section.tracking-system { position: relative; padding: 60px 0; background-color: #f7f7f7; }
.bullet-icon { padding: 0; margin-bottom: 5px; }
.bullet-icon li { list-style: none; position: relative; padding-left: 25px; }
.bullet-icon li:after { content: ""; position: absolute; left: 2px; top: 9px; width: 11px; height: 11px; border-radius: 100%; background-color: #2c3f73; }
.enabled-tracking-system h3, .prime-why-choose h3 { text-align: center; font-size: 30px; font-weight: 600; }
.enabled-tracking-system p, .prime-why-choose p { text-align: center; }
.text { margin-top: 20px; }
.why-choose-prime { position: relative; padding: 50px 0; }

/* Scap-New */
.scap-new {
  box-shadow: 0px 0px 40px 0px rgba(0,0,0,.1); background: #fff; padding: 20px;
  border-radius: 15px; margin-bottom: 2rem; transition: all .2s linear; position: relative;
  overflow: hidden; z-index: 1; background-image: url(https://primemlmsoftware.com/wp-content/themes/prime-mlm-software/images/bg-prime.png);
  background-repeat: no-repeat; background-position: center; background-size: cover; min-height: 598px;
}
section.new-sacp { position: relative; padding: 70px 0 60px; background-color: #f4f4f4; }
.scap-new-img img { width: 74px; }
.scap-new-img { text-align: center; }
.scap-new h3 { font-size: 22px; text-transform: uppercase; margin-top: 10px; text-align: center; }
.scap-new i { color: #af3e37; margin-right: 5px; }
.text h3 { text-align: center; }
@media (max-width: 767px) { .scap-new { min-height: auto; } }

.free-offer-1 h2 { font-size: 17px; text-transform: uppercase; margin-bottom: 0; color: #b33a30; font-weight: 700; text-align: center; }
.free-offer h2 { font-size: 25px; text-transform: uppercase; margin-bottom: 40px; color: #b33a30; font-weight: 700; }
.social-top-icons { text-align: right; }
.social-top-icons li { display: inline-block; margin-right: 20px; }
.social-top-icons ul { margin-bottom: 0; }

.sidenav { height: auto; width: 0; position: fixed; z-index: 9999; top: 53px; left: 0; background-color: #3d7aec; overflow-x: hidden; transition: 0.5s; padding: 40px 0 20px; }
span.btn-closer { position: fixed; z-index: 99; background-color: #e80e16; font-size: 16px; padding: 6px 11px; color: #fff; margin-top: 90px; cursor: pointer; left: -2px; border-radius: 0 30px 30px 0; }
.sidenav a { padding: 2px 15px; font-size: 14px; color: #fff; display: block; transition: 0.3s; cursor: pointer; }
.sidenav a i { margin-right: 6px; }
.sidenav a:hover { color: #f1f1f1; }
.sidenav .closebtn { position: absolute; top: 13px; right: 18px; font-size: 19px; margin-left: 50px; border: 2px solid #fff; border-radius: 50%; width: 21px; height: 21px; padding: 1px 2px; line-height: 11px; }

@media screen and (max-height: 450px) { .sidenav { padding-top: 15px; } .sidenav a { font-size: 18px; } }

section.demo-prime { padding: 60px 0; position: relative; top: 72px; margin-bottom: 50px; }
.demo-box { box-shadow: 0px 0px 40px 0px rgba(0,0,0,.1); background: #fff; padding: 35px 20px; border-radius: 15px; margin-bottom: 2rem; transition: all .2s linear; position: relative; background-image: url(https://primemlmsoftware.com/wp-content/themes/prime-mlm-software/images/bg-prime.png); background-repeat: no-repeat; background-position: center; background-size: cover; display: inline-flex; }
.demo-img img { width: 170px; margin-top: 25px; }
.dropdown.demo-btn-free button { font-size: 12px; background-color: #af3e37; border: none; color: #fff; font-weight: 500; }
.dropdown.demo-btn-free { display: contents; position: relative; }
.dropdown.demo-btn-free .dropdown-menu { padding: 0; font-size: 14px; }
.demo-btn-free.dropdown .dropbtn { cursor: pointer; font-size: 12px; background-color: #af3e37; border: none; color: #fff; font-weight: 500; padding: .375rem .75rem; border-radius: 3px; }
.dropdown-content { display: none; position: absolute; background-color: #fff; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; }
.dropdown-content a { color: black; padding: 5px 16px; display: block; font-size: 14px; }
.dropdown-content a:hover { background-color: #f1f1f1; }
.demo-btn-free.dropdown:hover .dropdown-content { display: block; }

.free-offer-1 h1 { font-size: 17px; text-transform: uppercase; margin-bottom: 0; color: #b33a30; font-weight: 700; }
.reg-text-1 p { text-align: center; width: 100%; margin: 0 auto; margin-bottom: 10px; margin-top: 10px; }
.risk-free-section { position: relative; padding: 40px 0 60px; }
.risk-free-image { text-align: center; margin-bottom: 45px; }
.risk-free-image img { width: 60%; }
.photo img { border-radius: 50%; width: 72px; margin-right: 20px; }
.testimonial-section { position: relative; padding: 20px 0 40px; top: 35px; }
.head h2 { text-align: center; margin-bottom: 40px; font-size: 30px; font-weight: 400; color: #333; font-family: 'Poppins', sans-serif; text-transform: capitalize; }
.award-box:hover { box-shadow: 0px 0px 40px 0px rgba(0,0,0,.1); background: #fff; }
.new-demo-btn a:hover { color: #fff; }
.award-box { border: 1px solid #ddd; padding: 10px; transition: all .2s linear; text-align: center; display: flex; justify-content: center; }
.award-section { position: relative; padding: 40px 0; background-color: #f4f4f4; border-bottom: 1px solid #ececec; }
.award-section .owl-nav { display: none; }
.top-header a { color: #af3e37; font-weight: 500; }
.social-top-icons a { color: #af3e37; }

@media (max-width: 768px) {
  .demo-box { display: block; }
  .demo-img { text-align: center; }
}
@media (max-width: 767px) {
  .free-offer-1 h2 { text-align: center; margin-top: 20px; }
  .risk-free-content { margin-top: 20px; }
}

/*** Prime Banner ***/
.prime-banner { background-color: #061b38; color: #fff; position: relative; overflow: hidden; width: 100%; height: 73vh; padding: 60px 0; top: 65px; z-index: 1; }
.prime-banner-container { display: grid; grid-template-columns: 5fr 5fr; grid-gap: 20px; align-items: center; }
.prime-banner-image img { position: absolute; left: -103px; bottom: -39px; height: 441px; width: auto; }
.prime-banner-content p { font-size: 16px; color: #fff; }
.prime-banner-content h1 { color: #fff; font-weight: 700; font-size: 35px; line-height: 47px; margin-bottom: 15px; }
.prime-btn a { background-color: #e72216; padding: 10px 20px; border-radius: 5px; color: #fff; font-size: 16px; }
.prime-mobile-banner { display: none; }
.new-version-tag { display: none; }

@media only screen and (min-width: 1600px) { .prime-banner-image img { left: 50px; bottom: -43px; height: auto; } .prime-banner { height: auto; } }
@media (max-width: 1200px) {
  section.prime-banner { height: auto; }
  .prime-banner-container { grid-template-columns: 1fr; text-align: center; }
  .prime-banner-image img { position: relative; left: 0; bottom: -71px; height: auto; margin-top: 0; width: 100%; }
}
@media (max-width: 767px) {
  .prime-banner-container { grid-template-columns: 1fr; text-align: center; grid-gap: 0; }
  section.prime-banner { padding: 60px 0; height: auto; }
  .prime-mobile-banner { display: block; }
  .prime-banner-content h1 { font-size: 25px; line-height: 40px; height: 92px; }
  .banner-2020mar-cnt5 h1 { font-size: 25px; margin-top: 23px; line-height: 40px; }
}

/* Pricing Page */
.pricing-top { padding-top: 120px; }
.pricing-all { justify-content: space-between; }
.pricing-box { width: 100%; position: relative; }
.pricing-box ul { padding: 35px; }
.pricing-box li { position: relative; margin-bottom: 10px; color: #fff; }
.wd-0 { width: 100%; }
.bg-cl-1 { background-color: #3DCAD4; }
.bg-cl-2 { background-color: #38A5FF; }
.bg-cl-3 { background-color: #AA81F3; }
.price-rate h2, .bascic-text h3, .bascic-text h3 a, .price-rate p { color: #fff; margin-bottom: 20px; }
.price-img { display: flex; justify-content: center; align-items: center; }
.price-img img { width: 170px; padding-right: 0; margin-bottom: 25px; }
.free-trial { margin-top: 30px; }
.free-trial a { background-color: #fff; padding: 5px 15px; border-radius: 5px; color: #ac7af7; font-weight: 500; }
.free-trial svg { fill: #ac7af7; }
.price-rate span { font-size: 25px; vertical-align: top; }
.end-sale-img img { animation: float-bob-x 2s linear infinite alternate; }

@keyframes float-bob-x {
  0% { transform: translateX(-20px); }
  50% { transform: translateX(-10px); }
  100% { transform: translateX(-20px); }
}

.whats-included-all { padding: 30px; border-radius: 5px; margin-top: 50px; }
.whats-included-box span { font-size: 18px; position: relative; font-weight: 700; }
.whats-included-box span:before { position: absolute; content: ""; width: 100%; height: 3px; background-color: #d77bfd; bottom: -10px; }
.whats-included-box li { margin-bottom: 6px; position: relative; padding-left: 25px; }
.whats-included-box li:before { position: absolute; content: "\f00c"; left: 0; color: #ff0707; font-family: 'FontAwesome'; }
.whats-included-area { position: relative; }
.whats-included-box { margin-bottom: 40px; }
.whats-included-box ul { margin-top: 30px; }
.most-area i { color: #ffe109; }
.most-area { background-color: #2a8bdb; padding: 10px 35px; width: 100%; bottom: 0; color: #fff; }
.paypal-image img { width: 350px; margin-bottom: 15px; margin-top: 40px; }

/* Mar 2020 Banners */
.home-banner-2020mar5 { background: #fff3f1; position: relative; overflow-x: hidden; padding-top: 45px; }
.banner-container-2020mar5 { display: grid; }
.banner-2020mar-img5 { order: 2; }
.banner-2020mar-img5 img { min-width: 100%; width: 100%; box-shadow: 0 1px 15px rgba(0,0,0,0.8); border-radius: 2px; }
.banner-2020mar-cnt5 { color: #333333; padding-bottom: 75px; position: relative; }
.banner-2020mar-cnt5 h1 { color: #333333; margin-bottom: 22px; }
.banner-2020mar-cnt5 a.banner-view-demo {
  background-image: linear-gradient(to right, #FF2500 0%, #FF7100 51%, #FF2500 100%);
  background-size: 200% auto; padding: 12px 30px; text-align: center; transition: 0.5s;
  color: #ffffff; box-shadow: 0 0 20px #eee; border-radius: 10px; display: inline-block; font-size: 20px; font-weight: 500;
}
.banner-2020mar-cnt5 a.banner-view-demo:hover { background-position: right center; }
a.banner-view-demo { background: #333; color: #fff; padding: 6px 15px; border-radius: 2px; margin-top: 10px; display: inline-block; }
a.banner-view-demo i:first-child { margin-left: 5px; }
.banner-bottom-2020mar5 { background: #dce1ea; min-height: 130px; display: grid; align-items: center; }
.banner-bottom-2020mar5 .container div { align-items: center; }
.banner-bottom-2020mar5 .container div h3 { font-size: 1.3em; font-weight: 600; margin-right: 10px; margin-bottom: 0; line-height: 1.5em; }
.banner-bottom-2020mar5 .container div a { background: #af3e37; color: #fff; padding: 6px 20px; border-radius: 2px; font-size: 18px; font-weight: 300; box-shadow: 0 0 5px rgba(255,255,255,0.8); }
.banner-bottom-2020mar5 .container div a i:first-child { margin-left: 5px; }
.banner-2020mar-cnt5 p { color: #333; }

.plan-banner-section{background-color:#fffaf9;background-image:linear-gradient(135deg,#fffaf9 0%,#fff1ed 50%,#ffe2db 100%)!important;padding-top:120px;padding-bottom:90px;position:relative;width:100%;height:auto;overflow:hidden;z-index:1}.plan-banner-section::after{content:"";position:absolute;right:-200px;top:-400px;width:1100px;height:1100px;border-radius:50%;background:rgba(255,113,0,.03);z-index:-1}.plan-banner-section::before{content:"";position:absolute;right:-160px;top:-380px;width:1000px;height:1000px;border-radius:50%;border:2px solid rgba(255,255,255,.8);z-index:-1}.network-pattern-bg{position:absolute;top:0;left:0;width:100%;height:100%;opacity:.7;background-image:radial-gradient(rgba(49,46,129,.15) 1.5px,transparent 1.5px);background-size:32px 32px;z-index:-1;pointer-events:none}.plan-banner{display:grid;grid-template-columns:1fr 1fr;align-items:center;grid-column-gap:50px;grid-row-gap:50px;position:relative;z-index:10}.plan-banner-cnt h1{font-size:2.5rem;color:#1e1b4b;line-height:1.2;font-weight:900;margin-bottom:1.5rem}.plan-banner-cnt p{font-size:1.2rem;line-height:1.7;margin-bottom:1.5rem}.text-gradient-custom{background-image:linear-gradient(135deg,#FF2500 0,#FF7100 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;color:transparent}.banner-buttons-wrapper{display:flex;gap:15px;margin-top:2rem;flex-wrap:wrap}.banner-button{padding:12px 25px;font-size:1.1rem;font-weight:700;border-radius:50px;text-decoration:none!important;transition:all .3s ease;display:inline-flex;align-items:center;justify-content:center}.btn-hero-primary{background:linear-gradient(135deg,#FF2500 0,#FF7100 100%);color:#fff!important;box-shadow:0 10px 20px -5px rgba(255,37,0,.4);border:none}.btn-hero-primary:hover{transform:translateY(-3px);box-shadow:0 15px 30px -5px rgba(255,37,0,.6)}.btn-hero-outline{background:#fff;color:#1e1b4b!important;border:1px solid rgba(34,197,94,.3);box-shadow:0 5px 15px rgba(0,0,0,.05)}.btn-hero-outline:hover{border-color:#22c55e;color:#16a34a!important;transform:translateY(-3px)}.plan-banner-form{position:relative}.hero-glow-blob{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:110%;height:110%;background-image:linear-gradient(to top right,rgba(255,113,0,.2),rgba(99,102,241,.2));filter:blur(60px);border-radius:50%;z-index:0;pointer-events:none}.hero-form-container{border:6px solid #fff;border-radius:2rem;backdrop-filter:blur(10px);box-shadow:0 40px 80px -20px rgba(49,46,129,.25),inset 0 0 0 1px #fff;padding:2rem;position:relative;z-index:10}@media(max-width:991.98px){.plan-banner{grid-template-columns:1fr;text-align:center}.banner-buttons-wrapper{justify-content:center}.plan-banner-section{padding-top:80px;padding-bottom:60px}}@media(max-width:575.98px){.plan-banner-cnt h1{font-size:2rem}.hero-form-container{border-width:4px;border-radius:1rem;padding:1.5rem}.banner-button{width:100%}}
.commonmlm, img.commonmlm { width: 100%; max-height: 100%; height: auto; }
.recognized { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.rec-head { text-align: center; }
.recognized .award-box { flex: 0 0 150px; }
.rating-award-box { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
.awardbox { flex: 0 0 150px; border: 1px solid #ddd; padding: 10px; }
.awardbox img { width: 100%; height: auto; }
img.wpcf7-captchac { width: auto; }

@media (min-width: 1366px) { .container.plan-banner { max-width: 1320px; } }
@media (min-width: 980px) { .plan-banner { grid-template-columns: 1fr 1fr; grid-column-gap: 50px; } }


@media (min-width: 1025px) { .banner-2020mar-img5 { margin-bottom: 0; margin-right: -125px; } }
@media (min-width: 769px) {
  .banner-container-2020mar5 { grid-template-columns: 10fr 9fr; grid-column-gap: 60px; align-items: end; margin-top: 60px; }
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .banner-container-2020mar5 { grid-template-columns: 1fr; text-align: center; }
  .banner-2020mar-img5 { margin-right: auto !important; max-width: 800px; margin-left: auto; margin-bottom: 50px; text-align: center; }
}
@media only screen and (min-width: 767px) and (max-width: 960px) { nav .menu-item-has-children ul { position: static; } }
@media only screen and (min-width: 575px) and (max-width: 960px) {
  .head-main1 { flex-wrap: wrap; justify-content: center; }
  .head-main1 font { font-size: 14px; text-align: center; line-height: 16px; margin-top: 8px; }
  .main-box-sec { margin-top: 0px !important; }
  .few-binary-box { padding-left: 0px; }
}
@media (max-width: 1200px) {
  .plan-tab { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; height: auto; margin-bottom: 15px; }
  .plan-tab .tabs__item { width: auto !important; padding: 6px 20px; }
}
@media (max-width: 1024px) {
  .banner-2020mar-img5 { margin-bottom: 47px; margin-right: 0; }
  .new-demo-sec a { padding: 10px 35px 10px 10px !important; }
  .new-demo-sec { padding-right: 0px !important; }
}
@media (max-width: 767px) {
  .rating-award-box { justify-content: center; }
  .banner-2020mar-cnt5 { text-align: center; color: #fff; padding-bottom: 30px; }
  .banner-bottom-2020mar5 .container div { display: inline-block; padding: 10px 0 22px; text-align: center; }
  .banner-bottom-2020mar5 .container div a { margin-top: 15px; display: inline-block; }
}
@media (min-width: 768px) {
  .pricing-all { display: flex; }
  .pricing-box { width: calc(100% / 3); }
  .most-area { position: absolute; }
  .banner-bottom-2020mar5 .container div h3 { max-width: 405px; }
  .banner-bottom-2020mar5 .container div { display: flex; }
  .chart-main { width: 900px; height: 500px; margin: 0 auto; }
}

.about-us-1 { background-repeat: no-repeat; background-size: cover; background-position: left; }
.register-new { padding-top: 60px; }
.google-rating-sec { padding-top: 30px; }
.new-demo-sec { left: 0; position: sticky; top: 123px; box-shadow: 10px 0 5px -7px #b3b2b2; padding-right: 4px; }
.new-demo-sec ul { display: block; text-align: center; margin: 0; padding: 0; }
.new-demo-sec li { display: block; text-align: left; }
.new-demo-sec a { display: block; color: #333; border-left: solid 4px transparent; padding: 10px 20px 10px 25px; position: relative; }
.new-demo-sec .active, .new-demo-sec a:hover { background: #fdeae9; color: #af3e37; border-left-color: #af3e37; }
.demo-new-sec p { font-size: 18px; line-height: 32px; }
.demo-new-sec { padding-top: 30px; }
.content-box { margin-top: 40px; }
.demo-new-sec h3 { color: #af3e37; margin-bottom: 15px; }
.google-rating-sec img { width: 130px; }
.button-deo-sec a { background-color: #e72216; margin-right: 10px; padding: 7px 18px; color: #fff; border-radius: 50px; }
.button-deo-sec a:hover { background-color: #91342d; }
.button-deo-sec { display: flex; align-items: center; margin-top: 20px; justify-content: center; margin-bottom: 30px; }
.learn-more-demo { background-color: #788189 !important; }
.learn-more-demo:hover { background-color: #b2b9be !important; }
.demo-user { background-color: #635bff !important; }
.demo-user:hover { background-color: #514acc !important; }
.tree-icon { text-align: center; margin-top: 20px; }
.link-demo-sec { display: flex; box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1); padding: 20px; max-width: 379px; border-radius: 10px; width: 100%; margin: 0 auto 25px; border: 1px solid #af3e37; }
#MLMSoftware a { color: #af3e37; }
.award-box a { display: flex; align-items: center; justify-content: center; }
.demo-testimonial-section { margin-bottom: 20px; }
.link-demo-sec .link-demo { margin-right: 19px; display: flex; align-items: center; }
.link-demo-sec .link-demo:last-child { margin-right: 0; }
.link-demo .fa-skype { color: #3992ef; font-size: 23px; bottom: -4px; position: relative; }
.link-demo .fa-whatsapp { color: #22d61f; }
.link-demo i { margin-right: 10px; }
.link-demo a { color: #333; }
.rating-nde-sec { display: flex; justify-content: space-between; }
.rating-nde-sec .award-box { width: calc((100% - 20px) / 4); }
.award-box img { width: 150px; }
.contact-new-demo { padding-top: 20px; }
.contact-new-demo h3 { font-size: 20px; padding-bottom: 10px; border-bottom: 1px solid #ddd; }
.contact-new-demo li { display: flex !important; align-items: center; }
.contact-new-demo a:hover { background: transparent; color: #af3e37; border-left-color: transparent; }
.test-demo { margin-top: 20px; }
.test-demo a { padding-left: 0 !important; }
.new-demo-sec a:before { position: absolute; content: "\f061"; right: 17px; top: 14px; font: normal normal normal 14px/1 FontAwesome; color: #7c7a7a; }
.text-contact a:before, .test-demo a:before { display: none; }
.main-block-content pre { font-size: 15px; }

@media (max-width: 767px) {
  .link-demo-sec, .button-deo-sec, .rating-nde-sec { flex-direction: column; }
  .link-demo-sec .link-demo { margin-right: 0; margin-bottom: 20px; }
  .button-deo-sec a { width: 100%; text-align: center; margin-bottom: 10px; }
  .google-rating-sec { text-align: center; }
  .testimonial-box { margin-bottom: 20px; }
  .test-demo { display: none; }
  .rating-nde-sec { align-items: center; }
  .rating-nde-sec .award-box { width: 100%; margin-bottom: 10px; }
}
@media (max-width: 992px) {
  .link-demo-sec { flex-direction: column; max-width: 250px; }
  .link-demo-sec .link-demo { margin-right: 0; margin-bottom: 20px; display: flex; }
  .button-deo-sec { flex-wrap: wrap; }
  .button-deo-sec a { width: calc((100% - 20px) / 2); margin-bottom: 20px; text-align: center; }
  .tabs__item { width: 23%; }
}

/* Unique Binary */
.uniq-feature-main-sec, .few-binary-main-sec, .how-binary-mlm-main-sec, .benifits-of-mlm-soft-main-sec { position: relative; padding: 60px 0; }
.new-head-sec { margin-bottom: 30px; }
.new-head-sec h1, .new-head-sec h2, .mlm-adon h2 { font-size: 30px; text-align: center; line-height: 42px; font-weight: 600; color: #000; }
.color-red { color: #e72216; }
.inner-unique-sec h3 { font-size: 20px; color: #fff; margin-bottom: 20px; }
.inner-unique-sec p { margin-bottom: 0; font-size: 16px; color: #fff; line-height: 25px; }
.unique-grid { background-color: #061b38; padding: 35px 20px; border-radius: 5px; position: relative; }
.inner-unique-sec { padding: 20px; border: 1px solid #fff; border-radius: 5px; transition: all 0.2s linear; min-height: 472px; }
.few-binary-main-sec .tabs { top: 0; height: auto; margin-top: 0; width: 100%; display: block; }
.inner-unique-sec:hover { background-color: #061b38; }
.inner-unique-sec:hover p, .inner-unique-sec:hover h3 { color: #fff; }
.unique-grid .owl-dots, .slider-sec .owl-dots, .what-people-say-main-sec .owl-dots { display: none; }
.unique-grid .owl-carousel .owl-nav button.owl-prev, .unique-grid .owl-carousel .owl-nav button.owl-next { width: 40px; height: 40px; background-color: #e72216; border-radius: 40px; font-size: 40px; position: absolute; top: 40%; color: #fff; }
.unique-grid .owl-carousel .owl-nav button.owl-prev { left: -48px; }
.unique-grid .owl-carousel .owl-nav button.owl-next { right: -48px; }
.unique-grid .owl-carousel .owl-nav button.owl-prev span, .unique-grid .owl-carousel .owl-nav button.owl-next span { position: relative; top: -15px; }
.inner-unique-sec img { width: 70px !important; height: 70px; background-color: #061b38; padding: 10px; border-radius: 4px; margin-bottom: 15px; }
.slider-image-main-sec { position: relative; }
.col-sm-6.slider-pos { position: absolute; top: 15%; left: 60%; transform: translate(-50%, -50%); }
.slider-sec .owl-carousel .owl-nav button.owl-prev, .slider-sec .owl-carousel .owl-nav button.owl-next { width: 30px; height: 29px; background-color: #061b38; border-radius: 40px; font-size: 30px; position: absolute; top: 40%; color: #fff; }
.slider-sec .owl-carousel .owl-nav button.owl-prev { left: -29px; }
.slider-sec .owl-carousel .owl-nav button.owl-next { right: -29px; }
.few-binary-box .head-main { display: flex; align-items: center; font-size: 20px; color: #000; font-weight: 500; }
.head-main img { width: 40px; margin-right: 10px; }
.few-binary-box { box-shadow: 0 2px 28px rgba(0,0,0,0.07); transition: all 0.5s ease; display: flex; align-items: center; height: 120px; justify-content: flex-start; padding-left: 20px; border: 1px solid rgba(0,0,0,.125); cursor: pointer; }
.mb-20 { margin-bottom: 25px; }
.few-binary-box:hover, .benifits-of-mlm-box:hover { box-shadow: 0 10px 35px rgba(0,0,0,0.25); background: #f3f8ff; }
.commom-box-sec { box-shadow: 0 2px 2px rgba(36,50,66,.12); transition: transform .3s, box-shadow .6s; border: 1px solid rgba(0,0,0,.125); }
.few-binary-main-sec .tabs .active { position: relative; background-color: #fff; }
.main-box-sec { box-shadow: 0 2px 2px rgba(36,50,66,0.12); padding: 20px; border: 1px solid #fff; height: 100%; background-color: #011435; color: #fff; }
.few-binary-main-sec .row { padding: 30px; }
.main-box-sec p { font-size: 16px; color: #fff; }
.how-binary-mlm-main-sec { background-color: #061b38; }
.how-binary-mlm-main-sec h2, .new-head-sec p { color: #fff; }
.benifits-of-mlm-soft-main-sec { background-color: #ecf7fe; }
.benifits-of-mlm-box-section { display: flex; flex-wrap: wrap; gap: 30px; padding-top: 48px; }
.benifits-of-mlm-box { flex: 1 0 350px; text-align: center; box-shadow: 0 2px 28px rgba(0,0,0,0.07); padding: 20px; padding-bottom: 20px; transition: all 0.5s ease; height: auto; border-radius: 8px; }
.benifits-of-mlm-box img { width: 60px; margin-bottom: 10px; }
.head-box { background: #061b38; font-size: 14px; border-radius: 30px; padding: 4px 15px; color: #fff; font-weight: 500; margin-bottom: 10px; }
.benifits-of-mlm-box h3 { font-size: 20px; color: #000; margin-bottom: 10px; }
.benifits-of-mlm-box p { margin-bottom: 0; font-size: 15px; line-height: 26px; }
.gird-flex { display: flex; align-items: center; }
.client-men img { width: 165px; }
.client-sec p { font-size: 16px; }
.what-people-say-main-sec { background-color: #061b38; position: relative; padding-bottom: 30px; padding-top: 60px; }
.what-people-say-main-sec h3, .what-people-say-main-sec p { color: #fff; }
.what-people-say-main-sec .owl-carousel .owl-nav button.owl-prev, .what-people-say-main-sec .owl-carousel .owl-nav button.owl-next { width: 40px; height: 40px; background-color: #061b38; border-radius: 40px; font-size: 40px; position: relative; top: 40%; color: #fff; }
.what-people-say-main-sec .owl-carousel .owl-nav button.owl-prev span, .what-people-say-main-sec .owl-carousel .owl-nav button.owl-next span { position: relative; top: -15px; }
.slider-sec .owl-carousel .owl-nav button.owl-prev span, .slider-sec .owl-carousel .owl-nav button.owl-next span { position: relative; top: -12px; }
.why-do-you-need-new-sec { position: relative; padding-bottom: 40px; padding-top: 120px; }
.unique-grid .owl-nav { display: block; }
.why-do-you-need-new-sec h1 { margin-bottom: 50px; }
.how-binary-mlm-left p { font-size: 17px; line-height: 30px; }
.how-binary-mlm-left h2 { font-size: 35px; color: #000; margin-bottom: 20px; }
.page-center { display: grid; align-items: center; }
.open-cart-sec { padding-top: 40px; padding-bottom: 40px; }
.few-binary-main-sec { background-color: #ecf7fe; }
.new-demo-btn a { background-color: #e72216; padding: 10px 15px; border-radius: 4px; color: #fff; font-weight: 500; font-size: 16px; }
.new-demo-btn a:hover { background-color: #be1c13; }
.new-demo-btn { display: flex; align-items: center; justify-content: center; margin-top: 40px; }
.few-binary-main-sec .tabs .active:before { position: absolute; content: ""; width: 100%; height: 5px; top: 0; left: 0; background-color: #e72216; }
.risk-free-section .award-box { height: 170px; }

@media screen and (max-width: 767px) {
  .unique-grid .owl-carousel .owl-nav button.owl-prev, .unique-grid .owl-carousel .owl-nav button.owl-next { position: relative; left: 0; right: 0; }
  .slider-sec { display: none; }
  .what-people-say-main-sec { background: #061b38; }
  .main-box-sec { height: auto; margin-bottom: 20px; margin-top: 20px; }
  .benifits-of-mlm-box { height: auto; }
  .about-client-sec .owl-nav { display: block; }
}

@media (max-width: 960px) { .plan-tab .tabs__item { display: none; } }

/* Start Home page new 2023 */
@media (min-width: 1200px){ .container { max-width: 1240px !important; } }
body, html { width: 100%; height: auto; overflow-x: hidden; }
nav li a { font-size: 16px; }
.poppins { font-family: 'Poppins', sans-serif !important; font-size: 16px; line-height: 1rem; font-weight: 400; color: #333333; }
.poppins p, .poppins span, .poppins li, .poppins div, .poppins label { color: #333333; }
.prime-colour { color: #2966BE !important; }
.scond-colour { color: #ff3900 !important; }
.block { display: block; }
.font-weight-300 { font-weight: 300; }
.font-weight-500 { font-weight: 500; }
.relative { position: relative; }
.poppins h1, .poppins h2, .poppins h3, .poppins h4, .poppins h5, .poppins h6 { font-family: 'Poppins', sans-serif !important; font-weight: 700; color: #333333; } 
.ceo .owl-nav, .clients .owl-nav { display: none; }
.button, a.button, button.button {
  background-image: linear-gradient(to right, #FF2500 0%, #FF7100 51%, #FF2500 100%);
  background-size: 200% auto; padding: 20px 30px; text-align: center; transition: 0.5s;
  color: #ffffff; box-shadow: 0 0 20px #eee; border-radius: 10px; display: inline-block; font-size: 20px; font-weight: 500;
}
.button:hover, a.button:hover { background-position: right center; color: #ffffff; transition: 0.5s; }
.button:focus, .button:hover:focus { background: #FF2500; background-image: linear-gradient(to right, #FF2500 0%, #FF2500 51%, #FF2500 100%); color: #ffffff; }
.head-social {
  display: flex; z-index: 999; align-items: center; gap: 6px; flex-direction: column;
  position: fixed; right: 0px; top: 50%; background: #fff; box-shadow: 0px 0px 14px rgba(0,0,0,0.18);
  border-radius: 8px 0px 0px 8px; padding: 3px 5px 3px 9px;
}
.head-social i.fa-skype { font-size: 33px; }
.head-social i.fa-whatsapp { font-size: 35px; position: relative; }
.banner { width: 100%; padding: 120px 0 90px; background: #fff3f1; position: relative; overflow: hidden; }
.banner::after { content: ""; position: absolute; right: -202px; top: -410px; width: 1100px; height: 1100px; border-radius: 100%; background: rgba(255, 42, 0, 0.12); z-index: 2; }
.banner::before { content: ""; position: absolute; right: -162px; top: -390px; width: 1000px; height: 1000px; border-radius: 100%; border: 1px solid #fff; z-index: 3; }
.banner .container { display: grid; grid-template-columns: 10fr 10fr; align-items: center; position: relative; z-index: 4; }
.banner-img img { width: auto; }
.banner-content h1 { font-size: 3.15rem; line-height: 3.75rem; color: #333333; font-weight: 700; margin-bottom: 17px; position: relative; z-index: 2; }
.banner-content p { font-size: 18px; color: #333; margin-bottom: 32px; }
.captcha p { margin-bottom: 0px !important; }
.recognized-mlm { padding: 50px 0 60px; text-align: center; background-repeat: no-repeat; background-size: cover; }
.recognized-mlm h2 { font-size: 24px; font-weight: 600; margin-bottom: 28px; margin-top: 14px; color: #404040; letter-spacing: 0.5px; }
section.rating-area { position: relative; padding: 20px 0 40px !important; }
.sosugt { display: flex; justify-content: center; gap: 20px; align-items: center; }
.sosugt div img { max-height: 180px; width: auto !important; max-width: 100%; margin: auto; }
.sosugt > div, .partner > div { flex: 0 0 200px; }
.partner { display: flex; justify-content: center; gap: 20px; }
.about { padding: 50px 0 100px; position: relative; }
.about::after { content: ""; right: 0; top: -300px; width: 1000px; height: 900px; background-image: url(images/service-bg.webp); background-repeat: no-repeat; background-size: cover; position: absolute; z-index: 0; opacity: 0.5; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; position: relative; z-index: 2; }
.about h2, .major-mlm-cnt1 h2 { font-size: 40px; font-weight: 700; line-height: 1.3; margin-bottom: 20px; }
.major-mlm-cnt1, .container.major-mlm-cnt1, .affordable-cnt1 { max-width: 1024px !important; text-align: center; margin: 0 auto; }
.affordable p { max-width: 1024px; margin: auto; }
.affordable h2 { font-weight: 700; margin-bottom: 16px; font-size: 40px; }
.affordable-div { width: 100%; margin-top: 24px; margin-bottom: 24px; display: inline-block; border-radius: 8px; overflow: hidden; height: auto; }
.affordable-img { float: none !important; width: 100%; padding: 0 !important; height: auto; display: inline-block; object-fit: cover; max-width: 100% !important; } 
.PayPal { text-align: center; padding: 50px 0; }
.PayPal-img { max-width: 440px; }
.PayPal-cnt1 h6 { font-size: 24px; margin-bottom: 24px; }
.add-On-cnt { max-width: 980px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin: auto; align-items: start; }
.addOn-cnt { padding: 24px 18px 6px; }
.addOn-cnt p { line-height: 28px; }
.addOn { border-bottom: 5px solid #ff3900; box-shadow: 0px 0px 50px rgba(0,0,0,0.3); border-radius: 8px; overflow: hidden; margin-top: 25px; margin-bottom: 25px; display: inline-block; background: rgba(255,255,255,0.9); }
.addon-title { margin-left: -100px; }
.addOn-img { display: grid; grid-template-columns: 100px 1fr; gap: 10px; align-items: center; }
.addOn-img img { width: 90px; height: 90px; }
.addOn-img h3 { line-height: 2.25rem; font-size: 1.60rem; }
.ceo { padding: 150px 0 50px; background-image: url(images/work-bg2.webp); background-repeat: no-repeat; background-size: cover; }
.ceo .container { overflow: hidden; }
.ceo-cnt { max-width: 600px; }
.ceo-cnt h2 span { font-size: 71px; font-weight: 100; display: block; font-style: italic; color: #b18e81; margin-bottom: -21px; }
.ceo-cnt p { font-style: italic; }
.ceo-details { display: grid; grid-template-columns: 100px 1fr; gap: 15px; align-items: center; }
.ceo-details div:first-child { border-radius: 100%; overflow: hidden; }
.clients { padding: 60px 0; }
.clients > .container h3 { color: #333; font-size: 28px; text-align: center; font-weight: 700; margin-bottom: 30px; }
.client-slider .owl-stage { display: flex; align-items: center; }
.client-box img { max-height: 100px; width: auto !important; max-width: 100%; margin: auto; }
.rvvv { margin: 12px; }
.major-mlm { position: relative; background: #f3f8ff; padding: 70px 0; }
.major-mlm-cnt2 .tabs__item { width: auto; display: inline-block; float: none; font-weight: 500; border: 0; padding: 8px 32px; border-radius: 2px 2px 8px 8px; margin: 0 10px; font-size: 16px; background-color: #ffe7e3; color: #444; transition: 0.5s; }
.tabs__item--active, .tabs__item--active:hover, .tabs__item:hover { background-image: linear-gradient(to right, #FF2500 0%, #FF7100 51%, #FF2500 100%); background-size: 200% auto; color: #fff !important; }
.tabs__item:hover { background-position: right center; }
.major-mlm-cnt2 .tabs { text-align: center; top: 0; position: relative; margin-bottom: 20px; }
.container-1 { box-shadow: 0px 0px 150px rgba(0,0,0,0.05); max-width: 1024px !important; border-radius: 12px; padding: 0 24px 38px; background: rgba(255,255,255,0.5); margin: auto auto 50px; }

.shape2 { position: absolute; top: 30%; right: 3%; animation: rotated360 6s infinite linear; }
@keyframes rotated360 { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }

.affordable { padding: 60px 0 30px; }
.tab__content { width: 90%; }
.head-class h2 { text-align: left; font-size: 26px; font-weight: 700; }
.pricing-areas .container-1 .tab__content { width: 100%; }
.head-class p { text-align: left; }
.faq { text-align: center; }
.faq h2 { font-weight: 700; margin-bottom: 24px; }
.faq .card { margin-bottom: 12px; border-radius: 8px !important; border: 1px solid rgba(0,0,0,0.1); text-align: left; }
.faq .card-header { border-bottom: 0; }
.faq .card-footer, .faq .card-header { padding: 0.50rem 1rem; background-color: rgba(0,0,0,.01); }
.faq .btn { font-size: 18px; color: #333; font-weight: 600; text-decoration: none !important; }
.faq .btn:hover { text-decoration: none; }
.benifits-of-mlm-box ul li { margin-top: 15px; }
.add-On { background: #f7f7f7; padding: 80px 0; }
.affordable-tab .tab ul li { display: inline-block; margin-right: 15px; margin-bottom: 15px; padding-right: 15px; font-weight: 500; }
.footer-contact-section { padding: 50px 0; background: #fff3f1; margin-top: 50px; }
.footer-contact { padding: 10px 0; border-radius: 12px; text-align: center; }
.footer-contact h3 { max-width: 680px; margin: auto; margin-bottom: 30px; font-weight: 700; margin-top: 15px; font-size: 38px; }
.footer-contact .button { padding: 15px 30px !important; }
.contact-banner.banner-wrapper.inner-wrapper { top: 0; }
.contact-banner .banner-text { text-align: center; }
.contact-banner .banner-text h2 { font-weight: 700; margin-top: 50px; }
.contact-banner .banner-text p { margin-top: 10px; font-weight: 500; color: #333; }
.contact-social { display: flex; align-items: center; justify-content: center; gap: 30px; }
.contact-social i.fa-skype { font-size: 46px; }
.contact-social i.fa-whatsapp { font-size: 50px; }
.contact-form { max-width: 800px; margin: auto; padding-top: 20px; }
.contact-form h3 { font-weight: 700; text-align: center; margin-top: 30px; }
.banner-wrapper.inner-wrapper.contact-banner:after { display: none; }
.banner-img { position: relative; }
.about-client-sec .owl-dots { margin-top: 20px; }
.sosugt-slider .owl-stage { display: flex; align-items: center; column-gap: 10px; }
.sosugt-slider .owl-item img { height: auto !important; }
.rating-slider .owl-stage { display: flex; align-items: center; column-gap: 30px; margin-top: 30px; }
.rating-slider .owl-item img { height: auto !important; }
.rating-slider .owl-nav, .sosugt-slider .owl-nav { display: none; }
.rating-slider .owl-dots { bottom: -26px; position: relative; }
.banner-mobile { display: none; }   

.client-box { text-align: center; }
.client-logos { width: 180px; height: 70px; background-image: url('images/client-logos.png'); margin: auto; }
.client-logo1 { background-position: -10px -100px; }
.client-logo2 { background-position: -211px -10px; }
.client-logo3 { background-position: -10px -10px; }
.client-logo4 { background-position: -211px -100px; }
.client-logo5 { background-position: -10px -190px; }
.client-logo6 { background-position: -210px -190px; }
.client-logo7 { background-position: -10px -280px; }
.client-logo8 { background-position: -210px -280px; }

@media (min-width: 1200px) {
  .faq .container { max-width: 1024px !important; }
  .add-On { padding-bottom: 225px; }
  .PayPal { margin-top: -144px; padding-bottom: 30px; }
  .banner-img { position: relative; height: 600px; }
  .banner-img img { left: 45px; top: 0; position: absolute; width: auto; }
  .rating-slider .owl-dots, .sosugt-slider .owl-dots { display: none; }
}
@media (min-width: 991px) {
  .home-banner-2020mar5 { padding-top: 65px; padding-bottom: 50px; }
  .pricing-areas .container-1 { max-width: 100% !important; box-shadow: none; background: transparent; padding: 0; }
  .pricing-areas .container-1 .tabs__item { font-size: 16px; border: 0; border-radius: 4px; padding: 10px 11px; }
}
@media (min-width: 576px) {
  .prime-mlm-ease .bhoechie-tab-menu { width: 100% !important; max-width: 100%; text-align: center; }
  .prime-mlm-ease .bhoechie-tab-menu .list-group { display: inline-block; text-align: center; }
  .prime-mlm-ease .bhoechie-tab-menu .list-group a { display: inline-block; text-align: center; }
  div.bhoechie-tab-menu div.list-group>a.active:after, div.bhoechie-tab-menu div.list-group>a:hover:after { left: 50%; top: auto; bottom: -19px; margin-left: -6px; border-left: 10px solid #ff7107; transform: rotate(90deg); }
  .prime-mlm-ease .bhoechie-tab-container { margin: auto; display: inline-block; text-align: center; max-width: 1024px; }
  .prime-mlm-ease .bhoechie-tab { margin: auto; display: inline-block; max-width: 100%; width: 100%; }
  .prime-mlm-ease .bhoechie-tab-content h3 { font-size: 1px; color: transparent !important; }
  .ceo { padding-top: 180px; margin-top: -80px; }
}
@media (max-width: 1366px) {
  .banner .container { grid-template-columns: 8fr 10fr; }
  .banner::after { right: -202px; top: -269px; width: 950px; height: 950px; }
  .banner::before { right: -203px; top: -308px; width: 900px; height: 900px; }
}
@media (max-width: 1200px) {
  .banner .container { grid-template-columns: 1fr; text-align: center; max-width: 800px; }
  .banner-img { max-width: 600px; margin: auto; }
  .banner-img img { width: 100%; margin-top: 50px; }
  .banner { padding: 115px 0 50px; }
  .banner-content h1 { font-size: 2.75rem; line-height: 3.0rem; }
  .about .container { grid-template-columns: 1fr; text-align: center; }
  .banner::after { right: -202px; top: -269px; width: 750px; height: 750px; }
  .addon-title { margin-left: 0px; }
  .add-On-cnt { gap: 40px; }
  .ceo-details { max-width: 304px; text-align: left; margin: auto; align-items: center; }
  .ceo { padding: 100px 0; }
  .faq .btn { white-space: normal; }
  .sosugt { flex-wrap: wrap; }
  .about div img { max-width: 500px; }
  .add-On-cnt-right .mt-30 { text-align: center; }
}
@media (max-width: 992px) {
  .ceo .col-sm-6 { width: 100% !important; flex: 0 0 100%; max-width: 100%; margin: 30px auto; text-align: center; }
  .ceo-cnt { max-width: 100%; }
  .container-1 { padding: 24px 24px 38px; margin-top: 24px; }
  .add-On-cnt { grid-template-columns: 1fr; gap: 0; }
  .tabs.plan-tab { display: none; }
  .affordable-tab .plan-tab, .affordable-tab .tab { width: 100%; padding: 12px; }
  .tab__drawer, h3.tab__drawer { background-color: #ffffff; font-weight: 400 !important; font-size: 16px; border-radius: 4px; padding: 15px; box-shadow: 0px 0px 4px rgba(0,0,0,0.3); margin: 14px auto 13px; width: 96%; color: #7c7c7c; }
  .tab__drawer--active, h3.tab__drawer--active { background-image: linear-gradient(to right, #FF2500 0%, #FF7100 51%, #FF2500 100%); background-size: 200% auto; color: #ffffff; font-weight: 500 !important; }
  .banner-desktop { display: none; }
  .banner-mobile { display: block; } 
  .banner-img .banner-block2 { display: none; }
  .major-mlm-cnt2 .tab__content > .row { display: block; text-align: center; }
  .major-mlm-cnt2 .tab__content > .row > div { width: 100%; max-width: 100%; } 
  .major-mlm-cnt2 .tab__content > .row > div img { width: 100%; max-width: 250px; margin: auto; display: inline-block; float: none; } 
  .addOn { display: block; max-width: 480px; margin: auto; }
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  nav li a { font-size: 14px; }
  body .container, .container { max-width: 90% !important; }
  .addon-title { margin-left: 0px; }
  .pricing-areas .container-1 .tabs { text-align: center; }
  .pricing-areas .container-1 .tabs__item { font-size: 16px; width: auto; float: none; display: inline-block; }
}
@media (max-width: 768px) {
  .pricing-areas .container-1 .tab__content { padding-top: 10px; width: 96%; }
  .pricing-areas .container-1 .pricing-all { display: block; }
  .pricing-areas .container-1 .pricing-box { width: 100%; }
}
@media (max-width: 767px) {
  .pricing-areas .container-1 { padding: 16px 6px; }
  .about h2, .major-mlm-cnt1 h2, .affordable h2, .add-On h2, .ceo h2, .faq h2, .prime-mlm-ease h2 { font-size: 32px; }
  .faq .btn { font-size: 16px; }
  body, html { overflow-x: hidden; height: auto; }
  .ceo { padding: 10px 0; background-image: none; }
  .affordable { padding: 70px 0 0; }
  .affordable-tab { margin-bottom: 10px; }
  .banner-wrapper.inner-wrapper.contact-banner { padding-bottom: 50px; }
}
@media (max-width: 480px) {
  .head-social { display: none; }
  .banner-img { padding: 0 12px; }
  .banner-img img { width: 100%; box-shadow: 0px 0px 14px rgba(10,10,10,0.1); border-radius: 8px; }
  .about { padding: 0 0 30px; }
  .about .container > div:first-child { padding: 0 0 30px; }
  .head-class h2, .head-class p { text-align: center; }
  .home-bottom-button, .prime-mlm-ease { text-align: center; }
  div.bhoechie-tab-menu div.list-group > a, .bhoechie-tab-content { text-align: center !important; }
  .bhoechie-tab-content h3 { margin-top: 10px; text-align: center !important; }
  .addOn { margin: 10px 0; box-shadow: 0px 0px 14px rgba(0,0,0,0.2); }
  .PayPal-cnt1 h6 { font-size: 18px; }
  .about h2, .major-mlm-cnt1 h2, .affordable h2, .add-On h2, .ceo h2, .faq h2, .prime-mlm-ease h2 { font-size: 26px; }
  .banner-content p { font-size: 16px; }
  p { font-size: 1rem; line-height: 29px; }
  .col-sm-12.rate-head { display: table; }
  .contact-icon { grid-template-columns: 1fr; row-gap: 0; }
  .add-btn.contact-btn { width: 100%; text-align: center; }
  .office-city { box-shadow: none; padding: 15px; max-width: 800px; margin: 0 auto; border-radius: 8px; }
  .captcha { max-width: 100%; width: 100%; }
  .banner::after { background: rgba(255, 42, 0, 0.05); }
  .major-mlm { padding: 48px 0 70px; }
  .add-On { background: #f7f7f7; padding: 48px 0; text-align: center; }
  .PayPal { padding-bottom: 10px; }
  .ceo-cnt h2 span { margin-bottom: -2px; }
  .prime-mlm-ease { padding-bottom: 10px; }
  .clients .owl-dots { margin-top: 30px; }
  .footer-contact h3 { font-size: 28px; }
}

/* Scrollbar Customization */
.affordable-tab::-webkit-scrollbar-track, *::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #F5F5F5; border-radius: 10px;
}
.affordable-tab::-webkit-scrollbar { width: 10px; background-color: #F5F5F5; }
*::-webkit-scrollbar { width: 7px; background-color: #F5F5F5; }
.affordable-tab::-webkit-scrollbar-thumb, *::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: linear-gradient(left bottom, left top, color-stop(0.44, rgb(122,153,217)), color-stop(0.72, rgb(73,125,189)), color-stop(0.86, rgb(28,58,148)));
}

/* Animations */
.animation-block { width: 100px; height: 100px; border-radius: 50%; position: absolute; margin: 50px; display: inline-block; left: -78px; top: -70px; }
.beacon-1:before, .beacon-1:after { content: ""; display: block; width: 100px; height: 100px; border-radius: 50%; position: absolute; top: 0; left: 0; animation: beacon 2.4s linear 0.6s infinite; }
.beacon-1:before { background: rgba(255, 40, 0, 0.2); }
.beacon-1:after { background: rgba(255, 40, 0, 0.1); animation: beacon 1.8s linear infinite; }

@keyframes beacon {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.banner-img .banner-block1 { animation: hero-thumb-animation 4s linear infinite alternate; }
@keyframes hero-thumb-animation {
  0% { transform: translateY(-20px); }
  to { transform: translateY(0); }
}

.banner-img .banner-block2 {
  height: auto; width: 150px; border-radius: 4px; position: absolute; top: 50px; right: -50px; left: auto;
  animation: hero-thumb-sm-animation 4s linear infinite alternate; box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
  border-radius: 7px; background-size: cover; background-repeat: no-repeat;
}
@keyframes hero-thumb-sm-animation {
  0% { transform: translateY(-20px) translateX(40px); }
  to { transform: translateY(-20px) translateX(0); }
}

@media (max-width: 1200px) {
  .animation-block { left: 50%; top: -80px; margin-left: -50px; }
}

.blog-section-img { height: 200px; }
.blog-section img { width: 100%; height: 100%; }

@media screen and (min-width: 769px) {
  .blogImg-center { height: 300px; max-width: 600px; margin: auto; }
  .blogImg-center img { width: 100%; height: 100% !important; object-fit: cover; border-radius: 2px; }
}

/* Cards & Dashboards */
.card.party { border-top: 5px solid transparent !important; }
.card.party.expanded { border-top: 5px solid #FF7100 !important; }
.dashboard-stats { display: grid; grid-template-columns: 1fr; gap: 20px; }
.stat-card { background: #fff; border-radius: 16px; padding: 22px; display: flex; align-items: center; gap: 18px; box-shadow: 0 12px 35px rgba(0,0,0,0.08); transition: transform .25s ease, box-shadow .25s ease; }
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(0,0,0,0.12); }
.stat-icon { min-width: 64px; height: 64px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 30px; }
.gradient-bg { background-image: linear-gradient(to right, #FF2500 0%, #FF7100 51%, #FF2500 100%); }
.stat-content h2 { margin: 0; font-size: 32px; font-weight: 700; color: #111; }
.stat-content p { margin-top: 6px; font-size: 14px; color: #555; line-height: 1.4; }

@media (min-width: 576px) { .dashboard-stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .dashboard-stats { grid-template-columns: repeat(4, 1fr); } }

/* Marquee */
.integration-marquee { padding: 60px 0; text-align: center; overflow: hidden; }
.integration-marquee h2 { font-size: 28px; font-weight: 600; margin-bottom: 35px; }
.marquee { width: 100%; overflow: hidden; }
.marquee-track { display: flex; gap: 30px; width: max-content; animation: scroll 28s linear infinite; }
.logo-box { width: 160px; height: 100px; background: #ffffff; border-radius: 14px; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.logo-box img { width: 85%; height: 85%; object-fit: contain; opacity: 1; transition: transform 0.3s ease; }
.logo-box:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); }
.logo-box:hover img { transform: scale(1.05); }

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (max-width: 768px) { .logo-box { width: 130px; height: 85px; } .logo-box img { width: 90%; height: 90%; } }

.benifit-icon { font-size: 36px !important; color: #FF7100; background: rgba(255, 113, 0, 0.1); width: 70px; height: 70px; line-height: 70px; margin: 0 auto 20px; border-radius: 50%; display: flex !important; align-items: center; justify-content: center; }

/* Video Container */
.client-vdo { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; background: #000; cursor: pointer; overflow: hidden; }
.client-vdo img, .client-vdo iframe { position: absolute; top: 0; left: 0; width: 100% !important; height: 100% !important; border: 0; margin: 0; padding: 0; object-fit: cover; }
.play-button { position: absolute; top: 50%; left: 50%; width: 68px; height: 48px; background-color: rgba(33, 33, 33, 0.8); transform: translate(-50%, -50%); border-radius: 12px; z-index: 10; pointer-events: none; }
.play-button::after { content: ""; position: absolute; top: 50%; left: 55%; transform: translate(-50%, -50%); border-style: solid; border-width: 10px 0 10px 15px; border-color: transparent transparent transparent #fff; }
.client-vdo:hover .play-button { background-color: #ff0000; }

/* Testimonials */
.testimonial-sidebar { background: #ffffff; padding: 40px 30px; border-radius: 20px; box-shadow: 0 15px 45px rgba(0,0,0,0.08); border: 1px solid #eee; text-align: center; }
.testi-card p { line-height: 1.6; color: #444; margin: 15px 0; }
.testi-card h4 { margin-top: 10px; }
.review-source { margin-top: 20px; display: flex !important; align-items: center; justify-content: center; border-top: 1px solid #f1f1f1; padding-top: 15px; }
.review-source img { width: 100px !important; height: auto; margin-right: 10px; }
.review-source span { font-size: 13px; color: #777; font-weight: 500; }
.stars { color: #FF7100 !important; font-size: 20px; }
.user-info strong { display: block; color: #222; font-size: 17px; }
.user-info span { color: #888; font-size: 13px; }

.vertical-testimonial-slider .owl-dots { margin-top: 20px !important; }
.vertical-testimonial-slider .owl-dot span { width: 12px !important; height: 12px !important; background: #ddd !important; transition: 0.3s; }
.vertical-testimonial-slider .owl-dot.active span { background: #ff4500 !important; width: 30px !important; }

.sidebar-footer { margin-top: 30px; }
.view-more-btn { background: #ff4500; color: #fff !important; padding: 12px 30px; border-radius: 50px; font-weight: 600; display: inline-block; transition: 0.3s; }
.view-more-btn:hover { background: #222; transform: translateY(-2px); }
.binary-simulation-box { background: #fff; border: 1px solid #ffe3d5; border-radius: 12px; padding: 30px 25px; text-align: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); max-width: 900px; margin: 60px auto; }