/* ---------------- Google fonts ------------------ */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ---------------- fonts ------------------ */
@font-face {
  font-family: "Soho Pro";
  src: url("../fonts/SohoPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Soho Pro";
  src: url("../fonts/SohoPro-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Soho Pro Ultra";
  src: url("../fonts/SohoPro-Ultra.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Soho Pro";
  src: url("../fonts/SohoPro-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Soho Pro";
  src: url("../fonts/SohoPro-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Soho Pro";
  src: url("../fonts/SohoPro-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Soho Pro";
  src: url("../fonts/SohoPro-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Soho Pro";
  src: url("../fonts/SohoPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Soho Pro";
  src: url("../fonts/SohoPro-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Soho Pro";
  src: url("../fonts/SohoPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ---------------- Basic css ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

:root {
  scroll-behavior: smooth;
  --white: #ffffff;
  --black: #000000;
  --body: #1d323f;
  --grey: #4bb1b9;
  --red: #e4002a;

  --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  --black_img: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%);

  --primaryfont: "Poppins", sans-serif;
  --secondaryfont: "Bebas Neue", sans-serif;
  --thirdfont: "Soho Pro";

  --shadow: 0 0.4rem 1.5rem 0 rgba(0, 0, 0, 0.1);

  --menuheight: 10rem;
}

img {
  width: 100%;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  transition: 200ms;
  color: inherit;
  display: inline-block;
}

.f-right {
  float: right;
}
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* body */
body {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 400;
  color: var(--body);
  font-family: var(--primaryfont);
  background: #ffffff;
}

.container {
  margin: 0 auto;
  width: 100%;
}

main {
  position: relative;
  width: 100%;
  margin-top: var(--menuheight);
  overflow: hidden;
}

.figure img,
.figure {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: var(--primaryfont);
  color: #081259;
}

.text-white {
  color: var(--white) !important;
}

/* image colros */
.white_img {
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%)
    hue-rotate(67deg) brightness(112%) contrast(100%);
}
.black_img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%)
    saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
}

.text_grey {
  color: var(--grey) !important;
}

/* fonts */
.bebas {
  font-family: var(--secondaryfont) !important;
}
.soho {
  font-family: var(--thirdfont) !important;
}

/* Font Weights */
.f_300 {
  font-weight: 300 !important;
}
.f_400 {
  font-weight: 400 !important;
}
.f_500 {
  font-weight: 500 !important;
}
.f_600 {
  font-weight: 600 !important;
}
.f_700 {
  font-weight: 700 !important;
}
.f_800 {
  font-weight: 800 !important;
}
.f_900 {
  font-weight: 900 !important;
}

/* titles */
.title_30 {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--thirdfont);
  line-height: 1.1;
}

/* texts */
.text_xl {
  font-size: 2rem;
}
.text_lg {
  font-size: 1.8rem;
}
.text_md {
  font-size: 1.6rem;
}
.text_sm {
  font-size: 1.4rem;
}
.text_xsm {
  font-size: 1.2rem;
}

.text_italic {
  font-style: italic !important;
}

.underline {
  position: relative;
}

.underline::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.2rem;
  background: #ffffff;
  width: 100%;
  content: "";
}

.underline.underline_blue::before {
  background: #0c8fe8;
}

/* -------------- preloader --------------- */
#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader3 {
  width: 6rem;
  height: 6rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: var(--red);
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@-webkit-keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* -------------- Back to top ------------ */
.back-to-top {
  width: 5rem;
  height: 5rem;
  text-align: center;
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  border-radius: 6rem;
  background: #ebebeb;
  border: 0.2rem solid #ebebeb;
  z-index: 1000;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover {
  background: #bdafaf;
  border-color: #bdafaf;
}

.back-to-top img {
  -webkit-filter: var(-black_img);
  filter: var(--black_img);
}

.topbtn_hide {
  opacity: 1;
}

/* icons size */
.icon_10 {
  width: 1rem;
}
.icon_12 {
  width: 1.2rem;
}
.icon_14 {
  width: 1.4rem;
}
.icon_16 {
  width: 1.6rem;
}
.icon_18 {
  width: 1.8rem;
}
.icon_20 {
  width: 2rem;
}
.icon_22 {
  width: 2.2rem;
}
.icon_24 {
  width: 2.4rem;
}
.icon_26 {
  width: 2.6rem;
}
.icon_28 {
  width: 2.8rem;
}
.icon_30 {
  width: 3rem;
}
.icon_32 {
  width: 3.2rem;
}
.icon_34 {
  width: 3.4rem;
}
.icon_36 {
  width: 3.6rem;
}

/* ==================== button area ==================== */
.button {
  background: #fe0020;
  height: 6.9rem;
  font-size: 2rem;
  border-radius: 10rem;
  padding: 0 5.6rem;
  box-shadow: none;
  border: 0.1rem solid #fe0020;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.25s ease;
  font-family: var(--primaryfont);
}

.button:hover {
  border-color: transparent;
  color: #fe0020;
  box-shadow: 0 0.4rem 1rem 0 rgba(52, 42, 40, 0.2);
  background: var(--white);
}

/* -------------- Header Styles by Sahriar --------------- */
.site_header {
  padding: 0;
  position: fixed;
  z-index: 99999;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  height: var(--menuheight);
  display: flex;
  align-items: center;
  background: #ffffff;
}

.logo img {
  /* width: 7.9rem; */
  width: 13.9rem;
}

.header_right {
  transition: all 0.4s ease;
}

.menu_link {
  font-size: 1.9rem;
  color: #000000;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  font-family: var(--thirdfont);
  padding: 0 2rem;
}

.menu_link::before {
  content: "";
  width: 0;
  height: 0.3rem;
  background: #fe0020;
  position: absolute;
  left: 0;
  bottom: 1.2rem;
  transition: 0.25s ease-in-out;
}

.menu_link.active::before {
  width: 100%;
}

.primary_menu {
  padding-right: 10.7rem;
  gap: 2.5rem;
}

.search_input {
  position: relative;
}

.search_input input {
  width: 23rem;
  height: 4.6rem;
  border-radius: 10rem;
  border: 0.1rem solid #707070;
  padding: 0 4rem 0 1.8rem;
}

.search_input img {
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
}

.search_box {
  padding-right: 1.9rem;
}

.language_select {
  width: 4.6rem;
  height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  background: #ebebeb;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  outline: none;
  padding: 0;
  transition: 0.25s;
}

.language_select:hover {
  background: #dad3d3;
}

.language_select.nice-select:after {
  display: none;
}

.language_select .list {
  width: 8rem;
  left: -1.5rem;
}

.nice-select .option {
  font-size: 1.5rem;
  line-height: 3.5rem;
  min-height: 3.5rem;
  padding: 0 1.4rem;
}

/* =================== Hero area ================== */
.hero_slide {
  padding: 0;
}

.hero_slide_img {
  width: 100%;
  height: auto;
  display: block;
}

.hero_desktop {
  display: block;
}
.hero_tablette,
.hero_mobile {
  display: none;
}

.hero_content h1 {
  font-size: 10rem;
  font-weight: 400;
  line-height: 1.1;
  font-family: var(--secondaryfont);
}

.hero_content h2 {
  font-size: 7rem;
  text-transform: uppercase;
  font-family: var(--secondaryfont);
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1.1;
  margin-top: -1rem;
}

.text_yellow {
  color: #ffd800 !important;
}

.owl-dot {
  width: 1.1rem;
  height: 1.1rem;
  background: #fff;
  border-radius: 10rem;
  border: 0.2rem solid #fff !important;
}

.owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: absolute;
  width: 100%;
  bottom: 2.6rem;
}

.owl-dot.active {
  background: transparent;
}

.hero_slider .owl-nav {
  display: none !important;
}

/* ================ Banner area =================== */
.banner_area {
  background: #000000;
  padding: 3.2rem 0 2rem;
  position: relative;
  z-index: 9;
}

.banner_img {
  width: 28rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

.banner_inner h4 {
  font-family: var(--secondaryfont);
  font-weight: 400;
  font-size: 3rem;
}

.banner {
  background: #fe0020;
  padding: 4rem 6rem;
}

/* .banner_inner a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20rem;
} */

/* .banner_inner a:hover {
  background: #ffd800;
} */

.banner_area .row {
  --bs-gutter-x: 3.5rem;
}

.banner_img1 {
  width: 36rem;
}

.banner_inner h4:nth-child(2) {
  padding: 0 0 1rem;
}

.arrow_circle {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20rem;
}

.banner:hover .arrow_circle {
  background: #ffd800;
}

/* ============== Links slider =============== */
.links_area {
  background: #000;
  color: #fff;
  height: 8rem;
  display: flex;
  align-items: center;
  position: sticky;
  top: var(--menuheight);
  z-index: 999;
}

.links_slider a {
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  padding: 12px 8px;
}

.owl-stage {
  display: flex;
}

.links_slider a.active,
.links_slider a:hover {
  color: #fe0020;
}

.links_slider .owl-item {
  display: flex;
  align-items: center;
}

.owl-nav button {
  font-size: 4rem;
  color: #fe0020;
  font-family: sans-serif;
  transition: 0.35s ease;
}

.owl-nav button:hover {
  color: #fff;
  transform: scale(1.05);
}

.owl-nav {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: calc(50% - 0.5rem);
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  height: 0;
}

.links_slider {
  padding: 0 4rem;
}

.hero_slide {
  position: relative;
  overflow: hidden;
}

.container_slide_img {
  overflow: hidden;
  position: relative;
}

.hero_sliders .swiper-slide {
  overflow: hidden;
}

.hero_slider .owl-stage-outer {
  overflow: hidden;
}

.hero_slider .owl-item {
  width: auto; /* laisser Owl gérer */
}

.swiper-pagination-bullet {
  width: 11px !important;
  height: 11px !important;
  background-color: transparent !important;
  border: 2px solid white !important;
  opacity: 1 !important;
  margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
  background-color: white !important;
  border-color: white !important;
  opacity: 1 !important;
}

/* ============= Product area ============= */
.product_area {
  padding: 9.2rem 0 12.5rem;
  /* background: #ebebeb; */
  background: #ffffff;
}

.product {
  background: #fff;
  display: block;
  text-align: center;
  overflow: hidden;
  height: 100%;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.banner_img_wrapper {
  overflow: hidden;
}

.banner_img_wrapper img {
  width: 100%;
  height: auto;
}

.t_img_black {
  filter: brightness(0);
}

.product .text_lg {
  font-size: 1.6rem;
  font-weight: 700;
}

.product:hover .product_img img {
  transform: scale(0.95);
}

.product .product_img img {
  transition: 0.25s ease;
}

.owl-nav button {
  font-size: 6rem;
  font-family: sans-serif;
  font-weight: 600;
}

.product_area .owl-nav {
  width: calc(100% + 9rem);
}

.product_area .owl-nav button:hover {
  color: #ffd800;
}

.product_area .row {
  --bs-gutter-y: 1.5rem;
}

/* =============== menu_popup ================ */
.menu_popup_wrap {
  position: relative;
}

.menu_popup {
  position: absolute;
  bottom: 10rem;
  z-index: 99;
  border-radius: 1.5rem;
  box-shadow: 2rem 3rem 8rem 0.1rem rgba(0, 0, 0, 0.2);
  width: 73.6rem;
  left: 50%;
  transform: translateX(-50%) translateY(4rem) scale(0.9);
  transition: 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.menu_popup.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: all;
}

.popup_close {
  width: 2rem;
  filter: brightness(0) saturate(100%) invert(15%) sepia(79%) saturate(7494%)
    hue-rotate(347deg) brightness(94%) contrast(112%);
  position: absolute;
  right: 1.6rem;
  top: 1.6rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.menu_popup_img {
  width: 100%;
}

.bottom_angle {
  width: 2.6rem;
  margin: 0 auto;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.4rem;
}

.text_red {
  color: #e9031d !important;
}

.popup_head .title_30 {
  font-weight: 700;
  color: #000;
  padding-bottom: 1.8rem;
}

.popup_close:hover {
  transform: scale(1.1);
}

/* ================ menu_banner_area =================== */
.menu_banner_area {
  position: relative;
  background: #fe0020;
  z-index: 9;
}

.kfc_logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3.5rem;
  width: 10.2rem;
}

.menu_banner {
  height: 29.6rem;
  display: grid;
  align-content: center;
  justify-content: center;
}

.menu_banner h2 {
  font-size: 8rem;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--secondaryfont);
  line-height: 1;
  margin: 0;
  text-align: center;
  margin-bottom: -1rem;
}

.menu_banner h3 {
  font-size: 8rem;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--secondaryfont);
  padding: 0;
  line-height: 1;
  margin: 0;
  text-align: center;
}

.menu_banner_area .row {
  --bs-gutter-x: 0;
}

.menu_banner2 {
  margin-top: -2.6rem;
}

/* ================= engagement_area ================= */
.engagement_area {
  background: #fe0020;
  /* padding: 8rem 0 7.5rem; */
  padding: 4rem 0 4rem;
}

.engagement_box {
  height: 35.2rem;
  background: #fff;
  text-align: center;
  padding: 3rem 2rem;
  display: grid;
  align-content: flex-start;
  gap: 1.5rem;
}

.engagement_img1 {
  width: 16.5rem;
}

.engagement_img2,
.engagement_img4 {
  width: 14rem;
}

.engagement_img3 {
  width: 12.9rem;
}

.engage_img {
  height: 17.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.engagement_box p {
  font-size: 2rem;
}

/* ============= subscribe area ============== */
.engagement_area {
  position: relative;
}

.subscribe_box {
  background: #000000;
  width: 90rem;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-top: 11.5rem; */
}

.subscribe_img {
  width: 11.2rem;
  position: absolute;
  top: 0;
}

.subscribe {
  position: relative;
}

.subscribe input {
  height: 7.1rem;
  width: 37.1rem;
  background: #272727;
  border: transparent;
  padding: 0 2.5rem 0 7.1rem;
  color: #fff !important;
}

.mail_icon {
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.subscribe input::placeholder,
.subscribe input {
  font-size: 1.8rem;
  color: #939393;
  font-weight: 400;
}

.subscribe input:focus {
  background: #373737;
}

.subscribe_btn {
  height: 7.1rem;
  width: 11.7rem;
  background: #373737;
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-left: 0.2rem;
  text-transform: uppercase;
}

.subscribe_btn:hover {
  background: rgb(70, 69, 69);
}

.subscribe_box_left .p1 {
  font-size: 2.5rem;
}

.engagement_box p {
  color: #000000;
}

.subscribe_bg {
  position: absolute;
  width: 100vw;
  bottom: 1.8rem;
  left: 0;
}

.subscribe_content,
.engagement_content {
  position: relative;
}

.food_bg2 {
  width: 20rem;
  position: absolute;
  bottom: -14.5rem;
  left: -1rem;
}

.food_bg1 {
  position: absolute;
  right: -11rem;
  width: 40rem;
  top: -20rem;
}

.map_img {
  width: 100vw;
}

.map_area {
  position: relative;
}

.map_popup {
  position: absolute;
  background: #fff;
  padding: 1.4rem 1.8rem 2.5rem 2.1rem;
  width: 28.5rem;
  height: auto;
  border-radius: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: 9.7rem;
}

.map_mark {
  width: 5.9rem;
}

.map_popup_wrap {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}

.location_icon {
  gap: 0.8rem;
}

.map_popup > p {
  color: #000;
  padding: 0.6rem 0 1.5rem;
}

.map_angle {
  position: absolute;
  width: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.5rem;
}

.map_btns a {
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 2rem;
  white-space: nowrap;
}

.map_btn1 {
  color: #e8001d;
  border: 0.1rem solid #e8001d;
}

.map_btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.map_btn2 {
  border: 0.1rem solid #000;
  color: #000;
}

.map_btn2:hover {
  background: #000;
  color: #fff;
}

.map_btn1:hover {
  background: #e8001d;
  color: #fff;
}

/* ================== Footer area ================== */
.footer_logo img {
  /* width: 9.3rem; */
  width: 13.9rem;
}

.contact_icon {
  width: 2.44rem;
  height: 2.44rem;
  border: 0.2rem solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
}

.footer_contact a {
  font-family: var(--thirdfont);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-size: 1.8rem;
}

.footer_contact {
  gap: 2.5rem;
}

.footer_contact a:hover {
  opacity: 0.75;
}

.social_icons {
  gap: 1.2rem;
}

.footer_links a {
  font-family: var(--thirdfont);
  font-size: 1.8rem;
}

.footer_links {
  display: grid;
  gap: 3.4rem;
}

.footer_links a:hover {
  text-decoration: underline !important;
  opacity: 0.75;
}

.footer_box_last {
  font-family: var(--thirdfont) !important;
  width: fit-content;
  margin-left: auto;
}

/* =============== Product main ============= */
.product_main {
  padding: 5rem 0 25.5rem;
  /* background: #ebebeb; */
}

.product_menu_v2 {
  padding: 0;
  padding-bottom: 8rem;
}

.pb_0 {
  padding-bottom: 0 !important;
}

.product_menu_v2 .product_img {
  height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  animation: spin 5s linear infinite;
}

/* Keyframes for infinite rotation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* =================== navigation_area =================== */
.navigation_area {
  padding: 4.5rem 0 14.5rem;
  background: #ebebeb;
}

.arrow_right_red {
  width: 0.4rem;
}

/* =================== legales_area =================== */
.legales_text_wrap {
  max-width: 100rem;
  margin: 0 auto;
  border: 0.1rem solid #707070;
  margin-top: -10rem;
  background: #fff;
}

.legales_area {
  padding-bottom: 13.5rem;
}

.legales_img img {
  width: 14.5rem;
}

.legales_text_wrap {
  max-width: 100rem;
  margin: 0 auto;
  border: 0.1rem solid #707070;
  margin-top: -10rem;
  background: #fff;
}

.legales_area {
  padding-bottom: 13.5rem;
}

.legales_img img {
  width: 14.5rem;
}

.text_top_title h2 {
  color: #fe0020;
  padding-bottom: 2rem;
  border-bottom: 0.3rem solid #fe0020;
  margin-bottom: 3.5rem;
  text-transform: uppercase;
}

.text_wrap h4 {
  font-size: 2.2rem;
  font-weight: 600;
  font-family: var(--thirdfont);
  line-height: 1.1;
  color: #000;
}

.text_wrap ul {
  list-style: inside;
  list-style-type: square;
  color: #000;
}

/* ========================================================== asib khan========================================================== */
/* contact page  */
.gx-6 {
  --bs-gutter-x: 4.5rem;
}

/* hero-area */
.nous_trouver_hero {
  background-color: var(--red);
}

.nous-trouver-img img {
  width: 60%;
}

/* contact-area */

.nous-contact-area {
  background-color: #ebebeb;
  padding: 6rem 0 13rem 0;
}

.contac-from-content label {
  color: #22272a;
  margin-bottom: 1rem;
}

.contac-from-content span,
.contac-from-content span {
  color: #b72323;
  font-size: 1.8rem;
}

.contac-from-content input,
.contac-from-content textarea {
  border: none;
  background: #fff;
  height: 5.5rem;
  border-radius: 0;
}

.contac-from-content input:focus,
.contac-from-content textarea:focus,
.form-check-input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.contac-from-content textarea {
  height: 12rem;
  resize: none;
}

.contac-from-content .form-check-input[type="checkbox"] {
  border-radius: 0;
  margin-top: -0.2rem;
  width: 2.2rem;
  height: 2.2rem;
  border: none;
  margin-right: 1.5rem;
}

/* detail page */

.detail_hero {
  background-color: #ebebeb;
  padding: 4.5rem 0 7rem;
}

.detail_hero_img {
  /* padding: 0 2rem 0 4.5rem; */
  padding: 0 2rem 0 2rem;
}

.detail_hero_content h3 {
  text-transform: uppercase;
  color: var(--black);
  font-family: var(--secondaryfont);
  font-weight: 400;
}
.hero_right_price h3 {
  text-transform: uppercase;
  color: var(--red);
  font-weight: 400;
  font-family: var(--primaryfont);
}
.detail_hero_content {
  padding: 4rem 4.5rem 4rem 4.5rem;
  margin: 0 4rem 0 4.5rem;
}

.detail_hero_content hr {
  margin: 2.2rem 0 3.5rem;
  border-top: 1px solid #b9b9;
  opacity: 1;
}

.detail_hero_content .bold-text {
  padding: 3rem 0 1rem;
  color: var(--black);
  text-transform: uppercase;
}

.detail_hero_content .cookie-list {
  padding: 0 2rem 2rem;
}

.detail_hero_content .cookie-list li {
  list-style-type: disc;
}

.product_items {
  width: 18.9%;
  display: inline-block;
  margin: 0 0.67rem;
  border: 0.1rem solid #c1c1c1;
}

.product_items:nth-child(1) {
  margin-left: 0;
}

.product_items:nth-child(5) {
  margin-right: 0;
}

/* page_module page */

.page_module_hero {
  background-color: #ebebeb;
  padding: 4.5rem 0 14.5rem;
  position: relative;
}

.page_breadcrumb ul {
  display: flex;
  align-items: center;
}

.page_breadcrumb ul li {
  font-size: 1.6rem;
}

.page_breadcrumb ul li span {
  margin: 0 1.2rem;
  font-size: 1.6rem;
  display: inline-block;
  color: var(--red);
}

.cookie-list li {
  line-height: 1.6;
}

/* ================== Engage Hero ==================== */
.engage_hero {
  padding: 11.5rem 0 14.5rem;
  position: relative;
}

.engage_hero:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #524444;
  opacity: 0.53;
  position: absolute;
  top: 0;
  left: 0;
}

.engage_hero .container {
  position: relative;
}

.engage_hero_content h2 {
  font-size: 4rem;
  line-height: 1.1;
}

/* ================= Enage area ================== */
.engage_area {
  position: relative;
  min-height: 44rem;
  align-items: center;
  display: flex;
}

.grid_img {
  position: absolute;
  width: 14.5rem;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.engage_content_wrap img {
  width: 20rem;
}

.engage_content_wrap .engage_img1 {
  width: 22.3rem;
}

.engage_area.v1 {
  background: #ebebeb;
}

.engage_content_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8.5rem;
}

.engage_content {
  max-width: 61.7rem;
}

.engage_content h4 {
  font-size: 2.2rem;
  line-height: 2.6rem;
  font-family: var(--thirdfont);
  color: #000;
}

.engage_area.v2 {
  background: #fe0020;
}

.engage_content .button {
  background: #fff;
  border: 0.1rem solid #fff;
  color: #000;
}

.engage_content .button:hover {
  background: #eedfdf;
  border-color: #eedfdf;
}

.engage_area.v2 .engage_content p,
.engage_area.v2 .engage_content h4 {
  color: #fff;
}

.engage_area.v2 .engage_content {
  text-align: right;
}

.engage_area.v2 .engage_content .button {
  margin-left: auto;
}

.engage_img2 {
  width: 21.1rem;
}

.engage_img3 {
  width: 17rem;
}

.engage_img4 {
  width: 19.3rem;
}

/* ================== product_menu_v3 =============== */
.product_menu_v3 {
  background: #fff;
  padding: 6.5rem 0 8rem;
}

.product_menu_v3 .product {
  border: 0.1rem solid #c1c1c1;
}

.product_menu_v3 .row {
  --bs-gutter-y: 2rem;
  --bs-gutter-x: 2rem;
}

.input-error {
  border: 2px solid red !important;
}


#menuModal .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1rem;
  pointer-events: none; /* évite que l'ensemble bloque les clics */
}

#menuModal .owl-nav button {
  pointer-events: all; /* réactive les clics sur les boutons */
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 6rem;
  line-height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menuSlider .owl-dots {
  display: none; /* cacher par défaut */
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 1050;
}

#menuSlider .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

#menuSlider .owl-dot.active {
  background-color: #f00;
}

@media (max-width: 767px) {
  #menuSlider .owl-dots {
    display: block; /* afficher seulement sur mobile */
  }
}

#carouselProduits .owl-dots {
  display: none;
  position: absolute;
  bottom: -25px;
  width: 100%;
  text-align: center;
  z-index: 1050;
}

#carouselProduits .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  border-radius: 50%;
  background: #ccc;
  transition: background-color 0.3s;
}


#carouselProduits .owl-dot.active {
  background: #d71d24;
}

@media (max-width: 767px) {
  #carouselProduits .owl-dots {
    display: block;
  }
}

#onesignal-bell-container.onesignal-reset .onesignal-bell-launcher.onesignal-bell-launcher-bottom-right {
  right: 85px !important;
}