p { 
  color: #222222;
  margin-bottom: 15px; 
}

 

 

a {
  display: block;
  color: #0e101b;
  text-decoration: none;  
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

 
 

/*================================================
Flex CSS
=================================================*/
 
.topnav-middle .menu-items .menu-item-wrapper {
  position: relative;
}
.topnav-middle .menu-items .menu-item-wrapper:hover .topnav-dropdown-root {
  display: block;
}

.topnav-middle .menu-items {
  display: flex;
  justify-content: center;
  align-items: center;
}

.topnav-middle .menu-items .menu-item {
  color: #ffffff; 
}

.topnav-middle .menu-items .menu-item:hover {
  color: var(--primary-color);
}
 


/*================================================
Site Dropdown menu items CSS
=================================================*/
.topnav-dropdown-root {
  position: absolute;
  top: 42px;
  left: 0;
  display: none;
  min-width: 700px;
  transform: translate(-44%, 0);
  will-change: display;
  transition-property: display;
  transition-duration: .25s;
  transition-timing-function: ease;
}
.topnav-dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #fff;
  margin: 0 auto;
}
.topnav-dropdown-container {
  display: flex;
  background-color: #ffffff;
  padding: 15px;
  box-shadow: 0 30px 60px -12px rgb(29 27 47 / 15%), 0 18px 36px -20px rgb(29 27 47 / 35%);
  border-radius: 8px;
  overflow: hidden;
}

.topnav-dropdown-card {
  display: flex;
  flex-direction: column;
  max-width: 225px;
  padding: 15px;
  border-radius: 12px;
}

.topnav-dropdown-card:hover {
  background-color: var(--primary-color-10);
  color: #000;
}

.topnav-dropdown-card .topnav-dropdown-image {
  width: 100%;
  margin-bottom: 20px;
}
.topnav-dropdown-card .topnav-dropdown-heading {
  margin: 0;
  font-size: 16px;
}
.topnav-dropdown-card .topnav-dropdown-description {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
}



/*================================================
Product's top heading section CSS
=================================================*/
#top-heading-section {
  background-color: #ffffff;
  background-image: url(black-bg1.png);
  background-position: bottom left;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 500px;
  z-index: 1;
  display: flex;
  align-items: center;
}

#top-heading-section .shape-img1 {
    overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 50%;
  max-width: 520px;
}

.top-heading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.top-heading {
  color: #ffffff;
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 1.3;
  font-weight: 800;
  display: flex;
  flex-direction: column;
}

.top-heading .top-heading-before {
  font-size: 25px;
}

.top-heading .top-heading-main {
  color: #ffcf58;
  font-size: 38px;
  margin: 0;
  font-weight: 700;
}

.top-heading .top-heading-after {
  font-size: 25px;
}

.plus-heading {
  margin: 0 30px;
  font-size: 60px;
  margin-bottom: 20px;
}

.top-heading-description-container {
  /* max-width: 550px; */
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}
.top-heading-description {
  font-size: 1.05rem;
  color: #eeeeee;
  margin-bottom: 30px;
}
.top-heading-description .top-heading-description-highlight {
  /* color: var(--primary-color); */
  font-weight: 700;
}
.top-heading-price {
  color: #ffcf58;
  font-weight: 700;
  margin-bottom: 10px;
}
.top-heading-price .amount {
  font-size: 20px;
}
.top-heading-button {
  display: inline-block;
}
#A .products_list{
    display: none; 
  }





 
 @media only screen and (max-width: 992px) {
     .topnav-middle {
    display: none;
  }
  #A .products_list{
      display: block;
  }
     }

     
/* Button primary CSS */
.btn-primary {
  color: #0e101b;
  background-color: var(--secondary-color);
}

.btn-primary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 30px 0 0 30px;
  z-index: -1;
  background: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 0 30px 30px 0;
  z-index: -1;
  background: var(--primary-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #0e101b;
  background-color: var(--secondary-color);
}

.btn-primary:hover, .btn-primary:focus {
  color: #ffffff !important;
  background-color: var(--secondary-color) !important;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
}

.btn-primary:hover::before, .btn-primary:focus::before {
  width: 60%;
  opacity: 1;
  visibility: visible;
}

.btn-primary:hover::after, .btn-primary:focus::after {
  width: 60%;
  opacity: 1;
  visibility: visible;
}

/* Button secondary CSS */
.btn-secondary {
  color: #ffffff;
  background-color: var(--primary-color);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 30px 0 0 30px;
  z-index: -1;
  background: var(--secondary-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: 0 30px 30px 0;
  z-index: -1;
  background: var(--secondary-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #ffffff;
  background-color: var(--primary-color);
}

.btn-secondary:hover, .btn-secondary:focus {
  color: #0e101b !important;
  background-color: var(--primary-color) !important;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
}

.btn-secondary:hover::before, .btn-secondary:focus::before {
  width: 60%;
  opacity: 1;
  visibility: visible;
}

.btn-secondary:hover::after, .btn-secondary:focus::after {
  width: 60%;
  opacity: 1;
  visibility: visible;
}

/*================================================
Section Container CSS
=================================================*/
.section-container {

}

.section-container .section-picture {
}

.section-container .section-picture picture {
  display: block;
}
 
.section-container .section-picture  img {
  width: 100%;
  height: auto;
}

.section-container .section-content {
}

.section-container .section-content .section-subtitle {
  display: inline-block;
  color: #2d9bea;
  font-size: 18px;
}

.section-container .section-content .section-subtitle i {
  background-color: rgba(45,155,234,0.15);
  color: #2d9bea;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  margin-right: 4px;
}

.section-container .section-content .section-subtitle i::before {
  font-size: 12px;
}

.section-container .section-content .section-heading {
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 38px;
  font-weight: 700;
}

.section-container .section-content .section-heading span {
  color: #2d9bea;
}

.section-container .section-content .section-description {
  margin-bottom: 15px;
}

.section-container .section-content .section-description:last-child {
  margin-bottom: 0;
}

.section-container .section-content .section-points {
  list-style: none;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
  text-align: left;
}

.section-container .section-content .section-points li {
  flex: 1 1 calc(50% - 10px);
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.section-container .section-content .section-points li i {
  width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color-10);
    color: var(--primary-color);
    padding: 0;
    border-radius: 5px;
    margin-right: 10px;
}

.section-container .section-content .btn {
  display: inline-block;
  margin-bottom: 10px;
}





.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}




     .row_features {padding: 50px;text-align:center}
	.row_features p{      text-align: center;
    color: #000000;
    font-weight: 500;
    border-bottom: 2px solid #8BC34A;
    width: fit-content;
    margin: 0 auto;
}
	
	.row_features h1{text-align: center;
    font-size: 38px;
    color: #363c3f;
    width: auto;
    letter-spacing: -0.6px;
    font-weight: 400;
    text-transform: capitalize;}

    #svg_fea {position: absolute;
    width: 100%;
    z-index: -1;
    left: 0;
    height: auto;
    bottom: 0;}
	.cont_share_boxes {
        width: 200px;
    display: inline-grid;
    font-size: 16px;
    margin: 5px;
    text-align: center;
    box-shadow: 0px 0px 20px 0px #b1b1b1b8;
    padding: 13px 13px 26px;
    font-weight: 500;
    border-radius: 5px;
    color: #453b9d;

}

.cont_share_boxes:hover:after {
    content: '';
    position: absolute;
    border: 6px solid orange;
    width: 30px;
    height: 27px;
    border-bottom: none;
    border-left: none;
    right: 0;
    top: 0;
	transition:0.3s;
}
.cont_share_boxes:hover:before {
    content: '';
    position: absolute;
    border: 6px solid orange;
    width: 30px;
    height: 27px;
    border-top: none;
    border-right: none;
    left: 0;
    bottom: 0;
	transition:0.3s;
}

.cont_share_boxes:hover {
	box-shadow: 0px 0px 10px 0px #0000002e;
	color:black;
}


	.cont_share_boxes i{font-size: 43px;
    margin: 20px;
    }




    #pricing-section {
    padding-bottom: 70px;
    padding-top: 70px;
}

 
 