html {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    height: 100%;
    background: #fff;
    scroll-behavior: smooth;
}
/* html {
    font-size: calc(1em + 1vw);
}
*/
body {
    padding: 0;
    margin: 0;
    height: 100%;
    /*font-family: "Poppins", arial, sans-serif;font-weight: 300;*/
    font-size: 1rem;
    
    font-family: "Cardo", serif;
    font-weight: 400;
    font-style: normal;
    color: #4D4D4D;
    overflow-x: hidden;
}
body.fixed{
    overflow: hidden;
}
/*h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
   font-family: "Poppins", arial, sans-serif;
    font-weight: bold;
    color: #202020;
}*/
h1, h2, h3, h4, h5, h6 {
    /*font-family: 'Playfair Display', serif;
    font-weight: bold;*/
    font-family: "Crimson Text", serif;
    font-weight: 400;
    font-style: normal;
    color: #202020;
}

  
  
.cardo-regular {
    font-family: "Cardo", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .cardo-bold {
    font-family: "Cardo", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .cardo-regular-italic {
    font-family: "Cardo", serif;
    font-weight: 400;
    font-style: italic;
  }
  .crimson-text-regular {
    font-family: "Crimson Text", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .crimson-text-semibold {
    font-family: "Crimson Text", serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .crimson-text-bold {
    font-family: "Crimson Text", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .crimson-text-regular-italic {
    font-family: "Crimson Text", serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .crimson-text-semibold-italic {
    font-family: "Crimson Text", serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .crimson-text-bold-italic {
    font-family: "Crimson Text", serif;
    font-weight: 700;
    font-style: italic;
  }
  
p{
    margin-bottom: 1em;
}
a { text-decoration: none !important;color:#ff6b00 }
a:hover{ text-decoration: underline !important; ;}

a.btn-primary:hover, a.btn-outline-primary:hover, a.btn-dark:hover, a.btn-secondary:hover   { color:#fff !important; text-decoration:  none !important ;}
a.btn:hover { text-decoration:  none !important ;}

.item-name a{ color:#202020; }
.item-name { color:#202020; font-weight: bold;}
.container-custom{
    width: 100%;
    padding:20px;
}
.btn{ font-size: 1rem; /*font-family: 'Roboto Condensed', sans-serif;*/font-family: "Poppins", arial, sans-serif; text-transform: uppercase;}
.btn-anim:before, .btn-anim::before{
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    width: 0;
    height: 100%;
    top:0;
    left: 0;
    background:#34855a;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.btn-anim:hover:before, .btn-anim:hover::before{
    width: 100%;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.btn-anim span{
    position: relative;
    z-index: 2;
    left:0;
    color: #000;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.btn-anim span:before, .btn-anim span::before{
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top:calc(50%);
    left: -15px;
    width: 0;
    height: 1px;
    background:#fff;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.btn-anim:hover span{
    left: 10px;
    color: #fff;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.btn-anim:hover span:before, .btn-anim:hover span::before{
    width: 10px;
    height: 1px;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}



.grecaptcha-badge{
    display: none;
}




/********************** native scrollbar custom ************************/
/* width */
::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}
/* button */
::-webkit-scrollbar-button {
    background: transparent;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ff6b00;
}
/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}
/* The track NOT covered by the handle. ::-webkit-scrollbar-track-piece {
    background: #000;
}
/* Corner */
::-webkit-scrollbar-corner {
    background: #fff;
}
/* Resizer */
::-webkit-resizer {
    background: #fff;
}
/******************* general styles *******************/



/*********************** modal ****************************/
.modal-login{
    max-width: 450px; margin: 0 auto;
}
.modal-login-logo{
    width: 115px; margin:0 auto;
}
.modal-login-logo img{
    width: 100%;
}
.modal-login-pic{
    width: 300px; margin:0 auto;
}
.modal-login-pic img{
    width: 100%;
}
.modal-login-content{
    max-width: 340px;
    margin:0 auto;
}
.btn-login-google{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 600;
}
.logo-google-g{
    display: inline-block;
}
.logo-google-g img{
    height: 20px;
}





/************ button top ****************/
#back-top {
    display: inline-block;
    background-color: #ff9800;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 70px;
    right: 15px;
    -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    -o-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
#back-top i {
    color: #000;
    font-size: 22px;
    line-height: 40px;
}
#back-top.show {
    opacity: 0.7;
    visibility: visible;
}
#back-top.show:hover {
    cursor: pointer;
    background-color: #ff9800;
    color: #fff;
    opacity: 1;
}
#back-top.show:active {
    background-color: #ff9800;
    color: #fff;
    opacity: 1;
}





/*********************************** main styles ************************/
.main-page-wrapper {
    position: relative;
    overflow-x: hidden;
    /*margin-top:60px;*/
}
.main-page-content-wrapper {
    position: relative;
}


/****************************** top header *******************************/
.top-header{ background: #1f124b;}

.dropbtn {
    /*background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;*/
    white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
    border: none;
    cursor: pointer;
  }

  .dropbtn:hover, .dropbtn:focus {
    background-color: #3e8e41;
  }

  #myInputSearch {
    box-sizing: border-box;
    background-image: url('../images/searchicon.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
  }

  #myInputSearch:focus {outline: 3px solid #ddd;}

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {

    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 99999;
  }

  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  /*.dropdown a:hover {background-color: #ddd;}*/

  .show {display: block;}
  .mobile-search{ display: none;}
  .search-wrapper{ margin-right: 30px;}
  .search-wrapper button{ font-size: .9rem;}

/****************************** main nav *******************************/
.main-nav-wrapper{
    position: relative; z-index: 3;
    width: 100%; height: 50px;
    left: 0; top:0;
    background: #463778; color:#fff;
}
.main-nav-wrapper-inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            /*justify-content: space-between;*/
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 50px;
    padding-right: 0;
}
.main-logo-wrapper {
    /*position: relative;
    left: 50px; top:10px;*/
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
.main-logo-wrapper img {
    width:100%;
    min-width:150px;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.main-nav-list-wrapper{
    display: none;
}
.main-nav-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin:0; padding:0;
    list-style: none; margin-left: -10px;
}
.main-nav-list li a{
    display: block;
    padding:5px 10px;
    color:#ffffff; text-decoration: none; font-weight: 600;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    /*font-family: 'Roboto Condensed', sans-serif;*/
    font-family: "Poppins", arial, sans-serif;
    border: uppercase;
}

.main-nav-list li a:hover,
.main-nav-list li.active a{
    color: #ff6b00;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out; text-decoration: none !important;
}

.main-nav-list li a.btn-outline-primary:hover{
    color: #fff;
}
.main-nav-solution-dropdown-menu li a{
    font-weight: 400;
}

.main-nav-user-wrapper{
    display: none;
}

.main-nav-user-wrapper ul.main-nav-list li a{
    color:#fff
}
.btn-cart i{
font-size: 1.7rem;
    color: #fff;
    line-height: 1.3;}
    .cart-count {
        position: absolute;
        top: 0;
        right: 0;

            width: 22px;
            height: 22px;
            line-height: 22px;
            display: inline-block;
            color: #fff;
            text-align: center;
            background: #ff6b00;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            font-size: 12px; font-weight: bold;

    }
    .dropdown-item{color:#212529 !important; text-transform: none !important;}
.btn-cart.dropdown-toggle::after{ display: none;}
.dropdown-item.active, .dropdown-item:active{ background: none; color: #ff6b00 !important;}
.main-nav-wrapper.scrolled{
    position: fixed;

    z-index: 9999;
    top:0; left: 0;
    width: 100%; height: 50px;
    background: #1f124b;color:#fff;
    border-bottom:1px solid #E4E8EC;
    -webkit-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 4%);
            box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 4%);
}
.main-nav-wrapper.scrolled .main-nav-wrapper-inner{
    height: 50px;
}
.main-nav-wrapper.scrolled .main-logo-wrapper img{
    height: 25px;
}
/*ul.scrolled{ overflow-y: scroll; max-height: 300px;background: #fff;}*/

.main-page-wrapper.scrolled{
    padding-top:56px;
}


.form-control, .dropdown-menu{ font-size: .9rem;}
.dropdown-menu{}


.mobile-main-nav-user{
    /*position: absolute;*/
    /*right:10px;*/
    width: 50px; height: 50px;
}
.btn-mobile-main-nav-user i{
    font-size: 1.7rem; color: #ffffff; line-height: 1.3;
}
.btn-mobile-main-nav-user::after{
    display: none;
}
.mobile-main-nav-user.dropdown .dropdown-menu{
    width: 200px;
}
.mobile-main-nav-user.dropdown .dropdown-menu a{
    font-weight: 600;
}

.main-nav-user-logged-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /*margin-right: 10px;*/
}
.main-nav-user-logged-text{
    display: none;
}
.btn-main-nav-user-logged{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0; padding-right: 5px;
}
.btn-main-nav-user-logged::after{
    display: none;
    margin-left: 10px;
}
.main-nav-user-logged-avatar{
    width: 38px; height: 38px;
    border-radius: 50%;
    background-size: cover;
    overflow: hidden;
}


div.burger {
    height: 50px;
    width: 30px;
    position: absolute;
    z-index: 99999;
    top: -10px;
    /*left: 20px;*/
    cursor: pointer;
}

div.x, div.y, div.z {
    position: absolute;
    margin: auto;
    top: 0px;
    bottom: 0px;
    background: #fff;
    border-radius:2px;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}
div.x, div.y, div.z {
    height: 3px;
    width: 26px;
}
div.y{
   top: 18px;
}
div.z{
   top: 37px;
}
div.collapse{
    top: 20px;
    /*background:#4a89dc;*/
    -webkit-transition: all 70ms ease-out;
    -o-transition: all 70ms ease-out;
    transition: all 70ms ease-out;
}
div.rotate30{
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transition: all 50ms ease-out;
    -o-transition: all 50ms ease-out;
    transition: all 50ms ease-out;
}
div.rotate150{
    -ms-transform: rotate(150deg);
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-transition: all 50ms ease-out;
    -o-transition: all 50ms ease-out;
    transition: all 50ms ease-out;
}
div.rotate45{
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}
div.rotate135{
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}
div.burger.open .collapse:not(.show){
    display: block;
}
div.burger.open div.x,
div.burger.open div.y,
div.burger.open div.z{
    background: #fff;
}
/*
div.navbar{
   height:73px;
   background:#385e97;
}
*/
div.circle{
    /*border-radius: 50%;*/
    width: 0px;
    height: 0px;
    position:absolute;
    z-index: 999;
    top: 20px;
    left: 36px;
    background:#ff6b00;
    opacity:1;
    -webkit-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 300ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.circle.expand{
    width:100%;
    height:1200px;
    top: -560px;
    left: -565px;
    -webkit-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 400ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.menu {
    height: auto;
    width: 360px;
    z-index: 9991;
    position: relative;
    top: 25px;
    left: 0px;
}
div.menu ul{
    margin:0; padding:0;padding-top: 120px;

}
div.menu ul li ul{
    margin:0; padding:0 !important;

}
div.menu ul li {
    list-style: none;
    opacity:0;
    width:100%;
    margin-bottom: 15px;
    text-align:center;
    font-size:0px; color: #fff;
    -webkit-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 70ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.menu ul li a {
    display: block;
    padding:10px 0;
    color:#fff;
    text-transform:uppercase;
    text-decoration:none !important;
}

div.menu li.animate{
    font-size:18px;
    opacity:1;
    -webkit-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 150ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
div.menu{
    display: none;
}
div.menu.open{
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    background-color: #1f124b;
    z-index: 20000;
    overflow-y: auto;
}
div.collapse.mobile-main-nav-dropdown-menu-wrapper{
    background: none;
}
.mobile-main-nav-dropdown-menu-container{
    max-width: 250px;
    padding:5px 0; margin:0 auto;
    border-top:1px dashed #fab4b2; border-bottom:1px dashed #fab4b2;
}
div.menu ul li ul li{
    margin-bottom: 0;
}
div.menu ul li ul li a{
    padding:5px 0;
    font-size: 16px; text-transform: capitalize;
}



/*********************** homepage banner ********************/
.homepage-banner-wrapper{
    position: relative; margin-bottom: 30px !important;
}
.homepage-banner-container{
    position: relative;
}
.homepage-banner-content h1{
    font-size: 2rem;
}
.homepage-banner-content p{
    font-size: 1.15rem;
}
.homepage-banner-pic{
    position: relative;
    width: 120%;
    left:-30px; top:-60px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.homepage-banner-pic img{
    width: 100%;
}

.homepage-cat-text .title a{ color:#202020}

/**********************************2banners***************************/
.position-relative{ position: relative;}
    .position-absolute{ position:absolute;}
    .banners-container img{ border-radius: 5px;}
    .banners-container button{ color:#fff ; bottom:0; top:auto}

    .invite-content-container{
        background: url(../images/invite.jpg) no-repeat top right;
        background-size: cover;min-height: 250px;
    }
    .invite-text-content{
        color: #fff;

    }


    .testimonial-slider .slick-list{ padding: 50px;}
    .testimonial-slider .carousel-indicators {margin-bottom: -2rem;}

    .homepage-box-testi-content{
        padding:20px;

        background-color: #fff;
        box-shadow: 0px 0px 15px #2020202c; border-radius: 5px;
    }
.text-shadow{ text-shadow: 3px 2px 20px #000000 ;}
.homepage-testi-star-large i{ font-size: 24px !important; padding-right: 10px;}
.homepage-testi-star-large i.checked{ color:#ff6b00 !important}

.homepage-testi-star i{ font-size: 10px !important; line-height: 20px;}
.homepage-testi-star i.checked{ color:#ff6b00 !important}
.home-cat-wrapper a.product-tittle{ color:#202020}
.home-cat-container .image {
    opacity: 1;
    display: block; /*max-width: 200px;*/
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;-webkit-backface-visibility: hidden; /* Safari */
  }


  .home-cat-btn {
    transition: .5s ease;
    opacity: 0;
   width:100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }

  .home-cat-container:hover .image {
    opacity: 0.3;
  }

  .home-cat-container:hover .home-cat-btn {
    opacity: 1;
  }


  /****slider*****/
   .slider {
    /*max-width:1220px;
    margin: 0 auto;*/
  }
  .slick-slide {
    margin: 0 20px;
  }
   .slick-list {
    margin: 0px -5px 0px -5px;
  }

  .slick-prev:before, .slick-next:before{
    color: #a4a4a4;
    font-size: 1.5rem;

  }
  .slick-prev {
    left: -65px;
    z-index: 3;
    top: 35%;
}

.slick-next {
    right: -50px;
    z-index: 3;
    top: 35%;
}

.slick-dots li button:before{
    font-size: 12px;
}
.slick-dots li.slick-active button:before {
    color:#ff6b00;
}
.slick-dots{
    bottom:-55px
}
.slick-active {
    opacity: 1;
}
     /*.slick-prev:before { content: "\f060"; }



    .slick-next:before { content: "\f061"; }
   .slick-next:before {
        position: relative;
        top: -15px;
        content: url("../css/fontawesome-free-5.15.4/svgs/solid/arrow-right.svg");
      }
      .slick-prev{ left:0}
      .slick-prev:before {
        position: relative;
        top: -15px;
        right:20px;
        content: url("../css/fontawesome-free-5.15.4/svgs/solid/arrow-left.svg");*/
      }

     button i{ padding: 5px 0; font-size: 24px;}


/**************************  *****************************/
.homepage-bottom-wrapper{
    background-color: #fafafa;
}
.homepage-bottom-deployment-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
        -ms-flex-pack:  space-between;
            justify-content:  space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.homepage-bottom-deployment-item-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap:20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 350px;
    padding:0 1.5rem .5rem 0;
}
.homepage-bottom-deployment-content-container{ min-width: 350px;}
.homepage-bottom-deployment-item-pic{
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 50px;
}
.homepage-bottom-deployment-item-pic img{
    width:100%
}
.homepage-bottom-deployment-item-pic i{
    font-size: 24px;
}
.homepage-bottom-deployment-item-content{
    font-weight: 500; text-align: left; padding:0
}
.homepage-bottom-deployment-item-content li{
    list-style: none;padding-bottom: 15px;
}
.homepage-bottom-deployment-item-content a{
    text-decoration: none; color:#3f51b5
}
.homepage-bottom-deployment-item-content a:hover{
    text-decoration: underline; color:#3f51b5
}
.homepage-bottom-list-item-wrapper{
    position: relative;
    padding:30px 7%;
    text-align: center;
    border-bottom: 1px solid #DEDEDE;
}
.homepage-bottom-list-item-wrapper::after{
    content: "";
    display: block;
    position: absolute;
    width: 50px;
    height: 3px;
    bottom:-2px; left:50%; margin-left: -25px;
    background-color: #ff6b00;
}
.homepage-bottom-list-item-wrapper:last-child{
    border:none;
}
.homepage-bottom-list-item-wrapper:last-child::after{
    display: none;
}
.homepage-bottom-list-item-pic{
    width: 100px;
    margin:0 auto 1.5rem auto;
}
.homepage-bottom-list-item-pic img{
    width: 100%;
}




/************************* footer **********************/
.main-footer-wrapper{
    background: #4D4D4D;
    color: #fff;
}
.main-footer-nav{
    text-align: center;
}
.main-footer-nav-list{
    margin:0; padding:0;
    list-style: none;
    display: inline-block;
    padding-left: 1.2rem; padding-right: 1.2rem;
    border-bottom:1px solid #797979;
}
.main-footer-nav-list li{
    display: inline-block;
}
.main-footer-nav-list a{
    display: block;
    padding:.6rem 1rem;
    color: #fff;
    text-decoration: none;
}
.main-footer-nav-list a:hover{
    color: #ff6b00;
}
.aux-footer-nav{
    text-align: center;
}
.aux-footer-nav-list{
    margin:0; padding:0;
    list-style: none;
    display: inline-block; margin-bottom: 15px;
}
.aux-footer-nav-list li{
    display: inline-block; border-right: solid #797979 1px
}
.aux-footer-nav-list li:last-child{
    border-right: none
}
.aux-footer-nav-list a{
    display: block;
    padding:.1rem 1rem;
    color: #A6A6A6;
    text-decoration: none;
    font-size: .85rem;
}
.aux-footer-nav-list a:hover{
    color: #ff6b00;
}
.main-footer-copyright{
    /*padding-top:4rem; padding-bottom: 2rem;*/
    font-size: .85rem;
    text-align: center;
}


.modal-content {

    border-radius: 5px;
}

.btn-primary { background: #ff6b00;}
 a:hover{ color:#ff6b00 !important}

 .homepage-banner-wrapper{
    margin:0;
}




/*************************PRODUCT****************************/
.sub-banner-wrapper{
    background: #e4effe ;
    margin:0 auto;
    text-align: center;
}
.breadcrumb-wrapper{ border-bottom: solid 1px #f0f0f0;}
.breadcrumb{
    font-size: .8rem;
    margin-bottom: 0;
}
.breadcrumb li a{
    color:#202020
}
.breadcrumb li a:hover, .breadcrumb li.active {
    color: #ff6b00
}
.pagination-lg .page-link{
    padding: .4rem 1.1rem;
    font-size: 1rem;
}
.modal-content{
    /*background: rgb(233, 233, 233);*/
}
.product_img img{
    width: 100%;
    height: auto;
}
.extra-height {
    max-height: 430px;
    overflow-x: hidden;
    padding-right: 8px;
}
.modal-body button.btn-close{
    float: right;
    clear:both;
}




* Three column layout */
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The bar container */
.bar-container {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  color: white;
}

/* Individual bars */
.bar-5 {width: 60%; height: 18px; background-color: #04AA6D;}
.bar-4 {width: 30%; height: 18px; background-color: #2196F3;}
.bar-3 {width: 10%; height: 18px; background-color: #00bcd4;}
.bar-2 {width: 4%; height: 18px; background-color: #ff9800;}
.bar-1 {width: 15%; height: 18px; background-color: #f44336;}


.review-image-content img{ width: 100%; max-width: 150px; border-radius: 100%;}
.review-name-content { width: 100%; padding-left: 20px;}


.cart-table tr th { }

td.item-detail-cart-table{ width: 35%;}

td.subtotal-cart-table{  width: 150px; }

.item-detail-cart-table .img-cart{ width: 50px;}
.item-detail-cart-table .img-cart img{ width: 100%;}
.item-detail-cart-table a{ padding-left: 20px; color: #202020;}






/*****Step indicator***/
#progressbar {
    margin-bottom: 50px;
    overflow: hidden;
    color: lightgrey; padding-left: 0;
}

#progressbar .active {
    color: #673AB7
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400;
    text-align: center;
    padding-top: 50px;
}
#progressbar #delivery:before {
    font-family: 'boxicons';
    content: "\eba6";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
}

#progressbar #billing:before {
    font-family: 'boxicons';
    content: "\ec63";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
}




#progressbar #payment:before {
    font-family: 'boxicons';
    content: "\ea97";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
}

#progressbar #confirm:before {
    font-family: 'boxicons';
    content: "\ec64";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
}

#progressbar li:before {
    width: 40px;
    height: 40px;
    line-height: 35px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: 1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #673AB7
}

.item-subtotal{ font-weight: bold;}


.btn-primary:disabled, .btn-primary.disabled {
    background-color: #ff6b00;
}
.text-right{ text-align: right;}





	.dropdown-menu li{
		position: relative;
	}
	.dropdown-menu .submenu{
		display: none;
		position: absolute;
		left:100%; top:-7px; background: #fff;
	}
	.dropdown-menu .submenu-left{
		right:100%; left:auto;
	}

	.dropdown-menu > li:hover{ background-color: #f1f1f1 }
	.dropdown-menu > li:hover > .submenu{
		display: block;
	}
ul.left-product-menu li{
    /*border-bottom: solid 1px #f8f9fa;*/
    background: #fff;}
ul.left-product-menu li:hover, ul.left-product-menu li .active{
    background: #fff; }

ul.left-product-menu li a{  color: #202020; /*margin: .3rem 1.5rem;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; width: 90%; display: inline-block;
    /*font-family: 'Roboto Condensed', sans-serif;*/
    font-family: "Poppins", arial, sans-serif;
    font-size: .9rem;
    font-weight: 400;
}
ul.left-product-menu li a:hover, ul.left-product-menu li a.active{  color:#ff6b00 !important; }

.left-menu-list ul{margin-bottom: 0; padding: 0;}
.left-menu-list ul li{ border: none !important; list-style: none; background: #fff; }
.left-menu-list ul li a{  font-weight: normal; margin: 0 1.5rem;}

ul.search li a{  white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; width: 320px;
    /*font-family: 'Roboto Condensed', sans-serif;*/
    font-family: "Poppins", arial, sans-serif;
}

.text-ellipsis{white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; width: 100%;}
    .mobile-prod-cat{ display: none ;}

    .tabs-account .nav-link.active, .tabs-account .nav-item.show .nav-link{
        color: #0d6efd;
    background-color: #fff;
    border-bottom: solid 2px #0d6efd;
}
.tabs-account .nav-link{ color: #202020; border: none; }
.tabs-account a.nav-link:hover { text-decoration: none !important;color: #0d6efd !important}
.w-75{ width: 75%;}
thead tr th{ font-size: smaller;}
.tab-table-account i{ font-size: x-large; }
.icon-link-tab{ margin-right: 10px;}
.order-detail-header{ display: flex;}
/*.donation-wrapper { position: relative; width: 100%;}
.donation-wrapper img{ opacity: 1 ; display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    width: 100%;}
.donation-wrapper .absolute{ z-index: 1; top:0; left: 0; right: 0; position: absolute;}*/
.donation-wrapper{ background: url(../images/lion-head.jpg) no-repeat center;}
.donation-container{ max-width: 1200px;}
.donation-container .row:first-child{ }
.donation-container .card-body{ text-align: left; background: rgba(255, 255, 255, 0.8) ;}


.carousel-control-prev-icon, .carousel-control-next-icon{
    background-color: #1f124b;
    border-radius: 50%;
    border: 5px solid #1f124b;
}
.mobile-display-logo{
    display: none !important;
}

/**************************************** responsive breakpoints *********************************/
@media (max-width:1000px){

    .cart-wrapper{ margin-right: 20px;}
    .dropdown-menu .dropdown-menu{
		margin-left:0.7rem; margin-right:0.7rem; margin-bottom: .5rem;
}
.search-wrapper{ margin-right: 0;}


}

@media (max-width:768px){
    .mobile-prod-cat{ display: block;}
    .desk-prod-cat{ display: none;}
    .w-75, table.w-50, .tabs-account .w-50, .donation-container .w-50{ width: 100% !important;}
    .mobile-link-tabs{ display: none;}
    .icon-link-tab{ margin-right: 0;}
}

@media (max-width:778px){
    figure{ margin-left:20px; margin-right:20px ;}
    .order-detail-header{ display: block;}

}
@media (max-width: 560px){
    .mobile-hidden-logo{
        display: none !important;
    }
    .main-nav-wrapper.scrolled .mobile-display-logo{
        display: block !important;
    }

}

@media (max-width: 480px){
    /*.mobile-search{
        display: block;
    }*/
    .desktop-search{ display: none;}
    }

}
@media (min-width: 480px) {
    .main-nav-user-logged-text,
    .btn-main-nav-user-logged::after{
        display: block;
    }
}

@media (min-width: 600px) {

}

@media (min-width: 640px) {
    .homepage-banner-wrapper{
        /*padding-bottom:30px;*/
    }
    .homepage-banner-container{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .homepage-banner-content{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: 50%;
        padding:0 20px 0 0;
        margin: 0;
    }
    .homepage-banner-pic{
        top:20px; left: unset; right:5%;
    }
    .homepage-banner-pic img{
        width: 140%;
    }
    .homepage-we-do-list-wrapper .title{
        margin-bottom: 3rem;
    }
    .homepage-bottom-list-container{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
    }
    .homepage-bottom-list-item-wrapper{
        width: 50%;
    }
    .homepage-bottom-list-item-wrapper:nth-child(1){
        border-right: 1px solid #DEDEDE;
    }
    .homepage-bottom-list-item-wrapper:nth-child(1)::before{
        content: "";
        position: absolute;
        display: block;
        width: 3px;
        height: 50px;
        top:0; right:-2px;
        background-color: #ff6b00;
    }
    .homepage-bottom-list-item-wrapper:nth-child(1)::after{
        margin-left: 0; left: 0;
    }
    .homepage-bottom-list-item-wrapper:nth-child(2)::after{
        margin-left: 0; left: auto; right: 0;
    }
    .homepage-bottom-list-item-wrapper:nth-child(3){
        border-bottom:none;
        border-right: 1px solid #DEDEDE;
    }
    .homepage-bottom-list-item-wrapper:nth-child(3)::before{
        content: "";
        position: absolute;
        display: block;
        width: 3px;
        height: 50px;
        bottom:0; right:-2px;
        background-color: #ff6b00;
    }
    .homepage-bottom-list-item-wrapper:nth-child(3)::after{
        display: none;
    }
}


@media (min-width: 800px) {
}
@media (min-width: 1000px) {
    .container-custom{
        max-width: 1600px;
        padding:0 40px;
        margin:0 auto;
    }
    div.burger,
    div.menu,
    div.circle{
        display: none;
   }
   .mobile-main-nav-user{
       display: none;
   }
   .main-logo-wrapper{
       left: 0px;
   }
   .main-nav-list-wrapper,
   .main-nav-user-wrapper{
       display: block;
   }


}

@media (min-width: 1200px) {
    .homepage-banner-content{
        margin: -15% 0 0 0;
    }
    .homepage-banner-content h1{
        font-size: 3rem;
    }

}

@media (min-width: 1366px) {
    /*.main-nav-wrapper,
    .main-nav-wrapper-inner{
        height: 85px;
    }*/
    .main-logo-wrapper{
        width: 256px;
    }
    .main-logo-wrapper img{
        /*height: 35px;*/
    }
    .homepage-bottom-list-item-wrapper{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap:30px;
    }
    .homepage-bottom-list-item-pic{
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }
    .homepage-bottom-list-item-content{
        text-align: left;
    }
}


@media (min-width: 1600px) {
    .container-custom{
        max-width: 1600px;
        margin:0 auto;
    }
    .main-logo-wrapper{
        left: 0;
    }
    .homepage-bottom-list-container{
        background: url(../images/dot-matrix-bg2.svg) no-repeat top center;
    }
}
