* {
    margin: 0;
    padding: 0;
}
:root {
    --theme_red: #d33644;
    --theme_yellow: #febf12;
    --theme_purple: #432e77;
}

body {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
}

a:focus, button:focus {
    box-shadow: 0;
    outline: 0px;
}
:active, :hover, :focus {
  outline: 0!important;
  outline-offset: 0;
}


#to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    font-size: 22px;
    width: 50px;
    height: 50px;
    background: var(--theme_red);
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 99999;
    outline: 0;
}

header .navbar { padding: 2px 0; }
header .navbar-brand { max-width: 120px; }
header .navbar-brand img { width: 100%; }

header .navbar-light .navbar-nav .nav-item {
    padding: 5px 15px;
}
header .navbar-light .navbar-nav .nav-item:last-child {
    padding-right: 0px;
}
header .navbar-light .navbar-nav .nav-link {
    color: #000;
    opacity: 1;
    font-size: 16px;
    font-weight: 600;
}
header .navbar-light .navbar-nav .nav-link.btn {
    color: #000;
    background: var(--theme_yellow);
    padding: 0.5rem 15px;
}
header .navbar-light .navbar-nav .nav-item:hover .nav-link {
    color: var(--theme_yellow);
}
header .navbar-light .navbar-nav .nav-link.btn:hover {
    color: #fff;
    background: var(--theme_red);
}
header .navbar-light .navbar-nav .nav-item:hover .nav-link.btn {
    color: #fff;
}

.navbar-nav .dropdown-menu .dropdown-item {
    padding: 12px;
    display: block;
    font-weight: 500;
    transition: all 0.3s linear;
    border-radius: 4px;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background: var(--theme_red);
    color: #fff;
    font-weight: 600;
    padding-left: 24px;
}

.navbar-nav .dropdown-menu {
    background: #fff;
    background-color: #fff;
    width: 250px;
    margin: 15px 0 0;
    padding: 12px;
    display: block;
    opacity: 0;
    position: absolute;
    transform: translateY(20%);
    transition: all .6s ease;
    visibility: hidden;
    border-radius: 5px;
    border: 0px;
    background-clip: padding-box;
    box-shadow: 0 2px 5px rgba(0,0,0,.25);
    border-bottom: 4px solid var(--theme_purple);
}
header .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top_bar {
    background: var(--theme_red);
    padding: 2px;
    font-size: 14px;
}
.top_bar i {color: var(--theme_yellow); margin-right: 8px; }
.top_bar li, .top_bar li a, .top_bar li p {
    color: #fff;
    font-weight: 500;
}
.list-group-item { border: 0px; background: #fff0; }
.fd-row { flex-direction: row; }


.hero_banner .carousel-indicators [data-bs-target] {
    height: 12px;
    width: 12px;
    border-radius: 20px;
    background-color: #fff;
    box-sizing: border-box;
    background-clip: border-box;
    border: none !important;
    margin: 0 5px;
    transition: all 0.3s;
    background-color: var(--theme_red);
    background-color: var(--theme_purple);
}

.hero_banner .carousel-indicators .active {
    opacity: 1;
    width: 40px;
}

.pt-70 { padding-top: 70px; }
.pb-70 { padding-bottom: 70px; }
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.pt-130 { padding-top: 130px; }
.pb-130 { padding-bottom: 130px; }
.pb-160 { padding-bottom: 160px; }


.mt-70 { margin-top: 70px; }
.mb-70 { margin-bottom: 70px; }

.sub_title { color: var(--theme_yellow); display: inline-block; font-weight: 600; font-size: 20px; margin-bottom: 10px; }

.sec_title { font-size: 42px; font-weight: 600; color: var(--theme_purple); margin-bottom: 20px; }

.h_about .img_wrapper {
    width: 90%;
    position: relative;
}
.h_about .img_wrapper img {
    border-radius: 30px;
    display: block;
    object-fit: cover;
}
.h_about .bigger { width: 68%; max-height: 525px; }
.h_about .smaller { width: 44%; position: absolute; right: 0; top: 15%; height: 300px; box-shadow: 6px 6px 20px -10px #0000002b; border: 8px solid #fff; }
.h_about .sincce { width: 220px; background: var(--theme_yellow); border-radius: 30px; position: absolute; right: 20%; bottom: -10%; height: 180px; padding: 25px; }
.h_about .sincce p { font-size: 27px; margin-bottom: 0;line-height: 1.2; }
.h_about .sincce p span {display: block; color: var(--theme_purple); }
.h_about .sincce .year {display: block; color: var(--theme_purple); font-size: 50px; }

.theme_btn {
  position: relative;
  display: inline-block;
  width: auto; height: auto;
  background-color: var(--theme_yellow);
  border: none;
  cursor: pointer;
    margin-top: 15px;
    border-radius: 30px;
    overflow: hidden;
}
.theme_btn span {         
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    top: 0; left: 0;
    width: 100%;
    padding: 12px 20px;
    transition: 0.3s;
    color:  var(--theme_purple);
}
.theme_btn:hover span {         
    color: #fff;
    transition: 0.2s 0.1s;
}
.theme_btn::before,
.theme_btn::after {
  position: absolute;
  content: "";
}
.theme_btn i {
  transform: translateY(2px);
}

/* 7. hover-slide-up */
.theme_btn.hover-slide-up::before {
  bottom: 0; left: 0; right: 0; 
  height: 0%; width: 100%;
  background: var(--theme_red);transition: 0.3s ease-out;
}
.theme_btn.hover-slide-up:hover::before {
  height: 100%;
}

.counters { margin: 20px 0; }
.counters .col-md-4:not(:last-child) {
    border-right: 1px solid #ccc;
}
.count_box .count {
    color: var(--theme_yellow);
    font-size: 36px;
    font-weight: 600;
}


.products {
    background: var(--theme_purple);
}
.products .Prd_cat {
    margin-top: 60px;
}
.products .prd_box {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}
.products .prd_box h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    margin-bottom: 0;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to bottom, #0000, #000000c4);
    width: 100%;
    transition: all 0.3s;
}
.products .prd_box:hover h3 {
    color: var(--theme_yellow);
}
.owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #a9a9a9 !important;
    border: 1px solid #e8e6e6 !important;
    background: #fff !important;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    color: #fff !important;
    border: 1px solid #e8e6e6 !important;
    background: var(--theme_yellow) !important;
}
.owl-carousel .owl-nav button.owl-prev {
    left: -25px;
    font-size: 17px;
    line-height: 40px;
}
.owl-carousel .owl-nav button.owl-next {
    right: -25px;
    font-size: 17px;
    line-height: 40px;
}
.owl-theme .owl-dots {
    margin-top: 30px;
}
.owl-theme .owl-dots .owl-dot.active span {
    width: 40px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--theme_yellow);
}
.shape svg { width: 100%; height: 100%; }
.shape { width: 100%; height: 80px; }
.shape.bottom-0 { transform: scaleY(-1); }
.shape.top-0 { transform: scaleY(1); }
.shape-fill { fill: #fff;}


.filters_nav {
    display: flex;
    list-style: none;
    margin: 40px 0;padding: 0;
    justify-content: center;
}
.filters_nav li {
    margin: 12px;
}
.filters_nav li a {
    color: #000;
    padding: 14px 30px;
    border: 1px solid var(--theme_yellow);
    border-radius: 30px;
    min-width: 200px;
    transition: all 0.3s;
}
.filters_nav li:hover a, .filters_nav li.active a {
    background: var(--theme_red);
    color: #fff;
/*    font-weight: 600;*/
}

.F_prd-box {   
    border-radius: 10px; 
    border: 1px solid #f2f2f2;
    overflow: hidden;
    transition: all 0.3s linear;
}
.F_prd-box .f_img_box {   
    height: 180px;
    display: block;
    text-align: center;
    padding: 15px;
    margin: 10px auto 20px;
}
.F_prd-box .f_img_box img {  
    height: 100%;
    object-fit: contain;
    transition: all 0.3s linear;
}
.f_prd_desc {
    background: #fbfbfb;
    padding: 20px;
    transition: all 0.3s linear;
}
.f_prd_desc h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.f_prd_desc p {
     margin-bottom: 0;
    font-size: 14px;
}
.f_prd_desc p b {
     color: var(--theme_yellow);
}

.F_prd-box:hover .f_img_box img {  
    scale: 1.1;
}
.F_prd-box:hover {       
    border: 1px solid var(--theme_yellow);
}
.F_prd-box:hover .f_prd_desc  {  
     background: #fff7e2;
}

.partners .owl-stage {
    transition-timing-function: linear !important;
    margin-top: 15px;
}

.partners .owl-item { border: 1px solid #efefef; padding: 15px;    border-radius: 8px;
    box-shadow: 0 8px 21px -14px #00000038;
    margin: 15px 0;
    background: #fff;
} 
.partners .owl-item img {
    object-fit: contain;
    height: 90px;
}
.br-30 { border-radius: 30px; }


footer {
    border-top: 10px solid var(--theme_yellow);
    padding: 70px 0 0;
    background: var(--theme_purple);
}
.copyrights {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid #fff6;
}
footer h2 {
    font-size: 27px;
    margin-bottom: 30px;
}
footer p, footer p a, footer li a {
    color: #ffffffb8;
}
footer p.text-white a {
    color: #fff;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-right: 15px;
    font-size: 20px;
}
.qk_links {
    list-style: none;
    margin: 0;padding: 0;
}
.qk_links a {
    padding: 5px 0;
    display: inline-block;
}
.blog_box img {
    max-width: 120px;
    height: 80px;
    margin-right: 15px;
    object-fit: cover;
}
footer .border-bottom {
    border-bottom: 1px solid #ffffff8a!important
}
footer i, footer a:hover {
    color: var(--theme_yellow);
}


/* Recent-posts Section - Home Page
------------------------------*/
.recent-posts article {
  box-shadow: 0 4px 16px rgba(33, 37, 41, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}
.recent-posts article .post-img img {
  transition: all 0.3s;
}
.recent-posts article:hover .post-img img {
  transform: scale(1.1);
}

.recent-posts .title {
  font-size: 22px;
  font-weight: 600;
  padding: 0;
  margin: 25px 0 15px 0;
  font-family: "Open sans", sans-serif;
}

.recent-posts .title a {
  color: var(--theme_purple);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--theme_yellow);
}

.recent-posts .post-date {
  font-size: 14px;
  color: rgba(33, 37, 41, 0.5);
  margin-bottom: 0;
}




/* product thumbnail Section - Details Page
------------------------------*/
.owl-thumb-item {
    width: 23%;
    border: 1px solid #0a408682;
    margin: 0 1%;
}
.owl-thumb-item img {
    max-width: 100%;
    height: 100px;
    padding: 0px;
    margin: auto;
}
.owl-thumbs {
    position: absolute;
    left: 0;
    display: table;
    width: 100%;
    text-align: center;
    padding: 0 5px;
    bottom: -7.5em;
}
.prd_images.col-md-5 {
    padding-bottom: 7.5em;
}

.owl-thumb-item {
    display: table-cell;
    /*        border: none;*/
    background: none;
    padding: 0;
    opacity: 1;
    border: 1px solid #ccc;
    padding: 12px;
}
.owl-thumb-item.active {
    opacity: 1;
}
.owl-thumb-item img {
    height: 75px;
    object-fit: contain;
    display: block;
    margin: auto;
}

.prd_images .owl-item {
    border: 1px solid #ccc;
}
.prd_images .owl-item img {
    height: 350px;
    object-fit: contain;
    display: block;
    margin: auto;
    padding: 30px;
}

.prd_details_page .prd_sepcs {
    padding: 50px 30px;
    margin-top: 50px;
    border-radius: 12px;
    background: #f7f7f7;
}

.prd_details_page .prd_desc {
    padding-left: 30px;
}
p.highlight-text {
    font-size: 14px;
    background: var(--theme_red);
    display: inline-block;
    padding: 3px 15px;
    color: #fff;
}
span.ratings i {
    color: #e3e3e3;
    font-size: 16px;
}
span.ratings i.active {
    color: #ffc000;
}
.prd-price {
    color: var(--theme_red);
    font-weight: 700;
    font-size: 30px;
}
.prd-price del {
    color: #aaaaaa;
    font-weight: 300;
    font-size: 23px;
    margin-right: 12px;
}
.nav-tabs .nav-link {
    color: #000;
    font-size: 17px;
    margin: 0 12px 0  0;
}
.nav-tabs .nav-link:hover {
    border-color: var(--theme_red);
    color: var(--theme_red);
}
.nav-tabs .nav-link.active {
    background: var(--theme_red);
    color: #fff;
}
.tab-content {
    padding: 20px;
}
.breadcrumb .breadcrumb-item a { color: var(--theme_red); }


.listing_page .products .col-md-3 {
    padding: 0 8px;
    margin: 22px;
}
.listing_page .products .prd_box { border: 5px solid #fff; }
.listing_page .products .prd_box:hover { border: 5px solid var(--theme_yellow); }
.listing_page .products * { transition: all 0.3s; }
.listing_page .products .prd_box:hover {
    box-shadow: 0 15px 25px -15px rgba(0, 0, 0, 0.25);
}
.listing_page .products .prd_box:hover img {
    scale: 1.1;
}
.listing_page .products .prd_box h3 {
   text-align: center;
    font-size: 18px;
    padding-bottom: 15px;
}

.sidebar {
    width: 250px;
    background: #fff;
}
.sidebar ul.list-group {
    position: sticky;
    top: 40px;
}
.products_list_box {
    width: calc(100% - 250px);
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    padding-left: 20px;
}
a.btn-category {
    border: 0px;
    /* width: 100%; */
    display: block;
    text-align: left;
    font-weight: 600;
}
.card-body {
    padding: 5px;
    border-width: 1px 0px 0px 0px;
}
.products_list_box .col {
    width: 15%;
/*    flex-grow: 1;*/
    margin: 5px;
    flex: 1 0 15%;
}

/*================================*/
/*================================*/
@media screen and (min-width: 1400px) {
    .container {
        width: 96%;
        max-width: 1600px;
    }
    header .navbar-brand { max-width: 180px; }
    .products_list_box .col { width: 220px; }
}