/* You can add global styles to this file, and also import other style files */

@charset "UTF-8";
@font-face {
  font-family: Axiforma-Regular;
  font-style: normal;
  font-weight: 400;
  src: local('Axiforma-Regular'), local('Axiforma-Regular'), url(../fonts/Axiforma_Regular.otf) format("woff");
  font-display: swap;
}

@font-face {
  font-family: Axiforma-Bold;
  font-style: normal;
  font-weight: 600;
  src: local('Axiforma-Bold'), local('Axiforma-Bold'), url(../fonts/Axiforma_Bold.otf) format("woff");
  font-display: swap;
}

  @font-face {
    font-family: Axiforma-Heavy;
    font-style: normal;
    font-weight: 800;
    src: local('Axiforma-Heavy'), local('Axiforma-Heavy'), url(../fonts/Axiforma_Heavy.otf) format("woff");
    font-display: swap;
  }
  
:root
{
  --main-color: #000000;
  --font-family-heavy:'Axiforma-Heavy', Arial, Sans-Serif;
  --font-family-bold:'Axiforma-bold', Arial, Sans-Serif;
  --font-family-regular:'Axiforma-Regular', Arial, Sans-Serif;
  --box-shadow:0 0 40px 0 rgba(0, 0, 0, 0.1);
  --white-color:#fff;
  --black-color:#000;
  --blue-color:#01B0FF;
  --voilet-color:#4B42F5;
  --orange-color:#F89D08;
  --green-color:#00A18C;
  --red-color:#FF5153;
  --pink-color:#FE0058;
  --yellow-color:#FFB701;
}

/* img {
  max-width: 100%;
  width: 100%;
  height: auto;
} */

body {
  font-size: 16px;
  font-family: var(--font-family-regular);
}

body i {
  line-height: 1;
  color: var(--main-color);
}
body a
{
  color: rgb(0, 27, 56);
}
body a:hover {
  color: var(--main-color);
  text-decoration: none;
  transition: 0.2s all linear;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
  line-height: 1.5;
  font-family:var(--font-family-bold);
  margin-bottom: 10px;
  color: var(--main-color);
}
h4,
h5,
h6
{
  line-height: 1.5;
}

body,
p,
li,
a,
td {
  line-height: 1.8;
  font-size: 16px;
}

ul {
  padding: 0px;
  margin: 0px;
}

li {
  list-style: none;
}
p
{
  margin-bottom: 10px;
}
p:last-child {
  margin-bottom: 0px;
}

button:focus, input[type=submit]:focus {
  outline: 0;
}
.container
{
    max-width: 1366px;
}
.common_section
{
    margin-top: -110px;
}

/*Header*/

.header-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
  box-shadow: var(--box-shadow);
}
.navbar-nav .nav-item
{
    padding: 0 10px;
}
.navbar-nav .nav-item a
{
    color: var(--black-color);
    padding-bottom: 0px;
    display: inline-block;
    font-family: var(--font-family-bold);
}
.navbar-nav .nav-item:last-child a
{
    
    /* border: 2.5px solid var(--red-color); */
    border-radius: 5px;
    line-height: 2.5;
    border-radius: 10px;
    padding-bottom: unset;
}
.navbar-nav .nav-item:last-child a.active
{
  border-bottom: 0;
}
.navbar-nav .nav-item:last-child img
{
  height: 20px;
    width: 20px;
    margin-right: 5px;
}
.navbar-brand img
{
  width: 180px;
  height: 45px;
  object-fit: contain;
}
.nav-header .nav-item a.active
{
/*   border-bottom: 2px solid #FF5254; */
  color: #e33844;
}
/* .header .dropdown:hover ul.dropdown-menu
{
  display: block;
} */
.header .dropdown-menu
{
  padding: 15px 5px;
  box-shadow: var(--box-shadow);
}
.header .nav-item.dropdown.active > a
{
  color: #e33844;
}
.header .dropdown-item {
  font-size: 14px;
  font-family: var(--font-family-regular)!important;
  padding: 10px 20px;
}
.header .dropdown-item.active,.header .dropdown-item:focus
{
  background-color:unset ;
  font-family: var(--font-family-bold)!important;
}
.header .dropdown-item:hover
{
  color: #e33844;
  background: unset;
}
.puls {
  -webkit-animation: puls 3s ease-in-out infinite;
  animation: puls 3s ease-in-out infinite;
}

@-webkit-keyframes puls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes puls {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*Header End*/


/*Footer*/
.footer
{
  padding:50px 0;
}
.footer_widget_leftside img
{
  width: 180px;
  height: 45px;
  margin-bottom: 20px;
}
.social_links ul
{
  display: flex;
  flex-wrap: wrap;
}
.social_links ul li
{
  margin-right: 30px;
}
.social_links ul li a .feather.feather-linkedin:hover
{
  color: #0077B5;
  /* transition: all ease 1s; */
}
.social_links ul li a .feather.feather-facebook:hover
{
  color: #4867AA;
  /* transition: all ease 1s; */
}
.social_links ul li a .feather.feather-youtube:hover
{
  color: #FF0000;
  /* transition: all ease 1s; */
}
.social_links ul li a .feather.feather-twitter:hover
{
  color: #2BA5DA;
  /* transition: all ease 1s; */
}
.social_links ul li a .feather.feather-instagram:hover
{
  color: #D42E75;
  /* transition: all ease 1s; */
}
.footer .footer_middle_widget a:hover ,.footer .footer_last_widget a:hover ,.email_text a:hover
{
color:#1C8ADB;
}

.address_box {
  margin: 20px 0;
}
.address,.phone_text,.email_text
{
  padding: 5px 0;
  display: flex;
}
.address span,.phone_text span,.email_text span
{
  margin-right: 15px;
}
.phone_text span img
{
  height: 25px;
  width: 25px;
  object-fit: contain;
  margin-bottom: 0;
}
.fnt_size
{
  font-size: 14px;
}
.footer .sec_heading
{
    font-size: 20px;
}
.footer .sec_heading:after
{
  width: 50px;
}
.footer_middle_widget {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 10px;
  margin-bottom: 20px;
}
.footer_middle_left_widget li,.footer_middle_right_widget li
{
  padding: 10px 0 0;
}
.footer_last_widget ul li
{
  padding: 10px 0 0;
}
.copy_right_first_widget ul {
  display: flex;
  flex-wrap: wrap;
}
.copy_right_first_widget ul li{
  margin-right: 10px;
}
.copy_right_first_widget ul li a
{
font-size: 14px;
}
.fnt_14px
{
  font-size: 14px;
}
.footer_top {
  padding: 20px;
}
.footer_bottom {
  padding: 5px;
}

/*Footer*/

/*Home Page Styles Start*/

/*Banner Section*/

.banner_section
{
    padding: 50px 0;
    position: relative;
}

.banner_section:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1635142823/images/banner_home_bg_zwrjxh.png') no-repeat;
    background-position: bottom center;
    top: 0;
    bottom: 0;
} 
.banner_content h1
{
    font-family: var(--font-family-heavy);
}
.banner_content p
{
    font-size:16px;
}
.banner_img img
{
    width: 500px;
    height: 500px;
    object-fit: contain;
    margin: 0 auto;
}
.play_store_icon 
{
    display: flex;
    margin-top:20px;
}
.play_store_icon img
{
    margin-right:20px;
    width:150px;
    object-fit: contain;
    height: 100%;
}
/*Banner Section*/


/*Pro Section*/
.promo_section
{
    position: relative;
    padding: 100px 0;
}
.promo_section:before
{
    position: absolute;
    content: '';
    background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1635142833/images/pro_sec_before_vrqqnz.png') no-repeat;
    background-position: left;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 446px;

}
.promo_section:after
{
    position: absolute;
    content: '';
    background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1635142836/images/pro_sec_after_wj6xjw.png') no-repeat;
    background-position: right;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 425px;
    z-index: -1;

}
.pro_content
{
    padding: 20px 0;
}

.pro_content h2 {
    font-family: var(--font-family-bold);
    font-size: 26px;
    max-width: 75%;
    margin: 0 auto;
}
.logo_section
{
    display: flex;
    padding: 20px 0;
    flex-wrap: wrap;
}
.logo_section img
{
width: 300px;
object-fit: contain;
margin-bottom: 20px;
height: 100%;
}
/*pro Section*/

/*Agile Section*/
.sec_heading
{
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}
.sec_heading:after {
    position: absolute;
    content: '';
    height: 4px;
    width: 100px;
    bottom: 0;
    left: 0%;
    background: #FF5254;
    border-radius: 50px;
}
.sec_heading.text-left:after {
    position: absolute;
    content: '';
    height: 4px;
    width: 150px;
    bottom: 0;
    left: 0;
    background: #FF5254;
    border-radius: 50px;
}
.agile_section
{
    padding: 50px 0;
}
h5.agile_list_item
{
  font-size: 25px;
}
.agile_list_item span.blue_color
{
  color: #1361d9;
  margin-right:10px;
}
.agile_list_item span.violet_color
{
  color: #1361d9;
  margin-right:10px;
}
.agile_list_item span.orange_color
{
  color: #1361d9;
  margin-right:10px;
}
.agile_list_item span.green_color
{
  color: #1361d9;
  margin-right:10px;
}
.agile_list_item span.yellow_color
{
  color: #1361d9;
  margin-right:10px;
}
.agile_section p
{
    font-size: 16px;
    padding: 20px 0;
}
.agile_content
{
  
  margin-top:40px;
}
/*Agile Section*/


/*Advantage Section*/
.advantage_section
{
    padding: 50px 0;
}
.advantage_img
{
  text-align: center;
}
.advantage_img img
{
    padding-right: 20px;
    margin-bottom:20px;
    width: 100%;
    height: 500px;
    object-fit: contain;
}
.advantage_content 
{
    padding: 10px 0;
}
.advantage_content p
{
    font-size: 16px;
}

.advantage_content_list_item ul{
    margin: 20px;
}
.advantage_content_list_item ul li
{
 font-size: 18px;
 position: relative;
}

.advantage_content_list_item ul li:before {
    content: '';
    position: absolute;
    height: 6px;
    width: 6px;
    background: var(--black-color);
    left: -20px;
    top: 12px;
    border-radius: 50px;
    margin-right: 20px;
}
/*Advantage Section*/

/*why_mlm_dirstc_selling*/

.why_mlm_dirstc_selling
{
  padding: 50px 0;
}
.why_mlm_left_side .sec_heading,.why_mlm_right_side .sec_heading
{
  font-size: 25px;
}
.why_mlm_left_side .sec_heading:after,.why_mlm_right_side .sec_heading:after
{
width: 35px;
}
.why_mlm_left_side p,.why_mlm_right_side p
{
  padding: 5px 5px;
}
.why_mlm_list_items_container 
{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.why_mlm_list_items ul li
{
  padding: 3px 0;
  list-style-type: ' ★ ';
}
.why_mlm_list_items ul li::marker
{
  color: var(--red-color);
  font-size: 25px;
}
/*why_mlm_dirstc_selling*/

/*Technolgy Used*/
.techno_box
{
  background-color: #fff;
  border-radius: 8px;
  margin: 10px 0;
  box-shadow: var(--box-shadow);
  padding:40px 20px 35px;
  position: relative;
  transition: all ease .4s;
  height: 100%;
  text-align: center;
}
.techno_box:hover:before {
  height: 8px;
  width: 100%;
}
.techno_box:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: var(--red-color);
  content: "";
  border-radius: 8px 8px 0 0;
  transition: all cubic-bezier(.4,0,1,1) .4s;
  z-index: 1;
}
.techno_box .sec_heading
{
  font-size: 22px;
  margin-bottom: 10px;
}

.techno_box .sec_heading::after
{
  display: none;
}
.techno_box img
{
  height: 100px;
  width: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

/*Technolgy Used*/

/*Solution Section*/

.solution_section
{
  padding: 50px 0;
}

.sol_box {
  position: relative;
  padding: 20px 40px;
  background: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 15px;
  height: 100%;
}
.sol_box::before {
  position: absolute;
  content: '';
  height: 80%;
  width: 5px;
  left: 15px;
  border-radius: 5px;
}
.sol_box.yellow::before
{
  background: var(--yellow-color);
}
.sol_box.pink::before
{
  background: var(--pink-color);
}
.sol_box.blue::before
{
  background: var(--blue-color);
}
.sol_box.green::before
{
  background: var(--green-color);
}
.sol_box.voilet::before
{
  background: var(--voilet-color);
}
.sol_box.red::before
{
  background: var(--red-color);
}
/* .sol_title
{
  display: flex;
  flex-wrap: wrap;
} */
.sol_title span img
{
  margin-right: 20px;
  height: 40px;
  width: 40px;
}
.sol_title span.title 
{
  line-height: 3.5rem;
}
.sol_content p
{
  padding: 2px 0;
  font-size: 14px;
  
}
.solution_content p
{
  padding: 20px 0;
  font-size: 16px;
}

/*Solution Section*/


/*Who We Are*/


.who_we_are
{
  padding: 50px 0;
}

/*Who We Are*/
.who_img img
{
  border-radius: 10px;
  margin-bottom: 20px;
  padding-right: 20px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.who_we_are ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0px 15px;
}
.who_we_are ul li{
 width: 31%;
 font-family: var(--font-family-bold);
 font-size: 16px;
 padding: 5px;
 position: relative;
}
.who_we_are ul li:before {
  content: '\2192';
  position: absolute;
  left: -15px;
  border-radius: 50px;
  font-size: 25px;
  top: -5px;
  color: var(--red-color);
}
.who_we_are_list_item ul li span
{
  padding-left: 15px;
}


.why_mlm_middle img
{
    height: 500px;
    width: 100%;
    object-fit: contain;
}


/*Solution 2nd Section*/
.solution_sec_section
{
  padding: 50px 0;
}

.solution_sec_section .sol_sec_box {
  position: relative;
  padding: 40px;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--box-shadow);
  border-bottom: 8px solid #E7F6FE;
  height: 100%;
}



.solution_sec_section .sol_title span img
{
  margin-right: 20px;
  height: 40px;
  width: 40px;
}
.solution_sec_section .sol_title span.title 
{
  line-height: 2rem;
  font-size: 24px;
}

.solution_sec_section .sol_content p
{
  padding: 2px 0;
  font-size: 14px;
  
}
.solution_sec_section .solution_content p
{
  padding: 20px 0;
  font-size: 16px;
}
.img_arrow {
  position: absolute;
  right: 0;
  top: 0;
  width: 98px;
  height: 69px;
}
.read_more {
  text-align: right;
  margin-top: 20px;
}
.read_more_btn
{
  font-size: 20px;
  color: #4a90e2;
}
.read_more_btn:hover
{

  color: #4a90e2;
}

.view_more
{
  text-align: center;
  margin-top:20px;
}
.view_more_btn
{
  padding: 15px 25px;
  background: var(--red-color);
  color: #fff;
  border-radius: 10px;
  font-size: 20px;
}
.view_more_btn:hover
{
  color:var(--white-color);
}

/*Solution 2nd Section*/




/*solution 3rd Section*/
.solution_third_section
{
  padding: 50px 0;
  background: #F5F5F5;
}
.counter_box{
  background: #fff;
  box-shadow: var(--box-shadow);
  padding: 25px;
  width: 75%;
  margin: 30px auto;
  border-radius: 10px;
}
.counter_box .counter_number
{
  font-size: 45px;
}
.counter_box .counter_number span
{
   color: var(--red-color);
   
  margin-left: 10px;
}
.counter_box p
{
  font-size: 16px;
}


/*anothe Plan Section*/
.another_plan_section
{
  padding: 50px 0;
}
.ap_sec_box
{
  padding: 20px;
}
.ap_sec_content p
{
 font-size: 16px;
}
.another_plan_section .ap_title span.title {
  line-height: 3.5rem;
  position: relative;
  display: inline-block;
}
.another_plan_section .ap_title span.title:before
 {
  position: absolute;
  content: '';
  height: 4px;
  width: 50px;
  bottom: 0;
  left: 0%;
  background: #FF5254;
  border-radius: 50px;
}
.another_plan_section .ap_title span img {
  margin-right: 20px;
  height: 50px;
  width: 50px;

}
.ap_content p
{
  padding: 12px 12%;
}

.read_more img
{
  height: 25px;
    margin-right: 10px;
    width: 25px;
}

/*Tab Section*/

.tab_section
{
  padding: 50px 0;
}
.tab_sec_content p
{
 font-size: 16px;
}
.tab_content_section .nav.nav-tabs
{
  justify-content: center;
  border-bottom: 0;
  padding: 30px 20px;
  box-shadow: var(--box-shadow);
  border-radius: 100px;
  max-width: 1024px;
  margin: 0 auto;
}
.tab_content_section .nav.nav-tabs li.nav-item
{
  border-right: 1px solid #ccc;
  padding: 0 25px;
}
/* .tab_content_section .nav.nav-tabs li.nav-item:first-child
{
  border-right: 1px solid #ccc;
  padding-left: 0;
} */
.tab_content_section .nav.nav-tabs li.nav-item:last-child
{
  border-right: 0;
}
.tab_content_section .nav.nav-tabs li a
{
  text-align: center;
  font-size: 16px;
  opacity: 0.7;
}
.tab_content_section .nav.nav-tabs li.nav-item a.active
{
  color: var(--red-color);
  border: 0;
  opacity: 1;
}
.tab_content_section .nav.nav-tabs li.nav-item a:hover
{
  color: var(--red-color);
  border: 0;
  opacity: 1;
}
.tab_content_section .nav.nav-tabs li a span
{
display: block;
}
.tab_content_section .nav.nav-tabs li a span img
{
  height: 50px;
  width: 50px;
  margin-bottom: 10px;
}
.tab_content_section .tab-content
{
  padding: 30px 20px;
}
.tab_inner_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
}
.tab_inner_section .tab_inner_description
{
  width: 58%;
  margin-bottom: 20px;
}
.tab_inner_section .tab_inner_image
{
  width: 38%;
}
.tab_inner_image img
{
    width: 500px;
    height: 500px;
    object-fit: contain;
    margin: 0 auto;
}
/*Integration*/
.integration
{
  padding: 50px 0;
  background: #F5F5F5;
}

.integration_box{
  background: #fff;
  box-shadow: var(--box-shadow);
  padding: 25px;
  width: 75%;
  margin: 30px auto;
  border-radius: 10px;
  border: 2px solid var(--red-color);
}

.integration_content p 
{
  font-size: 16px;    
  padding: 20px 0;
}
.integration_box img
{
  height: 75px;
  width: 75px;
  margin-bottom: 20px;
}
.integration_box p 
{
  font-size: 16px;
}

.integration_tabs .nav.nav-tabs
{
  justify-content: center;
  border: 0;
}
.integration_tabs .nav.nav-tabs li
{
  margin: 0 20px;
}
.integration_tabs .nav.nav-tabs li a.active
{
  background: var(--red-color);
  color: #fff;
}
.integration_tabs .nav.nav-tabs li a
{
  font-size: 18px;
  padding: 5px 30px;
  margin-bottom: 0;
  border-radius: 10px;
  border: 2px solid var(--red-color);
  
}
.inte_tab_inner_section
{
  padding: 50px;
}
.inte_img_container
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.inte_img_container img
{
  width: 150px;
  height: 100%;
  object-fit: contain;
  margin:20px;
  background: #fff;
  padding: 20px 0;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}


/*faq section*/
.faq_section 
{
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}
.accordion {
max-width: 95%;
    margin: 40px auto;
}
.accordion .card {
  border: none;
  margin-bottom: 20px;
}


.accordion .card .card-head
{
  background: #f8f8f8;
    border-bottom: 1px solid #e4e1e1;
    padding: 0!important;
}
.accordion .card .card-head span.icon
{
    width: 25px;
    height: 25px;
    display: inline-block!important;
    margin: 0 25px!important;
    border-right: 1px solid #f2f0f0;

}
.accordion .card a{
    background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1637672505/images/minus_k9pmh4.svg') no-repeat;
    background-size: 20px;
    background-position: right;
    cursor: pointer;
    margin-right: 20px;
    display: flex;
    align-items: center;
}
.accordion .card a h2
{

    font-size: 16px;
    border-left: 1px solid #ececec;
    padding: 20px;
    vertical-align: middle;
    font-family: 'Axiforma-Regular';
    width: calc(100% - 25px);
}
.accordion .card a.collapsed {
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1637672505/images/plus_ovabns.svg') no-repeat calc(100% - 10px) center;
    background-size: 20px;
    background-position: right;
    cursor: pointer;
    display: block;
    margin-right: 20px;
    display: flex;
    align-items: center;
}
.accordion .card-body {
    border-top: 0;
    background: #f3f3f3;
    padding: 25px;
}
.accordion a img {
    height: 30px;
    width: 30px;
    object-fit: contain;
}

/*Home Page Styles ENd*/



/*Feature Page STyles*/
.feature_page
{
  padding: 50px 0;
  background: url(https://res.cloudinary.com/rocketmlm/image/upload/v1635142828/images/feature_page_bg_voj4ft.png) no-repeat;
  background-position: center center;
  background-size: contain;
  border-bottom: 1px solid #eee;
}
.feature_img img
{
margin-bottom: 20px;
width: 100%;
    height: 400px;
    object-fit: contain;
}
.feature_content p
{
padding: 5px 5%;
}
.feature_content_part_section
{
padding: 20px 20px;
}
.feature_list_part_section
{
  padding: 20px 20px;
}
.feature_list_box {
  padding: 25px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  position: relative;
  height: 100%;
}
h5.feature_list_box_title {
  margin-bottom: 15px;
}
.feature_list_box .feather.feather-star
{
  float: right;
  color: #F6B630;
}
/*Feature Page STyles End*/

/*Pricing Page STyles End*/
.pricing_page
{
  padding: 50px 0;
  background: url(https://res.cloudinary.com/rocketmlm/image/upload/v1635142828/images/feature_page_bg_voj4ft.png) no-repeat;
  background-position: center center;
  background-size: contain;
  border-bottom: 1px solid #eee;
}
.pricing_img img
{
margin-bottom: 20px;
width: 100%;
    height: 400px;
    object-fit: contain;
}
.pricing_content p
{
padding: 5px 5%;
}
.pricing_content_part_section
{
padding: 20px 20px;
}
.pricing_list_part_section
{
  padding: 20px 20px;
}
.pricing_list_box {
  padding: 25px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  position: relative;
  height: 100%;
}
h5.pricing_list_box_title {
  margin-bottom: 15px;
  text-align: center;    
  font-size: 18px;
}
.pricing_list_box_price
{
  text-align: center;
  font-size: 30px;
  font-family: 'Axiforma-Bold';
}
.pricing_list_box .feather
{
    color: #FF5154;
    position: absolute;
    right: 20px;
    bottom: 20px;
}


.rwd-table {
  margin: 1em 0;
  min-width: 100%;
}
.rwd-table tr {
  border-bottom: 1px solid #ddd;
}
.rwd-table th {
  display: none;
}
.rwd-table td {
  display: block;
}
.rwd-table td:first-child {
  padding-top: .5em;
  width:70%;
}
.rwd-table td:last-child {
  padding-bottom: .5em;
  font-family: 'Axiforma-Bold';
}
/*.rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 6.5em;
  display: inline-block;
}*/

.rwd-table th, .rwd-table td {
  text-align: left;
}



.rwd-table {
  background: #fff;
  border-radius: .4em;
  overflow: hidden;    
  box-shadow: var(--box-shadow);
}
.rwd-table th, .rwd-table td {
  margin: .5em 1em;
}
@media (min-width: 480px) {  
    .rwd-table td:before {
    display: none;
  }
.rwd-table th, .rwd-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .rwd-table th:first-child, .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child, .rwd-table td:last-child {
    padding-right: 0;
  }
  .rwd-table th, .rwd-table td {
    padding: 1em !important;
  }
}


/*Pricing Page STyles End*/





/*Demo Page STyles*/
.demo_page
{
  padding: 50px 0;
  background: url(https://res.cloudinary.com/rocketmlm/image/upload/v1635142829/images/demo_page_bg_xj1etg.png) no-repeat;
  background-position: center center;
  background-size: cover;
  border-bottom: 1px solid #eee;
}
.demo_page_content p
{
text-align: center;
}
.demo_content_part_section
{
padding: 20px 20px;
}
.demo_part_form_section 
{
  padding: 20px 20px;
}
.demo_part_left_column img
{
  border-radius: 10px;
    width: 500px;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    box-shadow: var(--box-shadow);
}
.demo_list_points
{
  padding: 20px;
  text-align: left;
}
.demo_list_points ul 
{
  padding: 20px;

}
.demo_list_points ul li
{
  padding: 5px 0;
  list-style-type: decimal;
}
.demo_form input.form-control
{
    background: #F5F6FA;
    height: 60px;
    margin-bottom: 20px;
    color: #000;
}
.demo_form input.form-control:focus , .demo_form textarea.form-control:focus
{
  box-shadow: 0 0 0 0.2rem rgb(255 0 0 / 25%);
  border-color: transparent;
}
.demo_form textarea.form-control
{
  background: #F5F6FA;
  color: #000;
}
.demo_form select.form-control, .contact_form select.form-control
{
  background: #F5F6FA;
  height: 60px;
  color: #000;
margin-bottom: 20px;
}
.demo_form select.form-control:focus, .contact_form select.form-control:focus
{ 
   box-shadow: 0 0 0 0.2rem rgb(255 0 0 / 25%);
   border-color: transparent;
}
.demo_form button.custom_btn
{
  padding: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}
.demo_form input::placeholder,.demo_form textarea::placeholder
{
  color: #000;

}
/*Demo Page STyles End*/

/*contact Page STyles*/
.contact_page
{
  padding: 50px 0;
  background: url(https://res.cloudinary.com/rocketmlm/image/upload/v1635142832/images/contact_page_bg_pypfyu.png) no-repeat;
  background-position: center center;
  background-size: 90%;
  border-bottom: 1px solid #eee;
}
.contact_content p
{
text-align: center;
}
.contact_content_part_section
{
padding: 20px 20px;
}
.contact_part_form_section 
{
  padding: 20px 20px;
}
.sec_left_heading
{
  position: relative;
  display: inline-block;
}
.sec_left_heading:after {
  position: absolute;
  content: '';
  right: -30px;
  height: 15px;
  width: 15px;
  background: var(--red-color);
  bottom: 15px;
  border-radius: 50%;
}


.contact_form input.form-control
{
    background: #F5F6FA;
    height: 60px;
    margin-bottom: 20px;
    color: #000;
}
.contact_form input.form-control:focus , .contact_form textarea.form-control:focus
{
  box-shadow: 0 0 0 0.2rem rgb(255 0 0 / 25%);
  border-color: transparent;
}
.contact_form textarea.form-control
{
  background: #F5F6FA;
  color: #000;
}
.contact_form button.custom_btn
{
  padding: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}
.contact_form input::placeholder,.contact_form textarea::placeholder
{
  color: #000;

}
/*Contact Page STyles End*/



/*Slick */


.carousel
{
  width:90%; 
  margin:0px auto;
}
.slick-slide{
  margin:10px;
}
.slick-slide img{
  width:100%;
}
.slick-prev, .slick-next{
  background: #000;
  border-radius: 15px;
  border-color: transparent;
}
.slick-prev img, .slick-next img
{
height:35px;
width:35px;
object-fit:contain;
}
.carousel .card{
  border: 2px solid #fff;
  /* box-shadow: 1px 1px 15px #ccc; */
  box-shadow: rgb(0 0 0 / 30%) 12px 12px 12px;
  position: relative;
  border-radius: 10px;
  margin: 0px 12px 12px;
}
.carousel .card-body{
  background: #fff;
  width: 100%;
  vertical-align: top;
}
.carousel .card-body span
{
  display: block;
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-size: 20px;
  font-family: var(--font-family-heavy);
  color: var(--red-color);
}
.carousel .card-title
{
  font-size: 18px;
  font-family: var(--font-family-heavy);
  margin-bottom: 0;
}
.carousel .card-content{
  text-align: left;
  color: #333;
  padding: 15px;
}
.carousel .card-text{
  font-size: 14px;
  font-weight: 300;
}
.carousel .card-text p{
 padding: 15px 0;
}
.slick-dots
{
  bottom:unset;
}
.slick-dots li.slick-active button:before
{
  opacity:.75;color:var(--red-color);
}
.slick-prev.slick-arrow img
{
  transform: rotate(180deg);
}
.slick-prev
{
  background: unset;
  height: 35px;
  width: 35px;
  left:-50px;
}
.slick-next
{
  background: unset;
  height: 35px;
  width: 35px;
  right:-50px;
}
.slick-prev::before,.slick-next:before
{
  display: none;
}
/*Slick*/






.icon-bar {
  position: fixed;
  top: 50%;
  left:5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 5px 0;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 20px;
  margin-bottom: 5px;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
}
.icon-bar a img
{
  height: 40px;
  width: 40px;
  object-fit: contain;
}



.btn.btn-danger.custom_btn {
  background-image: linear-gradient(to right, rgb(255 81 84), rgb(222 51 66));
  margin-top: 20px;
}
img
{
  transition: 0.2s ease all;
}

/* img:hover
{
  transform: scale(1.05);
} */



/*Mlm Plans Page Style Start*/


/*Matrix MLM Plan*/

.binary_mlm_page,.unilevel_mlm_page,.matrix_mlm_page,.monoline_mlm_page,.australian_mlm_page,.monoline_friend_cashgifting_mlm_page,.spilover_mlm_page,
.repurchase_mlm_page,.shopify_mlm_page,.cashgifting_mlm_page,.crypto_mlm_page
{
  border-bottom: 1px solid #eee;
}
.unilevel_mlm_page .demo_col
{
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1637739479/images/unilevel/unilevel_free_demo_h7ldrs.png') no-repeat;
  background-size: contain;
  background-position:center center;
}
.matrix_mlm_page .demo_col
{
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1637910845/images/matrix/matrix_demo_bg_s8j3s8.png') no-repeat;
  background-size: contain;
  background-position:center center;
}
.monoline_mlm_page .demo_col
{
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1641359708/images/monoline/monoline_demo_apwrmx.png') no-repeat;
  background-size: contain;
  background-position:center center;
}
.australian_mlm_page .demo_col
{
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1641452673/images/australian/australian_demo_d8swmt.png') no-repeat;
  background-size: contain;
  background-position:center center;
}

.monoline_friend_cashgifting_mlm_page .demo_col
{
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1641897310/images/monoline_friendly/monoline_demo_bg_zf8bov.png') no-repeat;
  background-size: contain;
  background-position:center center;
}
.spilover_mlm_page .demo_col
{
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1641466468/images/spilover/spillover_demo_bg_esycpx.png') no-repeat;
  background-size: contain;
  background-position:center center;
}
.repurchase_mlm_page .demo_col
{
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1641898533/images/repurchase/repurchase_demo_bg_qd9cxm.png') no-repeat;
  background-size: contain;
  background-position:center center;
}
.shopify_mlm_page .demo_col
{
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1641899409/images/shopify/shopify_demo_bg_qprw3t.png') no-repeat;
  background-size: contain;
  background-position:center center;
}
.cashgifting_mlm_page .demo_col
{
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1641901011/images/cashgifting_sou_sou/cashgifting_demo_bg_b7pw4y.png') no-repeat;
  background-size: contain;
  background-position:center center;
}
.crypto_mlm_page .demo_col
{
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1641900301/images/cryptocurrency/cryptocurrency_demo_bg_kehase.png') no-repeat;
  background-size: contain;
  background-position:center center;
}
.bg
{
  background: #F8F8F8;
}

/*marix Banner Section*/
.matrix_banner_section
{
  padding: 50px 0;
}
.matrix_mlm_page_banner_content h1,h2
{
  font-family: var(--font-family-heavy);
}

.matrix_banner_img 
{
 position: relative;
 margin: 20px 0;
}


.demo_box 
{
  background: #ffeae4;
  padding: 50px;
  max-width: 80%;
  margin: 0 auto;
}
.demo_box h2
{
  margin-bottom: 20px;
}
/*marix Banner Section*/

/*Matrix Second Section*/
.matrix_second_section
{
  padding:50px 0;
  background: #F8F8F8;
}
.matrix_second_section p
{
  text-align: center;
}
/*Matrix Second Section*/

/*Workng Structure*/

.working_structure
{
  padding: 50px 0;
}
.working_structure .mono_img
{
width:250px;
margin:0 auto;
}
/*Workng Structure*/

/*Advantage*/
.advantages
{
  padding: 50px 0;
  position: relative;
}
.advantages::before
{
  content: '';
  position: absolute;
  top:0;
  width: 100%;
  height: 30%;
  background:#FEFAF1;
}

.adv_img_part img
{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.advantages p
{
 text-align: center;
}

.advantage_con_box
{
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
}
.advantage_con_box h3
{
  display: inline-block;
}
.advantage_con_box.light_blue h3
{
  background:#E0FFFF;
  padding: 0 5px;
}
.advantage_con_box.light_yellow h3
{
  background:#FFFACD;
  padding: 0 5px;
}
.advantage_con_box.light_red h3
{
  background:#FFE4E1;
  padding: 0 5px;
}
.advantage_con_box.light_green h3
{
  background:#D4FCEE;
  padding: 0 5px;
}
.advantage_con_box p
{
  text-align: left;
}
/*Advantage*/

/*demo*/
.demo_full_width_section
{
  padding: 50px 0;
  background:url('https://res.cloudinary.com/rocketmlm/image/upload/v1637672380/images/binary/uni_fulwidth_bg_ac5xta.png') no-repeat;
  background-position:center center;
  background-size: contain;
}
.demo_ful_width_content_part
{
  padding: 50px;
}
.demo_col
{
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1637672380/images/binary/full_width_sec_img_llomfq.png') no-repeat;
  background-size: contain;
  background-position:center center;
}

.demo_ful_image_part
{
  height: 400px;
  width: 100%;
}
.demo_inte
{
  background: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
.list_item_ful_sec
{
  padding: 20px;
}
.list_item_ful_sec ul
{
  margin:20px;
}
.list_item_ful_sec ul li
{
  padding: 5px 10px 10px;
  position: relative;
}
.list_item_ful_sec ul li:before
{
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  background: var(--red-color);
  transform: rotate(45deg);
  left: -20px;
  top: 15px;
}
.btn.btn-outline
{
  border:1px solid var(--red-color);
  color: var(--red-color);
}
.btn.btn-outline:focus
{
  box-shadow: none;
}
/*demo*/

/*comm_bonus_section*/
.comm_bonus_section
{
  padding:50px 0;
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1641276958/images/comm_bonus_bg_kht7bd.png') no-repeat;
  background-size: cover;

}
.bonus_img img
{
 height: 400px;
 object-fit: contain;
 padding: 10px;
 margin-bottom: 25px;
}

.bonus_content_part 
{
  padding: 25px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}
.bonus_content_part.mild_yellow
{
  background: #FFFEF0;
}
.bonus_content_part.mild_radium
{
  background: #F7FFEF;
}
.bonus_content_part.mild_green
{
  background: #EFFFFC;
}
.bonus_content_part.mild_blue
{
  background: #F8FAFF;
}
.bonus_content_part.mild_purple
{
  background: #FDF6FF;
}
.bonus_content_part.mild_pink
{
  background: #FFF4F4;
}
/*comm_bonus_section*/



/*Similar Plans*/
.similar_plans
{
  padding: 50px 0;
  background: url('../images/banner_home_bg.png') no-repeat;
  background-position: center center;
  background-size: contain;
}
.similar_plan_box{
  background: #fff;
  box-shadow: var(--box-shadow);
  padding: 25px;
  margin: 30px auto;
  border-radius: 10px;
  /* background: url('./assets/images/banner_home_bg.png') no-repeat;
  background-position: center center;
  background-size: contain; */
}
.similar_plan_box img
{
  width:50px;
  height:50px;
  margin-bottom: 20px;
  object-fit: contain;
}

.similar_plan_box p
{
  font-size: 16px;
  font-family: var(--font-family-heavy);
}
/*Similar Plans*/


/* Benefits*/
.benefits
{
  padding: 50px 0;
  background: #F8F8F8;
}
.benefits_title_section p
{
 text-align: center;
}
.benefits_box {
  display: flex;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  height: 100%;
}
/*.benefits_box svg
{
  width: 15%;
  margin-right: 20px;
}*/
.benefits_box .feather.feather-star
{
  height: 30px;
  width: 30px;
  margin-right: 20px;
}
.benefit_content_part h3
{
  font-size: 25px;
}
/* Benefits*/

/*Trends*/
.treds_section
{
  padding: 50px 0;
}
.trends_content_part p
{
  text-align: center;
  margin:15px 0;
}
.trends_content_part_right p
{
  text-align: left;
  padding: 10px 5%;
}
.trends__part_left_img img
{
  height: 600px;
  width: 600px;
  object-fit: contain;
  margin:0 auto;
}
.list_item_sec ul
{
  margin:10px;
}
.list_item_sec ul li
{
  padding: 5px 15px;
  position: relative;
  margin-left: 20px;
}
.list_item_sec ul li:before
{
  content: '';
  position: absolute;
  top: 5px;
  left: -25px;
  height: 100%;
  width: 100%;
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1637672379/images/binary/check-mark-circle_lsdf8c.png') no-repeat;
}
.binary_box_section
{
  padding: 50px 0;
  background: #F8F8F8;
}
.binary_box_section_content_part p
{
  text-align: center;
}
.binary_box_section_portion {
  background: #fff;
  box-shadow: var(--box-shadow);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  border: 1px solid #ccc;
}

.trends_content_part_right .list_item_sec
{
  margin: 10px;
  padding: 10px 30px;
}
.right_side_content_part p
{
  padding: 10px 0;
}
.right_side_content_part p
{
  padding: 10px 0;
}
/**/




/*Mlm Plans Page Style ENd*/



/*Australian MLM Software Plan*/
.benefits_australian 
{
    margin: 10px 30px;
}
.benefits_australian li
{
    position: relative;
    padding: 10px 10px;
}
.benefits_australian li:before
{
    content: '';
    position: absolute;
    height: 5px;
    width: 20px;
    background: var(--red-color);
    transform: rotate(27deg);
    left: -20px;
    top: 15px
}

/*Australian MLM Software Plan*/



/*Repurchase*/
.repurchase_key_features
{
  padding: 50px 0;
  background: url('https://res.cloudinary.com/rocketmlm/image/upload/v1641379101/images/repurchase/repurchase_bg_hpzyyt.png') no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.repurchase_key_features::before
{
  position: absolute;
  content: '';
  background:#fff;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  top:0;
}
.repurchase_key_features_list ul {
  margin: 20px;
}
.repurchase_key_features_list ul li
{
  padding: 5px;
  list-style-type:disclosure-closed;
  font-size: 16px;
}
.repurchase_key_features_list ul li::marker
{
  color: var(--red-color);
}


.repurchase_benefits_package
{
  padding: 50px 0;
  background: url('assets/images/uni_integration_bg.png') no-repeat;
  background-position: right center;
  background-size: contain;
}
.repurchase_benefits_package_list ul {
  margin: 20px;
}
.repurchase_benefits_package_list ul li
{
  padding: 5px;
  list-style-type:disclosure-open;
  font-size: 16px;
}
.repurchase_benefits_package_list ul li::marker
{
  color: var(--red-color);
}

/*Repurchase*/

/*Responsive*/
@media (min-width:1200px)
{
  .header .dropdown:hover ul.dropdown-menu
{
  display: block;
}
}
@media (max-width: 1199px)
{
  .navbar-toggler-icon
  {
    width: 15px;
    height: 2px;
    border-radius: 1px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, .7);
  }
  .navbar-toggler-icon::after,
  .navbar-toggler-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 250ms ease;
    -ms-transform-origin: 50% 1px;
    transform-origin: 50% 1px;
    background-color: #000;
    left: 6px;
  }
  .navbar-toggler.collapsed .navbar-toggler-icon::before {
    top: -6px;
  }

  .navbar-toggler.collapsed .navbar-toggler-icon::after {
    bottom: -6px;
  }

  .navbar-toggler.collapsed .navbar-toggler-icon {
    height: 2px;
  }

  .navbar-toggler .navbar-toggler-icon {
    height: 0px;
  }

  .navbar-toggler.collapsed .navbar-toggler-icon::after,
  .navbar-toggler.collapsed .navbar-toggler-icon::before {
    height: 2px;
    background-color: #000;
  }

  .navbar-toggler.collapsed .navbar-toggler-icon::before {
    -ms-transform: rotate(0deg);
    transform: rotateZ(0deg);
  }

  .navbar-toggler.collapsed .navbar-toggler-icon::after {
    -ms-transform: rotate(0deg);
    transform: rotateZ(0deg);
  }

  .navbar-toggler .navbar-toggler-icon::before {
    -ms-transform: rotate(-45deg);
    transform: rotateZ(-45deg);
    height: 2px;
  }

  .navbar-toggler .navbar-toggler-icon::after {
    -ms-transform: rotate(45deg);
    transform: rotateZ(45deg);
    height: 2px;
  }

  .who_we_are ul li
  {
    width: 48%;
  }
  .tab_content_section .nav.nav-tabs li.nav-item
  {
    padding: 0;
  }
  .tab_content_section .nav.nav-tabs li a
  {
    font-size: 16px;
  }
  
  .advantage_section
  {
    background-position: top left;
  }
  .navbar-nav .nav-item:last-child
  {
    padding: 0 10px;    
  	width: 30%;
    margin-top:10px;
    text-align: center;
  }
  .navbar-nav
  {
    margin-top:20px;
  }
  .feature_page
  {
    background-size: contain;
  }
  .demo_page
  {
    background-size: contain;
  }
  .another_plan_section .ap_title span.title
  {
    font-size: 18px;
  }
  .ap_content p
  {
    padding: 12px 0;
  }
  .integration_tabs .nav.nav-tabs li
  {
    margin-bottom: 20px;
  }
  .solution_sec_section .sol_title span img
  {
    margin-bottom: 20px;
  }
  .solution_sec_section .sol_title span.title
  {
    font-size: 20px;
    display: block;
  }
  .promo_section 
  {
    background: #f2f2f2;
  }
  .sol_title span.title
  {
    font-size: 20px;
  }
  .banner_content h1
  {
    font-size: 25px;
  }
  .banner_section:before
  {
    background-size: contain;
    background-position: top center;
  }
  h5.agile_list_item
  {
    font-size: 20px;
  } 
  .promo_section::before 
  {
    opacity: 0.25;
  }
  .promo_section::after
  {
    opacity: 0.25;
    z-index: 0;
  }
  .carousel .card
  {
    margin: 0px;
    box-shadow: 1px 1px 15px #ccc;
  }
}

@media only screen and (min-width:991px) and (max-width:1024px)
{
  .promo_section::before 
  {
    opacity: 0.25;
  }
  .promo_section::after
  {
    opacity: 0.25;
    z-index: 0;
  }
  .bonus_img img
  {
    height: auto;
  }
  .demo_ful_width_content_part 
  {
    padding: 30px;
  }
  .list_item_ful_sec
  {
    padding: unset;
  }
}

@media only screen and (min-width:767px) and (max-width:991px)
{
  .promo_section::before 
  {
    opacity: 0.25;
  }
  .promo_section::after
  {
    opacity: 0.25;
    z-index: 0;
  }
  h3.agile_list_item
  {
    font-size: 20px;
  }
  .tab_content_section .nav.nav-tabs
  {
    position: sticky;
    top: 7rem;
    background: #fff;
    z-index: 1;
  }
	  .matrix_mlm_page_banner_content
  {
    text-align: center;
  }
  .matrix_banner_img img
  {
    width: 500px;
  }
    .unilevel_content_part p
  {
    text-align: center;
  }
  .unilevel_img_part,.adv_img_part
  {
    text-align: center;
  }
    .unilevel_img_part img
  {
    width: 500px;
    object-fit: contain;
  }
  .adv_img_part img
  {
    width: 500px;
  }
  .bonus_img img
  {
    height: auto;
  }
  .trends_content_part_right p
  {
    text-align: center;
  }
  .list_item_sec ul
   {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .list_item_sec ul li:before
  {
    left: -15px;
  }
  .benefits_box
  {
    flex-direction: column;
    text-align: center;
  }
  .benefits_box .feather.feather-star
  {
    margin-bottom: 20px;
  }
  .benefit_content_part h3
  {
    font-size: 20px;
  }
  .unilevel_content_part h2
  {
    display: block;
  text-align:center;
  }
  .advantages::before
  {
    height: 100%;
  }
  .pricing_list_box.media_768 {
    width: 45%;
    display: inline-block;
    align-items: center;
    margin: 0 2.2%;
}
}

@media (max-width:767px)
{

  .pro_content h5
  {
  font-size:20px;
  }
  .who_we_are ul li
  {
    width: 100%;
  }
  .tab_inner_section .tab_inner_description
  {
    width: 100%;
  }
  .tab_inner_section .tab_inner_image
  {
    width: 100%;
  }
  .tab_inner_section
  {
    padding: 0;
    text-align: center;
  }

  .advantage_section
  {
    background-position: top center;
  }
  .play_store_icon img
  {
    width: 120px;
  }
  .banner_img img
  {
    height: auto;
    margin-top:30px;
  }
  .promo_section 
  {
    background: #f2f2f2;
  }
  .promo_section::before , .promo_section::after
  {
    display: none;
  }
  h3.agile_list_item
  {
    font-size: 20px;
    text-align: center;
  }
  .logo_section img
  {
    margin-bottom: 30px;
  }
  .sec_heading
  {
    font-size: 25px;
    text-align: center;
  }
  .sec_heading:after
  {
    display: none;
  }

  .advantage_img img
  {
    margin-bottom:20px;
    height: auto;
  }
  
  .advantage_content_list_item ul
  {
    text-align: center;
  }
  .advantage_content_list_item ul li
  {
    font-size: 18px;
  }
  .advantage_content_list_item ul li::before
  {
    left:-5px;
  }
  
  .navbar-nav .nav-item:last-child
  {
    padding: 0 10px;
    width: 65%;
    margin-top:10px;
  }
  .navbar-nav
  {
    margin-top:20px;
  }
  .solution_sec_section .sol_title
  {
    font-size: 20px;
  }

  .ap_title 
  {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .tab_inner_image img
  {height: auto;}
  .ap_content p
  {
    padding-left: 0;
    padding-right: 0;
  }
  .tab_sec_content h3
  {
    font-size: 22px;
  }
  
  .tab_sec_content p
  {
    font-size: 16px;
  }
  .tab_content_section .nav.nav-tabs
  {
    flex-wrap:nowrap;
    overflow-x: scroll;
    border-radius: 20px;
    justify-content: unset;
    padding: 20px;
    position: sticky;
    top: 7rem;
    background: #fff;
    z-index: 1;
}
  .integration_tabs .nav.nav-tabs {
    flex-wrap: nowrap;
    overflow-x: scroll;
    border-radius: 20px;
    justify-content: unset;
    padding: 20px;
}
.integration_tabs .nav.nav-tabs li a {
  white-space: nowrap;
}
  .tab_content_section .nav.nav-tabs li.nav-item
  {
    border: 0;
  } 
  .tab_content_section .nav.nav-tabs li.nav-item a
  {
    white-space: nowrap;
  }
  .copy_right_first_widget ul
  {
    justify-content: center;
  }
  .fnt_14px.txt_center
  {
    text-align: center!important;
  }
  .banner_content h1
  {
    text-align: center;
    font-size: 25px;
  }
  .banner_section:before
  {
    background-size: contain;
    background-position:top center;
  }
 
  h5.agile_list_item
  {
    font-size: 20px;
  }
  .banner_content p
  {
    text-align: center;
  }
  .play_store_icon
  {
    justify-content: center;
  }
  .advantage_content p
  {
    text-align: center;
  }
  .feature_page
  {
    background-size: contain;
  }
  .feature_img img
  {
    height: auto;
  }
  .demo_page
  {
    background-size: contain;
  }
  .binary_banner_img img
  {
    margin-top:20px;
    height: auto;
  }
  .demo__part_left_img img
  {
    margin-top:20px;
    height: auto;
  }
  .how_we_work_leftside_part img
  {
    height: auto;
  }
  .unilevel_button_sec
  {
    justify-content: center;
    flex-wrap: wrap;
  }
  .uni_ful_width_content_part
  {
    padding: 20px;
  }
  .list_item_ful_sec
  {
    padding: 10px;
  }
  .unilevel_mlm_page_banner_content
  {
    text-align: center;
  }
  .unilevel_banner_img::before
  {
    top: 0;
  }
  .unilevel_img_part img
  {
    margin-top: 20px;
  }
  .why_mlm_list_items
  {
    width: 100%;
    padding: 10px 20px;
    margin: 10px;
  }
  .ap_title span
  {
    display: block;
  }
  .sol_title span.title
  {
    font-size: 20px!important;
  }
  .solution_sec_section .sol_title span
  {
    display: block;
  }
  .solution_sec_section .sol_title span.title
  {
    font-size: 20px;
  }
  .sol_box
  {
    text-align: center;
  }
  .who_content p
  {
    text-align: center;
  }
  .solution_sec_section .sol_sec_box,.ap_sec_box
  {
    text-align: center;
  }
  .another_plan_section .ap_title span.title:before
  {
    display: none;
  }
  .carousel .card-content{
  text-align: center;
  }
  .carousel .card-body span
  {
    left:45%;
    bottom:10px;
  }
  .carousel .card-content
  {
    padding: 0px 0px 15px;
  }
  .carousel .card-body
  {
    padding: 15px;
  }
  .carousel .card
  {
    margin: 0px;
    box-shadow: 1px 1px 15px #ccc;
  }
  .matrix_mlm_page_banner_content
  {
    text-align: center;
  }
  .unilevel_content_part p
  {
    text-align: center;
  }
  .advantage_con_box p,.advantage_con_box
  {
    text-align: center;
  }
  .advantage_con_box h3
  {
    font-size: 20px;
  }
  .demo_ful_width_content_part
  {
    padding: 25px 15px;
  }
  .bonus_content_part
  {
    text-align: center;
  }
  .bonus_content_part h3
  {
    font-size: 20px;
  }
  .bonus_img img
  {
    height: auto;
  }
  .trends_content_part_right p
  {
    text-align: center;
  }
  .benefits_box
  {
    flex-direction: column;
    text-align: center;
  }
  .benefits_box .feather.feather-star
  {
    margin-bottom: 20px;
  }
  .benefit_content_part h3
  {
    font-size: 20px;
  }
  .accordion .card .card-head span.icon
  {
    margin: 0 10px!important;
  }
  .accordion .card a h2
  {
    font-size: 14px;
  }
  .accordion .card-body {
    padding: 15px;
    font-size: 14px;
    text-align: center;
  }
  .demo_full_width_section
  {
    padding: 0;
  }
  .demo_col
  {
    height: 250px;
  }
  .accordion
  {
    margin: 10px auto;
  }
  .advantages::before
  {
    height: 100%;
  }
	.trends__part_left_img img
	{
    height:auto;
    margin: 10px;
	}
  .pricing_img img
  {
    height: auto;
  }
  .pricing_content p{
    text-align: center;
  }
}


/*New Styles*/
header
{
  padding: 20px 0;
}
.section
{
  padding: 50px 0;
}
.fs-30
{
  font-size: 30px;
}

.banner_subtitle
{
  background: #007bff0d;
}
.why_network_marketing_list_item ul
{
  margin-left: 20px;
}
.why_network_marketing_list_item ul li
{
  padding: 3px 0;
  list-style-type: ' ✔ ';
}
.why_network_marketing_list_item ul li::marker
{
  color: var(--blue-color);
  font-size: 20px;
}

.business_needs_box
{
  background: #F8F8F8;
  padding: 25px 15px;
  border-radius: 15px;
  margin-bottom: 20px;
  height: 100%;
  /* box-shadow: 8px 8px 15px 0 rgba(17, 17, 17,0.2); */
}

.business_needs_box ul li 
{
  display: flex;
  align-items: center;
  gap: 10px;
} 

.integration_tabs.v2 .nav.nav-tabs li a{
  text-align: center;
  border: 1px solid #222;
  background: #fff;
  color: #000;
  padding: 10px 30px;
}

.integration_tabs.v2 .nav.nav-tabs li a i 
{
  color: #222;
}

.integration_tabs .nav.nav-tabs li a.active
{
  background: #222;
  color: #fff;
  border-color: #222;
}

.integration_tabs .nav.nav-tabs li a.active i
{
  color: #fff;
}

.solution_sec_section_v2
{
  background: url('../images/business_model.png') no-repeat;
  background-position: center center;
  background-size: cover;
}
.sol_sec_box_v2
{
  padding: 20px;
  border-radius: 15px;
  background: #222;
  height: 100%;
}
.banner_img_suppot{
  background: url('../images/support.png') no-repeat;
  background-size: cover;
  height: 850px;
}
.support_box
{
  background: #f7f7f7;
  padding: 25px 15px;
  border-radius: 15px;
  margin-bottom: 20px;
  height: 100%;
}
.banner_section_v2
{
    padding: 100px 0;
    background: url('../images/banner_bg_v2.png') no-repeat;
    background-size: cover;
    background-position: bottom center;
    display: flex;
    align-items: center;
    min-height: 600px;
}
.mirror_img img
{
  transform: scaleX(-1);
}
.step-no
{
  display: inline-block;
  background: #3988FF36;
  color: var(--blue-color);
  font-weight: bold;
  height: 55px;
  width: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
}
.v2_tag
{
  background: #464646;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px; 
  text-align: center;
}
.v2_tag i 
{
  color: #fff;
}

.contact_form_v2 input.form-control ,.contact_form_v2 select.form-control
{
    background: #F5F6FA;
    height: 50px;
    margin-bottom: 20px;
    color: #000;
}
.contact_form_v2 input.form-control:focus , .contact_form_v2 textarea.form-control:focus
{
  box-shadow: 0 0 0 0.2rem rgb(255 0 0 / 25%);
  border-color: transparent;
}
.contact_form_v2 textarea.form-control
{
  background: #F5F6FA;
  color: #000;
}
.contact_form_v2 button.custom_btn
{
  padding: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}
.contact_form_v2 input::placeholder,.contact_form_v2 textarea::placeholder
{
  color: #000;
}
.blog
{
  background: #f7f7f7;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 20px;
  height: 100%;
}
.blog_bg
{
    padding: 100px 0;
    background: url('../images/blog_bg.png') no-repeat;
    background-size: cover;
    background-position: bottom center;
    display: flex;
    align-items: center;
    min-height: 600px;
}
.list-style
{
  padding-left: 20px;
}
.list-style li
{
  list-style: circle;
}
.sidebar_blog ul li 
{
  padding-bottom: 10px;
}