.myNav {
    padding: 1rem 1rem;
    border-bottom: 1px solid #ccc;
}

.myNav.sticky {
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--white-color);
    width: 100%;
    z-index: 999;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
}

.myNav_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown {
    position: relative;
}

.dropdown:hover .dropdown_list ul {
    opacity: 1;
    visibility: visible;
    transition: .2s ease all;
}

.dropdown_list ul {
    position: absolute;
    left: 0;
    top: 2rem;
    width: 200px;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    background-color: var(--white-color);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease all;
    gap: 0 !important;
}

.dropdown_list ul li a:hover {
    background-color: var(--main-color);
    color: var(--white-color) !important;
}

.dropdown_list ul li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.logo img {
    width: 75px;
}

.login {
    display: flex;
    align-items: center;
    position: relative;
}

.login .login_drop a {
    padding: 10px;
    display: block;
    border-bottom: 1px solid #ccc;
}

.login .login_drop {
    position: absolute;
    left: 0;
    top: 1.6rem;
    z-index: 999;
    width: 130px;
    background-color: var(--white-color);
    border: 1px solid #ccc;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease-in;
}

.login:hover .login_drop {
    visibility: visible;
    opacity: 1;
    transition: .3s ease-in;
}



.header_sidebar {
    display: flex;
    gap: 19.2px;
    align-items: center;
}

.header_sidebar a,
.header_sidebar button {
    font-size: 20px;
    color: var(--black-color);
}

.header_sidebar a:hover,
.header_sidebar button:hover {
    color: var(--main-color);
}

/* search_wrapper */
.search_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease all;
}

.search_wrapper.show {
    visibility: visible;
    opacity: 1;
    transition: .3s ease all;
}

.search_cancel {
    position: absolute;
    right: 3rem;
    top: 3rem;
    font-size: 52px;
    cursor: pointer;
    color: #434343;
}

.search_cancel:hover {
    color: #000;
}

.search_wrapper__content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.search_wrapper__content h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 2rem !important;
}

.search_input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    outline: none;
}

.search_input {
    position: relative;
}

.search_input button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 0 20px;
    font-size: 20px;
}

.menu ul {
    display: flex;
    gap: 3rem;
}

.menu ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--black-color);
    font-weight: 600;
}

.topNav p {
    color: var(--white-color);
    background-color: var(--main-color);
    padding: 10px 12px;
    font-size: 15px;
    letter-spacing: 1px;
    text-align: center;
}

/* banner_content */
.banner_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 1rem;
}

.banner_wrapper {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .45)), url('../images/home_banner.webp');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0;
    background-position: center;
}


.banner_content h1 {
    font-size: 45px;
    font-weight: 700;
    color: var(--white-color);
}

.banner_content p {
    margin-top: 1rem;
    line-height: 26px;
    font-size: 18px;
    max-width: 800px;
    color: #fff;
}

.myBtn {
    margin-top: 2rem;
}

.myBtn a:hover {
    color: var(--white-color);
}

.banner_btn .shop_btn {
    background-color: var(--black-color);
}

.banner_btn {
    display: flex;
    gap: 12px;
}

.banner_btn a:hover {
    color: var(--white-color);
}

.menu_icon {
    display: none;
}

.banner_img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.banner_img {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}



/* sale */
.global_wrapper {
    padding: 80px 0;
}

.main_heading {
    text-align: center;
}

.main_heading h2 {
    font-size: 28px;
    text-transform: capitalize;
    font-weight: 700;
}

.main_heading p {
    /*max-width: 800px;*/
    margin: 0 auto;
    margin-top: 12px !important;
    line-height: 26px;
}

.global_content {
    margin-top: 3rem;
}

.sale_box__img {
    position: relative;
    overflow: hidden;
}

.sale_box__img .hide_img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s linear, transform 0.3s linear;
}

.sale_box__discount span {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 4px 10px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 13px;
    font-weight: 600;
}

.sale_box__img img {
    width: 100%;
    height: 575px;
    object-fit: cover;
    transition: opacity 0.3s linear, transform 0.3s linear;
}

.cart {
    position: relative;
}

.cart_no p {
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 10px;
    background-color: var(--main-color);
    color: var(--white-color);
    height: 20px;
    width: 20px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart_hover a {
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    background-color: var(--main-color);
    text-align: center;
    padding: 5px;
    font-size: 15px;
    color: var(--white-color) !important;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 600;
    transition: .3s ease all;
}

.sale_box:hover {
    border: 1px solid var(--black-color);
}

.sale_box:hover .sale_box__discount span {
    background-color: var(--main-color);
    color: var(--white-color);
}

.sale_box:hover .cart_hover a {
    bottom: 0;
    transition: .3s ease all;
}

.sale_box:hover .hide_img {
    transition: opacity 0.3s linear, transform 0.3s linear;
    visibility: visible;
    opacity: 1;
    transform: scale(1.1);
}

.sale_box {
    border: 1px solid #ccc;
    margin: 0 10px;
}

.sale_box__content {
    border-top: 1px solid #ccc;
    padding: 10px;
}

.sale_box__content h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.sale_box__content p {
    font-size: 13px;
    margin-top: 4px;
    color: var(--black-color);
}

.sale_box__content .price__old {
    color: var(--black-color) !important;
}

.price {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 7px;
}

.price span {
    font-weight: 600;
}

.price .price__new {
    color: var(--main-color);
}

/* categories_wrapper */
.category-chintu .categories_box__content a{
    color: #000 !important;
}
.categories_wrapper {
    border-bottom: 1px solid #ccc;
    background-color: var(--dark-blue);
    color: #fff;
}

.categories_box__img img {
    height: 150px;
    width: 150px;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
}

.categrories_grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    display: grid;
}

.categories_box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.categories_box__content a {
    text-align: center;
    width: 100%;
    color: var(--white-color);
    font-size: 20px;
    margin-top: 12px;
    font-weight: 600;
    display: block;
    text-align: center;
    text-transform: capitalize;
}

.categories_box__content a:hover {
    color: var(--main-color);
}

/* ecom_box */
.ecom_box {
    text-align: center;
    border: 1px solid #ccc;
    transition: .3s ease all;
    padding: 1rem;
    background-color: #fff;
}

.ecom_box:hover {
    box-shadow: 0 0 4px rgba(0, 0, 0, .5);
    transform: translateY(-10px);
    transition: .3s ease all;
    background-color: whitesmoke;
}

.ecom_box__img img {
    width: 100px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.ecom_box__content h6 {
    text-transform: capitalize;
    margin-top: 20px;
    font-size: 23px;
    font-weight: 600;
}

.ecom_box__content p {
    margin-top: 12px;
    font-size: 15px;
}

.ecom_grid {
    padding: 80px 0;
    background-color: var(--dark-blue);
}

/* parralex_wrapper */
.parralex_wrapper {
    background-image: url('../images/parralex.jpg');
    /* background: linear-gradient(-90deg, rgba(0, 0, 0, .17), rgba(0, 0, 0, .87)), url('../images/parralex.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.parralex_left h3 {
    font-size: 65px;
    color: var(--white-color);
    font-weight: 700;
}

.parralex_left p {
    font-size: 20px;
    margin-top: 1rem;
    color: var(--white-color);
    line-height: 1.54;
    max-width: 600px;
}

.parralex_left h6 {
    margin-top: 1rem;
    font-size: 24px;
    color: var(--white-color);
}

/* testimonial_box */
.testimonial_box {
    display: flex !important;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: 2rem;
    margin: 0 10px;
}

.testimonial_box__img img {
    height: 120px;
    width: 120px;
    border-radius: 100%;
}

.testimonial_box__content {
    width: 80%;
}

.testimonial_box__content p {
    font-size: 15px;
    line-height: 25px;
}

.testimonial_box__content h6 {
    margin-top: 10px;
    font-weight: 600;
}

.testimonial_slider .slick-dots {
    line-height: 0;
    bottom: -4rem;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li {
    height: 16px !important;
    width: 16px !important;
    border-radius: 100%;
    background-color: #ddd;
}

.slick-dots li.slick-active {
    background-color: var(--main-color);
    transition: .3s ease;
}

.mobile_content ul li a {
    display: block;
    padding: 12px;
    border-bottom: 1px solid #ccc;
    text-transform: capitalize;
    font-size: 16px;
    color: var(--black-color);
    font-weight: 500;
    letter-spacing: 1px;
}

.drop--btn-list {
    height: 0;
    overflow: hidden;
}

.drop--btn.active .drop--btn-list {
    height: auto;
    overflow: auto;
}

.drop--btn .drop--btn-name {
    position: relative;
}

.drop--btn .drop--btn-name::after {
    content: '\002B';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color: var(--black-color);
    transition: .3s ease;
}

.drop--btn.active .drop--btn-name::after {
    color: var(--white-color);
    content: '\2212';
}

.drop--btn-list li a {
    padding-left: 1.5rem !important;
}

.drop--btn.active .drop--btn-name {
    background-color: var(--main-color);
    color: var(--white-color);
}


.mobile_social {
    position: absolute;
    left: 0;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    bottom: 0;
    padding: 1rem 0;
    background-color: var(--white-color);
    border-top: 1px solid #ccc;
    /* box-shadow: 0 0 4px rgba(0, 0, 0, .45); */
}

.mobile_social h6 {
    text-transform: capitalize;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--main-color);
    font-weight: 600;
}

.mobile_social__links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

.mobile_social__links a:hover {
    color: var(--main-color);
}

.mobile_social__links a {
    color: var(--black-color);
    font-size: 18px;
}
.footer_wrapper,.copyright p{
    font-style: normal;
}


@media(max-width:1440px) {
    .sale_box__img img {
        object-fit: contain;
    }

    .banner_wrapper {
        padding: 200px 0;
    }

    .sale_box__img img {
        height: 410px;
    }

    .banner_content h1 {
        font-size: 44px;
    }

}

@media(max-width:1200px) {
    .banner_content {
        border-bottom: 0;
    }

    .banner_content h1 {
        font-size: 34px;
    }

    .ecom_box__content h6 {
        font-size: 18px;
    }

    .ecom_box__content p {
        font-size: 14px;
    }

    .ecom_box__img img {
        width: 75px;
    }

    .categories_box__img img {
        height: 120px;
        width: 120px;
    }

    .categories_box__content a {
        font-size: 17px;
    }

    .parralex_left h6 {
        font-size: 20px;
    }

    .parralex_left h3 {
        font-size: 50px;
    }

    .parralex_left p {
        font-size: 18px;
    }

    .testimonial_box {
        padding: 1rem;
    }
}

@media(max-width:992px) {
    .menu,.myNav_content .logo {
        display: none;
    }

    .sale_box__img img {
        height: 350px;
    }

    .ecom_box__content h6 {
        max-width: 72px;
        margin: 0 auto;
        margin-top: 12px !important;
        font-size: 16px;
    }

    .banner_flex {
        flex-direction: column-reverse;
    }

    .banner_img img {
        object-position: top;
        height: auto;
    }

    .logo img {
        width: 60px;
    }

    .menu ul {
        gap: 2rem;
    }
      .menu_icon {
        display: block;
    }

    .menu_icon i {
        font-size: 30px;
    }
}

@media(max-width:768px) {
    .banner_wrapper {
        padding: 70px 0;
    }

    .categrories_grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .banner_content {
        text-align: center;
    }

    .banner_btn {
        justify-content: center;
    }

   

    .search_wrapper__content {
        width: 90%;
        top: 15%;
    }

    .search_wrapper__content h3 {
        font-size: 22px;
        margin-bottom: 12px !important;
    }

    .search_cancel {
        top: 1rem;
        right: 1rem;
        font-size: 34px;
    }

  

    .ecom_grid {
        padding-bottom: 50px;
    }



    .global_content {
        margin-top: 2rem;
    }

    .global_wrapper {
        padding: 50px 0;
    }

    .categories_box__img img {
        height: 100px;
        width: 100px;
    }

    .ecom_box {
        margin-bottom: 20px;
        height: 95%;
    }

    .main_heading p {
        font-size: 14px;
        line-height: 24px;
    }

    .categories_box__content a {
        font-size: 20px;
    }

    .testimonial_slider .slick-dots {
        bottom: -2.5rem;
    }

    .testimonial_box__content p {
        font-size: 14px;
    }

    .banner_content h1 {
        font-size: 22px;
        line-height:1.4;
    }

    .banner_content p {
        font-size: 14px;
        margin-top: 6px;
    }

    .myBtn {
        margin-top: 1.25rem;
    }

    .sale_box {
        margin: 0 5px;
    }

    .parralex_left h3 {
        font-size: 32px;
    }

    .parralex_left p {
        font-size: 16px;
    }

    .parralex_left h6 {
        font-size: 17px;
    }

    
}

@media(max-width:576px) {
    .topNav p {
        padding: 6px;
        font-size: 8px;
    }
.header_sidebar a,.header_sidebar button{
    font-size: 30px;
}
    .login .login_drop {
        width: 150px;
        top: 1.7rem;
    }

    .drop--btn-list li a {
        font-size: 15px !important;
    }

    .login a {
        font-size: 21px;
        text-transform: capitalize;
    }

    .login .login_drop a {
        font-size: 15px;
    }

    .main_heading h2 {
        font-size: 23px;
    }
    .footer_wrapper .logo img{
        margin-left: 0;
    }


    .myNav {
        padding: 16px 0;
    }

    .logo img {
        width: 70px;
    }

    .header_sidebar {
        gap: 18px;
    }



    .banner_img img {
        height: auto;
    }

    .sale_box__img img {
        height: 250px;
    }

    .ecom_box__content p {
        font-size: 12px;
        margin-top: 6px;
    }

    .parralex_wrapper {
        background-attachment: inherit;
    }


    .parralex_left p {
        font-size: 14px;
        margin-top: 7px;
    }

    .parralex_left h6 {
        font-size: 15px;
        max-width: 245px;
        line-height: 1.6;
    }

    .parralex_left p {
        max-width: 260px;
    }

    .sale_box__content p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .sale_box__content h6 {
        font-size: 14px;
        line-height: 21px;
    }

    .sale_box__discount span {
        font-size: 11px;
        padding: 4px 6px;
    }

    .cart_hover button {
        font-size: 13px;
    }

    .categories_box__content a {
        font-size: 16px;
        border-radius: 3px;
    }

    .testimonial_box {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem 10px;
        gap: 6px;
        margin: 0 5px;
    }

    .testimonial_box__img img {
        height: 90px;
        width: 90px;
    }

}

@media(max-width:420px) {
    .mobile_content {
        height: 600px;
        overflow-y: scroll;
        padding-bottom: 10rem;
    }
     .topNav p {
        padding: 6px 2px;
        font-size: 6px;
    }
}