@font-face {
  font-family: "PF Medium";
  src: url("../font/PFDINDisplayPro-Medium.woff2") format("woff2"),
    url("../font/PFDINDisplayPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PF Regular';
  src:
      url("../font/PFDINDisplayPro-Regular.woff2") format("woff2"),
      url("../font/PFDINDisplayPro-Regular.woff") format("woff");
  font-weight: normal;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "PF Black";
  src: url("../font/PFDINDisplayPro-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --clr-main: #1E1F30;
  --clr-accent: #f1f1f1;
  --clr-accent-pink: #f4f0f0;
  --clr-grey: #676767;
  --clr-purple: #c3196b;
  --clr-gold: #9c8e0c;
  --clr-error: #ff1940;
  --clr-green: #48ddb9;
}

html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font: 16px/20px "PF Medium", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body #main {
  min-height: 60vh;
  overflow-x: hidden;
  /* padding-top: 59px; */
}

body #main.index-page {
  background-color: var(--clr-main);
  color: #fff;
}

input {
  -webkit-border-radius:0; 
  border-radius:0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    /* -webkit-box-shadow: 0 0 0 60px #fafafa inset !important; */
    -webkit-box-shadow: 0 0 0 30px var(--clr-accent-pink) inset !important;
    background-color: #fafafa !important;
    background-clip: content-box !important;
}

a {
  text-decoration: none;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}


.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
  opacity: 0.7;
}

.loader {
  font-size: 10px;
  position: absolute;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(5, 5, 5, 0.2);
  border-right: 1.1em solid rgba(5, 5, 5, 0.2);
  border-bottom: 1.1em solid rgba(5, 5, 5, 0.2);
  border-left: 1.1em solid #050505;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  top: 34%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 99;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.hidden-desktop {
  display: none;
}



.bg-arrow:before{
  content: "";
  display: block;
  position: absolute;
  width: 714px;
  height: 167px;
  background-image: url(../img/arrows-to-right.png);
  background-repeat: no-repeat;
  left: -115%;
  top: -50px;
  z-index: 1;
}

ul.nav {
  list-style: none;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 25px;
}

.nav__item .nav__link {
  font-size: 18px;
  line-height: 22px;
}

.menu-btn {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 999;
}

.menu-btn__lines,
.menu-btn__lines::before,
.menu-btn__lines::after {
  width: 18px;
  height: 0.1rem;
  background-color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-btn__lines {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#000),
    color-stop(30%, #000),
    color-stop(31%, #fff),
    to(#fff)
  );
  background: -o-linear-gradient(left, #000 0%, #000 30%, #fff 31%, #fff 100%);
  background: linear-gradient(90deg, #000 0%, #000 30%, #fff 31%, #fff 100%);
}

.menu-btn__lines::before,
.menu-btn__lines::after {
  content: "";
  position: absolute;
}

.menu-btn__lines::before {
  -webkit-transform: translateY(0.5rem);
  -ms-transform: translateY(0.5rem);
  transform: translateY(0.5rem);
}

.menu-btn__lines::after {
  -webkit-transform: translateY(-0.5rem);
  -ms-transform: translateY(-0.5rem);
  transform: translateY(-0.5rem);
}

.menu-btn.open .menu-btn__lines {
  -webkit-transform: translateX(2rem);
  -ms-transform: translateX(2rem);
  transform: translateX(2rem);
  background: transparent;
  -webkit-box-shadow: inset 0 33px 25px 0 #000, inset 0 99px 5px 0 #fff;
  box-shadow: inset 0 33px 25px 0 #000, inset 0 99px 5px 0 #fff;
}

.menu-btn.open .menu-btn__lines::before {
  -webkit-transform: rotate(45deg) translate(-1.5rem, 1.5rem);
  -ms-transform: rotate(45deg) translate(-1.5rem, 1.5rem);
  transform: rotate(45deg) translate(-1.5rem, 1.5rem);
}

.menu-btn.open .menu-btn__lines::after {
  -webkit-transform: rotate(-45deg) translate(-1.5rem, -1.5rem);
  -ms-transform: rotate(-45deg) translate(-1.5rem, -1.5rem);
  transform: rotate(-45deg) translate(-1.5rem, -1.5rem);
}

.nav-wrapper .user {
  display: none;
}

.user {
  font-size: 22px;
  line-height: 28px;
}

.btn {
  background-image: url(../img/dark-mask-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 160px;
  min-width: fit-content;
  height: 39px;
  padding: 0 20px;
  gap: 20px;
  cursor: pointer;
  font-weight: bold;
}
.form-btn span.button__body{
  background-color: #000;
}
.hero-banner:has(.hero-slide) {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    min-height: unset;
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background: white;
}

.hero-banner-image {
    transition: opacity 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-banner-full {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-banner-full picture,
.hero-banner-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive image handling */
@media (max-width: 768px) {
    .hero-navigation {
        bottom: 10px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
}

.hero-btn .btn {
  color: #000;
  background-image: url(../img/white-mask-bg.png);
}

.hero-btn .right-arrow{
  background-image: url(../img/right-arrow_dark.svg);
}

.bordered.btn .right-arrow {
  width:8px;
  height:12px;
  background-image: url(../img/right-arrow_dark.svg);
}

.bordered.btn{
  transition:all ease 0.2s;
  width:170px;
  color: #000;
  background-image: url(../img/bordered-mask-bg.png);
}
.bordered.btn:hover{
  width:170px;
  color: #000;
  /* background-image: url(../img/bordered-mask-bg-hover.png); */
  background-image: url(../img/bordered-mask-bg-hover-lime.png);
}

.location-icon {
  width: 16px;
  height: 16px;
  background-image: url(../img/location.png);
}
.clock-icon {
  width: 16px;
  height: 16px;
  background-image: url(../img/clock.png);
}
.stores-list .clock-icon{
  margin-top:1px;
}
.resp-img {
  max-width: 100%;
  height: auto;
}
.card__image{
  width: auto;
  height: auto;
  filter: invert(100%);
}
.partner-page .card__image{
  filter: unset;
}
span.has-arrow {
  background-position: center;
  background-size: cover;
  display: inline-block;
}

span.right-arrow {
  background-image: url(../img/right-arrow.svg);
  width: 16px;
  height: 15px;
}

span.accordion-arrow {
  background-image: url(../img/down-arrow.svg);
  width: 23px;
  height: 14px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  -o-transition: transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  float: right;
  filter: invert(1);
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 41px;
  text-align: center;
  color: #fff;
}

.partner-page .section-title {
  color: inherit;
}

.info-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 28px;
  margin-bottom: 30px;
}

span.status-placeholder {
  display: block;
  width: 187px;
  height: 118px;
  background-repeat: no-repeat;
  background-position: center;
}

.status-placeholder.member {
  background-image: url(../img/member-status-min.png);
}

.status-placeholder.pro {
  background-image: url(../img/pro-status-min.png);
}

.status-placeholder.mvp {
  background-image: url(../img/mvp-status-min.png);
}

span.cashback-status-placeholder {
  display: block;
  width: 210px;
  height: 59px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/gox-banner-green.svg);
}

span.member-points-big {
  display:grid;
  display: -ms-grid;
  margin-top: 10px;
  margin-bottom: -34px;
}

span.member-points-big-inner {
  --btn-background-color: white;
  --btn-border-color: #000;
  --btn-border-width: 2px;
  --btn-edge-size: 1rem;
  cursor: pointer;
  background: var(--btn-background-color);
  padding: 15px 25px 10px;
  min-width: max-content;
  border: 0;
  position: relative;
  font-size:36px;
  font-weight: 900;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  -webkit-clip-path: polygon(var(--btn-edge-size) 0%, 100% 0, 100% calc(100% - var(--btn-edge-size)), calc(100% - var(--btn-edge-size)) 100%, 0 100%, 0% var(--btn-edge-size));
  clip-path: polygon(var(--btn-edge-size) 0%, 100% 0, 100% calc(100% - var(--btn-edge-size)), calc(100% - var(--btn-edge-size)) 100%, 0 100%, 0% var(--btn-edge-size));
}

span.member-points-big-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--btn-border-color);
  z-index: -2;
}

span.member-points-big-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--btn-background-color);
  z-index: -1;
  -webkit-clip-path: polygon(var(--btn-border-width) calc(var(--btn-edge-size) + var(--btn-border-width) * 0.5), calc(var(--btn-edge-size) + var(--btn-border-width) * 0.5) var(--btn-border-width), calc(100% - var(--btn-border-width)) var(--btn-border-width), calc(100% - var(--btn-border-width)) calc(100% - calc(var(--btn-edge-size) + var(--btn-border-width) * 0.5)), calc(100% - calc(var(--btn-edge-size) + var(--btn-border-width) * 0.5)) calc(100% - var(--btn-border-width)), calc(var(--btn-border-width)) calc(100% - var(--btn-border-width)));
          clip-path: polygon(var(--btn-border-width) calc(var(--btn-edge-size) + var(--btn-border-width) * 0.5), calc(var(--btn-edge-size) + var(--btn-border-width) * 0.5) var(--btn-border-width), calc(100% - var(--btn-border-width)) var(--btn-border-width), calc(100% - var(--btn-border-width)) calc(100% - calc(var(--btn-edge-size) + var(--btn-border-width) * 0.5)), calc(100% - calc(var(--btn-edge-size) + var(--btn-border-width) * 0.5)) calc(100% - var(--btn-border-width)), calc(var(--btn-border-width)) calc(100% - var(--btn-border-width)));
}

span.member-points-big-str{
    font-size:18px;
    line-height:30px;
}

span.accordion__title {
  margin-right: 15px;
}

.bolder {
  font-weight: 900;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
}
header.page_header{
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  z-index: 99;
}
header.page_header.hasScrolled{
  opacity: 0.95;
  transition: opacity 0.4s ease-in-out;
}
header.page_header,
footer.page_footer {
  color: #fff;
  background-color: #000;
}

.header-left-group {
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  z-index: 999;
}

.header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-logo .logo {
  max-width: 243px;
}

.header-wrapper {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.hero-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgb(31, 33, 51);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(31, 33, 51, 1)),
    to(rgba(0, 0, 0, 1))
  );
  background: -o-linear-gradient(
    bottom,
    rgba(31, 33, 51, 1) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(31, 33, 51, 1) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1f2133", endColorstr="#000000", GradientType=1);
  min-height: 500px;
}

.hero-banner-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 40px;
  padding: 0 50px;
  width: 100%;
  min-height: 374px;
  position: relative;
  z-index: 1;
}

.hero-banner-inner:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 375px;
  -webkit-clip-path: polygon(5% 0%, 100% 0, 100% 85%, 95% 100%, 0 100%, 0% 15%);
  clip-path: polygon(5% 0%, 100% 0, 100% 85%, 95% 100%, 0 100%, 0% 15%);
  background: rgb(230, 173, 205);
  background: -o-linear-gradient(
      54deg,
      rgba(230, 173, 205, 0.40379901960784315) 0%,
      rgba(91, 147, 136, 0.4) 33%,
      rgba(235, 220, 195, 0.4) 66%,
      rgba(122, 147, 108, 0.4) 100%
    ),
    url(../img/noise.svg);
  background: linear-gradient(
      36deg,
      rgba(230, 173, 205, 0.40379901960784315) 0%,
      rgba(91, 147, 136, 0.4) 33%,
      rgba(235, 220, 195, 0.4) 66%,
      rgba(122, 147, 108, 0.4) 100%
    ),
    url(../img/noise.svg);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e6adcd", endColorstr="#7a936c", GradientType=1);
}

.hero-banner .hero-banner-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 700px;
  color: #fff;
  flex: 1;
}

.hero-banner-left .hero-title {
  font-size: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  max-width: 18ch;
}

.hero-banner-left .hero-subtitle {
  max-width: 590px;
}

.hero-banner-right .hero-member-cards {
  position: relative;
}

.hero-member-cards .hero-right-arrow-img {
  position: absolute;
  right: -150px;
  bottom: 46px;
}

.brands-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}

.hero-brands.brands-nav {
  margin: 20px 0;
  width: 100%;
  justify-content: start;
  gap: 20px;
}
.hero-brands .brands-group{
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero-brands .brand-image img {
  max-width: 100%;
}

/* usp table section */

.usp-header {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 60px;
  grid-gap: 60px;
  color: #fff;
  /* background-color: var(--clr-accent); */
}

.usp-title{
  position: relative;
  max-width: 650px;
}

.partner-page .usp-header {
  color: inherit;
  background-color: var(--clr-accent);
}

.usps .usps-table {
  text-align: center;
  padding: 60px 0;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
.points-section .points-cards .card,
.usps .usp-header,
.usps .usps-table {
  width: 100%;
}
.history-content{
  overflow-y: auto;
  max-height: 500px;
}

.history-content table,
.usps-table table {
  width: 100%;
  table-layout: fixed;
}

.loyalty-points-section .loyalty-points-cards,
.usps .usps-cards {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.usps .usps-cards {
  margin-bottom: 30px;
}

.usps-cards .card{
  max-width: 260px;
}

.loyalty-points-cards .card__aside,
.usps-cards .card__aside {
  margin-bottom: 15px;
}

.usps-cards .card__header .card__title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.1;
}

.loyalty-points-cards .card__subtitle,
.usps-cards .card__header .card__subtitle {
  font-weight: 500;
}
/* .loyalty-points-cards .card:last-of-type{
  display: none;
} */

.history-content thead,
.usps-table thead {
  vertical-align: bottom;
}

.history-content table,
.usps-table table {
  border-spacing: 0;
}

.usps-table thead th {
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 18px;
  height: 93px;
}

.usps-table thead th:first-child,
.usps-table tbody td:first-child {
  text-align: left;
  padding-left: 15px;
}

.history-content thead th:first-child,
.usps-table thead th:first-child {
  font-size: 22px;
  font-weight: 900;
}

.history-content .history-data thead{
  text-align: left;
}

.history-content .history-data thead th,
.history-content .history-data thead th:first-child{
  font-size: 12px;
  font-weight: 500;
  color: #333;
  vertical-align: middle;
  height: 30px;
}

.history-data thead th:last-child,
.history-data thead th:first-child,
.history-data tbody td:last-child,
.history-data tbody td:first-child {
  padding: 0 10px;
}

.bold-span {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 28px;
  margin-bottom: 10px;
}

.star-span {
  color: var(--clr-purple);
}

.vips-span {
  color: var(--clr-gold);
}

.color-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.color-dot.member {
  background-image: url(../img/silver-ellipse.png);
}

.color-dot.star {
  background-image: url(../img/gold-ellipse.png);
}

.color-dot.vip {
  background-image: url(../img/gradient-ellipse.png);
}
.history-data tbody tr td,
.usps-table tbody tr td {
  height: 50px;
}

.history-content tbody tr:nth-of-type(odd),
.usps-table tbody tr:nth-of-type(odd) {
  background-color: var(--clr-green);
}

/* end of  usp table section */
/* ////////// */
/* secondary banner section */
.secondary-banner-section {
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--clr-main);
  /* background: rgb(31, 33, 51);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(31, 33, 51, 1)),
    to(rgba(0, 0, 0, 1))
  );
  background: -o-linear-gradient(
    bottom,
    rgba(31, 33, 51, 1) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(31, 33, 51, 1) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1f2133", endColorstr="#000000", GradientType=1); */
  position: relative;
}
.partner-page .secondary-banner-section {
  padding: 50px 0;
}

/* .secondary-banner-section:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(230, 173, 205);
  background: -o-linear-gradient(
      54deg,
      rgba(230, 173, 205, 0.40379901960784315) 0%,
      rgba(91, 147, 136, 0.4) 33%,
      rgba(235, 220, 195, 0.4) 66%,
      rgba(122, 147, 108, 0.4) 100%
    ),
    url(../img/noise.svg);
  background: linear-gradient(
      36deg,
      rgba(230, 173, 205, 0.40379901960784315) 0%,
      rgba(91, 147, 136, 0.4) 33%,
      rgba(235, 220, 195, 0.4) 66%,
      rgba(122, 147, 108, 0.4) 100%
    ),
    url(../img/noise.svg);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e6adcd", endColorstr="#7a936c", GradientType=1);
} */

.secondary-banner-inner {
  width: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 70px;
  margin: 30px 0;
  flex-direction: row-reverse;
}

.secondary-banner-inner:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/lime-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* .secondary-banner-inner:before { */
  /* content: "";
  position: absolute;
  z-index: -1; */
  /* opacity: 0.7; */
  /* background: #48DDB9;
  background: linear-gradient(180deg, rgba(72, 221, 185, 1) 0%, rgba(39, 119, 100, 1) 100%); */
  /* background: rgb(31, 33, 51); */
  /* background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(31, 33, 51, 1)),
    to(rgba(0, 0, 0, 1))
  );
  background: -o-linear-gradient(
    bottom,
    rgba(31, 33, 51, 1) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(31, 33, 51, 1) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1f2133", endColorstr="#000000", GradientType=1); */
  /* width: 100%;
  height: 100%;
  max-width: 1096px;
  -webkit-clip-path: polygon(5% 0%, 100% 0, 100% 85%, 95% 100%, 0 100%, 0% 15%);
  clip-path: polygon(5% 0%, 100% 0, 100% 85%, 95% 100%, 0 100%, 0% 15%); */
/* } */

/* .secondary-banner-inner:after {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0.6;
  background: #48DDB9;
  background: linear-gradient(180deg, rgba(72, 221, 185, 1) 0%, rgba(39, 119, 100, 1) 100%);
  width: 120%;
  height: 120%;
  -webkit-clip-path: polygon(5% 0%, 100% 0, 100% 85%, 95% 100%, 0 100%, 0% 15%);
  clip-path: polygon(5% 0%, 100% 0, 100% 85%, 95% 100%, 0 100%, 0% 15%);
} */

.secondary-banner-inner:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/lime-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: scale(1.2);
  opacity: 0.6;
}

.secondary-banner-left {
  position: relative;
  /* -webkit-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5; */
}

.secondary-banner-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 40px;
  /* -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; */
}

/* .secondary-banner-right:before,
.secondary-banner-left:before {
  content: "";
  position: absolute;
  width: 178px;
  height: 46px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/banner-arrows-right.svg);
  background-size: 100%;
  z-index: 0;
} */

/* .secondary-banner-left:before {
  right: 110%;
  top: -30px;
} */

/* .secondary-banner-right:before {
  left: 105%;
  bottom: 0;
} */

.secondary-banner-title {
  text-align: left;
  color: #000;
  max-width: 300px;
}

.secondary-banner-logo {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  position: relative;
}

@media (min-width: 993px) {
    .secondary-banner-logo {
      position: absolute;
      top: 30px;
      right: 45px;
  }
}
/* end of secondary banner section */
/* ////////// */
/* start of loyalty points section*/
.loyalty-points-section {
  padding: 120px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
}

.loyalty-points-section .loyalty-points-header {
  max-width: 700px;
  gap: 20px;
  grid-gap: 20px;
  display: -ms-grid;
  display: grid;
  margin-bottom: 100px;
}

.loyalty-points-section .card__header .card__points-title {
  margin-bottom: 40px;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-left: 30px;
  font-weight: 900;
  font-size: 34px;
  background-color: black;
  line-height: normal;
}

.loyalty-points-section .card {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 300px;
}

figure.card__figure{
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loyalty-points-section .card__points-title:before {
  z-index: -1;
  content: "";
  background-image: url(../img/loyalty-points-bg.png);
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  width: 138px;
  height: 60px;
  left: 30%;
  top: 45%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  /* clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%); */
}

/* end of loyalty points section */
/* ////////// */
/* start of customer forms section */
.maintenance-message {
  padding: 20px;
  margin: 40px auto;
  width: 100%;
}

.customer-form-section {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  grid-gap: 30px;
  padding: 160px 0 60px;
  position: relative;
}
.partner-page .customer-form-section {
  padding-top: 60px;
}
.customer-form-section:before{
  content: "";
  position: absolute;
  z-index: 0;
  width: 771px;
  height: 740px;
  top: -10%;
  left: 15%;
  background-image: url(../img/percent-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.customer-form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  color:#000;
  position: relative;
}

.customer-form-wrapper .login,
.customer-form-wrapper .registration {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 50px 20px;
  min-height: 376px;
  background-color: var(--clr-accent-pink);
}

.customer-form-wrapper .registration {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.customer-form-wrapper .registration.success {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.customer-form-wrapper .login {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.form-inner {
  max-width: 530px;
}

.form-success-state,
.form-inner form {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  grid-gap: 15px;
}

.form-success-state {
  justify-items: center;
}

.form-subtitle {
  line-height: normal;
  max-width: 530px;
}

#otp-form .form-subtitle {
  line-height: normal;
}

#back-btn {
  text-decoration: underline;
  cursor: pointer;
}

.otp-back {
  font-size: 12px;
}

.form-group {
  gap: 20px 10px;
  grid-gap: 20px 10px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.form-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form-btn-group.otp-btn-group {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.form-group input.form-control {
  width: 50%;
}

.login .form-group input.form-control {
  width: 100%;
}

.registration-wrapper,
.login-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.form-title{
  font-size: 22px;
    line-height: 28px;
}

/* recaptcha customization   */
.form-btn-group .g-recaptcha{
    transform: scale(0.70)!important;
    max-width: 265px;
  }
  
/*end of recaptcha customization   */
#customer-form{
  position: relative;
}
.customer-form-section .form-input {
  flex: 1;
  display: block;
  position: relative;
}

.form-input.flex-100{
  flex: 100%;
}

.customer-form-section input.form-control {
  color: #000;
  border: none;
  outline: none;
  display: block;
  height: 35px;
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid #000;
  padding: 0 3px;
}

.customer-form-section input.form-control.has-error {
  border-bottom: 1px solid var(--clr-error);
}

.customer-form-section input.form-control.has-error::-webkit-input-placeholder {
  color: var(--clr-error);
}

.customer-form-section input.form-control.has-error::-moz-placeholder {
  color: var(--clr-error);
}

.customer-form-section input.form-control.has-error:-ms-input-placeholder {
  color: var(--clr-error);
}

.customer-form-section input.form-control.has-error::-ms-input-placeholder {
  color: var(--clr-error);
}

.customer-form-section input.form-control.has-error::placeholder {
  color: var(--clr-error);
}

.error-message {
  color: var(--clr-error);
  margin-top: 5px;
  font-size: 12px;
  line-height: normal;
}
.error-message.recaptcha-error{
  position: absolute;
  bottom: 0;
}
.customer-form-section
  input.form-control.has-error:in-range::-webkit-datetime-edit-year-field,
.customer-form-section
  input.form-control.has-error:in-range::-webkit-datetime-edit-month-field,
.customer-form-section
  input.form-control.has-error:in-range::-webkit-datetime-edit-day-field {
  color: var(--clr-error);
}

/* end of customer forms section */
/* ////////// */
/* start of gallery grid section */
.gallery-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  margin-bottom: 70px;
  position: relative;
}
.gallery-section:before {
  content: "";
  position: absolute;
  z-index: 0;
  opacity: 0.6;
  background: #48DDB9;
  background: linear-gradient(180deg, rgba(72, 221, 185, 1) 0%, rgba(39, 119, 100, 1) 100%);
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  left: 0;
  top: 5%;
  -webkit-clip-path: polygon(5% 0%, 100% 0, 100% 85%, 95% 100%, 0 100%, 0% 15%);
  clip-path: polygon(5% 0%, 100% 0, 100% 85%, 95% 100%, 0 100%, 0% 15%);
}
.gallery-header{
  z-index: 1;
}
.gallery-header .gallery-title{
  color: #000;
}

.gallery_out {
  position: relative;
}

.gallery-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-gap: 20px;
}
.gallery-card .gallery-card__header,
.gallery-card .gallery-card__aside {
 margin-bottom: 15px;
}

.gallery-card .gallery-card__figure {
  display: -ms-grid;
  display: grid;
}

.gallery-card__figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.gallery-card .gallery-card__title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
}

/* end of gallery grid section */
/* ////////// */
/* start of faq section */
.faq-section {
  padding: 70px 0;
  display: -ms-grid;
  display: grid;
  gap: 30px;
  grid-gap: 30px;
  color: #fff;
}

.faq-section .faq-group {
  max-width: 730px;
  margin: 0 auto;
  min-height: 380px;
}

.accordionItem {
  border-top: 1px solid #fff;
}

.accordionItem:last-of-type {
  border-bottom: 1px solid #fff;
}

.accordionTitle {
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: max-height 0.3s ease-out;
  -o-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
  /* background-color: #fff; */
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  font-weight: 900;
  outline: none;
  font-size: 18px;
  line-height: 22px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.accordionContent {
  /* background-color: white; */
}

.accordionTitle + .accordionContent {
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out;
  -o-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
}

.accordionTitle.is-open + .accordionContent {
  visibility: visible;
  padding: 10px 20px;
  -webkit-transition: max-height 0.4s ease-out;
  -o-transition: max-height 0.4s ease-out;
  transition: max-height 0.4s ease-out;
}

.accordionTitle.is-open .accordion-arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  -o-transition: transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

/* end of faq section */
/* ////////// */
/* start of status page */

.split-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 100px 0;
}

.split-container .content {
  -webkit-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 35px 5px;
  grid-gap: 35px 5px;
}

.split-container .status-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.split-container .content .history {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.split-container .sidebar {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 360px;
}
.sidebar .sidebar-info-desc {
  margin-top:20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color:#333;
  display: block;
}
.sidebar .sidebar-info-desc a{
  text-decoration: underline;
}

.voucher-title {
  margin-right: 10px;
  display: inline-block;
}

.tooltip {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/info-tooltip.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.has-tooltip .tooltip{
  position: absolute;
  right: 3px;
  top: 5px;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 210px;
  font-size: 14px;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 7px 10px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -105px;

  /* Fade in tooltip */
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext,
.tooltip:focus-within .tooltiptext,
.tooltip:focus .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Mobile/touch-specific: show on tap/click */
@media (hover: none) and (pointer: coarse) {
  .tooltip.active .tooltiptext {
    visibility: visible;
    opacity: 1;
  }
}

.voucher .voucher-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.voucher .voucher-group {
  display: -ms-grid;
  display: grid;
  gap: 25px;
  grid-gap: 25px;
}

.voucher-item .voucher-name {
  font-size: 18px;
  line-height: 22px;
}

.voucher-item .voucher-additional-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.status .status-title,
.history .history-title {
  margin-bottom: 10px;
}

/* sidebar */
.personal-info-group {
  display: -ms-grid;
  display: grid;
  gap: 22px;
  grid-gap: 22px;
}

.input-group__label {
  display: block;
  font-size: 12px;
  color: #333;
  padding: 0 3px;
}

.input-group__input {
  color: #000;
  border: none;
  outline: none;
  display: block;
  height: 25px;
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid #000;
  padding: 0 3px;
  opacity: 1;
}
.input-group .input-group__input:disabled{
  color:#000;
  opacity: 1;
}
/* end of sidebar */

/* end of status page */
/* ////////// */
/* start of footer */
.footer-wrapper {
  min-height: 380px;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
  gap: 50px;
  grid-gap: 50px;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer ul.nav {
  gap: 30px;
}

.footer-brands{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-brands img{
  max-width: 100%;
}

/* end of footer */
/* ////////// */

/* MEDIA CSS */

@media only screen and (max-width: 1440px) {
  ul.nav {
    gap: 15px;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
    max-width: min(1120px, 90%);
  }

  .split-container {
    padding: 50px 0;
  }

  .header-wrapper {
    gap: 25px;
  }

  .hero-banner-inner {
    padding: 0 50px;
    background-size: auto;
  }

  .hero-right-arrow-img {
    display: none;
  }

  .secondary-banner-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .split-container .voucher {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media only screen and (max-width: 1120px) {
  .gallery-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

   .gallery-grid .gallery-card {
    max-width: 360px;
    background-color: #348679;
  }
  .gallery-section:before{
    display: none;
  }

  .gallery-card .gallery-card__body,
  .gallery-card .gallery-card__header{
    padding: 0 10px;
    margin: 15px 0;
  }
}

@media only screen and (max-width: 992px) {
  .header-wrapper{
    min-height: 60px;
  }

  .gallery-grid .gallery-card {
    flex: 0 0 25%;
    scroll-snap-align: start;
  }

  .logo-mobile{
    max-width: 100px;
    height: auto;
  }
  
  .header-logo:has(.logo-mobile) .logo {
    display: none;
  }

  .hero-banner-right {
    display: none;
  }

  .header-wrapper,
  .header-left-group {
    gap: 10px;
  }

  .header-left-group .user {
    font-size: 18px;
  }

  .header:not(.profile) .header-left-group .user {
    display: none;
  }

  .header .nav-wrapper .user {
    display: block;
    text-align: right;
    padding: 30px 0 50px;
  }

  .header-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 30px;
  }

  .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header .nav-wrapper {
    position: absolute;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    left: 0;
    right: 0;
    top: 59px;
    z-index: 99;
    background: #000;
    width: 100%;
    padding: 0 35px;
    -webkit-transform: translateY(calc(-100% - 65px));
    -ms-transform: translateY(calc(-100% - 65px));
    transform: translateY(calc(-100% - 65px));
    opacity: 0;
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    visibility: hidden;
    pointer-events: none;
  }

  .header .nav-wrapper.open {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .header .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    padding-bottom: 70px;
    gap: 15px;
  }
  /* end of header mobile menu */
  .bg-arrow:before{
    display: none;
  }
  body {
    font-size: 14px;
    overflow-x: hidden;
  }
  .footer-logo svg {
    max-width: 300px;
  }
  .footer-logo img {
    max-width: 300px;
  }
  #customer-forms .section-title,
  #customer-forms .maintenance-message {
    color: #000;
  }
  .header .nav-wrapper{
    padding: 0 25px;
  }
  .has-tooltip .tooltip .tooltiptext{
    width: auto;
  }
  .has-tooltip .tooltip .tooltiptext::after{
    left: unset;
    right: 7px;
    margin-left: 10px;
  }

  .form-btn-group .g-recaptcha{
    transform: scale(0.90)!important;
  }
  .error-message.recaptcha-error{
    position: static;
  }
  .split-container {
    padding: 50px 20px;
  }

  .container {
    max-width: 100%;
  }
  .history-data tbody tr td{
    height: 75px;
  }
  .history-content {
    margin: 0 -20px;
    max-height: 750px;
  }

  .history-data {
    min-width: 300px;
  }
  .hidden-desktop {
    display: block;
  }
  .loader {
    left: 45%;
    top: 35%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .hero-banner {
    padding: 50px 0;
  }
  .hero-banner-inner {
    padding: 0 30px;
    margin: 0 30px;
    min-height: 530px;
  }

  .hero-banner-inner:after {
    height: 100%;
    -webkit-clip-path: polygon(
      15% 0%,
      100% 0,
      100% 85%,
      85% 100%,
      0 100%,
      0% 15%
    );
    clip-path: polygon(15% 0%, 100% 0, 100% 85%, 85% 100%, 0 100%, 0% 15%);
  }

  .hero-banner {
    position: relative;
  }

  /* .hero-banner::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 39px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/banner-arrows-right.svg);
    background-size: 100%;
    z-index: 0;
    bottom: 60px;
    right: 30px;
  } */

  .hero-banner .hero-banner-left {
    gap: 15px;
  }

  .hero-member-cards-sm {
    width: 100%;
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .hero-banner-left .hero-title {
    font-size: 35px;
    line-height: 1.1;
  }

  .brands-nav{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hero-brands.brands-nav {
    margin: 10px 0;
    gap: 10px 20px;
  }

  .usps .usps-cards {
    flex-direction: column;
    max-width: 100%;
  }
  .usps-cards .card{
    max-width: 100%;
  }

  .usps-cards .card .card__title {
    font-size: 16px;
  }

  /* .usps-cards .card:first-of-type .card__title {
    max-width: 19ch;
    margin: 0 auto 10px;
  } */

  /* .usps-cards .card:not(:first-of-type) .card__title {
    max-width: 11ch;
    margin: 0 auto 10px;
  } */

  /* #last-card {
    justify-self: center;
    grid-column-start: span 2;
  } */

  .usps-table {
    overflow: scroll;
  }

  .usps-table table {
    width: 480px;
  }
  .usps-table th img {
     max-height: 30px;
     width: auto;
  }
  
  .secondary-banner-section {
    overflow: hidden;
  }

  .secondary-banner-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    margin: 40px 20px;
  }

  .secondary-banner-right {
    margin-top: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .secondary-banner-inner:before {
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(
      15% 0%,
      100% 0,
      100% 85%,
      85% 100%,
      0 100%,
      0% 15%
    );
    clip-path: polygon(15% 0%, 100% 0, 100% 85%, 85% 100%, 0 100%, 0% 15%);
    content: "";
    position: absolute;
    z-index: -1; 
    opacity: 0.7;
    background-image: unset;
    background: #48DDB9;
    background: linear-gradient(180deg, rgba(72, 221, 185, 1) 0%, rgba(39, 119, 100, 1) 100%);
  }

  .secondary-banner-inner:after{
    background-image: unset;
  }
  .loyalty-points-section {
    padding-top: 60px;
    
  }
  .loyalty-points-section .loyalty-points-header {
    margin-bottom: 65px;
  }

  .loyalty-points-section .loyalty-points-cards {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .loyalty-points-section .card__header .card__points-title {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .loyalty-points-section .card__points-title:before {
    background-size: 100%;
    width: 110px;
  }

  /* form-section */
  .customer-form-section {
    background-color: var(--clr-accent-pink);
    padding: 50px 0;
  }

  .customer-form-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .registration-wrapper,
  .login-wrapper {
    width: 100%;
  }

  .login .form-subtitle {
    line-height: 20px;
    font-weight: 500;
  }

  .customer-form-wrapper .login,
  .customer-form-wrapper .registration {
    width: 100%;
    padding: 0 20px;
    min-height: unset;
  }

  .form-inner form {
    display: -ms-grid;
    display: grid;
    gap: 20px;
    grid-gap: 20px;
  }
  #customer-form .form-btn-group,
  .login .form-inner .form-btn-group{
    flex-direction: column;
    gap: 10px;
  }

  /* end of form section */

  /* galleryCSS mobile */
  .gallery-section {
    padding: 50px 0 50px 15px;
    margin: 0;
  }

  .gallery-wrap {
    /* height: 420px; */
    cursor: -webkit-grab;
    cursor: grab;
  }

  /* .gallery {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: hidden;
    overflow-x: scroll;
  } */

  .gallery-inner {
    /* position: absolute; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    /* top: 0;
    left: 0; */
    height: 100%;
    gap: 10px;
    overflow: auto;
    scroll-snap-type: y mandatory;
  }

  .gallery-card {
    position: relative;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px; */
  }

  .gallery-card__figure img {
    max-width: 200px;
    height: 160px;
    width: unset;
    /* overflow: visible; */
    -o-object-fit: none;
    object-fit: none;
    -o-object-position: center center;
    object-position: center center;
  }

  /* Hide scrollbar for Chrome, Safari and Opera */
  .gallery::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  .gallery {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  /* end of gallery */

  .faq-section {
    padding: 20px 15px 40px;
    max-width: 100%;
  }

  .faq-section .faq-group {
    min-height: 480px;
  }

  .footer-wrapper {
    gap: 30px;
    padding: 50px 15px;
  }

  .footer ul.nav {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer .nav__item .nav__link {
    font-size: 14px;
    line-height: 18px;
  }

  .split-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .split-container .status {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    display: -ms-grid;
    display: grid;
  }

  .split-container .info-title {
    margin-bottom: 15px;
  }

  .split-container .sidebar {
    max-width: unset;
    width: 100%;
  }
  .secondary-banner-title {
    font-size: 22px;
    line-height: 1.2;
  }
  .gallery-header .gallery-title {  
    margin-right: 15px;
    color:#fff
  }
}

@media only screen and (max-width: 400px) {
  
  .form-btn-group .g-recaptcha{
    max-width: 240px;
  }

  .hero-banner-left .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .secondary-banner-section {
    min-height: unset;
  }
  
  span.member-points-big-inner {
    padding: 15px 10px 10px;
  }
}

@media only screen and (max-width: 360px) {
  .hero-brands .brands-group {
    gap: 10px;
  } 
  .form-inner form {
    gap: 10px;
    grid-gap: 10px;
  }

  .split-container .status-content {
    gap: 15px;
  }
}

.usp-table-outer{
  display: flex;
}
@media only screen and (min-width: 992px) {
  .usps-table.sec-table{
    display: none;
  }
  
}
@media only screen and (max-width: 992px) {
  .usps-table.primary-table thead th:first-child, .usps-table.primary-table tbody td:first-child{
    display: none;
  }
  .usps-table.primary-table{
    width: 60%;
  }
  .usps-table.sec-table{
    overflow: hidden;
    width: 40%;
  }
  .usps-table.sec-table table{
    width: 100%;
  }
}

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

  .history-data tbody tr td,
    .usps-table tbody tr td{
    height: 5rem;
  }
}

/* -------------------------------- 
start of Language Picker
-------------------------------- */
.language-picker button {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

.language-picker__button svg path{
  fill: #fff;
}
.language-picker__button[aria-expanded="true"] svg.li4-icon{
  transform: rotate(180deg);
}
/* buttons */
.li4-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: 3px 16px;
  border: none;
}

.li4-btn:focus-visible {
  outline: none;
}

.li4-btn:active {
  transform: translateY(2px);
}
.language-picker ul{
  list-style: none;
}
.language-picker {
  display: inline-block;
  position: relative;
}
.language-picker__form {
  display: none;
}
.language-picker__flag > span{
  font-size: 18px;
  font-weight: 700;
  margin-right: 10px;
}
.language-picker__dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  width: 100%;
  background-color: #f1f1f1;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.2s, opacity 0.2s;
}

.language-picker__dropdown--right {
  right: 0;
  left: auto;
}

.language-picker__dropdown--up {
  bottom: 100%;
  top: auto;
}

.language-picker__button[aria-expanded=true] + .language-picker__dropdown {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.2s;
}

.language-picker__item {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 18px;
  color: #000;
  transition: background 0.2s;
}
.language-picker__item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.language-picker__item:focus {
  outline: none;
}
.language-picker__item[aria-selected=true] {
  position: relative;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--clr-grey);
}

.language-picker__item[aria-selected=true]::after {
  content: "";
  height: 16px;
  width: 16px;
  background-color: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23ffffff' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23ffffff' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
  margin-left: auto;
}

.language-picker__flag {
  display: flex;
  align-items: center;
}
.language-picker--flags .language-picker__flag::before {
  display: inline-block;
  display: inline-flex;
}
.language-picker--flags .language-picker__button .li4-icon:first-of-type {
  display: none;
}
.language-picker--hide-label .language-picker__button .li4-icon {
  margin-left: 0;
}
.language-picker--hide-label .language-picker__button .li4-icon:first-of-type {
  display: none;
}
.language-picker--hide-label .language-picker__button span {
  display: none;
}

.language-picker--hide-label .language-picker__flag::before {
  display: inline-block;
  display: inline-flex;
}

/* utility classes */
.li4-sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  white-space: nowrap;
}
.nav__item.language-selector{
  display: none!important;
}
@media only screen and (max-width: 1024px) {

  .language-picker.js-language-picker{
    display:none!important;
  }
  .nav__item.language-selector{
    display: unset!important;
  }
  .language-selector{
    position: absolute;
    right: 35px;
    bottom: 20px;
    font-size: 18px;
    font-weight: 700;
  }
  .language-selector a{
    opacity: 0.4;
    padding: 10px;
  }
  .language-selector a.active-lang{
    opacity: 1;
  }
  .language-selector a:first-of-type{
    padding:10px;
  }
  .language-selector a:last-of-type{
    padding: 10px 0 10px 10px;
  }
}
@media only screen and (max-width: 992px) {
  .language-selector{
    position: absolute;
    right: 25px;
  }
}

/* -------------------------------- 
End of Language Picker
-------------------------------- */

.sections-cms {
  margin: 2rem 0;
  padding: 0.5rem 0;
}

.title-cms{
  text-align: center;
}

#main {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* -------------------------------- 
          Stores
-------------------------------- */
.stores_container {
  display: flex;
  gap: 25px;
  margin: 50px auto;
  justify-content: space-between;
}
.stores-col-2{
  width:45%;
}
.stores-col-1{
  width:55%;
}
.stores_hero{
  background-color:#0F1019;
  height:200px;
  display:flex;
  align-items:center;
}
.stores_hero .container{
  width:100%;
}

.stores_hero .container > *{
  color: #ffffff;
  width: 55%;
  line-height: 1;
}

.stores_hero .container > h4 {
  font-family: 'PF Regular';
  font-weight: normal;
  font-size: 16px;
}

.stores_topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
}
.stores_topbar .col-1 {
  flex: 0 0 60%;
}
.stores_topbar .col-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.stores_topbar .store_search {
  display:flex;
  border-bottom:1px solid #000000;
  align-items:center;
}
.store_search input{
  width: 100%;
  height:39px;
  border:0;
}
.store_search input:focus{
  outline: none;
}

.store_search input::-webkit-input-placeholder {
  font-style: italic;
}
.store_search input:-moz-placeholder {
  font-style: italic;  
}
.store_search input::-moz-placeholder {
  font-style: italic;  
}
.store_search input:-ms-input-placeholder {  
  font-style: italic; 
}
.stores-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 20px;
}
.store_top_content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
.store_bottom_content {
  display: flex;
  margin-bottom: 5px;
  align-items: flex-end;
}

.store {
  padding: 10px 0;
  border-bottom: 2px solid black;
  cursor:pointer;
}
.location {
  display: flex;
  gap: 5px;
}
.hours {
  display: flex;
  gap: 5px;
  justify-content: center;
}
.store h2 {
  font-size: 16px;
  font-weight: normal;
  font-family: 'PF Regular';
}
.store p{
  font-size: 14px;
}

.col.directions {
  margin-left: auto;
}

#map div {
  border: none !important;
}
.stores-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: scroll;
  max-height: 420px;
}

.stores-list::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}
.stores-list::-webkit-scrollbar-track {
  border-radius: 3px;
}
.stores-list::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 3px;
  width: 8px;
}
.stores-list::-webkit-scrollbar-thumb:hover {
  opacity: 0.66;
}

.store_top_content img {
  height: 100%;
  object-fit: cover;
}

.filter-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin: 20px 0;
}
.filter-buttons a.filter_button {
  padding: 5px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  justify-content: center;
}
.filter-buttons a.filter_button {
  border: 2px solid;
  border-image-source: linear-gradient(90deg, #E9ECD6 0%, #EDE1CC 20.34%, #E1AAC2 48.97%, #979EAB 65.53%, #688C82 100%);
  border-image-slice: 1;
}

.filter-buttons a.filter_button {
  border: 2px solid black; /* Default black border */
  transition: border-image-source 0.3s ease-in-out; /* Smooth transition */
}

.filter-buttons a.filter_button.enabled {
  border: 2px solid; /* Ensures the border is still visible on hover */
  border-image-source: linear-gradient(90deg, #E9ECD6 0%, #EDE1CC 20.34%, #E1AAC2 48.97%, #979EAB 65.53%, #688C82 100%);
  border-image-slice: 1;
}

#search_address {
  width: 24px;
  height: 24px;
  background: url('../img/arrow-right.png') no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
}

#search_address:hover {
  opacity: 0.7;
}

.stores_topbar > div h4 {
  margin-bottom: 15px;
  font-family: 'PF Regular';
  font-weight:400;
}

.stores-col-1 h1 {
  margin-top: 0;
  line-height: 1;
  font-size: 22px;
}

.gm-style-iw-d div div {
  text-align: center;
}

span.open{
  color:#06841B;
}

span.closed{
  color:#CC0606;
}
span.hours-text {
  font-size: 12px;
  font-family: 'PF Regular';
}
.hours-text span {
  font-family: 'PF Medium';
}

.location span:not(.location-icon){
  flex: 1;
}
#map .location span:not(.location-icon) {
  flex: unset;
}
#map .location {
  justify-content: center;
  align-items:center;
}
#map .hours {
  align-items: center;
}

.store_bottom_content .col:first-of-type {
  flex: 0 0 30%;
}
.location span{
    font-size: 12px;
    font-weight: normal;
    font-family: 'PF Regular';
}
h4#store-count {
  font-family: 'PF Regular';
  font-weight: 100;
  font-size: 16px;
}
#store-count span {
  font-family: 'PF Medium';
  font-weight: 700;
}
@media(max-width:992px){
  .stores_container {
    flex-direction: column;
}
.stores-col-1 {
  width: 100%;
}
.stores-col-2{
  width:100%;
}
.stores_topbar{
  flex-direction:column;
  align-items:unset;
  gap:30px;
}
.stores_topbar .col-1 {
  flex: 0 0 100%;
}
.store_bottom_content {
  flex-direction: column;
  align-items: flex-start;
}
.store_bottom_content .col{
  width:100%;
}
.store_bottom_content .hours{
  justify-content:flex-start;
}
.stores_container{
  gap: 50px;
}
.stores_hero .container > *{
  width:100%;
}
.stores_topbar .col-2{
  align-items:flex-start;
}
}
@media (max-width:1600px){
.filter-buttons {
  overflow-x: auto;
  padding: 10px 0 ;
}

.filter-buttons::-webkit-scrollbar {
  height: 4px; 
  width: 5px;
  background-color: #f5f5f5;
}
.filter-buttons::-webkit-scrollbar-track {
  border-radius: 3px;
}
.filter-buttons::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 3px;
  width: 2px;
}
.filter-buttons::-webkit-scrollbar-thumb:hover {
  opacity: 0.66;
}
.filter-buttons a.filter_button {
  min-width: 130px;
}
}

/* Viber unsubscribe page */

#viberUnsubscribe {
  margin-top: 50px;
  margin-bottom: 50px
}
#viberUnsubscribe .section-title {
  max-width: 330px;
  text-align: center;
  margin: 0.67em auto;
  font-weight: 400;
}

#viberUnsubscribe input.form-control {
  color: #000;
  outline: none;
  display: block;
  height: 65px;
  width: 100%;
  background-color: transparent;
  border: 1px solid #000;
  padding: 0 3px;
  font-size: 24px;
  text-align: center;
}

#viberUnsubscribe .form-input{
  max-width:330px;
  margin:0 auto;
  text-align: center;
}

#viberUnsubscribe .form-btn-group{
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin-top: 25px;
}

#viberUnsubscribe .form-btn-group .g-recaptcha{
  max-width: unset;
}

@media(min-width:768px){
  #viberUnsubscribe .form-btn-group .g-recaptcha{
    transform: unset!important;
  }
}

#viberUnsubscribe .form-input .btn {
  background-color: white;
  margin: 25px auto;
}

#viberUnsubscribe .gif-container img {
  margin: 0 auto;
  display: block;
}

#viberUnsubscribe .submit-message {
  text-align: center;
  margin-top: 25px;
}

.img-responsive{
  width: 100%;
  height: auto;
  max-width: 100%;
}
b{
  font-family: "PF Medium";
}

.loyalty-points-title{
  position: relative;
}

.loyalty-points-title:before{
  content: "";
  display: block;
  width: 500px;
  height: 130px;
  position: absolute;
  top: -100%;
  right: -100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('../img/arrows-to-right.png');
}

/* START OF PARTNERS PAGE STYLES */
.hero-banner-section{
  background-color: #1c1e2e;
  padding: 50px 0;
}
.hero-banner-partners{
  width:100%;
}
.hero-banner-partners-inner{
  position:relative;
}
.hero-banner-partners-btn{
  position: absolute;
  left: 5%;
  bottom: 50px;
}
.hero-banner-partners-btn .button__body{
  background-color: #fff;
}
@media (max-width: 992px){
  .usp-header{
    padding-bottom: 0;
  }
  #cashback-benefits{
    padding-top: 60px;
  }
  .hero-banner-partners-bg{
    padding-top: 140.05%;
  }
  .hero-banner-partners-btn{
    max-width: 125px;
    bottom: 5%;
  }
  .hero-banner-partners .hero-btn .btn{
    background-size: contain;
    max-width: 100%;
    gap: 5px;
  }
}

.partner-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  padding: 90px 20px 60px;
  line-height: 1.5;
}

.partner-title {
  font-size: 32px;
  font-family: "PF Black", sans-serif;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 15px;
}

.partner-subtitle {
  font-size: 24px;
  font-family: 'PF Regular', sans-serif;
  font-weight: normal;
  margin-bottom: 15px;
}

.partner-disclaimer {
  font-size: 20px;
  font-family: 'PF Regular', sans-serif;
  font-weight: normal;
  color: #666;
}

@media (max-width: 768px) {
  h3.partner-subtitle {
    line-height: 30px;
  }
  .partner-disclaimer {
    line-height: 24px;
  }
  .partner-container{
    padding: 70px 20px;
  }
}

/* END OF PARTNERS PAGE STYLES */