@font-face {
  font-family: 'Outfit';
  src: url(./Outfit-VariableFont_wght.woff2) format('woff2');
}


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
    font-family: var(--primary-font);
}

:root {
  --primary-color: #F0EA01;
  --secondary-color: #F45050;
  --primary-color-hover: #28eace;
  --secondary-color-hover: #ff6d6d;
  --green: #4BB543;
  --red: #f45050;
  --primary-font: "Outfit", serif;;
  --primary-background: #f3f3f3;
  --primary-background-rgba: rgba(244,80,80,0.1);
  --primary-text: #2f2f2f;
  --secondary-text: #a2a2a2;
  --border: #e7e7e7;
  --max-width: 1500px;
}

html {
  background-color: var(--primary-background);
  font-family: var(--primary-font)!important;
  color: var(--primary-text);
}
body {
  position: relative;
}
/*header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-bottom: 1px solid var(--border);
}
.header-wrapper {
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
}
.header-brand-logo {
  width: 156px;
  height: 39px;
}
.header-brand {
  display: flex;
  align-items: center;
}
.header-search-bar {
  display: flex;
  align-items: center;
}
.header-search-bar {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 2px;
    transition: 0.3s all ease;
    margin-left: 30px;
    background: white;
    position: relative;
}
.header-search-bar input {
    padding: 10px 12px;
    width: 120px;
    border: none;
    outline: none;
    transition: 0.4s all ease;
    flex-grow: 1;
    border-radius: 100px;
  }
.header-search-bar i {
    font-size: 22px;
    color: var(--secondary-text);
    margin-right: 8px;
    cursor: pointer;
    transition: 0.3s all ease;
}
#results {
  visibility: hidden;
  display: none;
  position: absolute;
  top:41px;
  background: white;
  border-radius: 9px;
  width: 300px;
}
.header-search-bar:focus-within input {
    width: 160px;
}
.header-search-bar:focus-within #results, .index-search-bar:focus-within #results {
    visibility: visible;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}
.header-search-bar:focus-within i {
    color: var(--secondary-color);
}
.header-search-bar:focus-within {
  border: 1px solid var(--secondary-color)
}
.header-search-bar:hover input {
    width: 160px;
}
.header-links {
  display: flex;
  align-items: center;
}
.header-links a {
  margin-left: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-text);
}
.header-links a:hover {
  color: var(--secondary-color);
}
.header-links-cta {
  padding: 15px 20px;
  background: var(--primary-color);
  color: white!important;
  border-radius: 6px;
  margin-right: 0!important;
}*/
/* general pages css start */
.page-h1 {
  font-size: 35px;
  margin: 50px 0;
  text-align: center;
}
.page-hr {
  width: 100px;
  height: 2px;
  background: var(--secondary-color);
  margin: 0 auto;
  margin-bottom: 20px;
}
.page-hr-long {
    width: 100%;
  height: 2px;
  background: var(--secondary-text);
}
.all-brands-category {
  font-size: 33px;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 25px;
}
.all-brands-category-link {
  text-decoration: none;
  font-size: 30px;
  color: var(--primary-text);
}
.all-brands-category-link i {
  font-size: 23px;
  margin-left: 5px;
}
.all-brands-category-link:hover {
  text-decoration: underline;
}
.all-brands-div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
.all-brands-div a {
  text-decoration: none;
  color: var(--primary-font);
  width: calc(25% - 34px);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 6px;
  background: white;
}
.all-brands-div a>i {
  margin-right: 6px;
  position: relative;
  left: 0;
  transition: 0.2s all ease;
}
.all-brands-div a:hover>i {
  left: 2px;
  color: var(--secondary-color);
  transition: 0.2s all ease;
}
.all-brands-div a:hover {
  color: var(--secondary-color);
}
.page-wrap {
  width: calc(100% - 60px);
  padding: 0 30px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 5px;
  color: #777;
}
.breadcrumb a {
  text-decoration: none;
  color: var(--secondary-color);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .active {
  color: #555; /* Example active color */
  font-weight: bold;
}
.privacy-policy h1, .imprint h1 {
    font-size: 25px;
    margin-bottom: 20px;
}
.privacy-policy h2, .privacy-policy h3, .privacy-policy h4, .privacy-policy h5 {
    font-size: 18px;
    margin: 10px 0 20px 0;
}
.privacy-policy {
    line-height: 22px;
}
.privacy-policy ul li, .privacy-policy ol li {
    list-style-position: inside;
}
.privacy-policy ul li p {
    display: inline-block;
}
.imprint p {
    line-height: 30px;
}
.imprint ol {
  counter-reset: item;
  padding: revert;
  padding-left: 25px;
}
.imprint li {
  display: block
}
.imprint li:before {
  content: counters(item, ".") " ";
  counter-increment: item
}
/* general pages css end */
/* store page css */
.coupon-popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.coupon-popup {
  padding: 20px;
  width: calc(95% - 40px);
  max-width: 550px;
  border-radius: 9px;
  background: white;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.coupon-popup-x {
  font-size: 19px;
  cursor: pointer;
  position: absolute;
  top: 7px;
  right: 7px;
  padding: 13px;
  border-radius: 5px;
}
.coupon-popup-x:hover {
  background: var(--border);
}
.coupon-popup-img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}
.coupon-popup-header {
  font-size: 35px;
  padding: 0 15px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}
.coupon-popup-details {
  margin-bottom: 10px;
}
.coupon-popup-details a {
   text-decoration: none;
   color: var(--secondary-color);
 }
 .coupon-popup-details a:hover {
   text-decoration: underline;
 }
.coupon-popup-btn {
  width: 95%;
  max-width: 300px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 7px;
  background: var(--primary-background-rgba);
  border: 1px dashed var(--secondary-text);
  overflow: hidden;
  margin-bottom: 15px;
}
.coupon-popup-btn-text {
  font-size: 24px;
  font-weight: 600;
  flex-grow: 1;
  text-align: center;
}
.coupon-popup-btn-copy {
  text-transform: uppercase;
  margin: 3px;
  height: calc(100% - 6px);
  border-radius: 5px;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: var(--secondary-color);
  cursor: pointer;
}
.coupon-popup-btn-copy:hover {
  background: var(--secondary-color-hover);
}
.coupon-popup-cta {
  border-radius: 7px;
  padding: 15px;
  font-size: 19px;
  text-decoration: none;
  color: white;
  background: var(--secondary-color);
  margin-bottom: 15px;
}
.coupon-popup-cta:hover {
  background: var(--secondary-color-hover);
}
.coupon-popup-email {
  display: flex;
  margin-bottom:5px;
}
.coupon-popup-email p {
  color: var(--green);
  margin: 14px 0;
  line-height: 23px;
}
.coupon-popup-email-title {
  font-size: 19px;
  margin-bottom: 15px;
  padding: 0 15px;
  margin-top: 30px;
  text-align: center;
  line-height: 25px;
}
.coupon-popup-email-title span {
  color: var(--secondary-color);
}
.coupon-popup-email input {
  padding: 10px 12px;
  width: 150px;
  border: none;
  outline: none;
  transition: 0.4s all ease;
  flex-grow: 1;
  border-radius: 7px 0 0 7px;
  border: 1px solid var(--secondary-color);
}
.coupon-popup-email button {
  border-radius: 0 7px 7px 0;
  outline: none;
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  color: white;
  cursor:pointer;
}
.coupon-popup-email-tos {
  font-size:9px;
}
.coupon-popup-email-tos a {
  color:var(--primary-text);
}
.store-head {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  margin: 10px auto 30px auto;
}
.store-head img {
  width: 160px;
  height: 160px;
  padding: 20px;
}
.store-head-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.store-head-info-icon {
  padding: 6px;
  border-radius: 4px;
  background: var(--primary-background-rgba);
}
.store-head-info-details {
  font-size: 19px;
}
.store-head-info h1 {
  font-size: 45px;
  font-weight: 600;
  margin: 15px 0;
}
.store-coupons {
  width: calc(100% - 60px);
  padding: 0 30px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}
.store-coupons-codes {
  width: calc(100% - 400px);
}
.store-coupons-codes>h2, .store-coupons-expired {
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0;
  line-height: 28px;
}
.store-coupons-codes-wrap {
  display: flex;
  flex-direction: column;
}
.store-coupons-codes-item {
  width: calc(100% - 30px);
  border-radius: 9px;
  border: 1px solid var(--border);
  background: white;
  display: flex;
  padding: 15px;
  align-items: center;
  margin: 10px 0;
}
.store-coupons-codes-item-info {
  width: 100px;
  height: 100px;
  border: 2px dashed var(--border);
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.store-coupons-codes-item-info-p1 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 5px;
}
.store-coupons-codes-item-info-p2 {
  font-size: 22px;
}
.expired-coupon {
  color: var(--secondary-text)!important;
}
.store-coupons-codes-item-details {
  width: calc(100% - 334px);
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.store-coupons-codes-item-details-p1 {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--secondary-text);
}
.store-coupons-codes-item-details-p2 {
  font-size: 25px;
  font-weight: 600;
}
.store-coupons-codes-item-details-div {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 11px 0 0 0;
}
.store-coupons-codes-item-details-div img {
  width:23px;
  height: 23px;
}
.store-coupons-codes-item-details-div p {
  font-size: 13px;
  font-weight: 400;
  margin-left: 9px;
  color: var(--primary-text);
}
.store-coupons-codes-item-btn {
  width: 200px;
  height: 50px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-radius: 7px;
  background: var(--primary-background-rgba);
  border: 1px dashed var(--secondary-text);
}
.store-coupons-codes-item-btn p {
  font-size: 24px;
  font-weight: 600;
  margin-right: 8px;
}
.store-coupons-codes-item-btn a {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: 30px;
  border-radius: 7px 0 0 7px;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  color: white;
  transition: 0.15s all ease;
  text-align: center;
}
.store-coupons-codes-item-btn a:hover {
  background: var(--secondary-color-hover);
  right: 45px;
  transition: 0.15s all ease;
}
.store-coupons-codes-item-btn-deal {
  border-radius: 7px!important;
  right:-1px!important;
}
.store-coupons-details {
  width: 370px;
  padding-left: 30px;
}
.store-coupons-details-h3 {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 25px;
}
.store-coupons-details h4 {
  margin-top: 22px;
  line-height: 22px;
}
.store-coupons-details-p {
  line-height: 22px;
  margin-top: 7px;
}
.store-coupons-details-logo {
  width: 40px;
  height: 40px;
}
.store-coupon-details-icons {
  display: flex;
  margin-bottom: 30px;
}
.store-coupon-details-icons svg {
  width: 20px;
  height: 20px;
  margin-right: 9px;
  display: inline-block;
}
.store-coupon-details-icons img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.store-coupons-author {
    border-radius: 9px;
    padding: 20px;
    background: white;
    display: flex;
    flex-direction: column;
}
.store-coupons-author-subheading {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--secondary-text);
}
.store-coupons-author-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-text);
}
.store-coupons-author-tag {
    font-size: 11px;
    color: var(--primary-text);
    background: var(--primary-background);
    border-radius: 3px;
    padding: 6px 9px;
    margin-bottom: 10px;
    width: fit-content;
}
.store-coupons-author-summary {
    font-size: 15px;
    line-height: 20px;
    color: var(--primary-text);
    margin-bottom: 10px;
}
.store-coupons-author a {
    text-decoration: none;
    position: relative;
    color: var(--secondary-text);
    font-size: 15px;
    left: 0;
    transition: 0.3s all;
}
.store-coupons-author a:hover {
    left: 3px;
    transition: 0.3s all;
}
.store-coupons-disclaimer {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    line-height: 20px;
    font-size: 15px;
    color: var(--primary-text);
}
.store-tr {
    background: white;
}
.store-text-wrap {
  width: calc(100% - 60px);
  padding: 30px 30px 0 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.store-text {
  width: 100%;
  margin-bottom: 30px;
}
.store-text h3 {
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 30px;
  margin-top:30px;
}
.store-text h4 {
  font-size: 21px;
  line-height: 25px;
  margin-top: 20px;
  margin-bottom: 15px;
}
.store-text p {
  line-height: 25px;
  font-size: 17px;
}
.store-text ul, .store-text ol {
  margin: 15px 0;
  list-style-position: inside;
  font-size: 17px;
}
.store-text li {
  line-height: 30px;
}
.store-coupons-details-email-title {
  text-align: left;
  padding: 0;
}
.store-coupons-details-email {
  flex-grow: 0;
  width: 300px;
  margin-bottom: 7px;
}
.store-h3-table {
    margin: 15px 0;
    font-size: 23px;
    line-height: 28px;
    color: var(--primary-text);
}
.store-th, .store-td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.store-th {
    background-color: var(--border);
}
.store-td-type {
    text-transform: uppercase;
}
.expired {
    color: var(--secondary-text);
    text-decoration: line-through;
}
.store-category {
  text-decoration: none;
  padding: 7px;
  background: var(--primary-background-rgba);
  color: var(--secondary-color);
  border-radius: 5px;
}
.store-suggestions-title {
  width: calc(100% - 60px);
  max-width: var(--max-width);
  font-size: 24px;
  font-weight: 600;
  padding: 0 20px;
  margin: 50px auto 20px auto;
}
.store-suggestions {
    width: calc(100% - 60px);
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}
.store-suggestions-item {
    display: flex;
    justify-content: flex-start;
    border: 1px dashed var(--secondary-text);
    background: white;
    border-radius: 9px;
    padding: 20px;
    width: calc(25% - 62px);
    text-decoration: none;
    color: var(--primary-text);
    position: relative;
    bottom: 0;
    transition: all 0.2s ease;
    min-width: 110px;
}
.store-suggestions-item:hover {
    bottom: 4px;
    transition: all 0.2s ease;
}
.store-suggestions-item:hover > .index-item-info h3 {
    color: var(--primary-color);
}
.store-suggestions-item img {
    width: 70px;
    height: 70px;
    margin-right: 20px;
}
.store-suggestions-item-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: calc(100% - 120px);
    min-width: 100px;
}
.store-suggestions-item-info h3 {
    font-size: 21px;
    margin-bottom: 8px;
    line-height: 25px;
}
.store-suggestions-item-info p {
    font-size: 15px;
}
/* store page css end */
/* deals page css start */
.deals-title {
  font-size: 26px;
  margin-bottom: 30px;
}
.deals-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.deals-item-event {
  border-radius: 9px;
  overflow: hidden;
  width: calc(25% - 20px);
  height: 200px;
  text-decoration: none;
  position: relative;
  bottom: 0;
  transition: 0.2s all ease;
}
.deals-item-event:hover, .deals-item-brand:hover {
  bottom: 2px;
}
.deals-item-event:hover>.deals-item-event-info h3 {
  color: var(--primary-color);
}
.deals-item-event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deals-item-event-info {
  padding: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.8)
}
.deals-item-event-info h3 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}
.deals-item-brand {
  border-radius: 9px;
  background: white;
  border: 1px solid var(--border);
  width: calc(25% - 52px);
  text-decoration: none;
  position: relative;
  bottom: 0;
  transition: 0.2s all ease;
  padding: 15px;
}
.deals-item-brand-img {
  height: 50px;
  width: 50px;
  margin-bottom: 10px;
}
.deals-item-brand span {
  padding: 5px;
  border-radius: 6px;
  font-size: 11px;
  background: var(--primary-background-rgba);
  color: var(--secondary-color);
  margin-top: 10px;
  display: inline-block;
}
.deals-item-brand h3 {
  font-size: 23px;
  margin-bottom: 10px;
  line-height: 25px;
  color: var(--primary-text);
}
.deals-item-brand-coupons {
  color: var(--primary-text);
  margin-bottom: 5px;
}
.deals-item-brand-percent {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 20px;
  right:20px;
  opacity: 0.15;
}
/* deals page css end */
/* footer code begins */
footer {
  background: white;
  border-top: 1px solid var(--border);
  width: 100%;
  margin-top: 100px;
}
.footer-wrap {
  width: calc(100% - 60px);
  padding: 0 30px;
  margin: 0 auto;
  max-width: var(--max-width);
  padding-top: 80px;
  display: flex;
}
.footer-column {
  width: 33.33%;
}
.footer-column-img {
  width: 156px;
  height: 39px;
  margin-bottom: 20px;
}
.footer-column-p {
  color: var(--secondary-color);
}
.footer-column p {
  font-size: 17px;
  margin: 20px 0 8px 0;
  line-height: 24px;
}
.footer-column-span {
  color: var(--secondary-color);
}
.footer-email-form {
  width: 95%;
}
.footer-email {
  width: calc(100% - 74px)!important;
  max-width: 200px;
}
.footer-column-info {
  display: inline-block;
  line-height: 24px;
  width: calc(100% - 50px);
}
.footer-column-info a {
    color: var(--primary-font);
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-top: 20px;
}
.footer-column ul li a {
  text-decoration: none;
  color: var(--primary-text);
}
.footer-sm-icons {
  display: flex;
  margin-top: 20px;
}
.footer-sm-icons img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  filter: invert(10%) sepia(34%) saturate(13%) hue-rotate(325deg) brightness(95%) contrast(79%);
}
.footer-sm-icons svg {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}
.footer-support-email {
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  color: var(--primary-text);
}
.footer-support-email i {
  font-size: 14px;
  margin-right: 3px;
}
.footer-copyright {
  padding: 15px 0;
  width: 100%;
  text-align: center;
  color: var(--secondary-text);
  font-size: 14px;
}
/* mobile responsiveness start */
@media only screen and (max-width: 360px) {
  .store-coupons-details-email {
    width: auto;
  }
}
@media only screen and (max-width: 470px) {
    .contact-form-flex {
        flex-direction: column;
    }
    .store-th, .store-td {
        font-size:12px;
    }
  .index-banner h1 {
    font-size: 35px;
    margin-bottom: 0;
  }
    .store-coupons-codes-item-details {
        width: calc(100% - 4px);
        padding: 0;
    }
    .store-head img {
        width: 90px;
        height: 90px;
    }
    .store-head-info-icon {
        font-size: 12px;
    }
    .store-head-info h1 {
        font-size: 28px;
    }
    .store-head-info-details {
        font-size: 15px;
    }
    .store-suggestions img {
        width: 60px;
        height: 60px;
    }
    .store-suggestions-info {
        width: calc(100% - 80px);
    }
    .store-suggestions-info h3 {
        font-size: 24px;
    }
    .store-suggestions-info p {
        font-size: 13px;
    }
    .about-h2, .about-team-h2 {
    font-size: 40px!important;
}
}
@media only screen and (min-width: 471px) and (max-width: 570px) {
  .index-banner h1 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 570px) {
  .all-brands-div a {
    width: calc(100% - 26px);
  }
    .store-coupons-codes-item {
        flex-wrap: wrap;
    }
    .store-coupons-codes-item-info {
        width: 100%;
        margin-bottom: 15px;
    }
    .store-coupons-codes-item-btn {
        margin-top: 15px;
    }
    .deals-item-event {
    width: 100%;
    }
    .deals-item-brand {
      width: calc(100% - 32px);
    }
}
@media only screen and (min-width: 471px) and (max-width: 570px) {
    .store-coupons-codes-item-details {
        width: calc(100% - 164px);
        padding: 0;
    }
}
@media only screen and (max-width: 600px) {
    .store-coupons-codes-item-btn {
        width: 160px;
    }
    .store-coupons-codes-item-btn a {
        font-size: 20px;
    }
    .store-coupons-codes-item-btn p {
        font-size: 22px;
    }
}
@media only screen and (min-width: 471px) and (max-width: 600px) {
    .store-head img {
        width: 110px;
        height: 110px;
    }
    .store-head-info-icon {
        font-size: 14px;
    }
    .store-head-info h1 {
        font-size: 35px;
    }
    .store-head-info-details {
        font-size: 17px;
    }
}
@media only screen and (min-width: 601px) and (max-width: 660px) {
    .store-coupons-codes-item-details {
        width: calc(100% - 294px);
    }
}
@media only screen and (max-width: 750px) {
    .footer-wrap {
        flex-direction: column;
    }
    .footer-column {
        width: 100%;
        margin-bottom: 25px;
    }
    .header-v2-search-bar, .header-links {
      display: none;
      visibility: hidden;
    }
    .header-bars {
      display: block;
      visibility: visible;
      font-size: 20px;
      color: var(--primary-text);
      padding: 5px;
      margin-left: 25px;
    }
    .index-banner-header-a {
        display: none;
        visibility: hidden;
    }
}
@media only screen and (min-width: 751px) {
  .footer-column-one {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1000px) {
    .store-coupons {
        flex-direction: column;
    }
    .store-coupons-codes {
        width: 100%;
    }
    .store-coupons-details {
        width: 100%;
        padding-left: 0;
        margin-top: 50px;
    }
}
@media only screen and (min-width: 1000px) {
  .store-text {
    width: calc(100% - 400px);
  }
}
@media only screen and (max-width: 840px) {
    .store-suggestions-item {
        width: calc(100% - 42px);
    }
}
@media only screen and (min-width: 571px) and (max-width: 900px)  {
  .all-brands-div a {
    width: calc(50% - 31px);
  }
  .deals-item-event {
  width: calc(50% - 20px);
  }
  .deals-item-brand {
    width: calc(50% - 52px);
  }
}
@media only screen and (min-width: 901px) and (max-width: 1100px)  {
  .all-brands-div a {
    width: calc(33.3% - 33px);
  }
  .deals-item-event {
  width: calc(33.33% - 20px);
  }
  .deals-item-brand {
    width: calc(33.33% - 52px);
  }
}
@media only screen and (min-width: 841px) and (max-width: 1100px) {
    .store-suggestions-item {
        width: calc(50% - 62px);
    }
}
@media only screen and (min-width: 1101px) and (max-width: 1400px) {
    .store-suggestions-item {
        width: calc(33% - 62px);
    }
}
@media only screen and (max-width: 1331px) {
  .index-banner {
    background-size: cover;
  }
}
