@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Template Name: Evani - Modern Fashion Ecommerce HTML Template
    Template url : https://ethemestudio.com/demo/evani
    Author: eThemeStudio
    Publish: February 11, 2024
    Last Update: February 11, 2024
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    00 - Helpers (variable)
    01 - Basic (Typography)
    02 - Basic (Mixin)
    03 - Basic (Base)
    04 - Basic (Common)
    05 - Template
        5.0 - Header Style
        5.1 - Header-two Style
        5.2 - Main-menu Style
        5.3 - Home-one Style
        5.4 - Home-two Style
        5.5 - Home-three Style
        5.6 - Shop-one Style
        5.7 - Single-shop Style
        5.8 - Single-product Style
        5.9 - Shopping-cart Style
        5.10 - Checkout Style
        5.11 - Wishlist Style
        5.12 - Collections Style
        5.13 - Recent-blog Style
        5.14 - Recent-blog-two Style
        5.15 - Single-blog Style
        5.16 - contact-us Style
        5.17 - Footer Style
        5.18 - Solution Style
        5.19 - Boost Style

-----------------------------------------------------------------------------------*/

:root {
    --primary-color: orange;
}

html, body {
    overflow-x: clip;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;

    /*list-style: none;*/
    border: none !important;
    scroll-behavior: smooth;
    text-decoration: none !important;
}

ul {
    list-style: none;
}

html {
    font-size: 62.5%;
    overflow-x: hidden !important;
    scroll-behavior: smooth;
    transition: 0.3s;
}

body {
    background: #fff;
}

section {
    padding: 50px 15px;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}

h1 {
    font-size: 72px;
    line-height: 82px;
    color: #343c55;
}

h2 {
    font-size: 48px;
    line-height: 64px;
    color: #343c55;
}

h3 {
    font-size: 30px;
    line-height: 38px;
}

h4 {
    font-size: 24px;
    line-height: 36px;
}

h5 {
    font-size: 24px;
    line-height: 28px;
}

h6 {
    font-size: 21px;
    line-height: 28px;
}

p {
    font-size: 18px;
    line-height: 28px;
    color: #343C55;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    display: block;
}

span {
    font-family: "Poppins", sans-serif;
}

a {
    font-family: "Poppins", sans-serif;
    color: #343C55;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

h2 a:hover {
    color: #F2AD4A;
}

.container {
    max-width: 1200px;
    width: 100%;
}

.anim-hidden {
    opacity: 0;
    filter: blur(0px);
    transform: translateY(20%);
    transition: all 0.5s;
}

.anim-show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

@media (prefers-reduced-motion) {
    .anim-hidden {
        transition: none;
    }
}

.swiper-slide-active {
    opacity: 1;
    animation: fadeUp;
    transform: translateY(100px);
    animation-name: fadeUp;
}

.swiper-slide-active .hero-content-left h6 {
    animation: fadeUp 0.6s ease-in-out forwards;
    transition: 0.3s ease-in-out;
}

.swiper-slide-active .hero-content-left h1 {
    animation: fadeUp 0.8s ease-in-out forwards;
    transition: 0.3s ease-in-out;
}

.swiper-slide-active .hero-content-left p {
    animation: fadeUp 1s ease-in-out forwards;
    transition: 0.3s ease-in-out;
}

.swiper-slide-active .hero-content-left .btn_box {
    animation: fadeUp 1.2s ease-in-out forwards;
    transition: 0.3s ease-in-out;
}

.swiper-slide-active .hero-content-right .hero-img img {
    animation: fadeUp 0.6s ease-in-out forwards;
}

.swiper-slide-active .hero-content-right .hero-cart-img .shoping-card {
    animation: fadeUp 0.8s ease-in-out forwards;
}

.swiper-slide-active .hero-content-right .hero-cart-img .rating-card {
    animation: fadeUp 1s ease-in-out forwards;
}

.swiper-slide-active .hero-content-right .hero-cart-img .check-card {
    animation: fadeUp 1.2s ease-in-out forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LOG-IN BTN START */
.log-in-btn {
    position: relative;
    display: block;
    overflow: hidden;
}

.log-in-btn:hover span {
    color: #fff !important;
}

.log-in-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #E25748;
    overflow: hidden;
    z-index: -1;
    transition: 0.3s;
}

.log-in-btn:hover::after {
    width: 100%;
}

/* LOG-IN BTN END */
/* HERO-BTN START */
.hero-slide-btn {
    width: 58px;
    height: 58px;
    line-height: 58px;
    text-align: center;
    background-color: transparent;
    border: 2px solid #E25748 !important;
    border-radius: 5px;
    display: block;
}

.hero-slide-btn:hover i {
    color: #fff;
}

.hero-slide-btn i {
    font-size: 22px;
    /*color: #F2AD4A;*/
    color: #000;
    position: relative;
    top: -2px;
}

.hero-slide-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #E25748;
    overflow: hidden;
    z-index: -1;
    transition: 0.3s;
}

.hero-slide-btn:hover::before {
    width: 100%;
    color: #fff !important;
}

.hero-slide-btn:hover::before i {
    width: 100%;
}

/* HERO-BTN END */
/* BTN-BOX START */
.btn_box {
    height: 65px;
}

.btn_box a {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    width: 230px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #c35000;
    line-height: 24px;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
}

.btn_box a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #E25748;
    z-index: -1;
    transition: 0.3s;
}

.btn_box a:hover::before {
    width: 100%;
}

/* BTN-BOX END */
/* TIMMER-BTN START */
.timmer-btn {
    height: 52px;
}

.timmer-btn a {
    width: 160px !important;
}

.timmer-btn a::before {
    background-color: #fff;
}

.timmer-btn a:hover {
    color: #343C55;
}

/* TIMMER-BTN END */
/* SOLID-BTN START */
.btn-solid {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 40px;
    color: #fff;
    background-color: #F2AD4A;
    border-radius: 30px;
    display: inline-block;
}

.btn-solid:hover {
    color: #fff;
    background-color: #E25748;
}

.ev-btn-solid {
    font-size: 16px;
    padding: 16px 40px;
}

/* SOLID-BTN END */
/* BLOG-BTN START */
.blog-btn {
    height: 55px;
}

.blog-btn a {
    background-color: #E25748 !important;
    width: 190px;
}

.blog-btn a::before {
    background-color: #F2AD4A !important;
}

/* BLOG-BTN END */
/* BORDER-BTN START */
.border-btn a {
    background-color: transparent !important;
    border: 2px solid #fff !important;
}

/* BORDER-BTN END */
/* RECENT-BLOG-BTN START */
.recent-blog-btn a {
    height: 50px;
    width: 170px;
}

/* RECENT-BLOG-BTN END */
/* EV-TOP-COMMENT START */
.ev-top-content {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.ev-top-content span {
    font-size: 18px;
    font-weight: 700;
    color: #E25748;
    padding-bottom: 5px;
}

.ev-top-content h2 {
    padding-bottom: 10px;
}

.ev-top-content p {
    font-size: 21px;
}

/* EV-TOP-COMMENT END */
/* COMMON-BTN START */
.common-btn button {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    background-color: #E25748;
    color: #fff;
    width: 100%;
    height: 55px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.common-btn button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #F2AD4A;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.common-btn button:hover:before {
    width: 100%;
}

/* COMMON-BTN END */
/* COMMON-HERO START */
.ev-common-hero {
    background-color: #FFF7EC !important;
    height: 250px;
    margin-top: 0 !important;
    position: relative;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
}

.ev-common-hero .ev-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.ev-common-hero .ev-hero-content h2 {
    font-size: 60px;
    padding-bottom: 15px;
}

.ev-common-hero .ev-hero-content span {
    font-size: 16px;
    color: #717788;
}

.ev-common-hero .ev-hero-content span a {
    color: #717788;
}

.ev-common-hero .ev-hero-content span a:hover {
    color: #F2AD4A;
}

/* COMMON-HERO END */
/* VIEW-ALL START */
.view-all {
    padding-top: 50px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    padding-bottom: 3px;
    max-width: 90px;
    border-bottom: 2px solid #F2AD4A !important;
    margin: 0 auto;
    display: block;
}

.view-all:hover {
    color: #F2AD4A;
}

/* VIEW-ALL END */
/* VIEW-POPUP START */
.view-popup {
    position: relative;
    max-width: 450px;
    padding: 40px 30px;
    margin: 0 20px;
    transform: translateY(50%);
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
    margin: 0 auto;
    z-index: 99999;
}

.view-popup .popup-label {
    position: absolute;
    top: 0%;
    left: 88%;
    font-size: 16px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: block;
}

.view-popup .popup-label:hover {
    color: #fff;
    background-color: #F2AD4A;
}

.view-popup label {
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
}

.view-popup input {
    width: 100%;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    margin: 5px 0;
    border: 1px solid #EAE1D4 !important;
}

.view-popup .check-box {
    margin: 0;
}

.view-popup .check-box input {
    width: 20px;
}

.view-popup .check-box label {
    padding-left: 10px;
    margin-top: 0;
}

.view-popup button {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #343c55;
}

.view-popup button:hover {
    background-color: #F2AD4A;
}

.view-popup a {
    font-size: 14px;
    text-transform: lowercase !important;
    font-weight: 700;
    padding: 0;
}

.view-popup a:hover {
    color: #F2AD4A;
}

/* VIEW-POPUP END */
/* COMMON-WRAPPER START */
.comment-wrapper .comment-inner .comment-text .reply-btn {
    position: relative;
    z-index: 9;
    display: flex;
    text-align: center;
    justify-content: center;
    overflow: hidden;
}

.comment-wrapper .comment-inner .comment-text .reply-btn:hover {
    color: #fff;
}

.comment-wrapper .comment-inner .comment-text .reply-btn::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #F2AD4A;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    z-index: -1;
}

.comment-wrapper .comment-inner .comment-text .reply-btn:hover::after {
    width: 100%;
}

/* COMMON-WRAPPER START */
/* POPUP-BTN START */
.popup-btn .popup-link {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 14px !important;
    background-color: #F2AD4A;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
}

.popup-btn .popup-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #E25748;
    z-index: -1;
    transition: 0.3s;
}

.popup-btn .popup-link:hover::before {
    width: 100%;
}

/* POPUP-BTN END */
/* PRODUCT-STYLE START */
.product {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.4s ease-in-out;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    height: ;
}

.product .product-img {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.product .product-img img {
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.product .product-img .product-labels .ev-offer {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    background-color: #F2AD4A;
    padding: 4px 12px;
    border-radius: 4px;
}

.product .product-img .product-labels .ev-hot {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    background-color: #E25748;
    padding: 4px 12px;
    border-radius: 4px;
}

.product .product-img .p-option {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%);
    justify-content: center;
    opacity: -1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.3s ease-in-out;
}

.product .product-img .p-option ul {
    margin: 0 auto;
}

.product .product-img .p-option ul li {
    padding-left: 5px;
    padding-right: 5px;
    display: none;
}

.product .product-img .p-option ul li i {
    font-size: 16px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 100%;
    color: #fff;
    background-color: #F2AD4A;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
}

.product .product-img .p-option ul li i:hover {
    color: #fff;
    background-color: #E25748;
}

.product .product-img .p-option ul li:nth-child(1) {
    transition-delay: 100ms;
}

.product .product-img .p-option ul li:nth-child(2) {
    transition-delay: 200ms;
}

.product .product-img .p-option ul li:nth-child(3) {
    transition-delay: 300ms;
}

.product:hover .product-img img {
    transform: scale(1.05);
}

.product:hover .product-img .p-option {
    opacity: 1;
    bottom: 40% !important;
}

.product:hover .product-img .p-option ul li {
    display: block;
}

.product:hover .product-img .p-option {
    opacity: 1;
    bottom: 25px;
}

.product:hover .product-img .p-option ul li a i {
    display: block;
}

.product .product-text {
    padding: 30px;
    display: block;
    background-color: #fff;
}

.product .product-text .product-stars li i {
    font-size: 14px;
    color: #F2AD4A;
    padding-bottom: 8px;
}

.product .product-text .product-title {
    font-size: 21px;
    line-height: 30px;
}

.product .product-text .product-title a {
    padding-bottom: 5px;
}

.product .product-text .product-title a:hover {
    color: #F2AD4A;
}

.product .product-text span {
    font-size: 24px !important;
}

.product .product-text li:nth-child(1) span {
    color: #E25748;
    padding-right: 15px;
    font-weight: 700;
}

.product .product-text li:nth-child(2) span {
    font-size: 18px !important;
    text-decoration: line-through !important;
    color: #a3a8af;
    font-weight: 400 !important;
}

.product:hover {
    box-shadow: rgba(50, 50, 93, 0.15) 0px 13px 27px -5px, rgba(0, 0, 0, 0.07) 0px 8px 16px -8px;
}

.ev-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0%;
    background-color: rgba(255, 255, 255, 0.243);
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 99;
}

.ev-overlay:hover::before {
    width: 100%;
    height: 100%;
}

/* PRODUCT-STYLE END */
/* PRODUCT-TOP START */
.product-top {
    padding-bottom: 60px;
}

.product-top .ev-top-content {
    text-align: start;
    margin: 0;
    padding-bottom: 0;
}

/* PRODUCT-TOP END */
/* VIEW-ALL-TWO START */
.view-all-two {
    position: relative;
    font-size: 16px;
    color: #343C55 !important;
    text-transform: uppercase;
    font-weight: 700;
    padding: 9px 35px;
    margin-top: 10px;
    display: inline-flex;
    text-align: end;
    border: 2px solid #E25748 !important;
    border-radius: 30px;
    overflow: hidden;
    z-index: 9;
}

.view-all-two:hover {
    color: #fff !important;
}

.view-all-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    z-index: 999;
    background-color: #E25748;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.view-all-two:hover::before {
    width: 100%;
}

/* VIEW-ALL-TWO END */
/* COLLECTION-BTN START */
.collection-btn {
    margin-top: 40px;
}

/* COLLECTION-BTN END */
/* EV-PAGINATION START */
.ev-pagination ul li a {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #343C55;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #E25748 !important;
    margin-right: 15px;
    overflow: hidden;
    z-index: 9;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.ev-pagination ul li a i {
    color: #F2AD4A;
}

.ev-pagination ul li a:hover {
    color: #fff;
}

.ev-pagination ul li a:hover i {
    color: #fff;
}

.ev-pagination ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #F2AD4A !important;
    transition: 0.3s;
    z-index: -1;
}

.ev-pagination ul li a:hover::before {
    width: 100%;
}

/* EV-PAGINATION END */
/* BRAND-HEADING START */
.brand-heading {
    display: none;
}

/* BRAND-HEADING END */
/* PRO-COUNTER START */
.pro-counter {
    height: 100%;
    width: 120px;
    padding: 1px;
    border-radius: 5px;
    display: block;
    border: 1px solid #E5E5E5 !important;
}

.pro-counter button {
    height: 100%;
    display: block;
    width: 100%;
    font-size: 20px;
    color: #E25748;
    font-weight: 500;
    background-color: #fff;
    padding-bottom: 1px;
}

.pro-counter input {
    font-size: 20px;
    padding-left: 10px;
    height: 100%;
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 500;
    padding-bottom: 1px;
}

/* PRO-COUNTER END */
/* COUNT-FORM START */
.contuct-form {
    margin-top: 50px;
}

.contuct-form .form-text {
    padding-bottom: 20px;
}

.contuct-form .form-text h4 {
    font-size: 30px;
    color: #343c55;
    padding-bottom: 10px;
}

.contuct-form input {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #717788;
    height: 55px;
    padding: 20px;
    border: 1px solid #E5E5E5 !important;
    border-radius: 5px;
}

.contuct-form .input-textarea {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #717788;
    height: 180px;
    width: 100%;
    border: 1px solid #E5E5E5 !important;
    border-radius: 5px;
    padding: 20px;
}

/* COUNT-FORM END */
/* PRODUCT-SIZE START */
.product-size {
    margin: 20px 0;
}

.product-size li {
    margin-left: 20px;
}

.product-size li span {
    font-size: 18px;
    font-weight: 700;
}

.product-size li a {
    position: relative;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a3a8af !important;
    z-index: 1;
}

.product-size li a span {
    font-weight: 400;
}

.product-size li:hover a {
    color: #fff;
}

.product-size a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #E25748;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.product-size a:hover::before {
    width: 100%;
}

.product-size li:nth-child(1) {
    margin-left: 0;
    border: none !important;
}

/* PRODUCT-SIZE END */
/* PRODUCT-TEXT START */
.preview-text {
    display: -webkit-box;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-section .menu-fulter ul li .nav-link.active i {
    color: #E25748 !important;
}

/* PRODUCT-TEXT END */
/* COMMON-DROPDOWN START */
.dropdown {
    position: relative;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.dropdown span {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    line-height: 18px;
    color: #343c55;
}

.dropdown .filterBox {
    cursor: pointer;
}

.dropdown .filterBox .filterBtn {
    padding: 10px;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    max-width: 130px;
    font-weight: 700;
    color: #343c55;
    border: none;
    cursor: pointer !important;
    margin-right: 10px;
}

.dropdown .filter-list {
    padding: 15px 0;
    border-radius: 5px;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 9;
}

.dropdown .filter-list .link-item {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #343c55;
    font-weight: 700;
    padding: 6px 20px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.dropdown .filterBox::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 15px;
    width: 8px;
    height: 8px;
    border: 2px solid #333 !important;
    border-top: 2px solid #fff !important;
    border-right: 2px solid #fff !important;
    transform: rotate(-45deg);
    pointer-events: none;
    transition: 0.3s ease-in-out;
}

.dropdown .filterBox.active::before {
    top: 22px;
    transform: rotate(-225deg);
}

.dropdown .filterBox.active .filter-list {
    width: 100%;
    display: block !important;
}

/* COMMON-DROPDOWN END */
/* HEADER-SECTION START */
.header-section .top-bar {
    padding: 12px 15px;
    border-bottom: 1px solid #EAE1D4 !important;
}

.header-section .top-bar .top-bar-contact ul li {
    padding-right: 15px;
    display: block;
}

.header-section .top-bar .top-bar-contact ul li a {
    font-size: 16px;
    line-height: 16px;
    font-family: "Open Sans", sans-serif;
}

.header-section .top-bar .top-bar-contact ul li a i {
    margin-right: 8px;
    color: #C21F46;
}

.header-section .top-bar .top-bar-contact ul li a:hover {
    color: #C21F46;
}

.header-section .top-bar .top-bar-contact ul li:nth-child(2) a {
    padding-left: 15px;
    border-left: 1px solid #717788 !important;
    display: block;
}

.header-section .top-bar .top-bar-contact ul li:nth-child(3) a {
    padding-left: 15px;
    border-left: 1px solid #717788 !important;
    display: block;
}

.header-section .top-bar .top-bar-social .view-switcher li {
    position: relative;
}

.header-section .top-bar .top-bar-social .view-switcher li span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    padding-left: 15px;
    padding-bottom: 20px;
}

.header-section .top-bar .top-bar-social .view-switcher li span i {
    font-size: 12px;
    padding-left: 5px;
    padding-right: 20px;
    border-right: 1px solid #343C55 !important;
}

.header-section .top-bar .top-bar-social .view-switcher li .evani-curency {
    position: absolute;
    width: 100%;
    top: 100%;
    width: 90px;
    margin-top: 11px;
    background-color: #fff;
    border-top: 2px solid #C21F46 !important;
    display: none;
    z-index: 9999999;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.header-section .top-bar .top-bar-social .view-switcher li .evani-curency li a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 10px !important;
    display: block;
}

.header-section .top-bar .top-bar-social .view-switcher li .evani-curency li a:hover {
    color: #C21F46;
}

.header-section .top-bar .top-bar-social .view-switcher li .evani-curency li:hover {
    background-color: antiquewhite;
}

.header-section .top-bar .top-bar-social .view-switcher li:hover .evani-curency {
    display: block;
}

.header-section .top-bar .top-bar-social .view-switcher li:nth-child(1) span {
    padding-left: 5px;
}

.header-section .top-bar .top-bar-social .social-icon li {
    padding-left: 10px;
}

.header-section .top-bar .top-bar-social .social-icon a i {
    font-size: 16px;
}

.header-section .top-bar .top-bar-social .social-icon li:nth-child(1) {
    padding-left: 15px;
}

.header-section .top-bar .top-bar-social .social-icon li:nth-child(1) a i {
    color: #3E5998;
}

.header-section .top-bar .top-bar-social .social-icon li:nth-child(1) a i:hover {
    color: #F2AD4A;
}

.header-section .top-bar .top-bar-social .social-icon li:nth-child(2) a i {
    color: #1DA1F2;
}

.header-section .top-bar .top-bar-social .social-icon li:nth-child(2) a i:hover {
    color: #F2AD4A;
}

.header-section .top-bar .top-bar-social .social-icon li:nth-child(3) a i {
    color: #0077B5;
}

.header-section .top-bar .top-bar-social .social-icon li:nth-child(3) a i:hover {
    color: #F2AD4A;
}

.header-section .top-bar .top-bar-social .social-icon li:nth-child(4) a i {
    color: #C21F46;
}

.header-section .top-bar .top-bar-social .social-icon li:nth-child(4) a i:hover {
    color: #F2AD4A;
}

.header-section .header-middle {
    padding: 0 15px;
}

.header-section .header-middle .evani-brand a img {
    /*width: 148px;*/
    width: 100px;
}

.header-section .header-middle .inner-wrapper ul .search-popup {
    display: none;
}

.header-section .header-middle .inner-wrapper ul .search-popup a i {
    color: #343C55;
}

.header-section .header-middle .inner-wrapper ul .search-popup a i:hover {
    color: #F2AD4A;
}

.header-section .header-middle .inner-wrapper ul li {
    /*padding-left: 20px;*/
    /*padding-top: 25px;*/
    /*padding-bottom: 25px;*/
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
}

.header-section .header-middle .inner-wrapper ul li a {
    font-size: 14px;
    /*font-size: 16px;*/
    font-weight: 600;
    text-transform: uppercase;
}

.header-section .header-middle .inner-wrapper ul li a i {
    color: #F2AD4A;
}

.header-section .header-middle .inner-wrapper ul li .log-in {
    position: relative;
    /*padding: 8px 30px;*/
    padding: 7px 26px;
    border-radius: 30px;
    border: 1px solid #C21F46 !important;
}

.header-section .header-middle .inner-wrapper ul li .log-in i {
    display: none;
}

.header-section .header-middle .inner-wrapper ul li .log-in:hover {
    color: #F2AD4A;
}

.header-section .header-middle .inner-wrapper ul li .popup-wraper {
    position: fixed;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(52, 60, 85, 0.56);
    top: 0%;
    left: 0%;
    opacity: 0;
    z-index: 999999;
    display: none;
    padding: 0 20px !important;
}

.header-section .header-middle .inner-wrapper ul li .popup-wraper .view-popup {
    text-align: left !important;
}

.header-section .header-middle .inner-wrapper ul li .popup-wraper1 {
    position: fixed;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(52, 60, 85, 0.56);
    top: 0%;
    left: 0%;
    display: block;
    opacity: 0;
    z-index: 999999;
    display: none;
    padding: 0 20px !important;
}

.header-section .header-middle .inner-wrapper ul li .popup-wraper1 .view-popup {
    text-align: left !important;
}

.header-section .header-middle .inner-wrapper ul li .popup-wraper2 {
    position: fixed;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(52, 60, 85, 0.56);
    top: 0%;
    left: 0%;
    opacity: 0;
    z-index: 999999;
    display: none;
    padding: 0 20px !important;
}

.header-section .header-middle .inner-wrapper ul li .popup-wraper2 .view-popup {
    text-align: left !important;
}

.header-section .header-middle .inner-wrapper ul li .popup-wraper.active {
    display: block;
    opacity: 1;
    z-index: 9999;
}

.header-section .header-middle .inner-wrapper ul li .popup-wraper1.active {
    display: block;
    opacity: 1;
    z-index: 9999;
}

.header-section .header-middle .inner-wrapper ul li .popup-wraper2.active {
    display: block;
    opacity: 1;
    z-index: 9999;
}

.header-section .header-middle .inner-wrapper ul li .close-btn.active {
    display: none !important;
    display: block;
}

.header-section .header-middle .inner-wrapper ul li .sign-up:hover {
    color: #F2AD4A;
}

.header-section .header-middle .inner-wrapper ul .product-cart {
    position: relative;
}

.header-section .header-middle .inner-wrapper ul .product-cart .cart-icon {
    margin-right: 22px;
}

.header-section .header-middle .inner-wrapper ul .product-cart .cart-icon span {
    font-size: 10px;
    position: absolute;
    top: 4px;
    color: #fff;
    margin-left: 3px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    border-radius: 100%;
    text-align: center;
    background-color: #C21F46;
}

.header-section .header-middle .inner-wrapper ul .product-cart:hover .view-cart {
    display: block;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart {
    position: absolute;
    right: 0;
    width: 300px;
    padding: 20px;
    top: 100%;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 9999999 !important;
    display: none;
    overflow-y: auto;
    max-height: 400px;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .cart-title {
    padding-bottom: 15px;
    border-bottom: 1px solid #EAE1D4 !important;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .cart-title span {
    font-size: 14px;
    font-weight: 600;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .cart-title a {
    font-size: 14px;
    padding: 0;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .cart-title a:hover {
    color: #F2AD4A;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .product-item {
    padding: 15px 0;
    border-bottom: 1px solid #EAE1D4 !important;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .product-item .product-inner {
    text-align: left !important;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .product-item .product-inner a {
    font-size: 14px;
    padding: 0;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .product-item .product-inner a:hover {
    color: #F2AD4A;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .product-item .product-inner span {
    font-size: 14px;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .product-item .product-img {
    position: relative;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .product-item .product-img img {
    width: 75px;
    height: auto;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .product-item .product-img span {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 100%;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .product-item .product-img span:hover {
    background-color: #F2AD4A;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .product-item .product-img span:hover i {
    color: #fff;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .product-item .product-img span i {
    font-size: 12px;
    color: #343C55;
    font-weight: 700;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .sub-total {
    margin: 15px 0;
}

.header-section .header-middle .inner-wrapper ul .product-cart .view-cart .sub-total span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

.header-section .header-middle .inner-wrapper ul li:nth-child(2) {
    padding-left: 0;
}

.header-section .header-middle .evani-search-form .search-product {
    position: relative;
    width: 350px;
    display: flex;
}

.header-section .header-middle .evani-search-form .search-product input {
    font-size: 14px;
    height: 48px;
    width: 100%;
    padding: 0px 20px;
    border-radius: 30px;
    border: 1px solid #D3D3D3 !important;
}

.header-section .header-middle .evani-search-form .search-product button {
    background-color: #fff;
    justify-content: center;
    position: absolute;
    right: 20px;
}

.header-section .header-middle .evani-search-form .search-product button i {
    font-size: 16px;
}

.header-section .header-middle .evani-search-form .search-product button i:hover {
    color: #F2AD4A;
}

.header-section .header-middle .evani-search-form input:focus {
    border: 1px solid #F2AD4A !important;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li > a:hover {
    color: red !important;
    display: block;
}

.header-section .item-right a {
    height: 55px;
    line-height: 50px;
    padding: 0px 20px !important;
    border-radius: 0 8px 8px 0;
}

.header-section .item-right a:hover {
    background: #C21F46;
    height: 100%;
}

/* HEADER-SECTION END */
/* STICKY-HEADER START */
.fixed-header #d-hide {
    display: none !important;
}

.fixed-header .sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    left: inherit !important;
    z-index: 999999;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.fixed-header .sticky-header .mobile-menu-trigger {
    top: 25px !important;
}

.fixed-header .sticky-header-two {
    padding-bottom: 25px;
}

/* STICKY-HEADER END */
/* HEADER-SECTION-TWO START */
.header-section-two .search-popup .view-popup {
    transform: translateY(100%);
}

.header-section-two .search-popup .view-popup .la-search-pr {
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.header-section-two .search-popup .view-popup .search-product input {
    font-size: 14px;
    height: 55px;
}

.header-section-two .search-popup .view-popup .search-product button {
    height: 55px;
    width: 20%;
}

.header-section-two .inner-wrapper ul li:nth-child(1) {
    display: block !important;
}

.header-section-two .inner-wrapper ul li:nth-child(2) {
    padding-left: 20px !important;
}

.input-btn-two {
    position: relative;
    font-size: 16px;
    color: #343C55 !important;
    text-transform: uppercase;
    font-weight: 700;
    padding: 9px 35px;
    margin-top: 10px;
    text-align: end;
    border: 2px solid #E25748 !important;
    border-radius: 30px;
    overflow: hidden;
    display: inline-flex;
    z-index: 99999;
}

.input-btn-two input {
    height: 100%;
    width: 100%;
    font-size: 16px;
}

.input-btn-two .input-submit-two {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.input-btn-two:hover {
    color: #fff !important;
}

.input-btn-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    z-index: 999;
    background-color: #E25748;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.input-btn-two:hover::before {
    width: 100%;
}

.header-section-two .mega-menu-wrapper .wrapper-items .item-left .nav-menu .menu-items li a.nav-link:hover {
    /*color: #F2AD4A !important;*/
    color: #c35000 !important;
}

.header-section-two .mega-menu-wrapper .wrapper-items .item-left .nav-menu .menu-items li a.nav-link.active {
    color: #c35000 !important;
}

/* HEADER-SECTION-TWO END */
/* MAIN-MENU START */
.mega-menu-wrapper {
    /*padding: 0 15px;*/
}

.header-section .wrapper-items {
    background-color: #E25748;
    display: flex;
    height: 50px;
    align-items: center;
    border-radius: 5px;
}

.header-section .item-left {
    flex: 0 80% !important;
    z-index: 99 !important;
    height: 50px;
}

.header-section .item-right {
    flex: 0 20% !important;
    height: 50px;
    display: flex;
    justify-content: flex-end;
}

.header-section .item-right a {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff !important;
    padding-right: 15px;
    transition: color 0.3s ease;
}

.header-section .item-right a:hover {
    color: #fff !important;
}

.header-section .item-right a i {
    padding-right: 10px;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li {
    display: inline-block;
    line-height: 50px;
    height: 50px;
    display: table-cell;
    border-right: 1px solid #E77467 !important;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li > a {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    height: 50px;
    /*line-height: 50px;*/
    line-height: 23px;
    padding: 0px 25px;
    color: #fff;
    transition: color 0.3s ease;
    display: block;
}

.header-section .mega-menu-wrapper .nav-menu ul li:nth-child(1) a {
    border-radius: 5px 0 0 5px;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li > a.active {
    background-color: #C21F46;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li > a:hover {
    color: #fff !important;
    background-color: #C21F46;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li > a i {
    font-size: 12px;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li:hover > a {
    color: #fff !important;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu {
    position: absolute;
    background-color: #ffffff;
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    transition: all 0.2s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 500;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu > ul > li {
    line-height: 1;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu > ul > li > a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .single-column-menu {
    min-width: 280px;
    max-width: 350px;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
    line-height: 1;
    display: block;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    padding: 8px 0;
    display: inline-block;
    font-size: 15px;
    transition: color 0.3s ease;
}

.header-section-two .mega-menu-wrapper .wrapper-items .item-left .nav-menu .menu-items li .nav-link i {
    opacity: 0;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu-column-4 {
    max-width: 1185px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 15px;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 25%;
    padding: 0 15px;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu-column-4 > .list-item ul {
    margin-bottom: 12px !important;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
    font-size: 16px;
    color: #ea4636;
    font-weight: 500;
    line-height: 1;
    padding: 10px 0;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
    text-align: center;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    margin-top: 10px;
}

.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu > ul > li > a:hover,
.header-section .item-right a:hover,
.header-section .mega-menu-wrapper .nav-menu > ul > li:hover > a {
    color: #ea4636;
}

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

/* MAIN-MENU END */
/* EV-COMMON-MENU START */
.ev-common-menu .wrapper-items .header-item .nav-menu .menu-items .menu-item {
    border: none !important;
}

.ev-common-menu .wrapper-items .header-item .nav-menu .menu-items .menu-item a {
    padding: 0 15px;
    color: #343C55 !important;
    background-color: #fff;
}

.ev-common-menu .wrapper-items .header-item .nav-menu .menu-items .menu-item a:hover {
    color: #F2AD4A !important;
}

/* EV-COMMON-MENU END */
/* HEADER-SECTION-TWO START */
.header-section-two .mega-menu-wrapper .wrapper-items {
    background-color: #fff !important;
    height: 70px;
}

.header-section-two .mega-menu-wrapper .wrapper-items .item-left {
    height: 70px;
}

.header-section-two .mega-menu-wrapper .wrapper-items .item-left .nav-menu .menu-items li {
    border: none !important;
}

.header-section-two .mega-menu-wrapper .wrapper-items .item-left .nav-menu .menu-items li .nav-link {
    color: #343C55 !important;
    display: block;
    padding: 8px !important;
    /*height: 90px;*/
    margin-top: 20px;
}

.header-section-two .mega-menu-wrapper .wrapper-items .item-left .nav-menu .menu-items li .nav-link:hover {
    background-color: #fff;
}

.header-section-two .mega-menu-wrapper .wrapper-items .item-left .nav-menu .menu-items li .nav-link.active {
    background-color: transparent;
}

.header-section-two .mega-menu-wrapper .wrapper-items .item-left .nav-menu .menu-items li:nth-child(5) .nav-link {
    padding-right: 0px !important;
}

/* HEADER-SECTION-TWO END */
/* HERO-SECTION START */
.hero-section {
    padding: 0;
    max-width: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fff;
    display: block;
}

.hero-section .container-fluid {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section .container-fluid .hero-slider {
    /*padding: 90px 0px;*/
}

.hero-section .container-fluid .hero-slider .hero-content-left .hero-inner {
    max-width: 585px;
    float: right;
}

.hero-section .container-fluid .hero-slider .hero-content-left .hero-inner h6 {
    color: #E25748;
    transition-delay: 200ms;
}

.hero-section .container-fluid .hero-slider .hero-content-left .hero-inner h1 {
    max-width: 550px;
    transition-delay: 400ms;
}

.hero-section .container-fluid .hero-slider .hero-content-left .hero-inner p {
    font-size: 24px;
    line-height: 32px;
    padding: 30px 0;
    overflow: hidden;
    display: block;
    transition-delay: 600ms;
}

.hero-section .container-fluid .hero-slider .hero-content-left .hero-inner .btn_box {
    transition-delay: 800ms;
}

.hero-section .container-fluid .hero-slider .hero-content-right .hero-inner {
    position: relative;
    display: block;
}

.hero-section .container-fluid .hero-slider .hero-content-right .hero-inner .hero-img {
    width: 100%;
    height: 100%;
}

.hero-section .container-fluid .hero-slider .hero-content-right .hero-inner .hero-img img {
    max-width: 100%;
}

.hero-section .container-fluid .hero-slider .hero-content-right .hero-inner .hero-cart-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.hero-section .container-fluid .hero-slider .hero-content-right .hero-inner .hero-cart-img .shoping-card {
    position: absolute;
    top: 10%;
    left: -5%;
    max-width: 30%;
    transition-delay: 200ms;
}

.hero-section .container-fluid .hero-slider .hero-content-right .hero-inner .hero-cart-img .rating-card {
    position: absolute;
    bottom: -8%;
    left: -10%;
    max-width: 40%;
    transition-delay: 400ms;
}

.hero-section .container-fluid .hero-slider .hero-content-right .hero-inner .hero-cart-img .check-card {
    position: absolute;
    bottom: 8%;
    right: -10%;
    max-width: 50%;
    transition-delay: 600ms;
}

.hero-section .container-fluid .hero-slider .swiper-button-left {
    padding-right: 20px;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: "";
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: "";
}

/* HERO-SECTION END */
/* INTR0-SECTION START */
.intro-section {
    background-color: #E25748;
    display: block;
}

.intro-section .intro-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 70px;
}

.intro-section .intro-items .single-intro {
    text-align: center;
    padding: 20px;
}

.intro-section .intro-items .single-intro .intro-icons {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: #E25748;
    border: 1px solid #fff !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
}

.intro-section .intro-items .single-intro .intro-icons .single-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    background: #c35000;
}

.intro-section .intro-items .single-intro .intro-text h5 {
    color: #fff;
    padding-top: 20px;
}

.intro-section .intro-items .single-intro .intro-text p {
    color: #fff;
    padding-top: 8px;
}

.intro-section .intro-items .single-intro:hover .intro-icons {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px 4px;
}

.intro-section .intro-items .single-intro:hover .intro-icons .single-icon {
    background-color: #E25748;
}

/*  INTR0-SECTION END */
/* CATEGORIES-SECTION START */
.categories-section {
    padding-bottom: 50px;
}

.categories-section .categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.categories-section .categories-grid .single-categorie .categorie-link {
    position: relative;
}

.categories-section .categories-grid .single-categorie .categorie-link .categorie-img {
    overflow: hidden;
    border-radius: 5px;
    z-index: -1;
}

.categories-section .categories-grid .single-categorie .categorie-link .categorie-img img {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
}

.categories-section .categories-grid .single-categorie .categorie-link:hover img {
    transform: scale(1.1);
}

.categories-section .categories-grid .single-categorie .categorie-link .categorie-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 200px;
    padding: 20px;
    border-radius: 5px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8509803922);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
    z-index: 9;
}

.categories-section .categories-grid .single-categorie .categorie-link .categorie-text h5 {
    opacity: 1;
    z-index: 8;
}

.categories-section .categories-grid .single-categorie .categorie-link .categorie-text span {
    font-size: 14px;
}

.categories-section .categories-grid .single-categorie .categorie-link:hover {
    color: #343C55;
}

.categories-section .categories-grid .single-categorie .categorie-link:hover .categorie-text {
    background-color: #fff;
}

/* CATEGORIES-SECTION END */
/* COLLECTION-SECTION START */
.collection-section {
    padding-top: 50px;
}

.collection-section .collection-items .collection-column {
    column-count: 3;
    column-gap: 30px;
    margin: auto;
    width: 100%;
    text-align: center;
}

.collection-section .collection-items .collection-column .single-collection {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
}

.collection-section .collection-items .collection-column .single-collection a:hover {
    color: #343C55 !important;
}

.collection-section .collection-items .collection-column .single-collection a .collection-img {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.collection-section .collection-items .collection-column .single-collection a .collection-img img {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
}

.collection-section .collection-items .collection-column .single-collection a .collection-inner {
    position: absolute;
    z-index: 10 !important;
}

.collection-section .collection-items .collection-column .single-collection a .mens-collection {
    max-width: 120px;
    top: 30px;
    right: 30px;
    text-align: end;
    z-index: 99;
}

.collection-section .collection-items .collection-column .single-collection a .mens-collection h6 {
    padding-bottom: 8px;
}

.collection-section .collection-items .collection-column .single-collection a .mens-collection span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 10px;
    color: #fff;
    background-color: #E25748;
    border-radius: 5px;
}

.collection-section .collection-items .collection-column .single-collection a .shirt-collection {
    top: 30px;
    left: 30px;
    max-width: 120px;
    text-align: left;
    z-index: 99;
}

.collection-section .collection-items .collection-column .single-collection a .bags-collection {
    bottom: 30px;
    left: 30px;
    max-width: 120px;
    text-align: left;
    z-index: 99;
}

.collection-section .collection-items .collection-column .single-collection a .w-showes-collection {
    top: 30px;
    left: 30px;
    text-align: left;
    z-index: 99;
}

.collection-section .collection-items .collection-column .single-collection a .w-showes-collection .limited-time {
    max-width: 110px;
}

.collection-section .collection-items .collection-column .single-collection a .w-showes-collection .limited-time span {
    font-size: 12px;
    font-weight: 700;
    color: #E25748;
}

.collection-section .collection-items .collection-column .single-collection a .w-showes-collection .limited-time h6 {
    color: #fff;
}

.collection-section .collection-items .collection-column .single-collection a .w-showes-collection .offer {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    width: 70px;
    height: 70px;
    text-align: center;
    float: right;
    background-color: #E25748;
    padding: 15px;
    margin-left: 20px;
    border-radius: 100%;
    display: block;
}

.collection-section .collection-items .collection-column .single-collection a .time-collection {
    bottom: 30px;
    left: 30px;
    text-align: left;
    z-index: 99;
}

.collection-section .collection-items .collection-column .single-collection a .time-collection span {
    color: #fff;
    width: 100%;
}

.collection-section .collection-items .collection-column .single-collection a .time-collection .ends-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    margin-bottom: 25px;
    display: block;
}

.collection-section .collection-items .collection-column .single-collection a .time-collection .timer {
    display: flex;
    width: 50%;
}

.collection-section .collection-items .collection-column .single-collection a .time-collection .timer li {
    padding-right: 10px;
}

.collection-section .collection-items .collection-column .single-collection a .time-collection .timer li span {
    font-size: 21px;
    font-weight: 700;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #F2AD4A;
    border-radius: 5px;
    display: block;
}

.collection-section .collection-items .collection-column .single-collection a .time-collection .timer li p {
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
    display: block;
}

.collection-section .collection-items .collection-column .single-collection a .leaghter-collection {
    bottom: 30px;
    left: 30px;
    max-width: 160px;
    text-align: left;
    z-index: 9;
}

.collection-section .collection-items .collection-column .single-collection a .leaghter-collection span {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    width: 70px;
    height: 70px;
    text-align: center;
    float: right;
    background-color: #E25748;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 100%;
    display: block;
}

.collection-section .collection-items .collection-column .single-collection a .leaghter-collection h6 {
    color: #fff;
    margin-top: 20px;
}

.collection-section .collection-items .collection-column .single-collection a .woman-collection {
    bottom: 30px;
    right: 30px;
    text-align: end;
    max-width: 110px;
    z-index: 10;
}

.collection-section .collection-items .collection-column .single-collection a .woman-collection span {
    font-size: 12px;
    font-weight: 700;
    color: #E25748;
    text-transform: uppercase;
}

.collection-section .collection-items .collection-column .single-collection a::before {
    border-radius: 10px;
    z-index: 1;
}

.collection-section .collection-items .collection-column .single-collection:hover a img {
    transform: scale(1.1);
}

/* COLLECTION-SECTION END */
/* PRODUCT-SECTION START */
.product-section {
    background-color: #F0F4F7;
}

.product-section .menu-fulter {
    padding-bottom: 50px;
}

.product-section .menu-fulter ul li {
    padding: 0 20px;
    text-align: center;
}

.product-section .menu-fulter ul li a {
    font-size: 18px;
    color: #343C55;
    background-color: transparent !important;
    font-weight: 700;
}

.product-section .menu-fulter ul li a:hover {
    color: #E25748;
}

.product-section .menu-fulter ul li a.active {
    color: #E25748;
}

.product-section .ev-products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

/* PRODUCT-SECTION END */
/* FEATURED-PRODUCT-SECTION START */
.featured-product-section {
    overflow: hidden !important;
}

.featured-product-section .pr-featured-left h6 {
    color: #E25748;
}

.featured-product-section .pr-featured-left h2 {
    font-size: 60px;
    padding-bottom: 10px;
}

.featured-product-section .pr-featured-left ul {
    padding: 20px 0;
}

.featured-product-section .pr-featured-left ul li span {
    font-size: 30px;
    line-height: 38px;
}

.featured-product-section .pr-featured-left ul li:nth-child(1) span {
    font-size: 48px;
    line-height: 58px;
    color: #E25748;
    font-weight: 600;
    padding-right: 20px;
}

.featured-product-section .pr-featured-left ul li:nth-child(2) span {
    color: #a3a8af;
    text-decoration: line-through !important;
}

.featured-product-section .pr-featured-right .featured-img1 {
    width: 450px;
    text-align: end;
    background-image: url(../images/index-1/featured/shape-bg.png);
}

.featured-product-section .pr-featured-right .pr-featured-img {
    text-align: center;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.featured-product-section .pr-featured-right .pr-featured-img img {
    justify-content: center;
    -webkit-animation: mover 1.5s infinite alternate;
    animation: mover 1.5s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50px);
    }
}

/* FEATURED-PRODUCT-SECTION END */
/* FEATURED-COLLECTION-SECTION START */
.featured-collection-section {
    padding: 0;
}

.featured-collection-section .container-fluid {
    padding: 0;
    position: relative;
}

.featured-collection-section .collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-collection-section .collection-grid .featured-collection-left {
    position: relative;
}

.featured-collection-section .collection-grid .featured-collection-left .featured-collection-img {
    overflow: hidden;
}

.featured-collection-section .collection-grid .featured-collection-left .featured-collection-img img {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
}

.featured-collection-section .collection-grid .featured-collection-left .summer-collection {
    max-width: 360px;
    max-height: 320px;
    position: absolute;
    bottom: 50px;
    right: 60px;
    display: block;
    z-index: 9;
}

.featured-collection-section .collection-grid .featured-collection-left .summer-collection span {
    font-size: 24px;
    line-height: 30px;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #E25748;
}

.featured-collection-section .collection-grid .featured-collection-left .summer-collection h2 {
    line-height: 54px;
    text-align: end;
    padding-top: 50px;
}

.featured-collection-section .collection-grid .featured-collection-right {
    position: relative;
}

.featured-collection-section .collection-grid .featured-collection-right .featured-collection-img {
    overflow: hidden;
}

.featured-collection-section .collection-grid .featured-collection-right .featured-collection-img img {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
}

.featured-collection-section .collection-grid .featured-collection-right .featured-collection-text {
    position: absolute;
    top: 80px;
    left: 80px;
    max-width: 350px;
    z-index: 9;
}

.featured-collection-section .collection-grid .featured-collection-right .featured-collection-text span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 5px;
    color: #fff;
    background-color: #F2AD4A;
    padding-bottom: 5px;
}

.featured-collection-section .collection-grid .featured-collection-right .featured-collection-text h2 {
    padding: 10px 0;
}

.featured-collection-section .collection-grid .featured-collection-right .featured-collection-text h5 {
    color: #E25748;
}

.featured-collection-section .collection-grid .featured-collection-left:hover img {
    transform: scale(1.05);
}

.featured-collection-section .collection-grid .featured-collection-right:hover img {
    transform: scale(1.05);
}

/* FEATURED-COLLECTION-SECTION END */
/* POPULAR-PRODUCT-SECTION START */
.popular-product-section {
    padding-top: 120px;
    padding-bottom: 220px;
    background-color: #F0F4F7;
}

.popular-product-section .product-slider {
    padding-bottom: 90px;
}

.popular-product-section .product-slider .single-slide {
    background-color: #fff;
    border-radius: 10px;
}

span.swiper-pagination-bullet-active {
    outline: 1px solid #e25645 !important;
}

span.swiper-pagination-bullet {
    padding: 7px;
    margin: 0 10px !important;
    background: #e25645;
    outline: 1px solid rgba(226, 86, 69, 0);
    outline-offset: 4px;
}

/* POPULAR-PRODUCT-SECTION END */
/* BRAND-SECTION START */
.brand-section {
    padding: 0 10px;
    margin: -105px 0;
}

.brand-section .brand-slider {
    background-color: #c35000;
    height: 220px;
    padding: 20px 30px;
    border-radius: 10px;
}

.brand-section .brand-slider .brand-slide {
    display: flex;
    align-items: center;
}

.brand-section .brand-slider .brand-slide .brand-img {
    margin: 0 auto;
}

.brand-section .brand-slider .brand-slide .brand-img img {
    max-width: 100%;
}

/* BRAND-SECTION END */
/* TESTIMONIAL-SECTION START */
.testimonial-section {
    padding-top: 220px;
    padding-bottom: 120px;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}

.testimonial-section .container {
    max-width: 1240px;
}

.testimonial-section .container .ev-top-content {
    padding-bottom: 20px;
    text-align: left;
    margin: 0 15px;
}

.testimonial-section .container .ev-top-content h2 {
    line-height: 55px;
}

.testimonial-section .container .testimonial-items {
    padding: 30px 10px;
    overflow: inherit;
}

.testimonial-section .container .testimonial-items .single-testimonial {
    padding: 50px 40px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.testimonial-section .container .testimonial-items .single-testimonial:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    margin-top: -10px;
}

.testimonial-section .container .testimonial-items .single-testimonial .testimonial-author {
    padding-bottom: 40px;
}

.testimonial-section .container .testimonial-items .single-testimonial .testimonial-author .author-bio .author-img img {
    width: 100%;
}

.testimonial-section .container .testimonial-items .single-testimonial .testimonial-author .author-bio .author-text {
    padding-left: 15px;
    line-height: 20px;
}

.testimonial-section .container .testimonial-items .single-testimonial .testimonial-author .author-bio .author-text span {
    font-size: 16px;
    line-height: 20px;
    color: #717788;
    font-family: "Open Sans", sans-serif;
    padding-top: 3px;
    display: block;
}

.testimonial-section .container .testimonial-items .single-testimonial .testimonial-text p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-section .container .testimonial-items .swiper-button-prev {
    position: absolute;
    left: inherit;
    right: 80px;
    top: -74px;
}

.testimonial-section .container .testimonial-items .swiper-button-prev i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.testimonial-section .container .testimonial-items .swiper-button-next {
    position: absolute;
    top: -74px;
    left: inherit;
}

.testimonial-section .container .testimonial-items .swiper-button-next i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* TESTIMONIAL-SECTION END */
/* NEWS-SECTION START */
.news-section {
    background-color: #F5FAFD;
    padding: 120px 20px;
}

.news-section .news-slider {
    padding-bottom: 80px;
}

.news-section .news-slider .single-post {
    border-radius: 10px;
    background-color: #fff;
    display: block;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.news-section .news-slider .single-post .news-img {
    overflow: hidden;
}

.news-section .news-slider .single-post .news-img img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.news-section .news-slider .single-post .inner-article {
    padding: 30px;
}

.news-section .news-slider .single-post .inner-article span {
    font-size: 16px;
    color: #a3a8af;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 400;
    line-height: 20px;
    padding-bottom: 5px;
    display: block;
}

.news-section .news-slider .single-post .inner-article h6 a {
    font-size: 18px;
    line-height: 24px;
}

.news-section .news-slider .single-post .inner-article h6 a:hover {
    color: #F2AD4A;
    padding: 0;
}

.news-section .news-slider .single-post:hover img {
    transform: scale(1.1);
}

/* NEWS-SECTION END */
/* HERO-SECTION-TWO START  */
.hero-section-two {
    background-color: #F8F4EF;
    background-image: none !important;
}

.hero-section-two .hero-slider-two {
    padding-bottom: 170px !important;
}

/* HERO-SECTION-TWO END */
/* INTRO-SECTION-TWO START  */
.intro-section-two {
    background-color: #fff;
}

.intro-section-two .intro-items {
    margin-top: -140px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.intro-section-two .intro-items .single-intro {
    background-color: #E25748;
    text-align: start;
    padding: 26px 40px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.intro-section-two .intro-items .single-intro .intro-icons {
    margin: 0;
    top: -70px;
    background-color: #fff;
}

.intro-section-two .intro-items .single-intro .intro-text {
    margin-top: -55px;
}

.intro-section-two .intro-items .single-intro .intro-text h5 {
    max-width: 150px;
    line-height: 32px;
}

.intro-section-two .intro-items .single-intro:hover {
    background-color: #F2AD4A;
}

.intro-section-two .intro-items .single-intro:hover .intro-icons {
    background-color: #f1efed;
}

/* INTRO-SECTION-TWO END */
/* CATAGORIES-SECTION-TWO START */
.categories-section-two {
    padding: 50px 20px;
}

.categories-section-two .categories-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.categories-section-two .categories-items .single-categorie .categorie-link .categorie-img {
    overflow: hidden;
    border-radius: 100%;
}

.categories-section-two .categories-items .single-categorie .categorie-link .categorie-img img {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
}

.categories-section-two .categories-items .single-categorie .categorie-link .categorie-text {
    padding-left: 20px;
}

.categories-section-two .categories-items .single-categorie .categorie-link .categorie-text h5 {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.categories-section-two .categories-items .single-categorie .categorie-link .categorie-text span {
    font-size: 14px;
}

.categories-section-two .categories-items .single-categorie .categorie-link:hover {
    color: #343C55;
}

.categories-section-two .categories-items .single-categorie .categorie-link:hover h5 {
    color: #F2AD4A;
}

.categories-section-two .categories-items .single-categorie .categorie-link:hover img {
    transform: scale(1.1);
}

/* CATAGORIES-SECTION-TWO END */
/* COLLECTION-SECTION-TWO START  */
.collection-section-two .collection-item {
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
}

.collection-section-two .collection-item .ev-overlay {
    overflow: hidden;
    position: relative;
    overflow: hidden;
}

.collection-section-two .collection-item .ev-overlay .collection-img img {
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.collection-section-two .collection-item .ev-overlay .collection-inner {
    position: absolute;
    z-index: 9;
}

.collection-section-two .collection-item .ev-overlay .collection-inner .ev-offer {
    position: relative;
    width: 90px;
    height: 90px;
    background-color: #E25748;
    border-radius: 100%;
    text-align: center;
}

.collection-section-two .collection-item .ev-overlay .collection-inner .ev-offer span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 18px;
    padding: 20px;
    margin: 0 auto;
}

.collection-section-two .collection-item .ev-overlay:hover {
    color: #343C55;
}

.collection-section-two .collection-item:hover .collection-img img {
    transform: scale(1.1);
}

.collection-section-two .girls-collection {
    margin-right: 10px;
    right: 0;
}

.collection-section-two .girls-collection .collection-inner {
    justify-content: right;
    max-width: 280px;
    top: 50px;
    right: 50px;
    text-align: end;
}

.collection-section-two .girls-collection .collection-inner h3 {
    font-size: 30px;
    line-height: 38px;
    color: #fff;
}

.collection-section-two .girls-collection .collection-inner .ev-offer {
    margin-top: 30px;
}

.collection-section-two .mens-collection {
    margin-left: 5px;
}

.collection-section-two .mens-collection .collection-inner {
    top: 50px;
    left: 50px;
    max-width: 300px;
}

.collection-section-two .mens-collection .collection-inner h3 {
    font-size: 30px;
    line-height: 38px;
    color: #fff;
    margin-bottom: 15px;
}

.collection-section-two .mens-collection .collection-inner span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 5px 10px;
    background-color: #F2AD4A;
    text-transform: uppercase;
    border-radius: 5px;
}

.collection-section-two .cosmetics-collection {
    margin-right: 10px;
}

.collection-section-two .cosmetics-collection .collection-inner {
    bottom: 30px;
    left: 30px;
    max-width: 200px;
}

.collection-section-two .cosmetics-collection .collection-inner span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #E25748;
}

.collection-section-two .cosmetics-collection .collection-inner h3 {
    margin-top: 5px;
}

.collection-section-two .sunglass-collection {
    margin-left: 5px;
    margin-right: 5px;
}

.collection-section-two .sunglass-collection .collection-inner {
    top: 30px;
    right: 30px;
    max-width: 200px;
    text-align: end;
}

.collection-section-two .sunglass-collection .collection-inner h3 {
    color: #fff;
}

.collection-section-two .mens-fashion {
    margin-left: 10px;
}

.collection-section-two .mens-fashion .collection-inner {
    bottom: 30px;
    right: 30px;
    max-width: 250px;
    text-align: end;
}

/* COLLECTION-SECTION-TWO END  */
/* FEATURED-SECTION-ONE START */
.featured-section-two {
    padding: 110px 15px;
}

.featured-section-two .single-featured {
    position: relative;
}

.featured-section-two .single-featured .featured-title {
    position: absolute;
    top: 0px;
    left: 0;
    margin-top: 13px;
    z-index: -1;
}

.featured-section-two .single-featured .featured-section-two-slider {
    z-index: 9;
    padding-top: 90px;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-product {
    margin-bottom: 20px;
    display: block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-product .featured-img a {
    overflow: hidden;
    display: block;
    z-index: -1;
    border-radius: 5px;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-product .featured-img a img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-product .product-info {
    padding-left: 20px;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-product .product-info .star {
    font-size: 14px;
    color: #F2AD4A;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-product .product-info h6 {
    font-size: 18px;
    padding-top: 3px;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease-in-out;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-product .product-info h6 a:hover {
    color: #F2AD4A;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-product .product-info ul li:nth-child(1) span {
    font-size: 21px;
    font-weight: 600;
    color: #E25748;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-product .product-info ul li:nth-child(2) span {
    font-size: 16px;
    text-decoration: line-through !important;
    padding-left: 10px;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-product:hover .featured-img a img {
    transform: scale(1.1);
}

.featured-section-two .single-featured .featured-section-two-slider .featured-product:hover .product-info h6 {
    color: #F2AD4A;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-product:hover .product-info ul li:nth-child(2) span {
    color: #343C55;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-slide-btn {
    position: absolute;
    top: -10px;
    left: 85%;
    font-size: 12px !important;
    margin-top: 20px;
    font-weight: 700;
    color: #E25748;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: flex;
    align-items: center;
    border: 1px solid #E25748 !important;
    border-radius: 100%;
    overflow: hidden;
    z-index: 9;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-slide-btn:hover {
    color: #fff;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-slide-btn1 {
    left: 73%;
    font-size: 14px !important;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-slide-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #E25748;
    width: 0%;
    height: 100%;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease-in-out;
    z-index: -1;
}

.featured-section-two .single-featured .featured-section-two-slider .featured-slide-btn:hover::before {
    content: "";
    position: absolute;
    background-color: #E25748;
    width: 100%;
}

/* FEATURED-SECTION-TWO END  */
/* PRODUCT-TIMMER-SECTION START */
.prduct-timmer-section {
    padding-bottom: 40px;
}

.prduct-timmer-section .row {
    background-color: #E25748;
    border-radius: 30px;
    padding: 100px 0;
}

.prduct-timmer-section .row .prduct-timmer-left .timmer-inner {
    padding-left: 80px;
    max-width: 550px;
}

.prduct-timmer-section .row .prduct-timmer-left .timmer-inner h6 {
    font-size: 18px;
    color: #F2AD4A;
}

.prduct-timmer-section .row .prduct-timmer-left .timmer-inner h2 {
    font-size: 42px;
    line-height: 48px;
    color: #fff;
}

.prduct-timmer-section .row .prduct-timmer-left .timmer-inner .timmer-item {
    text-align: center;
}

.prduct-timmer-section .row .prduct-timmer-left .timmer-inner .timmer-item span {
    display: block;
    color: #fff;
}

.prduct-timmer-section .row .prduct-timmer-left .timmer-inner .p-timmer {
    margin-top: 30px;
}

.prduct-timmer-section .row .prduct-timmer-left .timmer-inner .p-price {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.prduct-timmer-section .row .prduct-timmer-left .timmer-inner .p-price li {
    padding-right: 20px;
}

.prduct-timmer-section .row .prduct-timmer-left .timmer-inner .p-price li:nth-child(1) span {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
}

.prduct-timmer-section .row .prduct-timmer-left .timmer-inner .p-price li:nth-child(2) span {
    font-size: 24px;
    color: #fff;
    text-decoration: line-through !important;
}

.prduct-timmer-section .row .prduct-timmer-left .timmer-inner .p-timmer li span:nth-child(1) {
    font-size: 42px;
    font-weight: 600;
    width: 80px;
    height: 80px;
    margin-right: 15px;
    background-color: #F2AD4A;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prduct-timmer-section .row .prduct-timmer-left .timmer-inner .p-timmer li span:nth-child(2) {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 10px;
    margin-right: 15px;
}

.prduct-timmer-section .row .prduct-timmer-right .timmer-img img {
    margin-top: -150px;
    max-width: 100%;
    -webkit-animation: mover 1.5s infinite alternate;
    animation: mover 1.5s infinite alternate;
}

/* PRODUCT-TIMMER-SECTION END */
/* product-SECTION-TWO START */
.product-section-two .product-top {
    padding-bottom: 60px;
}

.product-section-two .product-top .ev-top-content {
    text-align: start;
    margin: 0;
    padding-bottom: 0;
}

/* product-SECTION-TWO END  */
/* TESTIMONIAL-SECTION-TWO START */
.testimonial-section-two {
    padding: 90px 15px;
}

.testimonial-section-two .ev-top-content {
    margin: 0 auto !important;
    text-align: center !important;
    padding-bottom: 50px !important;
}

.testimonial-section-two .testimonial-slider-two {
    padding-bottom: 90px !important;
    overflow: hidden !important;
}

.testimonial-section-two .testimonial-slider-two .single-testimonial {
    padding-top: 40px;
    box-shadow: rgba(17, 17, 26, 0.06) 0px 0px 14px !important;
}

.testimonial-section-two .testimonial-slider-two .single-testimonial .testimonial-top-icon {
    padding: 30px 0;
}

.testimonial-section-two .testimonial-slider-two .single-testimonial .testimonial-top-icon ul li {
    padding-top: 40px;
}

.testimonial-section-two .testimonial-slider-two .single-testimonial .testimonial-top-icon ul li i {
    font-size: 18px;
    color: #F2AD4A;
}

.testimonial-section-two .testimonial-slider-two .single-testimonial .testimonial-author {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* TESTIMONIAL-SECTION-TWO END  */
/* UPDATE-SECTION START */
.updates-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}

.updates-section .ev-top-content span {
    color: #fff;
}

.updates-section .ev-top-content h2 {
    color: #fff;
}

.updates-section .ev-top-content p {
    color: #fff;
}

.updates-section .get-update {
    max-width: 570px;
    margin: 0 auto;
}

.updates-section .get-update .update-form {
    height: 65px;
    background-color: #fff;
    border-radius: 5px !important;
}

.updates-section .get-update .update-form input {
    font-size: 16px;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border-radius: 5px !important;
}

.updates-section .get-update .update-form .update-btn {
    position: relative;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 15px;
    color: #fff;
    width: 40%;
    height: 100%;
    background-color: #E25748;
    border-radius: 0 5px 5px 0 !important;
    display: block;
    z-index: 9;
    overflow: hidden;
}

.updates-section .get-update .update-form .update-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #F2AD4A;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.updates-section .get-update .update-form .update-btn:hover::before {
    width: 100%;
    right: 0;
}

.updates-section::before {
    content: "";
    background-color: rgba(54, 75, 211, 0.82);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* UPDATE-SECTION END */
/* RECENT-NEWS-SECTION START */
.recent-news-section {
    padding-bottom: 180px;
}

.recent-news-section .recent-news-left {
    margin-right: 10px;
}

.recent-news-section .recent-news-left .recent-news-content {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.recent-news-section .recent-news-left .recent-news-content .news-img img {
    width: 100%;
    display: block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.recent-news-section .recent-news-left .recent-news-content .recent-news-article {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.recent-news-section .recent-news-left .recent-news-content .recent-news-article span {
    color: #fff;
}

.recent-news-section .recent-news-left .recent-news-content .recent-news-article h5 {
    padding-top: 15px;
    padding-right: 40px;
}

.recent-news-section .recent-news-left .recent-news-content .recent-news-article h5 a {
    color: #fff;
}

.recent-news-section .recent-news-left .recent-news-content .recent-news-article h5 a:hover {
    color: #F2AD4A;
}

.recent-news-section .recent-news-left .recent-news-content .recent-news-article ul li:nth-child(1) span {
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    padding-right: 20px;
    border-right: 1px solid #fff !important;
    display: block;
}

.recent-news-section .recent-news-left .recent-news-content .recent-news-article ul li:nth-child(2) span {
    font-size: 16px;
    line-height: 18px;
    padding-left: 20px;
    border-right: none !important;
    display: block;
}

.recent-news-section .recent-news-content::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(17, 33, 227, 0.1803921569);
}

.recent-news-section .recent-news-content:hover .news-img img {
    transform: scale(1.1);
}

.recent-news-section .recent-news-right .news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.recent-news-section .recent-news-right .news-grid .single-news .news-img {
    width: 100%;
    position: relative;
    z-index: 9;
    display: block;
}

.recent-news-section .recent-news-right .news-grid .single-news .news-img img {
    width: 100%;
    display: block;
}

.recent-news-section .recent-news-right .news-grid .single-news .news-img .news-article {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    align-items: center;
    display: inline-flex;
    border-radius: 10px;
    border: 1px solid rgba(149, 152, 157, 0.3882352941) !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.recent-news-section .recent-news-right .news-grid .single-news .news-img .news-article h6 {
    font-size: 14px;
    color: #E25748;
    display: block;
}

.recent-news-section .recent-news-right .news-grid .single-news .news-img .news-article h5 {
    font-size: 18px;
    line-height: 24px;
}

.recent-news-section .recent-news-right .news-grid .single-news .news-img .news-article span {
    font-size: 16px;
    color: #a3a8af;
}

.recent-news-section .recent-news-right .news-grid .single-news:hover .news-article {
    background-color: rgba(0, 33, 253, 0.2196078431);
    z-index: 999999;
}

.recent-news-section .recent-news-right .news-grid .single-news:hover .news-article h6 {
    color: #fff;
}

.recent-news-section .recent-news-right .news-grid .single-news:hover .news-article h5 a {
    color: #fff !important;
}

.recent-news-section .recent-news-right .news-grid .single-news:hover .news-article span {
    color: #fff;
}

.recent-news-section .recent-news-right .news-grid:nth-child(1) {
    margin-bottom: 20px;
}

.recent-news-section .recent-news-right .single-news .news-article .inner-article {
    position: relative;
    width: 100%;
    height: 100%;
}

.recent-news-section .recent-news-right .single-news .news-article .inner-text {
    position: absolute;
    left: 20px;
    top: 20px;
    right: 20px;
}

.recent-news-section .recent-news-right .single-news .news-article .inner-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.recent-news-section .recent-news-right .news-grid .single-news .news-img img {
    border-radius: 10px;
    padding: 2px;
}

/* RECENT-NEWS-SECTION END */
/* HER0-SLIDER-THREE START */
.hero-section-two .hero-slider-three {
    padding: 140PX 0 !important;
}

/* HER0-SLIDER-THREE END */
/* INTRO-SECTION-THREE START  */
.intro-three-section {
    padding: 20px 15px;
}

.intro-three-section .intro-three-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.intro-three-section .intro-three-grid .single-intro-three {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.intro-three-section .intro-three-grid .single-intro-three .intro-three-img {
    border-radius: 10px;
    overflow: hidden;
}

.intro-three-section .intro-three-grid .single-intro-three .intro-three-img img {
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.intro-three-section .intro-three-grid .single-intro-three .intro-three-inner {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 230px;
}

.intro-three-section .intro-three-grid .single-intro-three .intro-three-inner h4 {
    line-height: 32px;
    margin-bottom: 10px;
}

.intro-three-section .intro-three-grid .single-intro-three .intro-three-inner span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    background-color: #E25748;
}

.intro-three-section .intro-three-grid .single-intro-three .intro-three-inner p {
    font-size: 14px;
    font-weight: 700;
    color: #E25748;
}

.intro-three-section .intro-three-grid .single-intro-three .intro-three-inner .m-offer {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: end;
    text-align: center;
    width: 70px;
    height: 70px;
    padding: 20px;
    margin-top: 10px;
    background-color: #E25748;
    border-radius: 100%;
}

.intro-three-section .intro-three-grid .single-intro-three .intro-btn {
    position: absolute;
    bottom: 30px;
    left: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #E25748 !important;
}

.intro-three-section .intro-three-grid .single-intro-three .intro-btn:hover {
    color: #E25748;
}

.intro-three-section .intro-three-grid .single-intro-three:hover .intro-three-img img {
    transform: scale(1.1);
}

/* INTRO-SECTION-THREE END */
/* PRODUCT-SECTION-THREE START  */
.product-section-three {
    background-color: #fff;
}

.product-section-three .product {
    box-shadow: rgba(50, 50, 93, 0.15) 0px 13px 27px -5px, rgba(0, 0, 0, 0.07) 0px 8px 16px -8px !important;
}

/* PRODUCT-SECTION-THREE END */
/* SOCIAL-SECTION START */
.social-section .social-grid {
    position: relative;
    display: grid;
    /*grid-template-columns: 1fr 1fr 1fr 1fr;*/
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.social-section .social-grid .single-social {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.social-section .social-grid .single-social .social-img {
    width: 100%;
}

.social-section .social-grid .single-social .social-img img {
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.social-section .social-grid .single-social .social-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2588235294);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
    z-index: 9;
}

.social-section .social-grid .single-social .social-img:hover::before {
    width: 100%;
    height: 100%;
}

.social-section .social-grid .single-social:hover .social-img img {
    transform: scale(1.1);
}

.social-section .social-grid .instra-social {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 260px;
    height: 260px;
    background-color: rgba(255, 255, 255, 0.89);
    opacity: 0.8;
    border-radius: 100%;
    z-index: 9;
    transition: 0.3s ease-in-out;
}

.social-section .social-grid .instra-social:hover {
    opacity: 0.96;
}

.social-section .social-grid .instra-social .social-inner {
    position: relative;
    width: 100%;
    top: 25%;
}

.social-section .social-grid .instra-social .social-inner h5 {
    padding-bottom: 10px;
}

.social-section .social-grid .instra-social .social-inner i {
    font-size: 30px;
    color: #E25748;
    padding-bottom: 20px;
}

.social-section .social-grid .instra-social .social-inner a {
    font-size: 16px;
    text-transform: uppercase;
    color: #E25748;
    padding-top: 20px;
}

.social-section .social-grid .instra-social .social-inner::before {
    content: "";
    position: absolute;
    text-align: center;
    top: 50%;
}

/* SOCIAL-SECTION END */
/* FEATURED-SECTION-THREE START  */
.featured-section-three {
    padding: 50px 15px;
}

.featured-section-three .featured-three-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.featured-section-three .featured-three-grid .single-featured-three {
    padding: 40px 30px;
    border: 1px solid #E5E5E5 !important;
    border-radius: 10px;
}

.featured-section-three .featured-three-grid .single-featured-three .featured-three-text {
    padding-left: 20px;
}

.featured-section-three .featured-three-grid .single-featured-three .featured-three-text p {
    padding-top: 5px;
}

/* FEATURED-SECTION-THREE END */
/* TESTIMONIAL-SECTION-THREE START */
.testimonial-section-three {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.testimonial-section-three .container-fluid {
    position: relative;
    padding: 50px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 2;
    z-index: 1;
}

.testimonial-section-three .container-fluid .testimonial-author .testimonial-left {
    position: absolute;
    top: 15%;
    left: 0;
    width: 50%;
    height: 100%;
}

.testimonial-section-three .container-fluid .testimonial-author .testimonial-left img {
    width: 100%;
}

.testimonial-section-three .container-fluid .testimonial-author .testimonial-left .author-one {
    position: absolute;
    top: 0%;
    left: 20%;
}

.testimonial-section-three .container-fluid .testimonial-author .testimonial-left .author-two {
    position: absolute;
    top: 20%;
    left: 36%;
}

.testimonial-section-three .container-fluid .testimonial-author .testimonial-left .author-three {
    position: absolute;
    top: 40%;
    left: 8%;
}

.testimonial-section-three .container-fluid .testimonial-author .testimonial-left .author-four {
    position: absolute;
    top: 65%;
    left: 35%;
}

.testimonial-section-three .container-fluid .testimonial-author .testimonial-right {
    position: absolute;
    top: 15%;
    right: 0;
    width: 50%;
    height: 100%;
    text-align: right;
}

.testimonial-section-three .container-fluid .testimonial-author .testimonial-right .author-one {
    position: absolute;
    top: 0%;
    right: 20%;
}

.testimonial-section-three .container-fluid .testimonial-author .testimonial-right .author-two {
    position: absolute;
    top: 20%;
    right: 0%;
}

.testimonial-section-three .container-fluid .testimonial-author .testimonial-right .author-three {
    position: absolute;
    top: 40%;
    right: 30%;
}

.testimonial-section-three .container-fluid .testimonial-author .testimonial-right .author-four {
    position: absolute;
    top: 65%;
    right: 10%;
}

.testimonial-section-three .container-fluid .tes-three-slider {
    padding-bottom: 80px;
    max-width: 750px;
    background-color: transparent;
}

.testimonial-section-three .container-fluid .tes-three-slider .tes-three-single-item .tes-three-content {
    text-align: center;
}

.testimonial-section-three .container-fluid .tes-three-slider .tes-three-single-item .tes-three-content p {
    font-size: 22px;
    line-height: 32px;
    font-style: italic;
    max-width: 650px;
    padding: 30px 0;
    margin: 0 auto;
}

.testimonial-section-three .container-fluid .tes-three-slider .tes-three-single-item .tes-three-content .authoi-info {
    justify-content: center;
    margin: 0 auto;
}

.testimonial-section-three .container-fluid .tes-three-slider .tes-three-single-item .tes-three-content .authoi-info .author-text {
    text-align: left;
    padding-left: 15px;
}

.testimonial-section-three .container-fluid .tes-three-slider .tes-three-single-item .tes-three-content .authoi-info .author-text span {
    font-size: 14px;
}

.testimonial-section-three .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer !important;
}

/* TESTIMONIAL-SECTION-THREE END */
/* FEATURED-PRODUCT-SECTION-THREE START  */
.featured-product-section-two {
    background-color: #FFF7EC;
    position: relative;
}

.featured-product-section-two .featured-product-section-two-slider {
    padding-bottom: 60px;
    overflow: inherit !important;
}

.featured-product-section-two .featured-product-section-two-slider .pr-featured-right .pr-featured-img {
    padding-top: 40px;
}

.featured-product-section-two .featured-product-section-two-slider .pr-featured-right .pr-featured-img img {
    width: 100%;
}

.featured-product-section-two .featured-product-pagination {
    position: absolute;
    left: inherit;
    right: 70px !important;
    padding-left: 100px;
    top: 42%;
    width: 20px;
}

.featured-product-section-two span.swiper-pagination-bullet {
    margin: 10px 0px !important;
    background-color: #F2AD4A;
    z-index: 99999;
}

.featured-product-section-two .swiper-pagination-bullet-active {
    background-color: #E25748 !important;
}

/* FEATURED-PRODUCT-SECTION-THREE START */
/* SHOP-PRODUCT-SECTION START */
.shop-product-section {
    background-color: #fff;
    padding: 90px 20px;
}

.shop-product-section .before-shop-loop {
    padding-bottom: 40px;
}

.shop-product-section .before-shop-loop .showing-items p {
    padding-right: 30px;
    margin-bottom: 0;
}

.shop-product-section .before-shop-loop .showing-items p span {
    font-weight: 600;
}

.shop-product-section .before-shop-loop .product-views-buttons .product-list {
    z-index: 999999;
}

.shop-product-section .before-shop-loop .product-views-buttons .product-list li {
    padding-left: 15px;
}

.shop-product-section .before-shop-loop .product-views-buttons .product-list li a i {
    font-size: 20px;
    font-weight: 600;
    color: #343C55 !important;
    display: block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.shop-product-section .before-shop-loop .product-views-buttons .product-list li .nav-link.active i {
    color: #C2C5CE !important;
}

.shop-product-section .menu-fulter {
    padding-bottom: 0px;
}

.shop-product-section .menu-fulter ul li {
    padding: 0px;
}

.shop-product-section .product-views-buttons .product-list li {
    padding-left: 0px !important;
}

.shop-product-section .products .product {
    border: 2px solid #E25748 !important;
    box-shadow: rgba(149, 157, 165, 0.106) 0px 8px 24px;
    height: 100%;
}

.shop-product-section .products .product:hover {
    box-shadow: rgba(50, 50, 93, 0.15) 0px 13px 27px -5px, rgba(0, 0, 0, 0.07) 0px 8px 16px -8px;
}

.shop-product-section .view-all-two {
    margin-top: 50px;
}

/* SHOP-PRODUCT-SECTION START */
/* SINGLE-SHOP-SECTION START */
.single-shop-section {
    background-color: #fff;
    padding: 120px 20px;
}

.single-shop-section .shop-product-sidebar .sidebar-categories {
    margin-bottom: 5px;
}

.single-shop-section .shop-product-sidebar .sidebar-categories ul li {
    padding: 5px 0;
}

.single-shop-section .shop-product-sidebar .sidebar-categories ul li a {
    font-size: 16px;
}

.single-shop-section .shop-product-sidebar .sidebar-categories ul li a:hover {
    color: #F2AD4A;
}

.single-shop-section .shop-product-sidebar .prise-range {
    margin-bottom: 20px;
}

.single-shop-section .shop-product-sidebar .prise-range .price-range-slider {
    width: 100%;
    float: left;
    padding: 10px 0px;
    padding-top: 20px;
}

.single-shop-section .shop-product-sidebar .prise-range .price-range-slider .range-value {
    margin: 10px 0;
    display: inline-flex;
}

.single-shop-section .shop-product-sidebar .prise-range .price-range-slider .range-value input {
    width: 100%;
    background: none;
    color: #000;
    font-size: 16px;
    font-weight: initial;
    padding-left: 10px;
    box-shadow: none;
    border: none;
}

.single-shop-section .shop-product-sidebar .prise-range .price-range-slider .range-bar {
    border: none;
    background: rgba(0, 0, 0, 0.1803921569);
    height: 3px;
    /*width: 96%;*/
    margin-left: 0px;
    border-radius: 5px;
}

.single-shop-section .shop-product-sidebar .prise-range .price-range-slider .range-bar .ui-slider-range {
    background: #F2AD4A;
    z-index: 9;
}

.single-shop-section .shop-product-sidebar .prise-range .price-range-slider .range-bar .ui-slider-handle {
    border: none;
    border-radius: 25px;
    background: #E25748;
    border: 2px solid #333;
    height: 10px;
    width: 10px;
    top: -0.3em;
    left: 5px;
    cursor: pointer;
    z-index: 9;
}

.single-shop-section .shop-product-sidebar .prise-range .price-range-slider .range-bar .ui-slider-handle + span {
    background: #E25748;
    z-index: 9;
}

.single-shop-section .shop-product-sidebar .prise-range li {
    padding: 5px 0;
}

.single-shop-section .shop-product-sidebar .prise-range li span {
    font-size: 16px;
}

.single-shop-section .shop-product-sidebar .product-size {
    margin-bottom: 20px;
}

.single-shop-section .shop-product-sidebar .product-size ul {
    margin-top: 10px;
}

.single-shop-section .shop-product-sidebar .product-size ul li {
    padding: 5px 0 !important;
    margin-left: 10px;
}

.single-shop-section .shop-product-sidebar .product-size ul li a {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #E5E5E5 !important;
}

.single-shop-section .shop-product-sidebar .product-size ul li a:hover {
    color: #fff;
    background-color: #E25748;
}

.single-shop-section .shop-product-sidebar .product-size ul li:nth-child(1) {
    margin-left: 10px;
}

.single-shop-section .shop-product-sidebar .product-color {
    margin-bottom: 22px;
}

.single-shop-section .shop-product-sidebar .product-color h6 {
    margin-top: 15px;
    padding-bottom: 8px;
}

.single-shop-section .shop-product-sidebar .product-color li {
    margin-right: 6px;
}

.single-shop-section .shop-product-sidebar .product-color li span {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 1px solid #a3a8af !important;
    display: block;
    cursor: pointer;
}

.single-shop-section .shop-product-sidebar .product-color .active-color span {
    border: 2px solid #F2AD4A !important;
}

.single-shop-section .shop-product-sidebar .product-color li:nth-child(1) span {
    background-color: #FF0017;
}

.single-shop-section .shop-product-sidebar .product-color li:nth-child(2) span {
    background-color: #00A2FF;
}

.single-shop-section .shop-product-sidebar .product-color li:nth-child(3) span {
    background-color: #233CE6;
}

.single-shop-section .shop-product-sidebar .product-color li:nth-child(4) span {
    background-color: #fff;
}

.single-shop-section .shop-product-sidebar .brand-name {
    margin-bottom: 12px;
}

.single-shop-section .shop-product-sidebar .brand-name ul {
    padding-top: 5px;
}

.single-shop-section .shop-product-sidebar .brand-name ul li {
    padding: 5px 0;
}

.single-shop-section .shop-product-sidebar .brand-name ul li a {
    font-size: 16px;
}

.single-shop-section .shop-product-sidebar .brand-name ul li a:hover {
    color: #F2AD4A;
}

.single-shop-section .shop-product-sidebar .shop-featured {
    margin-bottom: 10px;
}

.single-shop-section .shop-product-sidebar .shop-featured ul {
    padding-top: 5px;
}

.single-shop-section .shop-product-sidebar .shop-featured ul li {
    padding: 10px 0;
}

.single-shop-section .shop-product-sidebar .shop-featured ul li .single-featured .shop-featured-img {
    overflow: hidden;
    border-radius: 5px;
}

.single-shop-section .shop-product-sidebar .shop-featured ul li .single-featured .shop-featured-img a img {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
}

.single-shop-section .shop-product-sidebar .shop-featured ul li .single-featured .inner-text {
    margin-left: 10px;
}

.single-shop-section .shop-product-sidebar .shop-featured ul li .single-featured .inner-text h6 {
    font-size: 16px;
    line-height: 22px;
}

.single-shop-section .shop-product-sidebar .shop-featured ul li .single-featured .inner-text h6 a:hover {
    color: #F2AD4A;
}

.single-shop-section .shop-product-sidebar .shop-featured ul li .single-featured .inner-text span {
    font-size: 16px;
    font-weight: 700;
    color: #E25748;
}

.single-shop-section .shop-product-sidebar .shop-featured ul li:hover a img {
    transform: scale(1.1);
}

.single-shop-section .shop-product-sidebar .shop-featured ul li:hover a h6 {
    color: #F2AD4A;
}

.single-shop-section .before-shop-loop .product-items p span {
    font-weight: 600;
    color: #343C55;
}

.single-shop-section .menu-fulter {
    padding-bottom: 0;
}

.single-shop-section .menu-fulter .nav-item {
    padding: 0 !important;
}

.single-shop-section .products .product {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.single-shop-section .products .product .product-text .product-title {
    font-size: 18px;
}

.single-shop-section .products .product:hover {
    box-shadow: rgba(50, 50, 93, 0.15) 0px 13px 27px -5px, rgba(0, 0, 0, 0.07) 0px 8px 16px -8px;
}

.single-shop-section .ev-pagination {
    margin-top: 50px;
}

.section-wrapper {
    background: transparent;
    padding: 10px 0;
}

.accordion-wrapper {
    background: transparent;
    margin: auto;
}

.accordion-wrapper ul {
    position: relative;
}

.accordion-wrapper > ul > li {
    border-top: 1px solid #666;
}

.accordion-wrapper > ul > li:first-child {
    border-top: none;
}

.accordion-wrapper > ul > li:hover,
.accordion-active {
    background: transparent;
}

.accordion-wrapper > ul > li > a {
    color: #343C55;
    display: block;
    font-size: 13px;
}

.accordion-content > a:after {
    content: "\f067";
    font-family: FontAwesome;
    font-size: 12px;
    padding-right: 12px;
    position: absolute;
    right: 0;
}

.accordion-active > a:after {
    content: "\f068";
}

.accordion-wrapper ul ul {
    display: none;
}

.accordion-wrapper ul ul li {
    border-top: 1px solid #ddd;
}

.accordion-wrapper ul ul li:first-child {
    border-top: none;
}

.accordion-wrapper ul ul a {
    color: #343C55;
    display: block;
    font-size: 12px;
    padding: 0px 12px;
}

/* SINGLE-SHOP-SECTION END */
/* SINGLE-PRODUCT-SECTION START */
.single-product-section {
    padding-bottom: 50px;
}

.single-product-section .product-img-glarry {
    margin-right: 5px;
}

.single-product-section .product-img-glarry .product-glarry-slider {
    color: #fff;
}

.single-product-section .product-img-glarry .product-glarry-slider .swiper-container {
    width: 100%;
    height: 100%;
}

.single-product-section .product-img-glarry .slider__flex {
    display: flex;
    align-items: flex-start;
}

.single-product-section .product-img-glarry .slider__col {
    display: flex;
    flex-direction: column;
    width: 110px;
    margin-right: 15px;
}

.single-product-section .product-img-glarry .slider__prev:focus,
.single-product-section .product-img-glarry .slider__next:focus {
    outline: none;
}

.single-product-section .product-img-glarry .slider__thumbs {
    height: 500px;
}

.single-product-section .product-img-glarry .slider__thumbs .slider__image {
    transition: 0.25s;
    border-radius: 5px;
    height: 115px;
}

.single-product-section .product-img-glarry .slider__thumbs .slider__image:hover {
    opacity: 1;
}

.single-product-section .product-img-glarry .slider__thumbs .swiper-slide-thumb-active .slider__image {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    border-radius: 10px !important;
    opacity: 1;
}

.single-product-section .product-img-glarry .slider__images {
    height: 500px;
}

.single-product-section .product-img-glarry .slider__images .slider__image img {
    transition: 3s;
}

.single-product-section .product-img-glarry .slider__images .slider__image:hover img {
    transform: scale(1.1);
}

.single-product-section .product-img-glarry .slider__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.single-product-section .product-img-glarry .slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.single-product-section .product-summery {
    margin-left: 10px;
}

.single-product-section .product-summery .single-product-inner h6 {
    font-size: 15px;
}

.single-product-section .product-summery .single-product-inner h6 a {
    color: #E25748;
}

.single-product-section .product-summery .single-product-inner h6 a:hover {
    color: #F2AD4A;
}

.single-product-section .product-summery .single-product-inner h3 {
    line-height: 42px;
}

.single-product-section .product-summery .single-product-inner h3 a:hover {
    color: #F2AD4A;
}

.single-product-section .product-summery .single-product-inner .single-product-price {
    padding: 10px 0;
}

.single-product-section .product-summery .single-product-inner .single-product-price h3 {
    color: #E25748;
}

.single-product-section .product-summery .single-product-inner .single-product-price h4 {
    color: #a3a8af;
    font-weight: 500;
    text-decoration: line-through !important;
    margin-left: 10px;
}

.single-product-section .product-summery .single-product-inner .product-size li {
    margin-left: 5px;
}

.single-product-section .product-summery .single-product-inner .product-size li a {
    border: 1px solid #E5E5E5 !important;
}

.single-product-section .product-summery .single-product-inner .product-size li:nth-child(1) {
    margin-right: 15px;
}

.single-product-section .product-summery .single-product-inner .product-review {
    padding-bottom: 15px;
}

.single-product-section .product-summery .single-product-inner .product-review li i {
    font-size: 16px;
    color: #F2AD4A;
}

.single-product-section .product-summery .single-product-inner .product-review li a:hover {
    color: #F2AD4A;
}

.single-product-section .product-summery .single-product-inner .product-review .product-available span {
    font-size: 16px;
}

.single-product-section .product-summery .single-product-inner .product-review .product-available span:nth-child(1) {
    font-weight: 700;
}

.single-product-section .product-summery .single-product-inner .product-review .product-available span:nth-child(2) {
    padding-left: 10px;
    color: #E25748;
}

.single-product-section .product-summery .single-product-inner .product-review li:nth-child(6) a {
    font-size: 16px;
    margin-left: 20px;
}

.single-product-section .product-summery .single-product-inner .product-txt {
    margin-bottom: 25px;
}

.single-product-section .product-summery .single-product-inner .product-color li {
    padding-right: 5px;
}

.single-product-section .product-summery .single-product-inner .product-color li span {
    font-size: 18px;
    font-weight: 700;
}

.single-product-section .product-summery .single-product-inner .product-color li p {
    width: 20px;
    height: 20px;
    background-color: #E25748;
    margin-bottom: 0 !important;
    border-radius: 100%;
    cursor: pointer;
    display: block;
}

.single-product-section .product-summery .single-product-inner .product-color .active-color P {
    border: 2px solid #F2AD4A !important;
}

.single-product-section .product-summery .single-product-inner .product-color li:nth-child(1) {
    margin-right: 20px;
}

.single-product-section .product-summery .single-product-inner .product-color li:nth-child(2) p {
    background-color: #FF0017;
}

.single-product-section .product-summery .single-product-inner .product-color li:nth-child(3) p {
    background-color: #00A2FF;
}

.single-product-section .product-summery .single-product-inner .product-color li:nth-child(4) p {
    background-color: #233CE6;
}

.single-product-section .product-summery .single-product-inner .product-add-cart {
    flex-wrap: wrap;
}

.single-product-section .product-summery .single-product-inner .product-add-cart li {
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    justify-content: center;
}

.single-product-section .product-summery .single-product-inner .product-add-cart li a {
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 20px;
}

.single-product-section .product-summery .single-product-inner .product-add-cart .add-cart-btn {
    width: 200px;
}

.single-product-section .product-summery .single-product-inner .product-add-cart .add-cart-btn a {
    background-color: #E25748;
    border-radius: 5px;
    z-index: 9 !important;
}

.single-product-section .product-summery .single-product-inner .product-add-cart .add-cart-btn a i {
    padding-left: 5px;
    color: #fff !important;
}

.single-product-section .product-summery .single-product-inner .product-add-cart .add-cart-btn a::before {
    background-color: #F2AD4A;
    z-index: -1;
}

.single-product-section .product-summery .single-product-inner .product-add-cart .heart-btn {
    width: 50px;
}

.single-product-section .product-summery .single-product-inner .product-add-cart .heart-btn a:hover {
    color: #fff;
}

.single-product-section .product-summery .single-product-inner .product-add-cart .arrow-btn {
    width: 50px;
}

.single-product-section .product-summery .single-product-inner .product-add-cart .arrow-btn a:hover {
    color: #fff;
}

.single-product-section .product-summery .single-product-inner .product-add-cart li:nth-child(2) a {
    padding: 10px 20px;
}

.single-product-section .product-summery .single-product-inner .product-add-cart li:nth-child(2) a i {
    color: #E25748;
}

.single-product-section .product-summery .single-product-inner .product-add-cart li:nth-child(3) {
    padding: 1px;
}

.single-product-section .product-summery .single-product-inner .product-add-cart li:nth-child(3) a {
    color: #E25748;
    width: 50px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #E5E5E5 !important;
}

.single-product-section .product-summery .single-product-inner .product-add-cart li:nth-child(4) {
    padding: 1px;
}

.single-product-section .product-summery .single-product-inner .product-add-cart li:nth-child(4) a {
    color: #E25748;
    width: 50px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #E5E5E5 !important;
}

.single-product-section .product-summery .single-product-inner .product-tag {
    margin-top: 20px;
}

.single-product-section .product-summery .single-product-inner .product-tag h6 {
    color: #343C55;
    margin-right: 20px;
}

.single-product-section .product-summery .single-product-inner .product-tag li {
    padding-right: 10px;
}

.single-product-section .product-summery .single-product-inner .product-tag li a {
    font-size: 16px;
    font-weight: 500;
    color: #a3a8af;
}

.single-product-section .product-summery .single-product-inner .product-tag li a:hover {
    color: #F2AD4A;
}

.single-product-section .product-summery .single-product-inner .product-social {
    margin: 20px 0;
}

.single-product-section .product-summery .single-product-inner .product-social h6 {
    font-size: 18px;
    padding-right: 10px;
    color: #343C55;
}

.single-product-section .product-summery .single-product-inner .product-social li {
    padding-left: 15px;
}

.single-product-section .product-summery .single-product-inner .product-social li a i {
    font-size: 20px;
}

.single-product-section .product-summery .single-product-inner .product-social li a i:hover {
    color: #F2AD4A;
}

.single-product-section .product-summery .single-product-inner .product-social li:nth-child(1) {
    padding-left: 0;
}

.single-product-section .product-summery .single-product-inner .product-social li:nth-child(1) a i {
    color: #3E5998;
}

.single-product-section .product-summery .single-product-inner .product-social li:nth-child(1) a i:hover {
    color: #F2AD4A;
}

.single-product-section .product-summery .single-product-inner .product-social li:nth-child(2) a i {
    color: #1DA1F2;
}

.single-product-section .product-summery .single-product-inner .product-social li:nth-child(2) a i:hover {
    color: #F2AD4A;
}

.single-product-section .product-summery .single-product-inner .product-social li:nth-child(3) a i {
    color: #E25748;
}

.single-product-section .product-summery .single-product-inner .product-social li:nth-child(3) a i:hover {
    color: #F2AD4A;
}

.single-product-section .product-summery .single-product-inner .product-social li:nth-child(4) a i {
    color: #0077B5;
}

.single-product-section .product-summery .single-product-inner .product-social li:nth-child(4) a i:hover {
    color: #F2AD4A;
}

.single-product-section .product-tabs li {
    margin-right: 20px;
}

.single-product-section .product-tabs li a {
    font-size: 18px;
    font-weight: 700;
    color: #a3a8af;
}

.single-product-section .product-tabs li a.active {
    color: #343C55;
}

.single-product-section .product-tabs .menu-fulter {
    margin: 20px 0;
}

.single-product-section .product-tabs .product-discription p {
    padding-bottom: 20px;
}

.single-product-section .product-tabs .product-discription .single-product-features h6 {
    padding-bottom: 5px;
}

.single-product-section .product-tabs .product-discription .single-product-features li {
    padding: 5px 0;
}

.single-product-section .product-tabs .product-discription .single-product-features li i {
    font-size: 16px;
    margin-right: 10px;
    color: #E25748;
}

.single-product-section .product-tabs .product-discription .single-product-features li span {
    font-size: 16px;
    color: #a3a8af;
    font-weight: 500;
}

.single-product-section .product-tabs .product-information {
    border: 1px solid #E5E5E5 !important;
    padding: 25px;
    border-radius: 8px;
}

.single-product-section .product-tabs .product-information .product-info h3 {
    font-size: 24px;
    line-height: 32px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.single-product-section .product-tabs .product-information .product-info p {
    font-size: 16px;
    line-height: 24px;
}

.single-product-section .product-tabs .product-information .product-info .add-cart {
    position: relative;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 24px;
    padding: 10px 20px;
    background-color: #E25748;
    border-radius: 8px;
    overflow: hidden;
    z-index: 9;
}

.single-product-section .product-tabs .product-information .product-info .add-cart::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #F2AD4A;
    overflow: hidden;
    z-index: 8px;
    transition: 0.3s ease-in-out;
    z-index: -1;
}

.single-product-section .product-tabs .product-information .product-info .add-cart:hover::after {
    width: 100%;
}

.single-product-section .product-tabs .review-form {
    border: 1px solid #E5E5E5 !important;
    padding: 48px;
    padding-top: 45px;
    border-radius: 8px;
}

.single-product-section .product-tabs .review-form .comment-headding {
    padding-top: 0 !important;
}

.single-product-section .product-tabs .review-form .comment-headding h3 {
    line-height: 42px;
}

.single-product-section .product-tabs .review-form .inner-form {
    padding-top: 72px;
    display: block;
}

.single-product-section .product-tabs .review-form .inner-form h3 {
    padding-bottom: 24px;
}

.single-product-section .product-tabs .review-form .inner-form form input {
    font-size: 16px;
    line-height: 20px;
    padding: 12px 20px;
    font-weight: 500;
    color: #343C55;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #E5E5E5 !important;
    margin: 10px 0;
}

.single-product-section .product-tabs .review-form .inner-form form label {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #343C55;
    margin-top: 5px;
}

.single-product-section .product-tabs .review-form .inner-form form .user-comment textarea {
    font-size: 16px;
    line-height: 20px;
    padding: 12px 20px;
    font-weight: 500;
    color: #343C55;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #E5E5E5 !important;
    margin-top: 10px;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-rating {
    width: 100%;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-rating .rating-wrapper {
    position: relative;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-rating .rating-wrapper .inner-rating {
    font-size: 16px;
    line-height: 20px;
    padding: 12px 20px;
    font-weight: 500;
    color: #343C55;
    width: 100%;
    border-radius: 8px;
    width: 100%;
    border: 1px solid #E5E5E5 !important;
    margin: 10px 0;
    appearance: none;
    color: #717788;
    cursor: pointer;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-rating .rating-wrapper span {
    position: absolute;
    top: 42%;
    right: 20px;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-rating .rating-wrapper span i {
    font-size: 12px;
    color: #717788;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-review .review-container {
    width: 100%;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-review .star {
    background-color: transparent;
    border: 0;
    outline: 0;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-review .star .stararea {
    display: block;
    position: relative;
    color: #aaa;
    font-size: 3em;
    line-height: 50px;
    cursor: pointer;
    z-index: 10;
    text-align: center;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-review .star .stararea:before {
    width: 50px;
    height: 50px;
    content: "★";
    display: inline-block;
    color: #95a5a6;
    position: absolute;
    left: 0;
    top: -1px;
    opacity: 0;
    z-index: -1;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-review .star .stararea:after {
    width: 50px;
    height: 50px;
    content: "★";
    display: inline-block;
    color: #f1c40f;
    position: absolute;
    left: 0;
    top: -1px;
    opacity: 0;
    z-index: -2;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-review .star:hover .stararea {
    color: #999;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-review .star.active .stararea {
    -webkit-animation: starbackground 500ms 1;
    -moz-animation: starbackground 500ms 1;
    -o-animation: starbackground 500ms 1;
    animation: starbackground 500ms 1;
    animation-delay: 250ms;
    animation-fill-mode: forwards;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-review .star.active .stararea:before {
    -webkit-animation: staranimation 250ms 1;
    -moz-animation: staranimation 250ms 1;
    -o-animation: staranimation 250ms 1;
    animation: staranimation 250ms 1;
}

.single-product-section .product-tabs .review-form .inner-form form .overall-review .star.active .stararea:after {
    -webkit-animation: staranimation 350ms 1;
    -moz-animation: staranimation 500ms 1;
    -o-animation: staranimation 500ms 1;
    animation: staranimation 500ms 1;
    animation-delay: 250ms;
}

@-webkit-keyframes staranimation {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(2);
        top: -1px;
    }
}

@-moz-keyframes staranimation {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(2);
        top: -1px;
    }
}

@-o-keyframes staranimation {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(2);
        top: -1px;
    }
}

@keyframes staranimation {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(2);
        top: -1px;
    }
}

@-webkit-keyframes starbackground {
    0% {
        color: #aaaaaa;
    }
    100% {
        color: #f1c40f;
    }
}

@-moz-keyframes starbackground {
    0% {
        color: #aaaaaa;
    }
    100% {
        color: #f1c40f;
    }
}

@-o-keyframes starbackground {
    0% {
        color: #aaaaaa;
    }
    100% {
        color: #f1c40f;
    }
}

@keyframes starbackground {
    0% {
        color: #aaaaaa;
    }
    100% {
        color: #f1c40f;
    }
}

.single-product-section .product-tabs .review-form .inner-form form .submit-btn {
    position: relative;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 40px;
    margin: 10px 0;
    font-weight: 500;
    max-width: 200px;
    color: #fff;
    background-color: #E25748;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
}

.single-product-section .product-tabs .review-form .inner-form form .submit-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #F2AD4A;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    z-index: -1;
}

.single-product-section .product-tabs .review-form .inner-form form .submit-btn:hover::after {
    width: 100%;
}

.single-product-section .swiper-slide.swiper-slide-visible {
    cursor: pointer;
}

.single-product-section .product-img-glarry .slider__thumbs .slider__image {
    opacity: 0.85;
}

.single-product-section .product-img-glarry .slider__image {
    border-radius: 8px !important;
}

.single-product-slider {
    padding-bottom: 80px;
}

.single-product-section .product-tabs li .nav-link {
    padding-left: 0;
}

.single-product-section .product-tabs .review-form .comment-headding {
    padding-top: 20px;
    padding-bottom: 10px;
}

.single-product-section .product-tabs .review-form .review-comment label {
    font-size: 18px;
    font-weight: 600;
    width: 145px;
}

.single-product-section .product-tabs .review-form .review-container {
    padding-left: 5px;
}

/* SINGLE-PRODUCT-SECTION END */
/* SINGLE-POPULAR-PRODUCT-SECTION START */
.single-popular-product-section {
    padding-top: 0;
    padding-bottom: 120px;
    background-color: #fff;
}

.single-popular-product-section .heading-text {
    padding-bottom: 30px;
}

.single-popular-product-section .heading-text h3 {
    font-size: 24px;
}

.single-popular-product-section .products .product {
    border: 2px solid #E25748 !important;

    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.single-popular-product-section .products .product:hover {
    box-shadow: rgba(50, 50, 93, 0.15) 0px 13px 27px -5px, rgba(0, 0, 0, 0.07) 0px 8px 16px -8px;
}

.single-popular-product-section span.swiper-pagination-bullet {
    background: #F2AD4A;
    opacity: 1;
}

.single-popular-product-section span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #E25748;
}

/* SINGLE-POPULAR-PRODUCT-SECTION START */
/* SHOPPING-SECTION START */
.shopping-section {
    padding-bottom: 50px;
}

.shopping-section .t-head span {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0;
    display: block;
}

.shopping-section .pro-counter {
    height: 45px;
    border: 1px solid #E5E5E5 !important;
}

.shopping-section .cart-total {
    color: #F2AD4A;
    font-size: 17px;
    padding: 0 10px;
}

.shopping-section .cart-btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #fff;
    text-align: center;
    border-radius: 100%;
    border: 1px solid #E5E5E5 !important;
    display: block;
}

.shopping-section .cart-btn:hover {
    color: #fff;
    background-color: #E25748;
}

.shopping-section .shoping-cart-btn {
    padding-top: 40px;
}

.shopping-section .shoping-cart-btn .shoping-btn {
    height: 55px !important;
    display: flex;
    align-items: center;
}

.shopping-section .shoping-cart-btn .shoping-btn a {
    font-size: 16px;
    width: 250px;
    background-color: #E25748;
}

.shopping-section .shoping-cart-btn .shoping-btn a::before {
    background-color: #F2AD4A;
}

.shopping-section .shoping-btn-2:nth-child(1) {
    margin-right: 20px;
}

/* SHOPPING-SECTION END */
/* SHOPPING-SBTN START */
.shoping-btn-2 {
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 180px;
    padding: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease-in-out;
}

/* SHOPPING-SBTN END */
/* CALCULATE-SHOPPING-SECTION START */
.calculate-shipping {
    padding-top: 60px;
}

.calculate-shipping .calculate-item h5 {
    margin-bottom: 40px;
}

.calculate-shipping .calculate-item .select-item {
    margin: 15px 0;
    display: block;
}

.calculate-shipping .calculate-item .select-item h6 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 10px;
    width: 100px;
}

.calculate-shipping .calculate-item .select-wrapper {
    position: relative;
}

.calculate-shipping .calculate-item .select-wrapper span {
    position: absolute;
    top: 22px;
    right: 20px;
}

.calculate-shipping .calculate-item .select-wrapper span i {
    font-size: 12px;
    color: #717788;
}

.calculate-shipping .calculate-item .select-option {
    font-size: 16px;
    color: #717788;
    padding: 0 15px;
    width: 270px;
    height: 55px;
    border-radius: 5px;
    border: 1px solid #E5E5E5 !important;
    appearance: none;
}

.calculate-shipping .calculate-item form input {
    font-size: 16px;
    border: 1px solid #E5E5E5 !important;
    width: 100%;
    height: 55px;
    border-radius: 5px;
    padding: 0 15px;
}

.calculate-shipping .calculate-item .chectout-cart {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 30px;
}

.calculate-shipping .calculate-item .chectout-cart span {
    font-size: 18px;
    font-weight: 600;
    color: #E25748;
}

.calculate-shipping .calculate-item .chectout-cart .sub-total {
    padding-bottom: 15px;
    border-bottom: 1px solid #E5E5E5 !important;
}

.calculate-shipping .calculate-item .chectout-cart .sub-total h6 {
    font-size: 16px;
}

.calculate-shipping .calculate-item .chectout-cart .grand-total {
    padding: 20px 0;
}

.calculate-shipping .calculate-item .chectout-cart .grand-total li h6 {
    width: 100%;
}

.calculate-shipping .calculate-item .chectout-cart .checkout-text {
    width: 100%;
    text-align: center;
}

.calculate-shipping .calculate-item .chectout-cart .checkout-text a {
    width: 100%;
}

.calculate-shipping .calculate-item .chectout-cart .checkout-text span {
    font-size: 16px;
    font-weight: 400;
    color: #343C55;
    margin-top: 15px;
    display: block;
}

.calculate-shipping .calculate-item .checkout-btn {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculate-shipping .calculate-item .checkout-btn a {
    font-size: 16px;
    background-color: #E25748;
}

.calculate-shipping .calculate-item .checkout-btn a::before {
    background-color: #F2AD4A;
}

.calculate-shipping .shoping-btn-2 {
    margin-top: 20px;
}

/* CALCULATE-SHOPPING-SECTION END */
/* CHECKOUT-SECTION START */
.checkout-section .checkout-left {
    margin-right: 10px;
}

.checkout-section .checkout-left .checkout-top {
    padding-bottom: 30px;
}

.checkout-section .checkout-left .checkout-top span {
    font-size: 18px;
    font-weight: 700;
}

.checkout-section .checkout-left .checkout-top a {
    font-size: 18px;
    font-weight: 700;
    padding-left: 10px;
    color: #E25748;
}

.checkout-section .checkout-left .checkout-top a:hover {
    color: #F2AD4A;
}

.checkout-section .checkout-left .checkout-form h4 {
    padding-bottom: 20px;
}

.checkout-section .checkout-left .checkout-form form .ev-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkout-section .checkout-left .checkout-form form input {
    font-size: 18px;
    text-transform: capitalize;
    height: 55px;
    width: 100%;
    border: 1px solid #E5E5E5 !important;
    margin-bottom: 10px;
    padding-left: 20px;
    border-radius: 5px;
}

.checkout-section .checkout-left .checkout-form form .select-wrapper {
    position: relative;
}

.checkout-section .checkout-left .checkout-form form .select-wrapper select {
    font-size: 18px;
    text-transform: capitalize;
    height: 55px;
    width: 100%;
    border: 1px solid #E5E5E5 !important;
    margin-bottom: 10px;
    padding-left: 20px;
    border-radius: 5px;
    width: 100%;
    appearance: none;
}

.checkout-section .checkout-left .checkout-form form .select-wrapper span {
    position: absolute;
    top: 22px;
    right: 20px;
}

.checkout-section .checkout-left .checkout-form form .select-wrapper span i {
    font-size: 13px;
}

.checkout-section .checkout-left .checkout-form .checkbox-form .check-box {
    padding-top: 20px;
}

.checkout-section .checkout-left .checkout-form .checkbox-form .check-box label {
    font-size: 16px;
    line-height: 16px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 5px;
    margin-left: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.checkout-section .checkout-left .checkout-form .checkbox-form .check-box label:hover {
    color: #F2AD4A;
}

.checkout-section .checkout-left .checkout-form .checkbox-form p {
    margin-top: 10px;
}

.checkout-section .checkout-left .checkout-form .checkbox-form .check-password {
    font-size: 16px;
    height: 55px;
    width: 100%;
    padding-left: 20px;
    border: 1px solid #E5E5E5 !important;
    border-radius: 5px;
    margin-top: 10px;
}

.checkout-section .checkout-left .checkout-form .checkbox-form .check-message {
    font-size: 16px;
    height: 130px;
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #E5E5E5 !important;
    border-radius: 5px;
    margin-top: 20px;
}

.checkout-section .order-review-wrapper {
    margin-left: 10px;
}

.checkout-section .order-review-wrapper .coupon-title {
    margin-bottom: 20px;
}

.checkout-section .order-review-wrapper .checkout-review-order .coupon-code input {
    height: 55px;
}

.checkout-section .order-review-wrapper .checkout-review-order .coupon-code .coupon-btn {
    margin-left: 10px;
}

.checkout-section .order-review-wrapper .checkout-review-order .coupon-code .coupon-btn button {
    width: 180px;
}

.checkout-section .order-review-wrapper .checkout-review-order .coupon-code input:nth-child(1) {
    font-size: 16px;
    width: 100%;
    padding-left: 20px;
    border-radius: 5px;
    border: 1px solid #E5E5E5 !important;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review {
    margin: 40px 0;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .order-title {
    margin-bottom: 20px;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .ev-shop-table {
    padding: 40px 30px;
    box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .ev-shop-table .order-price {
    padding-bottom: 5px;
    border-bottom: 1px solid #E5E5E5 !important;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .ev-shop-table .order-price h6 {
    font-size: 18px;
    text-transform: uppercase;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .ev-shop-table .cart-item {
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5 !important;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .ev-shop-table .cart-item .product-name-price li {
    padding: 5px 0;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .ev-shop-table .cart-item .product-name-price li span {
    font-size: 16px;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .ev-shop-table .cart-item .product-name-price li:nth-child(1) span {
    font-weight: 700;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .ev-shop-table .cart-item .product-name-price li:nth-child(2) span {
    color: #E25748;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .ev-shop-table .cart-item .product-subtotal span {
    text-transform: uppercase;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .product-total {
    padding: 20px 0;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .product-total span {
    font-size: 18px;
    text-transform: uppercase;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .product-total li:nth-child(1) span {
    font-weight: 700;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .product-total li:nth-child(2) span {
    color: #E25748;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .checkout-payment {
    padding-top: 20px;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .checkout-payment .checkout-radio {
    padding-bottom: 10px;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .checkout-payment .checkout-radio label {
    font-size: 16px;
    font-weight: 800 !important;
    text-transform: uppercase;
    cursor: pointer;
    padding-left: 5px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .checkout-payment .checkout-radio label:hover {
    color: #F2AD4A;
}

.checkout-section .order-review-wrapper .checkout-review-order .ev-order-review .checkout-payment .checkout-radio .radio-text {
    padding-left: 20px;
}

/* CHECKOUT-SECTION END */
/* RADIO-ITEM START */
.radio-items .radio-item {
    margin-bottom: 15px;
    position: relative;
    transition: 0.3s ease-in-out;
}

.radio-items .radio-item span {
    transition: 0.3s ease-in-out;
}

.radio-items .radio-item span input {
    cursor: pointer;
    accent-color: #E25748;
}

.radio-items .radio-item .radio-text {
    display: none;
}

.radio-items .radio-item.active-text .radio-text {
    display: block !important;
}

/* RADIO-ITEM END */
/* WISTLIST-SECTION START */
.wishlist-section .wishlist-item .wishlist-table {
    width: 100% !important;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper {
    width: 100%;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-head {
    padding-bottom: 20px !important;
    border-bottom: 1px solid #E5E5E5 !important;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-head span {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 20px 0;
    position: sticky;
    display: block;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr {
    border-bottom: 1px solid #E5E5E5 !important;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 20px 0;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td h2 {
    line-height: 18px;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td h2 a {
    font-size: 16px;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td h2 a:hover {
    color: #F2AD4A;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td a {
    overflow: hidden;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td a img {
    margin-right: 20px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td a:hover img {
    transform: scale(1.1);
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td .product-cart li:nth-child(1) button {
    padding: 14px 30px;
    color: #fff;
    background-color: #E25748;
    border-radius: 30px;
    z-index: 9;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td .product-cart li:nth-child(1) button a {
    color: #fff;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td .product-cart li:nth-child(1) button i {
    padding-left: 5px;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td .product-cart li:nth-child(2) a i {
    font-size: 16px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border: 1px solid #E5E5E5 !important;
    border-radius: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td .product-cart li:nth-child(2) a i:hover {
    color: #fff;
    background-color: #E25748;
    border: 1px solid #E25748 !important;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td:nth-child(2) {
    color: #F2AD4A;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td:nth-child(2) span {
    font-size: 17px;
}

.wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td:nth-child(3) {
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    color: #F2AD4A;
}

/* WISTLIST-SECTION END */
/* PRODUCT-COLLECTION-SECTION START */
.product-collection-section {
    background-color: #fff;
}

.product-collection-section .container .product-top {
    padding-bottom: 30px;
}

.product-collection-section .container .collection-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.product-collection-section .products .product {
    box-shadow: rgba(149, 157, 165, 0.106) 0px 8px 24px;
}

.product-collection-section .products .product:hover {
    box-shadow: rgba(50, 50, 93, 0.15) 0px 13px 27px -5px, rgba(0, 0, 0, 0.07) 0px 8px 16px -8px;
}

.product-collection-section .container:nth-child(2) {
    margin-top: 40px;
}

.product-collection-section .container:nth-child(3) {
    margin-top: 40px;
}

/* PRODUCT-COLLECTION-SECTION END */
/* RECENT-BLOG-SECTION START */
.recent-blog-section {
    padding: 120px 20px;
}

.recent-blog-section .ev-blog-items .blog-inner {
    margin-bottom: 60px;
    margin-right: 20px;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-img {
    overflow: hidden;
    border-radius: 10px;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-img a {
    width: 100%;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-img a img {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-img img:hover {
    transform: scale(1.1);
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text {
    padding-top: 30px;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-date li {
    padding: 0 20px;
    border-left: 1px solid #a3a8af !important;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-date li a {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #E25748;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-date li a:hover {
    color: #F2AD4A;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-date li span {
    font-size: 16px;
    line-height: 16px;
    color: #a3a8af;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text h2 {
    font-size: 36px;
    line-height: 42px;
    padding-bottom: 15px;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text p {
    margin-bottom: 25px;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .preview-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .social-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .social-items .blog-social .social-icon li span {
    font-size: 16px !important;
    text-transform: uppercase;
    font-weight: 700;
    padding-right: 20px;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .social-items .blog-social .social-icon li a {
    padding-left: 10px;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .social-items .blog-social .social-icon li a i {
    font-size: 18px;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-social .social-icon li:nth-child(2) a i {
    color: #3E5998;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-social .social-icon li:nth-child(2) a i:hover {
    color: #F2AD4A;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-social .social-icon li:nth-child(3) a i {
    color: #1DA1F2;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-social .social-icon li:nth-child(3) a i:hover {
    color: #F2AD4A;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-social .social-icon li:nth-child(4) a i {
    color: #0077B5;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-social .social-icon li:nth-child(4) a i:hover {
    color: #F2AD4A;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-social .social-icon li:nth-child(5) a i {
    color: #E25748;
}

.recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-social .social-icon li:nth-child(5) a i:hover {
    color: #F2AD4A;
}

.recent-blog-section .ev-blog-items .blog-text .blog-date li:nth-child(1) {
    padding-left: 0;
    border-left: none !important;
}

.recent-blog-section .ev-side-bar {
    margin-left: 10px;
}

.recent-blog-section .ev-side-bar .side-bar-form {
    height: 59px;
    width: 100%;
    border: 1px solid #E5E5E5 !important;
    border-radius: 5px;
}

.recent-blog-section .ev-side-bar .side-bar-form input {
    font-size: 16px;
    width: 100%;
    padding: 0 15px;
    z-index: 2;
}

.recent-blog-section .ev-side-bar .side-bar-form button {
    font-size: 18px;
    color: #fff;
    width: 80px;
    height: 59px;
    position: relative;
    z-index: 1;
    background-color: #E25748;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
    border-radius: 0px 5px 5px 0px;
}

.recent-blog-section .ev-side-bar .side-bar-form button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #F2AD4A !important;
    transition: 0.3s;
    border-radius: 0px 5px 5px 0px;
    z-index: -1;
}

.recent-blog-section .ev-side-bar .side-bar-form button:hover::before {
    width: 100%;
}

.recent-blog-section .ev-side-bar .preo-shop {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.recent-blog-section .ev-side-bar .preo-shop .preo-shop-img img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
}

.recent-blog-section .ev-side-bar .preo-shop .preo-shop-inner {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    padding: 50px 40px;
    background-color: rgba(189, 40, 40, 0.73);
}

.recent-blog-section .ev-side-bar .preo-shop .preo-shop-inner span {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}

.recent-blog-section .ev-side-bar .preo-shop .preo-shop-inner h4 {
    font-size: 36px;
    color: #fff;
    padding: 10px 0;
}

.recent-blog-section .ev-side-bar .preo-shop .preo-shop-inner p {
    color: #fff;
    padding-top: 10px;
    padding-bottom: 20px;
}

.recent-blog-section .ev-side-bar .preo-shop .btn_box a {
    font-weight: 400;
}

.recent-blog-section .ev-side-bar .preo-shop:hover .preo-shop-img img {
    transform: scale(1.1);
}

.recent-blog-section .ev-side-bar .bar-recent-post {
    margin-top: 60px;
}

.recent-blog-section .ev-side-bar .bar-recent-post .post-title {
    background-color: #FFF7EC;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.recent-blog-section .ev-side-bar .bar-recent-post .post-title h5 {
    font-size: 21px;
}

.recent-blog-section .ev-side-bar .bar-recent-post .post-title h5 i {
    color: #E25748;
    font-size: 15px;
    padding-left: 2px;
}

.recent-blog-section .ev-side-bar .bar-recent-post .recent-post {
    margin-bottom: 10px;
}

.recent-blog-section .ev-side-bar .bar-recent-post .recent-post .post-img {
    overflow: hidden;
    border-radius: 5px;
}

.recent-blog-section .ev-side-bar .bar-recent-post .recent-post .post-img img {
    max-width: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
}

.recent-blog-section .ev-side-bar .bar-recent-post .recent-post .blog-text {
    padding-left: 15px;
}

.recent-blog-section .ev-side-bar .bar-recent-post .recent-post .blog-text span {
    font-size: 16px;
    color: #a3a8af;
}

.recent-blog-section .ev-side-bar .bar-recent-post .recent-post .blog-text h2 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease-in-out;
}

.recent-blog-section .ev-side-bar .bar-recent-post .recent-post .blog-text h2 a:hover {
    color: #F2AD4A;
}

.recent-blog-section .ev-side-bar .bar-recent-post .recent-post:hover .post-img img {
    transform: scale(1.1);
}

.recent-blog-section .ev-side-bar .bar-catagories {
    margin-top: 60px;
}

.recent-blog-section .ev-side-bar .bar-catagories .catagories-title {
    padding: 20px 30px;
    margin-bottom: 20px;
    background-color: #FFF7EC;
}

.recent-blog-section .ev-side-bar .bar-catagories .catagories-title h6 {
    font-size: 21px;
}

.recent-blog-section .ev-side-bar .bar-catagories .catagories-title h6 i {
    font-size: 15px;
    color: #E25748 !important;
    padding-left: 2px;
}

.recent-blog-section .ev-side-bar .bar-catagories ul li {
    padding-top: 10px;
}

.recent-blog-section .ev-side-bar .bar-catagories ul li a {
    font-size: 18px;
    font-weight: 700;
}

.recent-blog-section .ev-side-bar .bar-catagories ul li a i {
    font-size: 14px;
    color: #E25748;
    padding-right: 3px;
}

.recent-blog-section .ev-side-bar .bar-catagories ul li a:hover {
    color: #F2AD4A;
}

.recent-blog-section .ev-side-bar .bar-catagories ul li:nth-child(1) {
    padding-top: 0;
}

.recent-blog-section .ev-side-bar .bar-tag {
    margin-top: 60px;
}

.recent-blog-section .ev-side-bar .bar-tag .tag-title {
    padding: 20px 30px;
    margin-bottom: 20px;
    background-color: #FFF7EC;
}

.recent-blog-section .ev-side-bar .bar-tag .tag-title h6 {
    font-size: 21px;
}

.recent-blog-section .ev-side-bar .bar-tag .tag-title h6 i {
    font-size: 15px;
    padding-left: 2px;
    color: #E25748;
}

.recent-blog-section .ev-side-bar .bar-tag .tag-items {
    margin-top: 20px;
}

.recent-blog-section .ev-side-bar .bar-tag .tag-items li {
    overflow: hidden;
    text-align: center;
    display: inline-block !important;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #E5E5E5 !important;
    border-radius: 30px;
}

.recent-blog-section .ev-side-bar .bar-tag .tag-items li a {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 25px !important;
    display: block;
    overflow-x: hidden;
    position: relative;
    z-index: 9;
}

.recent-blog-section .ev-side-bar .bar-tag .tag-items li a:hover {
    color: #fff;
}

.recent-blog-section .ev-side-bar .bar-tag ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #F2AD4A;
    z-index: -1;
    font-weight: 700;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease-in-out;
}

.recent-blog-section .ev-side-bar .bar-tag ul li a:hover::before {
    content: "";
    position: absolute;
    width: 100%;
}

.recent-blog-section .ev-side-bar .bar-gallery {
    margin-top: 60px;
}

.recent-blog-section .ev-side-bar .bar-gallery .gallery-title {
    padding: 20px 30px;
    margin-bottom: 20px;
    background-color: #FFF7EC;
}

.recent-blog-section .ev-side-bar .bar-gallery .gallery-title h6 {
    font-size: 21px;
}

.recent-blog-section .ev-side-bar .bar-gallery .gallery-title h6 i {
    font-size: 15px;
    padding-left: 2px;
    color: #E25748;
}

.recent-blog-section .ev-side-bar .bar-gallery .gallery-items li {
    display: inline-block !important;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.recent-blog-section .ev-side-bar .bar-gallery .gallery-items li a {
    width: 100%;
    border-radius: 5px;
}

.recent-blog-section .ev-side-bar .bar-gallery .gallery-items li a img {
    width: 100%;
    display: block;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease-in-out;
}

.recent-blog-section .ev-side-bar .bar-gallery .gallery-items li a img:hover {
    transform: scale(1.1);
}

/* RECENT-BLOG-SECTION END */
/* RECENT-BLOG-SECTION-TWO START */
.recent-blog-section-two .row .blog-content-two .blog-img {
    width: 100%;
}

.recent-blog-section-two .row .blog-content-two .blog-img img {
    width: 100%;
    display: block;
}

.recent-blog-section-two .row .blog-content-two .blog-text {
    padding-top: 0;
}

.recent-blog-section-two .row .blog-content-two .blog-text span {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #E25748;
    padding-bottom: 10px;
}

.recent-blog-section-two .row .blog-content-two .blog-text .blog-date {
    padding-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.recent-blog-section-two .row .blog-content-two .blog-text .blog-date li {
    padding-right: 15px;
    padding-left: 0;
    border-left: none !important;
}

.recent-blog-section-two .row .blog-content-two .blog-text .blog-date li a {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #a3a8af;
}

.recent-blog-section-two .row .blog-content-two .blog-text .blog-date li a:hover {
    color: #F2AD4A;
}

.recent-blog-section-two .row .blog-content-two .blog-text .blog-date li a i {
    color: #E25748;
    padding-right: 5px;
}

.recent-blog-section-two .row .blog-content-two .blog-text .social-items {
    flex-wrap: wrap;
    gap: 10px;
}

.recent-blog-section-two .row .blog-content-two .blog-text .social-items .blog-social .social-icon span {
    color: #343C55;
}

.mr-left {
    margin-left: 20px;
}

.mr-right {
    margin-right: 20px;
}

/* RECENT-BLOG-SECTION-TWO END */
/* SINGLE-BLOG-SECTION START */
.single-blog-section .single-blog-items .blog-inner .blog-img img {
    width: 100%;
}

.single-blog-section .single-blog-items .blog-inner .blog-text .quote-text {
    padding: 15px 0;
    font-style: italic;
}

.single-blog-section .single-blog-items .blog-inner .blog-text .quote-text img {
    padding-top: 10px;
}

.single-blog-section .single-blog-items .blog-inner .blog-text .quote-text p {
    font-size: 21px;
    font-weight: 500;
    line-height: 32px;
    margin-left: 30px;
}

.single-blog-section .single-blog-items .single-blog-tags {
    padding-top: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E5E5E5 !important;
}

.single-blog-section .single-blog-items .single-blog-tags .post-tag li {
    padding-right: 15px;
    display: inline-block;
}

.single-blog-section .single-blog-items .single-blog-tags .post-tag li a {
    font-size: 16px;
    font-weight: 700;
}

.single-blog-section .single-blog-items .single-blog-tags .post-tag li a:hover {
    color: #F2AD4A;
}

.single-blog-section .single-blog-items .blog-next-prev {
    padding-top: 40px;
    padding-bottom: 20px;
}

.single-blog-section .single-blog-items .blog-next-prev li a {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.single-blog-section .single-blog-items .blog-next-prev li a i {
    color: #F2AD4A;
}

.single-blog-section .single-blog-items .blog-next-prev li a:hover {
    color: #F2AD4A;
}

.single-blog-section .single-blog-items .blog-next-prev li:nth-child(1) a i {
    padding-right: 10px;
}

.single-blog-section .single-blog-items .blog-next-prev li:nth-child(2) a i {
    padding-left: 10px;
}

.single-blog-section .single-blog-items .product-details li a {
    font-size: 18px;
    font-weight: 700;
}

.single-blog-section .single-blog-items .product-details li a:hover {
    color: #F2AD4A;
}

.single-blog-section .single-blog-items .product-details li:nth-child(2) {
    text-align: end;
}

.single-blog-section .single-blog-items .blog-author-bio {
    margin: 60px 0;
    padding: 40px;
    padding-bottom: 48px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.single-blog-section .single-blog-items .blog-author-bio .author-img {
    margin-right: 20px;
}

.single-blog-section .single-blog-items .blog-author-bio .author-img img {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease-in-out;
}

.single-blog-section .single-blog-items .blog-author-bio .author-personal {
    padding-bottom: 10px;
}

.single-blog-section .single-blog-items .blog-author-bio .author-personal .authoi-social li {
    padding-left: 15px;
}

.single-blog-section .single-blog-items .blog-author-bio .author-personal .authoi-social li a i {
    font-size: 18px;
}

.single-blog-section .single-blog-items .blog-author-bio .author-personal .authoi-social li:nth-child(1) a i {
    color: #3E5998;
}

.single-blog-section .single-blog-items .blog-author-bio .author-personal .authoi-social li:nth-child(1) a i:hover {
    color: #F2AD4A;
}

.single-blog-section .single-blog-items .blog-author-bio .author-personal .authoi-social li:nth-child(2) a i {
    color: #1DA1F2;
}

.single-blog-section .single-blog-items .blog-author-bio .author-personal .authoi-social li:nth-child(2) a i:hover {
    color: #F2AD4A;
}

.single-blog-section .single-blog-items .blog-author-bio .author-personal .authoi-social li:nth-child(3) a i {
    color: #0077B5;
}

.single-blog-section .single-blog-items .blog-author-bio .author-personal .authoi-social li:nth-child(3) a i:hover {
    color: #F2AD4A;
}

.single-blog-section .single-blog-items .blog-author-bio .view-post {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 2px;
    border-bottom: 2px solid #E25748 !important;
}

.single-blog-section .single-blog-items .blog-author-bio .view-post:hover {
    color: #F2AD4A;
}

.single-blog-section .single-blog-items .blog-author-bio:hover .author-img img {
    transform: scale(1.1);
}

.single-blog-section .single-blog-items .blog-btn {
    width: 200px;
}

.single-blog-section .single-blog-items .blog-btn button {
    color: #343C55;
    background-color: #fff;
    border: 2px solid #E25748 !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.single-blog-section .single-blog-items .blog-btn button:hover {
    color: #fff;
}

.single-blog-section .single-blog-items .blog-btn button::before {
    background: #E25748;
}

/* SINGLE-BLOG-SECTION START */
/* EV-COMMENT START */
.ev-comments .comment-inner {
    padding-top: 30px;
}

.ev-comments .comment-inner .comment-text {
    margin-left: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E5E5E5 !important;
}

.ev-comments .comment-inner .comment-text .comment-top {
    padding-bottom: 10px;
}

.ev-comments .comment-inner .comment-text li span {
    font-size: 14px;
    color: #a3a8af;
}

.ev-comments .comment-inner .comment-text li a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 25px;
    border-radius: 30px;
    background-color: #fff;
    border: 1px solid #E5E5E5 !important;
}

.ev-comments .comment-inner .comment-text li a:hover {
    color: #F2AD4A;
}

.ev-comments .comment-wrapper .comment-inner:nth-child(3) {
    padding-left: 100px;
}

/* EV-COMMENT END */
/* CONTACT-US-SECTION START */
.ev-contact-us-section .contact-left .contact-inner p {
    padding-bottom: 20px;
    max-width: 530px;
}

.ev-contact-us-section .contact-left .contact-inner ul li {
    margin-bottom: 20px;
}

.ev-contact-us-section .contact-left .contact-inner ul li a i {
    font-size: 20px;
    color: #E25748;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: #FFF7EC;
    border-radius: 100%;
}

.ev-contact-us-section .contact-left .contact-inner ul li a i:hover {
    color: #fff;
    background-color: #E25748;
}

.ev-contact-us-section .contact-left .contact-inner ul li a .inner-text {
    padding-left: 15px;
}

.ev-contact-us-section .contact-left .contact-inner ul li a .inner-text h6 {
    color: #343c55;
}

.ev-contact-us-section .contact-left .contact-inner ul li a .inner-text span {
    font-size: 16px;
    color: #343C55;
}

.ev-contact-us-section .contact-right .contuct-form {
    margin-top: 0 !important;
}

.ev-contact-us-section .contact-right .contuct-form .form-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ev-contact-us-section .contact-right .contuct-form .form-group input {
    width: 100%;
}

.ev-contact-us-section .contact-right .contuct-form .submit-btn button {
    width: 200px;
    cursor: pointer;
    background-color: #F2AD4A;
}

.ev-contact-us-section .contact-right .contuct-form .submit-btn button::before {
    background-color: #E25748;
}

/* CONTACT-US-SECTION END */
/* MAP-SECTION START  */
.map-section {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 110px;
}

.map-section .map-heading {
    display: none;
}

.map-section #map {
    width: 100%;
    height: 430px;
    border-radius: 10px;
    z-index: 1;
}

/* MAP-SECTION END  */
/* FOOTER-SECTION START */
.footer-section {
    /*padding-top: 100px;*/
    padding-top: 32px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.footer-section .widgets-p-top {
    padding-top: 30px;
}

.footer-section .widgets-p-top h6 {
    padding-bottom: 20px;
}

.footer-section .widgets-item .footer-logo img {
    /*width: 148px;*/
    width: 100px;
}

.footer-section .widgets-item .widgets-contacts {
    padding: 30px 0;
}

.footer-section .widgets-item .widgets-contacts ul {
    padding-top: 8px;
}

.footer-section .widgets-item .widgets-contacts ul li {
    padding-bottom: 10px;
}

.footer-section .widgets-item .widgets-contacts ul li a {
    font-size: 18px;
    line-height: 24px;
    font-family: "Open Sans", sans-serif !important;
    color: #fff;
}

.footer-section .widgets-item .widgets-contacts ul li a i {
    padding-right: 15px;
}

.footer-section .widgets-item .widgets-contacts ul li a:hover {
    color: #343C55;
}

.footer-section .widgets-item .widgets-contacts ul li a:hover i {
    color: #E25748;
}

.footer-section .widgets-item .widgets-contacts ul li a span {
    font-family: "Open Sans", sans-serif !important;
}

.footer-section .widgets-item .widgets-social ul li {
    padding-right: 20px;
}

.footer-section .widgets-item .widgets-social ul li a i {
    font-size: 20px;
}

.footer-section .widgets-item .widgets-social ul li:nth-child(1) a i {
    color: #3E5998;
}

.footer-section .widgets-item .widgets-social ul li:nth-child(1) a i:hover {
    color: #F2AD4A;
}

.footer-section .widgets-item .widgets-social ul li:nth-child(2) a i {
    color: #1DA1F2;
}

.footer-section .widgets-item .widgets-social ul li:nth-child(2) a i:hover {
    color: #F2AD4A;
}

.footer-section .widgets-item .widgets-social ul li:nth-child(3) a i {
    color: #0077B5;
}

.footer-section .widgets-item .widgets-social ul li:nth-child(3) a i:hover {
    color: #F2AD4A;
}

.footer-section .widgets-item .widgets-social ul li:nth-child(4) a i {
    color: #E25748;
}

.footer-section .widgets-item .widgets-social ul li:nth-child(4) a i:hover {
    color: #F2AD4A;
}

.footer-section .widgets-item .widgets-link-items {
    padding: 0px 30px;
}

.footer-section .widgets-item .widgets-link-items ul li {
    padding-bottom: 8px;
}

.footer-section .widgets-item .widgets-link-items ul li a {
    font-size: 18px;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 500;
    color: #fff;
}

.footer-section .widgets-item .widgets-link-items ul li a:hover {
    /*color: #F2AD4A;*/
    color: #111111;
}

.footer-section .widgets-item .recent-posts {
    padding-bottom: 10px;
}

.footer-section .widgets-item .recent-posts .author-info {
    padding-top: 8px;
    padding-left: 10px;
}

.footer-section .widgets-item .recent-posts .author-info span {
    font-size: 14px;
    color: #a3a8af;
}

.footer-section .widgets-item .recent-posts .author-info a {
    font-size: 16px;
    font-weight: 700;
}

.footer-section .widgets-item .recent-posts .author-info a:hover {
    color: #F2AD4A;
}

.footer-section .widgets-item .news-letter p {
    max-width: 450px;
}

.footer-section .widgets-item .news-letter .widgets-form {
    /*margin-top: 25px;*/
    padding: 15px;
    max-width: 280px;
    height: 55px;
    background-color: #fff;
    border: 1px solid #E5E5E5 !important;
    border-radius: 5px;
}

.footer-section .widgets-item .news-letter .widgets-form input {
    width: 90%;
    font-size: 16px;
    background-color: transparent !important;
}

.footer-section .widgets-item .news-letter .widgets-form button {
    background-color: #fff;
}

.footer-section .widgets-item .news-letter .widgets-form button i {
    font-size: 20px;
    color: #343C55;
}

.footer-section .widgets-item .news-letter .widgets-form:hover button i {
    color: #E25748;
}

.footer-section .footer-bottom {
    padding-top: 15px;
    /*padding-top: 80px;*/
    z-index: 9;
}

.footer-section .footer-bottom .footer-bottom-left {
    float: left;
}

.footer-section .footer-bottom .footer-bottom-left span {
    font-size: 16px;
    font-family: "Open Sans", sans-serif !important;
}

.footer-section .footer-bottom .footer-bottom-left span a {
    font-weight: 600;
    font-family: "Open Sans", sans-serif !important;
    padding-left: 8px;
}

.footer-section .footer-bottom .footer-bottom-left span:hover a {
    color: #F2AD4A;
}

.footer-section .footer-bottom .footer-bottom-right {
    float: right;
}

.footer-section .footer-bottom .footer-bottom-right ul li {
    padding-left: 40px;
}

.footer-section .footer-bottom .footer-bottom-right ul li a {
    font-size: 16px;
    font-family: "Open Sans", sans-serif !important;
    z-index: 999;
}

.footer-section .footer-bottom .footer-bottom-right ul li a:hover {
    color: #F2AD4A;
}

/* FOOTER-SECTION END */
/* FOOTER-SECTION-TWO START */
.footer-section-two {
    padding-top: 180px;
}

/* FOOTER-SECTION-TWO END */
/* COMMON-FOOTER-SECTION START */
.common-footer-section {
    /*background-color: #F7F4EF;*/
    /*background-color: #E25748;*/
    background-color: #ff783d;
}

/* COMMON-FOOTER-SECTION END */
/* FOOTER-ICONTOP START */
.footer_iconTop {
    position: sticky !important;
    right: 30px !important;
    bottom: 150px !important;
    display: flex;
    justify-content: end;
    margin-top: -55px;
    height: 0;
    z-index: 999;
}

.footer_iconTop a {
    position: relative;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #c35000;
    display: block;
    margin-right: 30px;
    border-radius: 100%;
    border: 2px solid #fff !important;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    overflow: hidden;
    z-index: 8;
}

.footer_iconTop a i {
    font-size: 20px;
    line-height: 24px;
    position: relative;
    top: 3px;
}

.footer_iconTop a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #E25748;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.footer_iconTop a:hover:after {
    width: 100%;
}

/* FOOTER-ICONTOP END */
/* FOOTER  BUTTON START */
#button {
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

/* FOOTER BUTTON END */
@media (max-width: 1450px) {
    /* HERO-SECTION START  */
    .hero-section .hero-slider .hero-content-left {
        padding-left: 80px;
    }

    .hero-section .hero-slider .hero-content-left .hero-inner h1 {
        font-size: 58px;
        line-height: 68px;
    }

    .hero-section .hero-slider .hero-content-right {
        /*padding-right: 50px;*/
    }

    /* HERO-SECTION END  */
    /* FEATURED-COLLECTION-SECTION START  */
    .featured-collection-section .collection-grid .grid-item-left span {
        font-size: 18px;
        line-height: 24px;
        width: 80px;
        height: 80px;
    }

    .featured-collection-section .collection-grid .grid-item-left h2 {
        bottom: 20px;
        right: 30px;
        font-size: 32px;
        line-height: 38px;
    }

    .featured-collection-section .collection-grid .grid-item-right .inner-text {
        max-width: 240px;
        top: 40px;
        left: 40px;
    }

    .featured-collection-section .collection-grid .grid-item-right .inner-text a {
        font-size: 16px;
    }

    .featured-collection-section .collection-grid .grid-item-right .inner-text h2 {
        font-size: 32px;
        line-height: 38px;
        padding-bottom: 5px;
    }

    .featured-collection-section .collection-grid .grid-item-right .inner-text h5 {
        font-size: 20px;
        line-height: 24px;
    }

    /* FEATURED-COLLECTION-SECTION END  */
}

@media (max-width: 1400px) {
    /* FEATURED-PRODUCT-SECTION-TWO START  */
    .featured-product-section-two .featured-product-pagination {
        right: inherit !important;
        padding-left: 0px !important;
        top: inherit;
        width: 100%;
    }

    .featured-product-section-two span.swiper-pagination-bullet {
        margin: 0px 10px !important;
    }

    /* FEATURED-PRODUCT-SECTION-TWO END  */
    /* TESTIMONIAL-SECTION-THREE START  */
    .testimonial-section-three .testimonial-author .testimonial-left img {
        width: 50% !important;
    }

    .testimonial-section-three .testimonial-author .testimonial-right img {
        width: 50% !important;
    }

    /* TESTIMONIAL-SECTION-THREE END  */
}

@media (max-width: 1150px) {
    /* HEADER-SECTION-TWO START  */
    .header-section-two .mega-menu-wrapper .wrapper-items .item-left .nav-menu .menu-items li .nav-link {
        display: block;
        /*padding: 20px 10px !important;*/
    }

    /* HEADER-SECTION-TWO END  */
    /* CATEGORIES-SECTION-TWO START  */
    .categories-section-two .categories-items {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    /* CATEGORIES-SECTION-TWO END  */
    /* TESTIMONIAL-SECTION-THREE START  */
    .testimonial-section-three .container-fluid .testimonial-author .testimonial-right .author-three {
        position: absolute;
        top: 40%;
        right: 15%;
    }

    /* TESTIMONIAL-SECTION-THREE END  */
}

@media (max-width: 1100px) {
    /* HEADER-SECTION-TWO START  */
    /*.header-section-two .inner-wrapper ul li:nth-child(2) span {*/
        /*display: none;*/
    /*}*/

    .header-section-two .inner-wrapper ul li:nth-child(2) i {
        display: block !important;
    }

    .header-section-two .inner-wrapper ul li:nth-child(2) .log-in {
        padding: 0 !important;
        border: 0 !important;
    }

    .header-section-two .inner-wrapper ul li:nth-child(4) {
        display: block !important;
    }

    /* HEADER-SECTION-TWO END  */
    /* RECENT-NEWS-SECTION START  */
    .recent-news-section .recent-news-right .news-grid .news-article .inner-text h5 {
        font-size: 14px !important;
        padding-bottom: 10px !important;
    }

    /* RECENT-NEWS-SECTION END  */
    /* TESTIMONIAL-SECTION-THREE START  */
    .testimonial-section-three .container-fluid {
        background-image: none !important;
    }

    /* TESTIMONIAL-SECTION-THREE END  */
    /* FEATURED-SECTION-TWO START  */
    .featured-section-two .single-featured .featured-section-two-slider {
        padding-top: 75px;
    }

    .featured-section-two .single-featured-3 {
        margin-top: 20px;
    }

    /* FEATURED-SECTION-TWO END  */
}

@media (max-width: 1024px) {
    .mr-left {
        margin-left: 15px;
    }

    .mr-right {
        margin-right: 15px;
    }

    /* HERO-SECTION START */
    .hero-section .hero-slider {
        padding-bottom: 40px;
    }

    .hero-section .hero-slider .hero-content-left {
        padding-left: 0px;
    }

    .hero-section .hero-slider .hero-content-left .hero-inner h1 {
        font-size: 62px;
        line-height: 72px;
    }

    .hero-section .hero-slider .hero-content-right {
        padding-right: 0px;
    }

    .hero-section .hero-slider .hero-content-right .hero-inner {
        position: relative;
        display: block;
    }

    .hero-section .hero-slider .hero-content-right .hero-inner .hero-cart-img .shoping-card {
        top: 5%;
        left: -10% !important;
    }

    .hero-section .hero-slider .hero-content-right .hero-inner .hero-cart-img .rating-card {
        bottom: -8%;
        left: -8% !important;
    }

    .hero-section .hero-slider .hero-content-right .hero-inner .hero-cart-img .check-card {
        bottom: 8%;
        right: -5% !important;
    }

    .hero-section .hero-slider .swiper-button-prev {
        /*position: relative;*/
        bottom: -30px;
        left: 2%;
    }

    .hero-section .hero-slider .swiper-button-prev i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-section .hero-slider .swiper-button-next {
        /*position: relative;*/
        /*bottom: -66px;*/
        bottom: -3px;
        left: 90%;
    }

    .hero-section .hero-slider .swiper-button-next i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* HERO-SECTION END */
    /* HER0-SLIDER-THREE START */
    .hero-section-two .hero-slider-three {
        padding-top: 80px !important;
        padding-bottom: 110px !important;
    }

    /* HER0-SLIDER-THREE END */
    /* CATEGORIES-SECTION START */
    .categories-section .categories-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    /* CATEGORIES-SECTION END */
    /* FEATURED-COLLECTION-SECTION START */
    .featured-collection-section .collection-grid {
        grid-template-columns: 1fr;
    }

    /* FEATURED-COLLECTION-SECTION END */
    /* HOME-PAGE-TWO HTML START */
    /* INTRO-SECTION-TWO START */
    .intro-section-two .intro-items {
        gap: 20PX;
    }

    /* INTRO-SECTION-TWO END */
    /* FEATURED-SECTION-ONE START */
    .featured-section-two {
        padding: 70px 15px;
    }

    .featured-section-two .featured-items {
        grid-template-columns: 1fr 1fr;
    }

    /* FEATURED-SECTION-ONE END */
    /* HOME-PAGE-TWO HTML END */
    /* PRODUCT-COLLECTION-SECTION START */
    .product-collection-section .container .collection-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* PRODUCT-COLLECTION-SECTION END */
}

@media (min-width: 992px) {
    /* HEADER-SECTION 992 START */
    .header-section .mega-menu-wrapper .nav-menu > ul > li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }

    /* HEADER-SECTION 992 END */
}

@media (max-width: 991.98px) {
    /* SINGLE-PRODUCT-SECTION START */
    .single-product-section .product-img-glarry {
        margin-right: 0;
    }

    .single-product-section .product-img-glarry .slider__flex {
        flex-direction: column-reverse;
    }

    .single-product-section .product-img-glarry .slider__col {
        flex-direction: row;
        align-items: center;
        margin-right: 0 !important;
        margin-top: 24px;
        width: 100% !important;
        justify-content: center;
    }

    .single-product-section .product-img-glarry .slider__images {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        height:392px;
    }

    .single-product-section .product-img-glarry .slider__thumbs {
        height: 100px !important;
        width: calc(100% - 96px);
        margin: 0 16px;
        margin-bottom: 50px;
    }

    .single-product-section .product-img-glarry .slider__prev,
    .single-product-section .product-img-glarry .slider__next {
        height: auto;
        width: 32px;
    }

    .single-product-section .product-summery {
        margin-left: 0;
    }

    /* SINGLE-PRODUCT-SECTION END */
}

@media (max-width: 991px) {
    section {
        padding: 70px 15px;
    }

    h1 {
        font-size: 42px !important;
        line-height: 56px !important;
    }

    .ev-top-content h2 {
        font-size: 42px;
        line-height: 52px;
    }

    .btn_box {
        height: 58px;
    }

    .btn_box a {
        font-size: 16px;
        width: 200px;
    }

    .mr-left {
        margin-left: 0px;
    }

    .mr-right {
        margin-right: 0px;
    }

    .view-cart.active {
        display: block;
    }

    .view-cart.hide {
        display: none !important;
    }

    .featured-slide-btn {
        position: absolute;
    }

    .featured-slide-btn1 {
        left: 72% !important;
    }

    /* HEADER-SECTION START */
    .header-section .evani-search-form .search-product {
        border: none !important;
        display: none !important;
    }

    .header-section .top-bar .top-bar-social .view-switcher li span {
        font-size: 14px;
    }

    .header-section .top-bar {
        padding-left: 5px;
    }

    .header-section .top-bar .top-bar-contact {
        display: none !important;
    }

    .header-section .top-bar .top-bar-contact .view-switcher {
        position: absolute;
        left: 0;
    }

    .header-section .top-bar .top-bar-social .view-switcher li:nth-child(2) span i {
        border-right: none !important;
    }

    .header-section .top-bar .top-bar-social .social-icon {
        position: absolute;
        right: 20px;
    }

    .header-section .header-middle {
        padding-right: 55px;
        padding-left: 10px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .header-section .header-middle .evani-brand a img {
        /*width: 150px;*/
        width: 77px;
    }

    .header-section .header-middle .inner-wrapper ul .search-popup {
        display: block !important;
    }

    .header-section .header-middle .inner-wrapper ul .search-popup .view-popup {
        margin-top: -42%;
    }

    .header-section .header-middle .inner-wrapper ul .search-popup .view-popup .la-search-pr {
        font-size: 16px;
        font-weight: 500;
        padding-bottom: 10px;
    }

    .header-section .header-middle .inner-wrapper ul .search-popup .view-popup .search-product {
        border: 1px solid #EAE1D4 !important;
    }

    .header-section .header-middle .inner-wrapper ul .search-popup .view-popup .search-product input {
        font-size: 14px;
        border: none !important;
        width: 100% !important;
    }

    .header-section .header-middle .inner-wrapper ul .search-popup .view-popup .search-product button {
        width: 16% !important;
        color: #343C55 !important;
        background-color: #fff;
    }

    .header-section .header-middle .inner-wrapper ul li .log-in {
        padding: 0;
        border: none !important;
    }

    .header-section .header-middle .inner-wrapper ul li:nth-child(2) {
        padding-left: 20px;
    }

    .header-section .header-middle .inner-wrapper ul li:nth-child(2) i {
        display: block !important;
    }

    .header-section .header-middle .inner-wrapper ul li:nth-child(2) .log-in-text {
        display: none;
    }

    .header-section .header-middle .inner-wrapper ul li:nth-child(3) {
        display: none;
    }

    .header-section .header-middle .inner-wrapper ul li:nth-child(3) i {
        display: block !important;
        margin-bottom: 2px;
    }

    .header-section .header-middle .inner-wrapper ul li:nth-child(5) a i {
        margin-top: 4px;
    }

    .header-section .header-middle .inner-wrapper ul li:nth-child(6) a i {
        margin-top: 4px;
    }

    .header-section .wrapper-items {
        justify-content: end;
        width: 100%;
        background-color: #fff !important;
    }

    .header-section .wrapper-items {
        height: 0;
    }

    .fixed-header .sticky-header-two {
        padding-bottom: 0px;
    }

    .header-section .item-left {
        flex: 0 0 100%;
    }

    .header-section .item-left,
    .header-section .item-right {
        flex: 0 0 auto;
    }

    .header-section .item-right a {
        display: none !important;
    }

    .v-center {
        justify-content: space-between;
    }

    .header-section .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        margin-left: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        position: absolute;
        /*top: 59px !important;*/
        top: 48px !important;
        right: 20px;
    }

    .header-section .mobile-menu-trigger span {
        display: block;
        height: 2px;
        background-color: #333333;
        width: 24px;
        position: relative;
    }

    .header-section .mobile-menu-trigger span:before,
    .header-section .mobile-menu-trigger span:after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #333333;
    }

    .header-section .mobile-menu-trigger span:before {
        top: -6px;
    }

    .header-section .mobile-menu-trigger span:after {
        top: 6px;
    }

    .header-section .item-right {
        display: flex;
        align-items: center;
    }

    .header-section .mega-menu-wrapper .nav-menu {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: scroll;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }

    .header-section .mega-menu-wrapper .nav-menu.active {
        transform: translate(0%);
    }

    .header-section .mega-menu-wrapper .nav-menu > ul > li {
        line-height: 1;
        margin: 0 !important;
        display: block;
        width: 100% !important;
        border-right: none !important;
    }

    .header-section .mega-menu-wrapper .nav-menu > ul > li > a {
        position: relative;
        color: #343C55 !important;
        background-color: #fff !important;
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    .header-section .mega-menu-wrapper .nav-menu > ul > li:hover > a {
        color: #F2AD4A !important;
    }

    .header-section .mega-menu-wrapper .nav-menu > ul > li > a i {
        position: absolute;
        height: 50px;
        width: 50px;
        font-size: 12px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
        opacity: 1 !important;
    }

    .header-section .mega-menu-wrapper .nav-menu .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #ffffff;
        top: 0;
    }

    .header-section .mega-menu-wrapper .nav-menu .mobile-menu-head .go-back {
        line-height: 50px;
        height: 50px;
        width: 50px;
        text-align: center;
        color: #000000;
        border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
        cursor: pointer;
        display: none;
    }

    .header-section .mega-menu-wrapper .nav-menu .mobile-menu-head .go-back i {
        font-size: 14px !important;
    }

    .header-section .mega-menu-wrapper .nav-menu .mobile-menu-head.active .go-back {
        display: block;
    }

    .header-section .mega-menu-wrapper .nav-menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }

    .header-section .mega-menu-wrapper .nav-menu .mobile-menu-head .mobile-menu-close {
        font-size: 14px !important;
        line-height: 50px;
        height: 50px;
        width: 50px;
        color: #000000;
        text-align: center;
        border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
        cursor: pointer;
    }

    .header-section .mega-menu-wrapper .nav-menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu,
    .header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    .header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.active {
        display: block;
    }

    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }
        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }
    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }
        100% {
            opacity: 0;
            transform: translateX(100%);
        }
    }
    .header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
        margin-top: 0;
    }

    .header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
        margin-bottom: 20px;
    }

    .header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title {
        margin-bottom: 0px;
    }

    .header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
        flex: 0 0 100%;
        padding: 0px;
    }

    .header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu > ul > li > a,
    .header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
        display: block;
    }

    .header-section .mega-menu-wrapper .nav-menu > ul > li .sub-menu.mega-menu > .list-item > ul {
        margin-bottom: 15px;
    }

    .header-section-two .mega-menu-wrapper .wrapper-items .item-left .nav-menu .menu-items li .nav-link {
        padding: 0px 10px !important;
        height: 50px;
    }

    .menu-overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .log-in-btn::after {
        display: none;
    }

    /* HEADER-SECTION END */
    /* HEADER-SECTION-TWO START */
    .header-section-two .mega-menu-wrapper {
        height: 72px;
    }

    .header-section-two .inner-wrapper ul li:nth-child(2) span {
        top:4% !important;
        margin-left:35% !important;
    }

    .header-section-two .inner-wrapper ul li:nth-child(2) i {
        display: block !important;
    }

    .header-section-two .inner-wrapper ul li:nth-child(3) {
        padding-left: 0;
    }

    .header-section-two .inner-wrapper ul li:nth-child(4) {
        display: block !important;
    }

    /* HEADER-SECTION-TWO END */
    /* HERO-SECTION START */
    .hero-section {
        display: block;
        /*margin-top: -35px;*/
    }

    .hero-section .hero-content-left .hero-inner {
        max-width: 100% !important;
    }

    .hero-section .hero-content-right .hero-img {
        display: block;
    }

    .hero-section-two {
        margin-top: 0;
    }

    /* HERO-SECTION END */
    /* INTR0-SECTION START  */
    .intro-section .intro-items {
        gap: 10px;
    }

    /* INTR0-SECTION END  */
    /* FEATURED-PRODUCT-SECTION START  */
    .featured-product-section {
        padding-top: 80px;
        padding-bottom: 90px;
    }

    .featured-product-section .pr-featured-left h2 {
        font-size: 42px;
        line-height: 52px;
    }

    .featured-product-section .pr-featured-left ul li span {
        font-size: 20px;
        line-height: 32px;
    }

    .featured-product-section .pr-featured-left ul li:nth-child(1) span {
        font-size: 32px;
        line-height: 42px;
        padding-right: 10px;
    }

    .featured-product-section .pr-featured-right .featured-img1 {
        padding-top: 90px;
    }

    /* FEATURED-PRODUCT-SECTION END  */
    /* COLLECTION-SECTION START  */
    .collection-section .collection-items .collection-column {
        columns: 2;
    }

    .collection-section .collection-items .collection-column .collection-img {
        width: 100%;
    }

    .collection-section .collection-items .collection-column .collection-img img {
        width: 100%;
    }

    /* COLLECTION-SECTION END  */
    /* FEATURED-COLLECTION-SECTION START  */
    .featured-collection-section .collection-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-collection-section .collection-grid .featured-collection-left .featured-collection-img img {
        width: 100%;
        display: block;
    }

    .featured-collection-section .collection-grid .featured-collection-left .summer-collection {
        bottom: 20px;
        right: 30px;
    }

    .featured-collection-section .collection-grid .featured-collection-left .summer-collection span {
        font-size: 18px;
        line-height: 24px;
        width: 80px;
        height: 80px;
    }

    .featured-collection-section .collection-grid .featured-collection-left .summer-collection h2 {
        font-size: 20px;
        line-height: 28px;
        width: 150px;
        padding-top: 20px;
    }

    .featured-collection-section .collection-grid .featured-collection-right .featured-collection-text {
        max-width: 240px;
        top: 40px;
        left: 40px;
    }

    .featured-collection-section .collection-grid .featured-collection-right .featured-collection-text img {
        width: 100%;
        display: block;
    }

    .featured-collection-section .collection-grid .featured-collection-right .featured-collection-text a {
        font-size: 12px;
    }

    .featured-collection-section .collection-grid .featured-collection-right .featured-collection-text h2 {
        font-size: 20px;
        line-height: 28px;
        padding-bottom: 5px;
    }

    .featured-collection-section .collection-grid .featured-collection-right .featured-collection-text h5 {
        font-size: 14px;
        line-height: 14px;
    }

    /* FEATURED-COLLECTION-SECTION END  */
    /* FEATURED-PRODUCT-SECTION-TWO START  */
    .featured-product-section-two .pr-featured-right .pr-featured-img {
        padding-top: 80px !important;
    }

    /* FEATURED-PRODUCT-SECTION-TWO END  */
    /* BRAND-SECTION START  */
    .brand-section {
        padding: 0;
        margin: -90px 0;
    }

    .brand-section .brand-slider {
        height: 180px;
    }

    /* BRAND-SECTION END  */
    /* TESTIMONIAL-SECTION START  */
    .testimonial-section {
        padding-top: 170px;
        padding-bottom: 80px;
    }

    .testimonial-section-three .container-fluid .testimonial-author .testimonial-left img {
        width: 40% !important;
    }

    .testimonial-section-three .container-fluid .testimonial-author .testimonial-right img {
        width: 40% !important;
    }

    .testimonial-section-three .container-fluid .testimonial-author .testimonial-right .author-two {
        right: 30%;
    }

    .testimonial-section-three .container-fluid .testimonial-author .testimonial-right .author-three {
        right: 0%;
    }

    .testimonial-section-three .container-fluid .tes-three-slider .tes-three-single-item .tes-three-content p {
        font-size: 18px;
        line-height: 28px;
        max-width: 550px;
    }

    /* TESTIMONIAL-SECTION END  */
    /* NEWS-SECTION START  */
    .news-section {
        background-color: rgb(245, 250, 253);
        padding: 90px 15px;
    }

    /* NEWS-SECTION END  */
    /* HOME-PAGE-TWO HTML START  */
    /* INTRO-SECTION-TWO START   */
    .intro-section-two .intro-items {
        gap: 20PX;
        grid-template-columns: 1fr 1fr;
        margin-top: -100px;
    }

    .intro-section-two .intro-items .single-intro:nth-child(3) {
        margin-top: 50px;
    }

    .intro-section-two .intro-items .single-intro:nth-child(4) {
        margin-top: 50px;
    }

    /* INTRO-SECTION-TWO END   */
    /* CATAGORIES-SECTION-TWO START  */
    .categories-section-two .categories-items {
        grid-template-columns: 1fr 1fr;
    }

    /* CATAGORIES-SECTION-TWO END  */
    /* COLLECTION-SECTION-TWO START  */
    .collection-section-two .girls-collection {
        margin-right: 0;
    }

    .collection-section-two .mens-collection {
        margin-left: 0;
    }

    .collection-section-two .cosmetics-collection {
        margin-right: 0;
    }

    .collection-section-two .sunglass-collection {
        margin-left: 0;
        margin-right: 0;
    }

    .collection-section-two .mens-fashion {
        margin-left: 0;
    }

    /* COLLECTION-SECTION-TWO END  */
    /*  PRODUCT-TIMMER-SECTION-TWO START  */
    .prduct-timmer-section {
        padding: 20px 15px !important;
    }

    .prduct-timmer-section .row {
        padding: 60px 0;
    }

    .prduct-timmer-section .row .prduct-timmer-left .timmer-inner {
        padding-left: 40px;
    }

    .prduct-timmer-section .prduct-timmer-right .timmer-img img {
        margin-top: 80px !important;
        padding-top: 40px;
    }

    /*  PRODUCT-TIMMER-SECTION-TWO END  */
    .testimonial-section-two {
        padding-top: 70px !important;
    }

    /*  RECENT-NEWS-SECTION-ONE START  */
    .recent-news-section .recent-news-left {
        margin-right: 0;
    }

    .recent-news-section .recent-news-left .recent-news-content .recent-news-article h5 {
        line-height: 34px !important;
    }

    .recent-news-section .recent-news-right {
        padding-top: 40px;
    }

    .recent-news-section .recent-news-right .single-news .news-article .inner-text span {
        color: #343C55 !important;
    }

    .recent-news-section .recent-news-right .single-news .news-article .inner-text h6 {
        font-size: 16px !important;
    }

    .recent-news-section .recent-news-right .single-news .news-article .inner-text h5 {
        padding-bottom: 5px !important;
    }

    .recent-news-section .recent-news-right .single-news .news-article .inner-text h5 a {
        font-size: 24px;
        line-height: 34px;
    }

    /*  RECENT-NEWS-SECTION-ONE END   */
    /*  HOME-PAGE-TWO HTML END  */
    /*  HOME-PAGE-THREE START   */
    /*  INTRO-SECTION-THREE START   */
    .intro-three-section .intro-three-grid {
        grid-template-columns: 1fr 1fr;
    }

    /*  INTRO-SECTION-THREE END  */
    /*  SOCIAL-SECTION START  */
    .social-section .social-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /*  SOCIAL-SECTION END  */
    /*  FEATURED-SECTION-THREE START   */
    .featured-section-three .featured-three-grid {
        grid-template-columns: 1fr 1fr;
    }

    /*  FEATURED-SECTION-THREE END   */
    /*  CALCULATE-SHOPPING START   */
    .calculate-shipping .calculate-item .chectout-cart {
        margin-top: 40px !important;
        display: block;
    }

    /*  CALCULATE-SHOPPING END   */
    /*  SHOP-PRODUCT-SECTION START   */
    .shop-product-section {
        padding: 80px 20px;
    }

    .shop-product-section .before-shop-loop {
        display: flex;
        align-items: center;
    }

    .shop-product-section .shop-product-sidebar {
        margin-top: 60px;
    }

    /*  SHOP-PRODUCT-SECTION END   */
    /*  CHECKOUT-PAGE START   */
    .checkout-section .checkout-left .checkout-form form .ev-form-grid {
        grid-template-columns: 1fr;
    }

    /*  CHECKOUT-PAGE END   */
    /*  RECENT-BLOG-HTML START    */
    .recent-blog-section {
        padding: 90px 20px;
    }

    .recent-blog-section .ev-blog-items .blog-inner {
        margin-bottom: 50px;
        margin-right: 0;
    }

    .recent-blog-section .ev-side-bar {
        margin-top: 90px;
        margin-left: 0;
    }

    .recent-blog-section .ev-side-bar .common-blog-item .preo-shop-inner {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .recent-blog-section .ev-side-bar .common-blog-item .preo-shop-inner .shop-inner-info {
        text-align: center;
    }

    .recent-blog-section .ev-side-bar .common-blog-item .preo-shop-inner .shop-inner-info .blog-btn a {
        margin: 0 auto;
    }

    /*  RECENT-BLOG-HTML END  */
    /*  RECENT-BLOG-SECTION-TWO HTML PSGE START  */
    /*  RECENT-BLOG-SECTION-TWO START  */
    .recent-blog-section-two .blog-content-two .row {
        margin-bottom: 40px;
    }

    .recent-blog-section-two .blog-content-two .row .blog-img {
        margin: 0 !important;
    }

    .recent-blog-section-two .blog-content-two .row .blog-inner {
        padding-top: 30px !important;
        margin: 0 !important;
    }

    .recent-blog-section-two .row .blog-content-two .blog-inner {
        padding-top: 20px !important;
    }

    .recent-blog-section-two .row .blog-content-two .blog-text {
        padding-top: 30px !important;
    }

    /*  RECENT-BLOG-SECTION-TWO END  */
    /*  RECENT-BLOG-SECTION-TWO HTML PSGE END  */
    /*  SINGLE-BLOG-SECTION START   */
    .single-blog-section .single-blog-content .blog-inner .quote-text {
        padding: 10px 0;
    }

    .single-blog-section .single-blog-content .blog-inner .quote-text p {
        font-size: 18px;
        font-weight: 500;
        line-height: 26px;
        margin-left: 20px;
    }

    .single-blog-section .single-blog-content .blog-inner .blog-date li {
        padding: 0 10px;
    }

    .single-blog-section .single-blog-content .blog-inner .blog-date li a {
        font-size: 14px;
    }

    .single-blog-section .single-blog-content .blog-inner .blog-social {
        margin-top: 15px;
    }

    .single-blog-section .single-blog-content .blog-inner .product-details li a {
        font-size: 14px;
    }

    .single-blog-section .single-blog-content .blog-inner .blog-author-bio .author-img img {
        padding-bottom: 10px;
    }

    .single-blog-section .single-blog-content .blog-inner .blog-author-bio .authoi-info h5 {
        font-size: 20px;
    }

    .single-blog-section .single-blog-content .blog-inner .blog-author-bio .authoi-info p {
        font-size: 16px;
    }

    .single-blog-section .single-blog-content .blog-inner .blog-author-bio .authoi-info .view-post {
        font-size: 15px;
    }

    .single-blog-section .single-blog-content .blog-inner .ev-comments .comment-inner .comment-img img {
        padding-bottom: 10px;
    }

    .single-blog-section .single-blog-content .blog-inner .ev-comments .comment-inner .comment-text {
        margin-left: 0;
    }

    .single-blog-section .single-blog-content .blog-inner .ev-comments .comment-inner .comment-text .comment-top h5 {
        font-size: 18px !important;
    }

    .single-blog-section .single-blog-content .blog-inner .ev-comments .comment-inner:nth-child(4) {
        padding-left: 0;
    }

    .single-blog-section .single-blog-content .contuct-form .form-grid {
        grid-template-columns: 1fr;
    }

    .single-blog-section .ev-side-bar {
        margin-top: 60px;
    }

    .single-blog-section .ev-side-bar .common-blog-item:nth-child(1) {
        margin-top: 40px;
    }

    .single-blog-section .single-blog-items .blog-author-bio .author-img {
        margin-bottom: 10px;
    }

    /*  SINGLE-BLOG-SECTION END  */
    /*  EV-COMMENT START   */
    .ev-comments .comment-inner .comment-img {
        margin-bottom: 12px;
    }

    .ev-comments .comment-inner .comment-text {
        margin-left: 0px;
    }

    /*  EV-COMMENT END  */
    /*  TESTIMONIAL-SECTION-THREE START  */
    .testimonial-section-three {
        padding: 30px 20px !important;
    }

    /*  TESTIMONIAL-SECTION-THREE END  */
    /*  COMMON-HERO-SECTION START   */
    .ev-common-hero {
        /*height: 350px;*/
        height: 180px;
    }

    .ev-common-hero .ev-hero-content h2 {
        font-size: 42px;
        line-height: 52px;
    }

    /*  COMMON-HERO-SECTION END   */
    /*  MAP-SECTION START   */
    .map-section {
        padding-bottom: 90px;
    }

    /*  MAP-SECTION END   */
}

@media (max-width: 767px) {
    section {
        padding: 60px 15px;
    }

    h2 {
        font-size: 38px;
        left: 44px;
    }

    p {
        font-size: 16px;
    }

    .btn-solid {
        font-size: 16px;
        font-weight: 700;
        padding: 14px 30px;
    }

    .btn_box {
        height: 50px;
    }

    .btn_box a {
        font-size: 14px;
        width: 170px;
    }

    .hero-slide-btn {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .hero-slide-btn i {
        font-size: 18px;
    }

    /* EV-PAGINATION START */
    .ev-pagination ul li a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    /* EV-PAGINATION END */
    /* HERO-SECTION START */
    .hero-section .hero-slider {
        overflow: inherit;
    }

    .hero-section .hero-slider .swiper-button-prev {
        /*bottom: -38px;*/
        bottom: 25px;
    }

    .hero-section .hero-slider .swiper-button-next {
        left: 60px;
    }

    .hero-section .swiper-slide {
        padding-bottom: 30px;
    }

    .hero-section .swiper-button-prev {
        left: 10% !important;
        margin-left: -25px;
    }

    .hero-section .swiper-button-next {
        left: 72% !important;
        margin-left: 50px;
    }

    /* HERO-SECTION END */
    /* FEATURED-SLIDE-BTN START */
    .featured-slide-btn {
        position: absolute;
    }

    .featured-slide-btn1 {
        left: 77% !important;
    }

    /* FEATURED-SLIDE-BTN END */
    /* EV-CONTENT START */
    .ev-top-content {
        padding-bottom: 40px;
    }

    .ev-top-content h2 {
        padding-bottom: 10px !important;
    }

    .ev-top-content p {
        font-size: 18px;
    }

    /* EV-CONTENT END */
    /* HEADER-SECTION START */
    .header-section .inner-header .header-popup .view-popup .popup-label {
        left: 80% !important;
        display: block;
    }

    /* HEADER-SECTION END */
    /*  HERO-SECTION START  */
    /*!*.hero-section {*!*/
    /*!*padding-right: 15px;*!*/
    /*!*padding-left: 15px;*!*/
    /*}*/
    .hero-section .hero-content-left .hero-inner {
        text-align: center;
    }

    .hero-section .hero-content-left .hero-inner p {
        font-size: 18px !important;
        padding: 20px 0 !important;
    }

    .hero-section .hero-content-left .hero-inner .btn_box {
        margin-bottom: 20px;
    }

    .hero-section .hero-content-left .hero-inner .btn_box a {
        margin: 0 auto;
    }

    .hero-section .hero-content-right .hero-img {
        /*padding-top: 50px;*/
    }

    .hero-section .hero-content-right .hero-cart-img .shoping-card {
        position: absolute;
        top: 15% !important;
        left: -2% !important;
    }

    /*  HERO-SECTION END  */
    /*  HER0-SLIDER-THREE START  */
    .hero-section-two .hero-slider-two {
        padding-bottom: 50px;
    }

    .hero-section-two .hero-slider-three {
        text-align: center;
    }

    .hero-section-two .hero-slider-three .btn_box a {
        margin: 0 auto;
    }

    .hero-section .hero-slider .hero-content-left .hero-inner h1 {
        max-width: 100% !important;
    }

    /*  HER0-SLIDER-THREE END  */
    /*  INTR0-SECTION START  */
    .intro-section .intro-items {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /*  INTR0-SECTION END  */
    /*  CATAGORIES-SECTION START  */
    .categories-section .categories-grid {
        grid-template-columns: 1fr 1fr;
    }

    /*  CATAGORIES-SECTION END   */
    /*  COLLECTION-SECTION START   */
    .collection-section .collection-items .collection-column {
        columns: 1;
    }

    .collection-section .collection-items .collection-column .collection-img {
        width: 100%;
    }

    .collection-section .collection-items .collection-column .collection-img img {
        width: 100%;
    }

    .collection-section .collection-items .collection-column .time-collection .timer li span:nth-child(1) {
        font-weight: 700;
    }

    .collection-section .collection-items .collection-column .time-collection .timer li span {
        font-size: 16px !important;
    }

    /*  COLLECTION-SECTION END   */
    /*  PRODUCT-SECTION START   */
    .product-section .ev-products {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /*  PRODUCT-SECTION END   */
    /*  FEATURED-PRODUCT-SECTION START   */
    .featured-product-section .pr-featured-left h6 {
        font-size: 18px;
    }

    .featured-product-section .pr-featured-right .featured-img1 {
        padding-top: 90px !important;
    }

    .featured-product-section .pr-featured-right .pr-featured-img {
        padding-top: 40px;
    }

    /*  FEATURED-PRODUCT-SECTION END   */
    /*  FEATURED-COLLECTION-SECTION START   */
    .featured-collection-section .collection-grid {
        grid-template-columns: 1fr;
    }

    /*  FEATURED-COLLECTION-SECTION END   */
    /*  POPULAR-PRODUCT-SECTION START   */
    .popular-product-section {
        padding-bottom: 130px;
    }

    /* POPULAR-PRODUCT-SECTION END   */
    /* TESTIMONIAL-SECTION START   */
    .testimonial-section .swiper-wrapper .testimonial-slide-btn {
        right: inherit !important;
    }

    .testimonial-section .swiper-wrapper .swiper-button-next {
        margin-left: 70px;
    }

    .testimonial-section .container .testimonial-items {
        padding-bottom: 100px;
    }

    .testimonial-section .container .testimonial-items .swiper-button-prev {
        left: unset !important;
        right: inherit !important;
        top: inherit !important;
        bottom: 0px;
    }

    .testimonial-section .container .testimonial-items .swiper-button-next {
        position: absolute;
        top: inherit;
        left: 75px !important;
        bottom: 0 !important;
    }

    /* TESTIMONIAL-SECTION END   */
    /* NEWS-SECTION START   */
    .news-section {
        padding: 70px 15px;
    }

    /* NEWS-SECTION END   */
    /* BRAND-SECTION START   */
    .brand-section {
        padding: 0 10px;
        margin: -70px 0;
    }

    .brand-section .brand-slider {
        height: 140px;
    }

    /* BRAND-SECTION END  */
    /* HOME-PAGE-TWO HTML START  */
    /* INTRO-SECTION-TWO START  */
    .intro-section-two .intro-items {
        gap: 20PX;
        grid-template-columns: 1fr 1fr;
    }

    /* INTRO-SECTION-TWO END  */
    /* CATAGORIES-SECTION-TWO START  */
    .categories-section-two .categories-items {
        grid-template-columns: 1fr 1fr;
    }

    /* CATAGORIES-SECTION-TWO END  */
    /* PRODUCT-TIMMER-SECTION START  */
    .prduct-timmer-section .prduct-timmer-left .timmer-inner h6 {
        font-size: 14px !important;
    }

    .prduct-timmer-section .prduct-timmer-left .timmer-inner h2 {
        font-size: 32px !important;
        line-height: 42px;
    }

    .prduct-timmer-section .prduct-timmer-left .timmer-inner .p-price li {
        padding-right: 20px;
    }

    .prduct-timmer-section .prduct-timmer-left .timmer-inner .p-price li:nth-child(1) span {
        font-size: 30px !important;
    }

    .prduct-timmer-section .prduct-timmer-left .timmer-inner .p-price li:nth-child(2) span {
        font-size: 21px !important;
    }

    .prduct-timmer-section .prduct-timmer-left .timmer-inner .p-timmer li span:nth-child(1) {
        font-size: 28px !important;
        width: 60px !important;
        height: 60px !important;
    }

    .prduct-timmer-section .prduct-timmer-left .timmer-inner .p-timmer li span:nth-child(2) {
        font-size: 14px !important;
    }

    /* PRODUCT-TIMMER-SECTION END  */
    /* HOME-PAGE-TWO HTML END  */
    /* HOME-PAGE-THREE START */
    /* INTRO-SECTION-THREE START */
    .intro-three-section .intro-three-grid {
        grid-template-columns: 1fr;
    }

    /* NTRO-SECTION-THREE END */
    /* FEATURED-SECTION-THREE START */
    .featured-section-two .single-featured-2 {
        margin-top: 10px;
    }

    .featured-section-two .single-featured-3 {
        margin-top: 10px;
    }

    .featured-section-three .featured-three-grid {
        grid-template-columns: 1fr;
    }

    /* FEATURED-SECTION-THREE END */
    /* TESTIMONIAL-SECTION-THREE START */
    .testimonial-section-three .testimonial-author {
        display: none;
    }

    .testimonial-section-three .tes-three-slider .tes-three-single-item .tes-three-content p {
        font-size: 18px !important;
    }

    /* TESTIMONIAL-SECTION-THREE END */
    /* SOCIAL-SECTION START */
    .social-section .social-grid .instra-social {
        width: 200px !important;
        height: 200px !important;
    }

    .social-section .social-grid .instra-social .social-inner {
        top: 24%;
    }

    .social-section .social-grid .instra-social .social-inner i {
        font-size: 26px;
        line-height: 30px;
        padding-bottom: 12px;
    }

    .social-section .social-grid .instra-social .social-inner h5 {
        font-size: 18px;
        line-height: 22px;
        padding-bottom: 5px;
    }

    .social-section .social-grid .instra-social .social-inner a {
        font-size: 12px;
    }

    /* SOCIAL-SECTION END */
    /* HOME-PAGE-THREE END */
    /* SINGLE-PRODUCT-SECTION START  */
    .single-product-section .product-summery .pro-counter {
        width: 105px !important;
    }

    .single-product-section .product-summery .add-cart-btn a {
        width: 200px;
    }

    .single-product-section .product-tabs li {
        margin-right: 5px;
    }

    .single-product-section .product-tabs li a {
        font-size: 14px;
    }

    .single-product-section .product-tabs .tab-content .product-discription p {
        font-size: 14px !important;
    }

    .single-product-section .product-tabs .tab-content .product-discription .single-product-features li span {
        font-size: 14px !important;
    }

    .single-product-section .product-tabs .review-form {
        padding: 36px;
    }

    .ev-comments .comment-inner .comment-text .comment-top li h6 {
        padding-bottom: 3px;
    }

    .single-product-section .product-tabs .review-form .comment-headding {
        padding-bottom: 0px;
    }

    .single-product-section .product-tabs .review-form .inner-form {
        padding-top: 48px;
    }

    .single-product-section .product-tabs .review-form .inner-form h3 {
        font-size: 24px;
        line-height: 34px;
        padding-bottom: 14px;
    }

    .single-product-section .product-summery .single-product-inner h3 {
        font-size: 24px;
        line-height: 34px;
    }

    .single-product-section .product-tabs .review-form .comment-headding h3 {
        font-size: 24px;
        line-height: 34px;
    }

    .single-popular-product-section {
        padding-bottom: 60px;
    }

    .ev-comments .comment-wrapper .comment-inner:nth-child(3) {
        padding-left: 50px;
    }

    /* SINGLE-PRODUCT-SECTION END  */
    /* SHOPPING-SECTION START  */
    .shopping-section .pro-counter {
        width: 80px !important;
    }

    .shopping-section .shoping-cart-btn-right {
        margin-top: 10px;
        display: flex;
    }

    .shopping-section .shoping-cart-btn .shoping-btn {
        height: 50px !important;
    }

    .shopping-section .shoping-cart-btn .shoping-btn a {
        font-size: 14px;
        width: 200px;
    }

    .shopping-section .view-all-two {
        font-size: 14px;
        width: 150px;
        height: 46px;
        border: 1px solid #E25748 !important;
    }

    .shopping-section .t-head span {
        font-size: 16px;
    }

    /* SHOPPING-SECTION END  */
    /* CALCULATE-SECTION START  */
    .calculate-shipping {
        padding-top: 20px;
    }

    .calculate-shipping .calculate-item h5 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .calculate-shipping .calculate-item .select-item h6 {
        font-size: 16px;
    }

    button.view-all-two.shoping-btn-2 {
        font-size: 14px !important;
        height: 46px !important;
        width: 150px !important;
        border: 1px solid #E25748 !important;
    }

    .calculate-shipping .coupon-code-items {
        margin-top: 40px !important;
        display: block;
    }

    .calculate-shipping .calculate-item .checkout-btn {
        height: 52px;
    }

    .calculate-shipping .calculate-item .checkout-btn a {
        font-size: 15px;
    }

    /* CALCULATE-SECTION END  */
    /* WISTLIST-SECTION START  */
    .wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-head span {
        font-size: 16px;
    }

    /* WISTLIST-SECTION END  */
    /* SHOPPING-PRODUCT-SECTION START */
    .shop-product-section {
        padding: 60px 35px;
    }

    /* SHOPPING-PRODUCT-SECTION END  */
    /* RECENT-NEWS-SECTION START  */
    .recent-news-section .recent-news-right .news-grid {
        grid-template-columns: 1fr;
    }

    .recent-news-section .recent-news-right .single-news .news-article .inner-text {
        left: 50px;
        top: 50px;
        right: 50px;
    }

    .recent-news-section .recent-news-right .single-news .news-article .inner-date {
        bottom: 50px;
        left: 50px;
        right: 50px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    /* RECENT-NEWS-SECTION END  */
    /* CHECKOUT-PAGE START  */
    .checkout-section .checkout-left {
        margin-right: 0;
    }

    .checkout-section .order-review-wrapper {
        margin-top: 40px;
        margin-left: 0;
    }

    .checkout-section .order-review-wrapper h4 {
        font-size: 20px;
        line-height: 26px;
    }

    .checkout-section .order-review-wrapper .checkout-review-order .coupon-code .coupon-btn button {
        font-size: 14px;
        width: 160px;
        height: 48px;
    }

    .checkout-section .order-review-wrapper .checkout-review-order .coupon-code input {
        height: 50px;
    }

    .checkout-section .common-btn button {
        font-size: 14px;
        height: 50px;
    }

    /* CHECKOUT-PAGE END  */
    /* WISHLIST-SECTION START  */
    .wishlist-section .wishlist-item .wishlist-table .product-cart .table-btn span {
        display: none;
    }

    .wishlist-section .wishlist-item .wishlist-table .product-cart li:nth-child(1) {
        margin-right: 10px;
    }

    .wishlist-section .wishlist-item .wishlist-table .product-cart li:nth-child(1) button {
        padding: 10px 18px !important;
        color: #fff;
        background-color: #E25748;
        border-radius: 100% !important;
    }

    .wishlist-section .wishlist-item .wishlist-table .product-cart li:nth-child(1) button i {
        padding-left: 0 !important;
    }

    .wishlist-section .wishlist-item .wishlist-table .wishlist-tr span {
        padding-top: 10px;
        font-size: 14px !important;
        line-height: 20px;
        margin-left: 0 !important;
    }

    .wishlist-section .wishlist-item .wishlist-table .wishlist-tr td:nth-child(3) {
        font-size: 16px !important;
        padding-left: 10px;
    }

    .wishlist-section .wishlist-item .wishlist-table .wishlist-tr td:nth-child(2) span {
        font-size: 16px !important;
    }

    /* WISHLIST-SECTION END  */
    /* PRODUCT-COLLECTION-SECTION START   */
    .product-collection-section .container .collection-items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* PRODUCT-COLLECTION-SECTION END */
    /* RECENT-BLOG PAGE START  */
    .recent-blog-section {
        padding: 60px 20px;
    }

    .recent-blog-section .ev-blog-items .blog-inner {
        margin-right: 0;
    }

    .recent-blog-section .ev-blog-items .blog-inner .blog-text {
        padding-top: 20px;
    }

    .recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-date li h3 a {
        font-size: 14px;
    }

    .recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-date li span {
        font-size: 14px;
    }

    .recent-blog-section .ev-blog-items .blog-inner .blog-text h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .recent-blog-section .ev-side-bar {
        margin-top: 60px;
    }

    .recent-blog-section .ev-side-bar .common-blog-item {
        margin-top: 40px;
    }

    .recent-blog-section .ev-side-bar .preo-shop .preo-shop-inner h4 {
        font-size: 24px;
        line-height: 28px;
    }

    .recent-blog-section .ev-side-bar .preo-shop .preo-shop-inner p {
        padding-top: 0;
    }

    .single-blog-section .single-blog-items .blog-author-bio {
        margin: 50px 0;
        padding: 30px;
        padding-bottom: 30px;
    }

    /* RECENT-BLOG PAGE END  */
    /* SINGLE-BLOG PAGE START  */
    .single-blog-section .single-blog-items .blog-inner .blog-text .quote-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .single-blog-section .single-blog-items .ev-comments .comment-text {
        margin-top: 10px;
        margin-left: 0 !important;
    }

    .single-blog-section .single-blog-items .comment-inner:nth-child(4) {
        padding-left: 0 !important;
    }

    .single-blog-section .single-blog-items .contuct-form .form-grid {
        grid-template-columns: 1fr;
    }

    .single-blog-section .single-blog-items .product-details li a {
        font-size: 14px;
    }

    .single-blog-section .single-blog-items .product-details li:nth-child(1) {
        padding-right: 20px;
    }

    /* SINGLE-BLOG PAGE END  */
    /* EV-CONTACT-US-SECTION START   */
    .ev-contact-us-section .ev-top-content {
        text-align: start;
        padding-bottom: 30px;
    }

    .ev-contact-us-section .contact-right .contuct-form {
        margin-top: 40px !important;
    }

    .ev-contact-us-section .contact-right .contuct-form .form-grid {
        grid-template-columns: 1fr;
    }

    /* EV-CONTACT-US-SECTION END  */
    /* COMMON-HERO-SECTION START  */
    .ev-common-hero {
        /*height: 350px;*/
        height: 160px;
    }

    .ev-common-hero .ev-hero-content h2 {
        font-size: 32px;
        line-height: 40px;
    }

    /* COMMON-HERO-SECTION end  */
    /* COMMON-FOOTER HTML START */
    .footer-section-two {
        padding-top: 150px;
    }

    /* COMMON-FOOTER HTML END */
}

@media (max-width: 576px) {
    h1 {
        font-size: 44px;
        line-height: 55px;
    }

    h2 {
        font-size: 30px;
        line-height: 42px;
    }

    .ev-top-content h2 {
        font-size: 32px !important;
        line-height: 42px !important;
    }

    .featured-slide-btn {
        position: absolute;
    }

    .featured-slide-btn1 {
        left: 74% !important;
    }

    /* EV-CONTENT START */
    .ev-top-content {
        padding-bottom: 20px;
    }

    .ev-top-content h2 {
        padding-bottom: 8px !important;
    }

    .ev-top-content p {
        font-size: 18px;
    }

    /* EV-CONTENT END */
    /* HEASDER-SECTION START */
    .header-section .inner-header .login-popup .view-login {
        width: 350px !important;
    }

    .header-section .inner-header .login-popup .view-login .popup-label {
        left: 85% !important;
        display: block;
    }

    /* HEASDER-SECTION END */
    /* HERO-SECTION START */
    .hero-section .swiper-button-next {
        margin-left: 45px;
    }

    .hero-section .hero-slider {
        overflow: inherit;
    }

    .hero-section-two .hero-slider-two {
        padding-bottom: 88px !important;
    }

    .ev-common-hero {
        /*height: 280px;*/
        height: 85px !important;
    }

    /* HERO-SECTION END */
    /* INTR0-SECTION START */
    .intro-section .intro-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* INTR0-SECTION END */
    /* CATAGORIES-SECTION START */
    .categories-section .ev-top-content p {
        font-size: 18px;
    }

    .categories-section .ev-top-content h2 {
        padding-bottom: 0px;
    }

    .categories-section .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* CATAGORIES-SECTION END  */
    /* COLLECTION-SECTION START  */
    .collection-section .collection-items .collection-column {
        columns: 1;
    }

    .collection-section-two .collection-item .collection-inner {
        width: 180px;
    }

    .collection-section-two .collection-item .collection-inner span {
        font-size: 12px;
    }

    .collection-section-two .collection-item .collection-inner h3 {
        font-size: 21px;
        line-height: 28px;
    }

    .collection-section-two .collection-item .collection-inner .ev-offer {
        width: 70px !important;
        height: 70px !important;
        margin-top: 0px;
    }

    .collection-section-two .collection-item .collection-inner .ev-offer span {
        font-size: 14px;
    }

    /* COLLECTION-SECTION END  */
    /* PRODUCT-SECTION START  */
    .product-section .menu-fulter ul li {
        padding: 0px;
    }

    .product-section .menu-fulter ul li a {
        font-size: 15px;
    }

    .product-section .ev-products {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* PRODUCT-SECTION END  */
    /* FEATURED-PRODUCT-SECTION START  */
    .featured-product-section .pr-featured-left h2 {
        font-size: 32px;
        line-height: 38px;
    }

    /* FEATURED-PRODUCT-SECTION END   */
    /* TESTIMONIAL-SECTION START   */
    .testimonial-section {
        padding-top: 150px;
    }

    .testimonial-section .container .testimonial-items .single-testimonial {
        padding: 30px 40px;
    }

    /* TESTIMONIAL-SECTION END */
    /* TESTIMONIAL-SECTION-TWO START   */
    .testimonial-section-two .ev-top-content {
        padding-bottom: 20px !important;
    }

    /* TESTIMONIAL-SECTION-TWO END   */
    /* INTRO-SECTION-TWO START   */
    .intro-section-two .intro-items {
        gap: 20PX;
        grid-template-columns: 1fr;
    }

    .intro-section-two .intro-items .single-intro:nth-child(2) {
        margin-top: 50px;
    }

    .intro-section .intro-items .single-intro .intro-icons {
        position: relative;
        width: 82px;
        height: 82px;
    }

    .intro-section .intro-items .single-intro .intro-icons .single-icon {
        width: 65px;
        height: 65px;
        line-height: 65px;
    }

    .intro-section .intro-items .single-intro .intro-icons .single-icon img {
        width: 30px;
    }

    /* INTRO-SECTION-TWO END  */
    /* CATAGORIES-SECTION-TWO START  */
    .categories-section-two .ev-top-content {
        text-align: start;
    }

    .categories-section-two .categories-items {
        grid-template-columns: 1fr;
    }

    /* CATAGORIES-SECTION-TWO END  */
    /* FEATURED-SECTION-ONE START  */
    .featured-section-two {
        padding: 50px 15px;
    }

    .featured-section-two .featured-items {
        grid-template-columns: 1fr;
    }

    /* FEATURED-SECTION-ONE END   */
    /* UPDATES-SECTION START   */
    .updates-section .get-update .update-form .update-btn {
        width: 86%;
    }

    /* UPDATES-SECTION END   */
    /* RECENT-NEWS-SECTION-ONE START  */
    .recent-news-section .recent-news-right .news-grid {
        grid-template-columns: 1fr;
    }

    /* RECENT-NEWS-SECTION-ONE END */
    /* HOME-PAGE-TWO HTML END */
    /* HOME-PAGE-THREE START  */
    /* INTRO-SECTION-THREE START  */
    .intro-three-section .intro-three-grid {
        grid-template-columns: 1fr;
    }

    /* INTRO-SECTION-THREE END  */
    /* PRODUCT-TIMMER-SECTION START  */
    .prduct-timmer-section .prduct-timmer-left .timmer-inner {
        padding-left: 10px !important;
    }

    /* PRODUCT-TIMMER-SECTION END  */
    /* FEATURED-SECTION START */
    .featured-section-three {
        padding: 10px 15px;
    }

    /* FEATURED-SECTION END  */
    /* SHOPING-SECTION START  */
    .shopping-section .cart-btn {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 12px;
    }

    .shopping-section .cart-total {
        font-size: 12px;
    }

    .shopping-section .pro-counter {
        width: 60px !important;
    }

    .shopping-section .pro-counter {
        height: 36px;
    }

    .shopping-section .pro-counter button {
        font-size: 14px;
    }

    .shopping-section .pro-counter input {
        font-size: 14px;
        padding-left: 0;
    }

    /* SHOPING-SECTION end  */
    /* SHOp-PRODUCT-SECTION START  */
    .shop-product-section .before-shop-loop {
        display: block;
    }

    .shop-product-section .product-views-buttons {
        padding-top: 5px;
    }

    /* SHOp-PRODUCT-SECTION START  */
    /* CALCULATION-SHOPING-SECTION START */
    .calculate-shipping .calculate-item .select-option {
        font-size: 14px;
        padding: 0 15px;
        width: 200px;
        height: 50px;
        border-radius: 5px;
        border: 1px solid #a3a8af !important;
    }

    /* CALCULATION-SHOPING-SECTION START */
    /* WISTLIST-SECTION START */
    .wishlist-section .wishlist-item .wishlist-table {
        overflow: auto;
    }

    .wishlist-section .wishlist-item .wishlist-table .table-wrapper {
        width: 500px;
    }

    .wishlist-section .wishlist-item .wishlist-table .t-head tr th {
        padding-right: 7px;
    }

    .wishlist-section .wishlist-item .wishlist-table .t-head tr th h6 {
        font-size: 14px;
        line-height: 16px;
    }

    .wishlist-section .wishlist-item .wishlist-table .t-body .wishlist-tr td a img {
        width: 60px;
    }

    .wishlist-section .wishlist-item .wishlist-table .t-body .wishlist-tr td h2 a {
        font-size: 12px;
        line-height: 0px;
    }

    .wishlist-section .wishlist-item .wishlist-table .t-body .wishlist-tr td span a {
        font-size: 12px;
    }

    .wishlist-section .wishlist-item .wishlist-table .t-body .wishlist-tr td .common-btn button {
        font-size: 10px;
        width: 35px;
        height: 35px;
    }

    .wishlist-section .wishlist-item .wishlist-table .t-body .wishlist-tr td .common-btn button i {
        display: flex;
        justify-content: center;
    }

    .wishlist-section .wishlist-item .wishlist-table .t-body .wishlist-tr td .product-cart li:nth-child(2) a i {
        font-size: 12px;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .wishlist-section .wishlist-item .wishlist-table .t-body .wishlist-tr td:nth-child(2) span {
        font-size: 12px !important;
    }

    .wishlist-section .wishlist-item .wishlist-table .t-body .wishlist-tr td:nth-child(3) {
        font-size: 12px;
    }

    .wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td h2 a {
        font-size: 12px;
    }

    .wishlist-section .wishlist-item .wishlist-table .table-wrapper .t-body .wishlist-tr td .product-cart li:nth-child(2) a i {
        font-size: 14px;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    /* WISTLIST-SECTION END */
    /* RECENT-BLOG-SECTION-TWO HTML PSGE START  */
    /* RECENT-BLOG-SECTION START  */
    .recent-news-section .recent-news-right .single-news .news-article .inner-text {
        left: 40px;
        top: 40px;
        right: 40px;
    }

    .recent-news-section .recent-news-right .single-news .news-article .inner-date {
        bottom: 40px;
        left: 40px;
        right: 40px;
    }

    .recent-blog-section .btn_box {
        height: 46px;
        width: 150px !important;
    }

    .recent-blog-section .ev-side-bar .bar-recent-post .recent-post .blog-text h2 {
        font-size: 16px;
    }

    .recent-blog-section .ev-side-bar .bar-catagories ul li a {
        font-size: 15px;
    }

    /* RECENT-BLOG-SECTION END  */
    /* RECENT-BLOG-SECTION-TWO START  */
    .recent-blog-section-two .blog-content-two .row .blog-inner .blog-social {
        margin-top: 15px;
    }

    .recent-blog-section-two .row .blog-content-two .blog-text span {
        font-size: 13px;
    }

    /* RECENT-BLOG-SECTION-TWO END  */
    /* RECENT-BLOG-SECTION-TWO HTML PSGE END  */
    /* SINGLE-BLOG HTML START  */
    .single-blog-section .single-blog-items .product-details li a {
        font-size: 14px;
    }

    .single-blog-section .blog-author-bio .authoi-info {
        padding-top: 5px;
    }

    .single-blog-section .blog-author-bio .authoi-info .author-personal h5 {
        font-size: 18px;
        line-height: 22px;
    }

    .single-blog-section .blog-author-bio .authoi-info .author-personal .authoi-social li a i {
        font-size: 16px;
    }

    .single-blog-section .ev-comments h2 {
        padding-bottom: 0 !important;
    }

    .single-blog-section .ev-comments .comment-text .comment-top h6 {
        font-size: 18px;
    }

    .single-blog-section .ev-comments .comment-text .comment-top span {
        font-size: 13px !important;
    }

    .single-blog-section .ev-comments .comment-text .comment-top a {
        font-size: 12px !important;
    }

    .ev-comments .comment-wrapper .comment-inner:nth-child(3) {
        padding-left: 30px;
    }

    /* SSINGLE-BLOG HTML END  */
    /* HOME-PAGE-THREE END */
    /* CONTACT-US-SECTION START */
    .ev-contact-us-section .ev-top-content {
        text-align: start;
        padding-bottom: 15px;
    }

    .ev-contact-us-section .ev-top-content span {
        font-size: 14px;
        padding-bottom: 5px;
    }

    .ev-contact-us-section .ev-top-content h2 {
        font-size: 26px !important;
        line-height: 32px !important;
    }

    .ev-contact-us-section .common-btn button {
        font-size: 14px;
        width: 165px !important;
        height: 50px;
    }

    .ev-contact-us-section .contact-left .contact-inner ul li a i {
        font-size: 18px;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

    .ev-contact-us-section .contact-left .contact-inner ul li a .inner-text h6 {
        font-size: 18px;
        line-height: 24px;
    }

    .ev-contact-us-section .contact-left .contact-inner ul li a .inner-text span {
        font-size: 14px;
    }

    /* CONTACT-US-SECTION END */
    /* CHECKOUT-SECTION START */
    .checkout-section form.coupon-code {
        flex-wrap: wrap;
        gap: 20px;
    }

    /* CHECKOUT-SECTION END */
    /* FOOTER-SECTION START */
    .footer-section {
        padding: 60px 15px;
    }

    .footer-section .widgets-item .footer-logo img {
        width: 150px;
    }

    .footer-section .widgets-item .widgets-link-items {
        padding: 0;
    }

    .footer-section .widgets-item .widgets-link-items h6 {
        padding-bottom: 10px;
    }

    .footer-section .widgets-item .widgets-link-items:nth-child(2) {
        padding-top: 40px;
    }

    .footer-section .footer-bottom .footer-bottom-left span {
        font-size: 14px;
    }

    .footer-section .footer-bottom .footer-bottom-right ul li {
        padding: 0 3px;
    }

    .footer-section .footer-bottom .footer-bottom-right ul li a {
        font-size: 14px;
    }

    /* FOOTER-SECTION END */
    /* FOOTER-SECTION-TWO START */
    .footer-section-two {
        padding-top: 130px;
    }

    /* FOOTER-SECTION-TWO END */
    /* FOOTER-ICONTOP START */
    .footer_iconTop a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .footer_iconTop a i {
        top: 3px;
    }

    /* FOOTER-ICONTOP END */
}

@media (max-width: 450px) {
    /* HEADER-SECTION START */
    .header-section .mega-menu-wrapper {
        padding: 0;
    }

    .header-section .header-middle .evani-brand a img {
        width: 120px;
    }

    .header-section .inner-wrapper ul li {
        padding-left: 14px !important;
        position: relative;
    }

    .header-section .inner-wrapper ul li:nth-child(2) {
        padding-left: 14px !important;
    }

    .header-section .header-middle .evani-brand a img {
        width: 120px;
    }

    .header-section .inner-wrapper ul .product-cart .view-cart {
        width: 275px !important;
    }

    /* HEADER-SECTION END */
    /* HEADER-SECTION-TWO START */
    .header-section-two .inner-wrapper li:nth-child(3) {
        display: none;
    }

    /* HEADER-SECTION-TWO END */
    /* FEATURED-BTN START */
    .featured-slide-btn {
        position: absolute;
    }

    .featured-slide-btn1 {
        left: 72% !important;
    }

    /* FEATURED-BTN END */
    /* PRODUCT-SECTION START */
    .product-section .ev-products {
        /*grid-template-columns: 1fr;*/
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .product .product-text .product-title {
        font-size: 15px;
        line-height: 16px;
    }

    .product .product-text span {
        font-size: 14px !important;
    }

    .product .product-text li:nth-child(2) span {
        font-size: 11px !important;
    }

    /* PRODUCT-SECTION END */
    /* RECENT-NEWS-SECTION START */
    .recent-news-section .recent-news-right .single-news .news-article .inner-text {
        left: 30px;
        top: 30px;
        right: 30px;
    }

    .recent-news-section .recent-news-right .single-news .news-article .inner-date {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }

    .recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-date h3 a {
        font-size: 12px !important;
    }

    .recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-date span {
        font-size: 12px !important;
    }

    .recent-blog-section .ev-blog-items .blog-inner .social-items {
        display: block !important;
    }

    .recent-blog-section .ev-blog-items .blog-inner .social-items .blog-social {
        margin-top: 20px;
    }

    /* RECENT-NEWS-SECTION END */
    /* EV-COMMENTS START */
    .ev-comments .comment-wrapper .comment-inner:nth-child(3) {
        padding-left: 20px;
    }

    /* EV-COMMENTS END */
    /* RECENT-BLOG-SECTION START */
    .recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-date li {
        padding: 0 15px;
    }

    .recent-blog-section .ev-blog-items .blog-inner .blog-text .blog-date li:nth-child(1) {
        padding-left: 0;
    }

    .recent-blog-section .ev-blog-items .blog-inner .blog-text h2 {
        font-size: 24px;
        line-height: 30px;
    }

    /* RECENT-BLOG-SECTION END */
    /* RECENT-BLOG-SECTION-TWO END */
    .recent-blog-section-two .blog-content-two .blog-text .blog-date li a {
        font-size: 11px !important;
    }

    /* RECENT-BLOG-SECTION-TWO END */
    /* UPDATES-SECTION START */
    .updates-section {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 9;
    }

    .updates-section .ev-top-content span {
        color: #fff;
    }

    .updates-section .ev-top-content h2 {
        color: #fff;
    }

    .updates-section .ev-top-content p {
        color: #fff;
    }

    .updates-section .get-update .update-form input {
        font-size: 15px;
    }

    .updates-section .get-update .update-form .update-btn {
        font-size: 13px;
    }

    /* UPDATES-SECTION END */
}

@media (max-width: 400px) {
    .shop-product-section {
        padding: 60px 10px !important;
    }
}


.reviews-sec .review-header .total-review {
    text-align: center;
}

.reviews-sec .review-header .total-review p {
    font-size: 1.5rem;
}

.reviews-sec .review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    align-items: center;
}

.reviews-sec .review-header .left-review-box {
    display: flex;
    gap: 30px;
    align-items: center;

}

.reviews-sec .review-header .review-counts .review-count-box {
    display: flex;
    align-items: center;
    gap: 4px;
}

.reviews-sec .review-header .review-counts .review-count-box span {
    font-size: .9rem;
}

.progress-box {
    background-color: rgb(227, 227, 227);
    position: relative;
    width: 15em;
    height: 1.5rem;
    margin: 0.5rem;
}

.progress-box .progress-bar {
    width: 85.0325%;
    position: absolute;
    background-color: var(--primary-color);
    height: 1.4em;
    font-size: 1.2rem;
}

.reviews-sec .review-form-cover {
    border: 2px solid var(--primary-color) !important;
    border-radius: 8px;
    padding: 20px;
    display: none;
}

.reviews-sec .review-form-cover.active {
    display: block;
}

.reviews-sec .review-header .right-review-box .white-review {
    margin-bottom: 10px;
}

.reviews-sec .review-header .right-review-box .sort-review select {
    /* min-width: 180px; */
    border-radius: 4px;
    font-size: 0.92rem;
    padding: 0.5rem 1.2rem;
    text-align: center;
}

.reviews-sec .reviews .review {
    padding: 14px 0px;
}

.reviews-sec .reviews .rating-date {
    text-align: center;
}

.stars i {
    margin-bottom: 10px;
    color: #ffa500;
    font-size: .8rem;
}

.reviews-sec .reviews .review-details .review-username {
    font-size: 1.2rem;
    font-weight: 300;
}

.reviews-sec .reviews .review-details .review-username span {
    font-size: .8rem;
}

.reviews-sec .reviews .review-details .review-username span i {
    color: var(--primary-color);
}

.reviews-sec .reviews .review-details p.review-title {
    font-weight: bold;
}

.reviews-sec .reviews .review-details .review-image {
    max-width: 300px;
    max-height: 300px;
}

.reviews-sec .reviews .review-details .review-image img {
    width: 100%;
}

.reviews-sec .reviews .review-details .review-helpful-container {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
}

.reviews-sec .reviews .review-details .review-helpful-container .review-helpful-button {
    display: flex;
    gap: 10px;
}

.reviews-sec .reviews .review-details .review-reply {
    background-color: orange;
    padding: 12px;
    margin-top: 12px;
}

.reviews-sec .reviews .review-details .review-reply .review-reply-title {
    font-weight: 600;
}

.reviews-sec .reviews .review-details .review-reply .review-reply-description p {
    margin-bottom: 0px;
    font-size: .9rem;
}

.bb {
    border-bottom: 2px solid #ccc !important;
}

.btn-1 {
    outline: none;
    box-shadow: none;
    /* min-width: 180px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 2px solid transparent;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5rem 1.7rem;
}

.white-review button.btn-1 {
    padding: 0.5rem 1.2rem;
}

.reviews-sec{
    font-size: 1rem;
}
.download-btn{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 14px !important;
    background-color: #F2AD4A;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
}
