<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.accordion-container { display: flex; flex-direction: column; gap: 8px; }

.accordion-container .title-container { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; position: relative; }

.accordion-container .title-container h5 { font-size: 20px; }
.accordion-container .title-container i { color: var(--medium-grey); font-size: 24px; cursor: pointer; z-index: 1000; }
.accordion-container .title-container .more { transition: all .5s; z-index: 500; }

.accordion-container .content { color: var(--secondary-grey); font-size: 16px; line-height: 1.6; transition: all .7s; max-height: 0; overflow: hidden; }
.accordion-container .content.opened { max-height: 700px; }

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

    .accordion-container .title-container h5 { font-size: 18px; }
}
.button { padding: 12px 26px; border-radius: 40px; cursor: pointer; display: flex; align-items: center; justify-content: center; width: fit-content; position: relative; }

.button a { text-decoration: none; font-size: 16px; font-weight: 500; }

.button.light { box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.10); color: var(--white); }
a.button.light { color: var(--white); }

.button.dark { box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05); color: var(--primary-grey); } 
a.button.dark { color: var(--primary-grey); }

.button.dark.filled { background: var(--white); border: 1px solid var(--white); box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.10); transition: all 0.3s; }
.button.dark.filled:hover { background: #EBEBEB; border: 1px solid #EBEBEB; }

.button.light.filled { background: var(--primary-grey); border: 1px solid var(--primary-grey); transition: all 0.3s; }
.button.light.filled:hover { background: var(--secondary-grey); border: 1px solid var(--secondary-grey); }

.button.dark.contained { background: var(--white); border: 1px solid var(--white); }

.button.dark.transparent { background: transparent; border: 1px solid var(--primary-grey); transition: all 0.3s; }
.button.dark.transparent:hover { background: #585a59; border: 1px solid #585a59; color: var(--white); }
a.button.dark.transparent:hover { color: var(--white); }

.button.light.transparent { background: transparent; border: 1px solid var(--white); transition: all 0.3s; }
.button.light.transparent:hover { background: #585a59; border: 1px solid #585a59; }
.contact-us { background: var(--white); width: 100%; padding: 150px 0 0; }
.contact-us .content { display: flex; flex-direction: column; align-items: center; }

.contact-us h1 { font-size: 40px; }
.contact-us h4 { font-size: 20px; margin-bottom: 16px; color: var(--secondary-grey); }
.contact-us a { margin-top: 8px; color: var(--secondary-grey); position: relative; }

.contact-us .texts { max-width: 800px; text-align: center; }
.contact-us .texts p { margin: 16px 0 48px; }

.contact-us .contact { display: flex; justify-content: space-between; width: 100%; }
.contact-us .contact form { width: 100%; padding: 0 32px 32px; margin-right: 48px; }
.contact-us .contact form label.checkbox { width: 70px; }

.contact-us .contact .info { max-width: 330px; }
.contact-us .contact .info ul li.address h4,
.contact-us .contact .info ul li.social-media h4 { margin-top: 32px; }
.contact-us .contact .info ul li p { font-size: 16px; }
.contact-us .contact .info ul li a figure { width: 24px; height: 24px; }
.contact-us .contact .info ul li a figure img { width: 100%; height: 100%; }

.contact-us .contact .info ul li.address ul li.location-address { display: flex; flex-direction: column; gap: 16px; }
.contact-us .contact .info ul li.address ul li.location-links { display: flex; flex-direction: column; }
.contact-us .contact .info ul li.address ul li.location-links a { display: flex; align-items: center; gap: 8px; max-width: fit-content; }

.contact-us .contact .info ul li.social-media ul { width: 100%; max-width: 180px; display: flex; justify-content: space-between; align-items: center; margin-left: -0.2em; }
.contact-us .contact .info ul li.social-media a { transition: all 0.3s; }
.contact-us .contact .info ul li.social-media a:hover { transform: scale(1.4); }
.contact-us .contact .info ul li.social-media i { font-size: 24px; color: var(--primary-grey); }

.contact-us .contact .info ul .get-in-touch a::before,
.contact-us .contact .info ul .address a::before { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background-color: var(--primary-grey); color: var(--primary-grey); transition: all 0.3s; }
.contact-us .contact .info ul .get-in-touch a:hover::before,
.contact-us .contact .info ul .address a:hover::before { width: 100%; }

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

    .contact-us .contact form { margin-right: 20px; }
}

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

    .contact-us .contact { flex-direction: column; }
    .contact-us .contact form { margin-right: 0; padding: 0 0 32px; margin-bottom: 30px; }
    .contact-us .contact form button { margin: 0 auto; }
    .contact-us .contact .info { max-width: 100%; display: flex; justify-content: center; text-align: center; } 
    .contact-us .contact .info ul li.address ul li.location-links { align-items: center; }
    .contact-us .contact .info ul li.social-media { display: flex; flex-direction: column; align-items: center; }
}

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

    .contact-us .contact form .form-row { flex-direction: column; gap: 0; }
}

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

    .contact-us .contact form button { width: 100%; }
}
.faq.container,
.faq-pages.container { background: var(--white); width: 100%; padding: 100px 0 50px; }
.faq.container .content,
.faq-pages.container .content { display: flex; flex-direction: column; align-items: center; }

.faq.container .faq-title { display: flex; flex-direction: column; gap: 40px; text-align: center; }
.faq.container .faq-title h4 { font-size: 30px; font-weight: 600; letter-spacing: 1px; }
.faq.container .faq-title p { font-size: 20px; }

.faq-pages.container .faq-title-pages { display: flex; flex-direction: column; gap: 40px; text-align: center; position: relative; padding: 100px 0; width: 100%; }
.faq-pages.container .faq-title-pages h1 { font-size: 40px; font-weight: 600; letter-spacing: 1px; z-index: 1000; }
.faq-pages.container .faq-title-pages p { font-size: 16px; z-index: 1000; }

.faq-pages.container .faq-title-pages figure.background-image { position: absolute; top: 55%; left: 50%; transform: translate(-45%, -55%); max-width: 700px; width: 80%; }
.faq-pages.container .faq-title-pages figure.background-image img { width: 100%; height: 90%; } 

.accordions-container { display: flex; flex-direction: column; width: 100%; gap: 50px; max-width: 700px; padding: 0 10px; margin: 70px 0; }
.accordions-container p { max-width: 93%; margin: 0; }

.faq.container .card,
.faq-pages.container .card { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 32px; border-radius: 10px; background-color: var(--bg-light-grey); }
.faq.container .card .right-side,
.faq-pages.container .card .right-side { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; color: var(--secondary-grey); font-size: 16px; font-weight: 400; }
.faq.container .card .right-side h5,
.faq-pages.container .card .right-side h5 { position: relative; font-size: 20px; color: var(--secondary-grey); }
.faq.container .card .right-side p,
.faq-pages.container .card .right-side p { font-size: 16px; }
.faq.container .card .right-side i,
.faq-pages.container .card .right-side i { position: absolute; right: -50px; top: -25px; color: #FFDE59; font-size: 35px; }
.faq.container .card a.button,
.faq-pages.container .card a.button { width: auto; }

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

    .accordions-container p { padding: 0; }
}

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

    .faq-pages.container .faq-title-pages h1 { font-size: 30px; }
    .faq-pages.container .faq-title-pages figure.background-image { transform: translate(-45%, -75%); }
    .faq.container .card,
    .faq-pages.container .card { flex-direction: column; gap: 32px; }
    .faq.container .card .right-side,
    .faq-pages.container .card .right-side { align-items: center; text-align: center; }
}

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

    .faq-pages.container .faq-title-pages figure.background-image { transform: translate(-45%, -95%); }
    .faq.container .card .right-side p,
    .faq-pages.container .card .right-side p { max-width: 34ch; }
}
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&amp;display=swap');


@font-face {
  font-family: 'cardgo';
  src: url(/assets/cardgo-ce096410ec755fdec2f8558ac6bc523229b90b4f1b93a9ee28316ec09b26de5d.eot?23071134);
  src: url(/assets/cardgo-ce096410ec755fdec2f8558ac6bc523229b90b4f1b93a9ee28316ec09b26de5d.eot?23071134#iefix) format('embedded-opentype'),
       url(/assets/cardgo-54c07ee3715ad06bd9d862f7fe3507f6b7354ff82205e3b22644c6f6961ea10c.woff2?23071134) format('woff2'),
       url(/assets/cardgo-8dc1ae98ab147c069d48530dfdc18782afa6cb03640c6bb69365363b9946dd55.woff?23071134) format('woff'),
       url(/assets/cardgo-a733f27c422f07255cfed7dfc010d0bd6667800088a40efc41c609ec8c306122.ttf?23071134) format('truetype'),
       url(/assets/cardgo-10559f8380a38410caeed74cbcc0643b2a8dce0fbe53803992936bd2c028e45a.svg?23071134#cardgo) format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "cardgo";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before { content: '\e800'; } 
.icon-instagram:before { content: '\e801'; } 
.icon-less:before { content: '\e802'; } 
.icon-linkedin:before { content: '\e803'; } 
.icon-menu:before { content: '\e804'; } 
.icon-more:before { content: '\e805'; } 
.icon-shopping-cart:before { content: '\e806'; }
.icon-stars-fill:before { content: '\e807'; } 
.icon-star-stroke:before { content: '\e808'; } 
.icon-twitter:before { content: '\e809'; } 
.icon-help-circle:before { content: '\e814'; } 
.icon-tag:before { content: '\e815'; }
.icon-shopping-bag:before { content: '\e816'; }
.footer { background: var(--bg-light-grey); width: 100%; padding: 30px 0; margin-top: 70px; }
.footer .content { display: flex; flex-direction: column; }

.footer .footer-lists { display: flex; justify-content: space-between; flex-wrap: wrap; }
.footer .footer-lists .footer-list { width: 100%; max-width: 200px; }
.footer .footer-lists .footer-list h6 { margin: 20px 0; }
.footer .footer-lists .footer-list ul {}
.footer .footer-lists .footer-list ul li { padding: 10px 0; }
.footer .footer-lists .footer-list ul li a { font-weight: 300; color: var(--secondary-grey); transition: all 0.3s; }
.footer .footer-lists .footer-list ul li a:hover { font-weight: 500; }

.footer .contact { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-top: 64px; }
.footer .contact .logo { background: url(/card-go-logo-black.png) no-repeat center / contain; cursor: pointer; margin-right: 48px; width: 130px; height: 50px; }
.footer .contact span { color: var(--secondary-grey); text-align: center; font-size: 16px; font-weight: 300; }
.footer .contact .social-media { width: 100%; max-width: 180px; display: flex; justify-content: space-between; align-items: center; }
.footer .contact .social-media a { transition: all 0.3s; }
.footer .contact .social-media a:hover { transform: scale(1.4); }
.footer .contact .social-media i { font-size: 24px; color: var(--black); }
.footer .contact .social-media img { font-size: 24px; color: var(--black);padding: 2px; }

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

    .footer .footer-lists .footer-list { max-width: 150px; }
}

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

    .footer .footer-lists .footer-list { max-width: 40%; }
    .footer .contact { flex-direction: column; gap: 16px; margin-top: 24px; }
    .footer .contact .social-media { max-width: 300px; }
}
/*Webkit Scrollbars*/
::-webkit-scrollbar { width: 10px; height: 15px; }  
::-webkit-scrollbar-track { background-color: var(--white); border-left: none; }
::-webkit-scrollbar-thumb { background-color: rgba(208, 213, 221, 1);  border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { border: 2px solid #777CFF; }

/* Generics */

h1 { font-weight: 700; color: var(--primary-grey); letter-spacing: -1px; }
h2 { font-weight: 600; color: var(--primary-grey); line-height: 1.2; }
h3 { font-weight: 700; color: var(--primary-grey); }
h4 { font-weight: 500; color: var(--primary-grey); line-height: 1.5; }
h5 { font-weight: 500; color: var(--primary-grey); line-height: 1.5; }
h6 { font-weight: 600; color: var(--secondary-grey); }

p { font-weight: 300; color: var(--secondary-grey); line-height: 1.4;  }

.content { max-width: 1240px; width: 100%; margin: 0 auto; }

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

    .content { padding: 0 24px; }
}

/* Form */
form .form-group { display: flex; flex-direction: column; width: 100%; }
form .form-row { display: flex; justify-content: space-between; gap: 24px; }

form label { color: var(--medium-grey); font-size: 14px; letter-spacing: 0.5px; margin: 24px 0 8px; } 

form label.checkbox { position: relative; cursor: pointer; display: flex; align-items: center; margin: 24px 0; }
form label.checkbox input[type="checkbox"] { opacity: 0; position: absolute; left: 0; top: 0; z-index: 1; cursor: pointer; width: 15px; height: 15px; }
form label.checkbox span { position: relative; background: var(--white); border: 2px solid var(--primary-grey); display: inline-block; width: 20px; height: 20px; border-radius: 4px; }
form label.checkbox input[type="checkbox"]:checked + span:before { content:''; display: block; position: absolute; left: 0; top: 0; right: 0; bottom: 0; margin: auto; width: 12px; height: 12px; background: var(--primary-grey); }
form label.checkbox p { display: inline-block; padding-left: 12px; font-weight: 500; line-height: 0; }

    /* Tick */
    form label.checkbox input[type="checkbox"] + span::after { content: "\2713"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 11px; color: var(--white); opacity: 0; transition: all 0.3s; }
    form label.checkbox input[type="checkbox"]:checked + span::after { opacity: 1; }

form input, 
form select,
form textarea { background: var(--white); border-radius: 10px; border: 1px solid var(--medium-grey); height: 46px; color: var(--medium-grey); padding: 8px 16px; font-size: 16px; }
form input:focus,
form select:focus,
form textarea:focus { border-color: var(--secondary-grey); outline: none; border-width: 2px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); }

form textarea { height: 150px; resize: none; }
  
/* Search Bar */
.search-bar { display: flex; align-items: center; border: 1px solid var(--light-grey); border-radius: 25px; padding: 5px; background-color: var(--bg-light-grey); height: 48px; max-width: 375px; width: 100%; }
.search-bar:hover { border-color: var(--medium-grey); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) }
  
.search-bar figure.search-icon { color: var(--medium-grey); width: 24px; height: 24px; margin: 0 16px 0 24px; }
.search-bar figure.search-icon img { width: 100%; height: 100%; }

#searchInput { border: none; padding: 5px; width: 70%; line-height: 2; background-color: var(--bg-light-grey); font-size: 16px; color: var(--secondary-grey); }
#searchInput::placeholder { color: var(--medium-grey); font-weight: 300; } 
#searchInput:focus { outline: none; } 
.get-started.container { width: 100%; padding: 60px 24px; background-color: var(--white); }
.get-started.container .content { position: relative; background: var(--bg-main-dark); border-radius: 16px; padding: 80px 40px; }

.get-started.container .texts { display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center; position: relative; z-index: 500; }
.get-started.container .texts h4 { font-size: 30px; color: var(--white); }
.get-started.container .texts p { font-size: 20px; font-weight: 400; letter-spacing: 1px; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.get-started.container figure.background-image { position: absolute; top: 50%; left: 50%; transform: translate(-45%, -55%); max-width: 700px; width: 80%; }
.get-started.container figure.background-image img { width: 100%; height: 100%; }

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

    .get-started.container { padding: 40px 24px; }
    .get-started.container .content figure.background-image { transform: translate(-45%, -75%); }
    .get-started.container .texts { gap: 10px; }
    .get-started.container .texts h4 { font-size: 24px; }
    .get-started.container .texts p { font-size: 18px; }
}

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

    .get-started.container { padding: 24px 16px; }
    .get-started.container .content { padding: 42px 32px; }
    .get-started.container figure.background-image { transform: translate(-45%, -95%); }
    .get-started.container .texts h4 { font-size: 20px; max-width: 18ch; }
    .get-started.container .texts p { font-size: 16px; }
}
.gift-cards.container { background: var(--white); height: 100%; width: 100%; padding: 260px 0 100px ; }
.gift-cards.container .content { display: flex; flex-direction: column; justify-content: center; align-items: center; }

.gift-cards.container h3 { font-size: 40px; text-align: center; line-height: 1.6; }
.gift-cards.container a.button { margin-top: 30px; } 

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

    .gift-cards.container { padding: 180px 0 40px; }
    .gift-cards.container h3 { font-size: 30px; line-height: 1.4; }
}

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

    .gift-cards.container { padding: 120px 0 40px; }
    .gift-cards.container a.button { width: 100%; }
}
.top-header,
.top-header-logged { position: fixed; top: 0; left: 0; right: 0; z-index: 3000; background-color: var(--bg-main-dark); transition: background-color 0.4s ease-in-out; width: 100%; height: 90px; }
.top-header-logged { background-color: var(--white); box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.10); }
.top-header .content,
.top-header-logged .content { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.top-header .left-side,
.top-header-logged .left-side { display: flex; align-items: center; }
.top-header .left-side .logo,
.top-header-logged .left-side .logo { background: url(/card-go-logo.svg) no-repeat center / contain; cursor: pointer; margin-right: 48px; width: 130px; height: 50px; }
.top-header-logged .left-side .logo { background: url(/card-go-logo-black.png) no-repeat center / contain; transition: all 0.4s ease-in-out; }

.top-header .left-side .options ul,
.top-header-logged .left-side .options ul { display: flex; align-items: center; gap: 32px; }

.top-header .left-side .options .link a,
.top-header-logged .left-side .options .link a { color:var(--white); font-size: 18px; font-weight: 500; transition: all 0.3s linear; }
.top-header .left-side .options .link a:hover{ color: var(--light-grey); }
.top-header-logged .left-side .options .link a { color:var(--primary-grey); }
.top-header-logged .left-side .options .link a:hover{ color:#7d7b7b; }

.top-header .right-side,
.top-header-logged .right-side { display: flex; align-items: center; gap: 15px; }
.top-header .right-side ul,
.top-header-logged .right-side ul { display: flex; align-items: center; gap: 15px; }

.top-header .right-side ul li.shopping-cart,
.top-header-logged .right-side ul li.shopping-cart { position: relative; }
.top-header .right-side ul li a.btn-shopping-cart,
.top-header-logged .right-side ul li a.btn-shopping-cart { color: var(--white); background: transparent; border: 1px solid var(--white); border-radius: 50%; transition: all 0.3s; width: 42px; height: 42px; display: flex; justify-content: center; align-items: center; }
.top-header-logged .right-side ul li a.btn-shopping-cart { color: var(--primary-grey); border: 1px solid var(--light-grey); width: 48px; height: 48px; }
.top-header .right-side ul li a.btn-shopping-cart:hover,
.top-header-logged .right-side ul li a.btn-shopping-cart:hover { background: #585a59; border: 1px solid #585a59; }
.top-header-logged .right-side ul li a.btn-shopping-cart:hover { color: var(--white); }

.top-header .right-side ul li .login-signup { display: flex; align-items: center; gap: 15px; }

.top-header-logged .right-side ul li a.user-profile figure { width: 48px; height: 48px; transition: all 0.3s; }
.top-header-logged .right-side ul li a.user-profile figure:hover { transform: scale(1.2); }
.top-header-logged .right-side ul li a.user-profile figure .user { width: 100%; height: 100%; }

/* Cart Dot - change display none for display: block to activate usage */
.top-header .right-side ul li .cart-dot,
.top-header-logged .right-side ul li .cart-dot { display: none; position: absolute; top: 0; right: 0; width: 12px; height: 12px; border-radius: 50%; background-color: var(--red-dot); }
.top-header-logged .right-side ul li .cart-dot { top: 3px; }

/* Scroll */
.top-header.scrolled,
.top-header-logged.scrolled { background-color: var(--bg-header-scrolled); }
.top-header-logged.scrolled .left-side .options .link a { color:var(--white); }
.top-header-logged.scrolled .left-side .options .link a:hover { color: var(--light-grey); }
.top-header-logged.scrolled .left-side .logo.scrolled { background-image: url(/card-go-logo.svg); }
.top-header-logged.scrolled .right-side ul li a.btn-shopping-cart { color: var(--white); }
.top-header-logged.scrolled .right-side a.menu .bar { background: var(--white); }

/* Mobile menu */
.top-header .right-side .menu,
.top-header-logged .right-side .menu { display: none; }

/* Overlay */
.overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 2000; }
.menu-open .overlay { display: block; }

.hidden-desktop { display: none; }

/*User Dropdown Menu*/
.top-header-logged .user-profile-wrap{ position: relative; }
.top-header-logged .user-dropdown{ background: #FFF; padding: 0; flex-direction: column; position: absolute; align-items: flex-start; top: 65px; right: 0; border-radius: 5px; box-shadow: 0 0 10px rgba(0,0,0,.3); display: none !important; }
.top-header-logged .user-dropdown.show{ display: flex !important; }
.top-header-logged .user-dropdown .item{ color: #000; display: block; padding: 10px 0; width: 100%; }
.top-header-logged .user-dropdown .name{ font-weight: bold; }
.top-header-logged .user-dropdown .head{ display: flex; flex-direction: column; align-items: flex-start; text-align: left; width: 100%; padding: 15px; border-bottom: 2px solid #cfcecd; }
.top-header-logged .user-dropdown .body{ display: flex; flex-direction: column; align-items: flex-start; text-align: left; width: 100%; padding: 15px; }
.top-header-logged .user-dropdown .body .item{ margin-bottom: 5px; }
.top-header-logged .user-dropdown .foot{ display: flex; flex-direction: column; align-items: flex-start; text-align: left; width: 100%; padding: 15px; border-top: 2px solid #cfcecd;  }

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

    .hidden-desktop { display: block; }

    .top-header .options,
    .top-header-logged .options { position: fixed; top: 0; right: 0; width: 250px; height: 100%; background: var(--white); padding: 32px 24px; transform: translateX(110%); transition: all 0.3s; } 
    .top-header.menu-open .options,
    .top-header-logged.menu-open .options { transform: translateX(0); z-index: 6000; }

    .top-header .left-side .options ul,
    .top-header-logged .left-side .options ul { flex-direction: column; align-items: flex-start; gap: 16px; }
    .top-header .left-side .options ul li,
    .top-header-logged .left-side .options ul li { width: 100%; }
    .top-header .left-side .options ul li.link,
    .top-header-logged .left-side .options ul li.link { padding: 10px; }
    .top-header .left-side .options ul li.link:hover,
    .top-header-logged .left-side .options ul li.link:hover { background: var(--bg-light-grey); }
    .top-header .left-side .options ul li.link a,
    .top-header-logged .left-side .options ul li.link a { color: var(--primary-grey); display: flex; align-items: center; gap: 8px; font-size: 16px; }
    .top-header .left-side .options ul li.link a:hover,
    .top-header-logged .left-side .options ul li.link a:hover { color: var(--primary-grey); } 
    .top-header .left-side .options ul li.line,
    .top-header-logged .left-side .options ul li.line { height: 1px; background-color: #EDEFEC; margin: 8px 0; }
    .top-header .left-side .options ul li a.btn,
    .top-header-logged .left-side .options ul li a.btn { margin-bottom: 8px; width: 100%; text-align: center; }

    .top-header .right-side ul { gap: 0; }
    .top-header .right-side ul li a.btn-shopping-cart { width: 40px; height: 40px; }
    .top-header .right-side ul li .login-signup { display: none; }

    .top-header .right-side a.menu,
    .top-header-logged .right-side a.menu { display: inline-block; padding: 10px; transition: all 0.3s; }
    .top-header .right-side a.menu:hover,
    .top-header-logged .right-side a.menu:hover { transform: scale(1.2); }
    .top-header .right-side a.menu .bar,
    .top-header-logged .right-side a.menu .bar { margin: 5px 0; width: 25px; height: 2px; background: var(--white); border-radius: 1.5px; transition: margin 0.2s, transform 0.2s; }
    .top-header-logged .right-side a.menu .bar { background: var(--primary-grey); }

    .top-header-logged.scrolled .left-side .options .link a { color:var(--primary-grey); }
    .top-header-logged.scrolled .left-side .options .link a:hover { color:var(--primary-grey); }
}

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

    .top-header .left-side .logo,
    .top-header-logged .left-side .logo { width: 110px; }
}
.informative.container { background: var(--bg-home-informative); display: flex; justify-content: center; padding: 64px 0; position: relative; overflow: hidden; }

.informative.container .content { display: flex; flex-direction: column; gap: 150px; background: rgba(255, 255, 255, 0.30); border-radius: 40px; align-items: center; z-index: 900; padding: 100px 0; margin: 0; }

.informative.container .content .card { display: flex; align-items: center; justify-content: space-evenly; width: 100%; z-index: 2000; }
.informative.container .content .card.inverted { flex-direction: row-reverse; }
.informative.container .content .card .text { display: flex; flex-direction: column; gap: 8px; max-width: 400px; }
.informative.container .content .card .text span { font-size: 14px; font-weight: 500; color: rgba(96, 94, 92, 1); letter-spacing: 1px; margin-bottom: 10px; }
.informative.container .content .card .text h3 { font-size: 40px; line-height: 1.2; }
.informative.container .content .card .text p { font-size: 16px; margin: 16px 0 40px; }
.informative.container .content .card .image { width: 30vw; max-width: 350px; height: auto; }

.informative.container figure.green-circle { position: absolute; top: -80px; right: -10px; }
.informative.container figure.green-circle img { width: 100%; height: 100%; }
.informative.container figure.blue-circle { position: absolute; bottom: -110px; left: 0; }
.informative.container figure.blue-circle img { width: 100%; height: 100%; }
.informative.container figure.blue-circle-bottom { z-index: 1000; display: none; }
.informative.container figure.blue-circle-bottom img { width: 100%; height: 100%; }

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

    .informative.container { padding: 64px 24px; }
    .informative.container .content { padding: 50px 24px; width: 100%; }
}

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

    .informative.container { padding: 64px 0; }
    .informative.container .content { background: transparent; gap: 50px; }

    .informative.container .content .card,
    .informative.container .content .card.inverted { flex-direction: column; width: 100%; }
    .informative.container .content .card .text { gap: 16px; align-items: center; text-align: center; width: 100%; }
    .informative.container .content .card .text p { margin: 0; }
    .informative.container .content .card .text a.button { margin: 32px 0 40px; }
    .informative.container .content .card .image { width: 100%; height: auto; }

    .informative.container figure.green-circle { width: 300px; height: auto; top: 10%; transform: rotate(180deg); left: 0; }
    .informative.container figure.blue-circle { width: 300px; height: auto; top: 40%; transform: rotate(180deg); left: auto; right: 0; }
    .informative.container figure.blue-circle-bottom { position: absolute; display: block; width: 300px; height: auto; bottom: -50px; left: 0; }
}

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

  .informative.container .content .card .text h3 { font-size: 30px; }
  .informative.container .content .card .text a.button { width: 100%; }
}
.brands { opacity: 0; transition: all .3s; height: auto; overflow: hidden; margin-bottom: 30px; }
.brands.show { opacity: 1; }
.brands .bx-wrapper { max-width: 100% !important; padding: 0; box-shadow: none; border-radius: 0; }

.brands figure { width: 290px !important; height: 160px !important; border: 1px solid #EDEFEC; border-radius: 20px; margin: 0 15px; }
.brands figure img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }

.brands-two .ticker { margin-left: -140px !important; }

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

    .brands { margin-bottom: 20px; }
    .brands figure { width: 130px !important; height: 70px !important; border: 1px solid #EDEFEC; border-radius: 10px; margin: 0 8px; }
    .brands figure img { width: 100%; height: 100%; object-fit: contain; padding: 10px; } 

    .brands-two .ticker { margin-left: -68px !important; }
}
*, body {
  font-family: 'IBM Plex Sans', sans-serif;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  
}
a {
  text-decoration: none;
  cursor: pointer;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

button {
	display:inline-block;
	border:none;
	margin:0;
	text-decoration:none;
	text-align:center;
	-webkit-appearance:none;
	-moz-appearance:none;
}
a,span {
	display:inline-block;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

.pages-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  /* break pages-links to columns */
  .pages-links {
    flex-direction: column;
    text-align: right;
  }
}

.page-link {
  padding: 5px;
  cursor: pointer;
  color: #605E5C;
  font-weight: 300
}
.sell.container { background: var(--bg-main-dark); padding: 160px 0 250px; position: relative; overflow: hidden; width: 100%; }
.sell.container .content { display: flex; flex-direction: column; }

.sell.container h2 { font-size: 72px; color: var(--white); max-width: 900px; }
.sell.container h2 span { color: #75d858; }
.sell.container p { color: var(--white); font-size: 20px; font-weight: 500; max-width: 40ch; margin: 24px 0 40px; line-height: 1.5; }
.sell.container figure.cards-image { position: absolute; right: 40px; bottom: -4px; max-width: 700px; }
.sell.container figure.cards-image img { width: 100%; height: 100%; }

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

    .sell.container { padding-bottom: 100px 0; }
    .sell.container h2 { font-size: 52px; max-width: 22ch; }
    .sell.container figure.cards-image { max-width: 600px; }
}

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

    .sell.container figure.cards-image { max-width: 500px; }
}

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

    .sell.container { padding: 50px 0 250px; }
    .sell.container .content { align-items: center; text-align: center; }

    .sell.container h2 { font-size: 36px; }
    .sell.container p { font-size: 18px; line-height: 1.8; margin: 16px 0 32px; }
    .sell.container figure.cards-image { max-width: 350px; right: unset; }
}

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

    .sell.container p { font-weight: 300; max-width: 28ch; }
    .sell.container a.button { width: 100%; }
}
:root {
    /* Texts Colors */
    --white: #FFF;
    --black: #000;
    --primary-grey: #323130;
    --secondary-grey: #605E5C;
    --light-grey: #D0D5DD;
    --medium-grey: #A19F9D;

    /* Backgrounds */
    --bg-main-dark: #1e1e1e;
    --bg-header-scrolled: rgba(50,49,48,0.7);
    --bg-home-informative: linear-gradient(110deg, #ECEFEF 0%, rgba(236, 239, 239, 0.00) 30%);
    --bg-light-grey: #F9FAFB;


    /* Cart Dot */
    --red-dot: #991B1B;
}
.welcome.container { background: var(--bg-main-dark); height: 100%; width: 100%;  display: flex; flex-direction: column; align-items: center;  }
.welcome.container .content { display: flex; flex-direction: column; align-items: center; min-height: 800px; position: relative; max-width: none; }

.welcome.container .texts { display: flex; flex-direction: column; align-items: center; max-width: 660px; margin-top: 160px; }
.welcome.container .texts h1 { color: var(--white); font-size: 52px; text-align: center; letter-spacing: 0; line-height: 1.1; }
.welcome.container .texts h1 span { color: #75d858; }
.welcome.container .texts p { color: var(--white); font-size: 20px; font-weight: 500; line-height: 1.5; text-align: center; margin: 24px 0 36px; }
.welcome.container .texts .button{ position: relative; z-index: 2000; }

.welcome.container figure.credit-cards { position: absolute; top: 100%; transform: translate(0, -51%); width: 100%; max-width: 800px; height: auto; display: flex; justify-content: center; z-index: 1000; }
.welcome.container figure.credit-cards img { width: 100%; height: 99%; }
.welcome.container figure.left-green-circle { position: absolute; left: -100px; top: 0; z-index: 4000 }
@media screen and (max-width: 1460px) {
    .welcome.container figure.left-green-circle { position: absolute; left: -100px; top: 0; z-index: 4000; width: 300px; }
}
.welcome.container figure.left-green-circle img { width: 100%; height: 100%; }
.welcome.container figure.right-green-circle { position: absolute; right: 0; bottom: -4px; }
.welcome.container figure.right-green-circle img { width: 100%; height: 100%; }

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

    .welcome.container .content { min-height: 750px; }
    .welcome.container .texts h1 { font-size: 42px; }  
    .welcome.container figure.right-green-circle { display: none; }
}

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

    .welcome.container .content { min-height: 690px; }
    .welcome.container .texts h1 { font-size: 32px; }
    .welcome.container .texts p { font-size: 18px; }
    .welcome.container .texts a.button { width: 100%; }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
body {
    margin: 0;
}

.js-cookies-banner {
    background: #444;
    color: #fff;
    padding: 6px;
    font-size: 13px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100000;
}

.js-cookies-banner button {
    text-decoration: none;
    background: #222;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    padding: 4px 7px;
    margin: 2px 0;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.07s, color 0.07s, border-color 0.07s;
}
  
.js-cookies-banner button:hover {
    background: #fff;
    color: #222;
}
  
.hidden_banner {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 1s, opacity 1s linear;
}

.hidden_banner_no_animation {
    display: none;
}


.Privacy {
    background: #f9f9f9;
}

.Privacy .Privacy-container h5 {
    font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #04457f;
}
.Privacy .Privacy-container h6 {
    font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #6b7377;
}
.Privacy .Privacy-container p {
    font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    text-align: justify;
}
.Privacy .Privacy-container p span.underline {
    text-decoration: underline;
}
.Privacy .Privacy-container a {
    color: #71c05e;
}
.Privacy .Privacy-container .cta {
    text-align: center;
}
.Privacy .Privacy-container .gradient-btn {
    max-width: 300px;
    text-decoration: none;
    margin: 40px auto 0;
}

.list-disc {
    list-style-type: disc;
    margin-left: 20px;
}

.Terms {
    background: #f9f9f9;
}
.Terms .Terms-container h5 {
    font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #04457f;
}
.Terms .Terms-container h6 {
    font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #6b7377;
}
.Terms .Terms-container p, .Terms .Terms-container li {
    font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    text-align: justify;
}
.Terms .Terms-container p.underline, .Terms .Terms-container li.underline, .Terms .Terms-container p span.underline, .Terms .Terms-container li span.underline {
    text-decoration: underline;
}
.Terms .Terms-container a {
    color: #71c05e;
}
.Terms .Terms-container .cta {
    text-align: center;
}
.Terms .Terms-container .gradient-btn {
    max-width: 300px;
    text-decoration: none;
    margin: 40px auto 0;
}
</pre></body></html>