/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

#experience,
#rewards,
#whats-next {
    scroll-margin-top: 6rem;
}

:root {
    /* Colors */
    --PrimaryColor: #C8102E;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
/* --SecondaryColor:#B89B5E; */


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





body {
  font-family: "Inter", sans-serif;
   font-weight: 400;
    color: var(--BlackColor);
    line-height: 1.5;
    background-color: #fff;
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}




.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: #212121;
    font-size:2.4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}


.same-heading h2 .highlight-text{background: var(--PrimaryColor); color: var(--BlackColor); padding: 0.2rem 0.6rem;}


.same-heading h3 {
   
    color: #383838;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #545454;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}




.bg-gray {
    background: #F5F5F5;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center :is( .max-wid-50,  .max-wid-80) {
    margin: 0 auto;
}

.same-heading.white-text :is(h2, p) {
    color: var(--WhiteColor);

}

.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}



.section-bottom-btn {
    display: flex;
    gap: 1rem;
    align-items: center;flex-wrap: wrap;
    margin-top: 2rem;
}

.section-bottom-btn.text-center {
    justify-content: center;
}


/* =========================================
   UTILITIES
   ========================================= */
.tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 15%;
  color: var(--PrimaryColor);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    /* Animation Properties */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--WhiteColor) !important;
    color: var(--PrimaryColor) !important;
    border-color: var(--PrimaryColor) !important;
}

.btn-primary .fluid-canvas,
.btn-secondary .fluid-canvas,
.btn-outline-primary .fluid-canvas,
.btn-white .fluid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

.btn-primary .btn-text,
.btn-secondary .btn-text,
.btn-outline-primary .btn-text,
.btn-white .btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-primary {
    background: var(--WhiteColor);
    color: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background: var(--PrimaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--PrimaryColor) !important;
}
.btn-secondary {
    background: var(--SecondaryColor);
    color: var(--WhiteColor);
    border-color: var(--SecondaryColor);
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    background: var(--WhiteColor) !important;
    color: var(--SecondaryColor) !important;
    border-color: var(--WhiteColor) !important;
}




.btn-black {
    background: var(--BlackColor);
    border: solid 1px var(--BlackColor);
    color: var(--WhiteColor);
}

.btn-black:hover,.btn-black:focus,.btn-black:active {
 background: var(--WhiteColor) !important;
border-color:var(--WhiteColor) !important;
color: var(--PrimaryColor) !important;
}

.btn-outline-navy {
    background: #fff;
    color: var(--BlackColor);
    border-color: #D5D5D5;
}

.btn-outline-navy:hover,
.btn-outline-navy:focus,
.btn-outline-navy:active {
    background: var(--SecondaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--SecondaryColor) !important;
}

.btn-outline-white {
    background: #FFFFFF33;
    color: var(--WhiteColor);
    border-color: var(--WhiteColor);
}

.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active {
    background: var(--WhiteColor) !important;
    color: var(--PrimaryColor) !important;
    border-color: var(--WhiteColor) !important;
}


.btn-white {
    background: var(--WhiteColor);
    border: solid 1px var(--WhiteColor);
    color: var(--PrimaryColor);
}

.btn-white:hover,.btn-white:focus,.btn-white:active {
 background: var(--PrimaryColor) !important;
border-color:var(--PrimaryColor) !important ;
color: var(--WhiteColor) !important;
}




/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    position: relative;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    z-index: 99;
}

.header.headerfix {
    background: #ab1731;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    top: 0;
    z-index: 100;
    position: fixed;
    left: 0; right: 0;
    padding: 0.8rem 0;
    animation: slideDown 0.4s ease forwards;
}
.header .logo img{max-height: 4rem;}

/* Inner pages header */
.header.inner-header {
   background: linear-gradient(to bottom, #000, #8c0b20);
    /* border-bottom: 1px solid #EFEFEF; */
  
}

.header.inner-header .nav-links a:not(.btn) {
    color: var(--WhiteColor);
}

.header.inner-header .nav-links a:hover:not(.btn) {
    color: var(--WhiteColor);
}

.header.inner-header.headerfix {
    background: #ab1731;

}

header.header.inner-header.headerfix .nav-links a:not(.btn){color: var(--WhiteColor);}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header .nav-content {
    display: flex;
    align-items: center;

}

.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}
.header .nav-actions{margin-left: 1rem;}



.header .nav-links a:not(.btn) {
    /* font-weight: 300; */
    font-size: 0.9rem;
    color: var(--WhiteColor);
    padding: 0.2rem;
    position: relative;
}
.header .nav-links a:not(.btn)::before{ position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--WhiteColor);
    transform: translateX(-50%);
    transition: width 0.3s ease;}

.header .nav-links a:hover:before{    width: 100%;}
.header .nav-links .explore-btn{color: var(--BlackColor) !important;}

.header .nav-links a:hover:not(.btn) {
    color: var(--WhiteColor);
}



.header .nav-links .sign-btn{margin-left: 1rem; display: inline-flex; align-items: center; gap: 1rem;}

.header.headerfix .btn-primary{background: var(--WhiteColor); color: var(--PrimaryColor);}

/* .header .nav-actions{margin-left: auto;} */

.header .mobile-toggle {
font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
display: inline-flex; align-items: center;
justify-content: center;
}
.header .mobile-toggle svg{width: 1.3rem;}
.header  .btn-sidebar-close{font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header  .btn-sidebar-close svg{width: 1.3rem;}



.hero-section {
position: relative;
padding: 15rem 0rem 5rem;
background: url(../images/banner-bg.jpg)no-repeat center top/cover;

overflow: hidden;
min-height: 100vh;
margin-top: -7rem;
display: flex; align-items: center; justify-content: center;

}





/* Content */
.hero-section .hero-content {
  position: relative;
  z-index: 2;


}
.hero-section  .section-bottom-btn{margin: 2rem 0;}
/* Title */
.hero-section h1 {
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--WhiteColor);
  line-height: 1.2;
}

.hero-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--WhiteColor);
  line-height: 1.2;
}


/* Text */
.hero-section p {
  font-size: 1rem;
  color: var(--WhiteColor);
  line-height: 1.8;
}

.hero-section .section-bottom-btn{margin-top: 3rem;}


.everything-place-section .feature-card {
    height: 100%;
    background: var(--WhiteColor);
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    padding: 2rem 1.75rem;
}

.everything-place-section .feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--PrimaryColor);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.everything-place-section .feature-icon img {
    width: 22px;
    height: auto;
}

.everything-place-section .feature-card h4 {
    color: var(--BlackColor);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.everything-place-section .feature-card p {
    color: #545454;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;margin-bottom: 0;
}
.adventure-club-section{position: relative;}
.adventure-club-section:before{    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1vw;
    background: url(../images/gray-zig-zag-top-border.png);    top: 3px;
    transform: translateY(-100%);
    min-height: 12px;
    max-height: 22px;
    background-repeat: no-repeat;
    background-size: 100% 100%;}


.adventure-club-section .adventure-card {
    height: 100%;
    background: var(--WhiteColor);
    /* border: 1px solid #F0F0F0; */
    border-radius: 16px;
    overflow: hidden;
}

.adventure-club-section .adventure-card-active {
   background: url(../images/white-bg-red-color.png)no-repeat center top/cover;
   position: relative;
}

.adventure-club-section .adventure-card-content {
    padding: 2rem 2rem 1.5rem;
}

.adventure-club-section .adventure-card-active .adventure-card-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.adventure-club-section .adventure-tag {
    display: block;
    color: #575757;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.adventure-club-section .adventure-card-active .adventure-tag {
    color: rgba(255, 255, 255, 0.7);
}

.adventure-club-section .adventure-card h4 {
    color: var(--BlackColor);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.adventure-club-section .adventure-card-active h4 {
    color: var(--WhiteColor);
}

.adventure-club-section .adventure-card p {
    color: #575757;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
}

.adventure-club-section .adventure-card-active p {
    color: rgba(255, 255, 255, 0.85);
}

.adventure-club-section .adventure-card-img {
    width: 100%;
    display: block;
}

.adventure-club-section .adventure-card-bottle {
    position: absolute;
    right:2rem;
    top: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    z-index: 1;
}

.adventure-club-section .adventure-download {
    margin-top: auto;
}

.adventure-club-section .adventure-download-label {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.adventure-club-section .adventure-download-icons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.adventure-club-section .download-icon {
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    color: var(--WhiteColor);
}

.adventure-club-section .download-icon img {
    width: 1rem;
    height: auto;
}

.get-reward-section {
    background: url(../images/get-reward-bg.jpg) no-repeat center center/cover;
}

.get-reward-section .img-box {
    max-width: 40%;
    margin: 0 auto;
    display: block;
}


.get-reward-section .same-heading h2 .reward-highlight {
    color: var(--PrimaryColor);
    font-weight: 700;
    display: block;
}

.get-reward-section .reward-content > p {
    color: #454545;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    max-width: 34rem;
    margin-bottom: 2rem;
}

.get-reward-section .reward-flow-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--WhiteColor);
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.get-reward-section .reward-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.get-reward-section .reward-flow-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--BlackColor);
}

.get-reward-section .reward-flow-value-red {
    color: var(--PrimaryColor);
}

.get-reward-section .reward-flow-currency {
    font-size: 1.4rem;
    top: -1rem;

}

.get-reward-section .reward-flow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212121;
    min-height: 4rem;
}

.get-reward-section .reward-flow-icon svg {
    width: 2rem;
    height: 2rem;
}

.get-reward-section .reward-flow-label {
    font-size: 0.9rem;
    color: #00000080;
}

.get-reward-section .reward-flow-arrow {
    width: 3rem;
    height: auto;
    flex-shrink: 0;
}

.get-reward-section .reward-stats-card {
    background: var(--WhiteColor);
    border-radius: 14px;
    padding: 1rem;
}

.get-reward-section .reward-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #6C6C6C;
}

.get-reward-section .reward-stats-value {
    color: var(--PrimaryColor);
    font-weight: 600;
}

.get-reward-section .reward-progress {
    width: 100%;
    margin: 0.5rem 0;
}

.get-reward-section .reward-progress-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 50px;
    background: linear-gradient(to right,
        var(--PrimaryColor) 0%, var(--PrimaryColor) var(--fill, 0%),
        #EDEDED var(--fill, 0%), #EDEDED 100%);
    outline: none;
    cursor: pointer;
    margin: 0;
}

.get-reward-section .reward-progress-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: var(--PrimaryColor);
    border: none;
    cursor: pointer;
}

.get-reward-section .reward-progress-slider::-moz-range-thumb {
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: var(--PrimaryColor);
    border: none;
    cursor: pointer;
}

.get-reward-section .reward-progress-slider::-moz-range-track {
    height: 4px;
    border-radius: 50px;
    background: #EDEDED;
}

.get-reward-section .reward-progress-slider::-moz-range-progress {
    height: 4px;
    border-radius: 50px;
    background: var(--PrimaryColor);
}


.designed-easy-section {
    background: var(--BlackColor);
    padding-bottom: 0;
}

.designed-easy-section .same-heading.white-text :is( p){color: #A8A8A8;}

.designed-easy-section .feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.designed-easy-section .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.designed-easy-section .feature-list-icon {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--PrimaryColor);
    border-radius: 50%;
}

.designed-easy-section .feature-list-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--WhiteColor);
}

.designed-easy-section .feature-list h5 {
    color: var(--WhiteColor);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.designed-easy-section .feature-list p {
     color: var(--WhiteColor);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
}

.every-stop-section .every-stop-tabs {
    background: var(--WhiteColor);
    border: 1px solid #EDEDED;
    border-radius: 16px;
    overflow: hidden;
}

.every-stop-section .nav-tabs {
    border: none;
    border-bottom: 1px solid #EDEDED;
    flex-wrap: nowrap;
    margin: 0;
}

.every-stop-section .nav-tabs .nav-item {
    flex: 1;
    border-right: 1px solid #EDEDED;
}

.every-stop-section .nav-tabs .nav-item:last-child {
    border-right: none;
}

.every-stop-section .nav-tabs .nav-link {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    color: #888888;
    font-size: 0.9rem;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    padding: 1.25rem 1rem;
    margin: 0;
}

.every-stop-section .nav-tabs .nav-link.active {
    color: var(--PrimaryColor);
    border-bottom:solid 3px var(--PrimaryColor);
}

.every-stop-section .every-stop-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
}

.every-stop-section .every-stop-content h4 {
    color: #212121;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.every-stop-section .every-stop-content p {
    color: #545454;
    font-size: 0.9rem;
    line-height: 1.7;
}

.every-stop-section .every-stop-caption {
    color: var(--BlackColor);
    font-size: 0.8rem;
}

.every-stop-section .every-stop-media {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 320px;
}

.every-stop-section .every-stop-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scale-carefully-section {
    position: relative;
    background: #AB1731;
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.scale-carefully-section::before,
.scale-carefully-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1vw;
    min-height: 12px;
    max-height: 22px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.scale-carefully-section::before {
    top:3px;
    transform: translateY(-100%);
    background-image: url(../images/zigzag-top-border.png);
}

.scale-carefully-section::after {
    bottom: 3px;
    transform: translateY(100%);
    background-image: url(../images/zigzag-botom-border.png);
}

.scale-carefully-section .same-heading h2 {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.2;
}

.scale-carefully-section .scale-card {
    height: 100%;
    background: var(--WhiteColor);
    border-radius: 14px;
    padding: 1.75rem;
}

.scale-carefully-section .scale-card h4 {
     color: var(--BlackColor);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.scale-carefully-section .scale-card p {
     color: #545454;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7; margin-bottom: 0;
}



/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #161616;
    padding: 3rem 0 1.5rem;
}

.footer .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
}

.footer .footer-logo img {
    max-height: 2.75rem;
}

.footer .footer-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer .footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.footer .footer-nav a:hover {
    color: var(--PrimaryColor);
}

.footer .footer-bottom {
    border-top: 1px solid #FFFFFF1A;
    padding-top: 1.5rem;
}

.footer .footer-bottom p {
    font-size: 0.8rem;
    color:#FFFFFFB2;
    margin: 0;
}





.Downloads{    background: #f6f6f6;}
.Downloads__hero {
	background: var(--PrimaryColor);
	padding: 6.25rem 0;
	color: #fff;
	position: relative;
	overflow: hidden
}

.Downloads__hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .3);
	z-index: 1
}

.Downloads__hero__content {
	position: relative;
	z-index: 2
}

.Downloads__hero__title {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	line-height: 1.2;    color: #fff;
}

.Downloads__hero__subtitle {
	font-size: 1rem;
	opacity: .9;
	line-height: 1.5;    color: #fff;
}

.Downloads__content {
	padding: 5rem 0
}

.Downloads__section {
	margin-bottom: 5rem
}

.Downloads__section:last-child {
	margin-bottom: 0
}

.Downloads__section__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 3rem;
	gap: 1rem
}

.Downloads__section__icon {
	width: 2rem;
	height: 2rem;
	object-fit: contain
}

.Downloads__section__title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--BlackColor);
	margin: 0
}

.Downloads__section__subtitle {
	font-size: 1.6rem;
	font-weight: 300;
	text-align: left;
	margin: 2rem 0;
	color: var(--BlackColor);
	position: relative;
	padding: .5rem 0 .5em 2.5rem
}

.Downloads__section__subtitle::before {
	content: "";
	position: absolute;
	top: 47%;
	left: 0;
	height: 1px;
	width: 2.2rem;
	background: #000;
	z-index: 1
}

.Downloads__section__subtitle::after {
	content: attr(data-text);
	position: relative;
	background: #f6f6f6;
	z-index: 2;
	display: inline-block
}

.Downloads__subsection {
	margin-bottom: 4rem
}

.Downloads__subsection:last-child {
	margin-bottom: 0
}

.Downloads__subsection__title {
	font-size: 1.75rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--BlackColor);
	position: relative;
	padding: 1rem 0
}

.Downloads__subsection__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2.5rem;
	height: .125rem;
	background: var(--PrimaryColor);
	border-radius: .0625rem
}

.Downloads__separator {
	text-align: center;
	margin: 3rem 0;
	padding: 0 1rem
}

.Downloads__separator__text {
	font-size: 1rem;
	font-weight: 600;
	color: var(--PrimaryColor);
	text-transform: uppercase;
	letter-spacing: .025rem;
	white-space: nowrap
}

.Downloads__app-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center
}

.Downloads__app-card__content-wrapper {
	background: #fff;
	border-radius: .75rem;
	padding: 1.5rem;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1);
	transition: all .3s ease;
	border: .0625rem solid #e5e7eb;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100%
}

.Downloads__app-card__content-wrapper:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .15)
}

.Downloads__app-card__content-wrapper--unavailable:hover {
	transform: none;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1)
}

.Downloads__app-card__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.5rem;
	flex: 1
}

.Downloads__app-card__icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	flex-shrink: 0
}

.Downloads__app-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain
}

.Downloads__app-card__icon img[src*=apple-icon],
.Downloads__app-card__icon img[src*=clear-app-store],
.Downloads__app-card__icon img[src*=play-store-icon] {
	filter: brightness(0.7) contrast(1.2)
}

.Downloads__app-card__icon--placeholder {
	background: #e5e7eb;
	border: 1px solid #d1d5db
}

.Downloads__app-card__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%
}

.Downloads__app-card__name {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--BlackColor);
	margin-bottom: .5rem;
	line-height: 1.3
}

.Downloads__app-card__description {
	font-size: .875rem;
	color: #6b7280;
	line-height: 1.4;
	margin: 0 0 1rem 0
}

.Downloads__app-card__action {
	text-align: center;
	width: 100%
}

.Downloads__app-card__availability {
	font-size: .875rem;
	color: var(--PrimaryColor);
	margin-bottom: .5rem;
	font-weight: 600
}

.Downloads .download-with-login-btn {
	display: flex;
	align-items: center;
	gap: .5rem
}

.Downloads__download-btn {
	background: #fff;
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	padding: .5rem 1rem;
	border-radius: .25rem;
	font-size: .875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .3s ease;
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center
}

.Downloads__download-btn:hover {
	background: var(--PrimaryColor);
	color: #fff
}

.Downloads__download-btn:active {
	transform: translateY(0)
}

.Downloads__download-btn:focus {
	outline: none;
	box-shadow: 0 0 0 .1875rem var(--PrimaryColorTransparent)
}

.Downloads__download-btn--disabled {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none
}

.Downloads__download-btn--disabled:hover {
	background: #fff;
	color: var(--PrimaryColor);
	transform: none;
	box-shadow: none
}

.Downloads__download-btn--disabled:focus {
	box-shadow: none
}

.Downloads__login-btn {
	background: #fff;
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	padding: .5rem 1rem;
	border-radius: .25rem;
	font-size: .875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .3s ease;
	width: 100%;
	text-decoration: none;
	display: inline-block;
	text-align: center
}

.Downloads__login-btn:hover {
	background: var(--PrimaryColor);
	color: #fff
}

.Downloads__login-btn:active {
	transform: translateY(0)
}

.Downloads__login-btn:focus {
	outline: none;
	box-shadow: 0 0 0 .1875rem var(--PrimaryColorTransparent)
}

.Downloads__login-btn--disabled {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none
}

.Downloads__login-btn--disabled:hover {
	background: #fff;
	color: var(--PrimaryColor);
	transform: none;
	box-shadow: none
}

.Downloads__login-btn--disabled:focus {
	box-shadow: none
}

.Downloads__status {
	display: inline-block;
	font-size: .9rem;
	font-weight: 600;
	padding: .12rem .8rem;
	border-radius: 50px;
	margin-top: 6px
}

.Downloads__status--in-review {
	background-color: #e0e0e0;
	color: #555
}

.Downloads__status--live {
	background-color: #28a745;
	color: #fff
}

.Downloads__featured {
	padding: 5rem 0;
	background: #fff
}

.Downloads__featured .Downloads__featured__title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--BlackColor);
	margin: 0 0 3rem;
	text-align: center
}

.Downloads__featured .download-platform-card {
	background: #fff;
	border-radius: .75rem;
	padding: 1.5rem;
	box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .1);
	transition: all .3s ease;
	border: .0625rem solid #e5e7eb;
	text-align: center;
	height: 100%
}

.Downloads__featured .iconbx {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: #f6f6f6;
	display: flex;
	align-items: center;
	justify-content: center
}

.Downloads__featured .iconbx img {
	width: 100%;
	max-width: 39%
}

.Downloads__featured h3 {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--BlackColor);
	margin-bottom: 1rem;
	line-height: 1.3
}

.Downloads__featured .btn-disable {
	background: #d6d6d6;
	color: #555;
	border: 1px solid #d6d6d6;
	cursor: not-allowed;
	pointer-events: none;
	font-size: .9rem;
	padding: .5rem .9375rem;
	border-radius: 10px;
	font-weight: 400
}

/* =========================================
   EARLY ACCESS MODAL
   ========================================= */
.early-access-modal .modal-content {
    border: none;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, .2);
}

.early-access-modal .btn-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 1;
    background: var(--PrimaryColor);
    color: #fff;
    width: 1.8rem; font-size: 0;
    height: 1.8rem;
    border-radius: 50%;cursor: pointer; z-index: 99;display: inline-flex;
    align-items: center;
    justify-content: center;
}
.early-access-modal .btn-close svg{width: 1rem; height: 1rem;}

.early-access-modal .tag {
    margin-bottom: 1.5rem;display: block;
}

.early-access-modal h3 {
    color: #212121;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.early-access-modal .modal-body > p {
    color: #545454;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.early-access-modal .form-group {
    margin-bottom: 1.25rem;
}

.early-access-modal .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #212121;
    margin-bottom: 0.5rem;
}

.early-access-modal .form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--BlackColor);
    background: var(--WhiteColor);
    transition: border-color 0.2s ease;
}

.early-access-modal .form-group input:focus {
    outline: none;
    border-color: var(--PrimaryColor);
}

.early-access-modal .form-group input::placeholder {
    color: #B0B0B0;
}

.early-access-modal form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.9rem 1.5rem;
}

.early-access-modal .modal-disclaimer {
    display: block;
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: #9B9B9B;
    text-align: center;
}

@media (max-width: 575.98px) {
    .early-access-modal .modal-content {
        padding: 1.75rem;
    }

    .early-access-modal h3 {
        font-size: 1.6rem;
    }
}


