 * {
     margin: 0;
     box-sizing: border-box;
}
 @font-face {
     font-family: var(--font-main) !important;
     src: url('fonts/Apercu-Regular.woff2') format('woff2');
     font-style: normal;
     font-weight: 400;
     webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     font-display: swap;
}
 @font-face {
     font-family: var(--font-main) !important;
     src: url('fonts/Apercu-Bold.woff2') format('woff2');
     font-style: normal;
     font-weight: 700;
     webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     font-display: swap;
}
 :root {
     --container-pad: 32px;
     --logo-cap: 92px;
}
 .visually-hidden {
     position: absolute !important;
     width: 1px;
     height: 1px;
     margin: -1px;
     padding: 0;
     overflow: hidden;
     clip: rect(0 0 0 0);
     white-space: nowrap;
     border: 0;
}
 body {
     min-height: 100vh;
     background: var(--color-body-bg);
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     font-family: var(--font-main) !important;
}

#main > section:first-of-type{
    padding-top:var(--space-global-to-h1);
}
.section-title{
    font-family:var(--font-main);
    font-weight:700;
    font-size: clamp(28px, 3vw, 31px);
    line-height:1.25;
    letter-spacing:-0.01em;
    color:var(--color-black);
    margin:18px 0 0;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
.section-header{
    margin:0 0 32px 0;
}

.section-header .section-description{
    margin:8px 0 0;
    font:400 16px/var(--lh-body,var(--line-height,1.6)) var(--font-main);
    color:var(--color-light-black);
}
 .content-section ol, .content-section ul {
     padding-left: 15px;
}
 nav .navbar .links i {
     color: var(--color-white) !important;
     margin-left: 15px;
     font-size: 1.125em;
}
.coupons-grid{
    display:flex;
    flex-wrap:wrap;
    gap:24px;
    padding:0;
    margin:var(--space-title-to-coupons) 0 0;
}
 .coupons-grid > *{
     flex:0 0 calc((100% - 3*24px)/4);
     max-width:calc((100% - 3*24px)/4);
     min-width:0;
}
 .coupon-card{
     transition: transform .15s ease;
     min-width: 0;
    /*cursor: pointer;
    */
}
 .coupon-card:hover {
     transform: translateY(-4px);
}
 .coupon-logo {
     position: absolute;
     bottom: 16px;
     left: 16px;
     width: 74px;
     height: 74px;
     background-color: var(--color-white) !important;
     border-radius:var(--radius-md);
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 8px;
     overflow: hidden;
     box-sizing: border-box;
}
 .coupon-content {
     padding: 20px 8px;
}
 .coupon-header {
     margin: 16px 14px 6px;
     font-weight: 700;
     font-size: clamp(14.5px, 1.05vw, 15.5px);
     line-height: 1.2;
     letter-spacing: 0.1px;
     color: #19446C;
}
 .coupon-header a{
     color: #19446C;
     text-decoration: none;
}
 .coupon-header a:hover{
     text-decoration:underline;
    color:#1A1A1A;
}
 .coupon-title{
    text-decoration: none;
}
 .coupon-title:hover{
    text-decoration:none;
     color:#1A1A1A;
}
 .coupon-card h3 {
     margin: 0 14px 18px;
     font-weight: 700;
     font-size: clamp(15.5px, 1.35vw, 18px);
     line-height: 1.33;
     color: #1A1A1A;
     Max-width: 62ch;
     overflow-wrap: anywhere;
     word-wrap: break-word;
}
 @media (prefers-reduced-motion: reduce) {
     .faq-question .faq-icon {
         transition: none;
    }
}
 @media (min-width:1400px) {
     .faq-content {
         grid-template-columns: 500px 1fr;
    }
}
 @media (max-width: 1200px) {
     .coupon-card {
         flex-basis: calc((100% - 2*28px)/3);
         max-width: calc((100% - 2*28px)/3);
    }
     .categories-grid>* {
         flex: 1 1 calc(25% - 24px);
        /* 4 columns */
         max-width: calc(25% - 24px);
    }
     ._border:nth-child(2) {
         margin-left: 0px !important;
    }
     .work-wrap .text {
         width: 65% !important;
    }
     .work-wrap .img {
         width: 35% !important;
    }
}
 @media (max-width: 1024px) {
     .coupons-grid>* {
         flex: 1 1 calc(33.333% - 21.33px);
        /* 3 columns */
         max-width: calc(33.333% - 21.33px);
    }
}
 @media (max-width:900px) {
     .coupons-grid {
         gap: 28px 20px;
    }
    /* row 28, col 20 */
     .coupon-card {
         flex-basis: calc((100% - 1*20px)/2);
         max-width: calc((100% - 1*20px)/2);
    }
     .coupon-logo {
         left: 18px;
         bottom: 18px;
    }
}
@media (max-width: 768px) {
    .coupon-logo img, .coupon-logo svg{
        width:clamp(40px,7vw,58px);
        height:auto;
    }
    .store-logo{
        width:clamp(48px,8vw,88px);
        height:auto;
    }
    .coupon-image{
        width:100%;
        aspect-ratio:308/205;
        height:auto;
        border-radius:20px;
    }
    .footer-content{
        margin-bottom:30px!important;
    }
    section.ftco-section{
        padding-top:50px;
    }
    .section-description,
    .coupon-offer{
        font-size:clamp(16px,2vw,24px);
        line-height:22px;
    }
    .store-discount{
        font-size:clamp(16px,2vw,24px);
    }
    .section-header{
        padding:20px 0 20px 0!important;
    }
}
 @media (max-width:600px) {
     :root {
         --logo-cap: 84px;
    }
     .coupons-grid {
         gap: 22px 16px;
    }
     .coupon-card {
         flex-basis: 100%;
         max-width: 100%;
    }
}
 .coupon-image{
    position:relative;
    height:clamp(170px,13.5vw,205px);
    overflow:hidden;
    border-radius:var(--radius-md);
    box-shadow:0 0 0 1px var(--stroke);
}

.coupon-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
 .coupon-logo {
     position: absolute;
     left: 18px;
     bottom: 18px;
     width: 68px;
     height: 68px;
     border-radius: 50%;
     background: #FFFFFF;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1;
     box-shadow:0 0 0 1px var(--stroke);
}
 .coupon-logo img {
     width: 50px;
     height: 50px;
     object-fit: contain;
     display: block;
}
 @media (max-width: 520px) {
     section.ftco-section {
         padding-top: 15px;
    }
     section {
         padding: 18px 0px;
    }
     .img.order-md-last {
         border-radius: 36px !important;
    }
     .section-header {
         margin-bottom: 0px !important;
    }
     .coupon-card:last-of-type .coupon-content {
         padding-bottom: 0px;
    }
 
}

.coupon-pop.final-600{font:400 16px/26px "Apercu Pro","Apercu",system-ui,-apple-system,sans-serif;color:#202124}
.coupon-pop.final-600 *{box-sizing:border-box}

:root{
  --blue:#286CAC;
  --navy:#19446C;
  --line-logo:#F0F0F0;
  --line-code:#EDEDED;
  --muted:#6B7280;
  --card:#F9F9F9;
  --overlay:rgba(12,20,38,.45);
  --radius:36px;
  --w:600px;
  --red:#D92C3A;
  --green:#1F8F55;
}

.cp-toggle{display:none}

.cp-ov{
  position:fixed;
  inset:0;
  background:var(--overlay);
  backdrop-filter:blur(10px);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:1000;
}
.cp-toggle:checked~.cp-ov{opacity:1;pointer-events:auto}

.cp-wrap{
  position:fixed;
  inset:0;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:9vh;
  opacity:0;
  transform:translateY(-10px);
  transition:opacity .18s ease,transform .18s ease;
  z-index:1001;
}
.cp-toggle:checked~.cp-wrap{opacity:1;transform:none}

.cp-card{
  width:100%;
  background:var(--card);
  border:1px solid var(--line-logo);
  border-radius:var(--radius-lg);
  overflow:hidden;
  position:relative;
  min-height:540px;
  max-height:calc(100vh - 12vh);
  box-shadow:0 24px 60px rgba(0,0,0,.14),0 0 0 1px rgba(0,0,0,.05);
}
.cp-in{padding:40px 36px 26px}

.cp-x{
  position:absolute;
  top:18px;
  right:18px;
  width:44px;
  height:44px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  color:#334155;
  background:transparent;
  cursor:pointer;
}
.cp-x:hover{background:#F1F5F9}
.cp-x svg{width:22px;height:22px}

.cp-logoWrap{display:flex;justify-content:center}
.cp-logo{
  box-shadow:0 0 0 1px rgba(0,0,0,.05);
  width:104px;
  height:104px;
  border-radius:50%;
  border:1px solid var(--line-logo);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.cp-logo img{
  width:72%;
  height:72%;
  object-fit:contain;
}
div#coupon-modal-body {border: none !important;  outline: none;}
@media(max-width:600px){
  .cp-logo{width:96px;height:96px}
  #coupon-modal-body{padding:0px!important; width: 95% !important;}  
  .cp-in {
    padding: 40px 20px 26px;
}
}

.cp-title{
  margin:24px 0 14px;
  text-align:center;
  font:700 21px/1.5 "Apercu Pro","Apercu";
  color:#1a1a1a;
}

.cp-row{
  margin:40px auto 20px;
  max-width:450px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  background:#fff;
  border:1px solid var(--line-code);
  border-radius:999px;
  box-shadow:0 0 0 1px rgba(0,0,0,.05);
}
.cp-code{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  font:700 19px/1 "Apercu Pro","Apercu";
  color:var(--navy);
}

.ico{
  width:19px;
  height:19px;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
}
.ico-copy{stroke:var(--navy)}

.cp-copy{
  margin-left:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 25px;
  border:2px solid var(--line-logo);
  border-radius:999px;
  background:var(--blue);
  color:#fff!important;
  font:700 14px/1 "Apercu Pro","Apercu";
  text-decoration:none;
  cursor:pointer;
}
.cp-copy:hover{background:#214E86}
.cp-copy:visited,
.cp-copy:focus,
.cp-copy:active{color:#fff!important}

.cp-note{
  margin:12px 0 0;
  text-align:center;
  font:400 15px/1.6 "Apercu Pro","Apercu";
  color:var(--muted);
}
.cp-note a{
  color:var(--navy);
  font-weight:700;
  text-decoration:none;
}
.cp-note a:hover{text-decoration:underline}

.cp-foot{
  margin:40px auto 12px;
  max-width:560px;
  text-align:center;
}
.cp-q{
  font:700 16px/1 "Apercu Pro","Apercu";
  color:#1a1a1a;
  margin-bottom:16px;
}
.cp-vote{
  display:flex;
  gap:14px;
  justify-content:center;
}
.cp-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:43px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid var(--line-logo);
  background:#fff;
  color:#1a1a1a;
  font:700 14px/1 "Apercu Pro","Apercu";
  cursor:pointer;
  box-shadow:0 0 0 1px rgba(0,0,0,.05);
}
.cp-pill:hover{background:#F1F5F9}
.thumb-down{stroke:var(--red)}
.thumb-up{stroke:var(--green)}
.cp-thumbup,
.cp-thumbdown{
  width:19px;
  height:19px;
  color:#1a1a1a;
}

@media(prefers-reduced-motion:reduce){
  .cp-ov,
  .cp-wrap{transition:none!important}
}

.deal-pop.final-600{
  font:400 16px/26px "Apercu Pro","Apercu",system-ui,-apple-system,sans-serif;
  color:#202124;
}
.deal-pop.final-600 *{box-sizing:border-box}

:root{
  --blue:#286CAC;
  --navy:#19446C;
  --line-logo:#F0F0F0;
  --card:#F9F9F9;
  --overlay:rgba(12,20,38,.45);
  --radius:36px;
  --w:600px;
  --muted:#202124;
  --red:#D92C3A;
  --green:#1F8F55;
}

.dp-toggle{display:none}

.dp-ov{
  position:fixed;
  inset:0;
  background:var(--overlay);
  backdrop-filter:blur(10px);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:1000;
}
.dp-toggle:checked~.dp-ov{opacity:1;pointer-events:auto}

.dp-wrap{
  position:fixed;
  inset:0;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:9vh;
  opacity:0;
  transform:translateY(-10px);
  transition:opacity .18s ease,transform .18s ease;
  z-index:1001;
}
.dp-toggle:checked~.dp-wrap{opacity:1;transform:none}

.dp-card{
  width:min(var(--w),92vw);
  background:var(--card);
  border:1px solid var(--line-logo);
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
  min-height:540px;
  max-height:calc(100vh - 12vh);
}
.dp-in{padding:40px 36px 26px}

.dp-x{
  position:absolute;
  top:18px;
  right:18px;
  width:44px;
  height:44px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#334155;
  cursor:pointer;
}
.dp-x:hover{background:#F1F5F9}
.dp-x svg{width:22px;height:22px}

.dp-logoWrap{display:flex;justify-content:center}
.dp-logo{
  width:104px;
  height:104px;
  border-radius:50%;
  border:1px solid var(--line-logo);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.dp-logo img{
  width:72%;
  height:72%;
  object-fit:contain;
}
@media(max-width:600px){
  .dp-logo{width:96px;height:96px}
}

.dp-title{
  margin:24px 0 14px;
  text-align:center;
  font:700 21px/1.5 "Apercu Pro","Apercu";
  color:#0f172a;
}

.dp-ctaWrap{
  display:flex;
  justify-content:center;
  margin:40px 0 12px;
}
.dp-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:260px;
  height:56px;
  padding:0 32px;
  border-radius:999px;
  background:var(--blue);
  color:#fff!important;
  font:700 16px/1 "Apercu Pro","Apercu";
  text-decoration:none;
  cursor:pointer;
  border:2px solid var(--line-logo);
}
.dp-cta:hover{background:#214E86}

.dp-note{
  margin:12px 0 0;
  text-align:center;
  font:600 15px/1.6 "Apercu Pro","Apercu";
  color:var(--muted);
}
.dp-note a{
  color:var(--navy);
  font-weight:700;
  text-decoration:none;
}
.dp-note a:hover{text-decoration:underline}

.dp-foot{
  margin:40px auto 12px;
  max-width:560px;
  text-align:center;
}
.dp-q{
  font:700 16px/1 "Apercu Pro","Apercu";
  color:#0f172a;
  margin-bottom:16px;
}
.dp-vote{
  display:flex;
  gap:14px;
  justify-content:center;
}
.dp-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid var(--line-logo);
  background:#fff;
  color:#0f172a;
  font:700 14px/1 "Apercu Pro","Apercu";
  cursor:pointer;
}
.dp-pill:hover{background:#F1F5F9}
.dp-pill svg{
  width:18px;
  height:18px;
  stroke-width:2;
  fill:none;
}
.thumb-down{stroke:#D92C3A}
.thumb-up{stroke:#1F8F55}

.show-more-container{
    text-align:center;
    margin-top:32px;
}

.show-more-btn,
.show-less-btn{
    width:148px;
    height:51px;
    color:#19446C;
    background:#f7f7f9;
    border:1px solid #19446C;
    padding:10px 18px;
    font-size:15px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    line-height:1;
    border-radius:999px;
    cursor:pointer;
    transition:background-color .15s ease,border-color .15s ease,color .15s ease;
    margin:6px;
}

.show-more-btn:hover,
.show-less-btn:hover{
    background:#f4f4f4;
    color:#19446C;
    border-color:#19446C;
}

.show-more-btn:active,
.show-less-btn:active{
    background:#EDEDED;
    color:#19446C;
    border-color:#19446C;
}

.show-more-btn:focus-visible,
.show-less-btn:focus-visible{
    outline:0;
    box-shadow:0 0 0 2px #FFF,0 0 0 3px rgba(0,0,0,.18);
}

.ci-hidden {
    display: none;
}

.show-more-container {
    text-align: center;
    margin-top: 32px;
}

.show-more-btn {
    width: 148px;
    height: 51px;
    color: #19446C;
    background: #f7f7f9;
    border: 1px solid #19446C;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    cursor: pointer;
}

.show-more-btn:hover {
    background: #19446C;
    color: #ffffff;
}

@media (max-width:768px){
  #main > section:first-of-type{
    padding-top:0;
  }
}
