:root {
    --primary: #7ba380;
    --secondary: #c02c2e;
    --black: #000000;
    --white: #ffffff;
}
@font-face {
    font-family: 'modestow01-lighttextregular';
    src: url('../fonts/modesto_w01_light_text-webfont.eot');
    src: url('../fonts/modesto_w01_light_text-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/modesto_w01_light_text-webfont.woff2') format('woff2'),
         url('../fonts/modesto_w01_light_text-webfont.woff') format('woff'),
         url('../fonts/modesto_w01_light_text-webfont.ttf') format('truetype'),
         url('../fonts/modesto_w01_light_text-webfont.svg#modestow01-lighttextregular') format('svg');
    font-weight: normal;
    font-style: normal;

}


* {
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    color: var(--black);
}
h1, h2, h3, h4, h5, h6, .banner-title, .offer-text {
    font-family: 'modestow01-lighttextregular';
}
img {
    display: block;
    width: 100%;
}
a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.5s ease;
}
a:hover {
    color: var(--primary);
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
p {
    font-family: "Poppins", sans-serif;
    line-height: 26px;
}
.container {
    max-width: 1650px;
}

.top-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.top-header {
      color: var(--white);
    font-size: 13px;
    padding: 6px 15px;
    background-color: var(--primary);
}
.top-header .left-column {
    display: flex;
    align-items: center;
}
.top-header span {
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
}
.top-header span:last-child {
    padding-right: 0;
    margin-right: 0;
}
.top-header span:after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 24px;
    content: '';
    background-color: var(--white);
    opacity: 0.3;
    transform: translateY(-50%);
}
.top-header span:last-child::after {
    display: none;
}
.top-header .right-column {
    display: flex;
    align-items: center;
}
.top-header .right-column span {
    display: flex;
}
.top-header .right-column span a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
}
.top-header .right-column span a img {
    width: 25px;
}
.head-l i {
    border-right: 1px solid #ddd;
    padding-right: 10px;
    margin-right: 10px;
    font-size: 18px;
    color: #7ba380;
    animation: blink 2s steps(5, start) infinite;
    -webkit-animation: blink 2s steps(5, start) infinite;
}

  @keyframes blink {
      to {
        visibility: hidden;
      }
    }
    @-webkit-keyframes blink {
      to {
        visibility: hidden;
      }
    }
.head-l a {
    display: flex;
    align-items: center;
    color: #000;
}

.head-l svg path, .header-icons a svg path {
    fill: #000;
}
header {
    padding: 13px 15px;
    background: rgb(0 0 0 / 53%);
}
section.section-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .brand img {
    width: 170px;
    filter: brightness(0) invert(1);
}

.navbar-nav   .nav-item > li > a {
    position: relative;
    padding: 10px 0;
    color: #222;
    font-weight: 500;
}
.navbar-nav   .nav-item > li > a::after {
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    content: '';
    background-color: var(--primary);
    transition: all 0.5s ease;
}
nav ul li:hover > a::after {
    width: 100%;
    left: 0;
}

.header-icons {
    display: flex;
    align-items: center;
    
   
}
.header-icons a {
    border-left: 1px solid /*#ddd*/ #6c6c6c;
    padding: 0 14px;
    font-size: 18px;
}
.header-icons a:first-child {
    border-left: 0;
}
.header-icons a img {
    width: 22px;
}
.cart-icon {
    position: relative;
}
.add_cart_number {
    position: absolute;
    top: -5px;
    right: 3px;
    padding: 0 5px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 10px;
    border-radius: 100%;
}

.wrapper {
    position: relative;
    overflow: hidden;
}
.wrapper::after {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    z-index: 111;
}
body.open-search .wrapper::after {
    right: 0;
}
.open-search .search-wrapper {
    right: 0;
}
.open-search {
    overflow: hidden;
}
.search-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 584px;
    height: 100%;
    padding: 48px;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    overflow-y: auto;
    z-index: 1111;
}
.search-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
}
.search-title h2 {
    margin: 0;
}
.search-title .close-btn {
    font-size: 24px;
}
.search-wrapper .form-group {
    position: relative;
    margin-bottom: 30px;
}
.search-wrapper .form-control {
    padding-right: 60px;
    height: 45px;
    font-size: 15px;
    border-radius: 30px;
}
.search-wrapper .form-control:focus {
    box-shadow: none;
}
.search-wrapper button[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    background: #dedede;
    border-radius: 30px 30px 30px 0;
    border: none;
    z-index: 1;
}
.search-wrapper button[type="submit"] img {
    width: 20px;
}
.search-wrapper h3 {
    padding-bottom: 10px;
    font-size: 18px;
    color: var(--primary);
}
.search-wrapper .row {
    margin: 0 -8px;
}
.search-wrapper [class*="col-"] {
    padding: 0 8px;
}
.search-category-item img {
 display: block;
 border-radius: 5px;
}
.search-category-item h4 {
    padding: 10px 0;
    font-size: 14px;
    color: #222;
}
.search-category-item:hover h4 {
    color: var(--primary);
}

.bottom-nav {
    padding: 0 15px;
}
.bottom-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1111;

}
.bottom-nav .nav-wrap {
    display: flex
;
    margin-bottom: 0;

    z-index: 11;
 
    justify-content: center;
        padding: 0;
}

.bottom-nav nav ul li a:hover {
    color: var(--primary);
}
.bottom-nav .discount {
    display: flex;
    align-items: center;
    background-color: var(--primary);
    padding: 0 20px;
    color: var(--white);
    border-radius: 0 5px 5px 0;
}
.bottom-nav .discount span {
    background-color: var(--white);
    color: var(--primary);
    padding: 5px 15px;
    margin-left: 15px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
}

.banner-slider {
    width: 100%;
    height: calc(100vh - 176px);
}
.swiper-slide {
    font-size: 18px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 30%;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-title {
    color: var(--black);
    font-size: 70px;
    line-height: 90px;
}
.offer-text {
    color: var(--black);
    font-size: 70px;
    line-height: 90px;
    font-weight: 600;
}
.btn {
    display: inline-block;
    min-width: 150px;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--white);
    background-color: var(--primary);
    border-radius: 0;
}
/*.btn:hover {
    color: var(--white);
    background-color: var(--secondary);
}*/

.swiper-slide .btn {
    margin-top: 30px;
}

.categories {
    padding: 0 0 100px;
}
.category-item {
    position: relative;
}
.category-item-img {
    display: block;
    overflow: hidden;
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 100%;
    box-shadow: -4px 5px #98aa9a;
    border: 2px solid #98aa9a;
    margin-bottom: 19px;
}
.categories .category-item-img img, .product-item-img img {
    transform: scale(1);
    transition: all 0.5s ease;
}
.categories .category-item:hover img, .product-item:hover .product-item-img img {
    transform: scale(1.1);
}
.category-item .hover-img, .category-item:hover .default-img {
    opacity: 0;
}
.category-item .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.category-item:hover .hover-img {
    opacity: 1;
}
.category-item h2 {
    margin: 0;
    font-size: 18px;
    text-align: center;
}
.category-item h2 a {
    display: block;
        text-transform: uppercase;
    padding-top: 10px;
}
.category-item:hover h2 a {
    color: #c02b2d;
}

.trending-products {
    padding: 100px 0;
}
.section-title {
    display: flex;
    justify-content: space-between;

}
.trending-products .section-title .right-column {
    display: flex;
    align-items: center;
}
.text-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    position: relative;
}
.text-link i {
    margin-left: 5px;
}
.text-link::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background-color: var(--primary);
    transition: all 0.5s ease;
}
.text-link:hover {
    color: var(--secondary);
}
.text-link:hover::after {
    background-color: var(--secondary);
}
.product-item {
    position: relative;
    box-shadow: 0px 3px 0px #7ba380;
    margin-bottom: 10px;
}
.product-item-img {
    display: block;
    position: relative;
    overflow: hidden;
}
.product-item-icon {
    position: absolute;
    bottom: -10px;
    right: 15px;
    left: 15px;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s 0s ease-out;
    opacity: 0;
    visibility: hidden;
}
.product-item:hover .product-item-icon {
    bottom: 5px;
    opacity: 1;
    visibility: visible;
}
.product-item-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    background-color: var(--white);
    border: 1px solid var(--white);
    border-radius: 0 100% 100% 100%;
}
.product-item-icon a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.product-info {
    padding: 15px;
    border: 1px solid #e8e8e8;
    border-top: none;
}
.product-name {
    font-size: 18px;
}
.product-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.product-price {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}
.product-price del {
    font-size: 14px;
    margin-right: 5px;
    color: #acacac;
}
.product-bottom-bar .text-link {
    font-size: 15px;
}
.badge {
    position: absolute;
    top: 15px;
    left: -10px;
    display: inline-block;
    min-width: 70px;
    padding: 8px;
    color: var(--white);
    font-size: 15px;
    font-weight: normal;
    background-color: var(--primary);
    border-radius: 0;
    z-index: 1;
}
.badge::after {
    position: absolute;
    bottom: -12px;
    left: 0;
    border-left: 0px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 10px solid var(--primary);
    content: '';
}
.red-btn {
    background-color: var(--secondary);
}
.red-btn:hover {
    background-color: var(--primary);
}
.product-company-name {
    display: block;
    padding-bottom: 8px;
    font-size: 16px;
    color: #74787C;
    text-transform: uppercase;
}
.product-review {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding-bottom: 8px;
}
.product-review .review-icon {
    color: var(--primary);
}
.swiper-top-button {
    display: flex;
    align-items: center;
       justify-content: center;
    gap: 10px;
}
.swiper-button-next, .swiper-button-prev {
    padding: 5px;
    font-size: 19px;
    color: #7ba380;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    right: 0;
    /* left: auto; */
    /* top: 0; */
    position: static;
    margin-top: 5px;
    margin-left: -3px;
}
.swiper-button-next {
    left: auto;
    right: 0;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #c02b2c;
}
.swiper-button-next::after, .swiper-button-prev::after {
    display: none;
}


.special-discount, .top-deals {
    padding: 100px 0;
}
.special-discount .discount-item {
    position: relative;
    overflow: hidden;
    padding: 60px 30px;
    background-color: #eee;
}
.special-discount .discount-item::after, .special-discount .discount-item::before {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    content: '';
    border: 15px solid rgba(0,0,0,0.05);
    border-radius: 100%;
}
.special-discount .discount-item::before {
    left: -200px;
    top: auto;
    right: auto;
    bottom: -200px;
}
.special-discount .item-content {
    max-width: 55%;
    position: relative;
    z-index: 11;
}
.special-discount .subtitle {
    color: var(--secondary);
}
.special-discount .title {
    padding: 15px 0;
    font-size: 20px;
}
.special-discount .item-img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 280px;
    z-index: 1;
}

.insta-feed-item {
    display: block;
    position: relative;
}
.insta-feed-item img {
    height: 400px;
    object-fit: cover;
    object-position: center top;
}
.insta-feed-item::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}
.insta-feed-item:hover::after, .insta-feed-item:hover .feed-item-info {
    opacity: 1;
    visibility: visible;
}
.feed-item-info {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.5s ease;
    z-index: 1;
}
.feed-item-info span {
    padding: 0 10px;
}

/*Footer CSS*/
.footer-main {
	margin-top: 50px;
    padding-top: 50px;
    background-color: var(--black);
}
.footer-main p {
    margin: 0;
        color: #fff;
}
.footer-services h5 {
	font-size: 16px;
	margin-bottom: 15px;
	font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
}
.footer-services ul li {
	display: block;
	line-height: 30px;
}
.footer-services ul li a {
    color: #FFF;
    font-weight: 300;
    font-size: 14px;
    display: flex
;
    height: 100%;
    align-items: center;
}
.footer-services ul li a:hover,
.footer-services ul li a:focus {
	color: #c02c2e;
}
.contact-content svg {
	color: var(--white);
	width: 20px;
	margin-right: 10pt;
}
.footer-services.contact-content ul {
	margin-top: 5px;
}
.footer-services ul li.content-lists {
	display: flex;
    align-items: center;
	margin-bottom: 10px;
}
.leftside-icon.homeicons {
	margin-top: 0px;
}
.rightside-texts {
	line-height: normal;
	font-size: 15px;
	font-weight: 300;
	color:var(--white);
}

.footercopyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 30px;
    padding: 20px 0;
}
.footercopyright p {
    margin: 0;
	color: var(--white);
	font-weight: 300;
	font-size: 14px;
}
.footercopyright p a {
	color: var(--white);
	font-weight: 600;
}
.footercopyright p a:hover {
	color: #c02c2e;
}
ul.bottomnavs {
	display: flex;
	justify-content: end;
	gap: 15px;
}
ul.bottomnavs li a {
	color: var(--white);
	font-weight: 300;
	font-size: 14px;
}
ul.bottomnavs li a:hover,
ul.bottomnavs li a:focus {
	color: #c02c2e;
}




.section {
    padding: 100px 0;
}
.mintas-category .section-title {
   /* display: block;
    text-align: center;
    padding: 40px;*/}
    .mintas-category .section-title {
    display: block;
    text-align: center;
 
    height: 100%;
    display: flex;

    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mintas-category .section-title h2 {
    text-transform: uppercase;
    font-size: 26px;
    line-height: 38px;
    margin-top: 5px;
}
.product-item-img:hover {
    box-shadow: 0px 4px 28px #7ba380;
    transition: 0.5s;
}

 .section-title img,.section-heading img {
    width: 100px;
   
}
.mintas-category .row [class*="col-"] {
    margin-bottom: 24px;
}
.mintas-category .category-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.mintas-category .category-item img {
    height: 367px;
    object-fit: cover;
}
.category-item-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.category-item-content h3 {
    color: var(--white);
}

.alternative-section .container .row:nth-child(2n) {
    flex-direction: row-reverse;
}
.alternative-section .alt-img {
    position: relative;
    box-shadow: 7px 9px 20px #98aa9a;
}
.alt-img .text-link {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px 25px;
    background-color: var(--white);
    z-index: 1;
}
.alt-img .text-link::after {
    display: none;
}
.alternative-section .container .row:nth-child(2n) .alt-img .text-link {
    left: auto;
    right: 0;
}
.alternative-section img {
    position: relative;
    z-index: 1;
}
.content-wrap {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}
.content-wrap::before, .content-wrap::after {
    position: absolute;
    bottom: -25px;
    left: -30px;
    width: 171px;
    height: 161px;
    content: '';
    opacity: 0.3;
    background-image: url('../images/leaf.png');
    background-repeat: no-repeat;
    background-size: 171px auto;
    background-position: bottom right;
    transform: rotate(45deg);
}
.alternative-section .container .row:nth-child(2n) .content-wrap::after {
    top: -25px;
    right: -30px;
    left: auto;
    bottom: auto;
    transform: rotate(-135deg);
}
.content-wrap::before {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    transform: rotate(-135deg);
}
.alternative-section .container .row:nth-child(2n) .content-wrap::before {
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    transform: rotate(45deg);
}
.alternative-section .content {
    padding: 50px 100px;
}
.alternative-section .content .subtitle {
    display: block;
    padding-bottom: 15px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
}
.alternative-section .content h2 {
    padding-bottom: 15px;
}
.alternative-section .content p {
    margin-bottom: 20px;
}

.discount-section {
    padding: 0 0 100px;
}
.discount-sec-item {
    text-align: center;
    position: relative;
    content: '';
    border-radius: 50% 50% 10% 10%;
    background: hsl(127.5deg 17.86% 56.08% / 25%);
}
/*.discount-sec-item::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background-color: #7ba380;
    content: '';
    border-radius: 50% 50% 0 0;
    opacity: 0.3;
}
*/

/*.discount-off-product {*/
/*    display: block;*/
/*    font-size: 24px;*/
/*    font-weight: 600;*/
/*    position: relative;*/
/*    background-image: url(../images/shape-border-bg-green.png);*/
/*    background-repeat: no-repeat;*/
/*    background-size: contain;*/
/*    background-position: center;*/
/*    padding: 60px 0;*/
/*    text-shadow: 1px 2px 3px #0000006e;*/
/*    z-index: 9;*/
/*    top: -37px;*/
/*}*/

.discount-off-product {
    display: block;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    background-image: url(../images/shape-border-bg-green.png);
    background-repeat: no-repeat;
    background-size: 200px;
    background-position: center;
    padding: 60px 0;
    text-shadow: 1px 2px 3px #0000006e;
    z-index: 9;
    top: -37px;
}


/*.discount-sec-item:hover .discount-off-product {*/
/*    animation: shake 2s;*/
/*    animation-iteration-count: infinite;*/
/*}*/
.discount-sec-item{ transition:0.5s }
.discount-sec-item:hover {
    box-shadow: 0px 4px 28px #7ba380;
    transition:0.5s
}
  
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
a.discount-pro-img {
    display: block;
    padding-top: 0;
    padding-bottom: 12px;
        margin-top: -37px;
}

/*.discount-off-product::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background-image: url('../images/label.png');
    background-repeat: no-repeat;
    background-size: 270px auto;
    background-position: center center;
}*/
.discount-pro-img::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    z-index: 11;
}
.discount-sec-item img {
    margin: 0 auto 15px;
    max-width: 250px;
    position: relative;
    z-index: 1;
}
.discount-product-name {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    padding: 10px 14px;
    background: #000000;
    margin-bottom: -1px;
    border-bottom-right-radius: 35px;
    border-bottom-left-radius: 35px;
}

.discount-off-product span {
    position: relative;
    color: var(--white);
    z-index: 1;
}



.reviews {
    padding: 100px 0 100px;
}
.reviews .section-title {
    display: inline-block;
    padding: 60px 55px;
    position: relative;
}
.reviews .section-title i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 45px;
    color: var(--primary);
}
.reviews .section-title i.fa-quote-right {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
}
.reviews .section-title::before, .reviews .section-title::after {
    position: absolute;
    top: 20px;
    left: 55px;
    content: '';
    width: 100%;
    max-width: 200px;
    height: 1px;
    background-color: var(--primary);
}
.reviews .section-title::after {
    top: auto;
    left: auto;
    right: 55px;
    bottom: 20px;
}
.reviews .section-title h2 {
    color: var(--primary);
    font-weight: 600;
}
.reviews .section-title h2 span {
    font-size: 40px;
    font-family: "Oleo Script", system-ui;
    font-weight: 400;
}
.reviews .section-title p {
    margin: 0;
    font-weight: 500;
    color: #74787C;
}
.reviews .swiper {
    padding: 20px 0;
}
.reviews figure {
    display: inline-flex;
    gap: 20px;
}
.reviews figure picture {
    display: inline-block;
    min-width: 70px;
    width: 70px;
    height: 70px;
    padding: 10px;
    overflow: hidden;
    border-radius: 100%;
    background-color: rgba(123, 163, 128, 0.3);
}
.reviews figure figcaption {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.reviews figure blockquote p {
    color: #74787C;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
}
.author-name {
    color: #74787C;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
}
.reviews .review-img {
    margin-right: 20px;
    transform: rotate(10deg);
    border: 6px double var(--primary);
    box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.2);
}
.reviews .rating {
    display: inline-flex;
    gap: 2px;
    padding-left: 10px;
    color: var(--primary);
}

.blog-img {
    display: block;
    overflow: hidden;
    border-radius: 5px;
}
.blog-img img {
    height: 350px;
    object-fit: cover;
    object-position: center top;
    transition: all 0.5s ease;
}
.blog-item:hover img {
    transform: scale(1.1);
}
.blog-item-content {
    position: relative;
    top: -50px;
    margin: 0 30px;
    border: 6px double var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}
.blog-item:hover .blog-item-content {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}
.blog-item-content .inner-content {
    padding: 20px;
    background-color: var(--white);
}
.blog-date {
    display: block;
    font-size: 15px;
    color: #74787C;
    font-weight: 500;
}
.blog-item-content h3 {
    margin: 15px 0;
    font-size: 24px;
    line-height: 34px;
}
.blog-item:hover .blog-item-content h3 a {
    color: var(--primary);
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 11;
}
.whatsapp-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 10px;
    font-size: 30px;
    color: var(--white);
    background-color: var(--primary);
    border-radius: 100% 100% 100% 0;
}
.chat-wrap .whatsapp-icon .fa-xmark, .chat-wrap.open .whatsapp-icon .fa-whatsapp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    visibility: hidden;
}
.chat-wrap.open .whatsapp-icon .fa-xmark {
    opacity: 1;
    visibility: visible;
}
.chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 385px;
    padding: 30px 20px 20px;
    opacity: 0;
    visibility: hidden;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#7ba380+0,e5e5e5+100 */
    background: linear-gradient(to bottom,  #7ba380 0%,#e5e5e5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-radius: 5px;
    z-index: 11;
}
.chat-wrap.open .chat-box {
    opacity: 1;
    visibility: visible;
}
.chat-box h2, .chat-box h3 {
    font-size: 24px;
    color: var(--white);
}
.chat-box h3 {
    font-size: 20px;
}
.chat-box p {
    color: var(--white);
}
.chat-box .chat-link {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 15px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.chat-box .chat-link i {
    margin-right: 8px;
    font-size: 24px;
}


.top-text-slider .item {
    text-align: center;}



.slider-main-box figure {
    width: 100%;
    margin-bottom: 0;
}
figure.slider-img img {
    width: 350px !important;
    display: flex;
    height: 953px;

;
    margin: auto;
        -webkit-animation: zoom 25s;
    animation: zoom 25s;
}
figure.slider-img {
    width: 40%;
    text-align: center;
    position: relative;
}

.slider-content {
    width: 50%;
    text-align: left;

}

figure.slider-img:after {
    background: #ddd;
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: 0;
    left: 0;
}

figure.slider-img img {
    z-index: 9;
    position: relative;
   

}




.main-slider .owl-dots {
    position: absolute;
    left: 30px;
    bottom: 26px;
}

.slider-content .btn {
    margin-top: 40px;
}

.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);

  position: relative;

  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #bd2c2c;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {color: white;}
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {-webkit-transform: scaleX(1);transform: scaleX(1);}

/*.category-item-content:hover .hvr-shutter-out-horizontal:before,.category-item-content:focus .hvr-shutter-out-horizontal:before,.category-item-content:active .hvr-shutter-out-horizontal:before {*/
/*  -webkit-transform: scaleX(1);*/
/*  transform: scaleX(1);*/
/*}*/

.hvr-shutter-out-horizontal:hover:before {-webkit-transform: scaleX(1);transform: scaleX(1);}
.hvr-shutter-out-horizontal:hover span {color: #fff;}

ul.navbar-nav li.nav-item {margin: 0 20px;}
.navbar-collapse{justify-content: center;}
.nav-wrap .navbar-nav .nav-link {color: #fff;padding: 8px 0px;letter-spacing: .2em;text-transform: uppercase;font-size: 14px;font-weight: 400;position: relative;}
.nav-wrap .navbar-nav .nav-item .dropdown-menu {opacity: 0;display: initial;top: 39px;left: 0;transform: perspective(600px) rotateX(-90deg);transform-origin: 0 0 0;transition: 0.5s;border-radius: 0;border: 0;background: hsl(0deg 0% 100% / 79%);right: 0;width: 100%;min-width: 240px;}
.nav-wrap .navbar-nav .nav-item .dropdown-menu li {font-size: 14px;}
.nav-wrap .navbar-nav .nav-item:hover .dropdown-menu{    transform: perspective(600px) rotateX(0deg); opacity: 1}
ul.dropdown-menu.mega-menu {transition: 0.5s;z-index: 9;top: 100%;text-align: left;min-width: 580px;padding: 15px 20px;border: 0;border-radius: 0;}
ul.dropdown-menu.mega-menu li .dropdown-item {color: #000 !important;text-align: left !important;padding: 0 0px;text-transform: uppercase;}
.main-slider-sec .owl-carousel .owl-item img {display: block;width: 100%;height: 95vh;}
.header-icons i {color: #fff;}
.bottom-nav {border-top: 2px solid #ffffff6e;border-bottom: 2px solid #ffffff6e;background: rgba(0, 0, 0, .37);color: var(--header-heading-color);box-shadow: 0 -1px var(--header-border-color) inset;}

/*.item {-webkit-animation: zoomin 20s;animation: zoomin 20s;}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@keyframes zoomin {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.5, 1.5);
  }
}*/

.head-l {font-weight: 400;font-size: 16px;}
.head-l svg {margin-right: 14px;}

a.btn.hvr-shutter-out-horizontal:hover {color: #fff;}

.category-item-content:hover h3:after {background: #bd2b2d;}
ul.dropdown-menu.mega-menu {display: flex ! !important;align-items: flex-start;text-align: left ! !important;}

ul.dropdown-menu.mega-menu li {flex: 1;text-align: left;}

ul.dropdown-menu.mega-menu li > .dropdown-item {text-transform: uppercase;padding-bottom: 10px;font-size: 15px;font-weight: 500;}
.dropdown-item:focus, .dropdown-item:hover {color: #1e2125;background-color: transparent;}
ul.sub-drop-down li a {padding: 5px 0;display: block;font-size: 14px;}

.owl-item.active .slider-main-box{ animation: fade 1s linear;}
.owl-item.active .slider-main-box img {animation: zoom-out 3s;}

@keyframes zoom-out {
     from {
          transform: scale(2);
     }
     to {
          transform: scale(1);
     }
}

@keyframes fade {
  0% { opacity: 0 }
  100% { opacity: 1 }
}

.mintas-category .category-item:hover:after {background: hsl(0deg 0% 0% / 21%);position: absolute;left: 0;right: 0;top: 0;bottom: 0;content: "";}
.mintas-category .category-item-content {z-index: 1;}
.mintas-category .category-item-content h3 {border-bottom: 2px solid;margin: 30px 30px;padding-bottom: 5px;position: relative;text-transform: uppercase;font-size: 25px;}
.mintas-category .category-item-content h3:after {background: #7ba380;content: "";position: absolute;left: 0;width: 60px;height: 2px;bottom: -2px;}

/*.mintas-category .category-item .btn {*/
/*    left: 0;*/
/*    bottom: -84px;*/
/*    border-radius: 6px;*/
/*    overflow: hidden;*/
/*    border: 0;*/
/*    right: 0;*/
/*    margin: auto;*/
/*    top: auto;*/
/*}*/

.mintas-category .category-item .btn {left: 0;bottom: 15px;border-radius: 6px;overflow: hidden;border: 0;right: 0;/* margin: auto; */ transform: translateX(-100%);top: auto;transition: all 0.3s ease-in-out;background-color: #fff2dd;color: #222;}
.mintas-category .category-item.first_img2 .btn {transform: translateX(352%);left: auto;}
.mintas-category .category-item:hover .btn {transform: translateX(15px);background-color: #fff2dd;}
.mintas-category .category-item.first_img2:hover .btn {transform: translateX(240%);}
.most-loved-img img, .trend-setter-pick-img img {height: 400px;width: 100%;object-fit: cover;}
.top-deals-swiper .product-item, .trending-products-swiper .product-item {width: 100%;}

.discount-sec-item img {height: 250px;object-fit: cover;}
.category-item:hover img {transform : scale(1.20); -moz-transform : scale(1.20); -webkit-transform : scale(1.20); -o-transform : scale(1.20); -ms-transform : scale(1.20);}
.category-item img {object-fit: contain;height: 146px;transition: all .5s;-moz-transition: all .5s;-webkit-transition: all .5s;-o-transition: all .5s;-ms-transition: all .5s;}
.section-heading img {width: 100px;margin: auto;}

ul.category-list {display: flex;flex-wrap: wrap;justify-content: center;}
ul.category-list li {margin: 0 19px;width: 10%;}
.section-heading {text-align: center;margin-bottom: 65px;position: relative;}
a.category-item-img:hover {box-shadow: 5px -4px #bf2d2c;border: 2px solid #bf2d2c;}

@-webkit-keyframes float_up_down {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }

    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes float_up_down {
    0% {
        transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }

    50% {
        transform: translateY(30px);
        transform: translateY(30px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}
.icon-head svg,a.arrow-btn-slider img{
 animation-name: float_up_down;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float_up_down;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float_up_down;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float_up_down;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float_left_right;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;}

.Subscribe-box input {height: 100%;padding-right: 132px;}
.Subscribe-box {position: relative;height: 45px;overflow: hidden;margin-top: 12px;}
.Subscribe-box .btn.hvr-shutter-out-horizontal {position: absolute;top: 0;right: -1px;bottom: 0;padding: 0 20px;min-width: 20px;border: 0;border-top-right-radius: 6px;border-bottom-right-radius: 6px;}
.footer-services.contact-content ul {margin-top: 18px;}

.top-deals .right-column {display: flex;}
.social-link {display: flex;}
.social-link li {display: flex;align-items: center;justify-content: center;width: 45px;height: 45px;font-size: 21px;color: var(--white);background-color: var(--primary);border-radius: 100% 100% 100% 0;text-align: center;justify-content: center;margin-right: 10px;}
.social-link li i {font-size: 20px;}

.social-link li a{ display:flex; align-items:center; justify-content:center; }

.section-heading h2:after {background: url(../images/border-l.png);position: absolute;left: -156px;content: "";width: 183px;height: 15px;background-position: left;top: 14px;background-size: 78%;background-repeat: no-repeat;}
.section-heading h2:before {background: url(../images/border-r.png);position: absolute;right: -156px;content: "";width: 183px;height: 15px;background-position: right;top: 14px;background-size: 78%;background-repeat: no-repeat;}
.section-heading h2 {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-size: 26px;
    line-height: 38px;
}

.payment-list li {background: #fff;margin-right: 5px;border-radius: 5px;padding: 3px 7px;height: 29px;display: flex;align-items: center;justify-content: center;}
.payment-list li img {width: 30px;}
.payment-list {display: flex;align-items: center;margin-top: 23px;}

.main-slider-sec .owl-theme .owl-dots .owl-dot span{margin: 5px 4px;}

.main-slider-sec {position: relative;}
.arrow-btn-slider img {transform: rotate(-182deg);width: 67px;margin-top: -22px;}
.main-slider-sec .arrow-btn-slider {position: absolute;background: #fff;bottom: 0;z-index: 1;width: 40px;height: 40px;left: 0;right: 0;margin: auto;display: flex;align-items: center;justify-content: center;border-radius: 50%;bottom: -22px;box-shadow: 0 3px 2px #98aa9a;}

.nav-item.sale-li {position: relative;display: none;}
.nav-item.sale-li img {width: 50px;position: absolute;top: 0;}

.dropdown-menu.mega-menu-two {min-width: 500px !important;}

.sub-drop-down > li {display: flex;}

/*.dropdown-menu.mega-menu-two li .dropdown-item {width: 50%;}
.dropdown-menu.mega-menu-five li .dropdown-item{width: 25%;}*/

/*.dropdown-menu.mega-menu-five .sub-drop-down {position: absolute;left: 25%;opacity: 0;width: 25%;top: 30px;right: 30px;}
.dropdown-menu.mega-menu-two .sub-drop-down {position: absolute;left: 50%;opacity: 0;width: 50%;top: 30px;right: 30px;}
.mega-menu-common {background: rgba(239, 232, 218, 0.9) !important;padding: 30px 30px;position: relative;border-bottom: 2px solid #9f7e79 !important;}
.dropdown-menu.mega-menu-common > li:hover  > .sub-drop-down{ opacity:1; }*/

.mega-menu-common:after {background-image: url(../images/left-top-corner.png), url(../images/right-top-corner.png);position: absolute;background-position: top left 0px, top right -0;content: "";z-index: 99;top: 0;left: 0;right: 0;bottom: 0;background-repeat: no-repeat;z-index: -1;}
.mega-menu-common:before {background-image: url(../images/left-bottom-corner.png), url(../images/right-bottom-corner.png);position: absolute;background-position: bottom left 0px, bottom right -0;content: "";z-index: 99;top: 0;left: 0;right: 0;bottom: 0;background-repeat: no-repeat;z-index: -1;}

.navbar-nav .nav-item.dropdown.full-mega-drop {position: static;}
/*.dropdown-menu.mega-menu-common .sub-sub-drop-down {position: absolute;left: 50%;opacity: 0;}

.dropdown-menu.mega-menu-common .sub-drop-down li:hover .sub-sub-drop-down {opacity: 1;}*/
ul.dropdown-menu.mega-menu-two.mega-menu-common {display: flex !important;}
ul.dropdown-menu.mega-menu-two.mega-menu-common li {width: 50%;}
ul.sub-drop-down {display: none;}
ul.sub-drop-down.first-drop {display: block;}

.right-column {position: absolute;right: 0;top: 179px;display: flex;}
.section.mintas-category {padding-bottom: 76px;}

@media(max-width:1199px) {
ul.category-list li {width: auto;}
.blog-item-content h3 {font-size: 18px;line-height: 26px;}
}

@media(max-width:991px) {
.navbar-collapse.show {margin-left: 0;left: 0;transition: .5s;}
.top-deals {padding-top: 0;padding-bottom: 50px;}
.navbar-collapse {background-color: #000;height: 100vh;padding-top: 30px;position: fixed;left: -227px;top: 0;transition: .3s;width: 227px;z-index: 9;}
.trending-products {padding: 50px 0;}
.bottom-nav .nav-wrap {justify-content: right;}
button.navbar-toggler {line-height: normal;background: #7ba380;padding: 5px 6px;margin: 3px;position: absolute;top: -2px;border: 0;transition: none;}
.navbar-toggler:focus {box-shadow: none;}
button.navbar-toggler i {color: #fff;}
.main-slider-sec .owl-carousel .owl-item img {height: 460px;}
header .brand img {width: 135px;}
a.arrow-btn-slider img {transform: rotate(-182deg);width: 41px;margin-top: 1px;}
.mintas-category .col-lg-4 {width: 50% ! IMPORTANT;}
.mintas-category .col-lg-4:first-child {width: 100% ! IMPORTANT;}
ul.category-list li {width: 25%;margin-bottom: 23px;}
section.discount-section .col-lg-3 {width: 50%;margin-bottom: 50px;}
.discount-off-product {font-size: 19px;background-size: 225px;}
.footer-main {margin-top: 30px;}
.section.mintas-category {padding-bottom: 26px;}
.section {padding: 50px 0;}
.discount-section .row {margin-top: 75px;}
.discount-section {padding-bottom: 0;}
.reviews {padding-bottom: 20px;padding-top: 50px;}
.footer-main .col-md-4.col-lg-3 {width: 50%;margin-bottom: 21px;}
.categories {padding: 0 0 32px;}
.insta-feed .col-md-3 img {height: 300px;}
section.blogs .col-lg-4 {width: 50%;}
}

@media(max-width:767px) {
.main-slider-sec .owl-carousel .owl-item img {height: 380px;object-fit: cover;object-position: left;}
.section-title img,.section-heading img {width: 60px;}
.section-title h2 {font-size: 22px;}
.head-l a {font-size: 13px;}
.header-icons a {padding: 0 8px;font-size: 13px;}
.header-icons svg {width: 17px;}
header {padding: 7px 15px;background: rgb(0 0 0 / 53%);}
.mintas-category .category-item img {height: 265px;}
/*.mintas-category .category-item .btn {bottom: -40px;}*/
.discount-sec-item img {max-width: 191px;height: 191px;}
.discount-off-product {font-size: 18px;background-size: 205px;}
.insta-feed .col-md-3 {width: 50%;}
.footercopyright .col-12.col-md-6 {text-align: center ! IMPORTANT;}
section.blogs .col-lg-4 {width: 100%;}
.footer-main {margin-top: 10px;}
.top-deals {padding-bottom: 50px;padding-top: 10px;}
.bottom-nav {height: 48px;}
.nav-wrap .navbar-nav .nav-item .dropdown-menu {
    opacity: 1;
    top: 0px;
    position: relative;
    padding: 0px;
}
.navbar-nav .dropdown-menu li .dropdown-item {color: #fff;}
.section.mintas-category {
    padding-top: 70px;
}
.mintas-category .category-item.first_img2:hover .btn {
    transform: translateX(-15px);
}
.mintas-category .category-item.first_img2 .btn {
    transform: translateX(100%);
    left: auto;
    right: 0px;
    position: absolute;
}
.right-column {
    top: 138px;
}
a.discount-pro-img {
    padding-bottom: 10px;
    margin-top: 15px;
}
.discount-sec-item {
    max-width: 290px;
    margin: 0px auto;
}
}

@media(max-width:575px) {
.search-wrapper {right: -100%;width: 100%;}
.top-text-slider .item span {font-size: 10px;}
.brand {width: 45px;overflow: hidden;}
.btn {display: inline-block;min-width: 115px;padding: 9px 20px;font-size: 14px;}
.mintas-category .col-lg-4 {width: 100% ! IMPORTANT;}
.mintas-category .category-item-content h3 {font-size: 20px;}
.section-heading img {width: 70px;margin: auto;}
ul.category-list li {width: 35%;margin-bottom: 18px;}
.trending-products {padding: 50px 0;}
.alternative-section .content {padding: 40px 0px;}
.discount-product-name {font-size: 16px;}
.discount-off-product {font-size: 16px;background-size: 162px;padding: 40px 0px;}
section.discount-section .row {margin-top: 0px;}
section.discount-section .col-lg-3 {margin-bottom: 40px;}
.footer-main .col-md-4.col-lg-3 {width: 100%;margin-bottom: 21px;}
header {padding: 7px 0px;}
.insta-feed {padding-top: 20px;}
}

@media(max-width:480px) {
.category-item-img {width: 110px;height: 110px;margin-bottom: 4px;}
.category-item h2 {margin: 0;font-size: 16px;}
.category-item-img {width: 110px;height: 110px;margin-bottom: 4px;}
.section-heading {text-align: center;margin-bottom: 30px;}
section.discount-section .col-lg-3 {width: 95%;margin: auto;margin-bottom: 30px;}
.discount-off-product{top: 7px;}
.insta-feed .col-md-3 {width: 100%;}
.blog-item-content h3 {font-size: 20px;line-height: 28px;}
.main-slider-sec .owl-carousel .owl-item img {height: 305px;object-fit: cover;object-position: center;}
header {padding: 1px 0px;}
.head-l svg {margin-right: 3px;width: 15px;}
.header-icons svg {width: 14px;}
.head-l a {font-size: 11px;}
.text-link {font-size: 14px;}
.alt-img .text-link{padding: 11px 18px;}
.content-wrap::before, .content-wrap::after{background-size: 112px auto;}
}

.navbar-nav li:hover > .mega-menu {/* -moz-animation: fadeIn 0.3s ease-in;-webkit-animation: fadeIn 0.3s ease-in; animation: fadeIn 0.3s ease-in;*/ opacity: 1;visibility: visible;transform: perspective(600px) rotateX(0deg);}
.mega-menu {background: hsl(0deg 0% 100% / 79%);box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);left: 0;opacity: 0;position: absolute;right: 0;top: 99%;text-align: left;visibility: hidden;z-index: 9999;transform: perspective(600px) rotateX(-90deg);transform-origin: 0 0 0;transition: 0.5s;min-width: 500px;width: 100%;
/* opacity: 0;display: initial;top: 39px;left: 0;transform: perspective(600px) rotateX(-90deg);transform-origin: 0 0 0;transition: 0.5s;border-radius: 0;border: 0;background: hsl(0deg 0% 100% / 79%);right: 0;width: 100%;min-width: 240px;*/}

.navbar-nav > .megamenu-li {position: static;}
.mega-menu-item {display: block;list-style: none;text-align: left;width: 50%;}
.mega-menu-items {position: relative;width: 100%;}
.mega-menu-area {padding: 30px 30px;width: 100%;margin: 0 auto;display: flex;}

/*.navbar-nav li:hover > .mega-menu {-moz-animation: fadeIn 0.3s ease-in;-webkit-animation: fadeIn 0.3s ease-in;animation: fadeIn 0.3s ease-in;opacity: 1;visibility: visible;}*/

.mega-menu-item > li.result_hover > .mega-submenu {opacity: 1;visibility: visible;}
.mega-submenu {position: absolute;left: 50%;width: 50%;display: flex;height: 100%;opacity: 0;visibility: hidden;top: 0;}
.mega-menu-item > li > a {color: #010101;display: inline-block;font-size: 14px;font-weight: 500;line-height: 20px;padding: 0 15px 11px 0;text-align: left;position: relative;}
.mega-submenu-title {font-size: 16px;font-weight: 600;}
.mega-submenu-item {list-style-type: none;display: block;}
.mega-submenu-item > li > a {color: hsl(0deg 0% 0% / 72%);display: block;font-weight: 500;padding: 5px 0;}
.mega-submenu-item > li {display: block;}
.mega-submenu-column {width: 100%;padding: 0 12px;}
.mega-menu-column-image {width: 50%;padding: 0 30px;}
.mega-menu-item > li > a:hover, .mega-menu-item > li > a:focus, .mega-menu-item > li:hover > a {color: #6f6f6f;padding-left: 3px;}

@media (min-width: 1200px) and (max-width: 1400px) {
.discount-sec-item img {height: 200px;max-width: 200px;}
.mintas-category .category-item.first_img2:hover .btn {transform: translateX(157%);}
}

