/* Response Box Css */


.response-box .alert {
  margin: 0 0 15px;
  box-shadow: 0 0 5px 0px #00000036;
  font-weight: 500;
  color: #363636;
}

.response-box .alert-success {
  background-color: #a8f0c6;
  border-left: 5px solid #178344;
}

.response-box .alert-info {
  background-color: #b2dbff;
  border-left: 5px solid #337ab7;
}

.response-box .alert-danger {
  background-color: #f7a7a3;
  border-left: 5px solid #8f130c;
}

.response-box .alert {
  padding: 15px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (max-width: 1400px) {
  .container {
    width: 90%;
  }
}

@media (min-width: 1300px) {
  .container {
    width: 1300px;
  }
}

@media (max-width: 992px) {
  .container {
    width: 100%;
  }
}


/* ==================== IMPORT FONTS ==================== */
@font-face {
  font-family: font_l;
  src: url("../fonts/Rubik-Light.ttf");
}

@font-face {
  font-family: font_m;
  src: url("../fonts/Rubik-Medium.ttf");
}

@font-face {
  font-family: font_r;
  src: url("../fonts/Rubik-Regular.ttf");
}

@font-face {
  font-family: font_sm_b;
  src: url("../fonts/Rubik-SemiBold.ttf");
}

@font-face {
  font-family: font_b;
  src: url("../fonts/Rubik-Bold.ttf");
}

@font-face {
  font-family: font_ex_b;
  src: url("../fonts/Rubik-ExtraBold.ttf");
}

:root {

  --blue: #006aff;
  --blue-b: #0015ff;
  --orange: #ff7e2d;
  --orange-mid: #ffb88c;
  --orange-light: #ffdbc6;

  --primary: #0a3161;
  --primary-100: #eef6ff;
  --primary-300: #a3c8f5;
  --primary-500: #0f468a;

  --secondary: #b31942;
  --secondary-100: #fff5f8;
  --secondary-200: #ff2d65;

  --accent-dark: #252525;
  --accent-light: #ffffff;

  --danger: #ff5d5d;
  --danger-h: #ff4444;
  --success: #00bb44;
  --success-h: #019e3a;
  --disabled: #cacaca;
  --disabled-h: #a8a8a8;

  /* SITES FONTS HEADINGS VARIABLES */
  --font-el: font_ex_l;
  --font-l: font_l;
  --font-m: font_m;
  --font-r: font_r;
  --font-sb: font_sm_b;
  --font-b: font_b;
  --font-eb: font_ex_b;
}

/* ==================== SITE ALL CSS ARE RESET ==================== */

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all .2s ease-in-out;
}

*:hover,
*:focus {
  transition: all .2s ease-in-out;
}


html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100vh;
  font-size: 16px;
  font-family: var(--font-r);
}


h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  line-height: 1.2;
  font-weight: unset !important;
}

h1 {
  font-size: 52px;
  font-family: var(--font-b);
}

h2 {
  font-size: 42px;
  font-family: var(--font-sb);
}

h3 {
  font-size: 32px;
  font-family: var(--font-sb);
}

h4 {
  font-size: 20px;
  font-family: var(--font-m);
}

h5 {
  font-size: 16px;
  font-family: var(--font-m);
}

h6 {
  font-size: 12px;
  font-family: var(--font-m);
}

p {
  margin: 0px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--accent-dark);
  font-family: var(--font-r);
  font-weight: unset !important;
}


a,
a:link,
a:hover,
a:active,
a:target,
a:any-link {
  line-height: 1;
  font-size: 16px;
  text-decoration: none;
  font-family: var(--font-m);
  font-weight: unset !important;
}

label {
  margin: unset;
  display: unset;
  line-height: 1;
  font-size: 16px;
  font-family: var(--font-m);
  font-weight: unset !important;
}

hr {
  width: 100%;
  margin: 0px;
}


input,
textarea,
input:focus,
textarea:focus,
input:focus-within,
textarea:focus-within {
  border: none;
  outline: none;
  line-height: 1;
  font-size: 14px;
  font-family: var(--font-m);
}


button,
button:hover,
button:focus,
button:focus-within,
button:focus-visible {
  border: none;
  outline: none;
  line-height: 1;
  font-size: 16px;
  font-family: var(--font-m);
  font-weight: unset !important;
}


img {
  pointer-events: none;
}

svg {
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a svg,
button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

h2 svg,
h3 svg,
h4 svg {
  width: auto;
  height: 32px;
  flex: 0 0 auto;
}


ul,
li {
  margin: 0px;
  list-style: none;
}


::placeholder {
  line-height: 1;
  font-size: 14px;
  color: var(--disabled);
  font-family: var(--font-r);
}


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

::-webkit-scrollbar-track {
  background-color: var(--disabled);
}

::-webkit-scrollbar-thumb {
  background-color: var(--secondary-200);
}

/* =================== CUSTOM CLASSES CSS START =================== */
.web-imagebox {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  min-height: 20px;
  position: relative;
}

.web-imagebox img {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  inset: 0px;
}

.word-break-clamp {
  overflow: hidden;
  display: -webkit-box;
  word-break: break-all;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.v-line {
  width: 1px;
  height: 22px;
  background-color: var(--secondary-200);
}

.h-line {
  width: 100%;
  height: 1px;
  background-color: var(--orange);
}

.position__non-relative {
  position: initial;
}

/* =================== MAIN HEADER CSS START =================== */
.main-header {
  position: relative;
  background-color: var(--primary);
}

.lg-navbar {
  gap: 30px;
  display: flex;
  padding: 15px 0px;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  flex: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo .brand-link {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo .brand-link .logo {
  width: 100%;
  height: 100%;
}

.collapse-navbar {
  flex: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.collapse-navbar .ar__navbar-nav {
  flex: 1;
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ar__nav-link .link-style {
  width: 4px;
  height: 2px;
  background-color: var(--accent-light);
}

.ar__navbar-nav .ar__nav-link {
  gap: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}

.ar__navbar-nav .ar__nav-link.active .link-style,
.ar__navbar-nav .ar__nav-link:hover .link-style {
  width: 24px;
  background-color: var(--secondary-200);
}

.ar__navbar-nav .ar__nav-link.active,
.ar__navbar-nav .ar__nav-link:hover {
  color: var(--accent-light);
}


.collapse-navbar .ar__nav-link:not(.ar__navbar-nav .ar__nav-link) {
  gap: 10px;
  display: flex;
  padding: 6px 12px;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-family: var(--font-r);
  border: 2px solid var(--secondary-200);
  background-color: var(--secondary-200);
}

.collapse-navbar .ar__nav-link svg {
  stroke: var(--accent-light);
}

.collapse-navbar .ar__nav-link:hover:not(.ar__navbar-nav .ar__nav-link) {
  background-color: var(--secondary);
}


.menu-btn {
  display: none;
}

.sm-navbar {
  display: flex;
  padding: 10px 0px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--primary-500);
}

.sm-navbar .ar__nav-link:not(.search-result .ar__navbar-nav .ar__nav-link) {
  gap: 10px;
  display: flex;
  padding: 6px 12px;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-family: var(--font-r);
  border: 2px solid var(--accent-light);
}

.sm-navbar .ar__nav-link svg {
  transition: unset;
  stroke: var(--accent-light);
}

.sm-navbar .ar__nav-link:hover:not(.search-result .ar__navbar-nav .ar__nav-link) {
  color: var(--secondary-200);
  /* border-color: var(--blue-b); */
  background-color: var(--accent-light);
}

.sm-navbar .ar__nav-link:hover svg {
  transition: unset;
  stroke: var(--secondary-200);
}


.search-bar {
  gap: 5px;
  height: 46px;
  padding: 4px;
  display: flex;
  flex: 1 1 285px;
  max-width: 485px;
  position: relative;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px solid transparent;
}

.search-bar.search-action {
  background-color: var(--accent-light);
}

.search-bar .search-fld_grp {
  width: 100%;
  display: flex;
  flex: 0 0 36px;
  padding: 0px 4px;
  overflow: hidden;
  border-radius: 2px;
  align-items: center;
  justify-content: flex-end;
  border: 2px solid transparent;
  background-color: var(--accent-light);
}

.search-bar.searchbar-active .search-fld_grp {
  border-color: var(--secondary-200);
}

.search-bar .search-fld_grp .search-fld {
  flex: 1;
  height: 30px;
  padding: 0px 10px;
  color: var(--accent-dark);
}

.search-bar .search-fld_grp .search-btn {
  flex: 0 30px;
  height: 30px;
  display: flex;
  position: relative;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.search-bar .search-btn :is(.search-ic, .close-ic) {
  width: 20px;
  height: 20px;
  transition: all .1s ease-in-out;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -ms-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
}

.search-bar .search-btn .search-ic {
  fill: var(--secondary-200);
}

.search-bar .search-btn .close-ic {
  display: none;
  stroke: var(--secondary-200);
}

.search-bar .search-btn:hover .search-ic {
  fill: var(--secondary);
}

.search-bar .search-btn:hover .close-ic {
  stroke: var(--secondary);
}

.search-result {
  gap: 5px;
  opacity: 0;
  width: 100.3%;
  z-index: -1;
  padding: 4px;
  display: flex;
  overflow: auto;
  /* max-width: 385px; */
  min-width: 285px;
  max-height: 312px;
  align-items: unset;
  pointer-events: none;
  flex-direction: column;
  justify-content: flex-start;
  border-top: none !important;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: var(--accent-light);
  box-shadow: 0px 14px 14px rgb(0, 0, 0, .3);
  position: absolute;
  right: -1px;
  top: 45px;
}

.search-bar.search-action .search-result {
  top: 100%;
  opacity: 1;
  z-index: 100;
  pointer-events: all;
}

.search-result article:first-child,
.search-result .ar__navbar-nav {
  flex: 1;
  flex-wrap: wrap;
}

.search-result :is(article:first-child, .ar__nav-list) {
  padding: 4px;
}

.search-result article:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-result article:nth-child(1) h4 {
  color: var(--accent-dark);
}

.search-result .h-line {
  flex: 0 0 1px;
  background-color: var(--primary);
}

.search-result .ar__navbar-nav {
  gap: 5px;
  display: flex;
  overflow: auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.search-result .ar__nav-list {
  flex: 1 1 278px;
}

.search-result .ar__navbar-nav .ar__nav-link {
  gap: 10px;
  display: flex;
  border-radius: 8px;
  align-items: center;
  justify-content: flex-start;
}

.search-result .ar__navbar-nav .ar__nav-link:hover {
  background-color: var(--primary-100);
}

.img-border {
  flex: 0 60px;
  height: 55px;
  padding: 3px;
  display: grid;
  border-radius: 4px;
  place-items: center;
  background-color: var(--primary-300);
}

.store-img {
  width: 100%;
  height: 100%;
  padding: 3px;
  display: grid;
  border-radius: 2px;
  place-items: center;
  border: 1px dashed var(--primary);
  background-color: var(--accent-light);
}

.search-result .ar__navbar-nav .ar__nav-link article {
  flex: 1;
  gap: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.search-result .ar__navbar-nav .ar__nav-link article :is(h5, p) {
  width: 100%;
}

.search-result .ar__navbar-nav .ar__nav-link article h5 {
  color: var(--accent-dark);
}

.search-result .ar__navbar-nav .ar__nav-link:hover article h5 {
  color: var(--accent-dark);
}

.search-result .ar__navbar-nav .ar__nav-link article p {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-result .ar__navbar-nav article p span {
  color: var(--primary-500);
  font-family: var(--font-m);
}

.search-result .ar__navbar-nav article p span:last-child {
  font-size: 12px;
  align-self: flex-end;
  color: var(--disabled-h);
}

.search-result .ar__navbar-nav .ar__nav-link:hover article p span:last-child {
  color: var(--secondary-200);
}

.search-result .ar__navbar-nav article p span span {
  font-family: var(--font-r);
}


/* =================== MAIN BODY CSS =================== */
.main-body .coupons-sec,
.main-body section:nth-child(even) {
  background-color: #f5faff;
}


/* =================== CONTENT CSS START =================== */
.content-container {
  padding: 15px 0px;
}

.content-heading {
  gap: 10px;
  display: flex;
  padding: 15px 0px;
  align-items: center;
  justify-content: center;
}

.content-heading .h-line {
  height: 2px;
  flex: 0 0 50px;
  background-color: var(--secondary-200);
}

.content-heading article {
  position: relative;
}

.content-heading article :is(p, h3) {
  text-transform: uppercase;
}

.content-heading article p {
  /* opacity: .3; */
  line-height: 1;
  font-size: 32px;
  text-align: center;
  color: var(--accent-dark);
  font-family: var(--font-sb);
}

.content-heading article h3 {
  opacity: 0;
  width: 100%;
  text-align: center;
  color: var(--accent-dark);
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}

.content-wrapper {
  gap: 20px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}


/* ===== HERO SWIPER SLIDES CSS START ===== */
.hero-sec .content-wrapper {
  padding: 15px 0px;
}

.content-wrapper :is(.swiper, .swiper-wrapper) {
  width: 100%;
  height: 100%;
}

.swiper-slide.swiper-slide-active {
  flex: 0 0 50%;
  min-width: 280px;
  transition: flex .8s ease-in-out, min-width .8s ease-in-out;
}

.swiper-slide.swiper-slide-active .featured-coupons {
  transition: background-position .8s ease-in-out;
}

.swiper-slide {
  height: 100%;
  flex: 0 0 280px;
  transition: flex .8s ease-in-out;
}

.hero-link {
  width: 100%;
  height: 380px;
  display: flex;
  overflow: hidden;
  padding: 40px 30px;
  position: relative;
  border-radius: 10px;
  flex-direction: column;
  background-size: cover;
  justify-content: flex-end;
  background-repeat: no-repeat;
  background-position: center right;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, .2);
  transition: background-position .8s ease-in-out;
}

.hero-link::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0 0 0 / 80%) 70%);
  position: absolute;
  inset: 0 0;
}

.hero-content {
  gap: 15px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.tag {
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
  padding: 5px 10px;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
}

.hero-content .tag.exp {
  padding: 0px;
}

.tag-ic {
  display: grid;
  flex: 0 0 20px;
  place-items: center;
}

.tag-txt {
  gap: 2px;
  display: flex;
  line-height: 1;
  font-family: var(--font-m);
}

.tag-txt span {
  font-family: var(--font-l);
}

.hero-content .uses {
  background-color: var(--secondary-200);
}

.hero-content .uses .tag-ic {
  stroke: var(--accent-light);
}

.hero-content .uses p {
  color: var(--accent-light);
}

.hero-content .hero-info {
  gap: 5px;
  display: flex;
  flex-direction: column;
}

.hero-content .hero-info .hero-heading {
  width: 100%;
  -webkit-line-clamp: 2;
  color: var(--accent-light);
}

.hero-content .hero-info p {
  width: 100%;
  -webkit-line-clamp: 2;
  color: var(--disabled);
}

.hero-content .exp .tag-txt {
  color: var(--primary-300);
}


/* ===== STORES CARDS CSS START ===== */
.stores-sec .store-link,
.top__stores-sec .store-link {
  padding: 15px;
  flex: 0 0 140px;
  border-radius: 5px;
  border: 1px solid #efefef;
  background-color: var(--accent-light);
  box-shadow: 4px 4px 10px rgba(128, 189, 255, 0.3);
  /* box-shadow: 4px 4px 10px rgb(175, 175, 175, .2); */
}

.store-card {
  flex: 1;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.store-card .card-img {
  width: 100%;
  height: 50px;
}

.store-card article h5 {
  color: var(--accent-dark);
}

.stores-sec .store-link:hover,
.top__stores-sec .store-link:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 10px rgba(128, 189, 255, 0.5);
}

.top__stores-sec .store-link:hover article h5 {
  transition: unset;
  color: var(--orange);
}

.content-link {
  gap: 5px;
  display: flex;
  margin: 15px auto;
  padding: 7px 14px;
  border-radius: 5px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  border: 2px solid transparent;
  background-color: var(--primary-500);
  transition: background-color .2s ease-in-out;
}

.content-link .arrow__right__circle-ic {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
}

.content-link .arrow__right__circle-ic svg {
  transition: unset;
  stroke: var(--accent-light);
}

.content-link:hover,
.content-link:focus {
  color: var(--accent-light);
  background-color: var(--primary);
  border: 2px solid var(--primary-500);
  transition: background-color .2s ease-in-out;
}

.content-link:hover .arrow__right__circle-ic svg,
.content-link:focus .arrow__right__circle-ic svg {
  transition: unset;
}

/* ===== POPULAR BLOGS CSS START ===== */
.blog-link {
  height: 100%;
  flex: 1 280px;
}

.blogs-wrapper {
  gap: 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.blogs-wrapper:last-child .blog-link {
  flex: 1 280px;
}

.blogs-wrapper:last-child .blog-link:nth-child(2) {
  flex: 2 480px;
}

.blogs-card {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  flex-direction: column;
  background-size: cover;
  align-items: flex-start;
  padding: 80px 15px 10px;
  justify-content: flex-end;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 4px 4px 10px rgba(128, 189, 255, 0.4);
}

.blog-link:hover .blogs-card {
  box-shadow: 4px 4px 10px rgba(128, 189, 255, 0.7);
}

.blogs-card::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0 0 0 / 80%) 70%);
  background-repeat: no-repeat;
  background-position: 0px 50px;
  position: absolute;
  inset: 0 0;
}

.blog-link:hover .blogs-card::before {
  background-position: 0px 0px;
}

.tag-category {
  z-index: 1;
  padding: 10px;
}

.tag-category p {
  padding: 5px 20px;
  border-radius: 2px;
  color: var(--accent-light);
  background-color: var(--secondary-200);
}

.blog-content {
  gap: 5px;
  z-index: 1;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}

.blog-content h4 {
  -webkit-line-clamp: 2;
}

.blog-content h4 {
  flex: 0 0 100%;
  color: var(--accent-light);
}

.blog-content p {
  flex: 0 0 100%;
  color: var(--disabled);
}

.blog-content span {
  margin-top: 10px;
  color: var(--primary-300);
  font-family: var(--font-r);
}

/* ===== LATEST BLOGS CSS START ===== */
.latest__blogs-sec .content-wrapper {
  gap: 40px;
  justify-content: unset;
}

.latest__blogs-sec .blog_link {
  flex: 1 415px;
}

/* .latest__blogs-sec .blog_link:nth-child(3) .blog_img,
.latest__blogs-sec .blog_link:nth-child(4) .blog_img {
  order: 2;
}
.latest__blogs-sec .blog_link:nth-child(3) .blog_content,
.latest__blogs-sec .blog_link:nth-child(4) .blog_content {
  margin-left: unset;
  margin-right: -15%;
} */

.blog_card-layout-2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.blog_card-layout-2 .blog_img {
  width: 100%;
  height: 225px;
  display: flex;
  /* flex: 1 120px; */
  overflow: hidden;
  /* max-width: 300px; */
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.blog_card-layout-2 .blog_img img {
  width: 100%;
  height: 100%;
  margin: auto;
  max-width: unset;
  max-height: unset;
  object-fit: cover;
}

.blog_link:hover .blog_card-layout-2 .blog_img img {
  transform: scale(1.1);
  transition: transform .5s ease-in-out .2s;
  -webkit-transition: transform .5s ease-in-out .2s;
  -moz-transition: transform .5s ease-in-out .2s;
  -ms-transition: transform .5s ease-in-out .2s;
  -o-transition: transform .5s ease-in-out .2s;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.blog_card-layout-2 .blog_content {
  gap: 5px;
  z-index: 1;
  width: 90%;
  flex: 1 140px;
  display: flex;
  margin-top: -15%;
  /*margin-left: -15%;
  */
  border-radius: 5px;
  height: fit-content;
  flex-direction: column;
  padding: 30px 20px 20px;
  align-items: flex-start;
  justify-content: center;
  transition: transform .2s ease-in-out;
  box-shadow: 0 0 4px rgba(0, 0, 0, .08);
  -webkit-transition: transform .2s ease-in-out;
  -moz-transition: transform .2s ease-in-out;
  -ms-transition: transform .2s ease-in-out;
  -o-transition: transform .2s ease-in-out;
  background-color: var(--accent-light);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.blog_link:hover .blog_card-layout-2 .blog_content {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.blog_card-layout-2 .blog_content .heading {
  font-size: 24px;
  max-width: 425px;
  -webkit-line-clamp: 2;
  transition: color .2s ease-in-out;
  -webkit-transition: color .2s ease-in-out;
  -moz-transition: color .2s ease-in-out;
  -ms-transition: color .2s ease-in-out;
  -o-transition: color .2s ease-in-out;
}

.blog_link:hover .blog_content .heading {
  color: var(--primary-500);
  text-decoration: underline;
}

.blog_card-layout-2 .blog_content .tag {
  padding: 0px;
}

.blog_card-layout-2 .blog_content .tag.category {
  color: var(--primary);
}

.blog_card-layout-2 .blog_content .tag.category strong {
  color: var(--secondary-200);
}

.blog_card-layout-2 .blog_content .tag.time {
  margin-top: 10px;
  color: var(--disabled);
}

/* ===== COUPONS CARD CSS START ===== */
.coupons-card {
  /* gap: 10px; */
  display: flex;
  flex: 1 1 600px;
  flex-wrap: wrap;
  overflow: hidden;
  border-radius: 4px;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #efefef;
  background-color: var(--accent-light);
  box-shadow: 4px 4px 10px rgb(175, 175, 175, .4);
}

.categroy__coupons-sec .coupons__container {
  gap: 20px;
  border: none;
  padding: 20px 0px 0px;
  background-color: transparent;
}

.categroy__coupons-sec .coupons__container .coupons-card {
  box-shadow: 4px 4px 10px rgba(128, 189, 255, 0.3);
}

.categroy__coupons-sec .coupons__container .coupons-card:hover {
  box-shadow: 4px 4px 10px rgba(128, 189, 255, 0.5);
}

.categroy__coupons-sec .coupons__container .coupons-card .card-body {
  padding: 20px;
}

.coupons-card:hover {
  box-shadow: 6px 6px 10px rgb(175, 175, 175, .6);
}

.coupons-card .card-head {
  width: 100%;
  height: 120px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.coupons-card .card-head::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 34, 49, .8) 100%);
  position: absolute;
  inset: 0 0;
}

.coupons-card .card-body {
  gap: 15px;
  height: 100%;
  flex: 1 375px;
  display: flex;
  padding: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.coupons__container .coupons-card .card-body {
  padding: 10px 20px;
}

.coupons-card .card-img {
  /* z-index: 1; */
  height: 70px;
  padding: 8px;
  flex: 0 0 80px;
  border: 1px solid var(--secondary-200);
  /* border-top-left-radius: 2.5px;
  border-top-right-radius: 2.5px; */
  border-radius: 5px;
  box-shadow: inset 0px 0px 6px #e9becb, 0px 0px 6px #e9becb;
  background-color:
    var(--accent-light);
  /* position: absolute;
  bottom: 0px;
  left: 20px; */
}

.coupons-card .store-img {
  border: none;
  /* padding: 10px; */
}

.coupon-tags {
  order: 2;
  gap: 10px;
  flex: 1 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.coupon-tags .tag {
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coupon-tags .tag svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  stroke-width: 3.6px;
  stroke: var(--accent-light);
}

.coupon-tags .exp {
  background-color: hsl(0deg 100% 60%);
}

.coupon-tags .exp p {
  color: var(--accent-light);
}

.coupon-tags .uses {
  background-color: #549bff;
}

.coupon-tags .uses p {
  color: var(--accent-light);
}

.coupon-tags .add {
  background-color: var(--success-h);
}

.coupon-tags .add p {
  color: var(--accent-light);
}

.coupon-content {
  gap: 5px;
  flex: 1 240px;
  display: flex;
  flex-direction: column;
}

.coupons__container .coupon-content {
  flex: 1 272px;
}

.coupon-content .heading {
  color: var(--accent-dark);
}

.coupon-content :is(.heading, .txt) {
  word-break: unset;
  -webkit-line-clamp: 2;
}

.coupons-card .card-footer {
  gap: 10px;
  display: flex;
  flex: 0 0 240px;
  flex-wrap: wrap;
  padding: 20px 30px;
  align-items: flex-end;
  justify-content: center;
  border-left: .1px solid #efefef;
}

.card-footer article:first-child:not(.coupon-link article) {
  flex: 1;
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card-footer article:first-child:not(.coupon-link article) p {
  text-align: center;
  border-radius: 3px;
  font-family: var(--font-m);
}

.card-footer article:first-child:not(.coupon-link article) p:first-child {
  /* padding: 3px 20px; */
  color: var(--success-h);
  /* background-color: #dbffe8; */
}

.card-footer article:first-child:not(.coupon-link article) p span {
  font-family: var(--font-r);
}

.card-footer article:first-child:not(.coupon-link article) p:last-child {
  flex: 1 1 115px;
}

.card-footer .coupon-link {
  width: 100%;
  height: 50px;
  display: flex;
  border-radius: 2px;
  color: var(--accent-light);
  justify-content: space-between;
  transition: background-color .2s ease-in-out;
}

.card-footer .coupon-link.deal {
  background-color: var(--primary-500);
  border: 1px solid var(--primary-500);
}

.card-footer .coupon-link.deal:hover {
  background-color: var(--primary);
}

.card-footer .coupon-link.code {
  background-color: var(--secondary-200);
  border: 1px solid var(--secondary-200);
}

.card-footer .coupon-link.code:hover {
  color: var(--accent-light);
  background-color: var(--secondary);
}

.card-footer .coupon-link article {
  flex: 0 55px;
  display: flex;
  overflow-x: hidden;
  align-items: center;
  justify-content: center;
  border-right: 1px dashed var(--accent-light);
}

.card-footer .coupon-link.code article {
  justify-content: flex-start;
}

.coupon-link.deal article .coupon-ic {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.coupon-link.code article .coupon-ic {
  width: 20px;
  height: 20px;
  flex: 0 0 55px;
}

.coupon-link.code:hover article {
  flex: 0 50%;
}

.coupon-link.code:hover article .coupon-ic {
  flex: 0 0 30px;
}

.coupon-link.code article p {
  flex: 0 0 auto;
  font-size: 18px;
  color: var(--accent-light);
  font-family: var(--font-r);
}

.coupon-link article .coupon-ic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coupon-link article .coupon-ic svg {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  stroke: var(--accent-light);
}

.card-footer .coupon-link span {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ===== CATEGORIES CARDS CSS START ===== */
.categroy-link {
  padding: 5px;
  display: flex;
  flex: 0 0 160px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--disabled);
  background-color: var(--accent-light);
}

.categroy-link:hover {
  border-color: #e0f7ff;
  border-color: var(--primary);
  background-color: var(--secondary-100);
}

.categroy-card {
  gap: 15px;
  padding: 5px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.categroy-card .card-img {
  width: 65px;
  height: 65px;
  padding: 10px;
  border-radius: 50%;
  border: 6px solid var(--secondary-200);
  background-color: var(--accent-light);
}

.categroy-card article h5 {
  color: var(--accent-dark);
}


/* ===== FAQ ACCORDIANS CSS START ===== */
.faq-sec {
  overflow: hidden;
  position: relative;
}

.faq-sec .content-wrapper {
  align-items: unset;
}

.accordions-group {
  gap: 15px;
  flex: 0 0 50%;
  display: flex;
  flex-wrap: wrap;
  height: fit-content;
  align-items: flex-start;
  justify-content: center;
}

.accordion-list * {
  transition: unset;
  pointer-events: none;
}

.accordion-list {
  gap: 10px;
  z-index: 1;
  display: flex;
  flex: 1 1 100%;
  cursor: pointer;
  overflow: hidden;
  padding: 10px 10px;
  border-radius: 5px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border: 2px solid #e9e9e9;
  background-color: var(--accent-light);
}

.accordion-header {
  gap: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-counter {
  line-height: 1;
  font-size: 28px;
  position: relative;
  color: var(--orange);
  font-family: var(--font-b);
}

.accordion-active:hover .accordion-counter,
.accordion-active .accordion-counter {
  color: var(--blue);
}

.accordion-counter::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background-color: var(--orange-light);
  inset: 10px 0 0 14px;
  position: absolute;
  z-index: -1;
}

.accordion-active:hover .accordion-counter::after,
.accordion-active .accordion-counter::after {
  opacity: .2;
  background-color: var(--blue-b);
}

.accordion-heading {
  flex: 1;
  line-height: 1;
  font-size: 18px;
  color: var(--accent-dark);
}

.accordion-header .chevron__down-ic {
  width: 24px;
  height: 24px;
}

.accordion-header .chevron__down-ic svg {
  stroke-width: 2.3px;
  stroke: var(--disabled);
  /* stroke: var(--orange-mid); */
  transition: transform .2s ease-in-out;
}

.accordion-content {
  display: none;
  pointer-events: all;
}

.accordion-list:hover {
  border-color: var(--orange);
}

.accordion-active:hover,
.accordion-active {
  border-color: var(--blue);
}

.accordion-list:hover .chevron__down-ic svg {
  stroke: var(--orange);
  transition: transform .2s ease-in-out;
}


.accordion-active:hover .chevron__down-ic svg,
.accordion-active .chevron__down-ic svg {
  stroke: var(--blue);
  transform: rotate(180deg);
  transition: transform .2s ease-in-out;
}

/* FAQ BACKGROUND ABSTRACT SHAPES CSS START */
.bg__shapes {
  position: absolute;
}

.bg__shapes {
  width: 52px;
  height: 52px;
}

.bg__shapes .cls-1 {
  fill: var(--orange);
  stroke: var(--orange);
}

.bg__shapes .cls-2 {
  fill: none;
  stroke-width: 2px;
  stroke: var(--blue-b);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bg__shapes.half__circle {
  left: 80px;
  top: 40px;
}

.bg__shapes.wave-lines {
  width: 250px;
  transform: translateY(-50%);
  left: 60px;
  top: 50%;
}

.bg__shapes.wave-lines .cls-1 {
  fill: none;
}

.bg__shapes.circle-round {
  bottom: 40px;
  left: 60px;
}

.bg__shapes.space-lines {
  width: auto;
  height: 100px;
  right: 10px;
  top: -10px;
}

.bg__shapes.shine-circles {
  width: 60px;
  height: 60px;
  right: 310px;
  top: 90px;
}

.bg__shapes.shine-circles .cls-1 {
  stroke: none;
  fill: var(--blue-b);
}

.bg__shapes.shine-circles .cls-2 {
  stroke: none;
  fill: var(--orange);
}

.bg__shapes.half__circle-round {
  bottom: 40px;
  right: 80px;
}

/* ===== DISCLAIMER & HOW-TO-USE CSS START ===== */
.disclmr__howtouse-sec .content-wrapper {
  gap: 0px;
  align-items: unset;
  justify-content: space-between;
}

.disclaimer-detail,
.howtouse-detail {
  gap: 5px;
  display: flex;
  flex: 1 1 431px;
  padding: 10px 30px;
  flex-direction: column;
}

.disclaimer-detail {
  border-right: 1px solid #e9e9e9;
}

.howtouse-detail {
  border-left: 1px solid #e9e9e9;
}

.heading {
  color: var(--accent-dark);
}

.disclaimer-detail p,
.howtouse-detail p {
  color: #878787;
  text-align: justify;
}

/* ===== BREADCRUMB NAVBAR CSS START ===== */
.breadcrumb-navbar {
  width: 100%;
  overflow-x: auto;
}

.navbar-nav {
  margin: 0px;
}

.breadcrumb-navbar,
.breadcrumb-navbar .navbar-nav,
.breadcrumb-navbar .navbar-nav .nav-link {
  flex: 1;
  display: flex;
}

.breadcrumb-navbar .navbar-nav .nav-link {
  padding: 5px;
  transition: unset;
  color: var(--accent-dark);
}

.breadcrumb-navbar .navbar-nav .nav-link svg {
  stroke: var(--accent-dark);
  transition: unset !important;
}

.breadcrumb-navbar .navbar-nav .nav-link:hover,
.breadcrumb-navbar .navbar-nav .nav-link.active:hover {
  transition: unset;
  color: var(--secondary);
  text-decoration: underline;
}

.breadcrumb-navbar .navbar-nav .nav-link:hover svg,
.breadcrumb-navbar .navbar-nav .nav-link.active:hover svg {
  stroke: var(--secondary);
  transition: unset !important;
}

.breadcrumb-navbar .navbar-nav :is(.nav-link.active, .nav-link:active) {
  color: var(--secondary-200);
  text-decoration: underline;
}

/* =================== CONTACT SECTION CSS START =================== */
.contact-sec .content-heading {
  padding: 15px 0px 0px;
}

.contact-sec .content-txt {
  padding: 10px 0px 0px;
}

.contact-sec .content-txt p {
  line-height: 1;
  font-size: 18px;
  text-align: center;
  color: var(--disabled-h);
  font-family: var(--font-r);
}

.contact-sec .content-wrapper {
  padding: 50px 0px 15px;
}

/* ===== CONTACT DETAIL CSS START ===== */
.contact-container {
  flex: 1;
  display: flex;
  padding: 10px;
  flex-wrap: wrap;
  border-radius: 10px;
  /* align-items: flex-start; */
  background-color: var(--accent-light);
}

.contact-info {
  gap: 30px;
  display: flex;
  flex: 1 1 380px;
  overflow: hidden;
  padding: 40px 30px;
  position: relative;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #001939;
}

.contact-info::before,
.contact-info::after {
  content: "";
  border-radius: 50%;
  position: absolute;
}

.contact-info::before {
  width: 200px;
  height: 200px;
  background-color: var(--secondary-100);
  bottom: -55px;
  right: -55px;
}

.contact-info::after {
  opacity: .8;
  width: 120px;
  height: 120px;
  background-color: var(--secondary-200);
  bottom: 40px;
  right: 30px;
}

.contact-heading {
  gap: 5px;
  display: flex;
  flex-direction: column;
}

.contact-heading h4 {
  color: var(--primary-300);
}

.contact-heading p {
  color: var(--accent-light);
}

.contact-details {
  gap: 25px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.contact-details article {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-details .contact-ic {
  width: 38px;
  height: 38px;
  padding: 8px;
  display: flex;
  flex: 0 0 38px;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-500);
}

.contact-details .contact-ic svg {
  width: auto;
  height: 100%;
  stroke: var(--accent-light);
}

.contact-details .email-detail svg {
  stroke-width: 1.5px;
}

.contact-details .phone-detail p {
  display: flex;
  flex-direction: column;
}

.contact-details article p {
  flex: 1;
  color: var(--accent-light);
}

/* ===== SOCIAL NAVBAR CSS START ===== */
.contact-social__nav {
  gap: 5px;
  display: flex;
}

.contact-social__nav :is(.social__nav-list, .social__nav-link) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social__nav-link {
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
}

.social__nav-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  transition: unset;
  fill: var(--accent-light);
}

.social__nav-link svg.twitter-ic {
  fill: transparent;
  stroke: var(--accent-light);
}

.social__nav-link:hover {
  background-color: var(--primary-300);
}

.social__nav-link:hover svg {
  transition: unset;
  fill: var(--secondary-3);
}

.social__nav-link:hover svg.twitter-ic {
  fill: transparent;
  transition: unset;
  stroke: var(--accent-dark);
}

/* ===== CONTACT FORM CSS START ===== */
.contact-form {
  display: flex;
  gap: 30px 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.field-group {
  display: flex;
  flex: 1 1 245px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.txt-field {
  flex: 1 1 100%;
  padding: 10px 0px;
  border-bottom: 2px solid #8f8f8f;
}

.txt-field:focus {
  padding: 10px;
}

.textarea.field-group {
  flex: 1 1 100%;
}

.field-group label {
  color: #8f8f8f;
}

.textarea.field-group .txt-field {
  resize: none;
}

.field-group:hover label {
  color: var(--primary);
}

.field-group:hover .txt-field {
  border-color: var(--primary);
}

.active-field label,
.active-field:hover label {
  color: var(--secondary-200);
}

.active-field .txt-field,
.active-field:hover .txt-field {
  border-bottom: 2px solid var(--secondary-200);
}

.btn-group {
  flex: 1;
  display: flex;
  align-self: flex-end;
  justify-content: flex-end;
}

.submit-btn {
  padding: 15px 30px;
  border-radius: 5px;
  color: var(--accent-light);
  border: 2px solid var(--primary-500);
  background-color: var(--primary-500);
}

.submit-btn:hover,
.submit-btn:focus {
  color: var(--accent-light);
  border: 2px solid var(--primary);
  background-color: var(--primary);
}


/* =================== ABOUT CONTENT CSS START =================== */
.about-container {
  flex: 1;
  gap: 30px;
  display: flex;
  padding: 10px;
  border-radius: 10px;
  flex-wrap: wrap-reverse;
  background-color: var(--accent-light);
}

.about-content {
  gap: 15px;
  display: flex;
  flex: 1 1 600px;
  padding: 10px 20px;
  flex-direction: column;
}

.about-content .contact-details {
  flex-wrap: wrap;
  margin-top: 15px;
  flex-direction: row;
}

.about-sec .contact-info {
  flex: 1 1 300px;
}

.about-sec .contact-heading {
  gap: 30px;
}

.short_navbar-nav {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.short_nav-list,
.short_nav-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.short_nav-link {
  color: #e4fff0;
  padding: 15px 0px;
}

.short_nav-link.active,
.short_nav-link:hover,
.short_nav-link:focus,
.short_nav-link:active {
  color: var(--secondary);
}

.about-headings {
  gap: 5px;
  display: flex;
  flex-direction: column;
}

.about-headings h4 {
  color: var(--secondary-200);
}

.about-headings h3 {
  color: var(--accent-dark);
}

.about-details {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.about-details p {
  font-size: 16px;
  line-height: 1.4;
  text-align: justify;
}

.about-link {
  width: max-content;
  border-radius: 5px;
  padding: 15px 30px;
  color: var(--accent-light);
  border: 2px solid var(--primary-500);
  background-color: var(--primary-500);
}

.about-link:hover,
.about-link:focus,
.about-link:active {
  color: var(--accent-light);
  background-color: var(--primary);
}

/* =================== ALL STORES CONTENT CSS START =================== */
.stores-sec .content-container .content-wrapper {
  padding: 15px 0px;
}

.content-wrapper.content {
  position: relative;
  align-items: flex-start;
}

.side-content {
  flex: 10 520px;
}

.side-content .content-heading {
  flex-wrap: wrap;
  padding: 20px 0px;
  justify-content: space-between;
  border-bottom: 1px solid #e7e7e7;
}

.content-heading .heading {
  flex: 1 68%;
  /* color: var(--accent-dark); */
  text-transform: capitalize;
}

.filter-lbl {
  flex: 1;
  display: flex;
  cursor: pointer;
  padding: 5px 10px;
  position: relative;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-500);
}

.filter-lbl:hover {
  background-color: var(--primary);
}

.filter-active,
.filter-active:hover {
  background-color: var(--primary);
  transition: background-color .2s ease-in-out;
}

.filter-lbl .filter-ic {
  gap: 5px;
}

.filter-lbl .filter-ic span {
  color: var(--primary-500);
  font-family: var(--font-r);
}

.filter-lbl:hover .filter-ic span {
  color: var(--accent-light);
}

.filter-active .filter-ic span,
.filter-active:hover .filter-ic span {
  transition: unset;
  color: var(--accent-light);
}

.filter-lbl :is(.filter-ic, .chevron-down-ic) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-lbl :is(.filter-ic svg, .chevron-down-ic svg) {
  width: 20px;
  height: 20px;
  stroke: var(--primary-500);
}

.filter-lbl:hover :is(.filter-ic svg, .chevron-down-ic svg) {
  stroke: var(--accent-light);
}

.filter-active :is(.filter-ic svg, .chevron-down-ic svg),
.filter-active :is(.filter-ic svg, .chevron-down-ic svg):hover {
  transition: unset;
  stroke: var(--accent-light);
}

.filter-lbl .selected-value {
  margin-left: 10px;
  color: var(--primary-500);
  font-family: var(--font-m);
  text-transform: capitalize;
}

.filter-lbl:hover .selected-value {
  color: var(--accent-light);
}

.filter-active .selected-value {
  transition: unset;
  color: var(--accent-light);
}

.filter-lbl .chevron-down-ic {
  margin-left: 5px;
}

.filter-lbl .filter__navbar-nav {
  gap: 5px;
  opacity: 0;
  z-index: 5;
  width: 280px;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 3px;
  align-items: center;
  pointer-events: none;
  transform: translateY(25px);
  justify-content: flex-start;
  outline: 1px solid #e7e7e7;
  background-color: var(--accent-light);
  position: absolute;
  right: -2px;
  top: 120%;
}

.filter-lbl.filter-active .filter__navbar-nav {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
  box-shadow: -4px 6px 10px rgba(0, 0, 0, .08);
  transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}

.filter-lbl :is(.filter__nav-list, .filter__nav-link) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-lbl .filter__nav-list {
  flex: 1 25%;
}

.filter-lbl .filter__nav-link {
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 2px;
  color: var(--secondary-200);
  text-transform: uppercase;
  font-family: var(--font-r);
  border: 1px solid var(--secondary-200);
}

.filter-lbl .filter__nav-link:hover {
  background-color: var(--secondary-100);
}

.filter-lbl .filter__nav-link.active,
.filter-lbl .filter__nav-link.active:hover {
  border-color: var(--secondary-200);
  background-color: var(--secondary-100);
}


.stores-wrapper {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.stores-header {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e7e7e7;
}

.stores-header .subtitle-2 {
  color: var(--accent-dark);
}

.stores-details {
  gap: 20px;
  display: flex;
  flex: 1 1 317px;
  align-items: center;
  justify-content: flex-end;
}

.stores-header .caption {
  padding: 8px 10px;
  border-radius: 3px;
  color: var(--success);
  font-family: var(--font-r);
  background-color: #cfffe0;
}

.view-all-nav {
  gap: 5px;
  display: flex;
  padding: 7px 14px;
  border-radius: 3px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  border: 2px solid transparent;
  background-color: var(--primary-500);
  font-family: var(--font-r) !important;
  transition: background-color .2s ease-in-out;
}

.view-all-nav .arrow__right__circle-ic {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
}

.view-all-nav .arrow__right__circle-ic svg {
  transition: unset;
  stroke: var(--accent-light);
}

.view-all-nav:hover {
  color: var(--accent-light);
  border-color: var(--primary-500);
  background-color: var(--primary);
  transition: background-color .2s ease-in-out, border-color .2s ease-in-out;
}

.view-all-nav:hover .arrow__right__circle-ic svg {
  transition: unset;
  stroke: var(--accent-light);
}

.stores-group {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.stores-wrapper .stores-group:not(.stores-wrapper:last-child .stores-group) {
  padding-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
}

.stores-group .store-link {
  flex: 1 1 140px;
  max-width: 166px;
}

.stores-group .store-link article {
  gap: 5px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.stores-group .store-link article p {
  color: var(--disabled-h);
  font-family: var(--font-r);
}

/* ===== SIDEBAR MENU CSS START ===== */
.side-navbar {
  /* gap: 20px; */
  display: flex;
  flex: 1 1 301px;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 5px;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #efefef;
  background-color: var(--accent-light);
  position: sticky;
  top: 30px;
}

.side__navbar-items {
  gap: 15px;
  display: flex;
  flex: 1 1 100%;
  padding: 20px 10px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.side__navbar-items:not(:last-child) {
  border-bottom: 2px dashed #e7e7e7;
}

.side__item-header {
  padding: 0px 0px 2.5px;
  border-bottom: 2px dashed var(--secondary-200);
}

.side__item-header h4 {
  padding: 0px 0px 8.5px;
  color: var(--accent-dark);
  border-bottom: 2px dashed var(--secondary-200);
}

/* ===== SIDEBAR BLOG CATEGORIES MENU CSS START ===== */
.side__navbar-nav.blogs-categories {
  width: 100%;
  display: flex;
  overflow-y: auto;
  max-height: 235px;
  padding-right: 10px;
  flex-direction: column;
}

.blogs-categories .side__nav-link {
  flex: 1;
  width: 100%;
  display: flex;
  color: #9b9b9b;
  padding: 15px 10px;
  font-family: var(--font-r);
  justify-content: space-between;
  border-bottom: 1px solid var(--disabled);
}

.blogs-categories .side__nav-list:last-child .side__nav-link {
  border-bottom: 0px;
}

.blogs-categories .side__nav-link:hover {
  color: var(--secondary-200);
  background-color: var(--secondary-100);
  border-color: var(--secondary-200);
}

.blogs-categories article {
  width: 100%;
  display: flex;
  justify-content: center;
}

.blogs-categories article h5 {
  flex: 1;
  text-align: center;
}

/* ===== SIDEBAR POPULAR STORES MENU CSS START ===== */
.side__navbar-nav.popular-stores {
  gap: 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  max-height: 235px;
  padding-right: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}

.popular-stores .side__nav-list {
  flex: 1 1 80px;
  max-width: 90px;
}

.popular-stores .side__nav-link {
  gap: 10px;
  padding: 7px;
  display: flex;
  border-radius: 5px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #f9f9f9;
  border: 1.5px solid #e7e7e7;
}

.popular-stores .side__nav-link:hover {
  border-color: var(--secondary-200);
  background-color: var(--secondary-100);
}

.popular-stores .side__nav-link .store-img {
  width: 100%;
  height: 65px;
  padding: 5px;
  border-color: var(--disabled-h);
}

.popular-stores .side__nav-link:hover .store-img {
  border-color: var(--secondary-200);
}

.popular-stores .side__nav-link article h5 {
  color: var(--accent-dark);
}

/* ===== SIDEBAR BLOG LATEST NEWS MENU CSS START ===== */
.side__navbar-nav.latest-news {
  width: 100%;
  display: flex;
  overflow-y: auto;
  max-height: 360px;
  padding-right: 10px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.side__navbar-nav.latest-news .side__nav-list {
  width: 100%;
}

.latest-news .side__nav-link {
  gap: 10px;
  display: flex;
  padding: 15px 10px;
  align-content: center;
  justify-content: flex-start;
  border-bottom: 1px solid var(--disabled);
}

.latest-news .side__nav-list:last-child .side__nav-link {
  border-bottom: 0px;
}

.latest-news .side__nav-link .blog-img {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  overflow: hidden;
  border-radius: 50%;
}

.latest-news .side__nav-link .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-news .blog-detail {
  gap: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.latest-news .blog-detail h5 {
  color: var(--accent-dark);
  -webkit-line-clamp: 2;
}

.latest-news .blog-detail p {
  color: var(--primary-300);
}

.latest-news .side__nav-link:hover {
  background-color: var(--secondary-100);
  border-color: var(--secondary-200);
}

/* ===== SIDEBAR POPULAR TAGS MENU CSS START ===== */
.side__navbar-nav.popular-tags {
  gap: 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.popular-tags .side__nav-list {
  display: flex;
  flex: 0 0 auto;
}

.popular-tags .side__nav-link {
  flex: 1;
  display: flex;
  padding: 5px 10px;
  border-radius: 3px;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-family: var(--font-r);
  background-color: #f9f9f9;
  border: 1px solid var(--disabled-h);
}

.popular-tags .side__nav-link:hover {
  color: var(--accent-dark);
  border-color: var(--secondary-200);
  background-color: var(--secondary-100);
}

/* =================== ALL CATEGORIES CONTENT CSS START =================== */
.categories-wrapper {
  display: flex;
  gap: 70px 20px;
  flex-wrap: wrap;
  padding: 70px 0px;
  align-items: flex-start;
  justify-content: flex-start;
}


/* ===== CATEGORIES CARDS CSS START ===== */
.category-card {
  flex: 0 274px;
  display: flex;
  cursor: pointer;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.category__card-header {
  gap: 20px;
  width: 100%;
  display: flex;
  padding: 30px 0px;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  justify-content: center;
  background-position: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-color: rgb(0 0 0 / 70%);
}

.category-img {
  width: 80px;
  height: 80px;
  margin: unset;
  display: flex;
  overflow: hidden;
  margin-top: -70px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  outline: 5px solid #f9f9f9;
  border: 2px solid var(--secondary-200);
  background-color: var(--accent-light);
}

.category-img img {
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.category__card-header article {
  gap: 5px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.category__card-header article h4 {
  color: var(--accent-light);
}

.category__card-header article p {
  font-family: var(--font-sb);
  text-align: center;
  color: var(--disabled);
  letter-spacing: 0.8px;
}

.category__card-header article h4 {
  color: var(--accent-light);
}

.category__card-body {
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: var(--primary-500);
  border: 2px solid var(--primary-500);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.category__card-body article {
  gap: 10px;
  width: 100%;
  display: flex;
  padding: 10px 0px;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-500);
  border: 1px solid var(--primary-500);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.category__card-body.active article,
.category__card-body:hover article {
  background-color: var(--primary);
}

.category__card-body article h5 {
  color: var(--accent-light);
  font-family: var(--font-m);
}

.category__card-body article .chevron__down-ic {
  width: 24px;
  height: 24px;
}

.category__card-body article .chevron__down-ic svg {
  stroke-width: 2px;
  stroke: var(--accent-light);
  transition: transform .2s ease-in-out;
}

.category__card-body.active article .chevron__down-ic svg {
  transform: rotate(180deg);
  transition: transform .2s ease-in-out;
}


.subcategories_navbar-nav {
  z-index: 5;
  opacity: 0;
  width: 100%;
  display: flex;
  padding: 5px 10px;
  border-radius: 5px;
  pointer-events: none;
  transform: translateY(15px);
  background-color: var(--accent-light);
  flex-direction: column;
  position: absolute;
  left: 0px;
  top: 110%;
}

.category__card-body.active .subcategories_navbar-nav {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
  border: 1px solid #e7e7e7;
  box-shadow: -4px 6px 10px rgb(0 0 0 / 15%);
}

.subcategories_nav-link {
  width: 100%;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  color: var(--secondary-200);
  justify-content: space-between;
  font-family: var(--font-r) !important;
  border-bottom: 1px solid var(--disabled);
  transition: background-color .2s ease-in-out;
}

.subcategories_nav-link:hover {
  color: var(--accent-dark);
  border-color: var(--secondary-200);
  background-color: var(--secondary-100);
  transition: background-color .2s ease-in-out;
}

.subcategories_nav-list:last-child .subcategories_nav-link {
  border-color: transparent;
}

/* ===== BLOGS CONTENT CSS START ===== */
.blogs-container {
  gap: 20px;
  display: flex;
  padding: 20px 0px 0px;
  flex-direction: column;
}

.blog-card:not(.blog-card:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px solid #efefef;
}


.single__blog-sec .blog__card-header {
  height: 380px;
}

.blog__card-header {
  height: 250px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog__card-header::before {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0 0 0 / 80%) 80%);
  position: absolute;
  left: 0;
  top: 0;
}

.date-tag {
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  width: min-content;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 15px;
}

.date-tag p {
  text-transform: uppercase;
  color: var(--accent-light);
  font-family: var(--font-sb);
}

.date-tag p:nth-child(1) {
  order: 2;
  padding: 6px 0px 0px;
}

.date-tag p:nth-child(2) {
  order: 1;
  font-size: 32px;
  font-family: var(--font-b);
  border-bottom: 1px solid var(--secondary-200);
}

.date-tag p:nth-child(3) {
  order: 3;
}

.category-tag {
  padding: 5px 10px;
  background-color: var(--primary-500);
  position: absolute;
  bottom: 10px;
  right: 15px;
}

.category-tag p {
  line-height: 1;
  font-size: 16px;
  color: var(--accent-light);
  font-family: var(--font-sb);
}

.blog__card-body {
  padding: 10px 0px;
  /* background-color: var(--accent-light); */
}

.blog__detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.blog__detail h4 {
  padding-top: 10px;
  color: var(--accent-dark);
}

.blog__detail p {
  padding-top: 10px;
  -webkit-line-clamp: 4;
  color: var(--accent-dark);
}

.blog_nav-link {
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 3px;
  color: var(--accent-light);
  background-color: var(--blue);
  border: 2px solid var(--blue);
}

.blog_nav-link:hover,
.blog_nav-link:focus,
.blog_nav-link:active {
  color: var(--accent-light);
  background-color: var(--blue-b);
}

/* ===== SINGLE BLOG CONTENT CSS START ===== */
.blog__share-navbar {
  gap: 20px;
  display: flex;
  padding-top: 15px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  position: sticky;
  top: 0;
}

.blog__share-navbar h5 {
  color: var(--accent-dark);
  text-transform: uppercase;
}

.blog__share__navbar-nav {
  gap: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.blog__share__nav-list,
.blog__share__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog__share__nav-link {
  opacity: .8;
  padding: 5px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.fb__link {
  background-color: #1773ea;
}

.insta__link {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.pint__link {
  background-color: #e11a21;
}

.twit__link {
  background-color: #1d9bf0;
}

.blog__share__nav-link:hover {
  opacity: 1;
}

.blog__share__nav-link svg {
  transition: unset;
  fill: var(--accent-light);
}

.single__blog-sec .blog-card .blog__card-body {
  gap: 20px;
  display: flex;
  padding: 20px 0px;
  position: relative;
  justify-content: flex-start;
}

.single__blog-sec .blog__detail {
  gap: 10px;
}

.single__blog-sec .blog__detail .content_wrapper {
  gap: 30px;
  display: flex;
  flex-direction: column;
}

.single__blog-sec .blog__detail h3 {
  line-height: 1.2;
  padding: 10px 0px;
  color: var(--accent-dark);
}

.single__blog-sec .blog__detail p:has(img) {
  display: flex;
}

.single__blog-sec .blog__detail p:has(img) img {
  width: 100%;
  max-height: 275px;
  object-fit: cover;
}

.single__blog-sec .blog__detail p {
  padding: unset;
  font-size: 16px;
  line-height: 1.4;
}

.single__blog-sec .blog__detail .blog__quote {
  gap: 20px;
  width: 100%;
  display: flex;
  padding: 20px 20px;
  background-color: var(--secondary-100);
}

.single__blog-sec .blog__detail .quote-ic {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
}

.single__blog-sec .blog__detail .quote-ic svg {
  fill: var(--secondary-200);
}

.blog__detail .blog__quote p {
  font-size: 24px;
  font-style: italic;
}

.blog-curriculum {
  gap: 15px;
  display: flex;
  padding: 10px 0px;
  flex-direction: column;
}

.blog-curriculum h4 {
  padding: 0px;
}

.blog-curriculum article {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.blog-curriculum article h5 {
  color: var(--secondary-200);
}

.blog-curriculum article ul {
  gap: 5px;
  display: flex;
  flex-direction: column;
}

.blog-curriculum article ul li {
  position: relative;
  padding-left: 15px;
}

.blog-curriculum article ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--secondary-200);
  position: absolute;
  left: 0px;
  top: 6px;
}

.blog-author {
  gap: 10px;
  width: 100%;
  display: flex;
  padding: 10px 0px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.blog-author h4 {
  padding: 0px;
}

.author-profile {
  gap: 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.author-img {
  width: 65px;
  height: 65px;
  flex: 0 65px;
  padding: 3px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid var(--secondary-200);
}

.author-img .web-imagebox {
  border-radius: 50%;
}

.author-detail {
  flex: 1 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.blog__detail .author-detail h5 {
  color: var(--accent-dark);
}

.blog__detail .author-detail p {
  font-size: 14px;
}

.author-tags {
  flex: 2 175px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.comment-tag {
  gap: 10px;
  flex: 0 185px;
  display: flex;
  padding: 10px 15px;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-500);
  border: 2px solid var(--primary-500);
}

.comment-tag:hover {
  background-color: var(--primary);
}

.comment-tag svg {
  fill: var(--accent-light);
}

.comment-tag p {
  color: var(--accent-light);
  font-family: var(--font-r);
}

.author-description {
  gap: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.author-skills {
  width: 100%;
  display: flex;
  grid-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.blog__detail .author-skills .skills-txt {
  display: flex;
  flex: 0 0 auto;
  padding: 9px 16px;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  text-transform: uppercase;
  font-family: var(--font-r);
  /* border: 1px solid var(--disabled-h); */
  border: 1px solid var(--secondary-200);
  /* background-color: #f9f9f9; */
  background-color: var(--secondary-100);
}

.blog-pagination {
  gap: 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}

.pagination__link {
  gap: 10px;
  flex: 1 380px;
  display: flex;
  padding: 10px;
  border-radius: 3px;
  align-items: center;
  justify-content: flex-start;
}

.pagination__link:hover {
  background-color: var(--primary-100);
}

.pagination__link .blog__img {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  overflow: hidden;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  outline: 2px solid var(--secondary-200);
  border: 2px solid var(--accent-light);
}

.pagination__link article {
  gap: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pagination__link .prev-blog {
  align-items: flex-start;
}


.pagination__link h5 {
  color: var(--accent-dark);
}

.blog__detail .pagination__link p {
  gap: 6px;
  display: flex;
  padding: 2px 12px;
  width: min-content;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-500);
  border: 2px solid var(--primary-500);
}

.blog__detail .pagination__link:hover p {
  background-color: var(--blue-b);
}

.pagination__link p svg {
  fill: var(--accent-light);
}

.pagination__link p span {
  color: var(--accent-light);
}

.wpd-rating-data {
  gap: 5px;
  display: flex;
  flex-direction: column;
}



.vendor__comments-nav {
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.vendor__comments-list {
  flex: 1;
  width: 100%;
  gap: 10px;
  display: flex;
  padding: 10px 0px 0px;
  border-bottom: 1px solid #e7e7e7;
}

.vendor__comments-list:last-child {
  border-bottom: none;
}

.comments__wrapper-left {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.vendor__img {
  width: 55px;
  height: 55px;
  padding: 2px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--secondary-200);
}

.vendor__img,
.vendor__img .web-imagebox {
  border-radius: 50%;
}

.comments__wrapper-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.comments__header {
  width: 100%;
  flex: 0 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comments__header small {
  font-style: italic;
  color: var(--disabled-h);
  font-family: var(--font-r);
}

.comments__body {
  width: 100%;
}

.comments__body p {
  -webkit-line-clamp: 3;
  word-break: break-word;
  color: var(--disabled-h);
  font-family: var(--font-r);
}

.comments__footer {
  width: 100%;
  flex: 0 35px;
  display: flex;
  align-items: center;
  padding: 10px 0px 20px;
  justify-content: flex-start;
}

.comments__reply-link,
.comments__reply-link .reply-ic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comments__reply-link {
  gap: 3px;
  transition: unset;
  border-radius: 3px;
  color: var(--secondary);
  line-height: 1.2 !important;
}

.comments__reply-link:hover {
  transition: unset;
  color: var(--secondary-200);
}

.comments__reply-link .reply-ic {
  width: 20px;
  height: 20px;
  flex: 0 20px;
}

.comments__reply-link .reply-ic svg {
  width: 16px;
  height: 16px;
  transition: unset;
  stroke-width: 1px;
  transform: scale(-1);
  fill: var(--secondary);
  stroke: var(--secondary);
}

.comments__reply-link:hover svg {
  transition: unset;
  fill: var(--secondary-200);
  stroke: var(--secondary-200);
}

.vendor__comments-nav .comment__item__reply {
  padding-left: 35px;
}

.vendor__comments-nav .vendor__comments-nav {
  border-top: 1px solid #e7e7e7;
}

.comments__form.contact-form {
  padding: 20px 0px;
}

/* =================== SINGLE STORE CONTENT CSS START =================== */
.coupons-sec .content-wrapper .side-content {
  /* gap: 20px; */
  display: flex;
  flex-direction: column;
}

.store__container {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0px;
  align-items: center;
  justify-content: flex-start;
}

.store__container .card-img {
  padding: 5px;
  flex: 0 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 5px;
  border: 2px solid var(--secondary-200);
  background-color: var(--secondary-100);
}

.store__container .store-img {
  border: none;
}

.store__container .store-content {
  gap: 10px;
  flex: 1 300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.store__container .ratings {
  gap: 10px;
  flex: 1 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.store__container .ratings-votes .stars {
  gap: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store__container .ratings-votes li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.store__container .ratings svg {
  width: 20px;
  flex: 0 20px;
  height: 20px;
  fill: var(--orange);
}

.store__container .ratings i {
  color: var(--orange);
}

.store__container .ratings p {
  display: flex;
  line-height: unset;
  align-items: center;
  color: var(--accent-dark);
  font-family: var(--font-m);
}

.store__container .store-content h3 {
  flex: 1 100%;
  font-size: 24px;
  line-height: 1.2;
}

.store__container .store-verify__tag {
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store__container .store-verify__tag svg {
  width: 20px;
  flex: 0 20px;
  height: 20px;
  fill: var(--success-h);
}

.store__container .store-verify__tag p {
  font-family: var(--font-m);
}




.coupon-tabs {
  gap: 20px;
  flex: 1 100%;
  display: flex;
  overflow-x: auto;
  padding: 15px 20px;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #efefef;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: var(--accent-light);
}

.coupon-tabs::-webkit-scrollbar {
  height: 2px;
}

.coupon-tabs .tabs {
  flex: 0 0 auto;
}

.coupon-tabs .tabs input {
  display: none;
}

.coupon-tabs .tabs label {
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  padding: 8px 20px 8px 40px;
  border: 1px dashed var(--secondary-200);
  border-bottom: none;
  border-top: none;
}

.coupon-tabs .tabs input:checked~label {
  border-radius: 2px;
  border-top: 1px dashed;
  border-bottom: 1px dashed;
  background-color: var(--secondary-200);
  border-color: var(--accent-light);
}

.coupon-tabs .tabs input:checked~label {
  color: var(--accent-light);
  font-family: var(--font-r);
}

.coupon-tabs .tabs label::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  outline: 2px solid var(--disabled-h);
  border: 2px solid var(--accent-light);
  background-color: var(--accent-light);
  position: absolute;
  inset: 50% 16px;
}

.coupon-tabs .tabs input:checked~label::before {
  border-color: var(--orange);
  outline-color: var(--accent-light);
}





.coupons__container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0px 20px;
  align-items: flex-start;
  justify-content: flex-start;
  border: 1px solid #efefef;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: var(--accent-light);
  border-top: none;
}

.coupons-sec .coupons-card {
  border: none;
  width: 100%;
  overflow: unset;
  padding: 10px 0px;
  box-shadow: unset;
  position: relative;
  border-radius: 0px;
}

.coupons-sec .coupons-card:not(:last-child) {
  border-bottom: 3px dashed #f0f0f0;
}

.coupons-sec .coupons-card:not(:last-child)::after,
.coupons-sec .coupons-card:not(:last-child)::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: rotate(-45deg);
  background-color: #f9f9f9;
  position: absolute;
  bottom: -13px;
}

.coupons-sec .coupons-card::before {
  left: -30px;
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.coupons-sec .coupons-card::after {
  right: -30px;
  border-top: 1px solid #f0f0f0;
  border-left: 1px solid #f0f0f0;
}

/* =================== MAIN FOOTER CSS START =================== */
.main-footer {
  width: 100%;
}

.lg-footer {
  width: 100%;
  padding: 30px 0px;
  background-color: #000933;
}

.footer-wrapper {
  gap: 30px;
  display: flex;
  flex-direction: column;
}

.footer-top {
  gap: 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000e4d;
}

.footer-top .logo_n_content {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  max-width: 500px;
}

.footer-top .brand-logo .brand-link {
  height: 45px;
}

.footer-top .subscribe_wrapper {
  flex: 1;
  gap: 10px;
  display: flex;
  max-width: 500px;
  flex-direction: column;
}

.footer-top .subscribe_content {
  gap: 5px;
  display: flex;
  flex-direction: column;
}

.subscribe_content .subscribe_heading {
  color: var(--accent-light);
}

.footer-top .subscribe-form {
  gap: 10px;
  flex: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.footer-top .subscribe-form label {
  display: flex;
  align-items: center;
  color: var(--accent-light);
}

.footer-top .subscribe-form .response-box {
  display: none;
}

.footer-top .subscribe-form .subscribe-fld {
  flex: 1;
  height: 34px;
  font-size: 14px;
  padding: 0px 8px;
  min-width: 280px;
  border-radius: 2px;
  color: var(--accent-dark);
  border: 2px solid transparent;
}

.footer-top .subscribe-form .subscribe-fld:focus {
  border-color: var(--orange);
}

.footer-top .subscribe-form .subscribe-btn {
  flex: 1;
  display: grid;
  line-height: 1;
  font-size: 14px;
  max-width: 100px;
  padding: 10px 15px;
  border-radius: 2px;
  place-items: center;
  color: var(--accent-light);
  background-color: var(--secondary-200);
}

.footer-top .subscribe-form .subscribe-btn:hover {
  background-color: var(--secondary);
}

.footer-wrapper .h-line {
  opacity: .25;
  background-color: var(--accent-light);
}

.footer-post {
  gap: 20px;
  width: 100%;
  display: flex;
  overflow-x: auto;
  padding: 30px 0px;
  align-items: center;
  border: 1px solid #000e4d;
  justify-content: space-between;
  border-right: 0;
  border-left: 0;
}

.footer-post::-webkit-scrollbar {
  height: 1px;
}

.footer-post::-webkit-scrollbar-thumb {
  background-color: var(--blue);
}

.footer-post::-webkit-scrollbar-track {
  background-color: #000e4d;
}

.footer-post .post-items {
  gap: 15px;
  display: flex;
  flex: 0 0 300px;
  align-items: center;
  justify-content: flex-start;
}

.footer-post .post-ic {
  flex: 0 54px;
  height: auto;
  display: grid;
  padding: 10px;
  border-radius: 5px;
  place-items: center;
  background-color: var(--primary-500);
}

.footer-post .post-ic svg {
  stroke: var(--accent-light);
}

.footer-post .post-content {
  flex: 1;
  gap: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  color: var(--accent-light);
  justify-content: flex-start;
}

.footer-post .post-content :is(h5, p) {
  width: 100%;
}

.footer-post .post-content h5 {
  font-family: var(--font-r);
}

.footer-mid {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0px;
  justify-content: space-between;
}

.footer-mid .ar__navbar {
  gap: 20px;
  display: flex;
  flex: 1 1 190px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer_heading {
  line-height: 1;
  font-size: 22px;
  color: var(--accent-light);
}

.footer-mid .ar__navbar .ar__navbar-nav {
  gap: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-mid .ar__navbar .navbar_nav {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
}

.footer-mid .ar__navbar .navbar_nav .nav_list {
  flex: 1 auto;
  display: flex;
}

.footer-mid .ar__navbar .navbar_nav .nav_link {
  width: 100%;
  max-width: 200px;
  line-height: 1.4;
  padding: 5px 10px;
  text-align: center;
  border-radius: 2.5px;
  word-break: break-all;
  text-transform: uppercase;
  color: var(--accent-light);
  background-color: var(--secondary-200);
  -webkit-border-radius: 2.5px;
  -moz-border-radius: 2.5px;
  -ms-border-radius: 2.5px;
  -o-border-radius: 2.5px;
}

.footer-mid .ar__navbar-nav .ar__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


.footer-mid :is(.ar__navbar-nav .ar__nav-link, .social-detail article) {
  padding: 5px 0px;
  color: var(--disabled);
  font-family: var(--font-r);
}

.footer-mid .ar__navbar-nav .ar__nav-link:hover {
  color: var(--orange);
}

.footer-mid .social-detail {
  gap: 10px;
  flex: 1 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-mid .social-detail article {
  gap: 10px;
  display: flex;
  padding: 5px 0px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-wrapper p {
  color: var(--disabled);
  font-family: var(--font-l);
}

.footer-mid .social-nav {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-mid .social-detail .social-link {
  width: 30px;
  height: 30px;
  padding: 5px;
  display: grid;
  border-radius: 2px;
  place-items: center;
  /* background-color: var(--orange); */
}

.footer-mid .social-detail .social-link svg {
  fill: var(--accent-light);
}

.footer-mid .social-detail .social-link:has(.fa-google-plus-g) {
  color: var(--accent-light);
  background-color: #db4a39;
}

.footer-mid .social-detail .social-link:has(.fa-linkedin) {
  color: var(--accent-light);
  background-color: #0e76a8;
}

.footer-mid .social-link :is(line, .instagram-ic circle, .pinterest-ic path) {
  stroke: #ff2d65;
}

.footer-mid .social-detail .social-link:hover {
  background: unset;
  background-color: #ff2d65 !important;
}

.footer-mid .social-link:hover :is(line, .instagram-ic circle, .pinterest-ic path) {
  stroke: #ff2d65 !important;
}

.sm-footer {
  width: 100%;
  padding: 10px 0px;
  background-color: #000729;
}

.sm-footer :is(.footer-bottom, article) {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom article :is(p, a) {
  color: var(--accent-light);
}

.footer-bottom article p {
  line-height: 1;
  font-family: var(--font-r);
}

.footer-bottom article a {
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-r);
}

.footer-bottom a img {
  height: 18px;
  flex: 0 0 18px;
}


/* =================== MAIN MODAL CSS START =================== */
.modal.coupon-modal .modal-dialog {
  top: 50%;
  left: 50%;
  margin: 0px;
  transition: unset !important;
  transform: translate(-50%, -50%) !important;
}

.coupon-modal .modal-header::after,
.coupon-modal .modal-header::before {
  content: unset;
}

.coupon-modal .modal-header {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.coupon-modal .modal-header .coupon-img {
  height: 75px;
  flex: 0 100px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--secondary-200);
  box-shadow: inset 0px 0px 6px #e9becb, 0px 0px 6px #e9becb;
}

.coupon-modal .modal-header .store-img {
  border: none;
}

.coupon-modal .modal-header .coupon__heading {
  gap: 10px;
  flex: 1 292px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.coupon-modal button.close {
  opacity: 1;
  width: 30px;
  height: 30px;
  display: grid;
  padding: 5px 10px;
  border-radius: 5px;
  align-self: center;
  place-content: center;
  background-color: var(--primary-500);
  border: 1px solid var(--primary-500);
  position: absolute;
  right: -10px;
  top: -10px;
}

.coupon-modal button.close:hover {
  background-color: var(--primary);
}

.coupon-modal button.close svg {
  stroke: var(--accent-light);
}

.coupon-modal .coupon__description {
  width: 100%;
}

.coupon-modal .coupon__code-wrapper {
  width: 100%;
  display: flex;
  padding: 15px 0px;
  align-items: center;
  justify-content: flex-end;
}

.coupon-modal .coupon__code {
  width: 50%;
  display: flex;
  border-radius: 5px;
  justify-content: center;
}

.coupon-modal .coupon__code p {
  flex: 1;
  display: flex;
  font-size: 16px;
  padding: 10px 20px;
  align-items: center;
  border-radius: 2.5px;
  letter-spacing: .5px;
  justify-content: center;
  color: var(--secondary-200);
  font-family: var(--font-sb);
  border: 2px dashed var(--primary-500);
}
.coupon-modal .coupon__code p.copyable {
  flex: 1;
  display: flex;
  font-size: 16px;
  align-items: center;
  letter-spacing: .5px;
  justify-content: center;
  color: var(--secondary-200);
  font-family: var(--font-sb);
  border-top-left-radius: 2.5px;
  border-bottom-left-radius: 2.5px;
  background-color: var(--accent-light);
  border: 2px dashed var(--primary-500);
  border-right: none;
}

.coupon-modal .coupon__code .btn__code-copy {
  flex: 0 130px;
  padding: 10px 20px;
  color: var(--accent-light);
  border-top-right-radius: 2.5px;
  background-color: var(--primary-500);
  border: 2px solid var(--primary-500);
  border-bottom-right-radius: 2.5px;
}

.coupon-modal .coupon__code .btn__code-copy:hover {
  background-color: var(--primary);
}

.coupon-modal .coupon__terms {
  gap: 5px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.coupon-modal .coupon__terms h5 {
  color: var(--secondary-200);
}

.coupon-modal .coupon__terms ul {
  width: 100%;
  height: 85px;
  overflow-y: scroll;
}

.coupon-modal .coupon__terms li {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  list-style: square;
  list-style-position: inside;
}

.coupon-modal .coupon__terms li::marker {
  color: var(--primary-500);
}

.coupon-modal .modal-footer {
  border-top: 0px;
  text-align: center;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: var(--primary-300);
}

.coupon-modal .modal-footer p {
  font-size: 12px;
  color: var(--accent-light);
}

.response-box {
  width: 100%;
  flex: 1;
}


@media screen and (max-width: 1299px) {
  .footer-post {
    border-bottom: 0px;
  }

  .category-card {
    flex: 0 48%;
  }
}

/* @media screen and (max-width: 1207px) { */
@media screen and (max-width: 1135px) {
  .coupons-card .card-body {
    padding: 20px !important;
  }

  .coupons__container .coupons-card .card-footer {
    flex: 1 240px;
    border-left: none;
    align-items: center;
    border-top: .1px solid #efefef;
  }

  .coupons__container .card-footer article:first-child:not(.coupon-link article) {
    flex: 0 175px;
  }

  .coupons__container .card-footer .coupon-link {
    max-width: 280px;
  }
}

@media screen and (max-width: 1180px) {
  .single__blog-sec .blog__detail h3 {
    font-size: 26px;
  }
}

@media screen and (max-width: 1024px) {
  /* .coupons-card .card-footer {
      justify-content: center;
  } */
}

@media screen and (max-width: 992px) {
  .lg-navbar {
    grid-gap: 10px;
  }

  .collapse-navbar .ar__navbar-nav {
    z-index: 9;
    width: 0px;
    padding: 5px 0px;
    overflow-x: auto;
    background-color: #000729;
    transition: all .2s ease-in-out .2s;
    /* box-shadow: 0px 5px 8px rgba(77, 223, 142, .25); */
    position: absolute;
    left: 0px;
    top: 100%;
  }

  .expand-navbar .ar__navbar-nav {
    width: 100%;
    padding: 5px;
    transition: all .2s ease-in-out;
  }

  .expand-navbar .ar__navbar-nav .ar__nav-list {
    overflow-x: hidden;
  }

  .collapse-navbar .ar__navbar-nav .ar__nav-link {
    opacity: 0;
    color: var(--disabled);
    transform: translateX(-100px);
    transition: all .2s ease-in-out;
  }

  .collapse-navbar .ar__navbar-nav .ar__nav-link .link-style {
    display: none;
  }

  .expand-navbar .ar__navbar-nav .ar__nav-link {
    opacity: 1;
    transform: translateX(0px);
    transition: all .2s ease-in-out .2s;
  }

  .ar__navbar-nav .ar__nav-link.active,
  .ar__navbar-nav .ar__nav-link:hover {
    color: var(--accent-light);
  }

  .collapse-navbar .ar__navbar-nav::-webkit-scrollbar {
    height: 2px;
  }

  .collapse-navbar .ar__navbar-nav::-webkit-scrollbar-track {
    background-color: var(--primary);
  }

  .collapse-navbar .ar__navbar-nav::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
  }


  /* MENU BUTTON CSS START */
  .menu-btn {
    width: 36px;
    height: 36px;
    padding: 5px;
    display: grid;
    position: relative;
    place-items: center;
    background-color: transparent;
    right: 45px;
  }

  .dotted {
    width: 4px;
    height: 4px;
    border-radius: 20px;
    transition: top .2s ease-in-out,
      left .2s ease-in-out,
      width .2s ease-in-out,
      height .2s ease-in-out,
      opacity .2s ease-in-out,
      transform .2s ease-in-out,
      bottom .2s ease-in-out !important;
    background-color: var(--accent-light);
    position: absolute;
    left: 50%;
  }

  .dot-1 {
    top: 25%;
    transform: translate(-50%, -25%);
  }

  .dot-2 {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .dot-3 {
    bottom: 26%;
    transform: translate(-50%, 26%);
  }

  .menu-btn:hover .dotted {
    width: 70%;
    height: 2px;
    transition: width .2s ease-in-out;
  }

  .menu_btn-anim .dotted {
    width: 70%;
    height: 2px;
    transition: top .2s ease-in-out,
      left .2s ease-in-out,
      width .2s ease-in-out,
      transform .2s ease-in-out,
      bottom .2s ease-in-out !important;
  }

  .menu_btn-anim .dot-1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu_btn-anim .dot-2 {
    opacity: 0;
  }

  .menu_btn-anim .dot-3 {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  /* ===== FAQ ACCORDIANS CSS START ===== */
  .accordions-group {
    flex: 0 0 75%;
  }


  /* ===== SINGLE BLOG CONTENT CSS START ===== */
  .single__blog-sec .blog-card .blog__card-body {
    gap: 10px;
    flex-direction: column;
  }

  .blog__share-navbar {
    position: unset;
    padding-top: 0px;
  }

  .blog__share-navbar,
  .blog__share__navbar-nav {
    flex-direction: row;
  }

  .single__blog-sec .blog__detail p {
    font-size: 14px;
  }

  .single__blog-sec .blog__detail .blog__quote {
    flex-direction: column;
  }

  .blog__detail .blog__quote p {
    font-size: 20px;
  }

}

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

  /* FAQ BACKGROUND ABSTRACT SHAPES CSS START */
  .bg__shapes {
    display: none;
  }

  /* ===== DISCLAIMER & HOW-TO-USE CSS START ===== */
  .disclaimer-detail,
  .howtouse-detail {
    padding: 10px 10px;
  }

  .disclaimer-detail {
    border-right: none;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9e9e9;
  }

  .howtouse-detail {
    padding-top: 30px;
    border-left: none;
    border-top: 1px solid #e9e9e9;
  }

  .stores-content {
    flex: 1 1 100%;
  }


}

@media screen and (max-width: 871px) {
  .twenty__per-off .content-wrapper {
    flex-wrap: wrap-reverse;
  }

  .coupons__container .coupons-card .card-footer {
    border-top: none;
    border-left: 0.1px solid #efefef;
  }
}

@media screen and (max-width: 809px) {
  .contact-container {
    gap: 10px;
    flex-wrap: wrap-reverse;
  }

  .contact-info {
    gap: 40px;
  }

  .contact-info::before {
    bottom: -75px;
    right: -75px;
  }

  .contact-info::after {
    bottom: 30px;
    width: 100px;
    height: 100px;
  }

  .contact-details {
    gap: 15px;
  }

  .contact-form {
    gap: 20px;
    padding: 10px;
  }

  .submit-btn {
    padding: 10px 20px;
    border-radius: 3px;
  }
}

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

  /* =================== MAIN HEADER CSS START =================== */
  .search-bar {
    max-width: 385px;
  }

  /* ===== STORES CARDS CSS START ===== */
  .store-card:nth-child(12n)~* {
    display: none;
  }

  /* ===== FAQ ACCORDIANS CSS START ===== */
  .accordions-group {
    flex: 0 0 100%;
  }

  /* =================== MAIN MODAL CSS START =================== */
  .modal.coupon-modal {
    padding: 25px 50px !important;
  }

}

@media screen and (max-width: 686px) {
  .coupons__container .coupons-card .card-footer {
    border-left: none;
    border-top: 0.1px solid #efefef;
  }
}

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

  /* ==================== SITE ALL CSS ARE RESET ==================== */

  h3 {
    font-size: 26px;
  }

  .accordion-counter {
    font-size: 24px;
  }

  .content-heading article p {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  a,
  h5,
  label,
  a:link,
  a:hover,
  a:active,
  a:target,
  a:any-link,
  .accordion-heading {
    font-size: 14px;
  }

  p {
    font-size: 13px;
  }

  svg {
    width: 20px;
    height: 20px;
    flex: 0 20px;
  }

  .accordion-counter::after {
    width: 16px;
    height: 16px;
  }

  .disclaimer-detail {
    padding-bottom: 20px;
  }

  .howtouse-detail {
    padding-top: 20px;
  }


  /* ===== STORES CARDS CSS START ===== */
  .top__stores-sec .store-link:nth-child(6n)~* {
    display: none;
  }

  /* ===== POPULAR BLOGS CSS START ===== */
  .blogs-wrapper:nth-child(2) {
    display: none;
  }

  /* ===== COUPONS CARD CSS START ===== */
  .lat__offers-sec .coupons-card:nth-child(3n)~*,
  .fea__offers-sec .coupons-card:nth-child(3n)~* {
    display: none;
  }


  .coupons-card .card-footer {
    flex: 1 0 244px;
    align-items: center;
  }

  .card-footer article:first-child:not(.coupon-link article) {
    flex: 1 auto;
  }

  .card-footer .coupon-link {
    width: unset;
    flex: 1 168px;
  }

  /* ===== CATEGORIES CARDS CSS START ===== */
  .categroy-link:nth-child(6n)~* {
    display: none;
  }

}

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

  /* ======= LARGE & SMALL NAVBAR CSS START ======= */
  .lg-navbar {
    padding: 5px 0px;
  }

  .sm-navbar {
    padding: 10px 0px;
  }

  /* BRAND LOGO CSS START */
  .brand-logo .brand-link {
    height: 50px;
  }

  .footer-top .brand-logo .brand-link {
    height: 50px;
  }

  /* SEARCH BAR CSS START */
  .sm-navbar {
    /* height: 46px; */
    position: relative;
  }

  .sm-navbar .ar__nav-link:not(.search-result .ar__navbar-nav .ar__nav-link) {
    border-color: var(--blue);
    background-color: var(--blue);
  }

  .search-bar {
    z-index: 100;
    padding: 4px 0px;
    max-width: unset;
    transform: translateY(-50%);
    position: absolute;
    right: 15px;
    top: 50%;
  }

  .search-bar .search-fld_grp {
    width: 38px;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px solid var(--accent-light);
    /* background-color: var(--blue); */
  }

  .search-bar .search-fld_grp:hover {
    background-color: var(--secondary-hover);
  }

  .search-bar .search-fld_grp .search-fld {
    width: 0px;
    flex: unset;
    display: none;
  }

  .search-bar .search-btn .search-ic {
    fill: var(--accent-light);
  }

  .search-bar.searchbar-active .search-btn .search-ic {
    fill: var(--blue);
  }

  .search-result {
    width: unset;
    max-width: unset;
  }

  .search_bar-show .ar__nav-link:not(.search-result .ar__nav-link) {
    transform: translateX(-150%);
  }

  .search_bar-show .search-bar {
    width: 100%;
  }

  .search_bar-show .search-action {
    padding: 4px;
  }

  .search_bar-show .search-bar .search-fld_grp {
    width: 100%;
    background-color: var(--accent-light);
  }

  .search_bar-show .search-bar .search-fld_grp .search-fld {
    flex: 1;
    display: block;
  }

  /* =================== MAIN FOOTER CSS START =================== */
  .footer-post,
  .footer-post~.h-line {
    display: none;
  }

  /* =================== MAIN MODAL CSS START =================== */
  .modal.coupon-modal {
    padding: 25px 10px 0px !important;
  }

  .coupon-modal .coupon__code {
    width: 100%;
  }

}

@media screen and (max-width: 580px) {
  .card-footer {
    flex: 1 1 240px;
    border-left: none;
    border-top: 1px solid #efefef;
  }

  /* .card-footer article:first-child:not(.coupon-link article) p {
      text-align: end;
  } */
}

@media screen and (max-width: 531px) {
  .category-card {
    flex: 0 100%;
  }
}

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

  /* =================== ALL STORES CONTENT CSS START =================== */
  .stores-details {
    justify-content: space-between;
  }

}

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

  .footer-top .subscribe-form label {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 506px) {
  .coupons-card .card-body {
    justify-content: center;
  }

  .coupon-modal .coupon-tags {
    justify-content: flex-start;
  }
}

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

  /* HEADER NAVBAR CSS START */
  .collapse-navbar .ar__nav-link:not(.ar__navbar-nav .ar__nav-link) {
    display: none;
  }

  .ar__navbar-nav .ar__nav-link {
    font-size: 14px;
  }

  .collapse-navbar .ar__nav-link:not(.ar__navbar-nav .ar__nav-link),
  .sm-navbar .ar__nav-link:not(.search-result .ar__navbar-nav .ar__nav-link) {
    grid-gap: 5px;
    font-size: 14px;
    padding: 4px 8px;
  }

  /* SEARCH BAR CSS START */
  .search-bar {
    flex: 0 0 auto;
  }

  /* =================== CONTENT CSS START =================== */

  /* HERO SLIDES CSS START */
  .swiper-slide.swiper-slide-active {
    flex: 0 0 280px;
    min-width: unset;
    transition: flex .8s ease-in-out;
  }

  /* ===== POPULAR BLOGS CSS START ===== */
  .blogs-card {
    padding: 80px 10px 10px;
  }

  .coupons__container .coupon-content :is(.heading, .txt) {
    text-align: center;
  }

  .coupons-card .card-footer {
    padding: 20px 15px;
  }

}

@media screen and (max-width: 469px) {
  .store__container {
    justify-content: center;
  }

  .store__container .store-content {
    justify-content: center;
  }

  .store__container .store-content .ratings {
    justify-content: center;
  }

  .store__container .store-content h3 {
    text-align: center;
  }

  /* =================== MAIN MODAL CSS START =================== */
  .coupon-modal .modal-header .coupon-img {
    flex: 1 100%;
    height: 75px;
  }

  .modal.coupon-modal::-webkit-scrollbar {
    display: none;
  }
}

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

  .content-heading article p {
    opacity: 1;
    color: var(--secondary-3);
    font-family: var(--font-b);
  }

  .content-heading article h3 {
    display: none;
  }

  .author-tags,
  .comment-tag {
    flex: 1 1 100%;
  }

  .about-content {
    padding: 0px;
  }

}

@media screen and (max-width: 406px) {
  .coupon-content .txt {
    -webkit-line-clamp: 4;
  }

  .coupon-tags .tag {
    order: 3;
  }

  .coupon-tags .add {
    order: 1;
  }

  .coupon-content :is(.heading, .txt) {
    text-align: center;
  }

  .coupon-tags {
    justify-content: center;
  }
}

@media screen and (max-width: 422px) {
  .sm-footer :is(.footer-bottom, article) {
    flex-wrap: wrap;
  }

  .sm-footer .v-line {
    display: none;
  }
}
.disclaimer_wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.disclaimer_wrapper p {
    color: #fff;
    font-size: 15px;
}
@media screen and (max-width: 375px) {}

p.nrf-message {
  padding-top: 30px;
}

.custom_contact_form {
    flex: 10 1 380px;
  padding:30px;
}