/*Developed by Lwanda Lengisi & Lindokuhle Nsibande under contract of Berea Computers*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    overflow-x: hidden;
  }
  form{
    margin-bottom: 0px;
    width: 100%;
  }
  
  a {
    color: #fdc134;
  }
  
  a:hover {
    color: #fdd067;
    text-decoration: none;
  }
  
  /* h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
  } */
  .theme-btn{
    color: #ffffff;
    border-radius: 5px;
    padding: 8px 35px 10px 35px;
    border: 2px solid #dfa700;
    transition: all ease-in-out 0.3s;
    display: inline-block;
    background: #dfa700;
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
  .theme-btn-o{
    color: #dfa700;
    border-radius: 5px;
    padding: 8px 35px 10px 35px;
    border: 2px solid #dfa700;
    transition: all ease-in-out 0.3s;
    display: inline-block;
    background: #ffffff;
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
  /* Scroller */
  html::-webkit-scrollbar {
    width: 10px;
  }

  html::-webkit-scrollbar-track {
      background: rgb(179, 177, 177);
      border-radius: 10px;
  }

  html::-webkit-scrollbar-thumb {
    background: rgb(136, 136, 136);
    border-radius: 10px;
  }

  html::-webkit-scrollbar-thumb:hover {
    background: rgb(100, 100, 100);
    border-radius: 10px;
  }

  html::-webkit-scrollbar-thumb:active {
    background: rgb(68, 68, 68);
    border-radius: 10px;
  }
  html{
    scrollbar-color: rgb(68, 68, 68) rgb(100, 100, 100);
    scrollbar-width: thin;
  }
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    right: 15px;
    bottom: 15px;
    background: #dfa700;
    color: #fff;
    transition: display 0.5s ease-in-out;
    z-index: 99999;
    transition: all ease-in-out 0.3s;
  }
  
  .back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 8px;
    left: 8px;
  }
  
  .back-to-top:hover {
    color: #fff;
    background: #fcb102;
  }
  /* Loader */

  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    height: 100px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 16px 0;
    background: #000000;
  }
  
  #header .logo h1 {
    font-size: 24px;
    margin: 0;
    padding: 10px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
  }
  
  #header .logo h1 a, #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  #header .logo h1 a span, #header .logo h1 a:hover span {
    color: #fdc134;
  }
  
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 70px;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  .nav-bar-section{
    padding: 0;
    overflow: unset;
  }
  .nav-upper-section{
    background-color: #000;
    border-bottom: 1px solid #fff;
    padding: 10px 0px;
  }
  .nav-upper-section p{
    margin-bottom: 0px;
    color: #fff;
    width: 100%;
    display: inline-flex;
  }
  .nav-upper-section p span{
    text-transform: capitalize;
  }
  .nav-upper-section p a{
    margin-left: auto;
  }
  #header .logo{
    margin-right: auto;
  }
  .nav-menu, .nav-menu * {
    margin-top: 3px;
    padding: 0px;
    list-style: none;
  }
  
  .nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
  }
  
  .nav-menu ul {
    border-radius: 6px;
  }
  
  .nav-menu a {
    display: block;
    position: relative;
    color: #ffffff;
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
  }
  
  .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a, .nav-menu a.active {
    color: #e0a700;
    text-decoration: none;
  }
  
  .nav-menu .get-started a {
    background: #ffffff;
    color: #e0a700;
    border-radius: 5px;
    margin: 2px 0 0 15px;
    padding: 5px 25px 6px 25px;
    border: 2px solid #dfa700;
  }
  
  .nav-menu .get-started a:hover {
    background: #dfa700;
    color: #000000;
  }
  
  .nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
  }
  
  .nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
  }
  
  .nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #3e6f9b;
  }
  
  .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #fdc134;
  }
  
  .nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
  }
  
  .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
  }
  
  .nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
  }
  
  .nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
  }
  
  .nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
  }
  .Name-user {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
  }
  @media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
      left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
      left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
      content: "\ea9d";
    }
  }
  
  /* Mobile Navigation */
  #header .mobile-nav-toggle i::before{
    content: "\efa2";
  }
  #header.show .mobile-nav-toggle i::before{
    content: "\eee4";
  }
  .cart-btn-contailer{
    display: none;
    justify-content: center;
    align-items: center;
  }
  .cart-btn-contailer a{
    color: #ffffff;
    border-right: 2px solid #fcb102;
    margin-right: 10px;
    padding-right: 10px;
  }
  .cart-btn-contailer a span{
    padding: 0px 5px;
  }
  .bagger-button-container{
    display: flex;
    align-items: center;
    width: 30px;
    transition-duration: .5s;
  }
  #header.show .bagger-button-container{
    width: 280px;
    transition-duration: .5s;
    position: fixed;
    right: 10px;
    top: 35px;
    z-index: 3;
  }
  .mobile-nav-toggle {
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }
  
  .mobile-nav-toggle i {
    color: #ffffff;
  }
  
  .mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
  }
  
  .mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .mobile-nav a {
    display: block;
    position: relative;
    color: #213b52;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
    transition: 0.3s;
  }
  
  .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #fdc134;
    text-decoration: none;
  }
  
  .mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
  }
  
  .mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
  }
  
  .mobile-nav .drop-down > a {
    padding-right: 35px;
  }
  
  .mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
  }
  
  .mobile-nav .drop-down li {
    padding-left: 20px;
  }
  
  .mobile-nav .get-started a {
    background: #213b52;
    color: #fff;
    border-radius: 50px;
    margin: 15px;
    padding: 8px 25px 10px 25px;
    text-align: center;
  }
  .mobile-nav .get-started a:hover {
    background: #fdc134;
    color: #213b52;
  }
  
  .mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(18, 33, 46, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
  }
  #header .side-nav-links-container{
    background-color: #000;
    color: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0;
    z-index: 2;
    transition-duration: .5s;
    padding-top: 90px;
  }
  #header .side-nav-links-container .side-nav-links-wrap{
    border-top: 2px solid rgb(206, 206, 206);
  }
  #header.show .side-nav-links-container{
    width: 300px;
    transition-duration: .5s;
  }
  #header .side-nav-links-container .side-nav-links-wrap ul{
    padding-left: 0px;
    list-style: none;
  }
  #header .side-nav-links-container .side-nav-links-wrap ul li{
    padding: 10px 20px;
    border-bottom: 2px solid rgb(206, 206, 206);
  }
  #header .side-nav-links-container .side-nav-links-wrap ul li ul {
    display: none;
  }
  #header .side-nav-links-container .side-nav-links-wrap ul li ul li{
    border: none;
  }
  #header .side-nav-links-container .side-nav-links-wrap ul li a{
    color: #fff;
    width: 100%;
    display: block;
  }
  #header .side-nav-links-container .side-nav-links-wrap ul li.active a{
    color: #e0a700;
  }
  #header .side-nav-links-container .side-nav-links-wrap ul li a.drop::after{
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
  }
  #header .side-nav-links-container .side-nav-links-wrap ul li.show ul{
    display: block;
  }
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #hero {
    width: 100%;
    padding: 0 0 0 0;
    background: #ffffff;
    /* background: linear-gradient(180deg, #000000 0%, #151515 35%, #292929 100%); */
  }
  
  #hero h1 {
    margin: 0 0 7px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    /*color: #fff;*/
    font-family: "Poppins", sans-serif;
    /*text-align: center;*/
  }
  
  #hero h2 {
    margin-bottom: 30px;
    font-size: 22px;
    /*text-align: center;*/
  }
  
  #hero .btn-get-started {
    color: #000000;
    border-radius: 5px;
    padding: 8px 35px 10px 35px;
    border: 2px solid #dfa700;
    transition: all ease-in-out 0.3s;
    display: inline-block;
    background: #dfa700;
    display: table;
    /*margin-left: auto;*/
    margin-right: auto;
  }
  
  #hero .btn-get-started:hover {
    background: transparent;
    color: #e0a700;
  }
  
  @media (max-width: 768px) {
    #hero {
      -moz-text-align-last: center;
      text-align-last: center;
    }
    #hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
    #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
    #hero .hero-img img {
      width: 47%;
    }
  }
  @media (max-width: 679px) {
    #hero .hero-img img {
      width: 53%;
  }
  }
  
  @media (max-width: 575px) {
    #hero .hero-img img {
      width: 55%;
    }
  }
  @media (max-width: 407px) {
    #hero .hero-img img {
      width: 79%;
    }
  }
  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 60px 0;
    overflow: hidden;
  }
  
  .section-bg {
    background: linear-gradient(180deg, #f2f6fa 0%, #fff 100%);
  }
  
  .section-title {
    text-align: center;
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    font-family: "Poppins", sans-serif;
    color: #292929;
  }
  
  .section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #dfa700;
    bottom: 0;
    left: calc(50% - 20px);
  }
  
  .section-title p {
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Clients
  --------------------------------------------------------------*/
  .clients {
    padding: 0;
  }
  
  .clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 120px;
  }
  
  .clients .client-logo img {
    height: 40px;
  }
  
  .clients .client-logo:hover img {
    transform: scale(1.2);
  }
  
  .clients img {
    transition: all 0.4s ease-in-out;
  }
  .core-business {
    margin-top: 100px;
    margin-left: 50px;
  }
  .Asakhe-logo {
    margin-top: 100px;
  }
  
  /*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
  .about .content {
    padding: 30px 0;
  }
  
  .about .content h3 {
    font-weight: 700;
    font-size: 34px;
    color: #213b52;
  }
  
  .about .content p {
    margin-bottom: 0;
  }
  
  .about .content .icon-box {
    margin-top: 25px;
  }
  
  .about .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
    color: #213b52;
  }
  
  .about .content .icon-box h4 a {
    color: #292929;
    transition: 0.3s;
  }
  
  .about .content .icon-box h4 a:hover {
    color: #dfa700;
  }
  
  .about .content .icon-box i {
    font-size: 48px;
    float: left;
    color: #dfa700;
  }
  
  .about .content .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
  }
  
  .about .image {
    background: url("../img/about.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
  }
  
  @media (max-width: 667px) {
    .about .image img {
      max-width: 100%;
    }
  }
  
  /*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
  .services {
    padding-bottom: 40px;
  }
  
  .services .card {
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
    background: transparent;
  }
  
  .services .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
  }
  
  .services .card-img img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
  }
  
  .services .card-body {
    z-index: 10;
    background: #fff;
    border-top: 4px solid #fff;
    padding: 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    transition: 0.3s;
  }
  
  .services .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .services .card-title a {
    color: #292929;
    transition: 0.3s;
  }
  
  .services .card-text {
    color: #5e5e5e;
  }
  
  .services .read-more a {
    color: #292929;
    /* text-transform: uppercase; */
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
  }
  
  .services .read-more a:hover {
    color: #dfa700;
  }
  
  .services .card:hover img {
    transform: scale(1.1);
  }
  
  .services .card:hover .card-body {
    border-color: #dfa700;
  }
  
  .services .card:hover .card-body .card-title a {
    color: #dfa700;
  }
  
  /*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/
  .features .content + .content {
    margin-top: 100px;
  }
  
  .features .content h3 {
    font-weight: 700;
    font-size: 26px;
    color: #213b52;
  }
  
  .features .content ul {
    list-style: none;
    padding: 0;
  }
  
  .features .content ul li {
    padding-bottom: 10px;
  }
  
  .features .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #fdc134;
  }
  
  .features .content p:last-child {
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
  .portfolio{
    padding-top: 0px;
  }
  .portfolio .portfolio-item {
    margin-bottom: 30px;
  }
  .portfolio #portfolio-flters {
    padding: 0;
    margin: 0 0 35px 0;
    list-style: none;
    text-align: center;
  }
  
  .portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 0px 0px 0px 0px;
    display: inline-block;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
    color: #dfa700;
  }
  
  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
  }
  
  .portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(33, 59, 82, 0.6);
    position: absolute;
    left: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
  }
  
  .portfolio .portfolio-wrap img {
    transition: 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    top: calc(50% - 36px);
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a {
    color: #fdc134;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    width: 36px;
    height: 36px;
    display: inline-block;
    transition: 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #fff;
  }
  
  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }
  
  .portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  .portfolio .portfolio-wrap:hover::before {
    left: 0;
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-links {
    opacity: 1;
    top: calc(50% - 18px);
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
  }
  .portfolio .owl-carousel{
    margin-bottom: 40px;
  }
  .portfolio .owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled{
    display: flex;
  }
  .portfolio .owl-carousel .owl-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
  }
  .portfolio .owl-carousel .owl-nav button{
    background-color: #000;
    color: #fff;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    border: none;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .portfolio .owl-carousel .owl-nav button span{
    display: flex;
  }
  .portfolio .owl-carousel .owl-nav button.owl-next{
    margin-left: auto;
  }
  .portfolio .owl-carousel .owl-dots{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .portfolio .owl-carousel .owl-dots button{
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: 1px solid #000;
    background-color: transparent;
  }
  /*--------------------------------------------------------------
  # Team
  --------------------------------------------------------------*/
  .team .member {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .team .member .pic {
    margin-bottom: 15px;
    overflow: hidden;
    min-height: 260px;
  }
  
  .team .member .pic img {
    max-width: 100%;
  }
  
  .team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #213b52;
  }
  
  .team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
  }
  
  .team .member .social {
    margin-top: 15px;
  }
  
  .team .member .social a {
    color: #5289ba;
    transition: 0.3s;
  }
  
  .team .member .social a:hover {
    color: #fdc134;
  }
  
  .team .member .social i {
    font-size: 18px;
    margin: 0 2px;
  }
  
  /*--------------------------------------------------------------
  # Pricing
  --------------------------------------------------------------*/
  .pricing .row {
    padding-top: 40px;
  }
  
  .pricing .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    text-align: center;
    position: relative;
    /* border: 1px solid #dfa700; */
    border-radius: 15px;
  }
  
  .pricing .featured-badge {
    display: inline-block;
    position: absolute;
    top: -36px;
    left: calc(50% - 49px);
    background: #dfa700;
    color: #fff;
    text-align: center;
    line-height: 6;
    border-radius: 50px;
    padding: 0px 0px 0px 0px;
    font-size: 16px;
    height: 100px;
    width: 100px;
    text-transform: capitalize;
  }
  
  .pricing h3 {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 28px;
    color: #dfa700;
  }
  
  .pricing h4 {
    font-size: 46px;
    color: #fdc134;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 25px;
  }
  
  .pricing h4 span {
    color: #bababa;
    font-size: 18px;
    display: block;
  }
  
  .pricing ul {
    padding: 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
  }
  
  .pricing ul li {
    padding-bottom: 12px;
  }
  
  .pricing ul i {
    color: #fdc134;
    font-size: 18px;
    padding-right: 4px;
  }
  
  .pricing ul .na {
    color: #ccc;
  }
  
  .pricing ul .na i {
    color: #ccc;
  }
  
  .pricing ul .na span {
    text-decoration: line-through;
  }
  
  .pricing .get-started-btn {
    background: #213b52;
    display: inline-block;
    padding: 6px 30px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    transition: 0.3s;
  }
  
  .pricing .get-started-btn:hover {
    background: #fdc134;
  }
  
  .pricing .featured {
    z-index: 10;
    margin: -30px -5px 0 -5px;
    /* border: 1px solid #dfa700; */
    border-radius: 15px;
  }
  
  .pricing .featured .get-started-btn {
    background: #fdc134;
  }
  
  .pricing .featured .get-started-btn:hover {
    background: #fdcd5c;
  }
  
  @media (max-width: 992px) {
    .pricing .box {
      max-width: 60%;
      margin: 0 auto 30px auto;
    }
  }
  
  @media (max-width: 767px) {
    .pricing .box {
      max-width: 80%;
      margin: 0 auto 30px auto;
    }
  }
  
  @media (max-width: 420px) {
    .pricing .box {
      max-width: 100%;
      margin: 0 auto 30px auto;
    }
  }
  
  /*--------------------------------------------------------------
  # Frequently Asked Questions
  --------------------------------------------------------------*/
  .faq .faq-item {
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid #dde8f1;
  }
  
  .faq .faq-item i {
    color: #9bbbd7;
    font-size: 20px;
    float: left;
    line-height: 0;
    padding: 13px 0 0 0;
    margin: 0;
  }
  
  .faq .faq-item h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin: 0 0 10px 28px;
    font-family: "Poppins", sans-serif;
  }
  
  .faq .faq-item p {
    font-size: 15px;
  }
  
  /*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
  .contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 10px 30px 10px;
    background: #fff;
    border-radius: 15px;
  }
  
  .contact .info-box i {
    font-size: 32px;
    color: #dfa700;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #fff7e5;
  }
  
  .contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
  }
  
  .contact .info-box p {
    padding: 0;
    line-height: 15px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .contact .email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    background: #fff;
    border-radius: 15px;
  }
  
  .contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
  }
  
  .contact .php-email-form input::focus, .contact .php-email-form textarea:focus {
    background-color: #fdc134;
  }
  
  .contact .php-email-form input {
    padding: 20px 15px;
  }
  
  .contact .php-email-form textarea {
    padding: 12px 15px;
  }
  
  .contact button[type="submit"] {
    background: #dfa700;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
  }
  
  .contact .Email-info{
    width: 100%;
    margin: 0 auto;
  }
  
  .contact .php-email-form button[type="submit"]:hover {
    background: #fdd067;
  }
  
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
    color: #fff;
    font-size: 14px;
    position: relative;
  }
  
  #footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000000;
    z-index: -1;
  }
  
  #footer .footer-top {
    position: relative;
    z-index: 0;
    text-align: center;
    padding: 80px 0;
  }
  
  #footer .footer-top h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  #footer .footer-top p {
    font-size: 15;
    font-style: italic;
    margin: 30px 0 0 0;
    padding: 0;
  }
  
  #footer .footer-top .footer-newsletter {
    text-align: center;
    font-size: 15px;
    margin-top: 30px;
  }
  
  #footer .footer-top .footer-newsletter form {
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  #footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
  }
  
  #footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #dfa700;
    color: #fff;
    transition: 0.3s;
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #fcb102;
  }
  
  #footer .footer-top .social-links {
    margin-top: 30px;
  }
  
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #dfa700;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .footer-top .social-links a:hover {
    background: #fcb102;
    color: #fff;
    text-decoration: none;
  }
  
  #footer .footer-bottom {
    border-top: 1px solid #dfa700;
    z-index: 2;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  #footer .copyright {
    text-align: center;
    float: left;
  }
  
  #footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
  }
  
  @media (max-width: 768px) {
    #footer .copyright, #footer .credits {
      padding: 5px;
      float: none;
      text-align: ceneter;
    }
  }
  
  
  /**New**/
  li.get-started {
      margin-top: 6px;
  }
  
  .refunds-list{
    list-style: none;
    padding: 0px;
  }
  
  .refunds-list i{
    color: #dfa700;
    font-size: 20px;
  }
  
  .refunds-list li{
    text-align: left;
  }
  
  li.Products-btn {
    border: 2px solid #dfa700;
    width: 280px;
    border-radius: 5px;
  }
  
  .Businesess-rules{
    color: #999;
  }
  
  .info-box {
      border: 1px solid #dfa700;
  }
  
  .email-form {
      border: 1px solid #dfa700;
  }
  
  .box1{
    border: 1px solid #dfa700;
  }
  
  .box2{
    border: 1px solid #dfa700;
  }
  
  .box3{
    border: 1px solid #dfa700;
  }
  
  .map {
      padding: 40px 0px 0px 0px;
      width: 100px;
  }
  
  
  /*Emegency Button*/
  .emegencyContainer h2{
    color: #ffffff;
    /* letter-spacing: 0px; */
    font-size: 25px;
    font-weight: bold;
    text-transform: none;
    margin-top: 0px;
    margin-left: 22px;
    line-height: 0px;
  }
  
  .emegencyContainer a{
    font-weight: 400;
    letter-spacing: 0px;
    background-color: transparent;
    border: 3px solid #dfa700;
    color: #dfa700;
    font-size: 16px;
    height: 50px;
    width: 190px;
    margin-top: -30px;
    padding-top: 10px;
    float: right;
    border-radius: 5px;
    margin-right: -597px;
  }
  
  .emegencyContainer a:hover {
    color: #000000;
    background-color: #dfa700;
  }
  
  #emegency{
    height: 100px;
    /*width: 100vw;*/
    margin-top: 2px;
    background-color: #000000;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #hero {
    width: 100%;
    height: calc(100vh - 114px);
    padding: 0;
    overflow: hidden;
  }
  
  #hero .carousel-item {
    width: 100%;
    height: calc(100vh - 114px);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  
  #hero .item0::before {
    content: '';
    background-color: rgba(13, 30, 45, 0.6);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
  }
  #hero .item1::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
  }
  
  #hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  
  #hero .carousel-content {
    text-align: left;
  }
  #carousel-item1{
   opacity: 1;
  }
  
  @media (max-width: 992px) {
    #hero, #hero .carousel-item {
      height: calc(100vh - 70px);
    }
    #hero .carousel-content.container {
      padding: 0 50px;
    }
  }
  
  #hero p {
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    color: #fff;
  }
  
  #hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
  }
  
  #hero .carousel-inner .carousel-item,
  #hero .carousel-inner .active.carousel-item-left,
  #hero .carousel-inner .active.carousel-item-right {
    opacity: 0;
  }
  
  #hero .carousel-inner .active,
  #hero .carousel-inner .carousel-item-next.carousel-item-left,
  #hero .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
  }
  
  #hero .carousel-inner .carousel-item-next,
  #hero .carousel-inner .carousel-item-prev,
  #hero .carousel-inner .active.carousel-item-left,
  #hero .carousel-inner .active.carousel-item-right {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 10%;
  }
  
  #hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    background: none;
    font-size: 25px;
    line-height: 1;
    width: auto;
    height: auto;
  }
  
  #hero .carousel-indicators li {
    cursor: pointer;
  }
  
  /*#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 13px 38px;
    border-radius: 5px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #000;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    /* border: 0; 
    background: #dfa700;
  }
  
  #hero .btn-get-started:hover {
    background: none;
  }*/
  
  @media (max-width: 768px) {
    #hero h2 {
      font-size: 28px;
    }
  }
  
  @media (min-width: 1024px) {
    #hero p {
      width: 60%;
    }
    #hero .carousel-control-prev, #hero .carousel-control-next {
      width: 5%;
    }
  }
  
  .contacts{
    margin: -23px 0px 0px 0px;
  }
  
  /*************************************Lindokuhle Css****************************/
  /**********************************Navigation******************************/
  .dropdown .dropdown-menu {
    transition: all 0.5s;
    overflow: hidden;
    transform-origin: top center;
    transform: scale(1, 0);
    display: block;
    margin-top: 2px;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 20%);
  }
  .dropdown-item{
    color: #000;
  }
  .dropdown-menu {
    border: 0px solid rgba(0, 0, 0, 0.15) !important;
    background-color: #fafafa;
  }
  .icofont-shopping-cart {
    font-size: 27px;
  }
  .dropdown:hover .dropdown-menu {
    transform: scale(1);
  }
  /******************shopping cart*******************/
  .cart-header{
    margin-top: 25px;
  }
  .col-md-4.offset-md-1.border.rounded.mt-5.bg-white.h-25 {
    margin-bottom: 20px;
  }
  
  .empty-cart-img-c {
    margin: 0 auto;
    text-align: center;
    padding-bottom: 26px;
  }
  #others{
    display: none;
  }
  .row.px5 {
    margin-bottom: 20px;
  }
  .col-md-4.offset-md-1.rounded.bg-white.h-25 {
    border: 1px solid #dfa700;
    margin: 0 auto;
  }
  .update-button{
    text-align: center;
    border: 0;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
    background-color: #dfa700;
    margin-left: 5px;
    padding: 7px 0;
    font-size: 14px;
  }
  .update-button:hover{
    background: #fdd067;
  }
  .Pricing-d {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
  }
  .qty-cart {
    margin-bottom: 4px;
  }
  .btn.btn-success.mx-2 {
    margin-top: 20px;
  }
  .price-d {
    font-weight: bold;
  }
  /*****************end shopping cart*****************/
  /*****************login**************/
  .login-container{
    display: flex;
  }
  .login-form{
    margin: auto;
    border: 1px solid #dfa700;
    margin-top: 9%;
  }
  .login-form button[type="submit"] {
    background: #dfa700;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
    margin-bottom: 20px;
    width: 73%;
  }
  .S-logo img{
    width: 35%;
  }
  .S-logo{
    margin-bottom: 33px;
    margin-top: 5px;
    text-align: center;
  }
  .login-form{
    text-align: center
  }
  .card-details input{
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #000;
    margin-bottom: 38px;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .card-details input:focus{
    outline: none;
    border-color: #dfa700;
  }
  
  .username input[type=email]{
    padding-left: 33px;
  }
  .username{
    position: relative;
    margin-left: 45px;
    margin-right: 45px;
  }
  .username i{
    position: absolute;
    left: 0;
    top: 7px;
    padding: 7px 8px;
    color: #aaa;
  }
  .password input[type=password]{
    padding-left: 33px;
  }
  .password{
    position: relative;
    margin-left: 45px;
    margin-right: 45px;
  }
  .password i{
    position: absolute;
    left: 0;
    top: 7px;
    padding: 7px 8px;
    color: #aaa;
  }
  input[type=text]:focus{
    border-color: #dfa700;
    transition: .3s;
  }
  input[type=password]:focus{
    border-color: #dfa700;
    transition: .3s;
  }
  .username input[type=text]:focus + i{
    color: #dfa700;
  }
  .Login-error{
    background-color: rgb(253, 211, 211);
    border: 1px solid rgb(255, 0, 0);
    color: rgb(255, 0, 0);
    margin: 19px auto;
    width: 271px;
    transition: all ease-in 0.5s;
    text-align: center;
  }
  .Login-txt {
    margin: 6px auto;
  }
  .forgot-p {
    display: flex;
    float: right;
    z-index: 2;
    position: relative;
    margin-top: -30px;
  }
  .submit {
    margin-top: 20px;
  }
  .Login-error2 {
    background-color: rgb(202, 248, 187);
    border: 1px solid rgb(0, 255, 34);
    color: rgb(0, 255, 34);
    margin: 19px auto;
    width: 271px;
    transition: all ease-in 0.5s;
    text-align: center;
  }
  .Login-txt2 {
    margin: 6px auto;
  }
  .login-section .username, .login-section .password, .login-form .username, .login-form .password {
    margin: 0;
  }
  .login-form, .signup-container .signup-form{
    padding: 20px 30px;
  }
  .login-section .login-form .S-logo img, .signup-container .signup-form .S-logo img, .login-form .S-logo img{
    width: 90px;
  }
  /*****************end Login************/
  /****************signup************/
  
  .signup-form{
    margin-top: 11%;
    margin: auto;
    border: 1px solid #dfa700;
    margin-top: 5%;
    margin-bottom: 5%;
  }
  .signin-card-details{
    text-align: center;
  }
  .signup-form button, .theme-btn2 {
    background: #dfa700;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  .signup-form h4{
    margin-top: 10px;
  }
  .note{
    color: red;
  }
  .error-container{
    position: fixed;
    display: flex;
    max-width: 640px;
    margin: auto;
    left: 0;
    right: 0;
    justify-content: center;
    bottom: 0;
    z-index: 9999;
  }
  .verify-email-section{
    height: 100vh;
    display: flex;
    justify-items: center;
    align-items: center;
  }
  /* email varification style */
  .verify-email-template-section{
    display: flex;
    justify-items: center;
    background-color: #e5e5e5;
  }
  .verify-email-wrap{
    width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .company-logo-container{
    width: 50px;
  }
  .verify-email-template-section .card-container{
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
  }
  .verify-email-template-section .card-container p{

  }

  /****************end signup************/
  .shopping-cart h3 {
    padding-top: 20px;
    text-align: center;
  }
  .Delivery{
    color: #27d218;
    font-size: 12px;
  }
  .btn-cart{
    background-color: transparent;
    border: none;
    color: #fdc134;
  }
  .btn-cart:hover{
    color: #ffffff;
  }
  .cart_count{
    text-align: center;
    padding: 0 0.9rem 0.1rem 0.9rem;
    border-radius: 3rem;
  }
  /* .shopping-cart{
  
  } */
  .btn-buy{
    width: 100%;
    text-align: center;
    margin-bottom: 20%;
  }
  .quantity{
    padding: 0px 4px;
    text-align: center;
  }
  .row.bg-white {
    border: 1px solid #dfa700;
  }
  .item-info .col-md-6{
    padding: 20px 0;
  }
  .shopping-cart {
    padding: 0 22px;
  }
  /*******************pop out****************/
  .bg-modal{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items:center;
  }
  
  .modal-content{
    width: 500px;
    height: 184px;
    background-color: white;
    border-radius: 4px;
  }
  
  .btns {
    padding-top: 20px;
  }
  .msg {
    padding-top: 10px;
  }
  /**********************Profile****************************/
  .card.Personal-info {
    width: 569px;
    margin: 0 auto;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #dfa700;
  }
  .card.profile {
    width: 569px;
    margin: 0 auto;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #dfa700;
  }
  .Personal-info .card-content {
    margin: 32px auto;
  }
  .profile .card-content{
    margin: 15px;
  }
  .card-content.row {
    text-align: center;
    flex-direction: unset;
    margin: 14px auto;
    /*height: 25%;*/
    border: 1px solid #dfa700;
  }
  .d-address.col-lg-7 {
    margin: 0 auto;
  }
  .add-address-c {
    margin: 0 auto;
    text-align: center;
  }
  .Personal-info .input input {
    margin: 11px 0;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 2px solid black;
    width: 330px;
  }
  .Personal-info input[type="submit"] {
    background: #dfa700;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  .save-btn {
    margin: 0 auto;
    text-align: center;
    width: 88%;
  }
  .content-header h5{
    font-weight: bold;
    text-transform: uppercase;
  }
  .content-body{
    padding-left: 15px;
  }
  .Personal-info p{
    margin-bottom: -10px;
    color: rgb(215, 214, 214);
  }
  .section-title.Deliveries {
    padding-top: 0px;
  }
  .add-det {
    padding: 20px 10px;
  }
  .add-c {
    border: 1px solid #dfa700;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
  
  }
  .Rep-name {
    font-weight: bold;
  }
  .adress-info .div {
    margin-left: 5px;
    width: 75%;
    margin-bottom: 0px;
  }
  .adress-info .div p {
    margin-bottom: 0;
  }
  .ad-input{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .delivery-add-c{
    margin: 0 auto;
    width: 100%;
  
  }
  .adress-info .add-address-c {
    margin-bottom: 16px;
  }
  .address-del{
    margin-bottom: 5px;
  }
  .address-form{
    width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  }
  .action-btn-c {
    margin-top: -11px;
    margin-bottom: -12px;
    text-align: center;
  }
  .Select-btn {
    background-color: #dfa700;
    color: #fff;
    border-color: #ca9a0a;
  }
  .Select-btn:hover{
    background-color: #ca9a0a;
    color: #fff;
  }
  .action-btn-c.action-Dil {
    margin-top: 0px;
  }
  /***********************end Personal-info*************************/
  /***********************Address info******************************/
  .adress .content-body h5{
    margin: 20px auto;
  }
  .card.adress.aos-init.aos-animate {
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #dfa700;
  }
  .address-btn-c.row {
    margin: 12px 10px;
    float: right;
  }
  .btn.btn-success.address-delete {
    padding-left: 12px;
    width: 133px;
    margin-right: 14px;
  }
  .Address-edit .modal-content{
    width: unset;
    height: unset;
    background-color: white;
    border-radius: 4px;
    text-align: unset;
    margin: 0 auto;
  }
  .Address-edit .modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
    margin: 0 auto;
  }
  .Address-edit .address-input-c p{
    margin-bottom: -10px;
    color: rgb(215, 214, 214);
  }
  .Address-edit input[type="text"]{
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid black;
    margin: 11px 0;
    width: 330px;
  }
  .Address-edit input[type="submit"] {
    background: #dfa700;
    border: 0;
    padding: 11px 100px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
    margin: 0 auto;
  }
  .Address-edit .button-c{
    text-align: center;
    margin-top: 15px;
  }
  .drop-d{
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid black;
    margin: 11px 0;
    width: 330px;
    background-color: transparent;
  }
  .modal-header {
    margin: 0 auto;
  }
  .Select-btn.btn.address-del {
    width: 110px;
  }
  .btn.btn-danger.address-del {
    width: 110px;
  }
  
  @media (max-width: 991px){
    .action-btn-c {
      margin-top: 11px;
    }
  }
  /**********************end Addreaa info***************************/
  /**********************services**************************/
  ul.Delivery-charge-list {
    list-style: none;
    font-size: 15px;
  }
  .refund-list {
    list-style: none;
    font-size: 14px;
    color: #848484;
  }
  /**********************end services**********************/
  /**********************successful payment***************/
  .fa.fa-check-circle {
    font-size: 81px;
    color: #2fba7c;
  }
  .success {
    padding: 191px 0;
  }
  .success-c {
    margin: 0 auto;
    width: 50%;
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
    border: 1px solid #dfa700;
  }
  .success-header h3 {
    color: #2fba7c;
    font-weight: bold;
  }
  .success-val{
    text-align: right;
    color: #000;
    margin: 0 auto;
  }
  .success-title {
    color: #888686;
    text-align: left;
    margin: 0 auto;
  }
  .success-body {
    margin: 0 26px;
  }
  .success-d{
    padding: 20px 0;
  }
  .success-d {
    padding: 10px 0;
  }
  .success-title.total-t {
    font-weight: bold;
  }
  .success-val.total-v {
    font-weight: bold;
  }
  /**********************end successful payment************/
  /***********************unsuccessful payment************/
  .error {
    padding: 174px 0;
  }
  .error-c {
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
  .fa.fa-ban.uns-icon {
    color: red;
    font-size: 48px;
  }
  /**********************end unsuccessful payment***********/
  /********************** checkout **************************/
  .others{
    margin-bottom: 20px;
  }
  * {
    box-sizing: border-box;
  }
  
  
  table {
    display: block;
  }
  
  tr, td, tbody, tfoot {
    display: block;
  }
  
  thead {
    display: none;
  }
  
  tr {
    padding-bottom: 10px;
    border-bottom: 1px solid black;
  }
  
  td {
    padding: 10px 10px 0;
    text-align: center;
  }
  td:before {
    content: attr(data-title);
    color: #7a91aa;
    text-transform: uppercase;
    font-size: 1.4rem;
    padding-right: 10px;
    display: block;
  }
  
  table {
    width: 100%;
  }
  
  th {
    text-align: left;
    font-weight: 700;
  }
  
  thead th {
    background-color: #000000;
    color: #fff;
    border: 1px solid #000000;
  }
  
  tfoot th {
    display: block;
    padding: 10px;
    text-align: center;
    color: #b8c4d2;
  }
  
  .button {
    line-height: 1;
    display: inline-block;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    color: #fff;
    padding: 8px;
    background-color: #4b908f;
  }
  
  .select {
    padding-bottom: 20px;
    border-bottom: 1px solid #28333f;
  }
  .select:before {
    display: none;
  }
  
  .detail {
    background-color: #BD2A4E;
    width: 100%;
    height: 100%;
    padding: 40px 0;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
  }
  .detail.open {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  
  .detail-container {
    margin: 0 auto;
    padding: 40px;
    max-width: 500px;
  }
  
  dl {
    margin: 0;
    padding: 0;
  }
  
  dt {
    font-size: 2.2rem;
    font-weight: 300;
  }
  
  dd {
    margin: 0 0 40px 0;
    font-size: 1.8rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #ac2647;
    box-shadow: 0 1px 0 #c52c51;
  }
  
  .close {
    background: none;
    padding: 18px;
    color: #fff;
    font-weight: 300;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    line-height: 1;
    font-size: 1.8rem;
    position: fixed;
    right: 40px;
    top: 20px;
    -moz-transition: border 0.3s linear;
    -o-transition: border 0.3s linear;
    -webkit-transition: border 0.3s linear;
    transition: border 0.3s linear;
  }
  /* .close:hover, .close:focus {
    background-color: #a82545;
    border: 1px solid #a82545;
  } */
  
  @media (min-width: 460px) {
    td {
      text-align: left;
    }
    td:before {
      display: inline-block;
      text-align: right;
      width: 140px;
    }
  
    .select {
      padding-left: 160px;
    }
  }
  @media (min-width: 720px) {
    table {
      display: table;
    }
  
    tr {
      display: table-row;
    }
  
    td, th {
      display: table-cell;
    }
  
    tbody {
      display: table-row-group;
    }
  
    thead {
      display: table-header-group;
    }
  
    tfoot {
      display: table-footer-group;
    }
  
    td {
      border-top: 0;
    }
    td:before {
      display: none;
    }
  
    td, th {
      padding: 10px;
    }
  
  }
  .Header-t{
   text-align: center;
  }
  .card.summary {
    width: 28%;
    padding: 18px;
    text-align: center;
    border: 1px solid #dfa700;
    margin-left: auto;
    margin-right: auto;
    margin-top: 67px;
    margin-bottom: auto;
  }
  .check-price{
    text-align: right;
  }
  .total-d {
    font-weight: bold;
  }
  .card.d-address {
    margin: 68px auto;
    height: 25%;
    border: 1px solid #dfa700;
  }
  .address-text {
    margin: 40px 0;
  }
  .fa.fa-truck {
    font-size: 68px;
    padding: 2px 0;
    color: #dea600;
  }
  .checkout .address-btn-c .btn{
    margin: 30px auto;
  }
  .punchase {
    padding-top: 20px;
  }
  .card-content.row {
    text-align: center;
  }
  .icon-d {
    border: 1px solid;
    margin: 16px auto;
    border-radius: 9px;
  }
  .edit-address-header{
    text-align: center;
    margin: 0 auto;
  }
  .card.card-content.def.row {
    height: 115px;
    margin-bottom: 20px;
  }
  #main.checkout {
    margin-bottom: 38px;
  }
  /* .card.card-content.others.row {
    height: 119px;
  } */
  .card.summary .card-content tr td:nth-child(2n-2){
    text-align: end;
  }
  .address-txt-c {
    text-align: center;
    margin-top: 66px;
  }
  .theme-hr {
    border: 1px solid #dfa700;
  }
  .profile-txt {
    font-weight: bold;
    color: #b3861e;
  }
  .profile-txt:hover {
    color: #946d12;
  }
  .adress-info2 {
    padding: 9px 0;
  }
  #address-book-s {
    display: none;
  }
  .btn.btn-success.address-add {
    width: 109px;
  }
  /**********************end checkout*********************/
  /**********************home****************************/
  .title {
    font-weight: bold;
  }
  .emege{
    margin: 0 auto;
  }
  .item1 h1 {
    color: #000;
    text-align: left;
  }
  .item0 h1{
    color: #ffffff;
    text-align: center;
  }
  .item0 h2{
    color: #fff;
    text-align: center;
  }
  .item1 .btn-get-started .scrollto {
    margin-left: unset;
  }
  .item0 .btn-get-started.scrollto {
    margin-left: auto;
  }
  .container.container-wider {
    max-width: 1455px;
  }
  .m-dia .modal-content {
    width: auto;
    height: auto;
    background-color: white;
    border-radius: 4px;
    text-align: center;
  }
  #sales .sale-img-c {
    margin-top: 0px;
    width: 1080px;
  }
  #sales .sale-img{
    position: inherit;
    width: 100%;
  }
  #sales .m-dia {
    top: 20px;
    margin: 0 auto;
  }
  .modal-dialog {
    top: 103px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sale-body {
    display: flex;
    justify-content: center;
    align-content: center;
  }
  .img-fluid1 {
    padding: 100px;
  max-width: 100%;
  height: auto;
  }
  /**********************end home************************/
  @media (max-width: 1292px) {
    .emegencyContainer a {
      margin-right: -320px;
    }
  }
  @media (max-width: 1199px) {
    .refund-list {
      font-size: 15px;
  }
  #sales .sale-img-c {
    width: 890px;
  }
  }
  @media (max-width: 991px) {
    .emegencyContainer h2 {
      margin-left: -79px;
    }
    .emegencyContainer a {
      margin-right: -220px;
  }
  .item1 h1 {
    text-align: center;
  }
  .item1 .btn-get-started.scrollto {
    margin-left: auto;
  }
  section.about {
    padding: 26px 0;
    overflow: hidden;
  }
  .contacts .row {
    margin-bottom: 26px;
  }
  .update-button{
    margin-left: 1px;
    padding: 8px 0;
    margin-top: 4px;
  }
  .icon-d {
    margin: 12px 20px;
  }
  #sales .sale-img-c {
    width: 720px;
  }
  .img-fluid1 {
    padding: unset;
  }
  }
  @media (max-width: 849px) {
    .emegencyContainer h2 {
      margin-left: -28px;
  }
  .emegencyContainer h2 {
    font-size: 22px;
  }
  #sales .sale-img-c {
    width: 630px;
  }
  }
  @media (max-width: 767px) {
  #emeg {
      margin: 0 auto;
      text-align: center;
  }
  .emegencyContainer a {
    margin: 22px auto 0 auto;
    text-align: center;
  }
  .emegencyContainer h2 {
    margin-left: -10px;
    margin-top: -23px;
  }
  #emegency {
    height: 130px;
  }
  .emegencyContainer a{
    float: unset;
    height: 41px;
    width: 160px;
    padding-top: 5px;
  }
  .update-button {
    margin-left: 5px;
    padding: 8px 0;
    margin-top: 0px;
  }
  .form-control {
    margin: 0 auto;
  }
  .form-control:focus{
    outline: none;
    border-color: inherit;
    box-shadow: none;
  }
  .qty-cart {
    margin-bottom: 4px;
    margin-left: 10px;
  }
  .col-md-4.offset-md-1.rounded.bg-white.h-25 {
    border: 1px solid #dfa700;
    margin: 0 auto;
        margin-right: auto;
        margin-left: auto;
    margin-left: 20px;
    margin-right: 20px;
  }
  #qty-d {
    margin-top: -26px;
  }
  .icon-d {
    margin: 24px 20px;
  }
  }
  @media (max-width: 719px) {
    .price-ti {
      margin-bottom: -27px;
  }
  .icon-d{
    max-width: 17%;
  }
  .fa.fa-truck {
    margin-left: -13px;
  }
  #sales .sale-img-c {
    width: 482px;
  }
  }
  @media (max-width: 575px) {
    .emegencyContainer h2 {
      margin-left: 10px;
      margin-top: -35px;
      width: 100%;
  }
  #emegency {
    height: 0px;
  }
  #portfolio {
    padding: 0px;
  }
  .title {
    text-align: center;
  }
  .image.col-xl-5.d-flex.align-items-stretch.justify-content-center.justify-content-lg-start.aos-init.aos-animate {
    margin: unset 20px;
    margin-right: 10px;
    margin-left: 10px;
  }
  .about .content .icon-box {
    margin-left: 15px;
  }
  .update-button {
    width: 21%;
  }
  .address-d {
    width: 50%;
  }
  .address-btn-c {
    width: 20%;
  }
  .card.summary {
    width: 91%;
  }
  #sales .sale-img-c {
    width: 402px;
  }
  }
  @media (max-width: 548px) {
    .emegencyContainer h2 {
      font-size: 20px;
  }
  }
  @media (max-width: 501px) {
    .emegencyContainer h2 {
      font-size: 19px;
  }
  .emegencyContainer a {
    height: 33px;
    width: 158px;
    padding-top: 1px;
  }
  }
  @media (max-width: 501px) {
    .emegencyContainer h2 {
      font-size: 17px;
  }
  .title {
    font-size: 21px;
  }
  .emegencyContainer {
    margin: 0 auto;
  }
  .icon-d {
    margin: 31px 20px;
    margin-top: 10px;
  }
  .fa.fa-truck {
    font-size: 49px;
  }
  .address-text {
    margin-top: 10px;
  }
  .checkout .address-btn-c .btn {
    margin: 14px auto;
  }
  }
  @media (max-width: 459px) {
    .price-ti {
      margin-bottom: -6px;
  }
  #sales .sale-img-c {
    width: 317px;
  }
  }
  @media (max-width: 430px) {
    .emegencyContainer h2 {
      font-size: 17px;
      line-height: unset;
      text-align: center;
      margin-top: -51px;
  }
  .emegencyContainer a {
    margin: 5px auto 0 auto;
  }
  .emegencyContainer h2 {
    margin-left: -3px;
  }
  }
  @media (max-width: 399px){
    .icon-d {
      margin: 31px 6px;
    }
  }
  /****************************************************************/
  .wrap-port{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
  }
  .wrap-info-c{
    width: 100%;
    height: 100%;
    background: rgba(33, 59, 82, 0.6);
    position: absolute;
    border-radius: 8px;
    
  }
  .links-w{
    z-index: 1;
    font-size: 24px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - 37px);
  }
  .detail-w{
    color: #fff;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
  /****************invoices*********************/
  .card-h {
    text-align: center;
  }
  .card-cont {
    padding-top: 12px;
    padding-bottom: 20px;
  }
  .txt-bold {
    font-weight: bold;
  }
  
  /****************end invoices****************/
  /******************products****************/
  .filter-btn{
    color: transparent;
    border: none;
    margin-left: -4px;
    margin-right: -4px;
    background-color: transparent;
  }
  .products-list .fa-spinner:nth-child(1){
    margin: 40px auto;
    font-size: 70px;
  }
  /******************end products***********/
  /******************other product************/
  .product {
    position: relative;
    margin: 15px 0px;
    -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  .product .product-img {
    position: relative;
  }
  .product .product-img > img {
    width: 100%;
  }
  .product .product-img .product-label {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .product .product-img .product-label > span.sale {
    background-color: #FFF;
    border-color: #D10024;
    color: #D10024;
  }
  .product .product-img .product-label > span {
    border: 2px solid;
        border-top-color: currentcolor;
        border-right-color: currentcolor;
        border-bottom-color: currentcolor;
        border-left-color: currentcolor;
    padding: 2px 10px;
    font-size: 12px;
  }
  .product .product-body {
    position: relative;
    padding: 15px;
    background-color: #FFF;
    text-align: center;
    z-index: 20;
  }
  .product .add-to-cart {
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: 1px;
    padding: 15px;
    background: #1e1f29;
    text-align: center;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    z-index: 2;
  }
  .product .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: #ef233c;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
  }
  .product .product-body .product-rating {
    position: relative;
    margin: 15px 0px 10px;
    height: 20px;
  }
  .product:hover {
    -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #dfa700;
    box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #dfa700;
  }
  .product .product-body .product-name > a:hover, .product .product-body .product-name > a:focus {
    color: #dfa700;
  }
  .product .product-body .product-name > a {
    font-weight: 700;
  }
  .product .product-body .product-name {
    text-transform: uppercase;
    font-size: 16px;
  }
  .product .product-body .product-category {
    text-transform: uppercase;
    font-size: 12px;
    color: #8D99AE;
  }
  .product .product-body .product-price {
    color: #dfa700;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
  }
  .product .product-body .product-rating {
    position: relative;
    margin: 15px 0px 10px;
    height: 20px;
  }
  .product .product-body .product-rating::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 1px;
    background-color: #E4E7ED;
  }
  .product .product-body .product-btns > button:hover {
    background-color: #E4E7ED;
    color: #dfa700;
    border-radius: 50%;
  }
  .product .product-body .product-btns > button {
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 40px;
    background: transparent;
        background-color: transparent;
    border: none;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  .product .product-body .product-btns > button .tooltipp {
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -15px);
    -ms-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
    width: 150px;
    padding: 10px;
    font-size: 12px;
    line-height: 10px;
    background: #1e1f29;
    color: #FFF;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  .product .product-body .product-btns>button:hover .tooltipp {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -5px);
    -ms-transform: translate(-50%, -5px);
    transform: translate(-50%, -5px);
  }
  .product .product-body .product-btns > button:hover {
    background-color: #E4E7ED;
    color: #dfa700;
    border-radius: 50%;
  }
  .icon-class{
    font-size: 24px;
  }
  .product .product-body .product-btns > a{
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 40px;
    background: transparent;
        background-color: transparent;
    background-color: transparent;
    border: none;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4c4c4c;
  }
  .product .product-body .product-btns > a:hover {
    background-color: #E4E7ED;
    color: #dfa700;
    border-radius: 50%;
  }
  .product .product-body .product-btns > a .tooltipp {
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -15px);
    -ms-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
    width: 150px;
    padding: 10px;
    font-size: 12px;
    line-height: 10px;
    background: #1e1f29;
    color: #FFF;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  .product .product-body .product-btns>a:hover .tooltipp {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -5px);
    -ms-transform: translate(-50%, -5px);
    transform: translate(-50%, -5px);
  }
  .product-btns{
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  /******************end other product**********/
  /*******************reset password**********/
  .instruction {
    text-align: center;
  }
  .reset-password .input input {
    /*width: 23%;*/
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #000;
    margin-bottom: 38px;
  }
  .email-send-btn button[type="submit"] {
    background: #dfa700;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
    margin-bottom: 20px;
    /*width: 23%;*/
  }
  .input-section {
    text-align: center;
    margin-top: 32px;
  }
  .reset-password .section-title {
    text-align: center;
    padding-bottom: 0px;
  }
  /*******************end reset password******/
  
  /*******************Blog****************/
  .blog_details h2 {
    font-size: 24px;
    line-height: 36px;
    color: #222222;
    font-weight: 600;
    transition: all 0.3s linear;
  }
  .play-btn-c {
    position: absolute;
    top: 32%;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .play-btn{
    height: 70px;
    cursor: pointer;
  }
  .blog_vid .modal-header{
    border-bottom: none;
  }
  .blog_area .modal-body {
    padding: 0rem;
    height: 360px;
  }
  .blog_area iframe {
    width: 100%;
    height: 100%;
  }
  .blog_area .modal-dialog {
    max-width: 670px;
  }
  .blog_area .modal-content {
    width: 100%;
    height: 100%;
  }
  .blog_info {
    padding-top: 30px;
  }
  .blog_info .post_tag a.active {
    color: #ffba00;
  }
  .blog_info .post_tag a {
    font: 300 14px/21px "Roboto", sans-serif;
    color: #222222;
  }
  .blog_info .post_tag {
    padding-bottom: 20px;
  }
  .list {
    list-style: none;
    margin: 0px;
    padding: 0px;
  }
  .blog_info .blog_meta li a {
    font: 300 14px/20px "Roboto", sans-serif;
    color: #777777;
    vertical-align: middle;
    padding-bottom: 12px;
    display: inline-block;
  }
  .blog_right_sidebar {
    border: 1px solid #eeeeee;
    background: #fafaff;
    padding: 30px;
    
  }
  .blog_right_sidebar .widget_title {
    font-size: 18px;
    line-height: 25px;
    background: #ffba00;
    text-align: center;
    color: #fff;
    padding: 8px 0px;
    margin-bottom: 30px;
  }
  .blog_right_sidebar .post_category_widget .cat-list li:hover a, .blog_right_sidebar .post_category_widget .cat-list li a.active {
    color: #ffba00;
  }
  .blog_right_sidebar .post_category_widget .cat-list li a {
    font-size: 14px;
    line-height: 20px;
    color: #777;
  }
  .blog_right_sidebar .post_category_widget .cat-list li a{
    margin-right: auto;
  }
  .blog_right_sidebar .post_category_widget .cat-list li a:not([href]) {
    margin-left: auto;
  }
  .download-btn{
    cursor: pointer;
    font-size: 73px;
    color: #fdd067;
    font-weight: bold;
  }
  .blog_post{
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    margin-bottom: 20px;
  }
  .blog_details {
    padding: 20px;
  }
  .upper_section{
    position: relative;
  }
  .color-overlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .blog_cat_btn{
    width: 100%;
    border: none;
    background-color: transparent;
    display: contents;
    font-size: 14px;
    line-height: 20px;
    color: #777;
  }
  .blog_right_sidebar .post_category_widget .cat-list li:hover button {
    color: #ffba00;
  }
  .blog_right_sidebar .post_category_widget .cat-list .active {
    color: #ffba00; 
  }
  /******************end Blog*************/
  
  /***************** Products Section *****************/
  .products-list-container {
    margin: 0px 20px;
  }
  .products-list-container .filter-container{
    background-color: #fff;
    padding: 20px 15px;
    border: 2px solid #dfa700;
    border-radius: 5px;
  }
  .products-list-container .filter-container h5{
    font-weight: 600;
  }
  .products-list-container .filter-container ul{
    padding-left: 15px;
    margin-bottom: 35px;
  }
  .products-list-container .filter-container li{
    list-style: none;
    border-bottom: 1px solid #444;
    padding: 7px 0px;
  }
  .products-list-container .filter-container .child{
    display: none;
  }
  .products-list-container .filter-container .child.show{
    display: block;
  }
  .products-list-container .filter-container .child li{
    border-bottom: 1px solid #e8e8e8;
  }
  .products-list-container .filter-container li a{
    color: inherit;
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
  }
  .products-list-container .filter-container li a.active{
    color: #ffba00;
  }
  .search-container form{
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  .search-container form input{
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
  }
  .search-container form button{
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #dfa700;
    color: #fff;
    transition: 0.3s;
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  .dropdown-filter-container{
    display: none;
  }
  .dropdown-filter-container select{
    width: 100%;
    margin-bottom: 15px;
    padding: 13px 10px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    color: inherit;
  }
  .subcategory-dropdown{
    display: none;
  }
  @media (max-width: 991px) {
    .dropdown-filter-container{
      display: block;
    }
  }
  /**************************************end lindokuhle css**************/