* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    /* overflow: hidden; */
    ::-webkit-scrollbar {
        width: 11px;
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    ::-webkit-scrollbar-track {
        box-shadow: none;
        border-radius: 10px;
        background: #f1f1f1;
    }
}

img {
    user-select: none !important;
}

/* ==================== Fonts ==================== */

@font-face {
    font-family: epilogue_medium;
    src: url(../../fonts/Epilogue/static/Epilogue-Medium.ttf);
}

.epilogue_medium {
    font-family: epilogue_medium;
}

@font-face {
    font-family: epilogue_bold;
    src: url(../../fonts/Epilogue/static/Epilogue-Bold.ttf);
}

.epilogue_bold {
    font-family: epilogue_bold;
}

@font-face {
    font-family: epilogue_regular;
    src: url(../../fonts/Epilogue/static/Epilogue-Regular.ttf);
}

.epilogue_regular {
    font-family: epilogue_regular;
}

/* ==================== !Fonts ==================== */


/* ==================== Hover_Effect ==================== */
.hover_effect {
    overflow: hidden;
    position: relative;
    display: block;
}

.hover_effect::before,
.hover_effect::after {
    background-color: rgba(255, 255, 255, 0.6);
    content: "";
    height: 100%;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    transition: all 0.9s ease 0s;
    width: 100%;
    z-index: 1;
}

.hover_effect::before {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    -moz-transform: translate(105%, 0%);
    -webkit-transform: translate(105%, 0%);
    transform: translate(105%, 0%);
}

.hover_effect::after {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    -moz-transform: translate(-105%, 0%);
    -webkit-transform: translate(-105%, 0%);
    transform: translate(-105%, 0%);
}

.hover_effect:hover:before,
.hover_effect:hover:after {
    opacity: 0;
    -moz-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

/* ==================== !Hover_Effect ==================== */

/* ==================== Buttons ==================== */

.next_btn {
    background-color: black !important;
    padding: 12px 70px !important;
    border: 1px solid black !important;
    border-radius: 30px !important;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
    -ms-border-radius: 30px !important;
    -o-border-radius: 30px !important;
}

/* ==================== !Buttons ==================== */

/* ==================== Top_Header ==================== */

.top-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    background: black;
    padding: 7px 0px;
}

.top-header a {
    color: white;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    font-size: 14px;
}

.top-header i {
    color: white;
}

.top-header i:hover,
.top-header a:hover {
    color: white;
}

/* ==================== Top_Header ==================== */

/* ==================== Navbar ==================== */

.active a {
    color: black;
}

#header.scrolled {
    border-bottom-color: #e1e1e1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
    width: 100%;
    /* height: 35px; */
    /* position: fixed; */
    /* margin-top: 10px; */
    /* top: 0;
    left: 0;
    right: 0;
    z-index: 999; */
}

.nav-container {
    width: 100%;
    /* margin: 0 auto; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    background: white;
    padding: 20px 0px;
}

.logo {
    width: 150px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a.active {
    color: black !important;
    font-weight: 500;
}

.nav-menu li {
    margin-left: 31px;
}

.nav-menu li a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    font-size: 14px;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    border-radius: 10px !important;
}

.shopping_icon {
    display: none;
}

.bar {
    width: 23px;
    height: 3px;
    background-color: white !important;
    margin: 5px 0px !important;
    transition: 0.4s;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
}

.search-box {
    display: flex;
    align-items: center;
    position: relative;
}

.search-icon {
    position: absolute;
    right: 14px;
    color: #8d8d8d;
    width: fit-content;
}

.search-input {
    padding: 8px 3px;
    border: 1px solid #f3f3f3;
    background-color: #f3f3f3;
    border-radius: 30px !important;
    padding-right: 0px;
    padding-left: 12px;
    width: 170px;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
    -ms-border-radius: 30px !important;
    -o-border-radius: 30px !important;
}

.search-input:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: none !important;
}

.select_size:focus {
    box-shadow: none !important;
    border-color: #cbcbcb !important;
}

.search-input::placeholder {
    font-family: epilogue_regular, sans-serif;
    color: #999;
    font-size: 14px;
}

/* ==================== !Navbar ==================== */

/* ==================== Hero_Section ==================== */

.shop_now_btn {
    font-size: 18px !important;
    padding: 18px 38px !important;
    background-color: black !important;
    border: black 1px solid !important;
}

.slider_img {
    position: relative;
}

.slider_img_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    background-color: black !important;
    width: 13px;
    height: 13px;
}

.slider_1_desktop [class^="swiper-button-"]::after {
    font-size: 25px !important;
    /* color: #cecece !important; */
    color: #FFFFFF;
    font-weight: 700 !important;
}

.products_slider [class^="swiper-button-"]::after {
    font-size: 25px !important;
    color: #cecece !important;
    font-weight: 700 !important;
}

.slider_1_mobile [class^="swiper-button-"]::after {
    display: none;
}

/* ==================== !Hero_Section ==================== */

.slider_2 [class^="swiper-button-"]::after {
    font-size: 25px;
    color: grey;
    font-weight: 700;
}

.card_right,
.card_left {
    position: relative;
}

.card_right .card_right_content,
.card_left .card_left_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==================== Products_Card ==================== */

.products_card .products_card_content p {
    font-size: 16px !important;
    color: #757575 !important;
}

.products_card .products_card_content h1 {
    font-size: 40px !important;
}

.products_card .card {
    position: relative;
    overflow: hidden;
    transition: transform 0.1s;
    -webkit-transition: transform 0.1s;
    -moz-transition: transform 0.1s;
    -ms-transition: transform 0.1s;
    -o-transition: transform 0.1s;
}

.shopping-bag-icon {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: white;
    position: absolute;
    top: 20px;
    right: 20px;
    visibility: hidden;
    transition: visibility 0.1s ease;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    -webkit-transition: visibility 0.1s ease;
    -moz-transition: visibility 0.1s ease;
    -ms-transition: visibility 0.1s ease;
    -o-transition: visibility 0.1s ease;
}

.shopping-bag-icon:hover {
    background-color: black;
}

.shopping-bag-icon:hover svg rect,
.shopping-bag-icon:hover svg path {
    fill: white;
}

.shopping-bag-icon svg {
    position: absolute;
    top: 7px;
    right: 10px;
}

.products_card .card:hover .shopping-bag-icon {
    visibility: visible;
}

.best_catagories .owl-dots {
    display: none !important;
}

.products_card .owl-dots {
    text-align: center;
}

.products_card .owl-dots button.owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}

.products_card .owl-dots button.owl-dot.active {
    background-color: #000;
    width: 13px;
    height: 13px;
}

.products_card .owl-nav .owl-prev span,
.products_card .owl-nav .owl-next span {
    display: none;
}

.products_card .owl-nav {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 45%;
    transform: translateY(-25px);
}

.products_card .owl-nav .owl-prev {
    position: absolute;
    left: -40px;
    outline: none;
}

.products_card .owl-nav .owl-prev:before {
    font-family: 'FontAwesome';
    color: #cecece;
    font-size: 25px;
    font-weight: 700;
    content: '\f104';
}

.products_card .owl-nav .owl-next {
    outline: none;
    position: absolute;
    right: -40px;
}

.products_card .owl-nav .owl-next:before {
    font-family: 'FontAwesome';
    color: #cecece;
    font-size: 25px;
    font-weight: 700;
    content: '\f105';
}

/* ==================== !Products_Card ==================== */

/* ==================== latest_News ==================== */

.latest_news .latest_news_content p {
    font-size: 16px !important;
}

.latest_news .latest_news_content h1 {
    font-size: 40px !important;
}

/* ==================== !latest_News ==================== */

/* ==================== Hero_Banner_Cards ==================== */
.hero_banner2_card,
.hero_banner1_card {
    position: relative;
}

.hero_banner2_card .hero_banner2_card_content {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 450px;
    height: 100%;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: start; */
}

.hero_banner1_card .hero_banner1_card_content {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 400px;
    height: 100%;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: start; */
}

.hero_banner2_card .hero_banner2_card_content a,
.hero_banner2_card .hero_banner2_card_content a i,
.hero_banner2_card .hero_banner2_card_content h6,
.hero_banner1_card .hero_banner1_card_content a,
.hero_banner1_card .hero_banner1_card_content a i,
.hero_banner1_card .hero_banner1_card_content h6 {
    font-size: 18px;
}

.hero_banner1_card .hero_banner1_card_content p {
    max-width: 245px;
    font-size: 18px;
}

.hero_banner2_card .hero_banner2_card_content a,
.hero_banner1_card .hero_banner1_card_content a {
    position: relative;
    transition: transform 0.3s;
    color: black;
}


.hero_banner2_card:hover i,
.hero_banner1_card:hover i {
    transform: translateX(3px);
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -ms-transform: translateX(3px);
    -o-transform: translateX(3px);
}

/* .hero_banner2_card .hero_banner2_card_content:hover i,
.hero_banner1_card .hero_banner1_card_content:hover i {
    transform: translateX(3px);
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -ms-transform: translateX(3px);
    -o-transform: translateX(3px);
} */

/* ==================== !Hero_Banner_Cards ==================== */

/* ==================== Facility ==================== */

.facility .facility_content {
    background-color: #F3F6F9;
    width: 100%;
    height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
}

.facility .facility_content h5 {
    font-size: 18px !important;
}

/* ==================== !Facility ==================== */

/* ==================== Testinomials ==================== */

.testinomials.swiper-slide .line::before {
    content: "";
    position: absolute;
    right: -12;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background-color: black;
}

.testinomials .card-body p {
    font-size: 17px;
}

.testinomials .testinomials_content p {
    color: #757575;
    font-size: 16px;
}

.testinomials .testinomials_content h1 {
    font-size: 40px;
}

/* ==================== !Testinomials ==================== */

/* ==================== Footer ==================== */

.footer h1 {
    max-width: 559px;
}

.footer p {
    font-size: 16px;
    color: #B6B4B4;
}

.custom-input-group .search_field_box,
.custom-input-group .search_field {
    border-radius: 0;
}

.custom-input-group .search_field_box {
    background-color: black;
}

.custom-input-group .search_field:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid white;
}

.search_field::placeholder {
    font-family: epilogue_medium, sans-serif;
    color: #999;
}

/* ==================== !Footer ==================== */

/* ==================== Hero_Banner_Main ==================== */

.hero_banner_main {
    position: relative;
    /* margin-top: calc(130px - 54px); */
}

.hero_banner_main_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero_banner_main_content h1 {
    font-size: 100px;
}

/* ==================== !Hero_Banner_Main ==================== */

/* ==================== Hero_Banner_Boby ==================== */

.hero_banner_body .products_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero_banner_body .products_pagination .prev {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 35px;
    border: 1px solid #9d9b9b;
}

.hero_banner_body .products_pagination .prev:before {
    font-family: 'FontAwesome';
    color: #9d9b9b;
    font-size: 20px;
    /* font-weight: 700; */
    content: '\f104';
}

.hero_banner_body .products_pagination .num_change {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 35px;
    border: 1px solid #9d9b9b;
}

.hero_banner_body .products_pagination .next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 35px;
    border: 1px solid #9d9b9b;
}

.hero_banner_body .products_pagination .next:before {
    font-family: 'FontAwesome';
    color: #9d9b9b;
    font-size: 20px;
    content: '\f105';

}

.hero_banner_body .products {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==================== !Hero_Banner_Boby ==================== */


/* ==================== About_US ==================== */

.about_us {
    width: 100%;
}

.about_us_content {
    max-width: 973px;
}

.about_us_content p {
    line-height: 1.9;
}

.about_2_content,
.about_1_content {
    max-width: 510px;
}

.about_2_content,
.about_1_content {
    color: #B6B4B4 !important;
    line-height: 1.7;
}

/* ==================== !About_US ==================== */

/* ==================== Contact_US ==================== */

.input_field:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: #ccc !important;
}

.input_field {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.resizable-textarea {
    resize: none !important;
}

.address_map .card {
    background-color: #e8ebee !important;
}

.address_map .card .card-body p {
    font-size: 15px !important;
}

/* 
/* ==================== !Contact_US ==================== */

.terms_conditions,
.shopping_return {
    padding-top: 180px;
    padding-bottom: 100px;
}

.best_catagories h5 {
    font-size: 18px !important;
}

.multi_columns li a {
    color: #8d8d8d !important;
}

.multi_columns .dropdown-item:focus,
.multi_columns .dropdown-item:hover {
    background-color: transparent !important;
}

.thumbnail_slider .swiper-slide-active img {
    border: 1px solid #cecece;
}

.products_detail_card {
    margin-top: 130px;
}


.add-to-cart {
    display: flex;
    align-items: center;
}

.check_out {
    background-color: black !important;
    border-color: black !important;
    padding: 14px 60px 14px 60px !important;
}

.check_out:hover {
    background-color: black !important;
    border-color: black !important;
}

.add_cart_btn {
    background-color: black !important;
    border-color: black !important;
    padding: 14px 40px 14px 40px !important;
}

.btn:first-child:active {
    background-color: black !important;
    border-color: black !important;
}

.add_cart_btn:hover {
    background-color: black;
    border-color: black;
}

.quantity-input {
    width: 65px;
    text-align: center;
    color: #989898;
    font-family: epilogue_medium;
    font-size: 18px;
}

.quantity-input:focus-visible {
    outline: none !important;
}

.minus-btn,
.plus-btn {
    background: none;
    border: 2px solid #bababa;
    border-radius: 100%;
    cursor: pointer;
    width: 28px;
    height: 28px;
}

.minus-btn i,
.plus-btn i {
    color: #bababa;
}




::selection {
    background-color: black;
    color: white;
}