@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Jost", sans-serif;
}

a {
    text-decoration: none !important;
}

:root {
    --main-color: #E7272D;
    --sub-color: #FFE119;
    --third-color: white;
    --smoke-color: #faf7f2;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: var(--main-color);
}

/*top header style*/
header {
    background: var(--main-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 999;
}

.top-haeder {
    padding: 10px 0px;
    border-bottom: 1px solid #ffffff50;
}

.top-header-left .currency a,
.top-header-left .language a {
    outline: none;
    background: transparent;
    color: var(--third-color);
    border: none;
    font-size: 13px;
}

.top-header-left .currency .option-menu,
.language .option-menu {
    background-color: var(--third-color);
    width: 100%;
    clip-path: polygon(100% 100%, 0 100%, 0 10%, 44% 10%, 50% 0, 56% 10%, 100% 10%);
    padding-top: 11px;
    transform: translate(0px, 25px);
    opacity: 0;
    display: none;
}

.top-header-left .currency .option-menu li a,
.language .option-menu li a {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    transition: .6s;
}

.top-header-left .currency .option-menu li,
.language .option-menu li {
    background-color: var(--third-color);
    text-align: center;
    padding: 5px 10px;
    transition: .6s;
    cursor: pointer;
}

.top-header-left .currency .option-menu li:hover,
.language .option-menu li:hover {
    transition: .6s;
}

.top-header-left .currency .option-menu li:hover a,
.language .option-menu li:hover a {
    transition: .6s;
    color: var(--main-color);
}


.top-header-left .currency>a,
.language>a {
    font-size: 13px;
    display: flex;
    color: var(--third-color);
    width: 100px;
    justify-content: space-between;
}

.language>a {
    width: 80px;
}

.top-header-left .currency>a span:nth-child(2),
.language>a span:nth-child(2) {
    display: block;
    margin-top: 2px;
}

.top-header-left .currency,
.top-header-left .language {
    position: relative;
}

.top-header-left .currency:hover .option-menu,
.language:hover .option-menu {
    animation: fade-up .5s ease-in-out forwards alternate;
    display: block;
}

@keyframes fade-up {
    0% {
        transform: translate(0px, 25px);
        opacity: 0;

    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

.top-header-left .currency .option,
.language .option {
    width: 150px;
    position: absolute;
    z-index: 9;
}

.top-header-right ul.user_option li a {
    color: var(--third-color);
    font-size: 14px;
    transition: .6s;
}

.top-header-right ul.user_option li a:hover {
    color: var(--sub-color);
    transition: .6s;
}

/*header style*/
.logo a h3 {
    font-size: 45px;
    color: var(--sub-color);
    margin-bottom: 0;
}

.logo a h3 span {
    color: var(--third-color);
}

.main-header {
    padding: 10px 0px;
    border-bottom: 1px solid #ffffff50;
}

.header_left .search-bar form.search-bar-form {
    position: relative;
    width: 300px;
    height: 45px;
}

.offcanvas2 .offcanvas-header>button:hover {
    background-color: var;
}

.offcanvas2 .offcanvas-header {
    background: var(--main-color);
}

.offcanvas2 {
    width: 300px !important;
}

.offcanvas2 button.btn-close {
    background: var(--sub-color) !important;
    color: var(--main-color) !important;
    transition: .6s;
}

.offcanvas2 button.btn-close:hover {
    background: var(--third-color) !important;
    transition: .6s;
}

.page_button {
    padding: 10px 25px;
    font-weight: 600;
    outline: none;
    border: none;
    background-color: var(--third-color);
    color: var(--main-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: .6s;
    font-size: 16px;
}

.page_button span {
    position: relative;
    z-index: 9;
}

.page_button::after {
    content: " ";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: var(--sub-color);
    display: block;
    left: 0;
    top: 0;
    transition: .6s;

}

.page_button:hover span {
    color: var(--main-color);
}

.page_button:hover::after {
    width: 100%;
}

.header_left .search-bar form.search-bar-form input {
    outline: none;
    border: 1px solid var(--sub-color);
    padding: 0px 15px;
    background: var(--third-color);
    font-size: 14px;
    width: 100%;
    height: 100%;
    color: #333;
    border-radius: 3px;
}

.header_left .search-bar form.search-bar-form input::placeholder {
    color: #333;
}

.header_left .search-bar form.search-bar-form button {
    position: absolute;
    outline: none;
    height: 100%;
    width: 45px;
    border: none;
    right: 0;
    background: var(--sub-color);
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    cursor: pointer;
    transition: .6s;
    color: var(--main-color);
}

.header_left .search-bar form.search-bar-form button:hover {
    color: var(--main-color);
    background: var(--sub-color);
    transition: .6s;
}

.header_left .shopping_option ul li a {
    width: 40px;
    height: 100%;
    display: block;
}

.bottom_header {
    border-bottom: 1px solid #ffffff50;
}

.bottom_header_wrapper {
    padding: 5px 0px;
}

.header_left .shopping_option ul {
    height: 40px;
}

.header_left .shopping_option ul {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

.header_left .shopping_option ul li a {
    width: 45px;
    display: block;
    display: grid;
    place-items: center;
    height: 45px;
    background: var(--third-color);
    color: var(--main-color);
    border-radius: 3px;
    transition: .6s;
    font-size: 14px;
}

.header_left .shopping_option ul li a:hover {
    transition: .6s;
    background: var(--sub-color);
}

.header_left .shopping_option ul li:last-child .shop_div2 a {
    background: transparent;
    color: var(--third-color);
    border: none;
    width: 80px;
}

.header_left .shopping_option ul li:last-child a:hover .shopping_option ul li:nth-child(2) .shop_div a {
    background: var(--sub-color);
    color: var(--main-color);
    transition: .6s;
}

.header_left .shopping_option ul li:nth-child(2) .shop_div a:before {
    content: "0";
    position: absolute;
    width: 25px;
    display: grid;
    height: 25px;
    background: var(--sub-color);
    border-radius: 3px;
    color: var(--main-color);
    place-items: center;
    font-size: 14px;
    left: -13px;
    transition: .6s;
}

.header_left .shopping_option ul li:nth-child(2) a {
    position: relative;
}

.header_left .shopping_option ul li:nth-child(2) .shop_div:hover a:before {
    background: var(--third-color);
    color: var(--main-color);
}

.header_left .shopping_option ul li:nth-child(2) .shooping_overview .shopping_wrapper {
    width: 500px;
    height: 200px;
    background: var(--third-color);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    clip-path: polygon(0 97%, 0 7%, 89% 7%, 92% 0, 95% 7%, 100% 7%, 100% 100%);
}

.header_left .shopping_option ul li:nth-child(2) .shooping_overview {
    position: absolute;
    right: 0;
    display: none;
    transform: translate(0px, 20px);
    padding: 10px;
    padding-right: 0;
    padding-top: 5px;
    z-index: 99;
}

.header_left .shopping_option ul li:nth-child(2) {
    position: relative;
}

.header_left .shopping_option ul li:nth-child(2):hover .shooping_overview {
    display: block;
    animation: fade_shop .8s ease-in-out forwards alternate;
}

@keyframes fade_shop {
    0% {
        transform: translate(0px, 20px);
        opacity: 0;

    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

ul#desktop_menu .nav-item {
    margin-right: 10px;
}

ul#desktop_menu {
    padding: 10px 0px;
    flex-direction: row;
    gap: 20px;
    color: white;
    font-size: 14px;
    align-items: center;
}

.nav-link {
    color: var(--third-color) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.cart_info .cart_button .decrease {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.cart_info .cart_button .increase {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.cart_product .single_product.d-flex .cart_img {
    width: 110px;
    height: 110px;
    margin-right: 10px;
    border-radius: 100%;
    border: 2px solid var(--main-color);
    overflow: hidden;
    background: white;
}

.cart_product .single_product.d-flex .cart_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div#offcanvasRight {
    background-color: var(--third-color);
    color: var(--main-color);
    min-height: 100vh;
}

.offcanvas-header {
    border-bottom: 1px solid var(--main-color);
}

.cart_info .cart_star span {
    color: var(--main-color);
    font-weight: 500;
}

.cart_info h3 a {
    color: black;
    font-size: 22px;
    margin-bottom: 5px;
    transition: .6s;
}

.cart_info h3 a:hover {
    color: var(--main-color);
    transition: .6s;
}

.cart_info .cart_product_price {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart_info .cart_button span {
    font-size: 12px;
    width: 25px;
    height: 100%;
    /* border-radius: 100%; */
    background: var(--sub-color);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart_info .cart_button input::-webkit-inner-spin-button,
.cart_info .cart_button input::-webkit-outer-spin-button,
.single_input input[type="number"]::-webkit-inner-spin-button,
.single_input input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
}

.cart_info .cart_button input {
    width: 50px;
    background: var(--main-color);
    outline: none;
    border: none;
    text-align: center;
    color: var(--sub-color);
    height: 35px;
    font-size: 16px;
    padding: 0px 10px;
}

.cart_info .cart_star {
    font-size: 11px;
    align-items: center;
    margin-bottom: 5px;
}

.cart_info .cart_star .review_count {
    margin-left: 5px;
}

.cart_info .cart_star {
    font-size: 11px;
    align-items: center;
    margin-bottom: 5px;
    color: #EFC80B;
}

.cart_info .cart_star .review_count {
    margin-left: 5px;
}

.offcanvas-header>button {
    background: var(--main-color) !important;
    opacity: 1;
    color: var(--sub-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    transition: .6s;
}

.offcanvas-header>button:hover {
    transition: .6s;
    background-color: var(--sub-color) !important;
    color: var(--main-color) !important;
    opacity: 1;
}

.cart_view {
    padding: 15px 0px;
    border-top: 1px solid var(--main-color);
}

.cart_product {
    padding: 20px 0px;
}

.cart_view .cart_count h3 {
    margin-bottom: 0;
    font-size: 22px;
}

.cart_view .cart_count .cart_total {
    font-size: 16px;
    font-weight: 500;
}

.cart_view .cart_view_button {
    margin-top: 15px;
    gap: 15px;
}

.cart_view .cart_view_button a {
    padding: 15px 35px;
    background: var(--sub-color);
    color: var(--main-color);
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: .6s;
    width: 100%;
    text-align: center;
}

.cart_view .cart_view_button a:hover {
    background: var(--main-color);
    color: var(--sub-color);
    transition: .6s;
}

.cart_view .cart_view_button a:last-child:hover {
    background: var(--sub-color);
    color: var(--main-color);
    transition: .6s;
}

.cart_view .cart_view_button a:last-child {
    background: var(--main-color);
    color: var(--sub-color);
    transition: .6s;
}
.button_side {
    display: flex;
}
.button_side a:hover span {
    color: var(--main-color);
    z-index: 9;
    position: relative;
    transition: .6s;
}
.button_side a::after {
    content: " ";
    background: var(--third-color);
    position: absolute;
    width: 0%;
    height: 100%;
    transition: .6s;
}

.button_side a:hover::after {
    width: 100%;
    transition: .6s;
}
.button_side a {
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    padding: 0 25px;
    color: var(--main-color);
    background-color: var(--sub-color);
    font-size: 16px;
    font-weight: 600;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    right: 0;
    transition: .6s;
}
.bottom_header_wrapper .button_side button {
    height: 45px;
    border: none;
    outline: none;
    width: 45px;
    font-size: 20px;
    background: var(--third-color);
    color: var(--main-color);
    border-radius: 3px;
    transition: .6s;
}

.bottom_header_wrapper .button_side button:hover {
    background: var(--sub-color);
    color: var(--main-color);
    transition: .6s;
}

/*hero section*/

.single_hero_slider .slider_title h2 {
    font-size: 50px;
    color: var(--third-color);
    font-weight: 600;
}

.single_hero_slider .slider_info p {
    font-size: 15px;
    line-height: 1.5rem;
    color: #ffffffd6;
}

.section_button {
    font-size: 18px;
    background-color: var(--sub-color);
    color: black;
    padding: 12px 35px;
    border-radius: 50px;
    transition: .6s;
    font-weight: 600;
    box-shadow: #ffe1199c 0px 20px 30px -10px;
}

.slider_content .slider_button {
    margin-top: 37px;
    display: flex;
}

.section_button:hover {
    color: var(--main-color);
    transition: .6s;
    box-shadow: #ffffff8c 0px 20px 30px -10px;
    background: white;
    transform: translate(0px, 5px);
}

.hero_section_wrapper .single_hero_slider {
    padding: 0px 50px;
}

section#hero_section {
    background: var(--main-color);
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section#hero_section .side_option {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    z-index: 99;
    margin-right: 5px;
}

.side_option .single_option {
    width: 40px;
    height: 40px;
    background-color: var(--sub-color);
    color: var(--main-color);
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--main-color);
    border-radius: 5px;
    transition: .6s;
}

.side_option .single_option:hover {
    background-color: var(--third-color);
    transition: .6s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 35px;
    font-weight: 600;
    color: var(--third-color);
}

.swiper-button-next3::after,
.swiper-button-prev3::after {
    font-size: 16px !important;
    color: var(--main-color);
}

.mySwiper .swiper-wrapper {
    padding: 25px 30px;
}

.swiper-button-prev3 {
    left: -30px !important;
}

.slider_container {
    width: 70%;
    position: relative;
}

.swiper-button-next3 {
    right: -30px !important;
}

.swiper-button-prev3 {
    left: -6px;
    border-radius: 100%;
    background: var(--sub-color);
    width: 30px !important;
    height: 30px !important;
}

.swiper-button-next3 {
    right: -5px;
    border-radius: 100%;
    background: var(--sub-color);
    width: 30px !important;
    height: 30px !important;
}


.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: var(--sub-color) !important;
}

.cart_product .single_product {
    position: relative;
}

.single_product .product_delete {
    background: var(--main-color);
    width: 20px;
    height: 20px;
    position: absolute;
    top: -10px;
    border-radius: 100%;
    display: grid;
    place-items: center;
    font-size: 10px;
    cursor: pointer;
    transition: .6s;
    color: var(--sub-color);
}

.single_product .product_delete:hover {
    outline: 1px solid var(--sub-color);
    transition: .6s;
}

.category .cateogry_img {
    width: 80px;
    height: 80px;
    background: var(--third-color);
    border-radius: 100%;
    overflow: hidden;
}

.category .cateogry_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.category h3 {
    font-size: 13px;
    margin-top: 15px;
    text-align: center;
    color: var(--sub-color);
}

.hero_section_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
}

.hero_section_wrapper .swiper.mySwiper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_section_wrapper .swiper.mySwiper2 {
    width: 100%;
    margin-bottom: 50px;
}

.category {
    cursor: pointer;
}

.swiper-paginationH {
    position: unset !important;
}

.mySwiper2 .swiper-wrapper {
    display: flex;
    align-items: center;
}

.offcanvas-body::-webkit-scrollbar {
    width: 5px;
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 50px;


}

header.sticky_animation {
    position: sticky;
    top: 0;
    transform: translate(0px, 20px);
    animation: sticky_anim 1s alternate forwards ease-in-out;
}

@keyframes sticky_anim {
    0% {
        transform: translate(0px, -110px);
        opacity: 0;
    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

section#hashTag_section {
    padding: 50px;
    background: var(--third-color);
}

#hashTag_section .hashTag_section_wrapper .tags_title h3 {
    color: var(--main-color);
    font-size: 25px;
    margin-bottom: 30px;
    font-weight: 600;
}

.tags_container a.single_tag {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    padding: 20px 0px;
    color: var(--third-color);
    border-radius: 10px;
}

.swiper-button-prev2::after,
.swiper-button-next2::after {
    color: var(--sub-color);
    font-size: 12px !important;
}

.swiper-button-prev2,
.swiper-button-next2 {
    width: 25px !important;
    height: 25px !important;
    display: grid !important;
    place-items: center;
    background-color: var(--main-color);
    position: unset !important;
    border-radius: 100%;
}

.mySwiper3 .swiper-slide:nth-child(even) a {
    background-color: var(--sub-color);
    color: #333;
}
.mySwiper3 .swiper-slide {
    cursor: pointer;
}
/*small screen searchBar Style*/
.search_bar {
    background: var(--third-color);
    color: white;
    height: 100vh;
    width: 100%;
    overflow: auto;
    position: fixed;
    z-index: 999;
    transform: translate(0px, -100%);
}

.search_bar .search_bar_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0px;
}

.search_bar .search_bar_wrapper .search_bar_header h2 {
    text-align: center;
    font-size: 35px;
    color: var(--main-color);
}

.search_bar .search_bar_wrapper .search_bar_header p {
    text-align: center;
    color: #666;
}

.search_bar .search_bar_wrapper .search_bar_body {
    width: 80%;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input {
    position: relative;
    height: 40px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid var(--main-color);
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input input {
    position: absolute;
    width: 100%;
    outline: none;
    border: 1px solid transparent;
    padding: 0px 50px;
    padding-right: 150px;
    font-size: 14px;
    height: 100%;
    border-radius: 5px;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input>span {
    display: block;
    width: 40px;
    height: 100%;
    background: transparent;
    z-index: 9;
    display: grid;
    place-items: center;
    color: #999;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input .search_btn {
    height: 100%;
    z-index: 9;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input .search_btn select.filter {
    outline: none;
    border: 1px solid transparent;
    height: 40px;
    width: 90px;
    cursor: pointer;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input .search_btn button {
    width: 40px;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--third-color);
    background: var(--main-color);
    margin-left: 5px;
    border: none;
    outline: none;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input .search_btn .search_option>span {
    color: var(--main-color);
    display: grid;
    place-items: center;
    margin-right: 5px;
}

.search_suggestion {
    margin-top: 30px;
    background: var(--main-color);
    padding: 20px 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transform: translate(0px, 70px);
    visibility: hidden;

}

@keyframes fade_top {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translate(0px, 70px);
    }

    100% {
        visibility: visible;
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

.search_suggestion .single_item {
    width: 100%;
    border-bottom: 1px solid var(--sub-color);
    padding: 4px 0px;
    background: var(--main-color);
    gap: 10px;
}

.search_suggestion .single_item .item_img {
    width: 15%;
    height: 40px;
    overflow: hidden;
}

.search_suggestion .single_item h3 {
    font-size: 16px;
    margin-bottom: 0px;
}

.search_suggestion .single_item {
    color: var(--third-color);
}

.search_suggestion .single_item .item_img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.search_suggestion li:first-child .single_item {
    border-top: 1px solid var(--sub-color);
}

.search_bar_wrapper .search_close {
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 15px;
    border-radius: 100%;
    display: grid;
    place-items: center;
    background-color: var(--main-color);
    color: var(--sub-color);
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.search_icon {
    color: var(--main-color);
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: var(--third-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: .6s;
}

.search_icon:hover {
    background: var(--sub-color);
    transition: .6s;
}

@keyframes show_searchbar {
    0% {
        display: none;
        transform: translate(0px, -100%);
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

@keyframes fade_down {
    0% {
        opacity: 1;
        transform: translate(0px, 0px);
    }

    100% {
        transform: translate(0px, -100%);
        opacity: 0;
    }

}

/*prelaoder style*/
.preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: var(--sub-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.spinner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 9px solid;
    border-color: var(--main-color) #0000;
    animation: spinner-0tkp9a 1s infinite;
}

@keyframes spinner-0tkp9a {
    to {
        transform: rotate(.5turn);
    }
}

.preloader h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 85px;
    letter-spacing: 10px;
    color: #0000002e;
    animation: text_anim 1s ease-in infinite alternate;
}

@keyframes text_anim {
    0% {
        transform: translate(-50%, -47%);
    }

    100% {
        transform: translate(-50%, -53%);
    }
}

.preloader svg {
    width: 150px;
}

.cookies_alert {
    position: fixed;
    bottom: 30px;
    left: -400%;
    background-color: var(--third-color);
    padding: 25px;
    z-index: 99999;
    width: 400px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@keyframes cookies_close {
    0% {
        left: 20px;
        opacity: 1;
    }

    100% {
        left: -400%;
        opacity: 0;
    }
}

@keyframes cookies_open {
    0% {
        left: -400%;
        opacity: 0;
    }

    100% {
        left: 20px;
        opacity: 1;
    }
}

.cookies_icon {
    display: block;
    font-size: 100px;
    color: #c79846;
    position: absolute;
    top: -68px;
    right: -50px;
}

.cookies_alert .cookies_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.cookies_alert .cookies_wrapper p {
    color: #333;
    font-size: 14px;
    line-height: 1.6rem;
}

.cookies_alert .cookies_wrapper button {
    outline: none;
    border: none;
    padding: 10px 25px;
    border-radius: 3px;
    background-color: var(--main-color);
    color: var(--third-color);
    font-size: 15px;
    cursor: pointer;
}

.cookies_alert .cookies_wrapper .close_btn {
    background-color: #333;
}

.slider_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* accordian style */
.accordion-container .accordion-title {
    position: relative;
    margin: 0;
    display: block;
    font-weight: normal;
    color: black;
    cursor: pointer;
}

.accordion-content {
    border: 1px solid var(--main-color);
    padding: 10px;
}

.accordion-container .accordion-title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 12px;
    height: 2px;
    transform: rotate(90deg);
    background: black;
    transition: all .3s ease-in-out;
}

.accordion-container .accordion-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 12px;
    height: 2px;
    background: black;
    transition: all .2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
    transform: rotate(180deg);
    background: var(--third-color);
}

.accordion-container .accordion-title.open::after {
    opacity: 0;
    background: var(--third-color);
}

.accordion-content a {
    display: block;
    padding: 5px 0px;
    color: var(--main-color);
    transition: .6s;
}

.accordion-content a:hover {
    color: #333;
    transition: .6s;
}


.accordion-container .menu_item {
    color: var(--main-color);
    font-size: 16px;
    padding: 10px;
    width: 100%;
    display: block;
    transition: .6s;
}

.accordion-container .menu_item:hover {
    color: var(--third-color);
    transition: .6s;
    background: var(--main-color);
}

.accordion-container .accordion-title.open {
    background-color: var(--main-color);
    color: var(--third-color);
}

.accordion-container .accordion-title:hover::before {
    background: var(--third-color);
}

.accordion-container .accordion-title:hover::after {
    background: var(--third-color);
}

/*product section style*/
.text_container {
    mask: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
    overflow: hidden;
}

.animation_text svg,
i {
    font-size: 35px;
    margin: 0px 10px;
    color: var(--main-color);
}

.animation_text {
    display: flex;
    align-items: center;
    font-size: 70px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px #666;
    text-wrap: nowrap;
    white-space: nowrap;
    overflow-wrap: break-word;
    animation: title_anim 20s linear infinite;
}

.text_container:hover .animation_text {
    animation-play-state: paused;
}

section.product_section {
    padding: 80px 0px;
    background: var(--third-color);
}

.product_section_title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-top: 30px;
}


@keyframes title_anim {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.single_product_slider {
    background: #faf7f2;
    padding: 35px 10px;
    position: relative;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: .6s;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    overflow: hidden;
}

.single_product_slider .product_img {
    width: 175px;
    height: 170px;
    margin: auto;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    z-index: 9;
}

.single_product_slider .product_content h3 a:hover {
    color: var(--main-color);
    transition: .6s;
}

.single_product_slider .product_content h3 a {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    transition: .6s;
}

.single_product_slider::after,
.single_product_slider::before {
    content: " ";
    width: 310px;
    height: 65%;
    position: absolute;
    background: var(--sub-color);
    display: block;
    top: -100%;
    border-radius: 50%;
    left: 50%;
    transform: translate(-50%, 0px);
    transition: .6s;
}

.single_product_slider:hover::after {
    top: -32%;
    transition: .6s;
}

.single_product_slider::before {
    background: #ffe0191c;
    top: -32%;
    transition: .6s;
}

.single_product_slider .product_content .review svg {
    color: #F6B410;
    font-size: 12px;
}

.single_product_slider .product_content .review p {
    color: var(--main-color);
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 10px;
}

.single_product_slider .product_content>p {
    color: #666;
    font-size: 15px;
}

.single_product_slider .product_content .product_info span.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-color);
}

.single_product_slider .product_content .product_info .cart_btn span {
    font-size: 18px;
    color: var(--third-color);
    background: var(--main-color);
    border-radius: 5px;
    width: 40px;
    border: 1px solid transparent;
    height: 40px;
    display: grid;
    place-items: center;
    transition: .6s;
    cursor: pointer;
}

.single_product_slider .product_content .product_info .cart_btn span:hover {
    background: var(--third-color);
    color: var(--main-color);
    transition: .6s;
    border: 1px solid var(--main-color);
}

.single_product_slider .product_content .fire.fire_top {
    position: absolute;
    right: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    top: 0;
    transform: translate(0%, -100%);
    z-index: 99;
}

.single_product_slider .product_content .fire.fire_bottom {
    position: absolute;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: .6s;
    right: 0;
    width: 100%;
}

.single_product_slider:hover .fire.fire_bottom,
.single_product_slider:hover .fire.fire_top {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: .6s;
}

.single_product_slider:hover .fire {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: .6s;
}

.single_product_slider .product_content .fire.fire_top img {
    animation: fire_anim_top 1.5s linear infinite alternate;
    transition: .6s;
    transform: rotateX(218deg);
    transform-origin: bottom;
    width: 100%;
}

.single_product_slider .product_content .fire.fire_bottom img {
    animation: fire_anim_down 1.5s linear infinite alternate;
    transform-origin: bottom;
    transition: .6s;
    width: 100%;
}

@keyframes fire_anim_top {
    0% {
        transform: rotateX(180deg);

    }

    100% {
        transform: rotateX(240deg);
    }
}

@keyframes fire_anim_down {
    0% {
        transform: rotateX(0deg);
    }

    100% {
        transform: rotateX(60deg);
    }
}

.single_product_slider .product_img img {
    object-fit: contain;
    height: 100% !important;
}

.single_product_slider:hover {
    transition: .6s;
    border: 1px solid var(--main-color);
}

.swiper.mySwiper4 {
    padding: 70px 0px;
}

.swiper-button-next4,
.swiper-button-prev4 {
    width: 40px !important;
    height: 40px !important;
    background: var(--main-color) !important;
    border-radius: 100%;
}

.swiper-button-next4::after,
.swiper-button-prev4::after {
    font-size: 18px !important;
}

.swiper-pagination4 .swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;
    background: var(--main-color) !important;
}

.single_product_slider .product_content .product_info .cart_btn span:first-child {
    background: var(--third-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
    transition: .6s;
    position: relative;
}

.single_product_slider .product_content .product_info .cart_btn span:first-child::after {
    content: " ";
    width: 0%;
    position: absolute;
    left: 0;
    height: 100%;
    background-color: var(--main-color);
    display: block;
    transition: .6s;
}

.single_product_slider .product_content .product_info .cart_btn span:first-child:hover svg {
    color: var(--third-color);
    transition: .6s;
    position: relative;
    z-index: 9;
}

.single_product_slider .product_content .product_info .cart_btn span:first-child:hover::after {
    width: 100%;
    transition: .6s;
}

.single_product_slider .product_content .product_info .cart_btn span:first-child:hover {
    background: var(--main-color);
    color: var(--third-color);
    transition: .6s;
}

.section_title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #333;
}

.section_title p {
    color: var(--main-color);
    font-weight: 600;
    font-size: 16px;
}

/* menu section style */

section#menu_section {
    padding: 80px 0px;
    background: var(--smoke-color);
}

.single_food {
    position: relative;
    padding: 25px 25px;
    background: var(--third-color);
    border-radius: 10px;
    transition: .6s;
    border: 1px solid transparent;
    margin-bottom: 25px;
}

.single_food .food_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single_food .food_img {
    display: block;
    position: absolute;
    right: 0;
    width: 200px;
    height: 200px;
    transform: translate(0px, -30px);
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    border-radius: 100%;
    overflow: hidden;
    border: 2px solid var(--main-color);
    background: var(--third-color);
}

.single_food:hover .food_img {
    animation: food_img 1s ease-in forwards alternate;
}

@keyframes food_img {
    0% {
        transform: translate(0px, -30px);
        visibility: hidden;
        opacity: 0;
    }

    100% {
        transform: translate(-50px, -30px);
        visibility: visible;
        opacity: 1;
    }
}

@keyframes food_img_hide {
    0% {
        transform: translate(-50px, -30px);
        visibility: visible;
        opacity: 1;
    }

    100% {
        transform: translate(0px, -30px);
        visibility: hidden;
        opacity: 0;
    }
}

.single_food .food_content .content_head h3 {
    font-size: 22px;
    color: #333;
    font-weight: 600;
    margin-bottom: 0px;
    background: var(--third-color);
    transition: .6s;
    position: relative;
    z-index: 9;
    padding-right: 10px;
}

.single_food .food_content .content_head span {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    position: relative;
    z-index: 9;
    background: var(--third-color);
    padding-left: 10px;
}

.single_food .food_content .content_head {
    margin-bottom: 10px;
    position: relative;
}

.single_food .food_content>p {
    font-size: 15px;
    color: #666;
    line-height: 1.6rem;
}

.single_food .food_content .content_head:hover h3 {
    color: var(--main-color);
    transition: .6s;
}

.single_food:hover {
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: white;
}

.single_food .food_content .content_head::after {
    content: " ";
    width: 100%;
    border-bottom: 3px dashed #666;
    display: block;
    position: absolute;
    transition: .6s;
}

#myTab {
    gap: 10px;
}

.single_food .food_content .content_head:hover::after {
    border-bottom: 3px dashed var(--main-color);
    transition: .6s;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: var(--third-color) !important;
    color: var(--main-color) !important;
    padding: 15px 30px;
    border: 1px solid var(--main-color) !important;
}

.nav-tabs .nav-link {
    background: var(--main-color);
    color: var(--third-color) !important;
    padding: 15px 30px;
    font-size: 14px !important;
}

.item_container {
    padding: 50px 15px;
}

.menu_content {
    margin-top: 80px;
}

.nav-tabs {
    border-bottom: 1px solid transparent !important;
}

.single_food:hover content_head h3 {
    background: var(--main-color);
}

.single_food:hover .food_content .content_head h3 {
    background: var(--main-color);
    color: var(--third-color);
}

.single_food:hover .food_content p {
    color: var(--sub-color);
}

.single_food:hover .food_content .content_head span {
    background: var(--main-color);
    color: white;
}

.single_food:hover .food_content .content_head::after {
    border-bottom: 3px dashed var(--third-color);
}

.food_popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    display: none;
}

@keyframes popup_anim_close {
    0% {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    100% {
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: scale(0);
    }
}

@keyframes popup_anim {
    0% {
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: scale(0);
    }

    100% {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
}

.food_popup .food_popup_container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food_popup .food_popup_container .food_popup_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000066;
}

.food_popup .food_popup_container .food_popup_wrapper {
    max-width: 700px;
    background: white;
    height: calc(100vh - 45px);
    border-radius: 10px;
    padding: 15px;
    z-index: 99;
    position: relative;
}

.f_popup_content .left_side img {
    object-fit: cover;
    width: 100%;
}

.food_popup .food_popup_container .food_popup_wrapper .f_popup_header h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
}

.food_popup .food_popup_container .food_popup_wrapper .f_popup_header .f_popup_close {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    font-size: 14px;
    color: var(--main-color);
    background: var(--sub-color);
    border-radius: 100%;
    transition: .6s;
    cursor: pointer;
}

.food_popup .food_popup_container .food_popup_wrapper .f_popup_header .f_popup_close:hover {
    color: var(--third-color);
    transition: .6s;
    background: var(--main-color);
}

.food_popup .food_popup_container .food_popup_wrapper .f_popup_header {
    border-bottom: 1px solid #ededed;
    margin-bottom: 15px;
}

.food_popup_wrapper .f_popup_content .right_side p {
    font-size: 15px;
    color: #777;
    margin-bottom: 10px;
}

.option_title {
    font-size: 18px;
    margin-bottom: 10px;
}

.right_side .price_option .option .option_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.right_side .price_option .option .option_img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
}

.right_side .price_option .option {
    gap: 15px;
}

.right_side .price_option .option .option_wrapper {
    gap: 10px;
}

.right_side .price_option .option .option_wrapper .option_info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.right_side .price_option .option .option_wrapper .option_info span {
    font-size: 14px;
}

.note textarea {
    width: 100%;
    height: 60px;
    font-size: 14px;
    padding: 8px;
    outline: none;
    color: #333;
    border: 1px solid #999;
    border-radius: 5px;
}

.f_popup_content .right_side {
    overflow: scroll;
}

.popup_bottom {
    height: 75px;
    padding: 15px 25px;
    border-top: 1px solid #ededed;
    background-color: var(--third-color);
    gap: 30px;
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.popup_bottom .f_cart_btn {
    width: 100%;
    height: 100%;
}

.popup_bottom .f_cart_btn a {
    width: 100%;
    height: 100%;
    font-size: 18px;
    background-color: var(--main-color);
    color: var(--third-color);
    border-radius: 5px;
    display: grid;
    border: 1px solid var(--main-color);
    place-items: center;
    font-weight: 600;
    transition: .6s;
}

.popup_bottom .f_cart_btn a:hover {
    background-color: var(--third-color);
    color: var(--main-color);
    transition: .6s;
}

.f_cart_count {
    height: 100%;
    border-radius: 15px;
    grid-template-columns: auto 45px auto;
}

.f_cart_count .cart {
    height: 100%;
    outline: none;
    border: 1px solid var(--main-color);
    appearance: none;
    padding: 5px;
    color: #333;
    font-size: 16px;
    text-align: center;
}

.f_cart_count .cart::-webkit-inner-spin-button,
.cart::-webkit-outer-spin-button {
    appearance: none;
}

.f_cart_count .count_btn:first-child {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.f_cart_count .count_btn:last-child {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.f_cart_count .count_btn {
    width: 40px;
    height: 100%;
    display: grid;
    place-items: center;
    background-color: var(--main-color);
    color: var(--third-color);
    cursor: pointer;
}



/*reservation section*/
section#reservation_section {
    padding: 80px 0;
    background: var(--third-color);
}

section#reservation_section .reservation_wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    padding: 40px 150px;
    background-image: url("/image/reservation_bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    backdrop-filter: blur(5px);
    border-radius: 265px;
    overflow: hidden;
}

.reservation_wrapper .section_title h2 {
    color: var(--third-color);
}

.reservation_wrapper .section_title p {
    color: var(--sub-color);
}
section#reservation_section .reservation_wrapper::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: rgba(21, 21, 21, 0.7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(3px);
}

section#reservation_section .reservation_wrapper form.reservation_form {
    margin-top: 50px;
    gap: 20px;
}

section#reservation_section .reservation_wrapper form.reservation_form .single_input {
    position: relative;
    margin-bottom: 20px;
}

section#reservation_section .reservation_wrapper form.reservation_form .single_input input,
.single_input textarea {
    width: 100%;
    outline: 2px solid transparent;
    padding: 15px;
    outline-offset: -2px;
    font-size: 15px;
    color: #333;
    border-radius: 5px;
    /* border: 1px solid var(
    --main-color); */
    transition: .6s;
}

form.reservation_form .single_input input[type="time"]::-webkit-calendar-picker-indicator,
form.reservation_form .single_input input[type="date"]::-webkit-calendar-picker-indicator {
    z-index: 99;
    background: none;
    position: absolute;
    right: 10px;
}

section#reservation_section .reservation_wrapper form.reservation_form .single_input span {
    position: absolute;
    right: 10px;
    color: var(--main-color);
    font-size: 16px;
    top: 50%;
    transform: translate(0px, -50%);
}

.single_input.textarea_input span {
    right: 10px !important;
    top: 25px !important;
}

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

section#reservation_section .reservation_wrapper form.reservation_form .single_input textarea {
    height: 145px;
}

section#reservation_section .reservation_wrapper form.reservation_form .btn_wrapper .submit_btn {
    outline: none;
    border: none;
    background: var(--main-color);
    color: var(--third-color);
    box-shadow: #e7272d78 0px 20px 30px -10px;
    padding: 20px 50px;
    margin-top: 30px;
}

.category_div {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
}

.category_div .single_category {
    display: flex;
    gap: 5px;
    align-items: center;
}

.single_select_input h3 {
    font-size: 18px;
    color: var(--third-color);
}

.category_div .single_category label {
    font-size: 15px;
    color: var(--third-color);
}
section#reservation_section .reservation_wrapper form.reservation_form .single_input input:focus, .single_input textarea:focus {
    outline-offset: 1px;
    transition: .6s;
    outline: 2px solid var(--main-color);
}
.bottom_form{
    width: 100%;
}
section#reservation_section .reservation_wrapper form.reservation_form .btn_wrapper .submit_btn:hover {
    box-shadow: #ffffff8c 0px 20px 30px -10px;
    background: var(--third-color);
    color: var(--main-color);
    transition: .6s;
}
/*Team section design*/
.chesfs_container {
    margin-top: 80px;
}

.chesfs_container .single_chefs {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transition: .6s;
    border: 2px solid transparent;
}

.chesfs_container .single_chefs .chefs_info {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    background: #000000c7;
    opacity: 0;
    visibility: hidden;
    display: flex;
    transition: .6s;
}
.chesfs_container .single_chefs:hover .chefs_info{
    opacity: 1;
    visibility: visible;
    display: flex;
    transition: .6s;
}
section.team_section {
    padding: 80px 0px;
    background: var(--smoke-color);
}

.chesfs_container .single_chefs .chefs_img {
    width: 100%;
    height: 400px;
}

.chesfs_container .single_chefs .chefs_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chesfs_container .single_chefs  .chefs_info h3 {
    color: var(--third-color);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
}
.chesfs_container .chefs_img:hover .chefs_info{
    opacity: 1;
    visibility: visible;
}


.chesfs_container .single_chefs .chefs_info > span {
    color: var(--main-color);
    font-weight: 700;
    font-size: 19px;
}

.chesfs_container .single_chefs .chefs_info .location_name {
    color: var(--third-color);
    font-size: 15px;
    margin-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.chesfs_container .single_chefs .chefs_info .location_name svg {
    color: var(--main-color);
}

.chesfs_container .single_chefs .chefs_info .chefs_desc {
    color: #bebebe;
    padding: 0px 15px;
}

.chesfs_container .single_chefs .chefs_info .chefs_social a {
    font-size: 18px;
    background: var(--main-color);
    color: var(--third-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    transition: .6s;
}

.chesfs_container .single_chefs .chefs_info .chefs_social {
    gap: 15px;
    margin-top: 20px;
}

.chesfs_container .single_chefs .chefs_info .chefs_social a:hover {
    transition: .6s;
    background: var(--sub-color);
    color: var(--main-color);
}
.chesfs_container .single_chefs:hover {
    border: 2px solid var(--main-color);
    transition: .6s;
}
/*video secction start here*/
section.video_section {
    padding: 80px 0px;
    background: var(--main-color);
}
.blog_wrapper {
    margin-top: 30px;
}
section.video_section p {
    color: var(--sub-color);
}

section.video_section h2 {
    color: var(--third-color);
}
section.video_section .video_section_wrapper {
    position: relative;
    margin-top: 80px;
}

section.video_section .video_section_wrapper .tart_animation {
    position: absolute;
    width: 100px;
    height: 100px;
    background: red;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
   
}
.video_icon {
    width: 100%;
    height: 100%;
    display: grid;
    border-radius: 50%;
    place-items: center;
    animation: animate 2s linear infinite;
    transition: .6s;
    cursor: pointer;
}
    @keyframes animate{
        0% {
            box-shadow: 0 0 0 0 #e7272d88, 0 0 0 20px #e7272d57, 0 0 0 40px #e7272d48;
        }
        100% {
            box-shadow: 0 0 0 20px #e7272d3b, 0 0 0 40px #e7272d2c, 0 0 0 60px rgba(204,51,51,0);
        }
      }

.video_icon svg {
    font-size: 20px;
    color: var(--third-color);
    transition: .5s;
}

section.video_section .video_section_wrapper .video_img {
    max-width: 700px;
    height: auto;
    margin: auto;
}

section.video_section .video_section_wrapper .video_img img {
    border-radius: 20px;
}
.video_icon:hover svg {
    font-size: 30px;
    transition: .5s;
}
.video_popup {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.video_popup .video_bg {
    width: 100%;
    height: 100%;
    background: #00000080;
    position: absolute;
}

.video_popup .video_item {
    max-width: 700px;
  
    position: relative;
}

.video_popup .video_item video {
    width: 100%;
    border-radius: 20px;
}
.close_icon {
    position: absolute;
    right: 0px;
    /* top: 20px; */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: var(--third-color);
    cursor: pointer;
    z-index: 999;
    transition: .6s;
    transform: translate(100%, -100%);
}
.close_icon:hover {
    background-color: var(--main-color);
    transition: .6s;
}
.close_icon:hover svg {
    color: var(--third-color);
    transition: .6s;
}
.close_icon svg {
    color: var(--main-color);
    font-size: 18px;
    transition: .6s;
}
/* blog section style */

.blog_section{
    padding: 80px 0px;
    background-color: var(--smoke-color);
    padding-bottom: 200px;
}
.blog_section .single_blog{
    background-color: var(--third-color);
    border-radius: 20px;
    min-height: 300px;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    margin: 0px 15px;
}
.blog_section .single_blog .blog_img {
    width: 40%;
    padding: 10px;
}
.blog_section .single_blog .blog_info {
    width: 60%;
    padding: 10px 20px;
}
.blog_section .blog_btn a{
    padding: 10px 25px;
    background-color: var(--main-color);
    color: white;
    border-radius: 5px;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    outline: 1px solid var(--main-color);
    outline-offset: -2px;
    transition: .6s;
}
.mySwiper5 .swiper-wrapper {
    padding: 50px 0px;
}

.blog_section .single_blog .blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_section .single_blog .blogInfo_head svg {
    font-size: 18px;
    color: var(--main-color);
}

.blog_section .single_blog .blogInfo_head  span {
    font-size: 15px;
    color: #666;
}

.blog_section .single_blog .blogInfo_body h3 {
    font-size: 22px;
    color: #333;
    margin-top: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: .6s;
}

.blog_section .single_blog .blogInfo_body p {
    color: #666;
    font-size: 15px;
    line-height: 1.6rem;
}

.blog_section .single_blog .blogInfo_body h3:hover {
    color: var(--main-color);
    transition: .6s;
}
.swiper-button-next5:after, .swiper-button-prev5:after {
    font-size: 15px !important;
}

.swiper-button-next5, .swiper-button-prev5 {
    width: 40px !important;
    height: 40px !important;
    background: var(--main-color) ;
    display: grid;
    place-items: center;
    border-radius: 50%;
}


/* footer style */
.social_link a {
    width: 40px;
    height: 40px;
    background-color: var(--third-color);
    color: var(--main-color);
    display: grid;
    place-items: center;
    font-size: 17px;
    border-radius: 50%;
    transition: .6s;
}

footer{
    background-color: #1A1A1A;
    padding: 80px 0px;
    position: relative;
    padding-top: 120px;
}
.fire1 {
    width: calc(100vw - 1000px);
}

.fire1 img {
    width: 100%;
    object-fit: cover;
    height: 60px;
    object-position: center bottom;
    animation: fire_anim_down 1.5s linear infinite alternate;
    transform-origin: bottom;
    transition: .6s;
}
.footer_content .footer_content1 p {
    font-size: 15px;
    color: #c3c3c3;
    line-height: 1.6rem;
    margin: 20px 0px;
    margin-bottom: 30px;
}

.social_link a:hover {
    background: var(--main-color);
    color: var(--third-color);
    transition: .6s;
}

.footer_content1 h3 {
    color: var(--main-color) !important;
}
.footer_content ul li a{
    font-size: 16px;
    color: #c3c3c3;
    transition: .6s;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}
.footer_content ul li a:hover{
    color: var(--main-color);
    transition: .6s;
}
.footer_content h3{
    font-size: 25px;
    font-weight: 700;
    color: var(--third-color);
    margin-bottom: 30px;
}
.footer_content table {
    width: 100%;
}

.footer_content table tr td {
    width: 50%;
    color: var(--main-color);
    padding: 10px 0px;
    border-bottom: 1px solid var(--main-color);
    font-weight: 600;
}

.footer_content table tr td:last-child {
    text-align: right;
}
.newsletter{
    width: 1000px;
    background-color: var(--main-color);
    padding: 50px 50px;
    border-radius: 20px;
    margin: auto;
    position: absolute;
    left: 50%;
    top: -145px;
    transform: translate(-50%, 0px);
    z-index: 92;
}
.newsletter .newsletter_text{
    color: white;
}
.newsletter .newsletter_form{
    position: relative;
    width: 100%;
    height: 45px;
}
.newsletter .newsletter_form  button{
    position: absolute;
    right: 0px;
    padding: 0px 20px;
    color: var(--main-color);
    height: 100%;
    outline: none;
    border: 1px solid transparent;
    background: var(--sub-color);
    font-size: 16px;
    font-weight: 600;
}
.newsletter .newsletter_form  input {
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    outline: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
}

.newsletter .newsletter_text h2 {
    font-size: 31px;
    font-weight: 700;
}

.newsletter .newsletter_text p {
    color: #ffffffc9;
    margin-bottom: 0;
    margin-top: 20px;
}
.fire_effect {
    position: absolute;
    z-index: 9;
    top: 0;
    width: 100%;
    transform: translate(0px, -100%);
    display: flex;
    justify-content: space-between;
}

.fire_effect .fire1:first-child {left: 0;}

.fire_effect .fire1:last-child {
    right: 0;
}
.blog_section .blog_btn a:hover {
    outline-offset: 2px;
    transition: .6s;
}
.footer_content table tr td:first-child {
    width: 40%;
}
.list_wrapper{
    display: flex;
    gap: 100px;
}
.copyright_section{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0px;
    width: 100%;
    background-color: var(--main-color);
}
.copyright_section .copyright_text p {
    color: var(--third-color);
    margin-bottom: 0;
    font-size: 14px;
}

/*responsive codes*/
@media only screen and (max-width: 1200px) {
    .animation_text {
        font-size: 55px;
    }
    .newsletter{
        width: 780px;
    }
    .fire1{
        width: calc(100vw - 616px);
    }
}

@media only screen and (max-width: 1140px) {

    .single_product_slider::after,
    .single_product_slider::before {
        width: 410px;
        height: 65%;
    }
}


@media only screen and (max-width: 991px) {
    .blog_section .single_blog .blog_img{
        padding: 30px;
    }
    .single_hero_slider .slider_title h2 {
        font-size: 35px;
    }
    section#reservation_section .reservation_wrapper{
        padding: 50px 30px ;
        border-radius: 0;
    }
    .animation_text {
        font-size: 45px;
    }

    .animation_text svg,
    i {
        font-size: 25px;
    }
    footer{
        padding-top: 170px;
    }
    .newsletter{
        width: 640px;
        margin-top: 20px;
    }
    .newsletter .newsletter_form{
        margin-top: 20px;
    }
}

@media only screen and (max-width: 920px) {
    .mySwiper2 .swiper-wrapper {
        padding: 30px 0px;
    }

    .single_product_slider::after,
    .single_product_slider::before {
        width: 335px;
        height: 60%;
    }
   
}

@media only screen and (max-width: 800px) {

    .single_product_slider::after,
    .single_product_slider::before {
        width: 415px;
        height: 65%;
    }
    .fire1{
        width: calc(100vw - 460px);
    }
}

@media only screen and (max-width: 767px) {
    .video_popup .video_item{
       max-width: calc(100vw - 100px) ;
    }
    .chesfs_container .single_chefs{
        margin: 0px 150px;
    }
    .food_popup .food_popup_container .food_popup_wrapper {
        width: calc(100vw - 45px);
    }

    .hero_section_wrapper .swiper.mySwiper {
        position: unset !important;
        transform: translate(0%, 0%);
    }

    .animation_text {
        font-size: 40px;
    }

    .animation_text svg,
    i {
        font-size: 20px;
    }

    .swiper-pagination {
        text-align: center !important;
    }

    .header_left .shopping_option ul li:nth-child(2):hover .shooping_overview {
        display: none;
        animation: none
    }

    .slider_img img {
        width: 55%;
    }

    .slider_content .slider_title {
        text-align: center;
    }

    .slider_content .slider_info {
        text-align: center;
    }

    .slider_content .slider_button {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-pagination-bullet {
        width: 7px !important;
        height: 7px !important;
        background: var(--main-color) !important;
    }

    .slider_content {
        margin-top: 20px;
    }

}

@media only screen and (max-width: 668px) {
    .newsletter{
        width: calc(100vw - 150px);
        padding: 40px 30px;
    }
    .newsletter .newsletter_text h2{
        font-size: 22px;
    }
    .newsletter .newsletter_text h2,  .newsletter .newsletter_text p{
        text-align: center;
    }
    .blog_section .single_blog .blog_img{
        padding: 15px;
    }
    .chesfs_container .single_chefs{
        margin: 0px 80px;
    }
    section#hashTag_section {
        padding: 80px 0px;
    }

    .top-header-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .animation_text {
        font-size: 35px;
    }

    .animation_text svg,
    i {
        font-size: 20px;
    }

    .product_section_title h2,
    .section_title h2 {
        font-size: 30px;
    }

}
@media only screen and (max-width: 576px) {
    .fire1{
        width: calc(100vw - 135px);
    }
    .newsletter .newsletter_text h2{
        font-size: 18px;
    }
    .newsletter .newsletter_text p{
        font-size: 14px;
    }
    .blog_section .single_blog .blog_img{
        width: 100%;
        padding: 50px;
    }
    .blog_section .single_blog .blog_info{
        width: 100%;
    }
    .blog_section .single_blog{
        flex-direction: column;
        padding: 50px 10px;
    }
    .chesfs_container .single_chefs{
        margin: 0px 30px;
    }
    .f_popup_content {
        height: 470px;
        overflow: scroll;
        padding-bottom: 50px;
    }

    .left_side {
        padding: 60px;
    }

    .food_popup .food_popup_container .food_popup_wrapper {
        width: calc(100vw - 100px);
    }

    .single_product_slider::after,
    .single_product_slider::before {
        width: 480px;
        height: 70%;
    }

    .nav-tabs .nav-link {
        font-size: 12px !important;
    }

    .animation_text {
        font-size: 30px;
    }

    .product_section_title h2,
    .section_title h2 {
        font-size: 25px;
    }

    .preloader h3 {
        font-size: 50px;
        letter-spacing: 5px;
    }

    .single_product_slider {
        margin: 0px 45px;
    }

    .preloader svg {
        width: 100px;
    }

    .single_hero_slider .slider_title h2 {
        font-size: 28px;
    }

    .tags_container a.single_tag {
        font-size: 13px;
        padding: 12px 0;
    }

    #hashTag_section .hashTag_section_wrapper .tags_title h3 {
        font-size: 20px;
    }

    .cookies_alert {
        width: 80%;
        display: flex;
        flex-wrap: wrap;
        margin: 20px;

    }

    @keyframes cookies_close {
        0% {
            left: 0px;
            opacity: 1;
        }

        100% {
            left: -400%;
            opacity: 0;
        }
    }

    @keyframes cookies_open {
        0% {
            left: -400%;
            opacity: 0;
        }

        100% {
            left: 0px;
            opacity: 1;
        }
    }
}